mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
sysbus: apic: ioapic: convert to QEMU Object Model
This converts three devices because apic and ioapic are subclasses of sysbus. Converting subclasses independently of their base class is prohibitively hard. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
40021f0888
commit
999e12bbe8
131 changed files with 2734 additions and 1297 deletions
|
@ -357,16 +357,25 @@ static int iommu_init1(SysBusDevice *dev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static SysBusDeviceInfo iommu_info = {
|
||||
.init = iommu_init1,
|
||||
.qdev.name = "iommu",
|
||||
.qdev.size = sizeof(IOMMUState),
|
||||
.qdev.vmsd = &vmstate_iommu,
|
||||
.qdev.reset = iommu_reset,
|
||||
.qdev.props = (Property[]) {
|
||||
DEFINE_PROP_HEX32("version", IOMMUState, version, 0),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
}
|
||||
static Property iommu_properties[] = {
|
||||
DEFINE_PROP_HEX32("version", IOMMUState, version, 0),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
static void iommu_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
|
||||
|
||||
k->init = iommu_init1;
|
||||
}
|
||||
|
||||
static DeviceInfo iommu_info = {
|
||||
.name = "iommu",
|
||||
.size = sizeof(IOMMUState),
|
||||
.vmsd = &vmstate_iommu,
|
||||
.reset = iommu_reset,
|
||||
.props = iommu_properties,
|
||||
.class_init = iommu_class_init,
|
||||
};
|
||||
|
||||
static void iommu_register_devices(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue