pci: add pci_address_space_io()
Returns the I/O address space. Useful for implementing PCI-ISA bridge devices. Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
1ce9ce6a61
commit
e11d64390b
5
hw/pci.c
5
hw/pci.c
@ -2124,3 +2124,8 @@ MemoryRegion *pci_address_space(PCIDevice *dev)
|
|||||||
{
|
{
|
||||||
return dev->bus->address_space_mem;
|
return dev->bus->address_space_mem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MemoryRegion *pci_address_space_io(PCIDevice *dev)
|
||||||
|
{
|
||||||
|
return dev->bus->address_space_io;
|
||||||
|
}
|
||||||
|
1
hw/pci.h
1
hw/pci.h
@ -218,6 +218,7 @@ void pci_default_write_config(PCIDevice *d,
|
|||||||
void pci_device_save(PCIDevice *s, QEMUFile *f);
|
void pci_device_save(PCIDevice *s, QEMUFile *f);
|
||||||
int pci_device_load(PCIDevice *s, QEMUFile *f);
|
int pci_device_load(PCIDevice *s, QEMUFile *f);
|
||||||
MemoryRegion *pci_address_space(PCIDevice *dev);
|
MemoryRegion *pci_address_space(PCIDevice *dev);
|
||||||
|
MemoryRegion *pci_address_space_io(PCIDevice *dev);
|
||||||
|
|
||||||
typedef void (*pci_set_irq_fn)(void *opaque, int irq_num, int level);
|
typedef void (*pci_set_irq_fn)(void *opaque, int irq_num, int level);
|
||||||
typedef int (*pci_map_irq_fn)(PCIDevice *pci_dev, int irq_num);
|
typedef int (*pci_map_irq_fn)(PCIDevice *pci_dev, int irq_num);
|
||||||
|
Loading…
Reference in New Issue
Block a user