]> bbs.cooldavid.org Git - net-next-2.6.git/blob - arch/powerpc/kernel/of_platform.c
of/platform: remove all of_bus_type and of_platform_bus_type references
[net-next-2.6.git] / arch / powerpc / kernel / of_platform.c
1 /*
2  *    Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp.
3  *                       <benh@kernel.crashing.org>
4  *    and                Arnd Bergmann, IBM Corp.
5  *
6  *  This program is free software; you can redistribute it and/or
7  *  modify it under the terms of the GNU General Public License
8  *  as published by the Free Software Foundation; either version
9  *  2 of the License, or (at your option) any later version.
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/module.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
25 #include <asm/errno.h>
26 #include <asm/topology.h>
27 #include <asm/pci-bridge.h>
28 #include <asm/ppc-pci.h>
29 #include <asm/atomic.h>
30
31 /*
32  * The list of OF IDs below is used for matching bus types in the
33  * system whose devices are to be exposed as of_platform_devices.
34  *
35  * This is the default list valid for most platforms. This file provides
36  * functions who can take an explicit list if necessary though
37  *
38  * The search is always performed recursively looking for children of
39  * the provided device_node and recursively if such a children matches
40  * a bus type in the list
41  */
42
43 const struct of_device_id of_default_bus_ids[] = {
44         { .type = "soc", },
45         { .compatible = "soc", },
46         { .type = "spider", },
47         { .type = "axon", },
48         { .type = "plb5", },
49         { .type = "plb4", },
50         { .type = "opb", },
51         { .type = "ebc", },
52         {},
53 };
54
55 static int of_dev_node_match(struct device *dev, void *data)
56 {
57         return to_of_device(dev)->dev.of_node == data;
58 }
59
60 struct of_device *of_find_device_by_node(struct device_node *np)
61 {
62         struct device *dev;
63
64         dev = bus_find_device(&platform_bus_type, NULL, np, of_dev_node_match);
65         if (dev)
66                 return to_of_device(dev);
67         return NULL;
68 }
69 EXPORT_SYMBOL(of_find_device_by_node);
70
71 #ifdef CONFIG_PPC_OF_PLATFORM_PCI
72
73 /* The probing of PCI controllers from of_platform is currently
74  * 64 bits only, mostly due to gratuitous differences between
75  * the 32 and 64 bits PCI code on PowerPC and the 32 bits one
76  * lacking some bits needed here.
77  */
78
79 static int __devinit of_pci_phb_probe(struct of_device *dev,
80                                       const struct of_device_id *match)
81 {
82         struct pci_controller *phb;
83
84         /* Check if we can do that ... */
85         if (ppc_md.pci_setup_phb == NULL)
86                 return -ENODEV;
87
88         pr_info("Setting up PCI bus %s\n", dev->dev.of_node->full_name);
89
90         /* Alloc and setup PHB data structure */
91         phb = pcibios_alloc_controller(dev->dev.of_node);
92         if (!phb)
93                 return -ENODEV;
94
95         /* Setup parent in sysfs */
96         phb->parent = &dev->dev;
97
98         /* Setup the PHB using arch provided callback */
99         if (ppc_md.pci_setup_phb(phb)) {
100                 pcibios_free_controller(phb);
101                 return -ENODEV;
102         }
103
104         /* Process "ranges" property */
105         pci_process_bridge_OF_ranges(phb, dev->dev.of_node, 0);
106
107         /* Init pci_dn data structures */
108         pci_devs_phb_init_dynamic(phb);
109
110         /* Register devices with EEH */
111 #ifdef CONFIG_EEH
112         if (dev->dev.of_node->child)
113                 eeh_add_device_tree_early(dev->dev.of_node);
114 #endif /* CONFIG_EEH */
115
116         /* Scan the bus */
117         pcibios_scan_phb(phb, dev->dev.of_node);
118         if (phb->bus == NULL)
119                 return -ENXIO;
120
121         /* Claim resources. This might need some rework as well depending
122          * wether we are doing probe-only or not, like assigning unassigned
123          * resources etc...
124          */
125         pcibios_claim_one_bus(phb->bus);
126
127         /* Finish EEH setup */
128 #ifdef CONFIG_EEH
129         eeh_add_device_tree_late(phb->bus);
130 #endif
131
132         /* Add probed PCI devices to the device model */
133         pci_bus_add_devices(phb->bus);
134
135         return 0;
136 }
137
138 static struct of_device_id of_pci_phb_ids[] = {
139         { .type = "pci", },
140         { .type = "pcix", },
141         { .type = "pcie", },
142         { .type = "pciex", },
143         { .type = "ht", },
144         {}
145 };
146
147 static struct of_platform_driver of_pci_phb_driver = {
148         .probe = of_pci_phb_probe,
149         .driver = {
150                 .name = "of-pci",
151                 .owner = THIS_MODULE,
152                 .of_match_table = of_pci_phb_ids,
153         },
154 };
155
156 static __init int of_pci_phb_init(void)
157 {
158         return of_register_platform_driver(&of_pci_phb_driver);
159 }
160
161 device_initcall(of_pci_phb_init);
162
163 #endif /* CONFIG_PPC_OF_PLATFORM_PCI */