summaryrefslogtreecommitdiffstats
path: root/hw/sysbus.c
diff options
context:
space:
mode:
authorAvi Kivity2011-07-24 16:12:11 +0200
committerAvi Kivity2011-09-04 16:46:50 +0200
commit2b985d9c29efdd0a8394ad6b2edd2ba1acdb3536 (patch)
tree7e7964dfc6220c9a8165a011457fe3e263a2fbd2 /hw/sysbus.c
parentstellaris_enet: convert to memory API (diff)
downloadqemu-2b985d9c29efdd0a8394ad6b2edd2ba1acdb3536.tar.gz
qemu-2b985d9c29efdd0a8394ad6b2edd2ba1acdb3536.tar.xz
qemu-2b985d9c29efdd0a8394ad6b2edd2ba1acdb3536.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.c')
-rw-r--r--hw/sysbus.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/hw/sysbus.c b/hw/sysbus.c
index c365d39d24..02b4e49a91 100644
--- a/hw/sysbus.c
+++ b/hw/sysbus.c
@@ -261,3 +261,25 @@ static char *sysbus_get_fw_dev_path(DeviceState *dev)
return strdup(path);
}
+
+void sysbus_add_memory(SysBusDevice *dev, target_phys_addr_t addr,
+ MemoryRegion *mem)
+{
+ memory_region_add_subregion(get_system_memory(), addr, mem);
+}
+
+void sysbus_del_memory(SysBusDevice *dev, MemoryRegion *mem)
+{
+ memory_region_del_subregion(get_system_memory(), mem);
+}
+
+void sysbus_add_io(SysBusDevice *dev, target_phys_addr_t addr,
+ MemoryRegion *mem)
+{
+ memory_region_add_subregion(get_system_io(), addr, mem);
+}
+
+void sysbus_del_io(SysBusDevice *dev, MemoryRegion *mem)
+{
+ memory_region_del_subregion(get_system_io(), mem);
+}