mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
isa: pic: convert to QEMU Object Model
This converts two devices at once because PIC subclasses ISA and converting subclasses independently is extremely hard. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
e855761ca8
commit
8f04ee0882
28 changed files with 390 additions and 192 deletions
|
@ -583,11 +583,17 @@ bool parallel_mm_init(MemoryRegion *address_space,
|
|||
return true;
|
||||
}
|
||||
|
||||
static ISADeviceInfo parallel_isa_info = {
|
||||
.qdev.name = "isa-parallel",
|
||||
.qdev.size = sizeof(ISAParallelState),
|
||||
.init = parallel_isa_initfn,
|
||||
.qdev.props = (Property[]) {
|
||||
static void parallel_isa_class_initfn(ObjectClass *klass, void *data)
|
||||
{
|
||||
ISADeviceClass *ic = ISA_DEVICE_CLASS(klass);
|
||||
ic->init = parallel_isa_initfn;
|
||||
}
|
||||
|
||||
static DeviceInfo parallel_isa_info = {
|
||||
.name = "isa-parallel",
|
||||
.size = sizeof(ISAParallelState),
|
||||
.class_init = parallel_isa_class_initfn,
|
||||
.props = (Property[]) {
|
||||
DEFINE_PROP_UINT32("index", ISAParallelState, index, -1),
|
||||
DEFINE_PROP_HEX32("iobase", ISAParallelState, iobase, -1),
|
||||
DEFINE_PROP_UINT32("irq", ISAParallelState, isairq, 7),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue