mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 23:03: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
|
@ -238,12 +238,19 @@ static VMStateDescription vmstate_mst_fpga_regs = {
|
|||
},
|
||||
};
|
||||
|
||||
static SysBusDeviceInfo mst_fpga_info = {
|
||||
.init = mst_fpga_init,
|
||||
.qdev.name = "mainstone-fpga",
|
||||
.qdev.desc = "Mainstone II FPGA",
|
||||
.qdev.size = sizeof(mst_irq_state),
|
||||
.qdev.vmsd = &vmstate_mst_fpga_regs,
|
||||
static void mst_fpga_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
|
||||
|
||||
k->init = mst_fpga_init;
|
||||
}
|
||||
|
||||
static DeviceInfo mst_fpga_info = {
|
||||
.name = "mainstone-fpga",
|
||||
.desc = "Mainstone II FPGA",
|
||||
.size = sizeof(mst_irq_state),
|
||||
.vmsd = &vmstate_mst_fpga_regs,
|
||||
.class_init = mst_fpga_class_init,
|
||||
};
|
||||
|
||||
static void mst_fpga_register(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue