[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 06/10] pseries: Export find_phb() utility function f
From: |
David Gibson |
Subject: |
[Qemu-devel] [PATCH 06/10] pseries: Export find_phb() utility function for PCI code |
Date: |
Wed, 8 Aug 2012 12:10:35 +1000 |
From: Alexey Kardashevskiy <address@hidden>
The pseries PCI code makes use of an internal find_dev() function which
locates a PCIDevice * given a (platform specific) bus ID and device
address. Internally this needs to first locate the host bridge on which
the device resides based on the bus ID. This patch exposes that host
bridge lookup as a separate function, which we will need later in the MSI
and VFIO code.
Signed-off-by: Alexey Kardashevskiy <address@hidden>
Signed-off-by: David Gibson <address@hidden>
---
hw/spapr_pci.c | 32 ++++++++++++++++++++++----------
1 file changed, 22 insertions(+), 10 deletions(-)
diff --git a/hw/spapr_pci.c b/hw/spapr_pci.c
index fcc358e..842068f 100644
--- a/hw/spapr_pci.c
+++ b/hw/spapr_pci.c
@@ -29,27 +29,39 @@
#include "hw/spapr_pci.h"
#include "exec-memory.h"
#include <libfdt.h>
+#include "trace.h"
#include "hw/pci_internals.h"
-static PCIDevice *find_dev(sPAPREnvironment *spapr,
- uint64_t buid, uint32_t config_addr)
+static sPAPRPHBState *find_phb(sPAPREnvironment *spapr, uint64_t buid)
{
- int devfn = (config_addr >> 8) & 0xFF;
sPAPRPHBState *phb;
QLIST_FOREACH(phb, &spapr->phbs, list) {
- BusChild *kid;
-
if (phb->buid != buid) {
continue;
}
+ return phb;
+ }
+
+ return NULL;
+}
+
+static PCIDevice *find_dev(sPAPREnvironment *spapr, uint64_t buid,
+ uint32_t config_addr)
+{
+ sPAPRPHBState *phb = find_phb(spapr, buid);
+ BusChild *kid;
+ int devfn = (config_addr >> 8) & 0xFF;
+
+ if (!phb) {
+ return NULL;
+ }
- QTAILQ_FOREACH(kid, &phb->host_state.bus->qbus.children, sibling) {
- PCIDevice *dev = (PCIDevice *)kid->child;
- if (dev->devfn == devfn) {
- return dev;
- }
+ QTAILQ_FOREACH(kid, &phb->host_state.bus->qbus.children, sibling) {
+ PCIDevice *dev = (PCIDevice *)kid->child;
+ if (dev->devfn == devfn) {
+ return dev;
}
}
--
1.7.10.4
- [Qemu-devel] [0/10] pseries updates and cleanups, David Gibson, 2012/08/07
- [Qemu-devel] [PATCH 02/10] pseries: Remove extraneous prints, David Gibson, 2012/08/07
- [Qemu-devel] [PATCH 04/10] pseries: Separate PCI RTAS setup from common from emulation specific PCI setup, David Gibson, 2012/08/07
- [Qemu-devel] [PATCH 05/10] pseries: added allocator for a block of IRQs, David Gibson, 2012/08/07
- [Qemu-devel] [PATCH 09/10] pseries dma: DMA window params added to PHB and DT population changed, David Gibson, 2012/08/07
- [Qemu-devel] [PATCH 10/10] pseries: Update SLOF firmware image, David Gibson, 2012/08/07
- [Qemu-devel] [PATCH 03/10] pseries: Rework irq assignment to avoid carrying qemu_irqs around, David Gibson, 2012/08/07
- [Qemu-devel] [PATCH 07/10] pseries: Add trace event for PCI irqs, David Gibson, 2012/08/07
- [Qemu-devel] [PATCH 06/10] pseries: Export find_phb() utility function for PCI code,
David Gibson <=
- [Qemu-devel] [PATCH 08/10] pseries: Add PCI MSI/MSI-X support, David Gibson, 2012/08/07
- [Qemu-devel] [PATCH 01/10] pseries: Update SLOF, David Gibson, 2012/08/07
- Re: [Qemu-devel] [0/10] pseries updates and cleanups, Alexander Graf, 2012/08/14