From d1c4d6461468550e0639b6bc08eaa48da4617f4e Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 12 Oct 2009 10:22:45 -0400 Subject: [PATCH] Set the PCI base address to 0xf0000000. 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 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pciinit.c b/src/pciinit.c index 1d0f784..6a2f371 100644 --- a/src/pciinit.c +++ b/src/pciinit.c @@ -193,7 +193,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; -- 2.39.5