From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mx3dT-0006S1-JP for qemu-devel@nongnu.org; Sun, 11 Oct 2009 14:59:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mx3dO-0006Qi-Va for qemu-devel@nongnu.org; Sun, 11 Oct 2009 14:59:15 -0400 Received: from [199.232.76.173] (port=57414 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mx3dO-0006Qe-TT for qemu-devel@nongnu.org; Sun, 11 Oct 2009 14:59:10 -0400 Received: from mx1.redhat.com ([209.132.183.28]:45465) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mx3dO-0000lr-CG for qemu-devel@nongnu.org; Sun, 11 Oct 2009 14:59:10 -0400 From: Gleb Natapov Date: Sun, 11 Oct 2009 20:59:07 +0200 Message-Id: <1255287547-28329-5-git-send-email-gleb@redhat.com> In-Reply-To: <1255287547-28329-1-git-send-email-gleb@redhat.com> References: <1255287547-28329-1-git-send-email-gleb@redhat.com> Subject: [Qemu-devel] [PATCH 5/5] Set the PCI base address to 0xf0000000. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: kevin@koconnor.net Cc: qemu-devel@nongnu.org Qemu starts PCI hole at 0xe0000000, but lets set it to the same value as pcbios uses for now. Signed-off-by: Gleb Natapov --- src/pciinit.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/pciinit.c b/src/pciinit.c index 53fbfcf..67d6a26 100644 --- a/src/pciinit.c +++ b/src/pciinit.c @@ -202,7 +202,7 @@ pci_setup(void) dprintf(3, "pci setup\n"); pci_bios_io_addr = 0xc000; - pci_bios_mem_addr = 0xc0000000; + pci_bios_mem_addr = 0xf0000000; pci_bios_bigmem_addr = RamSize; if (pci_bios_bigmem_addr < 0x90000000) pci_bios_bigmem_addr = 0x90000000; -- 1.6.3.3