mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -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
38
hw/pl080.c
38
hw/pl080.c
|
@ -373,20 +373,34 @@ static int pl081_init(SysBusDevice *dev)
|
|||
return pl08x_init(dev, 2);
|
||||
}
|
||||
|
||||
static SysBusDeviceInfo pl080_info = {
|
||||
.init = pl080_init,
|
||||
.qdev.name = "pl080",
|
||||
.qdev.size = sizeof(pl080_state),
|
||||
.qdev.vmsd = &vmstate_pl080,
|
||||
.qdev.no_user = 1,
|
||||
static void pl080_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
|
||||
|
||||
k->init = pl080_init;
|
||||
}
|
||||
|
||||
static DeviceInfo pl080_info = {
|
||||
.name = "pl080",
|
||||
.size = sizeof(pl080_state),
|
||||
.vmsd = &vmstate_pl080,
|
||||
.no_user = 1,
|
||||
.class_init = pl080_class_init,
|
||||
};
|
||||
|
||||
static SysBusDeviceInfo pl081_info = {
|
||||
.init = pl081_init,
|
||||
.qdev.name = "pl081",
|
||||
.qdev.size = sizeof(pl080_state),
|
||||
.qdev.vmsd = &vmstate_pl080,
|
||||
.qdev.no_user = 1,
|
||||
static void pl081_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
|
||||
|
||||
k->init = pl081_init;
|
||||
}
|
||||
|
||||
static DeviceInfo pl081_info = {
|
||||
.name = "pl081",
|
||||
.size = sizeof(pl080_state),
|
||||
.vmsd = &vmstate_pl080,
|
||||
.no_user = 1,
|
||||
.class_init = pl081_class_init,
|
||||
};
|
||||
|
||||
/* The PL080 and PL081 are the same except for the number of channels
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue