memblock: stop using implicit alignment to SMP_CACHE_BYTES
[linux-2.6-block.git] / arch / powerpc / kernel / pci_32.c
CommitLineData
e05b3b4a
PM
1/*
2 * Common pmac/prep/chrp pci routines. -- Cort
3 */
4
e05b3b4a
PM
5#include <linux/kernel.h>
6#include <linux/pci.h>
7#include <linux/delay.h>
8#include <linux/string.h>
9#include <linux/init.h>
10#include <linux/capability.h>
11#include <linux/sched.h>
12#include <linux/errno.h>
57c8a661 13#include <linux/memblock.h>
c89ca593 14#include <linux/syscalls.h>
6e99e458 15#include <linux/irq.h>
f90bb153 16#include <linux/list.h>
66524b22 17#include <linux/of.h>
5a0e3ad6 18#include <linux/slab.h>
93087948 19#include <linux/export.h>
e05b3b4a
PM
20
21#include <asm/processor.h>
22#include <asm/io.h>
23#include <asm/prom.h>
24#include <asm/sections.h>
25#include <asm/pci-bridge.h>
c3bd517d 26#include <asm/ppc-pci.h>
e05b3b4a 27#include <asm/byteorder.h>
7c0f6ba6 28#include <linux/uaccess.h>
e05b3b4a
PM
29#include <asm/machdep.h>
30
31#undef DEBUG
32
e05b3b4a 33unsigned long isa_io_base = 0;
e05b3b4a
PM
34unsigned long pci_dram_offset = 0;
35int pcibios_assign_bus_offset = 1;
9445aa1a
AV
36EXPORT_SYMBOL(isa_io_base);
37EXPORT_SYMBOL(pci_dram_offset);
e05b3b4a
PM
38
39void pcibios_make_OF_bus_map(void);
40
e05b3b4a 41static void fixup_cpc710_pci64(struct pci_dev* dev);
e05b3b4a 42static u8* pci_to_OF_bus_map;
e05b3b4a
PM
43
44/* By default, we don't re-assign bus numbers. We do this only on
45 * some pmacs
46 */
fc3fb71c 47static int pci_assign_all_buses;
e05b3b4a 48
e05b3b4a
PM
49static int pci_bus_count;
50
7b6b574c
BH
51/* This will remain NULL for now, until isa-bridge.c is made common
52 * to both 32-bit and 64-bit.
53 */
54struct pci_dev *isa_bridge_pcidev;
55EXPORT_SYMBOL_GPL(isa_bridge_pcidev);
56
e05b3b4a
PM
57static void
58fixup_cpc710_pci64(struct pci_dev* dev)
59{
60 /* Hide the PCI64 BARs from the kernel as their content doesn't
61 * fit well in the resource management
62 */
63 dev->resource[0].start = dev->resource[0].end = 0;
64 dev->resource[0].flags = 0;
65 dev->resource[1].start = dev->resource[1].end = 0;
66 dev->resource[1].flags = 0;
67}
68DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CPC710_PCI64, fixup_cpc710_pci64);
69
e05b3b4a
PM
70/*
71 * Functions below are used on OpenFirmware machines.
72 */
73static void
74make_one_node_map(struct device_node* node, u8 pci_bus)
75{
a7f67bdf 76 const int *bus_range;
e05b3b4a
PM
77 int len;
78
79 if (pci_bus >= pci_bus_count)
80 return;
e2eb6392 81 bus_range = of_get_property(node, "bus-range", &len);
e05b3b4a 82 if (bus_range == NULL || len < 2 * sizeof(int)) {
b7c670d6
RH
83 printk(KERN_WARNING "Can't get bus-range for %pOF, "
84 "assuming it starts at 0\n", node);
e05b3b4a
PM
85 pci_to_OF_bus_map[pci_bus] = 0;
86 } else
87 pci_to_OF_bus_map[pci_bus] = bus_range[0];
88
66524b22 89 for_each_child_of_node(node, node) {
e05b3b4a 90 struct pci_dev* dev;
a7f67bdf 91 const unsigned int *class_code, *reg;
e05b3b4a 92
e2eb6392 93 class_code = of_get_property(node, "class-code", NULL);
e05b3b4a
PM
94 if (!class_code || ((*class_code >> 8) != PCI_CLASS_BRIDGE_PCI &&
95 (*class_code >> 8) != PCI_CLASS_BRIDGE_CARDBUS))
96 continue;
e2eb6392 97 reg = of_get_property(node, "reg", NULL);
e05b3b4a
PM
98 if (!reg)
99 continue;
50ed5780
SK
100 dev = pci_get_domain_bus_and_slot(0, pci_bus,
101 ((reg[0] >> 8) & 0xff));
ab462768
AC
102 if (!dev || !dev->subordinate) {
103 pci_dev_put(dev);
e05b3b4a 104 continue;
ab462768 105 }
e05b3b4a 106 make_one_node_map(node, dev->subordinate->number);
ab462768 107 pci_dev_put(dev);
e05b3b4a
PM
108 }
109}
110
111void
112pcibios_make_OF_bus_map(void)
113{
114 int i;
a4c9e328 115 struct pci_controller *hose, *tmp;
a7f67bdf 116 struct property *map_prop;
8c8dc322 117 struct device_node *dn;
e05b3b4a 118
5cbded58 119 pci_to_OF_bus_map = kmalloc(pci_bus_count, GFP_KERNEL);
e05b3b4a
PM
120 if (!pci_to_OF_bus_map) {
121 printk(KERN_ERR "Can't allocate OF bus map !\n");
122 return;
123 }
124
125 /* We fill the bus map with invalid values, that helps
126 * debugging.
127 */
128 for (i=0; i<pci_bus_count; i++)
129 pci_to_OF_bus_map[i] = 0xff;
130
131 /* For each hose, we begin searching bridges */
a4c9e328 132 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
44ef3390
SR
133 struct device_node* node = hose->dn;
134
e05b3b4a
PM
135 if (!node)
136 continue;
137 make_one_node_map(node, hose->first_busno);
138 }
8c8dc322
SR
139 dn = of_find_node_by_path("/");
140 map_prop = of_find_property(dn, "pci-OF-bus-map", NULL);
a7f67bdf
JK
141 if (map_prop) {
142 BUG_ON(pci_bus_count > map_prop->length);
143 memcpy(map_prop->value, pci_to_OF_bus_map, pci_bus_count);
144 }
8c8dc322 145 of_node_put(dn);
e05b3b4a
PM
146#ifdef DEBUG
147 printk("PCI->OF bus map:\n");
148 for (i=0; i<pci_bus_count; i++) {
149 if (pci_to_OF_bus_map[i] == 0xff)
150 continue;
151 printk("%d -> %d\n", i, pci_to_OF_bus_map[i]);
152 }
153#endif
154}
155
e05b3b4a
PM
156
157/*
158 * Returns the PCI device matching a given OF node
159 */
98d9f30c 160int pci_device_from_OF_node(struct device_node *node, u8 *bus, u8 *devfn)
e05b3b4a 161{
98d9f30c
BH
162 struct pci_dev *dev = NULL;
163 const __be32 *reg;
164 int size;
165
166 /* Check if it might have a chance to be a PCI device */
167 if (!pci_find_hose_for_OF_device(node))
e05b3b4a 168 return -ENODEV;
98d9f30c
BH
169
170 reg = of_get_property(node, "reg", &size);
171 if (!reg || size < 5 * sizeof(u32))
e05b3b4a 172 return -ENODEV;
98d9f30c
BH
173
174 *bus = (be32_to_cpup(&reg[0]) >> 16) & 0xff;
175 *devfn = (be32_to_cpup(&reg[0]) >> 8) & 0xff;
e05b3b4a
PM
176
177 /* Ok, here we need some tweak. If we have already renumbered
178 * all busses, we can't rely on the OF bus number any more.
179 * the pci_to_OF_bus_map is not enough as several PCI busses
180 * may match the same OF bus number.
181 */
182 if (!pci_to_OF_bus_map)
183 return 0;
184
185 for_each_pci_dev(dev)
186 if (pci_to_OF_bus_map[dev->bus->number] == *bus &&
187 dev->devfn == *devfn) {
188 *bus = dev->bus->number;
189 pci_dev_put(dev);
190 return 0;
191 }
192
193 return -ENODEV;
194}
195EXPORT_SYMBOL(pci_device_from_OF_node);
196
e05b3b4a
PM
197/* We create the "pci-OF-bus-map" property now so it appears in the
198 * /proc device tree
199 */
200void __init
201pci_create_OF_bus_map(void)
202{
203 struct property* of_prop;
8c8dc322
SR
204 struct device_node *dn;
205
7e1c4e27
MR
206 of_prop = memblock_alloc(sizeof(struct property) + 256,
207 SMP_CACHE_BYTES);
8c8dc322
SR
208 dn = of_find_node_by_path("/");
209 if (dn) {
e05b3b4a
PM
210 memset(of_prop, -1, sizeof(struct property) + 256);
211 of_prop->name = "pci-OF-bus-map";
212 of_prop->length = 256;
1a38147e 213 of_prop->value = &of_prop[1];
79d1c712 214 of_add_property(dn, of_prop);
8c8dc322 215 of_node_put(dn);
e05b3b4a
PM
216 }
217}
218
cad5cef6 219void pcibios_setup_phb_io_space(struct pci_controller *hose)
53280323 220{
53280323
BH
221 unsigned long io_offset;
222 struct resource *res = &hose->io_resource;
223
53280323 224 /* Fixup IO space offset */
38973ba7
BH
225 io_offset = pcibios_io_space_offset(hose);
226 res->start += io_offset;
227 res->end += io_offset;
53280323
BH
228}
229
3fd94c6b 230static int __init pcibios_init(void)
e05b3b4a 231{
a4c9e328 232 struct pci_controller *hose, *tmp;
a4c9e328 233 int next_busno = 0;
e05b3b4a
PM
234
235 printk(KERN_INFO "PCI: Probing PCI hardware\n");
236
0e47ff1c 237 if (pci_has_flag(PCI_REASSIGN_ALL_BUS))
fc3fb71c
BH
238 pci_assign_all_buses = 1;
239
e05b3b4a 240 /* Scan all of the recorded PCI controllers. */
a4c9e328 241 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
e05b3b4a
PM
242 if (pci_assign_all_buses)
243 hose->first_busno = next_busno;
244 hose->last_busno = 0xff;
b5d937de 245 pcibios_scan_phb(hose);
53280323 246 pci_bus_add_devices(hose->bus);
e05b3b4a
PM
247 if (pci_assign_all_buses || next_busno <= hose->last_busno)
248 next_busno = hose->last_busno + pcibios_assign_bus_offset;
249 }
250 pci_bus_count = next_busno;
251
252 /* OpenFirmware based machines need a map of OF bus
253 * numbers vs. kernel bus numbers since we may have to
254 * remap them.
255 */
6b82b3e4 256 if (pci_assign_all_buses)
e05b3b4a
PM
257 pcibios_make_OF_bus_map();
258
3fd94c6b
BH
259 /* Call common code to handle resource allocation */
260 pcibios_resource_survey();
e05b3b4a
PM
261
262 /* Call machine dependent post-init code */
263 if (ppc_md.pcibios_after_init)
264 ppc_md.pcibios_after_init();
265
266 return 0;
267}
268
269subsys_initcall(pcibios_init);
270
0b1d40c4 271static struct pci_controller*
e05b3b4a
PM
272pci_bus_to_hose(int bus)
273{
a4c9e328 274 struct pci_controller *hose, *tmp;
e05b3b4a 275
a4c9e328 276 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
e05b3b4a
PM
277 if (bus >= hose->first_busno && bus <= hose->last_busno)
278 return hose;
279 return NULL;
280}
281
e05b3b4a
PM
282/* Provide information on locations of various I/O regions in physical
283 * memory. Do this on a per-card basis so that we choose the right
284 * root bridge.
285 * Note that the returned IO or memory base is a physical address
286 */
287
3691d614
AV
288SYSCALL_DEFINE3(pciconfig_iobase, long, which,
289 unsigned long, bus, unsigned long, devfn)
e05b3b4a
PM
290{
291 struct pci_controller* hose;
292 long result = -EOPNOTSUPP;
293
e05b3b4a
PM
294 hose = pci_bus_to_hose(bus);
295 if (!hose)
296 return -ENODEV;
297
298 switch (which) {
299 case IOBASE_BRIDGE_NUMBER:
300 return (long)hose->first_busno;
301 case IOBASE_MEMORY:
3fd47f06 302 return (long)hose->mem_offset[0];
e05b3b4a
PM
303 case IOBASE_IO:
304 return (long)hose->io_base_phys;
305 case IOBASE_ISA_IO:
306 return (long)isa_io_base;
307 case IOBASE_ISA_MEM:
308 return (long)isa_mem_base;
309 }
310
311 return result;
312}