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