10d09e41aSPaolo Bonzini #ifndef HW_SYSBUS_H 2175de524SMarkus Armbruster #define HW_SYSBUS_H 30d09e41aSPaolo Bonzini 40d09e41aSPaolo Bonzini /* Devices attached directly to the main system bus. */ 50d09e41aSPaolo Bonzini 6a27bd6c7SMarkus Armbruster #include "hw/qdev-core.h" 70d09e41aSPaolo Bonzini #include "exec/memory.h" 80d09e41aSPaolo Bonzini 90d09e41aSPaolo Bonzini #define QDEV_MAX_MMIO 32 100d09e41aSPaolo Bonzini #define QDEV_MAX_PIO 32 110d09e41aSPaolo Bonzini 120d09e41aSPaolo Bonzini #define TYPE_SYSTEM_BUS "System" 1300c2275cSGonglei #define SYSTEM_BUS(obj) OBJECT_CHECK(BusState, (obj), TYPE_SYSTEM_BUS) 140d09e41aSPaolo Bonzini 150d09e41aSPaolo Bonzini typedef struct SysBusDevice SysBusDevice; 160d09e41aSPaolo Bonzini 170d09e41aSPaolo Bonzini #define TYPE_SYS_BUS_DEVICE "sys-bus-device" 180d09e41aSPaolo Bonzini #define SYS_BUS_DEVICE(obj) \ 190d09e41aSPaolo Bonzini OBJECT_CHECK(SysBusDevice, (obj), TYPE_SYS_BUS_DEVICE) 200d09e41aSPaolo Bonzini #define SYS_BUS_DEVICE_CLASS(klass) \ 210d09e41aSPaolo Bonzini OBJECT_CLASS_CHECK(SysBusDeviceClass, (klass), TYPE_SYS_BUS_DEVICE) 220d09e41aSPaolo Bonzini #define SYS_BUS_DEVICE_GET_CLASS(obj) \ 230d09e41aSPaolo Bonzini OBJECT_GET_CLASS(SysBusDeviceClass, (obj), TYPE_SYS_BUS_DEVICE) 240d09e41aSPaolo Bonzini 25ce724398SHu Tao /** 26ce724398SHu Tao * SysBusDeviceClass: 27ce724398SHu Tao * 28ce724398SHu Tao * SysBusDeviceClass is not overriding #DeviceClass.realize, so derived 29ce724398SHu Tao * classes overriding it are not required to invoke its implementation. 30ce724398SHu Tao */ 31b5917219SPeter Crosthwaite 32b5917219SPeter Crosthwaite #define SYSBUS_DEVICE_GPIO_IRQ "sysbus-irq" 33b5917219SPeter Crosthwaite 340d09e41aSPaolo Bonzini typedef struct SysBusDeviceClass { 35ce724398SHu Tao /*< private >*/ 360d09e41aSPaolo Bonzini DeviceClass parent_class; 370b336b3bSLaszlo Ersek 380b336b3bSLaszlo Ersek /* 390b336b3bSLaszlo Ersek * Let the sysbus device format its own non-PIO, non-MMIO unit address. 400b336b3bSLaszlo Ersek * 410b336b3bSLaszlo Ersek * Sometimes a class of SysBusDevices has neither MMIO nor PIO resources, 420b336b3bSLaszlo Ersek * yet instances of it would like to distinguish themselves, in 430b336b3bSLaszlo Ersek * OpenFirmware device paths, from other instances of the same class on the 440b336b3bSLaszlo Ersek * sysbus. For that end we expose this callback. 450b336b3bSLaszlo Ersek * 460b336b3bSLaszlo Ersek * The implementation is not supposed to change *@dev, or incur other 470b336b3bSLaszlo Ersek * observable change. 480b336b3bSLaszlo Ersek * 490b336b3bSLaszlo Ersek * The function returns a dynamically allocated string. On error, NULL 500b336b3bSLaszlo Ersek * should be returned; the unit address portion of the OFW node will be 510b336b3bSLaszlo Ersek * omitted then. (This is not considered a fatal error.) 520b336b3bSLaszlo Ersek */ 530b336b3bSLaszlo Ersek char *(*explicit_ofw_unit_address)(const SysBusDevice *dev); 54715ca691SEric Auger void (*connect_irq_notifier)(SysBusDevice *dev, qemu_irq irq); 550d09e41aSPaolo Bonzini } SysBusDeviceClass; 560d09e41aSPaolo Bonzini 570d09e41aSPaolo Bonzini struct SysBusDevice { 58b67964d7SAndreas Färber /*< private >*/ 59b67964d7SAndreas Färber DeviceState parent_obj; 60b67964d7SAndreas Färber /*< public >*/ 61b67964d7SAndreas Färber 620d09e41aSPaolo Bonzini int num_mmio; 630d09e41aSPaolo Bonzini struct { 640d09e41aSPaolo Bonzini hwaddr addr; 650d09e41aSPaolo Bonzini MemoryRegion *memory; 660d09e41aSPaolo Bonzini } mmio[QDEV_MAX_MMIO]; 670d09e41aSPaolo Bonzini int num_pio; 6889a80e74SPaolo Bonzini uint32_t pio[QDEV_MAX_PIO]; 690d09e41aSPaolo Bonzini }; 700d09e41aSPaolo Bonzini 714f01a637SDavid Gibson typedef void FindSysbusDeviceFunc(SysBusDevice *sbdev, void *opaque); 72eb572280SAlexander Graf 730d09e41aSPaolo Bonzini void sysbus_init_mmio(SysBusDevice *dev, MemoryRegion *memory); 740d09e41aSPaolo Bonzini MemoryRegion *sysbus_mmio_get_region(SysBusDevice *dev, int n); 750d09e41aSPaolo Bonzini void sysbus_init_irq(SysBusDevice *dev, qemu_irq *p); 760d09e41aSPaolo Bonzini void sysbus_pass_irq(SysBusDevice *dev, SysBusDevice *target); 7789a80e74SPaolo Bonzini void sysbus_init_ioports(SysBusDevice *dev, uint32_t ioport, uint32_t size); 780d09e41aSPaolo Bonzini 790d09e41aSPaolo Bonzini 80b7973186SAlexander Graf bool sysbus_has_irq(SysBusDevice *dev, int n); 81471a9bc1SAlexander Graf bool sysbus_has_mmio(SysBusDevice *dev, unsigned int n); 820d09e41aSPaolo Bonzini void sysbus_connect_irq(SysBusDevice *dev, int n, qemu_irq irq); 83b7973186SAlexander Graf bool sysbus_is_irq_connected(SysBusDevice *dev, int n); 84b7973186SAlexander Graf qemu_irq sysbus_get_connected_irq(SysBusDevice *dev, int n); 850d09e41aSPaolo Bonzini void sysbus_mmio_map(SysBusDevice *dev, int n, hwaddr addr); 860d09e41aSPaolo Bonzini void sysbus_mmio_map_overlap(SysBusDevice *dev, int n, hwaddr addr, 87a1ff8ae0SMarcel Apfelbaum int priority); 8890c20e1eSCédric Le Goater void sysbus_mmio_unmap(SysBusDevice *dev, int n); 890d09e41aSPaolo Bonzini void sysbus_add_io(SysBusDevice *dev, hwaddr addr, 900d09e41aSPaolo Bonzini MemoryRegion *mem); 910d09e41aSPaolo Bonzini MemoryRegion *sysbus_address_space(SysBusDevice *dev); 920d09e41aSPaolo Bonzini 93*496a8525SMarkus Armbruster bool sysbus_realize(SysBusDevice *dev, Error **errp); 94*496a8525SMarkus Armbruster bool sysbus_realize_and_unref(SysBusDevice *dev, Error **errp); 95*496a8525SMarkus Armbruster 96046f370fSThomas Huth /** 97046f370fSThomas Huth * sysbus_init_child_obj: 98046f370fSThomas Huth * @parent: The parent object 99046f370fSThomas Huth * @childname: Used as name of the "child<>" property in the parent 100046f370fSThomas Huth * @child: A pointer to the memory to be used for the object. 101046f370fSThomas Huth * @childsize: The maximum size available at @child for the object. 102046f370fSThomas Huth * @childtype: The name of the type of the object to instantiate. 103046f370fSThomas Huth * 104046f370fSThomas Huth * This function will initialize an object and attach it to the main system 105046f370fSThomas Huth * bus. The memory for the object should have already been allocated. The 106046f370fSThomas Huth * object will then be added as child to the given parent. The returned object 107046f370fSThomas Huth * has a reference count of 1 (for the "child<...>" property from the parent), 108046f370fSThomas Huth * so the object will be finalized automatically when the parent gets removed. 109046f370fSThomas Huth */ 110046f370fSThomas Huth void sysbus_init_child_obj(Object *parent, const char *childname, void *child, 111046f370fSThomas Huth size_t childsize, const char *childtype); 112046f370fSThomas Huth 113eb572280SAlexander Graf /* Call func for every dynamically created sysbus device in the system */ 114eb572280SAlexander Graf void foreach_dynamic_sysbus_device(FindSysbusDeviceFunc *func, void *opaque); 115eb572280SAlexander Graf 1160d09e41aSPaolo Bonzini /* Legacy helper function for creating devices. */ 1170d09e41aSPaolo Bonzini DeviceState *sysbus_create_varargs(const char *name, 1180d09e41aSPaolo Bonzini hwaddr addr, ...); 1197e83a77fSMarc-André Lureau 1200d09e41aSPaolo Bonzini static inline DeviceState *sysbus_create_simple(const char *name, 1210d09e41aSPaolo Bonzini hwaddr addr, 1220d09e41aSPaolo Bonzini qemu_irq irq) 1230d09e41aSPaolo Bonzini { 1240d09e41aSPaolo Bonzini return sysbus_create_varargs(name, addr, irq, NULL); 1250d09e41aSPaolo Bonzini } 1260d09e41aSPaolo Bonzini 127175de524SMarkus Armbruster #endif /* HW_SYSBUS_H */ 128