blob: 56deb316efd3e1e061e1c89745cc5a5fa64e7f26 [file] [log] [blame]
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001/*
2 * Common pmac/prep/chrp pci routines. -- Cort
3 */
4
Paul Mackerrase05b3b42006-01-15 22:05:47 +11005#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>
13#include <linux/bootmem.h>
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -070014#include <linux/irq.h>
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +110015#include <linux/list.h>
Paul Mackerrase05b3b42006-01-15 22:05:47 +110016
17#include <asm/processor.h>
18#include <asm/io.h>
19#include <asm/prom.h>
20#include <asm/sections.h>
21#include <asm/pci-bridge.h>
22#include <asm/byteorder.h>
Paul Mackerrase05b3b42006-01-15 22:05:47 +110023#include <asm/uaccess.h>
24#include <asm/machdep.h>
25
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);
48static 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 */
56int pci_assign_all_buses;
57
58struct pci_controller* hose_head;
59struct pci_controller** hose_tail = &hose_head;
60
61static int pci_bus_count;
62
63static void
64fixup_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);
69 }
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) {
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -0700102 DBG("PCI:%s Resource %d [%016llx-%016llx] is unassigned\n",
Sergei Shtylyov872455e2006-12-03 20:52:27 +0300103 pci_name(dev), i, (u64)res->start, (u64)res->end);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100104 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;
Sergei Shtylyov872455e2006-12-03 20:52:27 +0300119 DBG("Fixup res %d (%lx) of dev %s: %llx -> %llx\n",
120 i, res->flags, pci_name(dev),
121 (u64)res->start - offset, (u64)res->start);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100122 }
123 }
124
125 /* Call machine specific resource fixup */
126 if (ppc_md.pcibios_fixup_resources)
127 ppc_md.pcibios_fixup_resources(dev);
128}
129DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
130
131void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
132 struct resource *res)
133{
134 unsigned long offset = 0;
135 struct pci_controller *hose = dev->sysdata;
136
137 if (hose && res->flags & IORESOURCE_IO)
138 offset = (unsigned long)hose->io_base_virt - isa_io_base;
139 else if (hose && res->flags & IORESOURCE_MEM)
140 offset = hose->pci_mem_offset;
141 region->start = res->start - offset;
142 region->end = res->end - offset;
143}
144EXPORT_SYMBOL(pcibios_resource_to_bus);
145
146void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
147 struct pci_bus_region *region)
148{
149 unsigned long offset = 0;
150 struct pci_controller *hose = dev->sysdata;
151
152 if (hose && res->flags & IORESOURCE_IO)
153 offset = (unsigned long)hose->io_base_virt - isa_io_base;
154 else if (hose && res->flags & IORESOURCE_MEM)
155 offset = hose->pci_mem_offset;
156 res->start = region->start + offset;
157 res->end = region->end + offset;
158}
159EXPORT_SYMBOL(pcibios_bus_to_resource);
160
161/*
162 * We need to avoid collisions with `mirrored' VGA ports
163 * and other strange ISA hardware, so we always want the
164 * addresses to be allocated in the 0x000-0x0ff region
165 * modulo 0x400.
166 *
167 * Why? Because some silly external IO cards only decode
168 * the low 10 bits of the IO address. The 0x00-0xff region
169 * is reserved for motherboard devices that decode all 16
170 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
171 * but we want to try to avoid allocating at 0x2900-0x2bff
172 * which might have be mirrored at 0x0100-0x03ff..
173 */
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700174void pcibios_align_resource(void *data, struct resource *res,
175 resource_size_t size, resource_size_t align)
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100176{
177 struct pci_dev *dev = data;
178
179 if (res->flags & IORESOURCE_IO) {
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700180 resource_size_t start = res->start;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100181
182 if (size > 0x100) {
183 printk(KERN_ERR "PCI: I/O Region %s/%d too large"
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -0700184 " (%lld bytes)\n", pci_name(dev),
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700185 dev->resource - res, (unsigned long long)size);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100186 }
187
188 if (start & 0x300) {
189 start = (start + 0x3ff) & ~0x3ff;
190 res->start = start;
191 }
192 }
193}
194EXPORT_SYMBOL(pcibios_align_resource);
195
196/*
197 * Handle resources of PCI devices. If the world were perfect, we could
198 * just allocate all the resource regions and do nothing more. It isn't.
199 * On the other hand, we cannot just re-allocate all devices, as it would
200 * require us to know lots of host bridge internals. So we attempt to
201 * keep as much of the original configuration as possible, but tweak it
202 * when it's found to be wrong.
203 *
204 * Known BIOS problems we have to work around:
205 * - I/O or memory regions not configured
206 * - regions configured, but not enabled in the command register
207 * - bogus I/O addresses above 64K used
208 * - expansion ROMs left enabled (this may sound harmless, but given
209 * the fact the PCI specs explicitly allow address decoders to be
210 * shared between expansion ROMs and other resource regions, it's
211 * at least dangerous)
212 *
213 * Our solution:
214 * (1) Allocate resources for all buses behind PCI-to-PCI bridges.
215 * This gives us fixed barriers on where we can allocate.
216 * (2) Allocate resources for all enabled devices. If there is
217 * a collision, just mark the resource as unallocated. Also
218 * disable expansion ROMs during this step.
219 * (3) Try to allocate resources for disabled devices. If the
220 * resources were assigned correctly, everything goes well,
221 * if they weren't, they won't disturb allocation of other
222 * resources.
223 * (4) Assign new addresses to resources which were either
224 * not configured at all or misconfigured. If explicitly
225 * requested by the user, configure expansion ROM address
226 * as well.
227 */
228
229static void __init
230pcibios_allocate_bus_resources(struct list_head *bus_list)
231{
232 struct pci_bus *bus;
233 int i;
234 struct resource *res, *pr;
235
236 /* Depth-First Search on bus tree */
237 list_for_each_entry(bus, bus_list, node) {
238 for (i = 0; i < 4; ++i) {
239 if ((res = bus->resource[i]) == NULL || !res->flags
240 || res->start > res->end)
241 continue;
242 if (bus->parent == NULL)
243 pr = (res->flags & IORESOURCE_IO)?
244 &ioport_resource: &iomem_resource;
245 else {
246 pr = pci_find_parent_resource(bus->self, res);
247 if (pr == res) {
248 /* this happens when the generic PCI
249 * code (wrongly) decides that this
250 * bridge is transparent -- paulus
251 */
252 continue;
253 }
254 }
255
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -0700256 DBG("PCI: bridge rsrc %llx..%llx (%lx), parent %p\n",
Sergei Shtylyov872455e2006-12-03 20:52:27 +0300257 (u64)res->start, (u64)res->end, res->flags, pr);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100258 if (pr) {
259 if (request_resource(pr, res) == 0)
260 continue;
261 /*
262 * Must be a conflict with an existing entry.
263 * Move that entry (or entries) under the
264 * bridge resource and try again.
265 */
266 if (reparent_resources(pr, res) == 0)
267 continue;
268 }
269 printk(KERN_ERR "PCI: Cannot allocate resource region "
270 "%d of PCI bridge %d\n", i, bus->number);
271 if (pci_relocate_bridge_resource(bus, i))
272 bus->resource[i] = NULL;
273 }
274 pcibios_allocate_bus_resources(&bus->children);
275 }
276}
277
278/*
279 * Reparent resource children of pr that conflict with res
280 * under res, and make res replace those children.
281 */
282static int __init
283reparent_resources(struct resource *parent, struct resource *res)
284{
285 struct resource *p, **pp;
286 struct resource **firstpp = NULL;
287
288 for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {
289 if (p->end < res->start)
290 continue;
291 if (res->end < p->start)
292 break;
293 if (p->start < res->start || p->end > res->end)
294 return -1; /* not completely contained */
295 if (firstpp == NULL)
296 firstpp = pp;
297 }
298 if (firstpp == NULL)
299 return -1; /* didn't find any conflicting entries? */
300 res->parent = parent;
301 res->child = *firstpp;
302 res->sibling = *pp;
303 *firstpp = res;
304 *pp = NULL;
305 for (p = res->child; p != NULL; p = p->sibling) {
306 p->parent = res;
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -0700307 DBG(KERN_INFO "PCI: reparented %s [%llx..%llx] under %s\n",
Sergei Shtylyov872455e2006-12-03 20:52:27 +0300308 p->name, (u64)p->start, (u64)p->end, res->name);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100309 }
310 return 0;
311}
312
313/*
314 * A bridge has been allocated a range which is outside the range
315 * of its parent bridge, so it needs to be moved.
316 */
317static int __init
318pci_relocate_bridge_resource(struct pci_bus *bus, int i)
319{
320 struct resource *res, *pr, *conflict;
321 unsigned long try, size;
322 int j;
323 struct pci_bus *parent = bus->parent;
324
325 if (parent == NULL) {
326 /* shouldn't ever happen */
327 printk(KERN_ERR "PCI: can't move host bridge resource\n");
328 return -1;
329 }
330 res = bus->resource[i];
331 if (res == NULL)
332 return -1;
333 pr = NULL;
334 for (j = 0; j < 4; j++) {
335 struct resource *r = parent->resource[j];
336 if (!r)
337 continue;
338 if ((res->flags ^ r->flags) & (IORESOURCE_IO | IORESOURCE_MEM))
339 continue;
340 if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH)) {
341 pr = r;
342 break;
343 }
344 if (res->flags & IORESOURCE_PREFETCH)
345 pr = r;
346 }
347 if (pr == NULL)
348 return -1;
349 size = res->end - res->start;
350 if (pr->start > pr->end || size > pr->end - pr->start)
351 return -1;
352 try = pr->end;
353 for (;;) {
354 res->start = try - size;
355 res->end = try;
356 if (probe_resource(bus->parent, pr, res, &conflict) == 0)
357 break;
358 if (conflict->start <= pr->start + size)
359 return -1;
360 try = conflict->start - 1;
361 }
362 if (request_resource(pr, res)) {
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -0700363 DBG(KERN_ERR "PCI: huh? couldn't move to %llx..%llx\n",
Sergei Shtylyov872455e2006-12-03 20:52:27 +0300364 (u64)res->start, (u64)res->end);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100365 return -1; /* "can't happen" */
366 }
367 update_bridge_base(bus, i);
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -0700368 printk(KERN_INFO "PCI: bridge %d resource %d moved to %llx..%llx\n",
369 bus->number, i, (unsigned long long)res->start,
370 (unsigned long long)res->end);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100371 return 0;
372}
373
374static int __init
375probe_resource(struct pci_bus *parent, struct resource *pr,
376 struct resource *res, struct resource **conflict)
377{
378 struct pci_bus *bus;
379 struct pci_dev *dev;
380 struct resource *r;
381 int i;
382
383 for (r = pr->child; r != NULL; r = r->sibling) {
384 if (r->end >= res->start && res->end >= r->start) {
385 *conflict = r;
386 return 1;
387 }
388 }
389 list_for_each_entry(bus, &parent->children, node) {
390 for (i = 0; i < 4; ++i) {
391 if ((r = bus->resource[i]) == NULL)
392 continue;
393 if (!r->flags || r->start > r->end || r == res)
394 continue;
395 if (pci_find_parent_resource(bus->self, r) != pr)
396 continue;
397 if (r->end >= res->start && res->end >= r->start) {
398 *conflict = r;
399 return 1;
400 }
401 }
402 }
403 list_for_each_entry(dev, &parent->devices, bus_list) {
404 for (i = 0; i < 6; ++i) {
405 r = &dev->resource[i];
406 if (!r->flags || (r->flags & IORESOURCE_UNSET))
407 continue;
408 if (pci_find_parent_resource(dev, r) != pr)
409 continue;
410 if (r->end >= res->start && res->end >= r->start) {
411 *conflict = r;
412 return 1;
413 }
414 }
415 }
416 return 0;
417}
418
419static void __init
420update_bridge_base(struct pci_bus *bus, int i)
421{
422 struct resource *res = bus->resource[i];
423 u8 io_base_lo, io_limit_lo;
424 u16 mem_base, mem_limit;
425 u16 cmd;
426 unsigned long start, end, off;
427 struct pci_dev *dev = bus->self;
428 struct pci_controller *hose = dev->sysdata;
429
430 if (!hose) {
431 printk("update_bridge_base: no hose?\n");
432 return;
433 }
434 pci_read_config_word(dev, PCI_COMMAND, &cmd);
435 pci_write_config_word(dev, PCI_COMMAND,
436 cmd & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY));
437 if (res->flags & IORESOURCE_IO) {
438 off = (unsigned long) hose->io_base_virt - isa_io_base;
439 start = res->start - off;
440 end = res->end - off;
441 io_base_lo = (start >> 8) & PCI_IO_RANGE_MASK;
442 io_limit_lo = (end >> 8) & PCI_IO_RANGE_MASK;
Randy Vinson60b2a462006-10-12 13:36:23 -0700443 if (end > 0xffff)
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100444 io_base_lo |= PCI_IO_RANGE_TYPE_32;
Randy Vinson60b2a462006-10-12 13:36:23 -0700445 else
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100446 io_base_lo |= PCI_IO_RANGE_TYPE_16;
Randy Vinson60b2a462006-10-12 13:36:23 -0700447 pci_write_config_word(dev, PCI_IO_BASE_UPPER16,
448 start >> 16);
449 pci_write_config_word(dev, PCI_IO_LIMIT_UPPER16,
450 end >> 16);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100451 pci_write_config_byte(dev, PCI_IO_BASE, io_base_lo);
452 pci_write_config_byte(dev, PCI_IO_LIMIT, io_limit_lo);
453
454 } else if ((res->flags & (IORESOURCE_MEM | IORESOURCE_PREFETCH))
455 == IORESOURCE_MEM) {
456 off = hose->pci_mem_offset;
457 mem_base = ((res->start - off) >> 16) & PCI_MEMORY_RANGE_MASK;
458 mem_limit = ((res->end - off) >> 16) & PCI_MEMORY_RANGE_MASK;
459 pci_write_config_word(dev, PCI_MEMORY_BASE, mem_base);
460 pci_write_config_word(dev, PCI_MEMORY_LIMIT, mem_limit);
461
462 } else if ((res->flags & (IORESOURCE_MEM | IORESOURCE_PREFETCH))
463 == (IORESOURCE_MEM | IORESOURCE_PREFETCH)) {
464 off = hose->pci_mem_offset;
465 mem_base = ((res->start - off) >> 16) & PCI_PREF_RANGE_MASK;
466 mem_limit = ((res->end - off) >> 16) & PCI_PREF_RANGE_MASK;
467 pci_write_config_word(dev, PCI_PREF_MEMORY_BASE, mem_base);
468 pci_write_config_word(dev, PCI_PREF_MEMORY_LIMIT, mem_limit);
469
470 } else {
471 DBG(KERN_ERR "PCI: ugh, bridge %s res %d has flags=%lx\n",
472 pci_name(dev), i, res->flags);
473 }
474 pci_write_config_word(dev, PCI_COMMAND, cmd);
475}
476
477static inline void alloc_resource(struct pci_dev *dev, int idx)
478{
479 struct resource *pr, *r = &dev->resource[idx];
480
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -0700481 DBG("PCI:%s: Resource %d: %016llx-%016llx (f=%lx)\n",
Sergei Shtylyov872455e2006-12-03 20:52:27 +0300482 pci_name(dev), idx, (u64)r->start, (u64)r->end, r->flags);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100483 pr = pci_find_parent_resource(dev, r);
484 if (!pr || request_resource(pr, r) < 0) {
485 printk(KERN_ERR "PCI: Cannot allocate resource region %d"
486 " of device %s\n", idx, pci_name(dev));
487 if (pr)
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -0700488 DBG("PCI: parent is %p: %016llx-%016llx (f=%lx)\n",
Sergei Shtylyov872455e2006-12-03 20:52:27 +0300489 pr, (u64)pr->start, (u64)pr->end, pr->flags);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100490 /* We'll assign a new address later */
491 r->flags |= IORESOURCE_UNSET;
492 r->end -= r->start;
493 r->start = 0;
494 }
495}
496
497static void __init
498pcibios_allocate_resources(int pass)
499{
500 struct pci_dev *dev = NULL;
501 int idx, disabled;
502 u16 command;
503 struct resource *r;
504
505 for_each_pci_dev(dev) {
506 pci_read_config_word(dev, PCI_COMMAND, &command);
507 for (idx = 0; idx < 6; idx++) {
508 r = &dev->resource[idx];
509 if (r->parent) /* Already allocated */
510 continue;
511 if (!r->flags || (r->flags & IORESOURCE_UNSET))
512 continue; /* Not assigned at all */
513 if (r->flags & IORESOURCE_IO)
514 disabled = !(command & PCI_COMMAND_IO);
515 else
516 disabled = !(command & PCI_COMMAND_MEMORY);
517 if (pass == disabled)
518 alloc_resource(dev, idx);
519 }
520 if (pass)
521 continue;
522 r = &dev->resource[PCI_ROM_RESOURCE];
523 if (r->flags & IORESOURCE_ROM_ENABLE) {
524 /* Turn the ROM off, leave the resource region, but keep it unregistered. */
525 u32 reg;
526 DBG("PCI: Switching off ROM of %s\n", pci_name(dev));
527 r->flags &= ~IORESOURCE_ROM_ENABLE;
528 pci_read_config_dword(dev, dev->rom_base_reg, &reg);
529 pci_write_config_dword(dev, dev->rom_base_reg,
530 reg & ~PCI_ROM_ADDRESS_ENABLE);
531 }
532 }
533}
534
535static void __init
536pcibios_assign_resources(void)
537{
538 struct pci_dev *dev = NULL;
539 int idx;
540 struct resource *r;
541
542 for_each_pci_dev(dev) {
543 int class = dev->class >> 8;
544
545 /* Don't touch classless devices and host bridges */
546 if (!class || class == PCI_CLASS_BRIDGE_HOST)
547 continue;
548
549 for (idx = 0; idx < 6; idx++) {
550 r = &dev->resource[idx];
551
552 /*
553 * We shall assign a new address to this resource,
554 * either because the BIOS (sic) forgot to do so
555 * or because we have decided the old address was
556 * unusable for some reason.
557 */
558 if ((r->flags & IORESOURCE_UNSET) && r->end &&
559 (!ppc_md.pcibios_enable_device_hook ||
560 !ppc_md.pcibios_enable_device_hook(dev, 1))) {
561 r->flags &= ~IORESOURCE_UNSET;
562 pci_assign_resource(dev, idx);
563 }
564 }
565
566#if 0 /* don't assign ROMs */
567 r = &dev->resource[PCI_ROM_RESOURCE];
568 r->end -= r->start;
569 r->start = 0;
570 if (r->end)
571 pci_assign_resource(dev, PCI_ROM_RESOURCE);
572#endif
573 }
574}
575
576
577int
578pcibios_enable_resources(struct pci_dev *dev, int mask)
579{
580 u16 cmd, old_cmd;
581 int idx;
582 struct resource *r;
583
584 pci_read_config_word(dev, PCI_COMMAND, &cmd);
585 old_cmd = cmd;
586 for (idx=0; idx<6; idx++) {
587 /* Only set up the requested stuff */
588 if (!(mask & (1<<idx)))
589 continue;
590
591 r = &dev->resource[idx];
592 if (r->flags & IORESOURCE_UNSET) {
593 printk(KERN_ERR "PCI: Device %s not available because of resource collisions\n", pci_name(dev));
594 return -EINVAL;
595 }
596 if (r->flags & IORESOURCE_IO)
597 cmd |= PCI_COMMAND_IO;
598 if (r->flags & IORESOURCE_MEM)
599 cmd |= PCI_COMMAND_MEMORY;
600 }
601 if (dev->resource[PCI_ROM_RESOURCE].start)
602 cmd |= PCI_COMMAND_MEMORY;
603 if (cmd != old_cmd) {
604 printk("PCI: Enabling device %s (%04x -> %04x)\n", pci_name(dev), old_cmd, cmd);
605 pci_write_config_word(dev, PCI_COMMAND, cmd);
606 }
607 return 0;
608}
609
610static int next_controller_index;
611
612struct pci_controller * __init
613pcibios_alloc_controller(void)
614{
615 struct pci_controller *hose;
616
617 hose = (struct pci_controller *)alloc_bootmem(sizeof(*hose));
618 memset(hose, 0, sizeof(struct pci_controller));
619
620 *hose_tail = hose;
621 hose_tail = &hose->next;
622
Kumar Gala5516b542007-06-27 01:17:57 -0500623 hose->global_number = next_controller_index++;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100624
625 return hose;
626}
627
628#ifdef CONFIG_PPC_OF
629/*
630 * Functions below are used on OpenFirmware machines.
631 */
632static void
633make_one_node_map(struct device_node* node, u8 pci_bus)
634{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000635 const int *bus_range;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100636 int len;
637
638 if (pci_bus >= pci_bus_count)
639 return;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000640 bus_range = of_get_property(node, "bus-range", &len);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100641 if (bus_range == NULL || len < 2 * sizeof(int)) {
642 printk(KERN_WARNING "Can't get bus-range for %s, "
643 "assuming it starts at 0\n", node->full_name);
644 pci_to_OF_bus_map[pci_bus] = 0;
645 } else
646 pci_to_OF_bus_map[pci_bus] = bus_range[0];
647
648 for (node=node->child; node != 0;node = node->sibling) {
649 struct pci_dev* dev;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000650 const unsigned int *class_code, *reg;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100651
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000652 class_code = of_get_property(node, "class-code", NULL);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100653 if (!class_code || ((*class_code >> 8) != PCI_CLASS_BRIDGE_PCI &&
654 (*class_code >> 8) != PCI_CLASS_BRIDGE_CARDBUS))
655 continue;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000656 reg = of_get_property(node, "reg", NULL);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100657 if (!reg)
658 continue;
Alan Coxab462762007-04-23 14:47:59 +0100659 dev = pci_get_bus_and_slot(pci_bus, ((reg[0] >> 8) & 0xff));
660 if (!dev || !dev->subordinate) {
661 pci_dev_put(dev);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100662 continue;
Alan Coxab462762007-04-23 14:47:59 +0100663 }
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100664 make_one_node_map(node, dev->subordinate->number);
Alan Coxab462762007-04-23 14:47:59 +0100665 pci_dev_put(dev);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100666 }
667}
668
669void
670pcibios_make_OF_bus_map(void)
671{
672 int i;
673 struct pci_controller* hose;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000674 struct property *map_prop;
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000675 struct device_node *dn;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100676
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800677 pci_to_OF_bus_map = kmalloc(pci_bus_count, GFP_KERNEL);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100678 if (!pci_to_OF_bus_map) {
679 printk(KERN_ERR "Can't allocate OF bus map !\n");
680 return;
681 }
682
683 /* We fill the bus map with invalid values, that helps
684 * debugging.
685 */
686 for (i=0; i<pci_bus_count; i++)
687 pci_to_OF_bus_map[i] = 0xff;
688
689 /* For each hose, we begin searching bridges */
690 for(hose=hose_head; hose; hose=hose->next) {
691 struct device_node* node;
692 node = (struct device_node *)hose->arch_data;
693 if (!node)
694 continue;
695 make_one_node_map(node, hose->first_busno);
696 }
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000697 dn = of_find_node_by_path("/");
698 map_prop = of_find_property(dn, "pci-OF-bus-map", NULL);
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000699 if (map_prop) {
700 BUG_ON(pci_bus_count > map_prop->length);
701 memcpy(map_prop->value, pci_to_OF_bus_map, pci_bus_count);
702 }
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000703 of_node_put(dn);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100704#ifdef DEBUG
705 printk("PCI->OF bus map:\n");
706 for (i=0; i<pci_bus_count; i++) {
707 if (pci_to_OF_bus_map[i] == 0xff)
708 continue;
709 printk("%d -> %d\n", i, pci_to_OF_bus_map[i]);
710 }
711#endif
712}
713
714typedef int (*pci_OF_scan_iterator)(struct device_node* node, void* data);
715
716static struct device_node*
717scan_OF_pci_childs(struct device_node* node, pci_OF_scan_iterator filter, void* data)
718{
719 struct device_node* sub_node;
720
721 for (; node != 0;node = node->sibling) {
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000722 const unsigned int *class_code;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100723
724 if (filter(node, data))
725 return node;
726
727 /* For PCI<->PCI bridges or CardBus bridges, we go down
728 * Note: some OFs create a parent node "multifunc-device" as
729 * a fake root for all functions of a multi-function device,
730 * we go down them as well.
731 */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000732 class_code = of_get_property(node, "class-code", NULL);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100733 if ((!class_code || ((*class_code >> 8) != PCI_CLASS_BRIDGE_PCI &&
734 (*class_code >> 8) != PCI_CLASS_BRIDGE_CARDBUS)) &&
735 strcmp(node->name, "multifunc-device"))
736 continue;
737 sub_node = scan_OF_pci_childs(node->child, filter, data);
738 if (sub_node)
739 return sub_node;
740 }
741 return NULL;
742}
743
Benjamin Herrenschmidtdae48282006-12-11 14:09:07 +1100744static struct device_node *scan_OF_for_pci_dev(struct device_node *parent,
745 unsigned int devfn)
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100746{
Benjamin Herrenschmidtdae48282006-12-11 14:09:07 +1100747 struct device_node *np = NULL;
748 const u32 *reg;
749 unsigned int psize;
750
751 while ((np = of_get_next_child(parent, np)) != NULL) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000752 reg = of_get_property(np, "reg", &psize);
Benjamin Herrenschmidtdae48282006-12-11 14:09:07 +1100753 if (reg == NULL || psize < 4)
754 continue;
755 if (((reg[0] >> 8) & 0xff) == devfn)
756 return np;
757 }
758 return NULL;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100759}
760
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100761
Benjamin Herrenschmidtdae48282006-12-11 14:09:07 +1100762static struct device_node *scan_OF_for_pci_bus(struct pci_bus *bus)
763{
764 struct device_node *parent, *np;
765
766 /* Are we a root bus ? */
767 if (bus->self == NULL || bus->parent == NULL) {
768 struct pci_controller *hose = pci_bus_to_hose(bus->number);
769 if (hose == NULL)
770 return NULL;
771 return of_node_get(hose->arch_data);
772 }
773
774 /* not a root bus, we need to get our parent */
775 parent = scan_OF_for_pci_bus(bus->parent);
776 if (parent == NULL)
777 return NULL;
778
779 /* now iterate for children for a match */
780 np = scan_OF_for_pci_dev(parent, bus->self->devfn);
781 of_node_put(parent);
782
Benjamin Herrenschmidtdae48282006-12-11 14:09:07 +1100783 return np;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100784}
785
786/*
787 * Scans the OF tree for a device node matching a PCI device
788 */
789struct device_node *
790pci_busdev_to_OF_node(struct pci_bus *bus, int devfn)
791{
Benjamin Herrenschmidtdae48282006-12-11 14:09:07 +1100792 struct device_node *parent, *np;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100793
794 if (!have_of)
795 return NULL;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100796
Benjamin Herrenschmidtdae48282006-12-11 14:09:07 +1100797 DBG("pci_busdev_to_OF_node(%d,0x%x)\n", bus->number, devfn);
798 parent = scan_OF_for_pci_bus(bus);
799 if (parent == NULL)
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100800 return NULL;
Benjamin Herrenschmidtdae48282006-12-11 14:09:07 +1100801 DBG(" parent is %s\n", parent ? parent->full_name : "<NULL>");
802 np = scan_OF_for_pci_dev(parent, devfn);
803 of_node_put(parent);
804 DBG(" result is %s\n", np ? np->full_name : "<NULL>");
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100805
Benjamin Herrenschmidtdae48282006-12-11 14:09:07 +1100806 /* XXX most callers don't release the returned node
807 * mostly because ppc64 doesn't increase the refcount,
808 * we need to fix that.
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100809 */
Benjamin Herrenschmidtdae48282006-12-11 14:09:07 +1100810 return np;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100811}
812EXPORT_SYMBOL(pci_busdev_to_OF_node);
813
814struct device_node*
815pci_device_to_OF_node(struct pci_dev *dev)
816{
817 return pci_busdev_to_OF_node(dev->bus, dev->devfn);
818}
819EXPORT_SYMBOL(pci_device_to_OF_node);
820
821/* This routine is meant to be used early during boot, when the
822 * PCI bus numbers have not yet been assigned, and you need to
823 * issue PCI config cycles to an OF device.
824 * It could also be used to "fix" RTAS config cycles if you want
825 * to set pci_assign_all_buses to 1 and still use RTAS for PCI
826 * config cycles.
827 */
828struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
829{
830 if (!have_of)
831 return NULL;
832 while(node) {
833 struct pci_controller* hose;
834 for (hose=hose_head;hose;hose=hose->next)
835 if (hose->arch_data == node)
836 return hose;
837 node=node->parent;
838 }
839 return NULL;
840}
841
842static int
843find_OF_pci_device_filter(struct device_node* node, void* data)
844{
845 return ((void *)node == data);
846}
847
848/*
849 * Returns the PCI device matching a given OF node
850 */
851int
852pci_device_from_OF_node(struct device_node* node, u8* bus, u8* devfn)
853{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000854 const unsigned int *reg;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100855 struct pci_controller* hose;
856 struct pci_dev* dev = NULL;
857
858 if (!have_of)
859 return -ENODEV;
860 /* Make sure it's really a PCI device */
861 hose = pci_find_hose_for_OF_device(node);
862 if (!hose || !hose->arch_data)
863 return -ENODEV;
864 if (!scan_OF_pci_childs(((struct device_node*)hose->arch_data)->child,
865 find_OF_pci_device_filter, (void *)node))
866 return -ENODEV;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000867 reg = of_get_property(node, "reg", NULL);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100868 if (!reg)
869 return -ENODEV;
870 *bus = (reg[0] >> 16) & 0xff;
871 *devfn = ((reg[0] >> 8) & 0xff);
872
873 /* Ok, here we need some tweak. If we have already renumbered
874 * all busses, we can't rely on the OF bus number any more.
875 * the pci_to_OF_bus_map is not enough as several PCI busses
876 * may match the same OF bus number.
877 */
878 if (!pci_to_OF_bus_map)
879 return 0;
880
881 for_each_pci_dev(dev)
882 if (pci_to_OF_bus_map[dev->bus->number] == *bus &&
883 dev->devfn == *devfn) {
884 *bus = dev->bus->number;
885 pci_dev_put(dev);
886 return 0;
887 }
888
889 return -ENODEV;
890}
891EXPORT_SYMBOL(pci_device_from_OF_node);
892
893void __init
894pci_process_bridge_OF_ranges(struct pci_controller *hose,
895 struct device_node *dev, int primary)
896{
897 static unsigned int static_lc_ranges[256] __initdata;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000898 const unsigned int *dt_ranges;
899 unsigned int *lc_ranges, *ranges, *prev, size;
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100900 int rlen = 0, orig_rlen;
901 int memno = 0;
902 struct resource *res;
Stephen Rothwella8bda5d2007-04-03 10:56:50 +1000903 int np, na = of_n_addr_cells(dev);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100904 np = na + 5;
905
906 /* First we try to merge ranges to fix a problem with some pmacs
907 * that can have more than 3 ranges, fortunately using contiguous
908 * addresses -- BenH
909 */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000910 dt_ranges = of_get_property(dev, "ranges", &rlen);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100911 if (!dt_ranges)
912 return;
913 /* Sanity check, though hopefully that never happens */
914 if (rlen > sizeof(static_lc_ranges)) {
915 printk(KERN_WARNING "OF ranges property too large !\n");
916 rlen = sizeof(static_lc_ranges);
917 }
918 lc_ranges = static_lc_ranges;
919 memcpy(lc_ranges, dt_ranges, rlen);
920 orig_rlen = rlen;
921
922 /* Let's work on a copy of the "ranges" property instead of damaging
923 * the device-tree image in memory
924 */
925 ranges = lc_ranges;
926 prev = NULL;
927 while ((rlen -= np * sizeof(unsigned int)) >= 0) {
928 if (prev) {
929 if (prev[0] == ranges[0] && prev[1] == ranges[1] &&
930 (prev[2] + prev[na+4]) == ranges[2] &&
931 (prev[na+2] + prev[na+4]) == ranges[na+2]) {
932 prev[na+4] += ranges[na+4];
933 ranges[0] = 0;
934 ranges += np;
935 continue;
936 }
937 }
938 prev = ranges;
939 ranges += np;
940 }
941
942 /*
943 * The ranges property is laid out as an array of elements,
944 * each of which comprises:
945 * cells 0 - 2: a PCI address
946 * cells 3 or 3+4: a CPU physical address
947 * (size depending on dev->n_addr_cells)
948 * cells 4+5 or 5+6: the size of the range
949 */
950 ranges = lc_ranges;
951 rlen = orig_rlen;
952 while (ranges && (rlen -= np * sizeof(unsigned int)) >= 0) {
953 res = NULL;
954 size = ranges[na+4];
955 switch ((ranges[0] >> 24) & 0x3) {
956 case 1: /* I/O space */
957 if (ranges[2] != 0)
958 break;
959 hose->io_base_phys = ranges[na+2];
960 /* limit I/O space to 16MB */
961 if (size > 0x01000000)
962 size = 0x01000000;
963 hose->io_base_virt = ioremap(ranges[na+2], size);
964 if (primary)
965 isa_io_base = (unsigned long) hose->io_base_virt;
966 res = &hose->io_resource;
967 res->flags = IORESOURCE_IO;
968 res->start = ranges[2];
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -0700969 DBG("PCI: IO 0x%llx -> 0x%llx\n",
Sergei Shtylyov872455e2006-12-03 20:52:27 +0300970 (u64)res->start, (u64)res->start + size - 1);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100971 break;
972 case 2: /* memory space */
973 memno = 0;
974 if (ranges[1] == 0 && ranges[2] == 0
975 && ranges[na+4] <= (16 << 20)) {
976 /* 1st 16MB, i.e. ISA memory area */
977 if (primary)
978 isa_mem_base = ranges[na+2];
979 memno = 1;
980 }
981 while (memno < 3 && hose->mem_resources[memno].flags)
982 ++memno;
983 if (memno == 0)
984 hose->pci_mem_offset = ranges[na+2] - ranges[2];
985 if (memno < 3) {
986 res = &hose->mem_resources[memno];
987 res->flags = IORESOURCE_MEM;
988 if(ranges[0] & 0x40000000)
989 res->flags |= IORESOURCE_PREFETCH;
990 res->start = ranges[na+2];
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -0700991 DBG("PCI: MEM[%d] 0x%llx -> 0x%llx\n", memno,
Sergei Shtylyov872455e2006-12-03 20:52:27 +0300992 (u64)res->start, (u64)res->start + size - 1);
Paul Mackerrase05b3b42006-01-15 22:05:47 +1100993 }
994 break;
995 }
996 if (res != NULL) {
997 res->name = dev->full_name;
998 res->end = res->start + size - 1;
999 res->parent = NULL;
1000 res->sibling = NULL;
1001 res->child = NULL;
1002 }
1003 ranges += np;
1004 }
1005}
1006
1007/* We create the "pci-OF-bus-map" property now so it appears in the
1008 * /proc device tree
1009 */
1010void __init
1011pci_create_OF_bus_map(void)
1012{
1013 struct property* of_prop;
Stephen Rothwell8c8dc322007-04-24 13:50:55 +10001014 struct device_node *dn;
1015
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001016 of_prop = (struct property*) alloc_bootmem(sizeof(struct property) + 256);
Stephen Rothwell8c8dc322007-04-24 13:50:55 +10001017 if (!of_prop)
1018 return;
1019 dn = of_find_node_by_path("/");
1020 if (dn) {
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001021 memset(of_prop, -1, sizeof(struct property) + 256);
1022 of_prop->name = "pci-OF-bus-map";
1023 of_prop->length = 256;
Stephen Rothwell1a381472007-04-03 10:58:52 +10001024 of_prop->value = &of_prop[1];
Stephen Rothwell8c8dc322007-04-24 13:50:55 +10001025 prom_add_property(dn, of_prop);
1026 of_node_put(dn);
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001027 }
1028}
1029
1030static ssize_t pci_show_devspec(struct device *dev, struct device_attribute *attr, char *buf)
1031{
1032 struct pci_dev *pdev;
1033 struct device_node *np;
1034
1035 pdev = to_pci_dev (dev);
1036 np = pci_device_to_OF_node(pdev);
1037 if (np == NULL || np->full_name == NULL)
1038 return 0;
1039 return sprintf(buf, "%s", np->full_name);
1040}
1041static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
1042
1043#else /* CONFIG_PPC_OF */
1044void pcibios_make_OF_bus_map(void)
1045{
1046}
1047#endif /* CONFIG_PPC_OF */
1048
1049/* Add sysfs properties */
1050void pcibios_add_platform_entries(struct pci_dev *pdev)
1051{
1052#ifdef CONFIG_PPC_OF
1053 device_create_file(&pdev->dev, &dev_attr_devspec);
1054#endif /* CONFIG_PPC_OF */
1055}
1056
1057
1058#ifdef CONFIG_PPC_PMAC
1059/*
1060 * This set of routines checks for PCI<->PCI bridges that have closed
1061 * IO resources and have child devices. It tries to re-open an IO
1062 * window on them.
1063 *
1064 * This is a _temporary_ fix to workaround a problem with Apple's OF
1065 * closing IO windows on P2P bridges when the OF drivers of cards
1066 * below this bridge don't claim any IO range (typically ATI or
1067 * Adaptec).
1068 *
1069 * A more complete fix would be to use drivers/pci/setup-bus.c, which
1070 * involves a working pcibios_fixup_pbus_ranges(), some more care about
1071 * ordering when creating the host bus resources, and maybe a few more
1072 * minor tweaks
1073 */
1074
1075/* Initialize bridges with base/limit values we have collected */
1076static void __init
1077do_update_p2p_io_resource(struct pci_bus *bus, int enable_vga)
1078{
1079 struct pci_dev *bridge = bus->self;
1080 struct pci_controller* hose = (struct pci_controller *)bridge->sysdata;
1081 u32 l;
1082 u16 w;
1083 struct resource res;
1084
1085 if (bus->resource[0] == NULL)
1086 return;
1087 res = *(bus->resource[0]);
1088
1089 DBG("Remapping Bus %d, bridge: %s\n", bus->number, pci_name(bridge));
1090 res.start -= ((unsigned long) hose->io_base_virt - isa_io_base);
1091 res.end -= ((unsigned long) hose->io_base_virt - isa_io_base);
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -07001092 DBG(" IO window: %016llx-%016llx\n", res.start, res.end);
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001093
1094 /* Set up the top and bottom of the PCI I/O segment for this bus. */
1095 pci_read_config_dword(bridge, PCI_IO_BASE, &l);
1096 l &= 0xffff000f;
1097 l |= (res.start >> 8) & 0x00f0;
1098 l |= res.end & 0xf000;
1099 pci_write_config_dword(bridge, PCI_IO_BASE, l);
1100
1101 if ((l & PCI_IO_RANGE_TYPE_MASK) == PCI_IO_RANGE_TYPE_32) {
1102 l = (res.start >> 16) | (res.end & 0xffff0000);
1103 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, l);
1104 }
1105
1106 pci_read_config_word(bridge, PCI_COMMAND, &w);
1107 w |= PCI_COMMAND_IO;
1108 pci_write_config_word(bridge, PCI_COMMAND, w);
1109
1110#if 0 /* Enabling this causes XFree 4.2.0 to hang during PCI probe */
1111 if (enable_vga) {
1112 pci_read_config_word(bridge, PCI_BRIDGE_CONTROL, &w);
1113 w |= PCI_BRIDGE_CTL_VGA;
1114 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL, w);
1115 }
1116#endif
1117}
1118
1119/* This function is pretty basic and actually quite broken for the
1120 * general case, it's enough for us right now though. It's supposed
1121 * to tell us if we need to open an IO range at all or not and what
1122 * size.
1123 */
1124static int __init
1125check_for_io_childs(struct pci_bus *bus, struct resource* res, int *found_vga)
1126{
1127 struct pci_dev *dev;
1128 int i;
1129 int rc = 0;
1130
Paul Mackerras0f582bc2006-06-15 18:03:32 +10001131#define push_end(res, mask) do { \
1132 BUG_ON((mask+1) & mask); \
1133 res->end = (res->end + mask) | mask; \
1134} while (0)
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001135
1136 list_for_each_entry(dev, &bus->devices, bus_list) {
1137 u16 class = dev->class >> 8;
1138
1139 if (class == PCI_CLASS_DISPLAY_VGA ||
1140 class == PCI_CLASS_NOT_DEFINED_VGA)
1141 *found_vga = 1;
1142 if (class >> 8 == PCI_BASE_CLASS_BRIDGE && dev->subordinate)
1143 rc |= check_for_io_childs(dev->subordinate, res, found_vga);
1144 if (class == PCI_CLASS_BRIDGE_CARDBUS)
1145 push_end(res, 0xfff);
1146
1147 for (i=0; i<PCI_NUM_RESOURCES; i++) {
1148 struct resource *r;
1149 unsigned long r_size;
1150
1151 if (dev->class >> 8 == PCI_CLASS_BRIDGE_PCI
1152 && i >= PCI_BRIDGE_RESOURCES)
1153 continue;
1154 r = &dev->resource[i];
1155 r_size = r->end - r->start;
1156 if (r_size < 0xfff)
1157 r_size = 0xfff;
1158 if (r->flags & IORESOURCE_IO && (r_size) != 0) {
1159 rc = 1;
1160 push_end(res, r_size);
1161 }
1162 }
1163 }
1164
1165 return rc;
1166}
1167
1168/* Here we scan all P2P bridges of a given level that have a closed
1169 * IO window. Note that the test for the presence of a VGA card should
1170 * be improved to take into account already configured P2P bridges,
1171 * currently, we don't see them and might end up configuring 2 bridges
1172 * with VGA pass through enabled
1173 */
1174static void __init
1175do_fixup_p2p_level(struct pci_bus *bus)
1176{
1177 struct pci_bus *b;
1178 int i, parent_io;
1179 int has_vga = 0;
1180
1181 for (parent_io=0; parent_io<4; parent_io++)
1182 if (bus->resource[parent_io]
1183 && bus->resource[parent_io]->flags & IORESOURCE_IO)
1184 break;
1185 if (parent_io >= 4)
1186 return;
1187
1188 list_for_each_entry(b, &bus->children, node) {
1189 struct pci_dev *d = b->self;
1190 struct pci_controller* hose = (struct pci_controller *)d->sysdata;
1191 struct resource *res = b->resource[0];
1192 struct resource tmp_res;
1193 unsigned long max;
1194 int found_vga = 0;
1195
1196 memset(&tmp_res, 0, sizeof(tmp_res));
1197 tmp_res.start = bus->resource[parent_io]->start;
1198
1199 /* We don't let low addresses go through that closed P2P bridge, well,
1200 * that may not be necessary but I feel safer that way
1201 */
1202 if (tmp_res.start == 0)
1203 tmp_res.start = 0x1000;
1204
1205 if (!list_empty(&b->devices) && res && res->flags == 0 &&
1206 res != bus->resource[parent_io] &&
1207 (d->class >> 8) == PCI_CLASS_BRIDGE_PCI &&
1208 check_for_io_childs(b, &tmp_res, &found_vga)) {
1209 u8 io_base_lo;
1210
1211 printk(KERN_INFO "Fixing up IO bus %s\n", b->name);
1212
1213 if (found_vga) {
1214 if (has_vga) {
1215 printk(KERN_WARNING "Skipping VGA, already active"
1216 " on bus segment\n");
1217 found_vga = 0;
1218 } else
1219 has_vga = 1;
1220 }
1221 pci_read_config_byte(d, PCI_IO_BASE, &io_base_lo);
1222
1223 if ((io_base_lo & PCI_IO_RANGE_TYPE_MASK) == PCI_IO_RANGE_TYPE_32)
1224 max = ((unsigned long) hose->io_base_virt
1225 - isa_io_base) + 0xffffffff;
1226 else
1227 max = ((unsigned long) hose->io_base_virt
1228 - isa_io_base) + 0xffff;
1229
1230 *res = tmp_res;
1231 res->flags = IORESOURCE_IO;
1232 res->name = b->name;
1233
1234 /* Find a resource in the parent where we can allocate */
1235 for (i = 0 ; i < 4; i++) {
1236 struct resource *r = bus->resource[i];
1237 if (!r)
1238 continue;
1239 if ((r->flags & IORESOURCE_IO) == 0)
1240 continue;
Greg Kroah-Hartman685143a2006-06-12 15:18:31 -07001241 DBG("Trying to allocate from %016llx, size %016llx from parent"
1242 " res %d: %016llx -> %016llx\n",
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001243 res->start, res->end, i, r->start, r->end);
1244
1245 if (allocate_resource(r, res, res->end + 1, res->start, max,
1246 res->end + 1, NULL, NULL) < 0) {
1247 DBG("Failed !\n");
1248 continue;
1249 }
1250 do_update_p2p_io_resource(b, found_vga);
1251 break;
1252 }
1253 }
1254 do_fixup_p2p_level(b);
1255 }
1256}
1257
1258static void
1259pcibios_fixup_p2p_bridges(void)
1260{
1261 struct pci_bus *b;
1262
1263 list_for_each_entry(b, &pci_root_buses, node)
1264 do_fixup_p2p_level(b);
1265}
1266
1267#endif /* CONFIG_PPC_PMAC */
1268
1269static int __init
1270pcibios_init(void)
1271{
1272 struct pci_controller *hose;
1273 struct pci_bus *bus;
1274 int next_busno;
1275
1276 printk(KERN_INFO "PCI: Probing PCI hardware\n");
1277
1278 /* Scan all of the recorded PCI controllers. */
1279 for (next_busno = 0, hose = hose_head; hose; hose = hose->next) {
1280 if (pci_assign_all_buses)
1281 hose->first_busno = next_busno;
1282 hose->last_busno = 0xff;
Benjamin Herrenschmidt803d4572006-11-11 17:25:07 +11001283 bus = pci_scan_bus_parented(hose->parent, hose->first_busno,
1284 hose->ops, hose);
1285 if (bus)
1286 pci_bus_add_devices(bus);
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001287 hose->last_busno = bus->subordinate;
1288 if (pci_assign_all_buses || next_busno <= hose->last_busno)
1289 next_busno = hose->last_busno + pcibios_assign_bus_offset;
1290 }
1291 pci_bus_count = next_busno;
1292
1293 /* OpenFirmware based machines need a map of OF bus
1294 * numbers vs. kernel bus numbers since we may have to
1295 * remap them.
1296 */
1297 if (pci_assign_all_buses && have_of)
1298 pcibios_make_OF_bus_map();
1299
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001300 /* Call machine dependent fixup */
1301 if (ppc_md.pcibios_fixup)
1302 ppc_md.pcibios_fixup();
1303
1304 /* Allocate and assign resources */
1305 pcibios_allocate_bus_resources(&pci_root_buses);
1306 pcibios_allocate_resources(0);
1307 pcibios_allocate_resources(1);
1308#ifdef CONFIG_PPC_PMAC
1309 pcibios_fixup_p2p_bridges();
1310#endif /* CONFIG_PPC_PMAC */
1311 pcibios_assign_resources();
1312
1313 /* Call machine dependent post-init code */
1314 if (ppc_md.pcibios_after_init)
1315 ppc_md.pcibios_after_init();
1316
1317 return 0;
1318}
1319
1320subsys_initcall(pcibios_init);
1321
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001322void __init pcibios_fixup_bus(struct pci_bus *bus)
1323{
1324 struct pci_controller *hose = (struct pci_controller *) bus->sysdata;
1325 unsigned long io_offset;
1326 struct resource *res;
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +11001327 struct pci_dev *dev;
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001328 int i;
1329
1330 io_offset = (unsigned long)hose->io_base_virt - isa_io_base;
1331 if (bus->parent == NULL) {
1332 /* This is a host bridge - fill in its resources */
1333 hose->bus = bus;
1334
1335 bus->resource[0] = res = &hose->io_resource;
1336 if (!res->flags) {
1337 if (io_offset)
1338 printk(KERN_ERR "I/O resource not set for host"
Kumar Gala5516b542007-06-27 01:17:57 -05001339 " bridge %d\n", hose->global_number);
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001340 res->start = 0;
1341 res->end = IO_SPACE_LIMIT;
1342 res->flags = IORESOURCE_IO;
1343 }
1344 res->start += io_offset;
1345 res->end += io_offset;
1346
1347 for (i = 0; i < 3; ++i) {
1348 res = &hose->mem_resources[i];
1349 if (!res->flags) {
1350 if (i > 0)
1351 continue;
1352 printk(KERN_ERR "Memory resource not set for "
Kumar Gala5516b542007-06-27 01:17:57 -05001353 "host bridge %d\n", hose->global_number);
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001354 res->start = hose->pci_mem_offset;
1355 res->end = ~0U;
1356 res->flags = IORESOURCE_MEM;
1357 }
1358 bus->resource[i+1] = res;
1359 }
1360 } else {
1361 /* This is a subordinate bridge */
1362 pci_read_bridge_bases(bus);
1363
1364 for (i = 0; i < 4; ++i) {
1365 if ((res = bus->resource[i]) == NULL)
1366 continue;
York Sun6d8ff102007-06-04 11:56:42 -05001367 if (!res->flags || bus->self->transparent)
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001368 continue;
1369 if (io_offset && (res->flags & IORESOURCE_IO)) {
1370 res->start += io_offset;
1371 res->end += io_offset;
1372 } else if (hose->pci_mem_offset
1373 && (res->flags & IORESOURCE_MEM)) {
1374 res->start += hose->pci_mem_offset;
1375 res->end += hose->pci_mem_offset;
1376 }
1377 }
1378 }
1379
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +11001380 /* Platform specific bus fixups */
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001381 if (ppc_md.pcibios_fixup_bus)
1382 ppc_md.pcibios_fixup_bus(bus);
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +11001383
1384 /* Read default IRQs and fixup if necessary */
1385 list_for_each_entry(dev, &bus->devices, bus_list) {
1386 pci_read_irq_line(dev);
1387 if (ppc_md.pci_irq_fixup)
1388 ppc_md.pci_irq_fixup(dev);
1389 }
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001390}
1391
1392char __init *pcibios_setup(char *str)
1393{
1394 return str;
1395}
1396
1397/* the next one is stolen from the alpha port... */
1398void __init
1399pcibios_update_irq(struct pci_dev *dev, int irq)
1400{
1401 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq);
1402 /* XXX FIXME - update OF device tree node interrupt property */
1403}
1404
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001405#ifdef CONFIG_PPC_MERGE
1406/* XXX This is a copy of the ppc64 version. This is temporary until we start
1407 * merging the 2 PCI layers
1408 */
1409/*
1410 * Reads the interrupt pin to determine if interrupt is use by card.
1411 * If the interrupt is used, then gets the interrupt line from the
1412 * openfirmware and sets it in the pci_dev and pci_config line.
1413 */
1414int pci_read_irq_line(struct pci_dev *pci_dev)
1415{
1416 struct of_irq oirq;
1417 unsigned int virq;
1418
1419 DBG("Try to map irq for %s...\n", pci_name(pci_dev));
1420
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001421 /* Try to get a mapping from the device-tree */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001422 if (of_irq_map_pci(pci_dev, &oirq)) {
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001423 u8 line, pin;
1424
1425 /* If that fails, lets fallback to what is in the config
1426 * space and map that through the default controller. We
1427 * also set the type to level low since that's what PCI
1428 * interrupts are. If your platform does differently, then
1429 * either provide a proper interrupt tree or don't use this
1430 * function.
1431 */
1432 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
1433 return -1;
1434 if (pin == 0)
1435 return -1;
1436 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
1437 line == 0xff) {
1438 return -1;
1439 }
1440 DBG(" -> no map ! Using irq line %d from PCI config\n", line);
1441
1442 virq = irq_create_mapping(NULL, line);
1443 if (virq != NO_IRQ)
1444 set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
1445 } else {
1446 DBG(" -> got one, spec %d cells (0x%08x...) on %s\n",
1447 oirq.size, oirq.specifier[0], oirq.controller->full_name);
1448
1449 virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
1450 oirq.size);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001451 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001452 if(virq == NO_IRQ) {
1453 DBG(" -> failed to map !\n");
1454 return -1;
1455 }
1456 pci_dev->irq = virq;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001457
1458 return 0;
1459}
1460EXPORT_SYMBOL(pci_read_irq_line);
1461#endif /* CONFIG_PPC_MERGE */
1462
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001463int pcibios_enable_device(struct pci_dev *dev, int mask)
1464{
1465 u16 cmd, old_cmd;
1466 int idx;
1467 struct resource *r;
1468
1469 if (ppc_md.pcibios_enable_device_hook)
1470 if (ppc_md.pcibios_enable_device_hook(dev, 0))
1471 return -EINVAL;
1472
1473 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1474 old_cmd = cmd;
1475 for (idx=0; idx<6; idx++) {
1476 r = &dev->resource[idx];
1477 if (r->flags & IORESOURCE_UNSET) {
1478 printk(KERN_ERR "PCI: Device %s not available because of resource collisions\n", pci_name(dev));
1479 return -EINVAL;
1480 }
1481 if (r->flags & IORESOURCE_IO)
1482 cmd |= PCI_COMMAND_IO;
1483 if (r->flags & IORESOURCE_MEM)
1484 cmd |= PCI_COMMAND_MEMORY;
1485 }
1486 if (cmd != old_cmd) {
1487 printk("PCI: Enabling device %s (%04x -> %04x)\n",
1488 pci_name(dev), old_cmd, cmd);
1489 pci_write_config_word(dev, PCI_COMMAND, cmd);
1490 }
1491 return 0;
1492}
1493
1494struct pci_controller*
1495pci_bus_to_hose(int bus)
1496{
1497 struct pci_controller* hose = hose_head;
1498
1499 for (; hose; hose = hose->next)
1500 if (bus >= hose->first_busno && bus <= hose->last_busno)
1501 return hose;
1502 return NULL;
1503}
1504
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001505static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001506 resource_size_t *offset,
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001507 enum pci_mmap_state mmap_state)
1508{
1509 struct pci_controller *hose = pci_bus_to_hose(dev->bus->number);
1510 unsigned long io_offset = 0;
1511 int i, res_bit;
1512
1513 if (hose == 0)
1514 return NULL; /* should never happen */
1515
1516 /* If memory, add on the PCI bridge address offset */
1517 if (mmap_state == pci_mmap_mem) {
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001518#if 0 /* See comment in pci_resource_to_user() for why this is disabled */
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001519 *offset += hose->pci_mem_offset;
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001520#endif
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001521 res_bit = IORESOURCE_MEM;
1522 } else {
Benjamin Herrenschmidt68a64352006-11-13 09:27:39 +11001523 io_offset = hose->io_base_virt - (void __iomem *)_IO_BASE;
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001524 *offset += io_offset;
1525 res_bit = IORESOURCE_IO;
1526 }
1527
1528 /*
1529 * Check that the offset requested corresponds to one of the
1530 * resources of the device.
1531 */
1532 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
1533 struct resource *rp = &dev->resource[i];
1534 int flags = rp->flags;
1535
1536 /* treat ROM as memory (should be already) */
1537 if (i == PCI_ROM_RESOURCE)
1538 flags |= IORESOURCE_MEM;
1539
1540 /* Active and same type? */
1541 if ((flags & res_bit) == 0)
1542 continue;
1543
1544 /* In the range of this resource? */
1545 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
1546 continue;
1547
1548 /* found it! construct the final physical address */
1549 if (mmap_state == pci_mmap_io)
1550 *offset += hose->io_base_phys - io_offset;
1551 return rp;
1552 }
1553
1554 return NULL;
1555}
1556
1557/*
1558 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
1559 * device mapping.
1560 */
1561static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
1562 pgprot_t protection,
1563 enum pci_mmap_state mmap_state,
1564 int write_combine)
1565{
1566 unsigned long prot = pgprot_val(protection);
1567
1568 /* Write combine is always 0 on non-memory space mappings. On
1569 * memory space, if the user didn't pass 1, we check for a
1570 * "prefetchable" resource. This is a bit hackish, but we use
1571 * this to workaround the inability of /sysfs to provide a write
1572 * combine bit
1573 */
1574 if (mmap_state != pci_mmap_mem)
1575 write_combine = 0;
1576 else if (write_combine == 0) {
1577 if (rp->flags & IORESOURCE_PREFETCH)
1578 write_combine = 1;
1579 }
1580
1581 /* XXX would be nice to have a way to ask for write-through */
1582 prot |= _PAGE_NO_CACHE;
1583 if (write_combine)
1584 prot &= ~_PAGE_GUARDED;
1585 else
1586 prot |= _PAGE_GUARDED;
1587
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001588 return __pgprot(prot);
1589}
1590
1591/*
1592 * This one is used by /dev/mem and fbdev who have no clue about the
1593 * PCI device, it tries to find the PCI device first and calls the
1594 * above routine
1595 */
1596pgprot_t pci_phys_mem_access_prot(struct file *file,
1597 unsigned long pfn,
1598 unsigned long size,
1599 pgprot_t protection)
1600{
1601 struct pci_dev *pdev = NULL;
1602 struct resource *found = NULL;
1603 unsigned long prot = pgprot_val(protection);
1604 unsigned long offset = pfn << PAGE_SHIFT;
1605 int i;
1606
1607 if (page_is_ram(pfn))
David Gibson69d48b42007-04-30 15:37:06 +10001608 return __pgprot(prot);
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001609
1610 prot |= _PAGE_NO_CACHE | _PAGE_GUARDED;
1611
1612 for_each_pci_dev(pdev) {
1613 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
1614 struct resource *rp = &pdev->resource[i];
1615 int flags = rp->flags;
1616
1617 /* Active and same type? */
1618 if ((flags & IORESOURCE_MEM) == 0)
1619 continue;
1620 /* In the range of this resource? */
1621 if (offset < (rp->start & PAGE_MASK) ||
1622 offset > rp->end)
1623 continue;
1624 found = rp;
1625 break;
1626 }
1627 if (found)
1628 break;
1629 }
1630 if (found) {
1631 if (found->flags & IORESOURCE_PREFETCH)
1632 prot &= ~_PAGE_GUARDED;
1633 pci_dev_put(pdev);
1634 }
1635
1636 DBG("non-PCI map for %lx, prot: %lx\n", offset, prot);
1637
1638 return __pgprot(prot);
1639}
1640
1641
1642/*
1643 * Perform the actual remap of the pages for a PCI device mapping, as
1644 * appropriate for this architecture. The region in the process to map
1645 * is described by vm_start and vm_end members of VMA, the base physical
1646 * address is found in vm_pgoff.
1647 * The pci device structure is provided so that architectures may make mapping
1648 * decisions on a per-device or per-bus basis.
1649 *
1650 * Returns a negative error code on failure, zero on success.
1651 */
1652int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
1653 enum pci_mmap_state mmap_state,
1654 int write_combine)
1655{
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001656 resource_size_t offset = vma->vm_pgoff << PAGE_SHIFT;
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001657 struct resource *rp;
1658 int ret;
1659
1660 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
1661 if (rp == NULL)
1662 return -EINVAL;
1663
1664 vma->vm_pgoff = offset >> PAGE_SHIFT;
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001665 vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
1666 vma->vm_page_prot,
1667 mmap_state, write_combine);
1668
1669 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
1670 vma->vm_end - vma->vm_start, vma->vm_page_prot);
1671
1672 return ret;
1673}
1674
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001675/* Provide information on locations of various I/O regions in physical
1676 * memory. Do this on a per-card basis so that we choose the right
1677 * root bridge.
1678 * Note that the returned IO or memory base is a physical address
1679 */
1680
1681long sys_pciconfig_iobase(long which, unsigned long bus, unsigned long devfn)
1682{
1683 struct pci_controller* hose;
1684 long result = -EOPNOTSUPP;
1685
1686 /* Argh ! Please forgive me for that hack, but that's the
1687 * simplest way to get existing XFree to not lockup on some
1688 * G5 machines... So when something asks for bus 0 io base
1689 * (bus 0 is HT root), we return the AGP one instead.
1690 */
1691#ifdef CONFIG_PPC_PMAC
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001692 if (machine_is(powermac) && machine_is_compatible("MacRISC4"))
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001693 if (bus == 0)
1694 bus = 0xf0;
1695#endif /* CONFIG_PPC_PMAC */
1696
1697 hose = pci_bus_to_hose(bus);
1698 if (!hose)
1699 return -ENODEV;
1700
1701 switch (which) {
1702 case IOBASE_BRIDGE_NUMBER:
1703 return (long)hose->first_busno;
1704 case IOBASE_MEMORY:
1705 return (long)hose->pci_mem_offset;
1706 case IOBASE_IO:
1707 return (long)hose->io_base_phys;
1708 case IOBASE_ISA_IO:
1709 return (long)isa_io_base;
1710 case IOBASE_ISA_MEM:
1711 return (long)isa_mem_base;
1712 }
1713
1714 return result;
1715}
1716
1717void pci_resource_to_user(const struct pci_dev *dev, int bar,
1718 const struct resource *rsrc,
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -07001719 resource_size_t *start, resource_size_t *end)
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001720{
1721 struct pci_controller *hose = pci_bus_to_hose(dev->bus->number);
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001722 resource_size_t offset = 0;
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001723
1724 if (hose == NULL)
1725 return;
1726
1727 if (rsrc->flags & IORESOURCE_IO)
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001728 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001729
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001730 /* We pass a fully fixed up address to userland for MMIO instead of
1731 * a BAR value because X is lame and expects to be able to use that
1732 * to pass to /dev/mem !
1733 *
1734 * That means that we'll have potentially 64 bits values where some
1735 * userland apps only expect 32 (like X itself since it thinks only
1736 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
1737 * 32 bits CHRPs :-(
1738 *
1739 * Hopefully, the sysfs insterface is immune to that gunk. Once X
1740 * has been fixed (and the fix spread enough), we can re-enable the
1741 * 2 lines below and pass down a BAR value to userland. In that case
1742 * we'll also have to re-enable the matching code in
1743 * __pci_mmap_make_offset().
1744 *
1745 * BenH.
1746 */
1747#if 0
1748 else if (rsrc->flags & IORESOURCE_MEM)
1749 offset = hose->pci_mem_offset;
1750#endif
1751
1752 *start = rsrc->start - offset;
1753 *end = rsrc->end - offset;
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001754}
1755
Paul Mackerrase05b3b42006-01-15 22:05:47 +11001756unsigned long pci_address_to_pio(phys_addr_t address)
1757{
1758 struct pci_controller* hose = hose_head;
1759
1760 for (; hose; hose = hose->next) {
1761 unsigned int size = hose->io_resource.end -
1762 hose->io_resource.start + 1;
1763 if (address >= hose->io_base_phys &&
1764 address < (hose->io_base_phys + size)) {
1765 unsigned long base =
1766 (unsigned long)hose->io_base_virt - _IO_BASE;
1767 return base + (address - hose->io_base_phys);
1768 }
1769 }
1770 return (unsigned int)-1;
1771}
1772EXPORT_SYMBOL(pci_address_to_pio);
1773
1774/*
1775 * Null PCI config access functions, for the case when we can't
1776 * find a hose.
1777 */
1778#define NULL_PCI_OP(rw, size, type) \
1779static int \
1780null_##rw##_config_##size(struct pci_dev *dev, int offset, type val) \
1781{ \
1782 return PCIBIOS_DEVICE_NOT_FOUND; \
1783}
1784
1785static int
1786null_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
1787 int len, u32 *val)
1788{
1789 return PCIBIOS_DEVICE_NOT_FOUND;
1790}
1791
1792static int
1793null_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
1794 int len, u32 val)
1795{
1796 return PCIBIOS_DEVICE_NOT_FOUND;
1797}
1798
1799static struct pci_ops null_pci_ops =
1800{
1801 null_read_config,
1802 null_write_config
1803};
1804
1805/*
1806 * These functions are used early on before PCI scanning is done
1807 * and all of the pci_dev and pci_bus structures have been created.
1808 */
1809static struct pci_bus *
1810fake_pci_bus(struct pci_controller *hose, int busnr)
1811{
1812 static struct pci_bus bus;
1813
1814 if (hose == 0) {
1815 hose = pci_bus_to_hose(busnr);
1816 if (hose == 0)
1817 printk(KERN_ERR "Can't find hose for PCI bus %d!\n", busnr);
1818 }
1819 bus.number = busnr;
1820 bus.sysdata = hose;
1821 bus.ops = hose? hose->ops: &null_pci_ops;
1822 return &bus;
1823}
1824
1825#define EARLY_PCI_OP(rw, size, type) \
1826int early_##rw##_config_##size(struct pci_controller *hose, int bus, \
1827 int devfn, int offset, type value) \
1828{ \
1829 return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus), \
1830 devfn, offset, value); \
1831}
1832
1833EARLY_PCI_OP(read, byte, u8 *)
1834EARLY_PCI_OP(read, word, u16 *)
1835EARLY_PCI_OP(read, dword, u32 *)
1836EARLY_PCI_OP(write, byte, u8)
1837EARLY_PCI_OP(write, word, u16)
1838EARLY_PCI_OP(write, dword, u32)