1
2
3
4
5
6
7
8
9#include <linux/kernel.h>
10#include <linux/pci.h>
11#include <linux/string.h>
12#include <linux/export.h>
13#include <linux/init.h>
14#include <linux/gfp.h>
15
16#include <asm/io.h>
17#include <asm/prom.h>
18#include <asm/pci-bridge.h>
19#include <asm/ppc-pci.h>
20#include <asm/firmware.h>
21#include <asm/eeh.h>
22
23
24
25
26
27
28
29
30static struct pci_dn *pci_bus_to_pdn(struct pci_bus *bus)
31{
32 struct pci_bus *pbus;
33 struct device_node *dn;
34 struct pci_dn *pdn;
35
36
37
38
39
40 pbus = bus;
41 while (pbus) {
42 if (pci_is_root_bus(pbus) || pbus->self)
43 break;
44
45 pbus = pbus->parent;
46 }
47
48
49
50
51
52 dn = pci_bus_to_OF_node(pbus);
53 pdn = dn ? PCI_DN(dn) : NULL;
54
55 return pdn;
56}
57
58struct pci_dn *pci_get_pdn_by_devfn(struct pci_bus *bus,
59 int devfn)
60{
61 struct device_node *dn = NULL;
62 struct pci_dn *parent, *pdn;
63 struct pci_dev *pdev = NULL;
64
65
66 list_for_each_entry(pdev, &bus->devices, bus_list) {
67 if (pdev->devfn == devfn) {
68 if (pdev->dev.archdata.pci_data)
69 return pdev->dev.archdata.pci_data;
70
71 dn = pci_device_to_OF_node(pdev);
72 break;
73 }
74 }
75
76
77 pdn = dn ? PCI_DN(dn) : NULL;
78 if (pdn)
79 return pdn;
80
81
82 parent = pci_bus_to_pdn(bus);
83 if (!parent)
84 return NULL;
85
86 list_for_each_entry(pdn, &parent->child_list, list) {
87 if (pdn->busno == bus->number &&
88 pdn->devfn == devfn)
89 return pdn;
90 }
91
92 return NULL;
93}
94
95struct pci_dn *pci_get_pdn(struct pci_dev *pdev)
96{
97 struct device_node *dn;
98 struct pci_dn *parent, *pdn;
99
100
101 if (pdev->dev.archdata.pci_data)
102 return pdev->dev.archdata.pci_data;
103
104
105 dn = pci_device_to_OF_node(pdev);
106 pdn = dn ? PCI_DN(dn) : NULL;
107 if (pdn)
108 return pdn;
109
110
111
112
113
114 parent = pci_bus_to_pdn(pdev->bus);
115 if (!parent)
116 return NULL;
117
118 list_for_each_entry(pdn, &parent->child_list, list) {
119 if (pdn->busno == pdev->bus->number &&
120 pdn->devfn == pdev->devfn)
121 return pdn;
122 }
123
124 return NULL;
125}
126
127#ifdef CONFIG_PCI_IOV
128static struct pci_dn *add_one_sriov_vf_pdn(struct pci_dn *parent,
129 int vf_index,
130 int busno, int devfn)
131{
132 struct pci_dn *pdn;
133
134
135 if (!parent)
136 return NULL;
137
138 pdn = kzalloc(sizeof(*pdn), GFP_KERNEL);
139 if (!pdn)
140 return NULL;
141
142 pdn->phb = parent->phb;
143 pdn->parent = parent;
144 pdn->busno = busno;
145 pdn->devfn = devfn;
146 pdn->vf_index = vf_index;
147 pdn->pe_number = IODA_INVALID_PE;
148 INIT_LIST_HEAD(&pdn->child_list);
149 INIT_LIST_HEAD(&pdn->list);
150 list_add_tail(&pdn->list, &parent->child_list);
151
152 return pdn;
153}
154
155struct pci_dn *add_sriov_vf_pdns(struct pci_dev *pdev)
156{
157 struct pci_dn *parent, *pdn;
158 int i;
159
160
161 if (WARN_ON(!pdev->is_physfn))
162 return NULL;
163
164
165 pdn = pci_get_pdn(pdev);
166 if (!pdn || (pdn->flags & PCI_DN_FLAG_IOV_VF))
167 return NULL;
168
169 pdn->flags |= PCI_DN_FLAG_IOV_VF;
170 parent = pci_bus_to_pdn(pdev->bus);
171 if (!parent)
172 return NULL;
173
174 for (i = 0; i < pci_sriov_get_totalvfs(pdev); i++) {
175 struct eeh_dev *edev __maybe_unused;
176
177 pdn = add_one_sriov_vf_pdn(parent, i,
178 pci_iov_virtfn_bus(pdev, i),
179 pci_iov_virtfn_devfn(pdev, i));
180 if (!pdn) {
181 dev_warn(&pdev->dev, "%s: Cannot create firmware data for VF#%d\n",
182 __func__, i);
183 return NULL;
184 }
185
186#ifdef CONFIG_EEH
187
188 edev = eeh_dev_init(pdn);
189 BUG_ON(!edev);
190 edev->physfn = pdev;
191#endif
192 }
193 return pci_get_pdn(pdev);
194}
195
196void remove_sriov_vf_pdns(struct pci_dev *pdev)
197{
198 struct pci_dn *parent;
199 struct pci_dn *pdn, *tmp;
200 int i;
201
202
203 if (WARN_ON(!pdev->is_physfn))
204 return;
205
206
207 pdn = pci_get_pdn(pdev);
208 if (!pdn || !(pdn->flags & PCI_DN_FLAG_IOV_VF))
209 return;
210
211 pdn->flags &= ~PCI_DN_FLAG_IOV_VF;
212 parent = pci_bus_to_pdn(pdev->bus);
213 if (!parent)
214 return;
215
216
217
218
219
220
221 for (i = 0; i < pci_sriov_get_totalvfs(pdev); i++) {
222 struct eeh_dev *edev __maybe_unused;
223
224 list_for_each_entry_safe(pdn, tmp,
225 &parent->child_list, list) {
226 if (pdn->busno != pci_iov_virtfn_bus(pdev, i) ||
227 pdn->devfn != pci_iov_virtfn_devfn(pdev, i))
228 continue;
229
230#ifdef CONFIG_EEH
231
232
233
234
235
236
237 edev = pdn_to_eeh_dev(pdn);
238 if (edev) {
239
240
241
242
243
244 if (edev->pe)
245 eeh_rmv_from_parent_pe(edev);
246
247 pdn->edev = NULL;
248 kfree(edev);
249 }
250#endif
251
252 if (!list_empty(&pdn->list))
253 list_del(&pdn->list);
254
255 kfree(pdn);
256 }
257 }
258}
259#endif
260
261struct pci_dn *pci_add_device_node_info(struct pci_controller *hose,
262 struct device_node *dn)
263{
264 const __be32 *type = of_get_property(dn, "ibm,pci-config-space-type", NULL);
265 const __be32 *regs;
266 struct device_node *parent;
267 struct pci_dn *pdn;
268#ifdef CONFIG_EEH
269 struct eeh_dev *edev;
270#endif
271
272 pdn = kzalloc(sizeof(*pdn), GFP_KERNEL);
273 if (pdn == NULL)
274 return NULL;
275 dn->data = pdn;
276 pdn->phb = hose;
277 pdn->pe_number = IODA_INVALID_PE;
278 regs = of_get_property(dn, "reg", NULL);
279 if (regs) {
280 u32 addr = of_read_number(regs, 1);
281
282
283 pdn->busno = (addr >> 16) & 0xff;
284 pdn->devfn = (addr >> 8) & 0xff;
285 }
286
287
288 regs = of_get_property(dn, "vendor-id", NULL);
289 pdn->vendor_id = regs ? of_read_number(regs, 1) : 0;
290 regs = of_get_property(dn, "device-id", NULL);
291 pdn->device_id = regs ? of_read_number(regs, 1) : 0;
292 regs = of_get_property(dn, "class-code", NULL);
293 pdn->class_code = regs ? of_read_number(regs, 1) : 0;
294
295
296 pdn->pci_ext_config_space = (type && of_read_number(type, 1) == 1);
297
298
299#ifdef CONFIG_EEH
300 edev = eeh_dev_init(pdn);
301 if (!edev) {
302 kfree(pdn);
303 return NULL;
304 }
305#endif
306
307
308 INIT_LIST_HEAD(&pdn->child_list);
309 INIT_LIST_HEAD(&pdn->list);
310 parent = of_get_parent(dn);
311 pdn->parent = parent ? PCI_DN(parent) : NULL;
312 if (pdn->parent)
313 list_add_tail(&pdn->list, &pdn->parent->child_list);
314
315 return pdn;
316}
317EXPORT_SYMBOL_GPL(pci_add_device_node_info);
318
319void pci_remove_device_node_info(struct device_node *dn)
320{
321 struct pci_dn *pdn = dn ? PCI_DN(dn) : NULL;
322 struct device_node *parent;
323 struct pci_dev *pdev;
324#ifdef CONFIG_EEH
325 struct eeh_dev *edev = pdn_to_eeh_dev(pdn);
326
327 if (edev)
328 edev->pdn = NULL;
329#endif
330
331 if (!pdn)
332 return;
333
334 WARN_ON(!list_empty(&pdn->child_list));
335 list_del(&pdn->list);
336
337
338 parent = of_get_parent(dn);
339 if (parent)
340 of_node_put(parent);
341
342
343
344
345
346
347 pdev = pci_get_domain_bus_and_slot(pdn->phb->global_number,
348 pdn->busno, pdn->devfn);
349 if (pdev) {
350
351 pci_dbg(pdev, "marked pdn (from %pOF) as dead\n", dn);
352 pdn->flags |= PCI_DN_FLAG_DEAD;
353 } else {
354 dn->data = NULL;
355 kfree(pdn);
356 }
357
358 pci_dev_put(pdev);
359}
360EXPORT_SYMBOL_GPL(pci_remove_device_node_info);
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380void *pci_traverse_device_nodes(struct device_node *start,
381 void *(*fn)(struct device_node *, void *),
382 void *data)
383{
384 struct device_node *dn, *nextdn;
385 void *ret;
386
387
388 for (dn = start->child; dn; dn = nextdn) {
389 const __be32 *classp;
390 u32 class = 0;
391
392 nextdn = NULL;
393 classp = of_get_property(dn, "class-code", NULL);
394 if (classp)
395 class = of_read_number(classp, 1);
396
397 if (fn) {
398 ret = fn(dn, data);
399 if (ret)
400 return ret;
401 }
402
403
404 if (dn->child && ((class >> 8) == PCI_CLASS_BRIDGE_PCI ||
405 (class >> 8) == PCI_CLASS_BRIDGE_CARDBUS))
406
407 nextdn = dn->child;
408 else if (dn->sibling)
409
410 nextdn = dn->sibling;
411 if (!nextdn) {
412
413 do {
414 dn = dn->parent;
415 if (dn == start)
416 return NULL;
417 } while (dn->sibling == NULL);
418 nextdn = dn->sibling;
419 }
420 }
421 return NULL;
422}
423EXPORT_SYMBOL_GPL(pci_traverse_device_nodes);
424
425static struct pci_dn *pci_dn_next_one(struct pci_dn *root,
426 struct pci_dn *pdn)
427{
428 struct list_head *next = pdn->child_list.next;
429
430 if (next != &pdn->child_list)
431 return list_entry(next, struct pci_dn, list);
432
433 while (1) {
434 if (pdn == root)
435 return NULL;
436
437 next = pdn->list.next;
438 if (next != &pdn->parent->child_list)
439 break;
440
441 pdn = pdn->parent;
442 }
443
444 return list_entry(next, struct pci_dn, list);
445}
446
447void *traverse_pci_dn(struct pci_dn *root,
448 void *(*fn)(struct pci_dn *, void *),
449 void *data)
450{
451 struct pci_dn *pdn = root;
452 void *ret;
453
454
455 for (pdn = pci_dn_next_one(root, pdn); pdn;
456 pdn = pci_dn_next_one(root, pdn)) {
457 ret = fn(pdn, data);
458 if (ret)
459 return ret;
460 }
461
462 return NULL;
463}
464
465static void *add_pdn(struct device_node *dn, void *data)
466{
467 struct pci_controller *hose = data;
468 struct pci_dn *pdn;
469
470 pdn = pci_add_device_node_info(hose, dn);
471 if (!pdn)
472 return ERR_PTR(-ENOMEM);
473
474 return NULL;
475}
476
477
478
479
480
481
482
483
484
485void pci_devs_phb_init_dynamic(struct pci_controller *phb)
486{
487 struct device_node *dn = phb->dn;
488 struct pci_dn *pdn;
489
490
491 pdn = pci_add_device_node_info(phb, dn);
492 if (pdn) {
493 pdn->devfn = pdn->busno = -1;
494 pdn->vendor_id = pdn->device_id = pdn->class_code = 0;
495 pdn->phb = phb;
496 phb->pci_data = pdn;
497 }
498
499
500 pci_traverse_device_nodes(dn, add_pdn, phb);
501}
502
503
504
505
506
507
508
509
510
511
512static int __init pci_devs_phb_init(void)
513{
514 struct pci_controller *phb, *tmp;
515
516
517 list_for_each_entry_safe(phb, tmp, &hose_list, list_node)
518 pci_devs_phb_init_dynamic(phb);
519
520 return 0;
521}
522
523core_initcall(pci_devs_phb_init);
524
525static void pci_dev_pdn_setup(struct pci_dev *pdev)
526{
527 struct pci_dn *pdn;
528
529 if (pdev->dev.archdata.pci_data)
530 return;
531
532
533 pdn = pci_get_pdn(pdev);
534 pdev->dev.archdata.pci_data = pdn;
535}
536DECLARE_PCI_FIXUP_EARLY(PCI_ANY_ID, PCI_ANY_ID, pci_dev_pdn_setup);
537