blob: af364003880be26f331f9efce77806a20237691e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Common pmac/prep/chrp pci routines. -- Cort
3 */
4
5#include <linux/config.h>
6#include <linux/kernel.h>
7#include <linux/pci.h>
8#include <linux/delay.h>
9#include <linux/string.h>
10#include <linux/init.h>
11#include <linux/capability.h>
12#include <linux/sched.h>
13#include <linux/errno.h>
14#include <linux/bootmem.h>
15
16#include <asm/processor.h>
17#include <asm/io.h>
18#include <asm/prom.h>
19#include <asm/sections.h>
20#include <asm/pci-bridge.h>
21#include <asm/byteorder.h>
22#include <asm/irq.h>
23#include <asm/uaccess.h>
Paul Mackerrasb60fc8bb2005-10-10 14:14:55 +100024#include <asm/machdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#undef DEBUG
27
28#ifdef DEBUG
29#define DBG(x...) printk(x)
30#else
31#define DBG(x...)
32#endif
33
34unsigned long isa_io_base = 0;
35unsigned long isa_mem_base = 0;
36unsigned long pci_dram_offset = 0;
37int pcibios_assign_bus_offset = 1;
38
39void pcibios_make_OF_bus_map(void);
40
41static int pci_relocate_bridge_resource(struct pci_bus *bus, int i);
42static int probe_resource(struct pci_bus *parent, struct resource *pr,
43 struct resource *res, struct resource **conflict);
44static void update_bridge_base(struct pci_bus *bus, int i);
45static void pcibios_fixup_resources(struct pci_dev* dev);
46static void fixup_broken_pcnet32(struct pci_dev* dev);
47static int reparent_resources(struct resource *parent, struct resource *res);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static void fixup_cpc710_pci64(struct pci_dev* dev);
49#ifdef CONFIG_PPC_OF
50static u8* pci_to_OF_bus_map;
51#endif
52
53/* By default, we don't re-assign bus numbers. We do this only on
54 * some pmacs
55 */
Paul Mackerras399fe2b2005-10-20 20:57:05 +100056int pci_assign_all_buses;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58struct pci_controller* hose_head;
59struct pci_controller** hose_tail = &hose_head;
60
61static int pci_bus_count;
62
63static void
Linus Torvalds1da177e2005-04-16 15:20:36 -070064fixup_broken_pcnet32(struct pci_dev* dev)
65{
66 if ((dev->class>>8 == PCI_CLASS_NETWORK_ETHERNET)) {
67 dev->vendor = PCI_VENDOR_ID_AMD;
68 pci_write_config_word(dev, PCI_VENDOR_ID, PCI_VENDOR_ID_AMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 }
70}
71DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TRIDENT, PCI_ANY_ID, fixup_broken_pcnet32);
72
73static void
74fixup_cpc710_pci64(struct pci_dev* dev)
75{
76 /* Hide the PCI64 BARs from the kernel as their content doesn't
77 * fit well in the resource management
78 */
79 dev->resource[0].start = dev->resource[0].end = 0;
80 dev->resource[0].flags = 0;
81 dev->resource[1].start = dev->resource[1].end = 0;
82 dev->resource[1].flags = 0;
83}
84DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CPC710_PCI64, fixup_cpc710_pci64);
85
86static void
87pcibios_fixup_resources(struct pci_dev *dev)
88{
89 struct pci_controller* hose = (struct pci_controller *)dev->sysdata;
90 int i;
91 unsigned long offset;
92
93 if (!hose) {
94 printk(KERN_ERR "No hose for PCI dev %s!\n", pci_name(dev));
95 return;
96 }
97 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
98 struct resource *res = dev->resource + i;
99 if (!res->flags)
100 continue;
101 if (res->end == 0xffffffff) {
102 DBG("PCI:%s Resource %d [%08lx-%08lx] is unassigned\n",
103 pci_name(dev), i, res->start, res->end);
104 res->end -= res->start;
105 res->start = 0;
106 res->flags |= IORESOURCE_UNSET;
107 continue;
108 }
109 offset = 0;
110 if (res->flags & IORESOURCE_MEM) {
111 offset = hose->pci_mem_offset;
112 } else if (res->flags & IORESOURCE_IO) {
113 offset = (unsigned long) hose->io_base_virt
114 - isa_io_base;
115 }
116 if (offset != 0) {
117 res->start += offset;
118 res->end += offset;
119#ifdef DEBUG
120 printk("Fixup res %d (%lx) of dev %s: %lx -> %lx\n",
121 i, res->flags, pci_name(dev),
122 res->start - offset, res->start);
123#endif
124 }
125 }
126
127 /* Call machine specific resource fixup */
128 if (ppc_md.pcibios_fixup_resources)
129 ppc_md.pcibios_fixup_resources(dev);
130}
131DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
132
133void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
134 struct resource *res)
135{
136 unsigned long offset = 0;
137 struct pci_controller *hose = dev->sysdata;
138
139 if (hose && res->flags & IORESOURCE_IO)
140 offset = (unsigned long)hose->io_base_virt - isa_io_base;
141 else if (hose && res->flags & IORESOURCE_MEM)
142 offset = hose->pci_mem_offset;
143 region->start = res->start - offset;
144 region->end = res->end - offset;
145}
146EXPORT_SYMBOL(pcibios_resource_to_bus);
147
Dominik Brodowski43c34732005-08-04 18:06:21 -0700148void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
149 struct pci_bus_region *region)
150{
151 unsigned long offset = 0;
152 struct pci_controller *hose = dev->sysdata;
153
154 if (hose && res->flags & IORESOURCE_IO)
155 offset = (unsigned long)hose->io_base_virt - isa_io_base;
156 else if (hose && res->flags & IORESOURCE_MEM)
157 offset = hose->pci_mem_offset;
158 res->start = region->start + offset;
159 res->end = region->end + offset;
160}
161EXPORT_SYMBOL(pcibios_bus_to_resource);
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/*
164 * We need to avoid collisions with `mirrored' VGA ports
165 * and other strange ISA hardware, so we always want the
166 * addresses to be allocated in the 0x000-0x0ff region
167 * modulo 0x400.
168 *
169 * Why? Because some silly external IO cards only decode
170 * the low 10 bits of the IO address. The 0x00-0xff region
171 * is reserved for motherboard devices that decode all 16
172 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
173 * but we want to try to avoid allocating at 0x2900-0x2bff
174 * which might have be mirrored at 0x0100-0x03ff..
175 */
176void pcibios_align_resource(void *data, struct resource *res, unsigned long size,
177 unsigned long align)
178{
179 struct pci_dev *dev = data;
180
181 if (res->flags & IORESOURCE_IO) {
182 unsigned long start = res->start;
183
184 if (size > 0x100) {
185 printk(KERN_ERR "PCI: I/O Region %s/%d too large"
186 " (%ld bytes)\n", pci_name(dev),
187 dev->resource - res, size);
188 }
189
190 if (start & 0x300) {
191 start = (start + 0x3ff) & ~0x3ff;
192 res->start = start;
193 }
194 }
195}
196EXPORT_SYMBOL(pcibios_align_resource);
197
198/*
199 * Handle resources of PCI devices. If the world were perfect, we could
200 * just allocate all the resource regions and do nothing more. It isn't.
201 * On the other hand, we cannot just re-allocate all devices, as it would
202 * require us to know lots of host bridge internals. So we attempt to
203 * keep as much of the original configuration as possible, but tweak it
204 * when it's found to be wrong.
205 *
206 * Known BIOS problems we have to work around:
207 * - I/O or memory regions not configured
208 * - regions configured, but not enabled in the command register
209 * - bogus I/O addresses above 64K used
210 * - expansion ROMs left enabled (this may sound harmless, but given
211 * the fact the PCI specs explicitly allow address decoders to be
212 * shared between expansion ROMs and other resource regions, it's
213 * at least dangerous)
214 *
215 * Our solution:
216 * (1) Allocate resources for all buses behind PCI-to-PCI bridges.
217 * This gives us fixed barriers on where we can allocate.
218 * (2) Allocate resources for all enabled devices. If there is
219 * a collision, just mark the resource as unallocated. Also
220 * disable expansion ROMs during this step.
221 * (3) Try to allocate resources for disabled devices. If the
222 * resources were assigned correctly, everything goes well,
223 * if they weren't, they won't disturb allocation of other
224 * resources.
225 * (4) Assign new addresses to resources which were either
226 * not configured at all or misconfigured. If explicitly
227 * requested by the user, configure expansion ROM address
228 * as well.
229 */
230
231static void __init
232pcibios_allocate_bus_resources(struct list_head *bus_list)
233{
234 struct pci_bus *bus;
235 int i;
236 struct resource *res, *pr;
237
238 /* Depth-First Search on bus tree */
239 list_for_each_entry(bus, bus_list, node) {
240 for (i = 0; i < 4; ++i) {
241 if ((res = bus->resource[i]) == NULL || !res->flags
242 || res->start > res->end)
243 continue;
244 if (bus->parent == NULL)
245 pr = (res->flags & IORESOURCE_IO)?
246 &ioport_resource: &iomem_resource;
247 else {
248 pr = pci_find_parent_resource(bus->self, res);
249 if (pr == res) {
250 /* this happens when the generic PCI
251 * code (wrongly) decides that this
252 * bridge is transparent -- paulus
253 */
254 continue;
255 }
256 }
257
258 DBG("PCI: bridge rsrc %lx..%lx (%lx), parent %p\n",
259 res->start, res->end, res->flags, pr);
260 if (pr) {
261 if (request_resource(pr, res) == 0)
262 continue;
263 /*
264 * Must be a conflict with an existing entry.
265 * Move that entry (or entries) under the
266 * bridge resource and try again.
267 */
268 if (reparent_resources(pr, res) == 0)
269 continue;
270 }
271 printk(KERN_ERR "PCI: Cannot allocate resource region "
272 "%d of PCI bridge %d\n", i, bus->number);
273 if (pci_relocate_bridge_resource(bus, i))
274 bus->resource[i] = NULL;
275 }
276 pcibios_allocate_bus_resources(&bus->children);
277 }
278}
279
280/*
281 * Reparent resource children of pr that conflict with res
282 * under res, and make res replace those children.
283 */
284static int __init
285reparent_resources(struct resource *parent, struct resource *res)
286{
287 struct resource *p, **pp;
288 struct resource **firstpp = NULL;
289
290 for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {
291 if (p->end < res->start)
292 continue;
293 if (res->end < p->start)
294 break;
295 if (p->start < res->start || p->end > res->end)
296 return -1; /* not completely contained */
297 if (firstpp == NULL)
298 firstpp = pp;
299 }
300 if (firstpp == NULL)
301 return -1; /* didn't find any conflicting entries? */
302 res->parent = parent;
303 res->child = *firstpp;
304 res->sibling = *pp;
305 *firstpp = res;
306 *pp = NULL;
307 for (p = res->child; p != NULL; p = p->sibling) {
308 p->parent = res;
309 DBG(KERN_INFO "PCI: reparented %s [%lx..%lx] under %s\n",
310 p->name, p->start, p->end, res->name);
311 }
312 return 0;
313}
314
315/*
316 * A bridge has been allocated a range which is outside the range
317 * of its parent bridge, so it needs to be moved.
318 */
319static int __init
320pci_relocate_bridge_resource(struct pci_bus *bus, int i)
321{
322 struct resource *res, *pr, *conflict;
323 unsigned long try, size;
324 int j;
325 struct pci_bus *parent = bus->parent;
326
327 if (parent == NULL) {
328 /* shouldn't ever happen */
329 printk(KERN_ERR "PCI: can't move host bridge resource\n");
330 return -1;
331 }
332 res = bus->resource[i];
333 if (res == NULL)
334 return -1;
335 pr = NULL;
336 for (j = 0; j < 4; j++) {
337 struct resource *r = parent->resource[j];
338 if (!r)
339 continue;
340 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
341 continue;
342 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH)) {
343 pr = r;
344 break;
345 }
346 if (res->flags & IORESOURCE_PREFETCH)
347 pr = r;
348 }
349 if (pr == NULL)
350 return -1;
351 size = res->end - res->start;
352 if (pr->start > pr->end || size > pr->end - pr->start)
353 return -1;
354 try = pr->end;
355 for (;;) {
356 res->start = try - size;
357 res->end = try;
358 if (probe_resource(bus->parent, pr, res, &conflict) == 0)
359 break;
360 if (conflict->start <= pr->start + size)
361 return -1;
362 try = conflict->start - 1;
363 }
364 if (request_resource(pr, res)) {
365 DBG(KERN_ERR "PCI: huh? couldn't move to %lx..%lx\n",
366 res->start, res->end);
367 return -1; /* "can't happen" */
368 }
369 update_bridge_base(bus, i);
370 printk(KERN_INFO "PCI: bridge %d resource %d moved to %lx..%lx\n",
371 bus->number, i, res->start, res->end);
372 return 0;
373}
374
375static int __init
376probe_resource(struct pci_bus *parent, struct resource *pr,
377 struct resource *res, struct resource **conflict)
378{
379 struct pci_bus *bus;
380 struct pci_dev *dev;
381 struct resource *r;
382 int i;
383
384 for (r = pr->child; r != NULL; r = r->sibling) {
385 if (r->end >= res->start && res->end >= r->start) {
386 *conflict = r;
387 return 1;
388 }
389 }
390 list_for_each_entry(bus, &parent->children, node) {
391 for (i = 0; i < 4; ++i) {
392 if ((r = bus->resource[i]) == NULL)
393 continue;
394 if (!r->flags || r->start > r->end || r == res)
395 continue;
396 if (pci_find_parent_resource(bus->self, r) != pr)
397 continue;
398 if (r->end >= res->start && res->end >= r->start) {
399 *conflict = r;
400 return 1;
401 }
402 }
403 }
404 list_for_each_entry(dev, &parent->devices, bus_list) {
405 for (i = 0; i < 6; ++i) {
406 r = &dev->resource[i];
407 if (!r->flags || (r->flags & IORESOURCE_UNSET))
408 continue;
409 if (pci_find_parent_resource(dev, r) != pr)
410 continue;
411 if (r->end >= res->start && res->end >= r->start) {
412 *conflict = r;
413 return 1;
414 }
415 }
416 }
417 return 0;
418}
419
420static void __init
421update_bridge_base(struct pci_bus *bus, int i)
422{
423 struct resource *res = bus->resource[i];
424 u8 io_base_lo, io_limit_lo;
425 u16 mem_base, mem_limit;
426 u16 cmd;
427 unsigned long start, end, off;
428 struct pci_dev *dev = bus->self;
429 struct pci_controller *hose = dev->sysdata;
430
431 if (!hose) {
432 printk("update_bridge_base: no hose?\n");
433 return;
434 }
435 pci_read_config_word(dev, PCI_COMMAND, &cmd);
436 pci_write_config_word(dev, PCI_COMMAND,
437 cmd & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY));
438 if (res->flags & IORESOURCE_IO) {
439 off = (unsigned long) hose->io_base_virt - isa_io_base;
440 start = res->start - off;
441 end = res->end - off;
442 io_base_lo = (start >> 8) & PCI_IO_RANGE_MASK;
443 io_limit_lo = (end >> 8) & PCI_IO_RANGE_MASK;
444 if (end > 0xffff) {
445 pci_write_config_word(dev, PCI_IO_BASE_UPPER16,
446 start >> 16);
447 pci_write_config_word(dev, PCI_IO_LIMIT_UPPER16,
448 end >> 16);
449 io_base_lo |= PCI_IO_RANGE_TYPE_32;
450 } else
451 io_base_lo |= PCI_IO_RANGE_TYPE_16;
452 pci_write_config_byte(dev, PCI_IO_BASE, io_base_lo);
453 pci_write_config_byte(dev, PCI_IO_LIMIT, io_limit_lo);
454
455 } else if ((res->flags & (IORESOURCE_MEM | IORESOURCE_PREFETCH))
456 == IORESOURCE_MEM) {
457 off = hose->pci_mem_offset;
458 mem_base = ((res->start - off) >> 16) & PCI_MEMORY_RANGE_MASK;
459 mem_limit = ((res->end - off) >> 16) & PCI_MEMORY_RANGE_MASK;
460 pci_write_config_word(dev, PCI_MEMORY_BASE, mem_base);
461 pci_write_config_word(dev, PCI_MEMORY_LIMIT, mem_limit);
462
463 } else if ((res->flags & (IORESOURCE_MEM | IORESOURCE_PREFETCH))
464 == (IORESOURCE_MEM | IORESOURCE_PREFETCH)) {
465 off = hose->pci_mem_offset;
466 mem_base = ((res->start - off) >> 16) & PCI_PREF_RANGE_MASK;
467 mem_limit = ((res->end - off) >> 16) & PCI_PREF_RANGE_MASK;
468 pci_write_config_word(dev, PCI_PREF_MEMORY_BASE, mem_base);
469 pci_write_config_word(dev, PCI_PREF_MEMORY_LIMIT, mem_limit);
470
471 } else {
472 DBG(KERN_ERR "PCI: ugh, bridge %s res %d has flags=%lx\n",
473 pci_name(dev), i, res->flags);
474 }
475 pci_write_config_word(dev, PCI_COMMAND, cmd);
476}
477
478static inline void alloc_resource(struct pci_dev *dev, int idx)
479{
480 struct resource *pr, *r = &dev->resource[idx];
481
482 DBG("PCI:%s: Resource %d: %08lx-%08lx (f=%lx)\n",
483 pci_name(dev), idx, r->start, r->end, r->flags);
484 pr = pci_find_parent_resource(dev, r);
485 if (!pr || request_resource(pr, r) < 0) {
486 printk(KERN_ERR "PCI: Cannot allocate resource region %d"
487 " of device %s\n", idx, pci_name(dev));
488 if (pr)
489 DBG("PCI: parent is %p: %08lx-%08lx (f=%lx)\n",
490 pr, pr->start, pr->end, pr->flags);
491 /* We'll assign a new address later */
492 r->flags |= IORESOURCE_UNSET;
493 r->end -= r->start;
494 r->start = 0;
495 }
496}
497
498static void __init
499pcibios_allocate_resources(int pass)
500{
501 struct pci_dev *dev = NULL;
502 int idx, disabled;
503 u16 command;
504 struct resource *r;
505
506 while ((dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
507 pci_read_config_word(dev, PCI_COMMAND, &command);
508 for (idx = 0; idx < 6; idx++) {
509 r = &dev->resource[idx];
510 if (r->parent) /* Already allocated */
511 continue;
512 if (!r->flags || (r->flags & IORESOURCE_UNSET))
513 continue; /* Not assigned at all */
514 if (r->flags & IORESOURCE_IO)
515 disabled = !(command & PCI_COMMAND_IO);
516 else
517 disabled = !(command & PCI_COMMAND_MEMORY);
518 if (pass == disabled)
519 alloc_resource(dev, idx);
520 }
521 if (pass)
522 continue;
523 r = &dev->resource[PCI_ROM_RESOURCE];
524 if (r->flags & IORESOURCE_ROM_ENABLE) {
525 /* Turn the ROM off, leave the resource region, but keep it unregistered. */
526 u32 reg;
527 DBG("PCI: Switching off ROM of %s\n", pci_name(dev));
528 r->flags &= ~IORESOURCE_ROM_ENABLE;
529 pci_read_config_dword(dev, dev->rom_base_reg, &reg);
530 pci_write_config_dword(dev, dev->rom_base_reg,
531 reg & ~PCI_ROM_ADDRESS_ENABLE);
532 }
533 }
534}
535
536static void __init
537pcibios_assign_resources(void)
538{
539 struct pci_dev *dev = NULL;
540 int idx;
541 struct resource *r;
542
543 while ((dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
544 int class = dev->class >> 8;
545
546 /* Don't touch classless devices and host bridges */
547 if (!class || class == PCI_CLASS_BRIDGE_HOST)
548 continue;
549
550 for (idx = 0; idx < 6; idx++) {
551 r = &dev->resource[idx];
552
553 /*
554 * We shall assign a new address to this resource,
555 * either because the BIOS (sic) forgot to do so
556 * or because we have decided the old address was
557 * unusable for some reason.
558 */
559 if ((r->flags & IORESOURCE_UNSET) && r->end &&
560 (!ppc_md.pcibios_enable_device_hook ||
561 !ppc_md.pcibios_enable_device_hook(dev, 1))) {
562 r->flags &= ~IORESOURCE_UNSET;
563 pci_assign_resource(dev, idx);
564 }
565 }
566
567#if 0 /* don't assign ROMs */
568 r = &dev->resource[PCI_ROM_RESOURCE];
569 r->end -= r->start;
570 r->start = 0;
571 if (r->end)
572 pci_assign_resource(dev, PCI_ROM_RESOURCE);
573#endif
574 }
575}
576
577
578int
579pcibios_enable_resources(struct pci_dev *dev, int mask)
580{
581 u16 cmd, old_cmd;
582 int idx;
583 struct resource *r;
584
585 pci_read_config_word(dev, PCI_COMMAND, &cmd);
586 old_cmd = cmd;
587 for (idx=0; idx<6; idx++) {
588 /* Only set up the requested stuff */
589 if (!(mask & (1<<idx)))
590 continue;
591
592 r = &dev->resource[idx];
593 if (r->flags & IORESOURCE_UNSET) {
594 printk(KERN_ERR "PCI: Device %s not available because of resource collisions\n", pci_name(dev));
595 return -EINVAL;
596 }
597 if (r->flags & IORESOURCE_IO)
598 cmd |= PCI_COMMAND_IO;
599 if (r->flags & IORESOURCE_MEM)
600 cmd |= PCI_COMMAND_MEMORY;
601 }
602 if (dev->resource[PCI_ROM_RESOURCE].start)
603 cmd |= PCI_COMMAND_MEMORY;
604 if (cmd != old_cmd) {
605 printk("PCI: Enabling device %s (%04x -> %04x)\n", pci_name(dev), old_cmd, cmd);
606 pci_write_config_word(dev, PCI_COMMAND, cmd);
607 }
608 return 0;
609}
610
611static int next_controller_index;
612
613struct pci_controller * __init
614pcibios_alloc_controller(void)
615{
616 struct pci_controller *hose;
617
618 hose = (struct pci_controller *)alloc_bootmem(sizeof(*hose));
619 memset(hose, 0, sizeof(struct pci_controller));
620
621 *hose_tail = hose;
622 hose_tail = &hose->next;
623
624 hose->index = next_controller_index++;
625
626 return hose;
627}
628
629#ifdef CONFIG_PPC_OF
630/*
631 * Functions below are used on OpenFirmware machines.
632 */
Jon Loeligerf495a8b2005-09-17 10:35:08 -0500633static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634make_one_node_map(struct device_node* node, u8 pci_bus)
635{
636 int *bus_range;
637 int len;
638
639 if (pci_bus >= pci_bus_count)
640 return;
641 bus_range = (int *) get_property(node, "bus-range", &len);
642 if (bus_range == NULL || len < 2 * sizeof(int)) {
643 printk(KERN_WARNING "Can't get bus-range for %s, "
644 "assuming it starts at 0\n", node->full_name);
645 pci_to_OF_bus_map[pci_bus] = 0;
646 } else
647 pci_to_OF_bus_map[pci_bus] = bus_range[0];
648
649 for (node=node->child; node != 0;node = node->sibling) {
650 struct pci_dev* dev;
651 unsigned int *class_code, *reg;
652
653 class_code = (unsigned int *) get_property(node, "class-code", NULL);
654 if (!class_code || ((*class_code >> 8) != PCI_CLASS_BRIDGE_PCI &&
655 (*class_code >> 8) != PCI_CLASS_BRIDGE_CARDBUS))
656 continue;
657 reg = (unsigned int *)get_property(node, "reg", NULL);
658 if (!reg)
659 continue;
660 dev = pci_find_slot(pci_bus, ((reg[0] >> 8) & 0xff));
661 if (!dev || !dev->subordinate)
662 continue;
663 make_one_node_map(node, dev->subordinate->number);
664 }
665}
666
Jon Loeligerf495a8b2005-09-17 10:35:08 -0500667void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668pcibios_make_OF_bus_map(void)
669{
670 int i;
671 struct pci_controller* hose;
672 u8* of_prop_map;
673
674 pci_to_OF_bus_map = (u8*)kmalloc(pci_bus_count, GFP_KERNEL);
675 if (!pci_to_OF_bus_map) {
676 printk(KERN_ERR "Can't allocate OF bus map !\n");
677 return;
678 }
679
680 /* We fill the bus map with invalid values, that helps
681 * debugging.
682 */
683 for (i=0; i<pci_bus_count; i++)
684 pci_to_OF_bus_map[i] = 0xff;
685
686 /* For each hose, we begin searching bridges */
687 for(hose=hose_head; hose; hose=hose->next) {
688 struct device_node* node;
689 node = (struct device_node *)hose->arch_data;
690 if (!node)
691 continue;
692 make_one_node_map(node, hose->first_busno);
693 }
694 of_prop_map = get_property(find_path_device("/"), "pci-OF-bus-map", NULL);
695 if (of_prop_map)
696 memcpy(of_prop_map, pci_to_OF_bus_map, pci_bus_count);
697#ifdef DEBUG
698 printk("PCI->OF bus map:\n");
699 for (i=0; i<pci_bus_count; i++) {
700 if (pci_to_OF_bus_map[i] == 0xff)
701 continue;
702 printk("%d -> %d\n", i, pci_to_OF_bus_map[i]);
703 }
704#endif
705}
706
707typedef int (*pci_OF_scan_iterator)(struct device_node* node, void* data);
708
Jon Loeligerf495a8b2005-09-17 10:35:08 -0500709static struct device_node*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710scan_OF_pci_childs(struct device_node* node, pci_OF_scan_iterator filter, void* data)
711{
712 struct device_node* sub_node;
713
714 for (; node != 0;node = node->sibling) {
715 unsigned int *class_code;
716
717 if (filter(node, data))
718 return node;
719
720 /* For PCI<->PCI bridges or CardBus bridges, we go down
721 * Note: some OFs create a parent node "multifunc-device" as
722 * a fake root for all functions of a multi-function device,
723 * we go down them as well.
724 */
725 class_code = (unsigned int *) get_property(node, "class-code", NULL);
726 if ((!class_code || ((*class_code >> 8) != PCI_CLASS_BRIDGE_PCI &&
727 (*class_code >> 8) != PCI_CLASS_BRIDGE_CARDBUS)) &&
728 strcmp(node->name, "multifunc-device"))
729 continue;
730 sub_node = scan_OF_pci_childs(node->child, filter, data);
731 if (sub_node)
732 return sub_node;
733 }
734 return NULL;
735}
736
737static int
738scan_OF_pci_childs_iterator(struct device_node* node, void* data)
739{
740 unsigned int *reg;
741 u8* fdata = (u8*)data;
742
743 reg = (unsigned int *) get_property(node, "reg", NULL);
744 if (reg && ((reg[0] >> 8) & 0xff) == fdata[1]
745 && ((reg[0] >> 16) & 0xff) == fdata[0])
746 return 1;
747 return 0;
748}
749
Jon Loeligerf495a8b2005-09-17 10:35:08 -0500750static struct device_node*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751scan_OF_childs_for_device(struct device_node* node, u8 bus, u8 dev_fn)
752{
753 u8 filter_data[2] = {bus, dev_fn};
754
755 return scan_OF_pci_childs(node, scan_OF_pci_childs_iterator, filter_data);
756}
757
758/*
759 * Scans the OF tree for a device node matching a PCI device
760 */
761struct device_node *
762pci_busdev_to_OF_node(struct pci_bus *bus, int devfn)
763{
764 struct pci_controller *hose;
765 struct device_node *node;
766 int busnr;
767
768 if (!have_of)
769 return NULL;
770
771 /* Lookup the hose */
772 busnr = bus->number;
773 hose = pci_bus_to_hose(busnr);
774 if (!hose)
775 return NULL;
776
777 /* Check it has an OF node associated */
778 node = (struct device_node *) hose->arch_data;
779 if (!node)
780 return NULL;
781
782 /* Fixup bus number according to what OF think it is. */
783#ifdef CONFIG_PPC_PMAC
784 /* The G5 need a special case here. Basically, we don't remap all
785 * busses on it so we don't create the pci-OF-map. However, we do
786 * remap the AGP bus and so have to deal with it. A future better
787 * fix has to be done by making the remapping per-host and always
788 * filling the pci_to_OF map. --BenH
789 */
790 if (_machine == _MACH_Pmac && busnr >= 0xf0)
791 busnr -= 0xf0;
792 else
793#endif
794 if (pci_to_OF_bus_map)
795 busnr = pci_to_OF_bus_map[busnr];
796 if (busnr == 0xff)
797 return NULL;
798
799 /* Now, lookup childs of the hose */
800 return scan_OF_childs_for_device(node->child, busnr, devfn);
801}
Paul Mackerrasdd8cad62005-10-04 14:28:29 +1000802EXPORT_SYMBOL(pci_busdev_to_OF_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804struct device_node*
805pci_device_to_OF_node(struct pci_dev *dev)
806{
807 return pci_busdev_to_OF_node(dev->bus, dev->devfn);
808}
Paul Mackerrasdd8cad62005-10-04 14:28:29 +1000809EXPORT_SYMBOL(pci_device_to_OF_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811/* This routine is meant to be used early during boot, when the
812 * PCI bus numbers have not yet been assigned, and you need to
813 * issue PCI config cycles to an OF device.
814 * It could also be used to "fix" RTAS config cycles if you want
Paul Mackerras399fe2b2005-10-20 20:57:05 +1000815 * to set pci_assign_all_buses to 1 and still use RTAS for PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 * config cycles.
817 */
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +1100818struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
820 if (!have_of)
821 return NULL;
822 while(node) {
823 struct pci_controller* hose;
824 for (hose=hose_head;hose;hose=hose->next)
825 if (hose->arch_data == node)
826 return hose;
827 node=node->parent;
828 }
829 return NULL;
830}
831
Jon Loeligerf495a8b2005-09-17 10:35:08 -0500832static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833find_OF_pci_device_filter(struct device_node* node, void* data)
834{
835 return ((void *)node == data);
836}
837
838/*
839 * Returns the PCI device matching a given OF node
840 */
841int
842pci_device_from_OF_node(struct device_node* node, u8* bus, u8* devfn)
843{
844 unsigned int *reg;
845 struct pci_controller* hose;
846 struct pci_dev* dev = NULL;
847
848 if (!have_of)
849 return -ENODEV;
850 /* Make sure it's really a PCI device */
851 hose = pci_find_hose_for_OF_device(node);
852 if (!hose || !hose->arch_data)
853 return -ENODEV;
854 if (!scan_OF_pci_childs(((struct device_node*)hose->arch_data)->child,
855 find_OF_pci_device_filter, (void *)node))
856 return -ENODEV;
857 reg = (unsigned int *) get_property(node, "reg", NULL);
858 if (!reg)
859 return -ENODEV;
860 *bus = (reg[0] >> 16) & 0xff;
861 *devfn = ((reg[0] >> 8) & 0xff);
862
863 /* Ok, here we need some tweak. If we have already renumbered
864 * all busses, we can't rely on the OF bus number any more.
865 * the pci_to_OF_bus_map is not enough as several PCI busses
866 * may match the same OF bus number.
867 */
868 if (!pci_to_OF_bus_map)
869 return 0;
870 while ((dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
871 if (pci_to_OF_bus_map[dev->bus->number] != *bus)
872 continue;
873 if (dev->devfn != *devfn)
874 continue;
875 *bus = dev->bus->number;
876 return 0;
877 }
878 return -ENODEV;
879}
Paul Mackerrasdd8cad62005-10-04 14:28:29 +1000880EXPORT_SYMBOL(pci_device_from_OF_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882void __init
883pci_process_bridge_OF_ranges(struct pci_controller *hose,
884 struct device_node *dev, int primary)
885{
886 static unsigned int static_lc_ranges[256] __initdata;
887 unsigned int *dt_ranges, *lc_ranges, *ranges, *prev;
888 unsigned int size;
889 int rlen = 0, orig_rlen;
890 int memno = 0;
891 struct resource *res;
892 int np, na = prom_n_addr_cells(dev);
893 np = na + 5;
894
895 /* First we try to merge ranges to fix a problem with some pmacs
896 * that can have more than 3 ranges, fortunately using contiguous
897 * addresses -- BenH
898 */
899 dt_ranges = (unsigned int *) get_property(dev, "ranges", &rlen);
900 if (!dt_ranges)
901 return;
902 /* Sanity check, though hopefully that never happens */
903 if (rlen > sizeof(static_lc_ranges)) {
904 printk(KERN_WARNING "OF ranges property too large !\n");
905 rlen = sizeof(static_lc_ranges);
906 }
907 lc_ranges = static_lc_ranges;
908 memcpy(lc_ranges, dt_ranges, rlen);
909 orig_rlen = rlen;
910
911 /* Let's work on a copy of the "ranges" property instead of damaging
912 * the device-tree image in memory
913 */
914 ranges = lc_ranges;
915 prev = NULL;
916 while ((rlen -= np * sizeof(unsigned int)) >= 0) {
917 if (prev) {
918 if (prev[0] == ranges[0] && prev[1] == ranges[1] &&
919 (prev[2] + prev[na+4]) == ranges[2] &&
920 (prev[na+2] + prev[na+4]) == ranges[na+2]) {
921 prev[na+4] += ranges[na+4];
922 ranges[0] = 0;
923 ranges += np;
924 continue;
925 }
926 }
927 prev = ranges;
928 ranges += np;
929 }
930
931 /*
932 * The ranges property is laid out as an array of elements,
933 * each of which comprises:
934 * cells 0 - 2: a PCI address
935 * cells 3 or 3+4: a CPU physical address
936 * (size depending on dev->n_addr_cells)
937 * cells 4+5 or 5+6: the size of the range
938 */
939 ranges = lc_ranges;
940 rlen = orig_rlen;
941 while (ranges && (rlen -= np * sizeof(unsigned int)) >= 0) {
942 res = NULL;
943 size = ranges[na+4];
944 switch (ranges[0] >> 24) {
945 case 1: /* I/O space */
946 if (ranges[2] != 0)
947 break;
948 hose->io_base_phys = ranges[na+2];
949 /* limit I/O space to 16MB */
950 if (size > 0x01000000)
951 size = 0x01000000;
952 hose->io_base_virt = ioremap(ranges[na+2], size);
953 if (primary)
954 isa_io_base = (unsigned long) hose->io_base_virt;
955 res = &hose->io_resource;
956 res->flags = IORESOURCE_IO;
957 res->start = ranges[2];
958 break;
959 case 2: /* memory space */
960 memno = 0;
961 if (ranges[1] == 0 && ranges[2] == 0
962 && ranges[na+4] <= (16 << 20)) {
963 /* 1st 16MB, i.e. ISA memory area */
964 if (primary)
965 isa_mem_base = ranges[na+2];
966 memno = 1;
967 }
968 while (memno < 3 && hose->mem_resources[memno].flags)
969 ++memno;
970 if (memno == 0)
971 hose->pci_mem_offset = ranges[na+2] - ranges[2];
972 if (memno < 3) {
973 res = &hose->mem_resources[memno];
974 res->flags = IORESOURCE_MEM;
975 res->start = ranges[na+2];
976 }
977 break;
978 }
979 if (res != NULL) {
980 res->name = dev->full_name;
981 res->end = res->start + size - 1;
982 res->parent = NULL;
983 res->sibling = NULL;
984 res->child = NULL;
985 }
986 ranges += np;
987 }
988}
989
990/* We create the "pci-OF-bus-map" property now so it appears in the
991 * /proc device tree
992 */
993void __init
994pci_create_OF_bus_map(void)
995{
996 struct property* of_prop;
997
998 of_prop = (struct property*) alloc_bootmem(sizeof(struct property) + 256);
999 if (of_prop && find_path_device("/")) {
1000 memset(of_prop, -1, sizeof(struct property) + 256);
1001 of_prop->name = "pci-OF-bus-map";
1002 of_prop->length = 256;
1003 of_prop->value = (unsigned char *)&of_prop[1];
1004 prom_add_property(find_path_device("/"), of_prop);
1005 }
1006}
1007
Yani Ioannouff381d22005-05-17 06:40:51 -04001008static ssize_t pci_show_devspec(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
1010 struct pci_dev *pdev;
1011 struct device_node *np;
1012
1013 pdev = to_pci_dev (dev);
1014 np = pci_device_to_OF_node(pdev);
1015 if (np == NULL || np->full_name == NULL)
1016 return 0;
1017 return sprintf(buf, "%s", np->full_name);
1018}
1019static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
1020
Paul Mackerrasfd582ec2005-10-11 22:08:12 +10001021#else /* CONFIG_PPC_OF */
1022void pcibios_make_OF_bus_map(void)
1023{
1024}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025#endif /* CONFIG_PPC_OF */
1026
1027/* Add sysfs properties */
1028void pcibios_add_platform_entries(struct pci_dev *pdev)
1029{
1030#ifdef CONFIG_PPC_OF
1031 device_create_file(&pdev->dev, &dev_attr_devspec);
1032#endif /* CONFIG_PPC_OF */
1033}
1034
1035
1036#ifdef CONFIG_PPC_PMAC
1037/*
1038 * This set of routines checks for PCI<->PCI bridges that have closed
1039 * IO resources and have child devices. It tries to re-open an IO
1040 * window on them.
1041 *
1042 * This is a _temporary_ fix to workaround a problem with Apple's OF
1043 * closing IO windows on P2P bridges when the OF drivers of cards
1044 * below this bridge don't claim any IO range (typically ATI or
1045 * Adaptec).
1046 *
1047 * A more complete fix would be to use drivers/pci/setup-bus.c, which
1048 * involves a working pcibios_fixup_pbus_ranges(), some more care about
1049 * ordering when creating the host bus resources, and maybe a few more
1050 * minor tweaks
1051 */
1052
1053/* Initialize bridges with base/limit values we have collected */
1054static void __init
1055do_update_p2p_io_resource(struct pci_bus *bus, int enable_vga)
1056{
1057 struct pci_dev *bridge = bus->self;
1058 struct pci_controller* hose = (struct pci_controller *)bridge->sysdata;
1059 u32 l;
1060 u16 w;
1061 struct resource res;
1062
1063 if (bus->resource[0] == NULL)
1064 return;
1065 res = *(bus->resource[0]);
1066
1067 DBG("Remapping Bus %d, bridge: %s\n", bus->number, pci_name(bridge));
1068 res.start -= ((unsigned long) hose->io_base_virt - isa_io_base);
1069 res.end -= ((unsigned long) hose->io_base_virt - isa_io_base);
1070 DBG(" IO window: %08lx-%08lx\n", res.start, res.end);
1071
1072 /* Set up the top and bottom of the PCI I/O segment for this bus. */
1073 pci_read_config_dword(bridge, PCI_IO_BASE, &l);
1074 l &= 0xffff000f;
1075 l |= (res.start >> 8) & 0x00f0;
1076 l |= res.end & 0xf000;
1077 pci_write_config_dword(bridge, PCI_IO_BASE, l);
1078
1079 if ((l & PCI_IO_RANGE_TYPE_MASK) == PCI_IO_RANGE_TYPE_32) {
1080 l = (res.start >> 16) | (res.end & 0xffff0000);
1081 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, l);
1082 }
1083
1084 pci_read_config_word(bridge, PCI_COMMAND, &w);
1085 w |= PCI_COMMAND_IO;
1086 pci_write_config_word(bridge, PCI_COMMAND, w);
1087
1088#if 0 /* Enabling this causes XFree 4.2.0 to hang during PCI probe */
1089 if (enable_vga) {
1090 pci_read_config_word(bridge, PCI_BRIDGE_CONTROL, &w);
1091 w |= PCI_BRIDGE_CTL_VGA;
1092 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL, w);
1093 }
1094#endif
1095}
1096
1097/* This function is pretty basic and actually quite broken for the
1098 * general case, it's enough for us right now though. It's supposed
1099 * to tell us if we need to open an IO range at all or not and what
1100 * size.
1101 */
1102static int __init
1103check_for_io_childs(struct pci_bus *bus, struct resource* res, int *found_vga)
1104{
1105 struct pci_dev *dev;
1106 int i;
1107 int rc = 0;
1108
1109#define push_end(res, size) do { unsigned long __sz = (size) ; \
1110 res->end = ((res->end + __sz) / (__sz + 1)) * (__sz + 1) + __sz; \
1111 } while (0)
1112
1113 list_for_each_entry(dev, &bus->devices, bus_list) {
1114 u16 class = dev->class >> 8;
1115
1116 if (class == PCI_CLASS_DISPLAY_VGA ||
1117 class == PCI_CLASS_NOT_DEFINED_VGA)
1118 *found_vga = 1;
1119 if (class >> 8 == PCI_BASE_CLASS_BRIDGE && dev->subordinate)
1120 rc |= check_for_io_childs(dev->subordinate, res, found_vga);
1121 if (class == PCI_CLASS_BRIDGE_CARDBUS)
1122 push_end(res, 0xfff);
1123
1124 for (i=0; i<PCI_NUM_RESOURCES; i++) {
1125 struct resource *r;
1126 unsigned long r_size;
1127
1128 if (dev->class >> 8 == PCI_CLASS_BRIDGE_PCI
1129 && i >= PCI_BRIDGE_RESOURCES)
1130 continue;
1131 r = &dev->resource[i];
1132 r_size = r->end - r->start;
1133 if (r_size < 0xfff)
1134 r_size = 0xfff;
1135 if (r->flags & IORESOURCE_IO && (r_size) != 0) {
1136 rc = 1;
1137 push_end(res, r_size);
1138 }
1139 }
1140 }
1141
1142 return rc;
1143}
1144
1145/* Here we scan all P2P bridges of a given level that have a closed
1146 * IO window. Note that the test for the presence of a VGA card should
1147 * be improved to take into account already configured P2P bridges,
1148 * currently, we don't see them and might end up configuring 2 bridges
1149 * with VGA pass through enabled
1150 */
1151static void __init
1152do_fixup_p2p_level(struct pci_bus *bus)
1153{
1154 struct pci_bus *b;
1155 int i, parent_io;
1156 int has_vga = 0;
1157
1158 for (parent_io=0; parent_io<4; parent_io++)
1159 if (bus->resource[parent_io]
1160 && bus->resource[parent_io]->flags & IORESOURCE_IO)
1161 break;
1162 if (parent_io >= 4)
1163 return;
1164
1165 list_for_each_entry(b, &bus->children, node) {
1166 struct pci_dev *d = b->self;
1167 struct pci_controller* hose = (struct pci_controller *)d->sysdata;
1168 struct resource *res = b->resource[0];
1169 struct resource tmp_res;
1170 unsigned long max;
1171 int found_vga = 0;
1172
1173 memset(&tmp_res, 0, sizeof(tmp_res));
1174 tmp_res.start = bus->resource[parent_io]->start;
1175
1176 /* We don't let low addresses go through that closed P2P bridge, well,
1177 * that may not be necessary but I feel safer that way
1178 */
1179 if (tmp_res.start == 0)
1180 tmp_res.start = 0x1000;
1181
1182 if (!list_empty(&b->devices) && res && res->flags == 0 &&
1183 res != bus->resource[parent_io] &&
1184 (d->class >> 8) == PCI_CLASS_BRIDGE_PCI &&
1185 check_for_io_childs(b, &tmp_res, &found_vga)) {
1186 u8 io_base_lo;
1187
1188 printk(KERN_INFO "Fixing up IO bus %s\n", b->name);
1189
1190 if (found_vga) {
1191 if (has_vga) {
1192 printk(KERN_WARNING "Skipping VGA, already active"
1193 " on bus segment\n");
1194 found_vga = 0;
1195 } else
1196 has_vga = 1;
1197 }
1198 pci_read_config_byte(d, PCI_IO_BASE, &io_base_lo);
1199
1200 if ((io_base_lo & PCI_IO_RANGE_TYPE_MASK) == PCI_IO_RANGE_TYPE_32)
1201 max = ((unsigned long) hose->io_base_virt
1202 - isa_io_base) + 0xffffffff;
1203 else
1204 max = ((unsigned long) hose->io_base_virt
1205 - isa_io_base) + 0xffff;
1206
1207 *res = tmp_res;
1208 res->flags = IORESOURCE_IO;
1209 res->name = b->name;
1210
1211 /* Find a resource in the parent where we can allocate */
1212 for (i = 0 ; i < 4; i++) {
1213 struct resource *r = bus->resource[i];
1214 if (!r)
1215 continue;
1216 if ((r->flags & IORESOURCE_IO) == 0)
1217 continue;
1218 DBG("Trying to allocate from %08lx, size %08lx from parent"
1219 " res %d: %08lx -> %08lx\n",
1220 res->start, res->end, i, r->start, r->end);
1221
1222 if (allocate_resource(r, res, res->end + 1, res->start, max,
1223 res->end + 1, NULL, NULL) < 0) {
1224 DBG("Failed !\n");
1225 continue;
1226 }
1227 do_update_p2p_io_resource(b, found_vga);
1228 break;
1229 }
1230 }
1231 do_fixup_p2p_level(b);
1232 }
1233}
1234
1235static void
1236pcibios_fixup_p2p_bridges(void)
1237{
1238 struct pci_bus *b;
1239
1240 list_for_each_entry(b, &pci_root_buses, node)
1241 do_fixup_p2p_level(b);
1242}
1243
1244#endif /* CONFIG_PPC_PMAC */
1245
1246static int __init
1247pcibios_init(void)
1248{
1249 struct pci_controller *hose;
1250 struct pci_bus *bus;
1251 int next_busno;
1252
1253 printk(KERN_INFO "PCI: Probing PCI hardware\n");
1254
1255 /* Scan all of the recorded PCI controllers. */
1256 for (next_busno = 0, hose = hose_head; hose; hose = hose->next) {
Paul Mackerras399fe2b2005-10-20 20:57:05 +10001257 if (pci_assign_all_buses)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 hose->first_busno = next_busno;
1259 hose->last_busno = 0xff;
1260 bus = pci_scan_bus(hose->first_busno, hose->ops, hose);
1261 hose->last_busno = bus->subordinate;
Paul Mackerras399fe2b2005-10-20 20:57:05 +10001262 if (pci_assign_all_buses || next_busno <= hose->last_busno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 next_busno = hose->last_busno + pcibios_assign_bus_offset;
1264 }
1265 pci_bus_count = next_busno;
1266
1267 /* OpenFirmware based machines need a map of OF bus
1268 * numbers vs. kernel bus numbers since we may have to
1269 * remap them.
1270 */
Paul Mackerras399fe2b2005-10-20 20:57:05 +10001271 if (pci_assign_all_buses && have_of)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 pcibios_make_OF_bus_map();
1273
1274 /* Do machine dependent PCI interrupt routing */
1275 if (ppc_md.pci_swizzle && ppc_md.pci_map_irq)
1276 pci_fixup_irqs(ppc_md.pci_swizzle, ppc_md.pci_map_irq);
1277
1278 /* Call machine dependent fixup */
1279 if (ppc_md.pcibios_fixup)
1280 ppc_md.pcibios_fixup();
1281
1282 /* Allocate and assign resources */
1283 pcibios_allocate_bus_resources(&pci_root_buses);
1284 pcibios_allocate_resources(0);
1285 pcibios_allocate_resources(1);
1286#ifdef CONFIG_PPC_PMAC
1287 pcibios_fixup_p2p_bridges();
1288#endif /* CONFIG_PPC_PMAC */
1289 pcibios_assign_resources();
1290
1291 /* Call machine dependent post-init code */
1292 if (ppc_md.pcibios_after_init)
1293 ppc_md.pcibios_after_init();
1294
1295 return 0;
1296}
1297
1298subsys_initcall(pcibios_init);
1299
1300unsigned char __init
1301common_swizzle(struct pci_dev *dev, unsigned char *pinp)
1302{
1303 struct pci_controller *hose = dev->sysdata;
1304
1305 if (dev->bus->number != hose->first_busno) {
1306 u8 pin = *pinp;
1307 do {
1308 pin = bridge_swizzle(pin, PCI_SLOT(dev->devfn));
1309 /* Move up the chain of bridges. */
1310 dev = dev->bus->self;
1311 } while (dev->bus->self);
1312 *pinp = pin;
1313
1314 /* The slot is the idsel of the last bridge. */
1315 }
1316 return PCI_SLOT(dev->devfn);
1317}
1318
1319unsigned long resource_fixup(struct pci_dev * dev, struct resource * res,
1320 unsigned long start, unsigned long size)
1321{
1322 return start;
1323}
1324
1325void __init pcibios_fixup_bus(struct pci_bus *bus)
1326{
1327 struct pci_controller *hose = (struct pci_controller *) bus->sysdata;
1328 unsigned long io_offset;
1329 struct resource *res;
1330 int i;
1331
1332 io_offset = (unsigned long)hose->io_base_virt - isa_io_base;
1333 if (bus->parent == NULL) {
1334 /* This is a host bridge - fill in its resources */
1335 hose->bus = bus;
1336
1337 bus->resource[0] = res = &hose->io_resource;
1338 if (!res->flags) {
1339 if (io_offset)
1340 printk(KERN_ERR "I/O resource not set for host"
1341 " bridge %d\n", hose->index);
1342 res->start = 0;
1343 res->end = IO_SPACE_LIMIT;
1344 res->flags = IORESOURCE_IO;
1345 }
1346 res->start += io_offset;
1347 res->end += io_offset;
1348
1349 for (i = 0; i < 3; ++i) {
1350 res = &hose->mem_resources[i];
1351 if (!res->flags) {
1352 if (i > 0)
1353 continue;
1354 printk(KERN_ERR "Memory resource not set for "
1355 "host bridge %d\n", hose->index);
1356 res->start = hose->pci_mem_offset;
1357 res->end = ~0U;
1358 res->flags = IORESOURCE_MEM;
1359 }
1360 bus->resource[i+1] = res;
1361 }
1362 } else {
1363 /* This is a subordinate bridge */
1364 pci_read_bridge_bases(bus);
1365
1366 for (i = 0; i < 4; ++i) {
1367 if ((res = bus->resource[i]) == NULL)
1368 continue;
1369 if (!res->flags)
1370 continue;
1371 if (io_offset && (res->flags & IORESOURCE_IO)) {
1372 res->start += io_offset;
1373 res->end += io_offset;
1374 } else if (hose->pci_mem_offset
1375 && (res->flags & IORESOURCE_MEM)) {
1376 res->start += hose->pci_mem_offset;
1377 res->end += hose->pci_mem_offset;
1378 }
1379 }
1380 }
1381
1382 if (ppc_md.pcibios_fixup_bus)
1383 ppc_md.pcibios_fixup_bus(bus);
1384}
1385
1386char __init *pcibios_setup(char *str)
1387{
1388 return str;
1389}
1390
1391/* the next one is stolen from the alpha port... */
1392void __init
1393pcibios_update_irq(struct pci_dev *dev, int irq)
1394{
1395 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq);
1396 /* XXX FIXME - update OF device tree node interrupt property */
1397}
1398
1399int pcibios_enable_device(struct pci_dev *dev, int mask)
1400{
1401 u16 cmd, old_cmd;
1402 int idx;
1403 struct resource *r;
1404
1405 if (ppc_md.pcibios_enable_device_hook)
1406 if (ppc_md.pcibios_enable_device_hook(dev, 0))
1407 return -EINVAL;
1408
1409 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1410 old_cmd = cmd;
1411 for (idx=0; idx<6; idx++) {
1412 r = &dev->resource[idx];
1413 if (r->flags & IORESOURCE_UNSET) {
1414 printk(KERN_ERR "PCI: Device %s not available because of resource collisions\n", pci_name(dev));
1415 return -EINVAL;
1416 }
1417 if (r->flags & IORESOURCE_IO)
1418 cmd |= PCI_COMMAND_IO;
1419 if (r->flags & IORESOURCE_MEM)
1420 cmd |= PCI_COMMAND_MEMORY;
1421 }
1422 if (cmd != old_cmd) {
1423 printk("PCI: Enabling device %s (%04x -> %04x)\n",
1424 pci_name(dev), old_cmd, cmd);
1425 pci_write_config_word(dev, PCI_COMMAND, cmd);
1426 }
1427 return 0;
1428}
1429
1430struct pci_controller*
1431pci_bus_to_hose(int bus)
1432{
1433 struct pci_controller* hose = hose_head;
1434
1435 for (; hose; hose = hose->next)
1436 if (bus >= hose->first_busno && bus <= hose->last_busno)
1437 return hose;
1438 return NULL;
1439}
1440
Al Viro92a11f92005-04-25 07:55:57 -07001441void __iomem *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442pci_bus_io_base(unsigned int bus)
1443{
1444 struct pci_controller *hose;
1445
1446 hose = pci_bus_to_hose(bus);
1447 if (!hose)
1448 return NULL;
1449 return hose->io_base_virt;
1450}
1451
1452unsigned long
1453pci_bus_io_base_phys(unsigned int bus)
1454{
1455 struct pci_controller *hose;
1456
1457 hose = pci_bus_to_hose(bus);
1458 if (!hose)
1459 return 0;
1460 return hose->io_base_phys;
1461}
1462
1463unsigned long
1464pci_bus_mem_base_phys(unsigned int bus)
1465{
1466 struct pci_controller *hose;
1467
1468 hose = pci_bus_to_hose(bus);
1469 if (!hose)
1470 return 0;
1471 return hose->pci_mem_offset;
1472}
1473
1474unsigned long
1475pci_resource_to_bus(struct pci_dev *pdev, struct resource *res)
1476{
1477 /* Hack alert again ! See comments in chrp_pci.c
1478 */
1479 struct pci_controller* hose =
1480 (struct pci_controller *)pdev->sysdata;
1481 if (hose && res->flags & IORESOURCE_MEM)
1482 return res->start - hose->pci_mem_offset;
1483 /* We may want to do something with IOs here... */
1484 return res->start;
1485}
1486
1487
1488static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
1489 unsigned long *offset,
1490 enum pci_mmap_state mmap_state)
1491{
1492 struct pci_controller *hose = pci_bus_to_hose(dev->bus->number);
1493 unsigned long io_offset = 0;
1494 int i, res_bit;
1495
1496 if (hose == 0)
1497 return NULL; /* should never happen */
1498
1499 /* If memory, add on the PCI bridge address offset */
1500 if (mmap_state == pci_mmap_mem) {
1501 *offset += hose->pci_mem_offset;
1502 res_bit = IORESOURCE_MEM;
1503 } else {
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001504 io_offset = hose->io_base_virt - ___IO_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 *offset += io_offset;
1506 res_bit = IORESOURCE_IO;
1507 }
1508
1509 /*
1510 * Check that the offset requested corresponds to one of the
1511 * resources of the device.
1512 */
1513 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
1514 struct resource *rp = &dev->resource[i];
1515 int flags = rp->flags;
1516
1517 /* treat ROM as memory (should be already) */
1518 if (i == PCI_ROM_RESOURCE)
1519 flags |= IORESOURCE_MEM;
1520
1521 /* Active and same type? */
1522 if ((flags & res_bit) == 0)
1523 continue;
1524
1525 /* In the range of this resource? */
1526 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
1527 continue;
1528
1529 /* found it! construct the final physical address */
1530 if (mmap_state == pci_mmap_io)
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001531 *offset += hose->io_base_phys - io_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 return rp;
1533 }
1534
1535 return NULL;
1536}
1537
1538/*
1539 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
1540 * device mapping.
1541 */
1542static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
1543 pgprot_t protection,
1544 enum pci_mmap_state mmap_state,
1545 int write_combine)
1546{
1547 unsigned long prot = pgprot_val(protection);
1548
1549 /* Write combine is always 0 on non-memory space mappings. On
1550 * memory space, if the user didn't pass 1, we check for a
1551 * "prefetchable" resource. This is a bit hackish, but we use
1552 * this to workaround the inability of /sysfs to provide a write
1553 * combine bit
1554 */
1555 if (mmap_state != pci_mmap_mem)
1556 write_combine = 0;
1557 else if (write_combine == 0) {
1558 if (rp->flags & IORESOURCE_PREFETCH)
1559 write_combine = 1;
1560 }
1561
1562 /* XXX would be nice to have a way to ask for write-through */
1563 prot |= _PAGE_NO_CACHE;
1564 if (write_combine)
1565 prot &= ~_PAGE_GUARDED;
1566 else
1567 prot |= _PAGE_GUARDED;
1568
1569 printk("PCI map for %s:%lx, prot: %lx\n", pci_name(dev), rp->start,
1570 prot);
1571
1572 return __pgprot(prot);
1573}
1574
1575/*
1576 * This one is used by /dev/mem and fbdev who have no clue about the
1577 * PCI device, it tries to find the PCI device first and calls the
1578 * above routine
1579 */
1580pgprot_t pci_phys_mem_access_prot(struct file *file,
Roland Dreier8b150472005-10-28 17:46:18 -07001581 unsigned long pfn,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 unsigned long size,
1583 pgprot_t protection)
1584{
1585 struct pci_dev *pdev = NULL;
1586 struct resource *found = NULL;
1587 unsigned long prot = pgprot_val(protection);
Roland Dreier8b150472005-10-28 17:46:18 -07001588 unsigned long offset = pfn << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 int i;
1590
Roland Dreier8b150472005-10-28 17:46:18 -07001591 if (page_is_ram(pfn))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 return prot;
1593
1594 prot |= _PAGE_NO_CACHE | _PAGE_GUARDED;
1595
1596 for_each_pci_dev(pdev) {
1597 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
1598 struct resource *rp = &pdev->resource[i];
1599 int flags = rp->flags;
1600
1601 /* Active and same type? */
1602 if ((flags & IORESOURCE_MEM) == 0)
1603 continue;
1604 /* In the range of this resource? */
1605 if (offset < (rp->start & PAGE_MASK) ||
1606 offset > rp->end)
1607 continue;
1608 found = rp;
1609 break;
1610 }
1611 if (found)
1612 break;
1613 }
1614 if (found) {
1615 if (found->flags & IORESOURCE_PREFETCH)
1616 prot &= ~_PAGE_GUARDED;
1617 pci_dev_put(pdev);
1618 }
1619
1620 DBG("non-PCI map for %lx, prot: %lx\n", offset, prot);
1621
1622 return __pgprot(prot);
1623}
1624
1625
1626/*
1627 * Perform the actual remap of the pages for a PCI device mapping, as
1628 * appropriate for this architecture. The region in the process to map
1629 * is described by vm_start and vm_end members of VMA, the base physical
1630 * address is found in vm_pgoff.
1631 * The pci device structure is provided so that architectures may make mapping
1632 * decisions on a per-device or per-bus basis.
1633 *
1634 * Returns a negative error code on failure, zero on success.
1635 */
1636int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
1637 enum pci_mmap_state mmap_state,
1638 int write_combine)
1639{
1640 unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
1641 struct resource *rp;
1642 int ret;
1643
1644 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
1645 if (rp == NULL)
1646 return -EINVAL;
1647
1648 vma->vm_pgoff = offset >> PAGE_SHIFT;
1649 vma->vm_flags |= VM_SHM | VM_LOCKED | VM_IO;
1650 vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
1651 vma->vm_page_prot,
1652 mmap_state, write_combine);
1653
1654 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
1655 vma->vm_end - vma->vm_start, vma->vm_page_prot);
1656
1657 return ret;
1658}
1659
1660/* Obsolete functions. Should be removed once the symbios driver
1661 * is fixed
1662 */
1663unsigned long
1664phys_to_bus(unsigned long pa)
1665{
1666 struct pci_controller *hose;
1667 int i;
1668
1669 for (hose = hose_head; hose; hose = hose->next) {
1670 for (i = 0; i < 3; ++i) {
1671 if (pa >= hose->mem_resources[i].start
1672 && pa <= hose->mem_resources[i].end) {
1673 /*
1674 * XXX the hose->pci_mem_offset really
1675 * only applies to mem_resources[0].
1676 * We need a way to store an offset for
1677 * the others. -- paulus
1678 */
1679 if (i == 0)
1680 pa -= hose->pci_mem_offset;
1681 return pa;
1682 }
1683 }
1684 }
1685 /* hmmm, didn't find it */
1686 return 0;
1687}
1688
1689unsigned long
1690pci_phys_to_bus(unsigned long pa, int busnr)
1691{
1692 struct pci_controller* hose = pci_bus_to_hose(busnr);
1693 if (!hose)
1694 return pa;
1695 return pa - hose->pci_mem_offset;
1696}
1697
1698unsigned long
1699pci_bus_to_phys(unsigned int ba, int busnr)
1700{
1701 struct pci_controller* hose = pci_bus_to_hose(busnr);
1702 if (!hose)
1703 return ba;
1704 return ba + hose->pci_mem_offset;
1705}
1706
1707/* Provide information on locations of various I/O regions in physical
1708 * memory. Do this on a per-card basis so that we choose the right
1709 * root bridge.
1710 * Note that the returned IO or memory base is a physical address
1711 */
1712
1713long sys_pciconfig_iobase(long which, unsigned long bus, unsigned long devfn)
1714{
1715 struct pci_controller* hose;
1716 long result = -EOPNOTSUPP;
1717
1718 /* Argh ! Please forgive me for that hack, but that's the
1719 * simplest way to get existing XFree to not lockup on some
1720 * G5 machines... So when something asks for bus 0 io base
1721 * (bus 0 is HT root), we return the AGP one instead.
1722 */
1723#ifdef CONFIG_PPC_PMAC
1724 if (_machine == _MACH_Pmac && machine_is_compatible("MacRISC4"))
1725 if (bus == 0)
1726 bus = 0xf0;
1727#endif /* CONFIG_PPC_PMAC */
1728
1729 hose = pci_bus_to_hose(bus);
1730 if (!hose)
1731 return -ENODEV;
1732
1733 switch (which) {
1734 case IOBASE_BRIDGE_NUMBER:
1735 return (long)hose->first_busno;
1736 case IOBASE_MEMORY:
1737 return (long)hose->pci_mem_offset;
1738 case IOBASE_IO:
1739 return (long)hose->io_base_phys;
1740 case IOBASE_ISA_IO:
1741 return (long)isa_io_base;
1742 case IOBASE_ISA_MEM:
1743 return (long)isa_mem_base;
1744 }
1745
1746 return result;
1747}
1748
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001749void pci_resource_to_user(const struct pci_dev *dev, int bar,
1750 const struct resource *rsrc,
1751 u64 *start, u64 *end)
1752{
1753 struct pci_controller *hose = pci_bus_to_hose(dev->bus->number);
1754 unsigned long offset = 0;
1755
1756 if (hose == NULL)
1757 return;
1758
1759 if (rsrc->flags & IORESOURCE_IO)
1760 offset = ___IO_BASE - hose->io_base_virt + hose->io_base_phys;
1761
1762 *start = rsrc->start + offset;
1763 *end = rsrc->end + offset;
1764}
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766void __init
1767pci_init_resource(struct resource *res, unsigned long start, unsigned long end,
1768 int flags, char *name)
1769{
1770 res->start = start;
1771 res->end = end;
1772 res->flags = flags;
1773 res->name = name;
1774 res->parent = NULL;
1775 res->sibling = NULL;
1776 res->child = NULL;
1777}
1778
1779void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long max)
1780{
1781 unsigned long start = pci_resource_start(dev, bar);
1782 unsigned long len = pci_resource_len(dev, bar);
1783 unsigned long flags = pci_resource_flags(dev, bar);
1784
1785 if (!len)
1786 return NULL;
1787 if (max && len > max)
1788 len = max;
1789 if (flags & IORESOURCE_IO)
1790 return ioport_map(start, len);
1791 if (flags & IORESOURCE_MEM)
1792 /* Not checking IORESOURCE_CACHEABLE because PPC does
1793 * not currently distinguish between ioremap and
1794 * ioremap_nocache.
1795 */
1796 return ioremap(start, len);
1797 /* What? */
1798 return NULL;
1799}
1800
1801void pci_iounmap(struct pci_dev *dev, void __iomem *addr)
1802{
1803 /* Nothing to do */
1804}
1805EXPORT_SYMBOL(pci_iomap);
1806EXPORT_SYMBOL(pci_iounmap);
1807
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +11001808unsigned int pci_address_to_pio(phys_addr_t address)
1809{
1810 struct pci_controller* hose = hose_head;
1811
1812 for (; hose; hose = hose->next) {
1813 unsigned int size = hose->io_resource.end -
1814 hose->io_resource.start + 1;
1815 if (address >= hose->io_base_phys &&
1816 address < (hose->io_base_phys + size))
1817 return (unsigned int)hose->io_base_virt +
1818 (address - hose->io_base_phys);
1819 }
1820 return (unsigned int)-1;
1821}
1822EXPORT_SYMBOL(pci_address_to_pio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824/*
1825 * Null PCI config access functions, for the case when we can't
1826 * find a hose.
1827 */
1828#define NULL_PCI_OP(rw, size, type) \
1829static int \
1830null_##rw##_config_##size(struct pci_dev *dev, int offset, type val) \
1831{ \
1832 return PCIBIOS_DEVICE_NOT_FOUND; \
1833}
1834
1835static int
1836null_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
1837 int len, u32 *val)
1838{
1839 return PCIBIOS_DEVICE_NOT_FOUND;
1840}
1841
1842static int
1843null_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
1844 int len, u32 val)
1845{
1846 return PCIBIOS_DEVICE_NOT_FOUND;
1847}
1848
1849static struct pci_ops null_pci_ops =
1850{
1851 null_read_config,
1852 null_write_config
1853};
1854
1855/*
1856 * These functions are used early on before PCI scanning is done
1857 * and all of the pci_dev and pci_bus structures have been created.
1858 */
1859static struct pci_bus *
1860fake_pci_bus(struct pci_controller *hose, int busnr)
1861{
1862 static struct pci_bus bus;
1863
1864 if (hose == 0) {
1865 hose = pci_bus_to_hose(busnr);
1866 if (hose == 0)
1867 printk(KERN_ERR "Can't find hose for PCI bus %d!\n", busnr);
1868 }
1869 bus.number = busnr;
1870 bus.sysdata = hose;
1871 bus.ops = hose? hose->ops: &null_pci_ops;
1872 return &bus;
1873}
1874
1875#define EARLY_PCI_OP(rw, size, type) \
1876int early_##rw##_config_##size(struct pci_controller *hose, int bus, \
1877 int devfn, int offset, type value) \
1878{ \
1879 return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus), \
1880 devfn, offset, value); \
1881}
1882
1883EARLY_PCI_OP(read, byte, u8 *)
1884EARLY_PCI_OP(read, word, u16 *)
1885EARLY_PCI_OP(read, dword, u32 *)
1886EARLY_PCI_OP(write, byte, u8)
1887EARLY_PCI_OP(write, word, u16)
1888EARLY_PCI_OP(write, dword, u32)