mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
hw/pci-host/i440fx: Move i440fx_realize() into PCII440FXState section
i440fx_realize() realizes the PCI device inside the host bridge (PCII440FXState), but is implemented between i440fx_pcihost_realize() and i440fx_init() which deal with the host bridge itself (I440FXState). Since we want to append i440fx_init() to i440fx_pcihost_realize() later let's move i440fx_realize() out of the way. Signed-off-by: Bernhard Beschow <shentey@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20230630073720.21297-12-shentey@gmail.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
a707466dd6
commit
44df0552a0
1 changed files with 9 additions and 9 deletions
|
@ -65,6 +65,15 @@ struct I440FXState {
|
||||||
*/
|
*/
|
||||||
#define I440FX_COREBOOT_RAM_SIZE 0x57
|
#define I440FX_COREBOOT_RAM_SIZE 0x57
|
||||||
|
|
||||||
|
static void i440fx_realize(PCIDevice *dev, Error **errp)
|
||||||
|
{
|
||||||
|
dev->config[I440FX_SMRAM] = 0x02;
|
||||||
|
|
||||||
|
if (object_property_get_bool(qdev_get_machine(), "iommu", NULL)) {
|
||||||
|
warn_report("i440fx doesn't support emulated iommu");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void i440fx_update_memory_mappings(PCII440FXState *d)
|
static void i440fx_update_memory_mappings(PCII440FXState *d)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
@ -229,15 +238,6 @@ static void i440fx_pcihost_realize(DeviceState *dev, Error **errp)
|
||||||
memory_region_add_coalescing(&phb->conf_mem, 0, 4);
|
memory_region_add_coalescing(&phb->conf_mem, 0, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void i440fx_realize(PCIDevice *dev, Error **errp)
|
|
||||||
{
|
|
||||||
dev->config[I440FX_SMRAM] = 0x02;
|
|
||||||
|
|
||||||
if (object_property_get_bool(qdev_get_machine(), "iommu", NULL)) {
|
|
||||||
warn_report("i440fx doesn't support emulated iommu");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
PCIBus *i440fx_init(const char *pci_type,
|
PCIBus *i440fx_init(const char *pci_type,
|
||||||
DeviceState *dev,
|
DeviceState *dev,
|
||||||
MemoryRegion *address_space_mem,
|
MemoryRegion *address_space_mem,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue