diff options
| author | Avi Kivity <avi@redhat.com> | 2011-07-24 17:12:11 +0300 |
|---|---|---|
| committer | Avi Kivity <avi@redhat.com> | 2011-08-24 20:17:35 +0300 |
| commit | be35694da941168603b09a7420bcc476d745fc41 (patch) | |
| tree | de438519a693d9bdc80cd4ebfdf2390ba2a27240 /hw/sysbus.h | |
| parent | 58160bafa2a0e0b915309c58e7d51f0e67831bf0 (diff) | |
| download | focaccia-qemu-be35694da941168603b09a7420bcc476d745fc41.tar.gz focaccia-qemu-be35694da941168603b09a7420bcc476d745fc41.zip | |
sysbus: add helpers to add and delete memory regions to the system bus
Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/sysbus.h')
| -rw-r--r-- | hw/sysbus.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hw/sysbus.h b/hw/sysbus.h index b87c6c5aab..e4d56cfe8e 100644 --- a/hw/sysbus.h +++ b/hw/sysbus.h @@ -57,6 +57,12 @@ void sysbus_init_ioports(SysBusDevice *dev, pio_addr_t ioport, pio_addr_t size); void sysbus_connect_irq(SysBusDevice *dev, int n, qemu_irq irq); void sysbus_mmio_map(SysBusDevice *dev, int n, target_phys_addr_t addr); +void sysbus_add_memory(SysBusDevice *dev, target_phys_addr_t addr, + MemoryRegion *mem); +void sysbus_del_memory(SysBusDevice *dev, MemoryRegion *mem); +void sysbus_add_io(SysBusDevice *dev, target_phys_addr_t addr, + MemoryRegion *mem); +void sysbus_del_io(SysBusDevice *dev, MemoryRegion *mem); /* Legacy helper function for creating devices. */ DeviceState *sysbus_create_varargs(const char *name, |