diff options
author | Anthony Liguori | 2011-08-25 14:48:24 +0200 |
---|---|---|
committer | Anthony Liguori | 2011-08-25 14:48:24 +0200 |
commit | 8ef9ea85a2cc1007eaefa53e6871f1f83bcef22d (patch) | |
tree | fe43017f2bf431bc55a90b28e6c0e9357c4d46bd /hw/sysbus.c | |
parent | Merge remote-tracking branch 'aneesh/for-upstream-2' into staging (diff) | |
parent | milkymist: convert to memory API (diff) | |
download | qemu-8ef9ea85a2cc1007eaefa53e6871f1f83bcef22d.tar.gz qemu-8ef9ea85a2cc1007eaefa53e6871f1f83bcef22d.tar.xz qemu-8ef9ea85a2cc1007eaefa53e6871f1f83bcef22d.zip |
Merge remote-tracking branch 'qemu-kvm/memory/batch' into staging
Diffstat (limited to 'hw/sysbus.c')
-rw-r--r-- | hw/sysbus.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/hw/sysbus.c b/hw/sysbus.c index f39768b6a2..6e89f065b4 100644 --- a/hw/sysbus.c +++ b/hw/sysbus.c @@ -256,3 +256,32 @@ 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_add_memory_overlap(SysBusDevice *dev, target_phys_addr_t addr, + MemoryRegion *mem, unsigned priority) +{ + memory_region_add_subregion_overlap(get_system_memory(), addr, mem, + priority); +} + +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); +} |