xref: /openbmc/qemu/include/hw/sysbus.h (revision 436033290065be765363ad73f9437821e0c35084)
1 #ifndef HW_SYSBUS_H
2 #define HW_SYSBUS_H 1
3 
4 /* Devices attached directly to the main system bus.  */
5 
6 #include "hw/qdev.h"
7 #include "exec/memory.h"
8 
9 #define QDEV_MAX_MMIO 32
10 #define QDEV_MAX_PIO 32
11 #define QDEV_MAX_IRQ 512
12 
13 #define TYPE_SYSTEM_BUS "System"
14 #define SYSTEM_BUS(obj) OBJECT_CHECK(IDEBus, (obj), TYPE_IDE_BUS)
15 
16 typedef struct SysBusDevice SysBusDevice;
17 
18 #define TYPE_SYS_BUS_DEVICE "sys-bus-device"
19 #define SYS_BUS_DEVICE(obj) \
20      OBJECT_CHECK(SysBusDevice, (obj), TYPE_SYS_BUS_DEVICE)
21 #define SYS_BUS_DEVICE_CLASS(klass) \
22      OBJECT_CLASS_CHECK(SysBusDeviceClass, (klass), TYPE_SYS_BUS_DEVICE)
23 #define SYS_BUS_DEVICE_GET_CLASS(obj) \
24      OBJECT_GET_CLASS(SysBusDeviceClass, (obj), TYPE_SYS_BUS_DEVICE)
25 
26 /**
27  * SysBusDeviceClass:
28  * @init: Callback function invoked when the #DeviceState.realized property
29  * is changed to %true. Deprecated, new types inheriting directly from
30  * TYPE_SYS_BUS_DEVICE should use #DeviceClass.realize instead, new leaf
31  * types should consult their respective parent type.
32  *
33  * SysBusDeviceClass is not overriding #DeviceClass.realize, so derived
34  * classes overriding it are not required to invoke its implementation.
35  */
36 typedef struct SysBusDeviceClass {
37     /*< private >*/
38     DeviceClass parent_class;
39     /*< public >*/
40 
41     int (*init)(SysBusDevice *dev);
42 } SysBusDeviceClass;
43 
44 struct SysBusDevice {
45     DeviceState qdev;
46     int num_irq;
47     qemu_irq irqs[QDEV_MAX_IRQ];
48     qemu_irq *irqp[QDEV_MAX_IRQ];
49     int num_mmio;
50     struct {
51         hwaddr addr;
52         MemoryRegion *memory;
53     } mmio[QDEV_MAX_MMIO];
54     int num_pio;
55     pio_addr_t pio[QDEV_MAX_PIO];
56 };
57 
58 void sysbus_init_mmio(SysBusDevice *dev, MemoryRegion *memory);
59 MemoryRegion *sysbus_mmio_get_region(SysBusDevice *dev, int n);
60 void sysbus_init_irq(SysBusDevice *dev, qemu_irq *p);
61 void sysbus_pass_irq(SysBusDevice *dev, SysBusDevice *target);
62 void sysbus_init_ioports(SysBusDevice *dev, pio_addr_t ioport, pio_addr_t size);
63 
64 
65 void sysbus_connect_irq(SysBusDevice *dev, int n, qemu_irq irq);
66 void sysbus_mmio_map(SysBusDevice *dev, int n, hwaddr addr);
67 void sysbus_mmio_map_overlap(SysBusDevice *dev, int n, hwaddr addr,
68                              unsigned priority);
69 void sysbus_add_io(SysBusDevice *dev, hwaddr addr,
70                    MemoryRegion *mem);
71 void sysbus_del_io(SysBusDevice *dev, MemoryRegion *mem);
72 MemoryRegion *sysbus_address_space(SysBusDevice *dev);
73 
74 /* Legacy helper function for creating devices.  */
75 DeviceState *sysbus_create_varargs(const char *name,
76                                  hwaddr addr, ...);
77 DeviceState *sysbus_try_create_varargs(const char *name,
78                                        hwaddr addr, ...);
79 static inline DeviceState *sysbus_create_simple(const char *name,
80                                               hwaddr addr,
81                                               qemu_irq irq)
82 {
83     return sysbus_create_varargs(name, addr, irq, NULL);
84 }
85 
86 static inline DeviceState *sysbus_try_create_simple(const char *name,
87                                                     hwaddr addr,
88                                                     qemu_irq irq)
89 {
90     return sysbus_try_create_varargs(name, addr, irq, NULL);
91 }
92 
93 #endif /* !HW_SYSBUS_H */
94