mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
i386/pc: create pci-host qdev prior to pc_memory_init()
At the start of pc_memory_init() we usually pass a range of 0..UINT64_MAX as pci_memory, when really its 2G (i440fx) or 32G (q35). To get the real user value, we need to get pci-host passed property for default pci_hole64_size. Thus to get that, create the qdev prior to memory init to better make estimations on max used/phys addr. This is in preparation to determine that host-phys-bits are enough and also for pci-hole64-size to be considered to relocate ram-above-4g to be at 1T (on AMD platforms). Signed-off-by: Joao Martins <joao.m.martins@oracle.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Message-Id: <20220719170014.27028-3-joao.m.martins@oracle.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
4ab4c33014
commit
4876778749
4 changed files with 12 additions and 9 deletions
|
@ -91,6 +91,7 @@ static void pc_init1(MachineState *machine,
|
|||
MemoryRegion *pci_memory;
|
||||
MemoryRegion *rom_memory;
|
||||
ram_addr_t lowmem;
|
||||
DeviceState *i440fx_host;
|
||||
|
||||
/*
|
||||
* Calculate ram split, for memory below and above 4G. It's a bit
|
||||
|
@ -164,9 +165,11 @@ static void pc_init1(MachineState *machine,
|
|||
pci_memory = g_new(MemoryRegion, 1);
|
||||
memory_region_init(pci_memory, NULL, "pci", UINT64_MAX);
|
||||
rom_memory = pci_memory;
|
||||
i440fx_host = qdev_new(host_type);
|
||||
} else {
|
||||
pci_memory = NULL;
|
||||
rom_memory = system_memory;
|
||||
i440fx_host = NULL;
|
||||
}
|
||||
|
||||
pc_guest_info_init(pcms);
|
||||
|
@ -200,8 +203,8 @@ static void pc_init1(MachineState *machine,
|
|||
const char *type = xen_enabled() ? TYPE_PIIX3_XEN_DEVICE
|
||||
: TYPE_PIIX3_DEVICE;
|
||||
|
||||
pci_bus = i440fx_init(host_type,
|
||||
pci_type,
|
||||
pci_bus = i440fx_init(pci_type,
|
||||
i440fx_host,
|
||||
system_memory, system_io, machine->ram_size,
|
||||
x86ms->below_4g_mem_size,
|
||||
x86ms->above_4g_mem_size,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue