]> Git Repo - qemu.git/commitdiff
pci: add pci_address_space()
authorAvi Kivity <[email protected]>
Mon, 15 Aug 2011 14:17:36 +0000 (17:17 +0300)
committerAnthony Liguori <[email protected]>
Mon, 22 Aug 2011 15:47:49 +0000 (10:47 -0500)
Returns the PCI address space.  Useful for bridges that can obscure
part of the PCI address space.

Signed-off-by: Avi Kivity <[email protected]>
Signed-off-by: Anthony Liguori <[email protected]>
hw/pci.c
hw/pci.h

index 4dc13d2561f8752ec808b68b996fdf7851caad25..6124790f010c187023a29768da9c046ecbfeb18e 100644 (file)
--- a/hw/pci.c
+++ b/hw/pci.c
@@ -2165,3 +2165,8 @@ int pci_qdev_find_device(const char *id, PCIDevice **pdev)
 
     return rc;
 }
+
+MemoryRegion *pci_address_space(PCIDevice *dev)
+{
+    return dev->bus->address_space_mem;
+}
index d7ad7fb95fe0cad29d03e762e148f307dfeac5c4..391217e43169aab1ea85602e75e49d985453a49b 100644 (file)
--- a/hw/pci.h
+++ b/hw/pci.h
@@ -220,6 +220,7 @@ void pci_default_write_config(PCIDevice *d,
                               uint32_t address, uint32_t val, int len);
 void pci_device_save(PCIDevice *s, QEMUFile *f);
 int pci_device_load(PCIDevice *s, QEMUFile *f);
+MemoryRegion *pci_address_space(PCIDevice *dev);
 
 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);
This page took 0.031382 seconds and 4 git commands to generate.