mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
isa: add isa_address_space()
A helper that returns the address space used by ISA devices. Useful for getting rid of isa_mem_base, multiple ISA buses, or ISA buses behind bridges. Signed-off-by: Avi Kivity <avi@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
c5b3572fc6
commit
c839adec88
2 changed files with 7 additions and 0 deletions
|
@ -20,6 +20,7 @@
|
|||
#include "monitor.h"
|
||||
#include "sysbus.h"
|
||||
#include "isa.h"
|
||||
#include "exec-memory.h"
|
||||
|
||||
struct ISABus {
|
||||
BusState qbus;
|
||||
|
@ -202,4 +203,9 @@ static char *isabus_get_fw_dev_path(DeviceState *dev)
|
|||
return strdup(path);
|
||||
}
|
||||
|
||||
MemoryRegion *isa_address_space(ISADevice *dev)
|
||||
{
|
||||
return get_system_memory();
|
||||
}
|
||||
|
||||
device_init(isabus_register_devices)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue