diff options
author | Alexander Graf <agraf@suse.de> | 2014-09-24 12:32:17 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2014-11-04 23:26:14 +0100 |
commit | b797318666dade9675a253d311125ae7b568e2f8 (patch) | |
tree | 2168ef91b1a20267ec70cc164a14a54a303d585c /include/hw/sysbus.h | |
parent | 33cd52b5d7b9adfd009e95f07e6c64dd88ae2a31 (diff) |
sysbus: Expose IRQ enumeration helpers
Sysbus devices can get their IRQ lines connected to other devices. It is
possible to figure out which IRQ line a connection is on and whether a sysbus
device even provides an IRQ connector at a specific offset.
This patch exposes helpers to make this information publicly accessible. We
will need it for the platform bus dynamic sysbus enumeration.
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/hw/sysbus.h')
-rw-r--r-- | include/hw/sysbus.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/hw/sysbus.h b/include/hw/sysbus.h index 80529ffed8..2a3cfa785f 100644 --- a/include/hw/sysbus.h +++ b/include/hw/sysbus.h @@ -66,7 +66,10 @@ void sysbus_pass_irq(SysBusDevice *dev, SysBusDevice *target); void sysbus_init_ioports(SysBusDevice *dev, pio_addr_t ioport, pio_addr_t size); +bool sysbus_has_irq(SysBusDevice *dev, int n); void sysbus_connect_irq(SysBusDevice *dev, int n, qemu_irq irq); +bool sysbus_is_irq_connected(SysBusDevice *dev, int n); +qemu_irq sysbus_get_connected_irq(SysBusDevice *dev, int n); void sysbus_mmio_map(SysBusDevice *dev, int n, hwaddr addr); void sysbus_mmio_map_overlap(SysBusDevice *dev, int n, hwaddr addr, int priority); |