1a32db331a5c0aa576d04d717c998ae2b460f367
[deliverable/linux.git] / arch / powerpc / kernel / pci-common.c
1 /*
2 * Contains common pci routines for ALL ppc platform
3 * (based on pci_32.c and pci_64.c)
4 *
5 * Port for PPC64 David Engebretsen, IBM Corp.
6 * Contains common pci routines for ppc64 platform, pSeries and iSeries brands.
7 *
8 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
9 * Rework, based on alpha PCI code.
10 *
11 * Common pmac/prep/chrp pci routines. -- Cort
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version
16 * 2 of the License, or (at your option) any later version.
17 */
18
19 #undef DEBUG
20
21 #include <linux/kernel.h>
22 #include <linux/pci.h>
23 #include <linux/string.h>
24 #include <linux/init.h>
25 #include <linux/bootmem.h>
26 #include <linux/mm.h>
27 #include <linux/list.h>
28 #include <linux/syscalls.h>
29 #include <linux/irq.h>
30 #include <linux/vmalloc.h>
31
32 #include <asm/processor.h>
33 #include <asm/io.h>
34 #include <asm/prom.h>
35 #include <asm/pci-bridge.h>
36 #include <asm/byteorder.h>
37 #include <asm/machdep.h>
38 #include <asm/ppc-pci.h>
39 #include <asm/firmware.h>
40 #include <asm/eeh.h>
41
42 static DEFINE_SPINLOCK(hose_spinlock);
43
44 /* XXX kill that some day ... */
45 static int global_phb_number; /* Global phb counter */
46
47 /* ISA Memory physical address */
48 resource_size_t isa_mem_base;
49
50 /* Default PCI flags is 0 on ppc32, modified at boot on ppc64 */
51 unsigned int ppc_pci_flags = 0;
52
53
54 static struct dma_mapping_ops *pci_dma_ops;
55
56 void set_pci_dma_ops(struct dma_mapping_ops *dma_ops)
57 {
58 pci_dma_ops = dma_ops;
59 }
60
61 struct dma_mapping_ops *get_pci_dma_ops(void)
62 {
63 return pci_dma_ops;
64 }
65 EXPORT_SYMBOL(get_pci_dma_ops);
66
67 int pci_set_dma_mask(struct pci_dev *dev, u64 mask)
68 {
69 return dma_set_mask(&dev->dev, mask);
70 }
71
72 int pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
73 {
74 int rc;
75
76 rc = dma_set_mask(&dev->dev, mask);
77 dev->dev.coherent_dma_mask = dev->dma_mask;
78
79 return rc;
80 }
81
82 struct pci_controller *pcibios_alloc_controller(struct device_node *dev)
83 {
84 struct pci_controller *phb;
85
86 phb = zalloc_maybe_bootmem(sizeof(struct pci_controller), GFP_KERNEL);
87 if (phb == NULL)
88 return NULL;
89 spin_lock(&hose_spinlock);
90 phb->global_number = global_phb_number++;
91 list_add_tail(&phb->list_node, &hose_list);
92 spin_unlock(&hose_spinlock);
93 phb->dn = dev;
94 phb->is_dynamic = mem_init_done;
95 #ifdef CONFIG_PPC64
96 if (dev) {
97 int nid = of_node_to_nid(dev);
98
99 if (nid < 0 || !node_online(nid))
100 nid = -1;
101
102 PHB_SET_NODE(phb, nid);
103 }
104 #endif
105 return phb;
106 }
107
108 void pcibios_free_controller(struct pci_controller *phb)
109 {
110 spin_lock(&hose_spinlock);
111 list_del(&phb->list_node);
112 spin_unlock(&hose_spinlock);
113
114 if (phb->is_dynamic)
115 kfree(phb);
116 }
117
118 int pcibios_vaddr_is_ioport(void __iomem *address)
119 {
120 int ret = 0;
121 struct pci_controller *hose;
122 unsigned long size;
123
124 spin_lock(&hose_spinlock);
125 list_for_each_entry(hose, &hose_list, list_node) {
126 #ifdef CONFIG_PPC64
127 size = hose->pci_io_size;
128 #else
129 size = hose->io_resource.end - hose->io_resource.start + 1;
130 #endif
131 if (address >= hose->io_base_virt &&
132 address < (hose->io_base_virt + size)) {
133 ret = 1;
134 break;
135 }
136 }
137 spin_unlock(&hose_spinlock);
138 return ret;
139 }
140
141 /*
142 * Return the domain number for this bus.
143 */
144 int pci_domain_nr(struct pci_bus *bus)
145 {
146 struct pci_controller *hose = pci_bus_to_host(bus);
147
148 return hose->global_number;
149 }
150 EXPORT_SYMBOL(pci_domain_nr);
151
152 #ifdef CONFIG_PPC_OF
153
154 /* This routine is meant to be used early during boot, when the
155 * PCI bus numbers have not yet been assigned, and you need to
156 * issue PCI config cycles to an OF device.
157 * It could also be used to "fix" RTAS config cycles if you want
158 * to set pci_assign_all_buses to 1 and still use RTAS for PCI
159 * config cycles.
160 */
161 struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
162 {
163 while(node) {
164 struct pci_controller *hose, *tmp;
165 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
166 if (hose->dn == node)
167 return hose;
168 node = node->parent;
169 }
170 return NULL;
171 }
172
173 static ssize_t pci_show_devspec(struct device *dev,
174 struct device_attribute *attr, char *buf)
175 {
176 struct pci_dev *pdev;
177 struct device_node *np;
178
179 pdev = to_pci_dev (dev);
180 np = pci_device_to_OF_node(pdev);
181 if (np == NULL || np->full_name == NULL)
182 return 0;
183 return sprintf(buf, "%s", np->full_name);
184 }
185 static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
186 #endif /* CONFIG_PPC_OF */
187
188 /* Add sysfs properties */
189 int pcibios_add_platform_entries(struct pci_dev *pdev)
190 {
191 #ifdef CONFIG_PPC_OF
192 return device_create_file(&pdev->dev, &dev_attr_devspec);
193 #else
194 return 0;
195 #endif /* CONFIG_PPC_OF */
196
197 }
198
199 char __devinit *pcibios_setup(char *str)
200 {
201 return str;
202 }
203
204 /*
205 * Reads the interrupt pin to determine if interrupt is use by card.
206 * If the interrupt is used, then gets the interrupt line from the
207 * openfirmware and sets it in the pci_dev and pci_config line.
208 */
209 int pci_read_irq_line(struct pci_dev *pci_dev)
210 {
211 struct of_irq oirq;
212 unsigned int virq;
213
214 /* The current device-tree that iSeries generates from the HV
215 * PCI informations doesn't contain proper interrupt routing,
216 * and all the fallback would do is print out crap, so we
217 * don't attempt to resolve the interrupts here at all, some
218 * iSeries specific fixup does it.
219 *
220 * In the long run, we will hopefully fix the generated device-tree
221 * instead.
222 */
223 #ifdef CONFIG_PPC_ISERIES
224 if (firmware_has_feature(FW_FEATURE_ISERIES))
225 return -1;
226 #endif
227
228 pr_debug("PCI: Try to map irq for %s...\n", pci_name(pci_dev));
229
230 #ifdef DEBUG
231 memset(&oirq, 0xff, sizeof(oirq));
232 #endif
233 /* Try to get a mapping from the device-tree */
234 if (of_irq_map_pci(pci_dev, &oirq)) {
235 u8 line, pin;
236
237 /* If that fails, lets fallback to what is in the config
238 * space and map that through the default controller. We
239 * also set the type to level low since that's what PCI
240 * interrupts are. If your platform does differently, then
241 * either provide a proper interrupt tree or don't use this
242 * function.
243 */
244 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
245 return -1;
246 if (pin == 0)
247 return -1;
248 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
249 line == 0xff || line == 0) {
250 return -1;
251 }
252 pr_debug(" No map ! Using line %d (pin %d) from PCI config\n",
253 line, pin);
254
255 virq = irq_create_mapping(NULL, line);
256 if (virq != NO_IRQ)
257 set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
258 } else {
259 pr_debug(" Got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
260 oirq.size, oirq.specifier[0], oirq.specifier[1],
261 oirq.controller->full_name);
262
263 virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
264 oirq.size);
265 }
266 if(virq == NO_IRQ) {
267 pr_debug(" Failed to map !\n");
268 return -1;
269 }
270
271 pr_debug(" Mapped to linux irq %d\n", virq);
272
273 pci_dev->irq = virq;
274
275 return 0;
276 }
277 EXPORT_SYMBOL(pci_read_irq_line);
278
279 /*
280 * Platform support for /proc/bus/pci/X/Y mmap()s,
281 * modelled on the sparc64 implementation by Dave Miller.
282 * -- paulus.
283 */
284
285 /*
286 * Adjust vm_pgoff of VMA such that it is the physical page offset
287 * corresponding to the 32-bit pci bus offset for DEV requested by the user.
288 *
289 * Basically, the user finds the base address for his device which he wishes
290 * to mmap. They read the 32-bit value from the config space base register,
291 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
292 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
293 *
294 * Returns negative error code on failure, zero on success.
295 */
296 static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
297 resource_size_t *offset,
298 enum pci_mmap_state mmap_state)
299 {
300 struct pci_controller *hose = pci_bus_to_host(dev->bus);
301 unsigned long io_offset = 0;
302 int i, res_bit;
303
304 if (hose == 0)
305 return NULL; /* should never happen */
306
307 /* If memory, add on the PCI bridge address offset */
308 if (mmap_state == pci_mmap_mem) {
309 #if 0 /* See comment in pci_resource_to_user() for why this is disabled */
310 *offset += hose->pci_mem_offset;
311 #endif
312 res_bit = IORESOURCE_MEM;
313 } else {
314 io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
315 *offset += io_offset;
316 res_bit = IORESOURCE_IO;
317 }
318
319 /*
320 * Check that the offset requested corresponds to one of the
321 * resources of the device.
322 */
323 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
324 struct resource *rp = &dev->resource[i];
325 int flags = rp->flags;
326
327 /* treat ROM as memory (should be already) */
328 if (i == PCI_ROM_RESOURCE)
329 flags |= IORESOURCE_MEM;
330
331 /* Active and same type? */
332 if ((flags & res_bit) == 0)
333 continue;
334
335 /* In the range of this resource? */
336 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
337 continue;
338
339 /* found it! construct the final physical address */
340 if (mmap_state == pci_mmap_io)
341 *offset += hose->io_base_phys - io_offset;
342 return rp;
343 }
344
345 return NULL;
346 }
347
348 /*
349 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
350 * device mapping.
351 */
352 static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
353 pgprot_t protection,
354 enum pci_mmap_state mmap_state,
355 int write_combine)
356 {
357 unsigned long prot = pgprot_val(protection);
358
359 /* Write combine is always 0 on non-memory space mappings. On
360 * memory space, if the user didn't pass 1, we check for a
361 * "prefetchable" resource. This is a bit hackish, but we use
362 * this to workaround the inability of /sysfs to provide a write
363 * combine bit
364 */
365 if (mmap_state != pci_mmap_mem)
366 write_combine = 0;
367 else if (write_combine == 0) {
368 if (rp->flags & IORESOURCE_PREFETCH)
369 write_combine = 1;
370 }
371
372 /* XXX would be nice to have a way to ask for write-through */
373 prot |= _PAGE_NO_CACHE;
374 if (write_combine)
375 prot &= ~_PAGE_GUARDED;
376 else
377 prot |= _PAGE_GUARDED;
378
379 return __pgprot(prot);
380 }
381
382 /*
383 * This one is used by /dev/mem and fbdev who have no clue about the
384 * PCI device, it tries to find the PCI device first and calls the
385 * above routine
386 */
387 pgprot_t pci_phys_mem_access_prot(struct file *file,
388 unsigned long pfn,
389 unsigned long size,
390 pgprot_t protection)
391 {
392 struct pci_dev *pdev = NULL;
393 struct resource *found = NULL;
394 unsigned long prot = pgprot_val(protection);
395 resource_size_t offset = ((resource_size_t)pfn) << PAGE_SHIFT;
396 int i;
397
398 if (page_is_ram(pfn))
399 return __pgprot(prot);
400
401 prot |= _PAGE_NO_CACHE | _PAGE_GUARDED;
402
403 for_each_pci_dev(pdev) {
404 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
405 struct resource *rp = &pdev->resource[i];
406 int flags = rp->flags;
407
408 /* Active and same type? */
409 if ((flags & IORESOURCE_MEM) == 0)
410 continue;
411 /* In the range of this resource? */
412 if (offset < (rp->start & PAGE_MASK) ||
413 offset > rp->end)
414 continue;
415 found = rp;
416 break;
417 }
418 if (found)
419 break;
420 }
421 if (found) {
422 if (found->flags & IORESOURCE_PREFETCH)
423 prot &= ~_PAGE_GUARDED;
424 pci_dev_put(pdev);
425 }
426
427 pr_debug("PCI: Non-PCI map for %llx, prot: %lx\n",
428 (unsigned long long)offset, prot);
429
430 return __pgprot(prot);
431 }
432
433
434 /*
435 * Perform the actual remap of the pages for a PCI device mapping, as
436 * appropriate for this architecture. The region in the process to map
437 * is described by vm_start and vm_end members of VMA, the base physical
438 * address is found in vm_pgoff.
439 * The pci device structure is provided so that architectures may make mapping
440 * decisions on a per-device or per-bus basis.
441 *
442 * Returns a negative error code on failure, zero on success.
443 */
444 int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
445 enum pci_mmap_state mmap_state, int write_combine)
446 {
447 resource_size_t offset =
448 ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
449 struct resource *rp;
450 int ret;
451
452 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
453 if (rp == NULL)
454 return -EINVAL;
455
456 vma->vm_pgoff = offset >> PAGE_SHIFT;
457 vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
458 vma->vm_page_prot,
459 mmap_state, write_combine);
460
461 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
462 vma->vm_end - vma->vm_start, vma->vm_page_prot);
463
464 return ret;
465 }
466
467 /* This provides legacy IO read access on a bus */
468 int pci_legacy_read(struct pci_bus *bus, loff_t port, u32 *val, size_t size)
469 {
470 unsigned long offset;
471 struct pci_controller *hose = pci_bus_to_host(bus);
472 struct resource *rp = &hose->io_resource;
473 void __iomem *addr;
474
475 /* Check if port can be supported by that bus. We only check
476 * the ranges of the PHB though, not the bus itself as the rules
477 * for forwarding legacy cycles down bridges are not our problem
478 * here. So if the host bridge supports it, we do it.
479 */
480 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
481 offset += port;
482
483 if (!(rp->flags & IORESOURCE_IO))
484 return -ENXIO;
485 if (offset < rp->start || (offset + size) > rp->end)
486 return -ENXIO;
487 addr = hose->io_base_virt + port;
488
489 switch(size) {
490 case 1:
491 *((u8 *)val) = in_8(addr);
492 return 1;
493 case 2:
494 if (port & 1)
495 return -EINVAL;
496 *((u16 *)val) = in_le16(addr);
497 return 2;
498 case 4:
499 if (port & 3)
500 return -EINVAL;
501 *((u32 *)val) = in_le32(addr);
502 return 4;
503 }
504 return -EINVAL;
505 }
506
507 /* This provides legacy IO write access on a bus */
508 int pci_legacy_write(struct pci_bus *bus, loff_t port, u32 val, size_t size)
509 {
510 unsigned long offset;
511 struct pci_controller *hose = pci_bus_to_host(bus);
512 struct resource *rp = &hose->io_resource;
513 void __iomem *addr;
514
515 /* Check if port can be supported by that bus. We only check
516 * the ranges of the PHB though, not the bus itself as the rules
517 * for forwarding legacy cycles down bridges are not our problem
518 * here. So if the host bridge supports it, we do it.
519 */
520 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
521 offset += port;
522
523 if (!(rp->flags & IORESOURCE_IO))
524 return -ENXIO;
525 if (offset < rp->start || (offset + size) > rp->end)
526 return -ENXIO;
527 addr = hose->io_base_virt + port;
528
529 /* WARNING: The generic code is idiotic. It gets passed a pointer
530 * to what can be a 1, 2 or 4 byte quantity and always reads that
531 * as a u32, which means that we have to correct the location of
532 * the data read within those 32 bits for size 1 and 2
533 */
534 switch(size) {
535 case 1:
536 out_8(addr, val >> 24);
537 return 1;
538 case 2:
539 if (port & 1)
540 return -EINVAL;
541 out_le16(addr, val >> 16);
542 return 2;
543 case 4:
544 if (port & 3)
545 return -EINVAL;
546 out_le32(addr, val);
547 return 4;
548 }
549 return -EINVAL;
550 }
551
552 /* This provides legacy IO or memory mmap access on a bus */
553 int pci_mmap_legacy_page_range(struct pci_bus *bus,
554 struct vm_area_struct *vma,
555 enum pci_mmap_state mmap_state)
556 {
557 struct pci_controller *hose = pci_bus_to_host(bus);
558 resource_size_t offset =
559 ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
560 resource_size_t size = vma->vm_end - vma->vm_start;
561 struct resource *rp;
562
563 pr_debug("pci_mmap_legacy_page_range(%04x:%02x, %s @%llx..%llx)\n",
564 pci_domain_nr(bus), bus->number,
565 mmap_state == pci_mmap_mem ? "MEM" : "IO",
566 (unsigned long long)offset,
567 (unsigned long long)(offset + size - 1));
568
569 if (mmap_state == pci_mmap_mem) {
570 if ((offset + size) > hose->isa_mem_size)
571 return -ENXIO;
572 offset += hose->isa_mem_phys;
573 } else {
574 unsigned long io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
575 unsigned long roffset = offset + io_offset;
576 rp = &hose->io_resource;
577 if (!(rp->flags & IORESOURCE_IO))
578 return -ENXIO;
579 if (roffset < rp->start || (roffset + size) > rp->end)
580 return -ENXIO;
581 offset += hose->io_base_phys;
582 }
583 pr_debug(" -> mapping phys %llx\n", (unsigned long long)offset);
584
585 vma->vm_pgoff = offset >> PAGE_SHIFT;
586 vma->vm_page_prot = __pgprot(pgprot_val(vma->vm_page_prot)
587 | _PAGE_NO_CACHE | _PAGE_GUARDED);
588 return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
589 vma->vm_end - vma->vm_start,
590 vma->vm_page_prot);
591 }
592
593 void pci_resource_to_user(const struct pci_dev *dev, int bar,
594 const struct resource *rsrc,
595 resource_size_t *start, resource_size_t *end)
596 {
597 struct pci_controller *hose = pci_bus_to_host(dev->bus);
598 resource_size_t offset = 0;
599
600 if (hose == NULL)
601 return;
602
603 if (rsrc->flags & IORESOURCE_IO)
604 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
605
606 /* We pass a fully fixed up address to userland for MMIO instead of
607 * a BAR value because X is lame and expects to be able to use that
608 * to pass to /dev/mem !
609 *
610 * That means that we'll have potentially 64 bits values where some
611 * userland apps only expect 32 (like X itself since it thinks only
612 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
613 * 32 bits CHRPs :-(
614 *
615 * Hopefully, the sysfs insterface is immune to that gunk. Once X
616 * has been fixed (and the fix spread enough), we can re-enable the
617 * 2 lines below and pass down a BAR value to userland. In that case
618 * we'll also have to re-enable the matching code in
619 * __pci_mmap_make_offset().
620 *
621 * BenH.
622 */
623 #if 0
624 else if (rsrc->flags & IORESOURCE_MEM)
625 offset = hose->pci_mem_offset;
626 #endif
627
628 *start = rsrc->start - offset;
629 *end = rsrc->end - offset;
630 }
631
632 /**
633 * pci_process_bridge_OF_ranges - Parse PCI bridge resources from device tree
634 * @hose: newly allocated pci_controller to be setup
635 * @dev: device node of the host bridge
636 * @primary: set if primary bus (32 bits only, soon to be deprecated)
637 *
638 * This function will parse the "ranges" property of a PCI host bridge device
639 * node and setup the resource mapping of a pci controller based on its
640 * content.
641 *
642 * Life would be boring if it wasn't for a few issues that we have to deal
643 * with here:
644 *
645 * - We can only cope with one IO space range and up to 3 Memory space
646 * ranges. However, some machines (thanks Apple !) tend to split their
647 * space into lots of small contiguous ranges. So we have to coalesce.
648 *
649 * - We can only cope with all memory ranges having the same offset
650 * between CPU addresses and PCI addresses. Unfortunately, some bridges
651 * are setup for a large 1:1 mapping along with a small "window" which
652 * maps PCI address 0 to some arbitrary high address of the CPU space in
653 * order to give access to the ISA memory hole.
654 * The way out of here that I've chosen for now is to always set the
655 * offset based on the first resource found, then override it if we
656 * have a different offset and the previous was set by an ISA hole.
657 *
658 * - Some busses have IO space not starting at 0, which causes trouble with
659 * the way we do our IO resource renumbering. The code somewhat deals with
660 * it for 64 bits but I would expect problems on 32 bits.
661 *
662 * - Some 32 bits platforms such as 4xx can have physical space larger than
663 * 32 bits so we need to use 64 bits values for the parsing
664 */
665 void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,
666 struct device_node *dev,
667 int primary)
668 {
669 const u32 *ranges;
670 int rlen;
671 int pna = of_n_addr_cells(dev);
672 int np = pna + 5;
673 int memno = 0, isa_hole = -1;
674 u32 pci_space;
675 unsigned long long pci_addr, cpu_addr, pci_next, cpu_next, size;
676 unsigned long long isa_mb = 0;
677 struct resource *res;
678
679 printk(KERN_INFO "PCI host bridge %s %s ranges:\n",
680 dev->full_name, primary ? "(primary)" : "");
681
682 /* Get ranges property */
683 ranges = of_get_property(dev, "ranges", &rlen);
684 if (ranges == NULL)
685 return;
686
687 /* Parse it */
688 while ((rlen -= np * 4) >= 0) {
689 /* Read next ranges element */
690 pci_space = ranges[0];
691 pci_addr = of_read_number(ranges + 1, 2);
692 cpu_addr = of_translate_address(dev, ranges + 3);
693 size = of_read_number(ranges + pna + 3, 2);
694 ranges += np;
695
696 /* If we failed translation or got a zero-sized region
697 * (some FW try to feed us with non sensical zero sized regions
698 * such as power3 which look like some kind of attempt at exposing
699 * the VGA memory hole)
700 */
701 if (cpu_addr == OF_BAD_ADDR || size == 0)
702 continue;
703
704 /* Now consume following elements while they are contiguous */
705 for (; rlen >= np * sizeof(u32);
706 ranges += np, rlen -= np * 4) {
707 if (ranges[0] != pci_space)
708 break;
709 pci_next = of_read_number(ranges + 1, 2);
710 cpu_next = of_translate_address(dev, ranges + 3);
711 if (pci_next != pci_addr + size ||
712 cpu_next != cpu_addr + size)
713 break;
714 size += of_read_number(ranges + pna + 3, 2);
715 }
716
717 /* Act based on address space type */
718 res = NULL;
719 switch ((pci_space >> 24) & 0x3) {
720 case 1: /* PCI IO space */
721 printk(KERN_INFO
722 " IO 0x%016llx..0x%016llx -> 0x%016llx\n",
723 cpu_addr, cpu_addr + size - 1, pci_addr);
724
725 /* We support only one IO range */
726 if (hose->pci_io_size) {
727 printk(KERN_INFO
728 " \\--> Skipped (too many) !\n");
729 continue;
730 }
731 #ifdef CONFIG_PPC32
732 /* On 32 bits, limit I/O space to 16MB */
733 if (size > 0x01000000)
734 size = 0x01000000;
735
736 /* 32 bits needs to map IOs here */
737 hose->io_base_virt = ioremap(cpu_addr, size);
738
739 /* Expect trouble if pci_addr is not 0 */
740 if (primary)
741 isa_io_base =
742 (unsigned long)hose->io_base_virt;
743 #endif /* CONFIG_PPC32 */
744 /* pci_io_size and io_base_phys always represent IO
745 * space starting at 0 so we factor in pci_addr
746 */
747 hose->pci_io_size = pci_addr + size;
748 hose->io_base_phys = cpu_addr - pci_addr;
749
750 /* Build resource */
751 res = &hose->io_resource;
752 res->flags = IORESOURCE_IO;
753 res->start = pci_addr;
754 break;
755 case 2: /* PCI Memory space */
756 case 3: /* PCI 64 bits Memory space */
757 printk(KERN_INFO
758 " MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",
759 cpu_addr, cpu_addr + size - 1, pci_addr,
760 (pci_space & 0x40000000) ? "Prefetch" : "");
761
762 /* We support only 3 memory ranges */
763 if (memno >= 3) {
764 printk(KERN_INFO
765 " \\--> Skipped (too many) !\n");
766 continue;
767 }
768 /* Handles ISA memory hole space here */
769 if (pci_addr == 0) {
770 isa_mb = cpu_addr;
771 isa_hole = memno;
772 if (primary || isa_mem_base == 0)
773 isa_mem_base = cpu_addr;
774 hose->isa_mem_phys = cpu_addr;
775 hose->isa_mem_size = size;
776 }
777
778 /* We get the PCI/Mem offset from the first range or
779 * the, current one if the offset came from an ISA
780 * hole. If they don't match, bugger.
781 */
782 if (memno == 0 ||
783 (isa_hole >= 0 && pci_addr != 0 &&
784 hose->pci_mem_offset == isa_mb))
785 hose->pci_mem_offset = cpu_addr - pci_addr;
786 else if (pci_addr != 0 &&
787 hose->pci_mem_offset != cpu_addr - pci_addr) {
788 printk(KERN_INFO
789 " \\--> Skipped (offset mismatch) !\n");
790 continue;
791 }
792
793 /* Build resource */
794 res = &hose->mem_resources[memno++];
795 res->flags = IORESOURCE_MEM;
796 if (pci_space & 0x40000000)
797 res->flags |= IORESOURCE_PREFETCH;
798 res->start = cpu_addr;
799 break;
800 }
801 if (res != NULL) {
802 res->name = dev->full_name;
803 res->end = res->start + size - 1;
804 res->parent = NULL;
805 res->sibling = NULL;
806 res->child = NULL;
807 }
808 }
809
810 /* If there's an ISA hole and the pci_mem_offset is -not- matching
811 * the ISA hole offset, then we need to remove the ISA hole from
812 * the resource list for that brige
813 */
814 if (isa_hole >= 0 && hose->pci_mem_offset != isa_mb) {
815 unsigned int next = isa_hole + 1;
816 printk(KERN_INFO " Removing ISA hole at 0x%016llx\n", isa_mb);
817 if (next < memno)
818 memmove(&hose->mem_resources[isa_hole],
819 &hose->mem_resources[next],
820 sizeof(struct resource) * (memno - next));
821 hose->mem_resources[--memno].flags = 0;
822 }
823 }
824
825 /* Decide whether to display the domain number in /proc */
826 int pci_proc_domain(struct pci_bus *bus)
827 {
828 struct pci_controller *hose = pci_bus_to_host(bus);
829
830 if (!(ppc_pci_flags & PPC_PCI_ENABLE_PROC_DOMAINS))
831 return 0;
832 if (ppc_pci_flags & PPC_PCI_COMPAT_DOMAIN_0)
833 return hose->global_number != 0;
834 return 1;
835 }
836
837 void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
838 struct resource *res)
839 {
840 resource_size_t offset = 0, mask = (resource_size_t)-1;
841 struct pci_controller *hose = pci_bus_to_host(dev->bus);
842
843 if (!hose)
844 return;
845 if (res->flags & IORESOURCE_IO) {
846 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
847 mask = 0xffffffffu;
848 } else if (res->flags & IORESOURCE_MEM)
849 offset = hose->pci_mem_offset;
850
851 region->start = (res->start - offset) & mask;
852 region->end = (res->end - offset) & mask;
853 }
854 EXPORT_SYMBOL(pcibios_resource_to_bus);
855
856 void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
857 struct pci_bus_region *region)
858 {
859 resource_size_t offset = 0, mask = (resource_size_t)-1;
860 struct pci_controller *hose = pci_bus_to_host(dev->bus);
861
862 if (!hose)
863 return;
864 if (res->flags & IORESOURCE_IO) {
865 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
866 mask = 0xffffffffu;
867 } else if (res->flags & IORESOURCE_MEM)
868 offset = hose->pci_mem_offset;
869 res->start = (region->start + offset) & mask;
870 res->end = (region->end + offset) & mask;
871 }
872 EXPORT_SYMBOL(pcibios_bus_to_resource);
873
874 /* Fixup a bus resource into a linux resource */
875 static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev)
876 {
877 struct pci_controller *hose = pci_bus_to_host(dev->bus);
878 resource_size_t offset = 0, mask = (resource_size_t)-1;
879
880 if (res->flags & IORESOURCE_IO) {
881 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
882 mask = 0xffffffffu;
883 } else if (res->flags & IORESOURCE_MEM)
884 offset = hose->pci_mem_offset;
885
886 res->start = (res->start + offset) & mask;
887 res->end = (res->end + offset) & mask;
888 }
889
890
891 /* This header fixup will do the resource fixup for all devices as they are
892 * probed, but not for bridge ranges
893 */
894 static void __devinit pcibios_fixup_resources(struct pci_dev *dev)
895 {
896 struct pci_controller *hose = pci_bus_to_host(dev->bus);
897 int i;
898
899 if (!hose) {
900 printk(KERN_ERR "No host bridge for PCI dev %s !\n",
901 pci_name(dev));
902 return;
903 }
904 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
905 struct resource *res = dev->resource + i;
906 if (!res->flags)
907 continue;
908 /* On platforms that have PPC_PCI_PROBE_ONLY set, we don't
909 * consider 0 as an unassigned BAR value. It's technically
910 * a valid value, but linux doesn't like it... so when we can
911 * re-assign things, we do so, but if we can't, we keep it
912 * around and hope for the best...
913 */
914 if (res->start == 0 && !(ppc_pci_flags & PPC_PCI_PROBE_ONLY)) {
915 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x] is unassigned\n",
916 pci_name(dev), i,
917 (unsigned long long)res->start,
918 (unsigned long long)res->end,
919 (unsigned int)res->flags);
920 res->end -= res->start;
921 res->start = 0;
922 res->flags |= IORESOURCE_UNSET;
923 continue;
924 }
925
926 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x] fixup...\n",
927 pci_name(dev), i,
928 (unsigned long long)res->start,\
929 (unsigned long long)res->end,
930 (unsigned int)res->flags);
931
932 fixup_resource(res, dev);
933
934 pr_debug("PCI:%s %016llx-%016llx\n",
935 pci_name(dev),
936 (unsigned long long)res->start,
937 (unsigned long long)res->end);
938 }
939
940 /* Call machine specific resource fixup */
941 if (ppc_md.pcibios_fixup_resources)
942 ppc_md.pcibios_fixup_resources(dev);
943 }
944 DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
945
946 /* This function tries to figure out if a bridge resource has been initialized
947 * by the firmware or not. It doesn't have to be absolutely bullet proof, but
948 * things go more smoothly when it gets it right. It should covers cases such
949 * as Apple "closed" bridge resources and bare-metal pSeries unassigned bridges
950 */
951 static int __devinit pcibios_uninitialized_bridge_resource(struct pci_bus *bus,
952 struct resource *res)
953 {
954 struct pci_controller *hose = pci_bus_to_host(bus);
955 struct pci_dev *dev = bus->self;
956 resource_size_t offset;
957 u16 command;
958 int i;
959
960 /* We don't do anything if PCI_PROBE_ONLY is set */
961 if (ppc_pci_flags & PPC_PCI_PROBE_ONLY)
962 return 0;
963
964 /* Job is a bit different between memory and IO */
965 if (res->flags & IORESOURCE_MEM) {
966 /* If the BAR is non-0 (res != pci_mem_offset) then it's probably been
967 * initialized by somebody
968 */
969 if (res->start != hose->pci_mem_offset)
970 return 0;
971
972 /* The BAR is 0, let's check if memory decoding is enabled on
973 * the bridge. If not, we consider it unassigned
974 */
975 pci_read_config_word(dev, PCI_COMMAND, &command);
976 if ((command & PCI_COMMAND_MEMORY) == 0)
977 return 1;
978
979 /* Memory decoding is enabled and the BAR is 0. If any of the bridge
980 * resources covers that starting address (0 then it's good enough for
981 * us for memory
982 */
983 for (i = 0; i < 3; i++) {
984 if ((hose->mem_resources[i].flags & IORESOURCE_MEM) &&
985 hose->mem_resources[i].start == hose->pci_mem_offset)
986 return 0;
987 }
988
989 /* Well, it starts at 0 and we know it will collide so we may as
990 * well consider it as unassigned. That covers the Apple case.
991 */
992 return 1;
993 } else {
994 /* If the BAR is non-0, then we consider it assigned */
995 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
996 if (((res->start - offset) & 0xfffffffful) != 0)
997 return 0;
998
999 /* Here, we are a bit different than memory as typically IO space
1000 * starting at low addresses -is- valid. What we do instead if that
1001 * we consider as unassigned anything that doesn't have IO enabled
1002 * in the PCI command register, and that's it.
1003 */
1004 pci_read_config_word(dev, PCI_COMMAND, &command);
1005 if (command & PCI_COMMAND_IO)
1006 return 0;
1007
1008 /* It's starting at 0 and IO is disabled in the bridge, consider
1009 * it unassigned
1010 */
1011 return 1;
1012 }
1013 }
1014
1015 /* Fixup resources of a PCI<->PCI bridge */
1016 static void __devinit pcibios_fixup_bridge(struct pci_bus *bus)
1017 {
1018 struct resource *res;
1019 int i;
1020
1021 struct pci_dev *dev = bus->self;
1022
1023 for (i = 0; i < PCI_BUS_NUM_RESOURCES; ++i) {
1024 if ((res = bus->resource[i]) == NULL)
1025 continue;
1026 if (!res->flags)
1027 continue;
1028 if (i >= 3 && bus->self->transparent)
1029 continue;
1030
1031 pr_debug("PCI:%s Bus rsrc %d %016llx-%016llx [%x] fixup...\n",
1032 pci_name(dev), i,
1033 (unsigned long long)res->start,\
1034 (unsigned long long)res->end,
1035 (unsigned int)res->flags);
1036
1037 /* Perform fixup */
1038 fixup_resource(res, dev);
1039
1040 /* Try to detect uninitialized P2P bridge resources,
1041 * and clear them out so they get re-assigned later
1042 */
1043 if (pcibios_uninitialized_bridge_resource(bus, res)) {
1044 res->flags = 0;
1045 pr_debug("PCI:%s (unassigned)\n", pci_name(dev));
1046 } else {
1047
1048 pr_debug("PCI:%s %016llx-%016llx\n",
1049 pci_name(dev),
1050 (unsigned long long)res->start,
1051 (unsigned long long)res->end);
1052 }
1053 }
1054 }
1055
1056 void __devinit pcibios_setup_bus_self(struct pci_bus *bus)
1057 {
1058 /* Fix up the bus resources for P2P bridges */
1059 if (bus->self != NULL)
1060 pcibios_fixup_bridge(bus);
1061
1062 /* Platform specific bus fixups. This is currently only used
1063 * by fsl_pci and I'm hoping to get rid of it at some point
1064 */
1065 if (ppc_md.pcibios_fixup_bus)
1066 ppc_md.pcibios_fixup_bus(bus);
1067
1068 /* Setup bus DMA mappings */
1069 if (ppc_md.pci_dma_bus_setup)
1070 ppc_md.pci_dma_bus_setup(bus);
1071 }
1072
1073 void __devinit pcibios_setup_bus_devices(struct pci_bus *bus)
1074 {
1075 struct pci_dev *dev;
1076
1077 pr_debug("PCI: Fixup bus devices %d (%s)\n",
1078 bus->number, bus->self ? pci_name(bus->self) : "PHB");
1079
1080 list_for_each_entry(dev, &bus->devices, bus_list) {
1081 struct dev_archdata *sd = &dev->dev.archdata;
1082
1083 /* Setup OF node pointer in archdata */
1084 sd->of_node = pci_device_to_OF_node(dev);
1085
1086 /* Fixup NUMA node as it may not be setup yet by the generic
1087 * code and is needed by the DMA init
1088 */
1089 set_dev_node(&dev->dev, pcibus_to_node(dev->bus));
1090
1091 /* Hook up default DMA ops */
1092 sd->dma_ops = pci_dma_ops;
1093 sd->dma_data = (void *)PCI_DRAM_OFFSET;
1094
1095 /* Additional platform DMA/iommu setup */
1096 if (ppc_md.pci_dma_dev_setup)
1097 ppc_md.pci_dma_dev_setup(dev);
1098
1099 /* Read default IRQs and fixup if necessary */
1100 pci_read_irq_line(dev);
1101 if (ppc_md.pci_irq_fixup)
1102 ppc_md.pci_irq_fixup(dev);
1103 }
1104 }
1105
1106 void __devinit pcibios_fixup_bus(struct pci_bus *bus)
1107 {
1108 /* When called from the generic PCI probe, read PCI<->PCI bridge
1109 * bases. This is -not- called when generating the PCI tree from
1110 * the OF device-tree.
1111 */
1112 if (bus->self != NULL)
1113 pci_read_bridge_bases(bus);
1114
1115 /* Now fixup the bus bus */
1116 pcibios_setup_bus_self(bus);
1117
1118 /* Now fixup devices on that bus */
1119 pcibios_setup_bus_devices(bus);
1120 }
1121 EXPORT_SYMBOL(pcibios_fixup_bus);
1122
1123 static int skip_isa_ioresource_align(struct pci_dev *dev)
1124 {
1125 if ((ppc_pci_flags & PPC_PCI_CAN_SKIP_ISA_ALIGN) &&
1126 !(dev->bus->bridge_ctl & PCI_BRIDGE_CTL_ISA))
1127 return 1;
1128 return 0;
1129 }
1130
1131 /*
1132 * We need to avoid collisions with `mirrored' VGA ports
1133 * and other strange ISA hardware, so we always want the
1134 * addresses to be allocated in the 0x000-0x0ff region
1135 * modulo 0x400.
1136 *
1137 * Why? Because some silly external IO cards only decode
1138 * the low 10 bits of the IO address. The 0x00-0xff region
1139 * is reserved for motherboard devices that decode all 16
1140 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
1141 * but we want to try to avoid allocating at 0x2900-0x2bff
1142 * which might have be mirrored at 0x0100-0x03ff..
1143 */
1144 void pcibios_align_resource(void *data, struct resource *res,
1145 resource_size_t size, resource_size_t align)
1146 {
1147 struct pci_dev *dev = data;
1148
1149 if (res->flags & IORESOURCE_IO) {
1150 resource_size_t start = res->start;
1151
1152 if (skip_isa_ioresource_align(dev))
1153 return;
1154 if (start & 0x300) {
1155 start = (start + 0x3ff) & ~0x3ff;
1156 res->start = start;
1157 }
1158 }
1159 }
1160 EXPORT_SYMBOL(pcibios_align_resource);
1161
1162 /*
1163 * Reparent resource children of pr that conflict with res
1164 * under res, and make res replace those children.
1165 */
1166 static int __init reparent_resources(struct resource *parent,
1167 struct resource *res)
1168 {
1169 struct resource *p, **pp;
1170 struct resource **firstpp = NULL;
1171
1172 for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {
1173 if (p->end < res->start)
1174 continue;
1175 if (res->end < p->start)
1176 break;
1177 if (p->start < res->start || p->end > res->end)
1178 return -1; /* not completely contained */
1179 if (firstpp == NULL)
1180 firstpp = pp;
1181 }
1182 if (firstpp == NULL)
1183 return -1; /* didn't find any conflicting entries? */
1184 res->parent = parent;
1185 res->child = *firstpp;
1186 res->sibling = *pp;
1187 *firstpp = res;
1188 *pp = NULL;
1189 for (p = res->child; p != NULL; p = p->sibling) {
1190 p->parent = res;
1191 pr_debug("PCI: Reparented %s [%llx..%llx] under %s\n",
1192 p->name,
1193 (unsigned long long)p->start,
1194 (unsigned long long)p->end, res->name);
1195 }
1196 return 0;
1197 }
1198
1199 /*
1200 * Handle resources of PCI devices. If the world were perfect, we could
1201 * just allocate all the resource regions and do nothing more. It isn't.
1202 * On the other hand, we cannot just re-allocate all devices, as it would
1203 * require us to know lots of host bridge internals. So we attempt to
1204 * keep as much of the original configuration as possible, but tweak it
1205 * when it's found to be wrong.
1206 *
1207 * Known BIOS problems we have to work around:
1208 * - I/O or memory regions not configured
1209 * - regions configured, but not enabled in the command register
1210 * - bogus I/O addresses above 64K used
1211 * - expansion ROMs left enabled (this may sound harmless, but given
1212 * the fact the PCI specs explicitly allow address decoders to be
1213 * shared between expansion ROMs and other resource regions, it's
1214 * at least dangerous)
1215 *
1216 * Our solution:
1217 * (1) Allocate resources for all buses behind PCI-to-PCI bridges.
1218 * This gives us fixed barriers on where we can allocate.
1219 * (2) Allocate resources for all enabled devices. If there is
1220 * a collision, just mark the resource as unallocated. Also
1221 * disable expansion ROMs during this step.
1222 * (3) Try to allocate resources for disabled devices. If the
1223 * resources were assigned correctly, everything goes well,
1224 * if they weren't, they won't disturb allocation of other
1225 * resources.
1226 * (4) Assign new addresses to resources which were either
1227 * not configured at all or misconfigured. If explicitly
1228 * requested by the user, configure expansion ROM address
1229 * as well.
1230 */
1231
1232 void pcibios_allocate_bus_resources(struct pci_bus *bus)
1233 {
1234 struct pci_bus *b;
1235 int i;
1236 struct resource *res, *pr;
1237
1238 pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
1239 pci_domain_nr(bus), bus->number);
1240
1241 for (i = 0; i < PCI_BUS_NUM_RESOURCES; ++i) {
1242 if ((res = bus->resource[i]) == NULL || !res->flags
1243 || res->start > res->end || res->parent)
1244 continue;
1245 if (bus->parent == NULL)
1246 pr = (res->flags & IORESOURCE_IO) ?
1247 &ioport_resource : &iomem_resource;
1248 else {
1249 /* Don't bother with non-root busses when
1250 * re-assigning all resources. We clear the
1251 * resource flags as if they were colliding
1252 * and as such ensure proper re-allocation
1253 * later.
1254 */
1255 if (ppc_pci_flags & PPC_PCI_REASSIGN_ALL_RSRC)
1256 goto clear_resource;
1257 pr = pci_find_parent_resource(bus->self, res);
1258 if (pr == res) {
1259 /* this happens when the generic PCI
1260 * code (wrongly) decides that this
1261 * bridge is transparent -- paulus
1262 */
1263 continue;
1264 }
1265 }
1266
1267 pr_debug("PCI: %s (bus %d) bridge rsrc %d: %016llx-%016llx "
1268 "[0x%x], parent %p (%s)\n",
1269 bus->self ? pci_name(bus->self) : "PHB",
1270 bus->number, i,
1271 (unsigned long long)res->start,
1272 (unsigned long long)res->end,
1273 (unsigned int)res->flags,
1274 pr, (pr && pr->name) ? pr->name : "nil");
1275
1276 if (pr && !(pr->flags & IORESOURCE_UNSET)) {
1277 if (request_resource(pr, res) == 0)
1278 continue;
1279 /*
1280 * Must be a conflict with an existing entry.
1281 * Move that entry (or entries) under the
1282 * bridge resource and try again.
1283 */
1284 if (reparent_resources(pr, res) == 0)
1285 continue;
1286 }
1287 printk(KERN_WARNING "PCI: Cannot allocate resource region "
1288 "%d of PCI bridge %d, will remap\n", i, bus->number);
1289 clear_resource:
1290 res->flags = 0;
1291 }
1292
1293 list_for_each_entry(b, &bus->children, node)
1294 pcibios_allocate_bus_resources(b);
1295 }
1296
1297 static inline void __devinit alloc_resource(struct pci_dev *dev, int idx)
1298 {
1299 struct resource *pr, *r = &dev->resource[idx];
1300
1301 pr_debug("PCI: Allocating %s: Resource %d: %016llx..%016llx [%x]\n",
1302 pci_name(dev), idx,
1303 (unsigned long long)r->start,
1304 (unsigned long long)r->end,
1305 (unsigned int)r->flags);
1306
1307 pr = pci_find_parent_resource(dev, r);
1308 if (!pr || (pr->flags & IORESOURCE_UNSET) ||
1309 request_resource(pr, r) < 0) {
1310 printk(KERN_WARNING "PCI: Cannot allocate resource region %d"
1311 " of device %s, will remap\n", idx, pci_name(dev));
1312 if (pr)
1313 pr_debug("PCI: parent is %p: %016llx-%016llx [%x]\n",
1314 pr,
1315 (unsigned long long)pr->start,
1316 (unsigned long long)pr->end,
1317 (unsigned int)pr->flags);
1318 /* We'll assign a new address later */
1319 r->flags |= IORESOURCE_UNSET;
1320 r->end -= r->start;
1321 r->start = 0;
1322 }
1323 }
1324
1325 static void __init pcibios_allocate_resources(int pass)
1326 {
1327 struct pci_dev *dev = NULL;
1328 int idx, disabled;
1329 u16 command;
1330 struct resource *r;
1331
1332 for_each_pci_dev(dev) {
1333 pci_read_config_word(dev, PCI_COMMAND, &command);
1334 for (idx = 0; idx < 6; idx++) {
1335 r = &dev->resource[idx];
1336 if (r->parent) /* Already allocated */
1337 continue;
1338 if (!r->flags || (r->flags & IORESOURCE_UNSET))
1339 continue; /* Not assigned at all */
1340 if (r->flags & IORESOURCE_IO)
1341 disabled = !(command & PCI_COMMAND_IO);
1342 else
1343 disabled = !(command & PCI_COMMAND_MEMORY);
1344 if (pass == disabled)
1345 alloc_resource(dev, idx);
1346 }
1347 if (pass)
1348 continue;
1349 r = &dev->resource[PCI_ROM_RESOURCE];
1350 if (r->flags & IORESOURCE_ROM_ENABLE) {
1351 /* Turn the ROM off, leave the resource region,
1352 * but keep it unregistered.
1353 */
1354 u32 reg;
1355 pr_debug("PCI: Switching off ROM of %s\n",
1356 pci_name(dev));
1357 r->flags &= ~IORESOURCE_ROM_ENABLE;
1358 pci_read_config_dword(dev, dev->rom_base_reg, &reg);
1359 pci_write_config_dword(dev, dev->rom_base_reg,
1360 reg & ~PCI_ROM_ADDRESS_ENABLE);
1361 }
1362 }
1363 }
1364
1365 void __init pcibios_resource_survey(void)
1366 {
1367 struct pci_bus *b;
1368
1369 /* Allocate and assign resources. If we re-assign everything, then
1370 * we skip the allocate phase
1371 */
1372 list_for_each_entry(b, &pci_root_buses, node)
1373 pcibios_allocate_bus_resources(b);
1374
1375 if (!(ppc_pci_flags & PPC_PCI_REASSIGN_ALL_RSRC)) {
1376 pcibios_allocate_resources(0);
1377 pcibios_allocate_resources(1);
1378 }
1379
1380 if (!(ppc_pci_flags & PPC_PCI_PROBE_ONLY)) {
1381 pr_debug("PCI: Assigning unassigned resouces...\n");
1382 pci_assign_unassigned_resources();
1383 }
1384
1385 /* Call machine dependent fixup */
1386 if (ppc_md.pcibios_fixup)
1387 ppc_md.pcibios_fixup();
1388 }
1389
1390 #ifdef CONFIG_HOTPLUG
1391
1392 /* This is used by the PCI hotplug driver to allocate resource
1393 * of newly plugged busses. We can try to consolidate with the
1394 * rest of the code later, for now, keep it as-is as our main
1395 * resource allocation function doesn't deal with sub-trees yet.
1396 */
1397 void __devinit pcibios_claim_one_bus(struct pci_bus *bus)
1398 {
1399 struct pci_dev *dev;
1400 struct pci_bus *child_bus;
1401
1402 list_for_each_entry(dev, &bus->devices, bus_list) {
1403 int i;
1404
1405 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1406 struct resource *r = &dev->resource[i];
1407
1408 if (r->parent || !r->start || !r->flags)
1409 continue;
1410
1411 pr_debug("PCI: Claiming %s: "
1412 "Resource %d: %016llx..%016llx [%x]\n",
1413 pci_name(dev), i,
1414 (unsigned long long)r->start,
1415 (unsigned long long)r->end,
1416 (unsigned int)r->flags);
1417
1418 pci_claim_resource(dev, i);
1419 }
1420 }
1421
1422 list_for_each_entry(child_bus, &bus->children, node)
1423 pcibios_claim_one_bus(child_bus);
1424 }
1425 EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
1426
1427
1428 /* pcibios_finish_adding_to_bus
1429 *
1430 * This is to be called by the hotplug code after devices have been
1431 * added to a bus, this include calling it for a PHB that is just
1432 * being added
1433 */
1434 void pcibios_finish_adding_to_bus(struct pci_bus *bus)
1435 {
1436 pr_debug("PCI: Finishing adding to hotplug bus %04x:%02x\n",
1437 pci_domain_nr(bus), bus->number);
1438
1439 /* Allocate bus and devices resources */
1440 pcibios_allocate_bus_resources(bus);
1441 pcibios_claim_one_bus(bus);
1442
1443 /* Add new devices to global lists. Register in proc, sysfs. */
1444 pci_bus_add_devices(bus);
1445
1446 /* Fixup EEH */
1447 eeh_add_device_tree_late(bus);
1448 }
1449 EXPORT_SYMBOL_GPL(pcibios_finish_adding_to_bus);
1450
1451 #endif /* CONFIG_HOTPLUG */
1452
1453 int pcibios_enable_device(struct pci_dev *dev, int mask)
1454 {
1455 if (ppc_md.pcibios_enable_device_hook)
1456 if (ppc_md.pcibios_enable_device_hook(dev))
1457 return -EINVAL;
1458
1459 return pci_enable_resources(dev, mask);
1460 }
1461
1462 void __devinit pcibios_setup_phb_resources(struct pci_controller *hose)
1463 {
1464 struct pci_bus *bus = hose->bus;
1465 struct resource *res;
1466 int i;
1467
1468 /* Hookup PHB IO resource */
1469 bus->resource[0] = res = &hose->io_resource;
1470
1471 if (!res->flags) {
1472 printk(KERN_WARNING "PCI: I/O resource not set for host"
1473 " bridge %s (domain %d)\n",
1474 hose->dn->full_name, hose->global_number);
1475 #ifdef CONFIG_PPC32
1476 /* Workaround for lack of IO resource only on 32-bit */
1477 res->start = (unsigned long)hose->io_base_virt - isa_io_base;
1478 res->end = res->start + IO_SPACE_LIMIT;
1479 res->flags = IORESOURCE_IO;
1480 #endif /* CONFIG_PPC32 */
1481 }
1482
1483 pr_debug("PCI: PHB IO resource = %016llx-%016llx [%lx]\n",
1484 (unsigned long long)res->start,
1485 (unsigned long long)res->end,
1486 (unsigned long)res->flags);
1487
1488 /* Hookup PHB Memory resources */
1489 for (i = 0; i < 3; ++i) {
1490 res = &hose->mem_resources[i];
1491 if (!res->flags) {
1492 if (i > 0)
1493 continue;
1494 printk(KERN_ERR "PCI: Memory resource 0 not set for "
1495 "host bridge %s (domain %d)\n",
1496 hose->dn->full_name, hose->global_number);
1497 #ifdef CONFIG_PPC32
1498 /* Workaround for lack of MEM resource only on 32-bit */
1499 res->start = hose->pci_mem_offset;
1500 res->end = (resource_size_t)-1LL;
1501 res->flags = IORESOURCE_MEM;
1502 #endif /* CONFIG_PPC32 */
1503 }
1504 bus->resource[i+1] = res;
1505
1506 pr_debug("PCI: PHB MEM resource %d = %016llx-%016llx [%lx]\n", i,
1507 (unsigned long long)res->start,
1508 (unsigned long long)res->end,
1509 (unsigned long)res->flags);
1510 }
1511
1512 pr_debug("PCI: PHB MEM offset = %016llx\n",
1513 (unsigned long long)hose->pci_mem_offset);
1514 pr_debug("PCI: PHB IO offset = %08lx\n",
1515 (unsigned long)hose->io_base_virt - _IO_BASE);
1516
1517 }
1518
This page took 0.088879 seconds and 4 git commands to generate.