1aae9460eSPaul Brook #ifndef HW_SYSBUS_H 2aae9460eSPaul Brook #define HW_SYSBUS_H 1 3aae9460eSPaul Brook 4aae9460eSPaul Brook /* Devices attached directly to the main system bus. */ 5aae9460eSPaul Brook 683c9f4caSPaolo Bonzini #include "hw/qdev.h" 7022c62cbSPaolo Bonzini #include "exec/memory.h" 8aae9460eSPaul Brook 9f40070c3SBlue Swirl #define QDEV_MAX_MMIO 32 10c646f74fSGleb Natapov #define QDEV_MAX_PIO 32 11aae9460eSPaul Brook 120d936928SAnthony Liguori #define TYPE_SYSTEM_BUS "System" 1300c2275cSGonglei #define SYSTEM_BUS(obj) OBJECT_CHECK(BusState, (obj), TYPE_SYSTEM_BUS) 140d936928SAnthony Liguori 15aae9460eSPaul Brook typedef struct SysBusDevice SysBusDevice; 16aae9460eSPaul Brook 17999e12bbSAnthony Liguori #define TYPE_SYS_BUS_DEVICE "sys-bus-device" 18999e12bbSAnthony Liguori #define SYS_BUS_DEVICE(obj) \ 19999e12bbSAnthony Liguori OBJECT_CHECK(SysBusDevice, (obj), TYPE_SYS_BUS_DEVICE) 20999e12bbSAnthony Liguori #define SYS_BUS_DEVICE_CLASS(klass) \ 21999e12bbSAnthony Liguori OBJECT_CLASS_CHECK(SysBusDeviceClass, (klass), TYPE_SYS_BUS_DEVICE) 22999e12bbSAnthony Liguori #define SYS_BUS_DEVICE_GET_CLASS(obj) \ 23999e12bbSAnthony Liguori OBJECT_GET_CLASS(SysBusDeviceClass, (obj), TYPE_SYS_BUS_DEVICE) 24999e12bbSAnthony Liguori 25ce724398SHu Tao /** 26ce724398SHu Tao * SysBusDeviceClass: 27ce724398SHu Tao * @init: Callback function invoked when the #DeviceState.realized property 28ce724398SHu Tao * is changed to %true. Deprecated, new types inheriting directly from 29ce724398SHu Tao * TYPE_SYS_BUS_DEVICE should use #DeviceClass.realize instead, new leaf 30ce724398SHu Tao * types should consult their respective parent type. 31ce724398SHu Tao * 32ce724398SHu Tao * SysBusDeviceClass is not overriding #DeviceClass.realize, so derived 33ce724398SHu Tao * classes overriding it are not required to invoke its implementation. 34ce724398SHu Tao */ 35b5917219SPeter Crosthwaite 36b5917219SPeter Crosthwaite #define SYSBUS_DEVICE_GPIO_IRQ "sysbus-irq" 37b5917219SPeter Crosthwaite 38999e12bbSAnthony Liguori typedef struct SysBusDeviceClass { 39ce724398SHu Tao /*< private >*/ 40999e12bbSAnthony Liguori DeviceClass parent_class; 41ce724398SHu Tao /*< public >*/ 42999e12bbSAnthony Liguori 43999e12bbSAnthony Liguori int (*init)(SysBusDevice *dev); 44*0b336b3bSLaszlo Ersek 45*0b336b3bSLaszlo Ersek /* 46*0b336b3bSLaszlo Ersek * Let the sysbus device format its own non-PIO, non-MMIO unit address. 47*0b336b3bSLaszlo Ersek * 48*0b336b3bSLaszlo Ersek * Sometimes a class of SysBusDevices has neither MMIO nor PIO resources, 49*0b336b3bSLaszlo Ersek * yet instances of it would like to distinguish themselves, in 50*0b336b3bSLaszlo Ersek * OpenFirmware device paths, from other instances of the same class on the 51*0b336b3bSLaszlo Ersek * sysbus. For that end we expose this callback. 52*0b336b3bSLaszlo Ersek * 53*0b336b3bSLaszlo Ersek * The implementation is not supposed to change *@dev, or incur other 54*0b336b3bSLaszlo Ersek * observable change. 55*0b336b3bSLaszlo Ersek * 56*0b336b3bSLaszlo Ersek * The function returns a dynamically allocated string. On error, NULL 57*0b336b3bSLaszlo Ersek * should be returned; the unit address portion of the OFW node will be 58*0b336b3bSLaszlo Ersek * omitted then. (This is not considered a fatal error.) 59*0b336b3bSLaszlo Ersek */ 60*0b336b3bSLaszlo Ersek char *(*explicit_ofw_unit_address)(const SysBusDevice *dev); 61999e12bbSAnthony Liguori } SysBusDeviceClass; 62999e12bbSAnthony Liguori 63aae9460eSPaul Brook struct SysBusDevice { 64b67964d7SAndreas Färber /*< private >*/ 65b67964d7SAndreas Färber DeviceState parent_obj; 66b67964d7SAndreas Färber /*< public >*/ 67b67964d7SAndreas Färber 68aae9460eSPaul Brook int num_mmio; 69aae9460eSPaul Brook struct { 70a8170e5eSAvi Kivity hwaddr addr; 71ec3bb837SAvi Kivity MemoryRegion *memory; 72aae9460eSPaul Brook } mmio[QDEV_MAX_MMIO]; 73c646f74fSGleb Natapov int num_pio; 74c646f74fSGleb Natapov pio_addr_t pio[QDEV_MAX_PIO]; 75aae9460eSPaul Brook }; 76aae9460eSPaul Brook 77eb572280SAlexander Graf typedef int FindSysbusDeviceFunc(SysBusDevice *sbdev, void *opaque); 78eb572280SAlexander Graf 79750ecd44SAvi Kivity void sysbus_init_mmio(SysBusDevice *dev, MemoryRegion *memory); 8046c305efSPeter Maydell MemoryRegion *sysbus_mmio_get_region(SysBusDevice *dev, int n); 81aae9460eSPaul Brook void sysbus_init_irq(SysBusDevice *dev, qemu_irq *p); 82aae9460eSPaul Brook void sysbus_pass_irq(SysBusDevice *dev, SysBusDevice *target); 83c646f74fSGleb Natapov void sysbus_init_ioports(SysBusDevice *dev, pio_addr_t ioport, pio_addr_t size); 84aae9460eSPaul Brook 85aae9460eSPaul Brook 86b7973186SAlexander Graf bool sysbus_has_irq(SysBusDevice *dev, int n); 87471a9bc1SAlexander Graf bool sysbus_has_mmio(SysBusDevice *dev, unsigned int n); 88aae9460eSPaul Brook void sysbus_connect_irq(SysBusDevice *dev, int n, qemu_irq irq); 89b7973186SAlexander Graf bool sysbus_is_irq_connected(SysBusDevice *dev, int n); 90b7973186SAlexander Graf qemu_irq sysbus_get_connected_irq(SysBusDevice *dev, int n); 91a8170e5eSAvi Kivity void sysbus_mmio_map(SysBusDevice *dev, int n, hwaddr addr); 927feb640cSAlexey Korolev void sysbus_mmio_map_overlap(SysBusDevice *dev, int n, hwaddr addr, 93a1ff8ae0SMarcel Apfelbaum int priority); 94a8170e5eSAvi Kivity void sysbus_add_io(SysBusDevice *dev, hwaddr addr, 952b985d9cSAvi Kivity MemoryRegion *mem); 9662ec4832SAvi Kivity MemoryRegion *sysbus_address_space(SysBusDevice *dev); 97aae9460eSPaul Brook 98eb572280SAlexander Graf /* Call func for every dynamically created sysbus device in the system */ 99eb572280SAlexander Graf void foreach_dynamic_sysbus_device(FindSysbusDeviceFunc *func, void *opaque); 100eb572280SAlexander Graf 101aae9460eSPaul Brook /* Legacy helper function for creating devices. */ 102aae9460eSPaul Brook DeviceState *sysbus_create_varargs(const char *name, 103a8170e5eSAvi Kivity hwaddr addr, ...); 1044912371fSBlue Swirl DeviceState *sysbus_try_create_varargs(const char *name, 105a8170e5eSAvi Kivity hwaddr addr, ...); 106aae9460eSPaul Brook static inline DeviceState *sysbus_create_simple(const char *name, 107a8170e5eSAvi Kivity hwaddr addr, 108aae9460eSPaul Brook qemu_irq irq) 109aae9460eSPaul Brook { 110aae9460eSPaul Brook return sysbus_create_varargs(name, addr, irq, NULL); 111aae9460eSPaul Brook } 112aae9460eSPaul Brook 1134912371fSBlue Swirl static inline DeviceState *sysbus_try_create_simple(const char *name, 114a8170e5eSAvi Kivity hwaddr addr, 1154912371fSBlue Swirl qemu_irq irq) 1164912371fSBlue Swirl { 1174912371fSBlue Swirl return sysbus_try_create_varargs(name, addr, irq, NULL); 1184912371fSBlue Swirl } 1194912371fSBlue Swirl 120aae9460eSPaul Brook #endif /* !HW_SYSBUS_H */ 121