mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -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
33
hw/g364fb.c
33
hw/g364fb.c
|
@ -548,18 +548,27 @@ static void g364fb_sysbus_reset(DeviceState *d)
|
|||
g364fb_reset(&s->g364);
|
||||
}
|
||||
|
||||
static SysBusDeviceInfo g364fb_sysbus_info = {
|
||||
.init = g364fb_sysbus_init,
|
||||
.qdev.name = "sysbus-g364",
|
||||
.qdev.desc = "G364 framebuffer",
|
||||
.qdev.size = sizeof(G364SysBusState),
|
||||
.qdev.vmsd = &vmstate_g364fb,
|
||||
.qdev.reset = g364fb_sysbus_reset,
|
||||
.qdev.props = (Property[]) {
|
||||
DEFINE_PROP_HEX32("vram_size", G364SysBusState, g364.vram_size,
|
||||
8 * 1024 * 1024),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
}
|
||||
static Property g364fb_sysbus_properties[] = {
|
||||
DEFINE_PROP_HEX32("vram_size", G364SysBusState, g364.vram_size,
|
||||
8 * 1024 * 1024),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
static void g364fb_sysbus_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
|
||||
|
||||
k->init = g364fb_sysbus_init;
|
||||
}
|
||||
|
||||
static DeviceInfo g364fb_sysbus_info = {
|
||||
.name = "sysbus-g364",
|
||||
.desc = "G364 framebuffer",
|
||||
.size = sizeof(G364SysBusState),
|
||||
.vmsd = &vmstate_g364fb,
|
||||
.reset = g364fb_sysbus_reset,
|
||||
.props = g364fb_sysbus_properties,
|
||||
.class_init = g364fb_sysbus_class_init,
|
||||
};
|
||||
|
||||
static void g364fb_register(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue