This source file includes following definitions.
- of_pci_phb_probe
1
2
3
4
5
6
7
8 #undef DEBUG
9
10 #include <linux/string.h>
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/export.h>
14 #include <linux/mod_devicetable.h>
15 #include <linux/pci.h>
16 #include <linux/of.h>
17 #include <linux/of_device.h>
18 #include <linux/of_platform.h>
19 #include <linux/atomic.h>
20
21 #include <asm/errno.h>
22 #include <asm/topology.h>
23 #include <asm/pci-bridge.h>
24 #include <asm/ppc-pci.h>
25 #include <asm/eeh.h>
26
27 #ifdef CONFIG_PPC_OF_PLATFORM_PCI
28
29
30
31
32
33
34
35 static int of_pci_phb_probe(struct platform_device *dev)
36 {
37 struct pci_controller *phb;
38
39
40 if (ppc_md.pci_setup_phb == NULL)
41 return -ENODEV;
42
43 pr_info("Setting up PCI bus %pOF\n", dev->dev.of_node);
44
45
46 phb = pcibios_alloc_controller(dev->dev.of_node);
47 if (!phb)
48 return -ENODEV;
49
50
51 phb->parent = &dev->dev;
52
53
54 if (ppc_md.pci_setup_phb(phb)) {
55 pcibios_free_controller(phb);
56 return -ENODEV;
57 }
58
59
60 pci_process_bridge_OF_ranges(phb, dev->dev.of_node, 0);
61
62
63 pci_devs_phb_init_dynamic(phb);
64
65
66 eeh_dev_phb_init_dynamic(phb);
67
68
69 if (dev->dev.of_node->child)
70 eeh_add_device_tree_early(PCI_DN(dev->dev.of_node));
71
72
73 pcibios_scan_phb(phb);
74 if (phb->bus == NULL)
75 return -ENXIO;
76
77
78
79
80
81 pcibios_claim_one_bus(phb->bus);
82
83
84 eeh_add_device_tree_late(phb->bus);
85
86
87 pci_bus_add_devices(phb->bus);
88
89
90 eeh_add_sysfs_files(phb->bus);
91
92 return 0;
93 }
94
95 static const struct of_device_id of_pci_phb_ids[] = {
96 { .type = "pci", },
97 { .type = "pcix", },
98 { .type = "pcie", },
99 { .type = "pciex", },
100 { .type = "ht", },
101 {}
102 };
103
104 static struct platform_driver of_pci_phb_driver = {
105 .probe = of_pci_phb_probe,
106 .driver = {
107 .name = "of-pci",
108 .of_match_table = of_pci_phb_ids,
109 },
110 };
111
112 builtin_platform_driver(of_pci_phb_driver);
113
114 #endif