From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:48051) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QsxzC-0006Ix-UN for qemu-devel@nongnu.org; Mon, 15 Aug 2011 10:17:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qsxz7-0004Tv-GO for qemu-devel@nongnu.org; Mon, 15 Aug 2011 10:17:50 -0400 Received: from mx1.redhat.com ([209.132.183.28]:31122) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qsxz7-0004Sc-19 for qemu-devel@nongnu.org; Mon, 15 Aug 2011 10:17:45 -0400 From: Avi Kivity Date: Mon, 15 Aug 2011 17:17:36 +0300 Message-Id: <1313417858-6454-23-git-send-email-avi@redhat.com> In-Reply-To: <1313417858-6454-1-git-send-email-avi@redhat.com> References: <1313417858-6454-1-git-send-email-avi@redhat.com> Subject: [Qemu-devel] [PATCH v2 22/24] pci: add pci_address_space() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori , qemu-devel@nongnu.org Cc: kvm@vger.kernel.org Returns the PCI address space. Useful for bridges that can obscure part of the PCI address space. Signed-off-by: Avi Kivity --- hw/pci.c | 5 +++++ hw/pci.h | 1 + 2 files changed, 6 insertions(+), 0 deletions(-) diff --git a/hw/pci.c b/hw/pci.c index dc7271a..4e495b4 100644 --- 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; +} diff --git a/hw/pci.h b/hw/pci.h index d7ad7fb..391217e 100644 --- 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); -- 1.7.5.3