powerpc/pci: Fix SRIOV not building without EEH enabled
[linux/fpc-iii.git] / arch / powerpc / kernel / pci_dn.c
blobafeda26c2ebccd03a25f1362cfb085cd3bb28e21
1 /*
2 * pci_dn.c
4 * Copyright (C) 2001 Todd Inglett, IBM Corporation
6 * PCI manipulation via device_nodes.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/kernel.h>
23 #include <linux/pci.h>
24 #include <linux/string.h>
25 #include <linux/export.h>
26 #include <linux/init.h>
27 #include <linux/gfp.h>
29 #include <asm/io.h>
30 #include <asm/prom.h>
31 #include <asm/pci-bridge.h>
32 #include <asm/ppc-pci.h>
33 #include <asm/firmware.h>
36 * The function is used to find the firmware data of one
37 * specific PCI device, which is attached to the indicated
38 * PCI bus. For VFs, their firmware data is linked to that
39 * one of PF's bridge. For other devices, their firmware
40 * data is linked to that of their bridge.
42 static struct pci_dn *pci_bus_to_pdn(struct pci_bus *bus)
44 struct pci_bus *pbus;
45 struct device_node *dn;
46 struct pci_dn *pdn;
49 * We probably have virtual bus which doesn't
50 * have associated bridge.
52 pbus = bus;
53 while (pbus) {
54 if (pci_is_root_bus(pbus) || pbus->self)
55 break;
57 pbus = pbus->parent;
61 * Except virtual bus, all PCI buses should
62 * have device nodes.
64 dn = pci_bus_to_OF_node(pbus);
65 pdn = dn ? PCI_DN(dn) : NULL;
67 return pdn;
70 struct pci_dn *pci_get_pdn_by_devfn(struct pci_bus *bus,
71 int devfn)
73 struct device_node *dn = NULL;
74 struct pci_dn *parent, *pdn;
75 struct pci_dev *pdev = NULL;
77 /* Fast path: fetch from PCI device */
78 list_for_each_entry(pdev, &bus->devices, bus_list) {
79 if (pdev->devfn == devfn) {
80 if (pdev->dev.archdata.pci_data)
81 return pdev->dev.archdata.pci_data;
83 dn = pci_device_to_OF_node(pdev);
84 break;
88 /* Fast path: fetch from device node */
89 pdn = dn ? PCI_DN(dn) : NULL;
90 if (pdn)
91 return pdn;
93 /* Slow path: fetch from firmware data hierarchy */
94 parent = pci_bus_to_pdn(bus);
95 if (!parent)
96 return NULL;
98 list_for_each_entry(pdn, &parent->child_list, list) {
99 if (pdn->busno == bus->number &&
100 pdn->devfn == devfn)
101 return pdn;
104 return NULL;
107 struct pci_dn *pci_get_pdn(struct pci_dev *pdev)
109 struct device_node *dn;
110 struct pci_dn *parent, *pdn;
112 /* Search device directly */
113 if (pdev->dev.archdata.pci_data)
114 return pdev->dev.archdata.pci_data;
116 /* Check device node */
117 dn = pci_device_to_OF_node(pdev);
118 pdn = dn ? PCI_DN(dn) : NULL;
119 if (pdn)
120 return pdn;
123 * VFs don't have device nodes. We hook their
124 * firmware data to PF's bridge.
126 parent = pci_bus_to_pdn(pdev->bus);
127 if (!parent)
128 return NULL;
130 list_for_each_entry(pdn, &parent->child_list, list) {
131 if (pdn->busno == pdev->bus->number &&
132 pdn->devfn == pdev->devfn)
133 return pdn;
136 return NULL;
139 #ifdef CONFIG_PCI_IOV
140 static struct pci_dn *add_one_dev_pci_data(struct pci_dn *parent,
141 struct pci_dev *pdev,
142 int vf_index,
143 int busno, int devfn)
145 struct pci_dn *pdn;
147 /* Except PHB, we always have the parent */
148 if (!parent)
149 return NULL;
151 pdn = kzalloc(sizeof(*pdn), GFP_KERNEL);
152 if (!pdn) {
153 dev_warn(&pdev->dev, "%s: Out of memory!\n", __func__);
154 return NULL;
157 pdn->phb = parent->phb;
158 pdn->parent = parent;
159 pdn->busno = busno;
160 pdn->devfn = devfn;
161 #ifdef CONFIG_PPC_POWERNV
162 pdn->vf_index = vf_index;
163 pdn->pe_number = IODA_INVALID_PE;
164 #endif
165 INIT_LIST_HEAD(&pdn->child_list);
166 INIT_LIST_HEAD(&pdn->list);
167 list_add_tail(&pdn->list, &parent->child_list);
170 * If we already have PCI device instance, lets
171 * bind them.
173 if (pdev)
174 pdev->dev.archdata.pci_data = pdn;
176 return pdn;
178 #endif
180 struct pci_dn *add_dev_pci_data(struct pci_dev *pdev)
182 #ifdef CONFIG_PCI_IOV
183 struct pci_dn *parent, *pdn;
184 #ifdef CONFIG_EEH
185 struct eeh_dev *edev;
186 #endif /* CONFIG_EEH */
187 int i;
189 /* Only support IOV for now */
190 if (!pdev->is_physfn)
191 return pci_get_pdn(pdev);
193 /* Check if VFs have been populated */
194 pdn = pci_get_pdn(pdev);
195 if (!pdn || (pdn->flags & PCI_DN_FLAG_IOV_VF))
196 return NULL;
198 pdn->flags |= PCI_DN_FLAG_IOV_VF;
199 parent = pci_bus_to_pdn(pdev->bus);
200 if (!parent)
201 return NULL;
203 for (i = 0; i < pci_sriov_get_totalvfs(pdev); i++) {
204 pdn = add_one_dev_pci_data(parent, NULL, i,
205 pci_iov_virtfn_bus(pdev, i),
206 pci_iov_virtfn_devfn(pdev, i));
207 if (!pdn) {
208 dev_warn(&pdev->dev, "%s: Cannot create firmware data for VF#%d\n",
209 __func__, i);
210 return NULL;
213 #ifdef CONFIG_EEH
214 /* Create the EEH device for the VF */
215 eeh_dev_init(pdn, pci_bus_to_host(pdev->bus));
216 edev = pdn_to_eeh_dev(pdn);
217 BUG_ON(!edev);
218 edev->physfn = pdev;
219 #endif /* CONFIG_EEH */
221 #endif /* CONFIG_PCI_IOV */
223 return pci_get_pdn(pdev);
226 void remove_dev_pci_data(struct pci_dev *pdev)
228 #ifdef CONFIG_PCI_IOV
229 struct pci_dn *parent;
230 struct pci_dn *pdn, *tmp;
231 struct eeh_dev *edev;
232 int i;
235 * VF and VF PE are created/released dynamically, so we need to
236 * bind/unbind them. Otherwise the VF and VF PE would be mismatched
237 * when re-enabling SR-IOV.
239 if (pdev->is_virtfn) {
240 pdn = pci_get_pdn(pdev);
241 #ifdef CONFIG_PPC_POWERNV
242 pdn->pe_number = IODA_INVALID_PE;
243 #endif
244 return;
247 /* Only support IOV PF for now */
248 if (!pdev->is_physfn)
249 return;
251 /* Check if VFs have been populated */
252 pdn = pci_get_pdn(pdev);
253 if (!pdn || !(pdn->flags & PCI_DN_FLAG_IOV_VF))
254 return;
256 pdn->flags &= ~PCI_DN_FLAG_IOV_VF;
257 parent = pci_bus_to_pdn(pdev->bus);
258 if (!parent)
259 return;
262 * We might introduce flag to pci_dn in future
263 * so that we can release VF's firmware data in
264 * a batch mode.
266 for (i = 0; i < pci_sriov_get_totalvfs(pdev); i++) {
267 list_for_each_entry_safe(pdn, tmp,
268 &parent->child_list, list) {
269 if (pdn->busno != pci_iov_virtfn_bus(pdev, i) ||
270 pdn->devfn != pci_iov_virtfn_devfn(pdev, i))
271 continue;
273 #ifdef CONFIG_EEH
274 /* Release EEH device for the VF */
275 edev = pdn_to_eeh_dev(pdn);
276 if (edev) {
277 pdn->edev = NULL;
278 kfree(edev);
280 #endif /* CONFIG_EEH */
282 if (!list_empty(&pdn->list))
283 list_del(&pdn->list);
285 kfree(pdn);
288 #endif /* CONFIG_PCI_IOV */
291 struct pci_dn *pci_add_device_node_info(struct pci_controller *hose,
292 struct device_node *dn)
294 const __be32 *type = of_get_property(dn, "ibm,pci-config-space-type", NULL);
295 const __be32 *regs;
296 struct device_node *parent;
297 struct pci_dn *pdn;
299 pdn = zalloc_maybe_bootmem(sizeof(*pdn), GFP_KERNEL);
300 if (pdn == NULL)
301 return NULL;
302 dn->data = pdn;
303 pdn->node = dn;
304 pdn->phb = hose;
305 #ifdef CONFIG_PPC_POWERNV
306 pdn->pe_number = IODA_INVALID_PE;
307 #endif
308 regs = of_get_property(dn, "reg", NULL);
309 if (regs) {
310 u32 addr = of_read_number(regs, 1);
312 /* First register entry is addr (00BBSS00) */
313 pdn->busno = (addr >> 16) & 0xff;
314 pdn->devfn = (addr >> 8) & 0xff;
317 /* vendor/device IDs and class code */
318 regs = of_get_property(dn, "vendor-id", NULL);
319 pdn->vendor_id = regs ? of_read_number(regs, 1) : 0;
320 regs = of_get_property(dn, "device-id", NULL);
321 pdn->device_id = regs ? of_read_number(regs, 1) : 0;
322 regs = of_get_property(dn, "class-code", NULL);
323 pdn->class_code = regs ? of_read_number(regs, 1) : 0;
325 /* Extended config space */
326 pdn->pci_ext_config_space = (type && of_read_number(type, 1) == 1);
328 /* Attach to parent node */
329 INIT_LIST_HEAD(&pdn->child_list);
330 INIT_LIST_HEAD(&pdn->list);
331 parent = of_get_parent(dn);
332 pdn->parent = parent ? PCI_DN(parent) : NULL;
333 if (pdn->parent)
334 list_add_tail(&pdn->list, &pdn->parent->child_list);
336 return pdn;
338 EXPORT_SYMBOL_GPL(pci_add_device_node_info);
340 void pci_remove_device_node_info(struct device_node *dn)
342 struct pci_dn *pdn = dn ? PCI_DN(dn) : NULL;
343 #ifdef CONFIG_EEH
344 struct eeh_dev *edev = pdn_to_eeh_dev(pdn);
346 if (edev)
347 edev->pdn = NULL;
348 #endif
350 if (!pdn)
351 return;
353 WARN_ON(!list_empty(&pdn->child_list));
354 list_del(&pdn->list);
355 if (pdn->parent)
356 of_node_put(pdn->parent->node);
358 dn->data = NULL;
359 kfree(pdn);
361 EXPORT_SYMBOL_GPL(pci_remove_device_node_info);
364 * Traverse a device tree stopping each PCI device in the tree.
365 * This is done depth first. As each node is processed, a "pre"
366 * function is called and the children are processed recursively.
368 * The "pre" func returns a value. If non-zero is returned from
369 * the "pre" func, the traversal stops and this value is returned.
370 * This return value is useful when using traverse as a method of
371 * finding a device.
373 * NOTE: we do not run the func for devices that do not appear to
374 * be PCI except for the start node which we assume (this is good
375 * because the start node is often a phb which may be missing PCI
376 * properties).
377 * We use the class-code as an indicator. If we run into
378 * one of these nodes we also assume its siblings are non-pci for
379 * performance.
381 void *pci_traverse_device_nodes(struct device_node *start,
382 void *(*fn)(struct device_node *, void *),
383 void *data)
385 struct device_node *dn, *nextdn;
386 void *ret;
388 /* We started with a phb, iterate all childs */
389 for (dn = start->child; dn; dn = nextdn) {
390 const __be32 *classp;
391 u32 class = 0;
393 nextdn = NULL;
394 classp = of_get_property(dn, "class-code", NULL);
395 if (classp)
396 class = of_read_number(classp, 1);
398 if (fn) {
399 ret = fn(dn, data);
400 if (ret)
401 return ret;
404 /* If we are a PCI bridge, go down */
405 if (dn->child && ((class >> 8) == PCI_CLASS_BRIDGE_PCI ||
406 (class >> 8) == PCI_CLASS_BRIDGE_CARDBUS))
407 /* Depth first...do children */
408 nextdn = dn->child;
409 else if (dn->sibling)
410 /* ok, try next sibling instead. */
411 nextdn = dn->sibling;
412 if (!nextdn) {
413 /* Walk up to next valid sibling. */
414 do {
415 dn = dn->parent;
416 if (dn == start)
417 return NULL;
418 } while (dn->sibling == NULL);
419 nextdn = dn->sibling;
422 return NULL;
424 EXPORT_SYMBOL_GPL(pci_traverse_device_nodes);
426 static struct pci_dn *pci_dn_next_one(struct pci_dn *root,
427 struct pci_dn *pdn)
429 struct list_head *next = pdn->child_list.next;
431 if (next != &pdn->child_list)
432 return list_entry(next, struct pci_dn, list);
434 while (1) {
435 if (pdn == root)
436 return NULL;
438 next = pdn->list.next;
439 if (next != &pdn->parent->child_list)
440 break;
442 pdn = pdn->parent;
445 return list_entry(next, struct pci_dn, list);
448 void *traverse_pci_dn(struct pci_dn *root,
449 void *(*fn)(struct pci_dn *, void *),
450 void *data)
452 struct pci_dn *pdn = root;
453 void *ret;
455 /* Only scan the child nodes */
456 for (pdn = pci_dn_next_one(root, pdn); pdn;
457 pdn = pci_dn_next_one(root, pdn)) {
458 ret = fn(pdn, data);
459 if (ret)
460 return ret;
463 return NULL;
466 static void *add_pdn(struct device_node *dn, void *data)
468 struct pci_controller *hose = data;
469 struct pci_dn *pdn;
471 pdn = pci_add_device_node_info(hose, dn);
472 if (!pdn)
473 return ERR_PTR(-ENOMEM);
475 return NULL;
478 /**
479 * pci_devs_phb_init_dynamic - setup pci devices under this PHB
480 * phb: pci-to-host bridge (top-level bridge connecting to cpu)
482 * This routine is called both during boot, (before the memory
483 * subsystem is set up, before kmalloc is valid) and during the
484 * dynamic lpar operation of adding a PHB to a running system.
486 void pci_devs_phb_init_dynamic(struct pci_controller *phb)
488 struct device_node *dn = phb->dn;
489 struct pci_dn *pdn;
491 /* PHB nodes themselves must not match */
492 pdn = pci_add_device_node_info(phb, dn);
493 if (pdn) {
494 pdn->devfn = pdn->busno = -1;
495 pdn->vendor_id = pdn->device_id = pdn->class_code = 0;
496 pdn->phb = phb;
497 phb->pci_data = pdn;
500 /* Update dn->phb ptrs for new phb and children devices */
501 pci_traverse_device_nodes(dn, add_pdn, phb);
504 /**
505 * pci_devs_phb_init - Initialize phbs and pci devs under them.
507 * This routine walks over all phb's (pci-host bridges) on the
508 * system, and sets up assorted pci-related structures
509 * (including pci info in the device node structs) for each
510 * pci device found underneath. This routine runs once,
511 * early in the boot sequence.
513 void __init pci_devs_phb_init(void)
515 struct pci_controller *phb, *tmp;
517 /* This must be done first so the device nodes have valid pci info! */
518 list_for_each_entry_safe(phb, tmp, &hose_list, list_node)
519 pci_devs_phb_init_dynamic(phb);
522 static void pci_dev_pdn_setup(struct pci_dev *pdev)
524 struct pci_dn *pdn;
526 if (pdev->dev.archdata.pci_data)
527 return;
529 /* Setup the fast path */
530 pdn = pci_get_pdn(pdev);
531 pdev->dev.archdata.pci_data = pdn;
533 DECLARE_PCI_FIXUP_EARLY(PCI_ANY_ID, PCI_ANY_ID, pci_dev_pdn_setup);