4 /* Devices attached directly to the main system bus. */
6 #include "hw/qdev-core.h"
7 #include "exec/memory.h"
8 #include "qom/object.h"
10 #define QDEV_MAX_MMIO 32
11 #define QDEV_MAX_PIO 32
13 #define TYPE_SYSTEM_BUS "System"
14 DECLARE_INSTANCE_CHECKER(BusState
, SYSTEM_BUS
,
18 #define TYPE_SYS_BUS_DEVICE "sys-bus-device"
19 OBJECT_DECLARE_TYPE(SysBusDevice
, SysBusDeviceClass
,
25 * SysBusDeviceClass is not overriding #DeviceClass.realize, so derived
26 * classes overriding it are not required to invoke its implementation.
29 #define SYSBUS_DEVICE_GPIO_IRQ "sysbus-irq"
31 struct SysBusDeviceClass
{
33 DeviceClass parent_class
;
36 * Let the sysbus device format its own non-PIO, non-MMIO unit address.
38 * Sometimes a class of SysBusDevices has neither MMIO nor PIO resources,
39 * yet instances of it would like to distinguish themselves, in
40 * OpenFirmware device paths, from other instances of the same class on the
41 * sysbus. For that end we expose this callback.
43 * The implementation is not supposed to change *@dev, or incur other
46 * The function returns a dynamically allocated string. On error, NULL
47 * should be returned; the unit address portion of the OFW node will be
48 * omitted then. (This is not considered a fatal error.)
50 char *(*explicit_ofw_unit_address
)(const SysBusDevice
*dev
);
51 void (*connect_irq_notifier
)(SysBusDevice
*dev
, qemu_irq irq
);
56 DeviceState parent_obj
;
63 } mmio
[QDEV_MAX_MMIO
];
65 uint32_t pio
[QDEV_MAX_PIO
];
68 typedef void FindSysbusDeviceFunc(SysBusDevice
*sbdev
, void *opaque
);
70 void sysbus_init_mmio(SysBusDevice
*dev
, MemoryRegion
*memory
);
71 MemoryRegion
*sysbus_mmio_get_region(SysBusDevice
*dev
, int n
);
72 void sysbus_init_irq(SysBusDevice
*dev
, qemu_irq
*p
);
73 void sysbus_pass_irq(SysBusDevice
*dev
, SysBusDevice
*target
);
74 void sysbus_init_ioports(SysBusDevice
*dev
, uint32_t ioport
, uint32_t size
);
77 bool sysbus_has_irq(SysBusDevice
*dev
, int n
);
78 bool sysbus_has_mmio(SysBusDevice
*dev
, unsigned int n
);
79 void sysbus_connect_irq(SysBusDevice
*dev
, int n
, qemu_irq irq
);
80 bool sysbus_is_irq_connected(SysBusDevice
*dev
, int n
);
81 qemu_irq
sysbus_get_connected_irq(SysBusDevice
*dev
, int n
);
82 void sysbus_mmio_map(SysBusDevice
*dev
, int n
, hwaddr addr
);
83 void sysbus_mmio_map_overlap(SysBusDevice
*dev
, int n
, hwaddr addr
,
85 void sysbus_mmio_unmap(SysBusDevice
*dev
, int n
);
86 void sysbus_add_io(SysBusDevice
*dev
, hwaddr addr
,
88 MemoryRegion
*sysbus_address_space(SysBusDevice
*dev
);
90 bool sysbus_realize(SysBusDevice
*dev
, Error
**errp
);
91 bool sysbus_realize_and_unref(SysBusDevice
*dev
, Error
**errp
);
93 /* Call func for every dynamically created sysbus device in the system */
94 void foreach_dynamic_sysbus_device(FindSysbusDeviceFunc
*func
, void *opaque
);
96 /* Legacy helper function for creating devices. */
97 DeviceState
*sysbus_create_varargs(const char *name
,
100 static inline DeviceState
*sysbus_create_simple(const char *name
,
104 return sysbus_create_varargs(name
, addr
, irq
, NULL
);
107 #endif /* HW_SYSBUS_H */