mirror of
https://github.com/xemu-project/xemu.git
synced 2025-01-21 03:16:59 +00:00
isa: Add isa_address_space_io()
This function permits to retrieve ISA IO address space. It will be usefull when we need to pass IO address space as argument. Signed-off-by: Julien Grall <julien.grall@citrix.com> Acked-by: Avi Kivity <avi@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
16c6c80ac3
commit
ac10027327
@ -264,4 +264,13 @@ MemoryRegion *isa_address_space(ISADevice *dev)
|
||||
return get_system_memory();
|
||||
}
|
||||
|
||||
MemoryRegion *isa_address_space_io(ISADevice *dev)
|
||||
{
|
||||
if (dev) {
|
||||
return isa_bus_from_device(dev)->address_space_io;
|
||||
}
|
||||
|
||||
return isabus->address_space_io;
|
||||
}
|
||||
|
||||
type_init(isabus_register_types)
|
||||
|
1
hw/isa.h
1
hw/isa.h
@ -43,6 +43,7 @@ void isa_bus_irqs(ISABus *bus, qemu_irq *irqs);
|
||||
qemu_irq isa_get_irq(ISADevice *dev, int isairq);
|
||||
void isa_init_irq(ISADevice *dev, qemu_irq *p, int isairq);
|
||||
MemoryRegion *isa_address_space(ISADevice *dev);
|
||||
MemoryRegion *isa_address_space_io(ISADevice *dev);
|
||||
ISADevice *isa_create(ISABus *bus, const char *name);
|
||||
ISADevice *isa_try_create(ISABus *bus, const char *name);
|
||||
ISADevice *isa_create_simple(ISABus *bus, const char *name);
|
||||
|
Loading…
x
Reference in New Issue
Block a user