aboutsummaryrefslogtreecommitdiff
path: root/include/pci.h
diff options
context:
space:
mode:
authorGavin Shan <gwshan@linux.vnet.ibm.com>2015-10-16 16:08:16 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2015-10-26 14:12:31 +1100
commit75e9440124d554fedb1816c518d5dad6e832728f (patch)
treef207fbc5c78c28e3d9f6af3c5d58c17a5362722b /include/pci.h
parentb939be22dfab6aedd95ae4142793cbbe634227aa (diff)
downloadskiboot-75e9440124d554fedb1816c518d5dad6e832728f.zip
skiboot-75e9440124d554fedb1816c518d5dad6e832728f.tar.gz
skiboot-75e9440124d554fedb1816c518d5dad6e832728f.tar.bz2
PCI: Trace device node from PCI device
When nvLink and nVida's GPU included in PCI topology, we have the emulated PCI devices to represent nvLinks, which is associated with the real GPU PCI device with help of device-tree. The patch introduces one more field "dn" to "struct pci_device" to make the job easier. The patch also adds one more PHB operations "device_node_fixup", which is to be called when populating PCI device node so that we have chance to link the emulated PCI device and the real GPU device through device tree. Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include/pci.h')
-rw-r--r--include/pci.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/include/pci.h b/include/pci.h
index ca3f949..52579ad 100644
--- a/include/pci.h
+++ b/include/pci.h
@@ -149,6 +149,7 @@ struct pci_device {
uint32_t pcrf_end;
struct list_head pcrf;
+ struct dt_node *dn;
struct pci_slot_info *slot_info;
struct pci_device *parent;
struct list_head children;
@@ -198,14 +199,14 @@ struct pci_lsi_state {
#define MAX_INT_SIZE 2
uint32_t int_size; /* #cells */
uint32_t int_val[4][MAX_INT_SIZE]; /* INTA...INTD */
- uint32_t int_parent[4];
+ uint32_t int_parent[4];
};
/*
* NOTE: All PCI functions return negative OPAL error codes
*
* In addition, some functions may return a positive timeout
- * value or some other state information, see the description
+ * value or some other state information, see the description
* of individual functions. If nothing is specified, it's
* just an error code or 0 (success).
*
@@ -266,6 +267,12 @@ struct phb_ops {
void (*device_init)(struct phb *phb, struct pci_device *device);
/*
+ * Device node fixup is called when the PCI device node is being
+ * populated
+ */
+ void (*device_node_fixup)(struct phb *phb, struct pci_device *pd);
+
+ /*
* EEH methods
*
* The various arguments are identical to the corresponding