2 * Contains common pci routines for ALL ppc platform
3 * (based on pci_32.c and pci_64.c)
5 * Port for PPC64 David Engebretsen, IBM Corp.
6 * Contains common pci routines for ppc64 platform, pSeries and iSeries brands.
8 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
9 * Rework, based on alpha PCI code.
11 * Common pmac/prep/chrp pci routines. -- Cort
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.
19 #include <linux/kernel.h>
20 #include <linux/pci.h>
21 #include <linux/string.h>
22 #include <linux/init.h>
23 #include <linux/bootmem.h>
25 #include <linux/list.h>
26 #include <linux/syscalls.h>
27 #include <linux/irq.h>
28 #include <linux/vmalloc.h>
29 #include <linux/slab.h>
31 #include <linux/of_address.h>
32 #include <linux/of_pci.h>
33 #include <linux/export.h>
35 #include <asm/processor.h>
37 #include <asm/pci-bridge.h>
38 #include <asm/byteorder.h>
40 static DEFINE_SPINLOCK(hose_spinlock
);
43 /* XXX kill that some day ... */
44 static int global_phb_number
; /* Global phb counter */
46 /* ISA Memory physical address */
47 resource_size_t isa_mem_base
;
49 /* Default PCI flags is 0 on ppc32, modified at boot on ppc64 */
50 unsigned int pci_flags
;
52 static struct dma_map_ops
*pci_dma_ops
= &dma_direct_ops
;
54 unsigned long isa_io_base
;
55 unsigned long pci_dram_offset
;
56 static int pci_bus_count
;
59 void set_pci_dma_ops(struct dma_map_ops
*dma_ops
)
61 pci_dma_ops
= dma_ops
;
64 struct dma_map_ops
*get_pci_dma_ops(void)
68 EXPORT_SYMBOL(get_pci_dma_ops
);
70 struct pci_controller
*pcibios_alloc_controller(struct device_node
*dev
)
72 struct pci_controller
*phb
;
74 phb
= zalloc_maybe_bootmem(sizeof(struct pci_controller
), GFP_KERNEL
);
77 spin_lock(&hose_spinlock
);
78 phb
->global_number
= global_phb_number
++;
79 list_add_tail(&phb
->list_node
, &hose_list
);
80 spin_unlock(&hose_spinlock
);
82 phb
->is_dynamic
= mem_init_done
;
86 void pcibios_free_controller(struct pci_controller
*phb
)
88 spin_lock(&hose_spinlock
);
89 list_del(&phb
->list_node
);
90 spin_unlock(&hose_spinlock
);
96 static resource_size_t
pcibios_io_size(const struct pci_controller
*hose
)
98 return resource_size(&hose
->io_resource
);
101 int pcibios_vaddr_is_ioport(void __iomem
*address
)
104 struct pci_controller
*hose
;
105 resource_size_t size
;
107 spin_lock(&hose_spinlock
);
108 list_for_each_entry(hose
, &hose_list
, list_node
) {
109 size
= pcibios_io_size(hose
);
110 if (address
>= hose
->io_base_virt
&&
111 address
< (hose
->io_base_virt
+ size
)) {
116 spin_unlock(&hose_spinlock
);
120 unsigned long pci_address_to_pio(phys_addr_t address
)
122 struct pci_controller
*hose
;
123 resource_size_t size
;
124 unsigned long ret
= ~0;
126 spin_lock(&hose_spinlock
);
127 list_for_each_entry(hose
, &hose_list
, list_node
) {
128 size
= pcibios_io_size(hose
);
129 if (address
>= hose
->io_base_phys
&&
130 address
< (hose
->io_base_phys
+ size
)) {
132 (unsigned long)hose
->io_base_virt
- _IO_BASE
;
133 ret
= base
+ (address
- hose
->io_base_phys
);
137 spin_unlock(&hose_spinlock
);
141 EXPORT_SYMBOL_GPL(pci_address_to_pio
);
144 * Return the domain number for this bus.
146 int pci_domain_nr(struct pci_bus
*bus
)
148 struct pci_controller
*hose
= pci_bus_to_host(bus
);
150 return hose
->global_number
;
152 EXPORT_SYMBOL(pci_domain_nr
);
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
161 struct pci_controller
*pci_find_hose_for_OF_device(struct device_node
*node
)
164 struct pci_controller
*hose
, *tmp
;
165 list_for_each_entry_safe(hose
, tmp
, &hose_list
, list_node
)
166 if (hose
->dn
== node
)
173 static ssize_t
pci_show_devspec(struct device
*dev
,
174 struct device_attribute
*attr
, char *buf
)
176 struct pci_dev
*pdev
;
177 struct device_node
*np
;
179 pdev
= to_pci_dev(dev
);
180 np
= pci_device_to_OF_node(pdev
);
181 if (np
== NULL
|| np
->full_name
== NULL
)
183 return sprintf(buf
, "%s", np
->full_name
);
185 static DEVICE_ATTR(devspec
, S_IRUGO
, pci_show_devspec
, NULL
);
187 /* Add sysfs properties */
188 int pcibios_add_platform_entries(struct pci_dev
*pdev
)
190 return device_create_file(&pdev
->dev
, &dev_attr_devspec
);
193 void pcibios_set_master(struct pci_dev
*dev
)
195 /* No special bus mastering setup handling */
198 char __devinit
*pcibios_setup(char *str
)
204 * Reads the interrupt pin to determine if interrupt is use by card.
205 * If the interrupt is used, then gets the interrupt line from the
206 * openfirmware and sets it in the pci_dev and pci_config line.
208 int pci_read_irq_line(struct pci_dev
*pci_dev
)
213 /* The current device-tree that iSeries generates from the HV
214 * PCI informations doesn't contain proper interrupt routing,
215 * and all the fallback would do is print out crap, so we
216 * don't attempt to resolve the interrupts here at all, some
217 * iSeries specific fixup does it.
219 * In the long run, we will hopefully fix the generated device-tree
222 pr_debug("PCI: Try to map irq for %s...\n", pci_name(pci_dev
));
225 memset(&oirq
, 0xff, sizeof(oirq
));
227 /* Try to get a mapping from the device-tree */
228 if (of_irq_map_pci(pci_dev
, &oirq
)) {
231 /* If that fails, lets fallback to what is in the config
232 * space and map that through the default controller. We
233 * also set the type to level low since that's what PCI
234 * interrupts are. If your platform does differently, then
235 * either provide a proper interrupt tree or don't use this
238 if (pci_read_config_byte(pci_dev
, PCI_INTERRUPT_PIN
, &pin
))
242 if (pci_read_config_byte(pci_dev
, PCI_INTERRUPT_LINE
, &line
) ||
243 line
== 0xff || line
== 0) {
246 pr_debug(" No map ! Using line %d (pin %d) from PCI config\n",
249 virq
= irq_create_mapping(NULL
, line
);
251 irq_set_irq_type(virq
, IRQ_TYPE_LEVEL_LOW
);
253 pr_debug(" Got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
254 oirq
.size
, oirq
.specifier
[0], oirq
.specifier
[1],
255 oirq
.controller
? oirq
.controller
->full_name
:
258 virq
= irq_create_of_mapping(oirq
.controller
, oirq
.specifier
,
262 pr_debug(" Failed to map !\n");
266 pr_debug(" Mapped to linux irq %d\n", virq
);
272 EXPORT_SYMBOL(pci_read_irq_line
);
275 * Platform support for /proc/bus/pci/X/Y mmap()s,
276 * modelled on the sparc64 implementation by Dave Miller.
281 * Adjust vm_pgoff of VMA such that it is the physical page offset
282 * corresponding to the 32-bit pci bus offset for DEV requested by the user.
284 * Basically, the user finds the base address for his device which he wishes
285 * to mmap. They read the 32-bit value from the config space base register,
286 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
287 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
289 * Returns negative error code on failure, zero on success.
291 static struct resource
*__pci_mmap_make_offset(struct pci_dev
*dev
,
292 resource_size_t
*offset
,
293 enum pci_mmap_state mmap_state
)
295 struct pci_controller
*hose
= pci_bus_to_host(dev
->bus
);
296 unsigned long io_offset
= 0;
300 return NULL
; /* should never happen */
302 /* If memory, add on the PCI bridge address offset */
303 if (mmap_state
== pci_mmap_mem
) {
304 #if 0 /* See comment in pci_resource_to_user() for why this is disabled */
305 *offset
+= hose
->pci_mem_offset
;
307 res_bit
= IORESOURCE_MEM
;
309 io_offset
= (unsigned long)hose
->io_base_virt
- _IO_BASE
;
310 *offset
+= io_offset
;
311 res_bit
= IORESOURCE_IO
;
315 * Check that the offset requested corresponds to one of the
316 * resources of the device.
318 for (i
= 0; i
<= PCI_ROM_RESOURCE
; i
++) {
319 struct resource
*rp
= &dev
->resource
[i
];
320 int flags
= rp
->flags
;
322 /* treat ROM as memory (should be already) */
323 if (i
== PCI_ROM_RESOURCE
)
324 flags
|= IORESOURCE_MEM
;
326 /* Active and same type? */
327 if ((flags
& res_bit
) == 0)
330 /* In the range of this resource? */
331 if (*offset
< (rp
->start
& PAGE_MASK
) || *offset
> rp
->end
)
334 /* found it! construct the final physical address */
335 if (mmap_state
== pci_mmap_io
)
336 *offset
+= hose
->io_base_phys
- io_offset
;
344 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
347 static pgprot_t
__pci_mmap_set_pgprot(struct pci_dev
*dev
, struct resource
*rp
,
349 enum pci_mmap_state mmap_state
,
352 pgprot_t prot
= protection
;
354 /* Write combine is always 0 on non-memory space mappings. On
355 * memory space, if the user didn't pass 1, we check for a
356 * "prefetchable" resource. This is a bit hackish, but we use
357 * this to workaround the inability of /sysfs to provide a write
360 if (mmap_state
!= pci_mmap_mem
)
362 else if (write_combine
== 0) {
363 if (rp
->flags
& IORESOURCE_PREFETCH
)
367 return pgprot_noncached(prot
);
371 * This one is used by /dev/mem and fbdev who have no clue about the
372 * PCI device, it tries to find the PCI device first and calls the
375 pgprot_t
pci_phys_mem_access_prot(struct file
*file
,
380 struct pci_dev
*pdev
= NULL
;
381 struct resource
*found
= NULL
;
382 resource_size_t offset
= ((resource_size_t
)pfn
) << PAGE_SHIFT
;
385 if (page_is_ram(pfn
))
388 prot
= pgprot_noncached(prot
);
389 for_each_pci_dev(pdev
) {
390 for (i
= 0; i
<= PCI_ROM_RESOURCE
; i
++) {
391 struct resource
*rp
= &pdev
->resource
[i
];
392 int flags
= rp
->flags
;
394 /* Active and same type? */
395 if ((flags
& IORESOURCE_MEM
) == 0)
397 /* In the range of this resource? */
398 if (offset
< (rp
->start
& PAGE_MASK
) ||
408 if (found
->flags
& IORESOURCE_PREFETCH
)
409 prot
= pgprot_noncached_wc(prot
);
413 pr_debug("PCI: Non-PCI map for %llx, prot: %lx\n",
414 (unsigned long long)offset
, pgprot_val(prot
));
420 * Perform the actual remap of the pages for a PCI device mapping, as
421 * appropriate for this architecture. The region in the process to map
422 * is described by vm_start and vm_end members of VMA, the base physical
423 * address is found in vm_pgoff.
424 * The pci device structure is provided so that architectures may make mapping
425 * decisions on a per-device or per-bus basis.
427 * Returns a negative error code on failure, zero on success.
429 int pci_mmap_page_range(struct pci_dev
*dev
, struct vm_area_struct
*vma
,
430 enum pci_mmap_state mmap_state
, int write_combine
)
432 resource_size_t offset
=
433 ((resource_size_t
)vma
->vm_pgoff
) << PAGE_SHIFT
;
437 rp
= __pci_mmap_make_offset(dev
, &offset
, mmap_state
);
441 vma
->vm_pgoff
= offset
>> PAGE_SHIFT
;
442 vma
->vm_page_prot
= __pci_mmap_set_pgprot(dev
, rp
,
444 mmap_state
, write_combine
);
446 ret
= remap_pfn_range(vma
, vma
->vm_start
, vma
->vm_pgoff
,
447 vma
->vm_end
- vma
->vm_start
, vma
->vm_page_prot
);
452 /* This provides legacy IO read access on a bus */
453 int pci_legacy_read(struct pci_bus
*bus
, loff_t port
, u32
*val
, size_t size
)
455 unsigned long offset
;
456 struct pci_controller
*hose
= pci_bus_to_host(bus
);
457 struct resource
*rp
= &hose
->io_resource
;
460 /* Check if port can be supported by that bus. We only check
461 * the ranges of the PHB though, not the bus itself as the rules
462 * for forwarding legacy cycles down bridges are not our problem
463 * here. So if the host bridge supports it, we do it.
465 offset
= (unsigned long)hose
->io_base_virt
- _IO_BASE
;
468 if (!(rp
->flags
& IORESOURCE_IO
))
470 if (offset
< rp
->start
|| (offset
+ size
) > rp
->end
)
472 addr
= hose
->io_base_virt
+ port
;
476 *((u8
*)val
) = in_8(addr
);
481 *((u16
*)val
) = in_le16(addr
);
486 *((u32
*)val
) = in_le32(addr
);
492 /* This provides legacy IO write access on a bus */
493 int pci_legacy_write(struct pci_bus
*bus
, loff_t port
, u32 val
, size_t size
)
495 unsigned long offset
;
496 struct pci_controller
*hose
= pci_bus_to_host(bus
);
497 struct resource
*rp
= &hose
->io_resource
;
500 /* Check if port can be supported by that bus. We only check
501 * the ranges of the PHB though, not the bus itself as the rules
502 * for forwarding legacy cycles down bridges are not our problem
503 * here. So if the host bridge supports it, we do it.
505 offset
= (unsigned long)hose
->io_base_virt
- _IO_BASE
;
508 if (!(rp
->flags
& IORESOURCE_IO
))
510 if (offset
< rp
->start
|| (offset
+ size
) > rp
->end
)
512 addr
= hose
->io_base_virt
+ port
;
514 /* WARNING: The generic code is idiotic. It gets passed a pointer
515 * to what can be a 1, 2 or 4 byte quantity and always reads that
516 * as a u32, which means that we have to correct the location of
517 * the data read within those 32 bits for size 1 and 2
521 out_8(addr
, val
>> 24);
526 out_le16(addr
, val
>> 16);
537 /* This provides legacy IO or memory mmap access on a bus */
538 int pci_mmap_legacy_page_range(struct pci_bus
*bus
,
539 struct vm_area_struct
*vma
,
540 enum pci_mmap_state mmap_state
)
542 struct pci_controller
*hose
= pci_bus_to_host(bus
);
543 resource_size_t offset
=
544 ((resource_size_t
)vma
->vm_pgoff
) << PAGE_SHIFT
;
545 resource_size_t size
= vma
->vm_end
- vma
->vm_start
;
548 pr_debug("pci_mmap_legacy_page_range(%04x:%02x, %s @%llx..%llx)\n",
549 pci_domain_nr(bus
), bus
->number
,
550 mmap_state
== pci_mmap_mem
? "MEM" : "IO",
551 (unsigned long long)offset
,
552 (unsigned long long)(offset
+ size
- 1));
554 if (mmap_state
== pci_mmap_mem
) {
557 * Because X is lame and can fail starting if it gets an error
558 * trying to mmap legacy_mem (instead of just moving on without
559 * legacy memory access) we fake it here by giving it anonymous
560 * memory, effectively behaving just like /dev/zero
562 if ((offset
+ size
) > hose
->isa_mem_size
) {
565 "Process %s (pid:%d) mapped non-existing PCI"
566 "legacy memory for 0%04x:%02x\n",
567 current
->comm
, current
->pid
, pci_domain_nr(bus
),
570 if (vma
->vm_flags
& VM_SHARED
)
571 return shmem_zero_setup(vma
);
574 offset
+= hose
->isa_mem_phys
;
576 unsigned long io_offset
= (unsigned long)hose
->io_base_virt
- \
578 unsigned long roffset
= offset
+ io_offset
;
579 rp
= &hose
->io_resource
;
580 if (!(rp
->flags
& IORESOURCE_IO
))
582 if (roffset
< rp
->start
|| (roffset
+ size
) > rp
->end
)
584 offset
+= hose
->io_base_phys
;
586 pr_debug(" -> mapping phys %llx\n", (unsigned long long)offset
);
588 vma
->vm_pgoff
= offset
>> PAGE_SHIFT
;
589 vma
->vm_page_prot
= pgprot_noncached(vma
->vm_page_prot
);
590 return remap_pfn_range(vma
, vma
->vm_start
, vma
->vm_pgoff
,
591 vma
->vm_end
- vma
->vm_start
,
595 void pci_resource_to_user(const struct pci_dev
*dev
, int bar
,
596 const struct resource
*rsrc
,
597 resource_size_t
*start
, resource_size_t
*end
)
599 struct pci_controller
*hose
= pci_bus_to_host(dev
->bus
);
600 resource_size_t offset
= 0;
605 if (rsrc
->flags
& IORESOURCE_IO
)
606 offset
= (unsigned long)hose
->io_base_virt
- _IO_BASE
;
608 /* We pass a fully fixed up address to userland for MMIO instead of
609 * a BAR value because X is lame and expects to be able to use that
610 * to pass to /dev/mem !
612 * That means that we'll have potentially 64 bits values where some
613 * userland apps only expect 32 (like X itself since it thinks only
614 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
617 * Hopefully, the sysfs insterface is immune to that gunk. Once X
618 * has been fixed (and the fix spread enough), we can re-enable the
619 * 2 lines below and pass down a BAR value to userland. In that case
620 * we'll also have to re-enable the matching code in
621 * __pci_mmap_make_offset().
626 else if (rsrc
->flags
& IORESOURCE_MEM
)
627 offset
= hose
->pci_mem_offset
;
630 *start
= rsrc
->start
- offset
;
631 *end
= rsrc
->end
- offset
;
635 * pci_process_bridge_OF_ranges - Parse PCI bridge resources from device tree
636 * @hose: newly allocated pci_controller to be setup
637 * @dev: device node of the host bridge
638 * @primary: set if primary bus (32 bits only, soon to be deprecated)
640 * This function will parse the "ranges" property of a PCI host bridge device
641 * node and setup the resource mapping of a pci controller based on its
644 * Life would be boring if it wasn't for a few issues that we have to deal
647 * - We can only cope with one IO space range and up to 3 Memory space
648 * ranges. However, some machines (thanks Apple !) tend to split their
649 * space into lots of small contiguous ranges. So we have to coalesce.
651 * - We can only cope with all memory ranges having the same offset
652 * between CPU addresses and PCI addresses. Unfortunately, some bridges
653 * are setup for a large 1:1 mapping along with a small "window" which
654 * maps PCI address 0 to some arbitrary high address of the CPU space in
655 * order to give access to the ISA memory hole.
656 * The way out of here that I've chosen for now is to always set the
657 * offset based on the first resource found, then override it if we
658 * have a different offset and the previous was set by an ISA hole.
660 * - Some busses have IO space not starting at 0, which causes trouble with
661 * the way we do our IO resource renumbering. The code somewhat deals with
662 * it for 64 bits but I would expect problems on 32 bits.
664 * - Some 32 bits platforms such as 4xx can have physical space larger than
665 * 32 bits so we need to use 64 bits values for the parsing
667 void __devinit
pci_process_bridge_OF_ranges(struct pci_controller
*hose
,
668 struct device_node
*dev
,
673 int pna
= of_n_addr_cells(dev
);
675 int memno
= 0, isa_hole
= -1;
677 unsigned long long pci_addr
, cpu_addr
, pci_next
, cpu_next
, size
;
678 unsigned long long isa_mb
= 0;
679 struct resource
*res
;
681 printk(KERN_INFO
"PCI host bridge %s %s ranges:\n",
682 dev
->full_name
, primary
? "(primary)" : "");
684 /* Get ranges property */
685 ranges
= of_get_property(dev
, "ranges", &rlen
);
690 pr_debug("Parsing ranges property...\n");
691 while ((rlen
-= np
* 4) >= 0) {
692 /* Read next ranges element */
693 pci_space
= ranges
[0];
694 pci_addr
= of_read_number(ranges
+ 1, 2);
695 cpu_addr
= of_translate_address(dev
, ranges
+ 3);
696 size
= of_read_number(ranges
+ pna
+ 3, 2);
698 pr_debug("pci_space: 0x%08x pci_addr:0x%016llx "
699 "cpu_addr:0x%016llx size:0x%016llx\n",
700 pci_space
, pci_addr
, cpu_addr
, size
);
704 /* If we failed translation or got a zero-sized region
705 * (some FW try to feed us with non sensical zero sized regions
706 * such as power3 which look like some kind of attempt
707 * at exposing the VGA memory hole)
709 if (cpu_addr
== OF_BAD_ADDR
|| size
== 0)
712 /* Now consume following elements while they are contiguous */
713 for (; rlen
>= np
* sizeof(u32
);
714 ranges
+= np
, rlen
-= np
* 4) {
715 if (ranges
[0] != pci_space
)
717 pci_next
= of_read_number(ranges
+ 1, 2);
718 cpu_next
= of_translate_address(dev
, ranges
+ 3);
719 if (pci_next
!= pci_addr
+ size
||
720 cpu_next
!= cpu_addr
+ size
)
722 size
+= of_read_number(ranges
+ pna
+ 3, 2);
725 /* Act based on address space type */
727 switch ((pci_space
>> 24) & 0x3) {
728 case 1: /* PCI IO space */
730 " IO 0x%016llx..0x%016llx -> 0x%016llx\n",
731 cpu_addr
, cpu_addr
+ size
- 1, pci_addr
);
733 /* We support only one IO range */
734 if (hose
->pci_io_size
) {
736 " \\--> Skipped (too many) !\n");
739 /* On 32 bits, limit I/O space to 16MB */
740 if (size
> 0x01000000)
743 /* 32 bits needs to map IOs here */
744 hose
->io_base_virt
= ioremap(cpu_addr
, size
);
746 /* Expect trouble if pci_addr is not 0 */
749 (unsigned long)hose
->io_base_virt
;
750 /* pci_io_size and io_base_phys always represent IO
751 * space starting at 0 so we factor in pci_addr
753 hose
->pci_io_size
= pci_addr
+ size
;
754 hose
->io_base_phys
= cpu_addr
- pci_addr
;
757 res
= &hose
->io_resource
;
758 res
->flags
= IORESOURCE_IO
;
759 res
->start
= pci_addr
;
761 case 2: /* PCI Memory space */
762 case 3: /* PCI 64 bits Memory space */
764 " MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",
765 cpu_addr
, cpu_addr
+ size
- 1, pci_addr
,
766 (pci_space
& 0x40000000) ? "Prefetch" : "");
768 /* We support only 3 memory ranges */
771 " \\--> Skipped (too many) !\n");
774 /* Handles ISA memory hole space here */
778 if (primary
|| isa_mem_base
== 0)
779 isa_mem_base
= cpu_addr
;
780 hose
->isa_mem_phys
= cpu_addr
;
781 hose
->isa_mem_size
= size
;
784 /* We get the PCI/Mem offset from the first range or
785 * the, current one if the offset came from an ISA
786 * hole. If they don't match, bugger.
789 (isa_hole
>= 0 && pci_addr
!= 0 &&
790 hose
->pci_mem_offset
== isa_mb
))
791 hose
->pci_mem_offset
= cpu_addr
- pci_addr
;
792 else if (pci_addr
!= 0 &&
793 hose
->pci_mem_offset
!= cpu_addr
- pci_addr
) {
795 " \\--> Skipped (offset mismatch) !\n");
800 res
= &hose
->mem_resources
[memno
++];
801 res
->flags
= IORESOURCE_MEM
;
802 if (pci_space
& 0x40000000)
803 res
->flags
|= IORESOURCE_PREFETCH
;
804 res
->start
= cpu_addr
;
808 res
->name
= dev
->full_name
;
809 res
->end
= res
->start
+ size
- 1;
816 /* If there's an ISA hole and the pci_mem_offset is -not- matching
817 * the ISA hole offset, then we need to remove the ISA hole from
818 * the resource list for that brige
820 if (isa_hole
>= 0 && hose
->pci_mem_offset
!= isa_mb
) {
821 unsigned int next
= isa_hole
+ 1;
822 printk(KERN_INFO
" Removing ISA hole at 0x%016llx\n", isa_mb
);
824 memmove(&hose
->mem_resources
[isa_hole
],
825 &hose
->mem_resources
[next
],
826 sizeof(struct resource
) * (memno
- next
));
827 hose
->mem_resources
[--memno
].flags
= 0;
831 /* Decide whether to display the domain number in /proc */
832 int pci_proc_domain(struct pci_bus
*bus
)
834 struct pci_controller
*hose
= pci_bus_to_host(bus
);
836 if (!(pci_flags
& PCI_ENABLE_PROC_DOMAINS
))
838 if (pci_flags
& PCI_COMPAT_DOMAIN_0
)
839 return hose
->global_number
!= 0;
843 void pcibios_resource_to_bus(struct pci_dev
*dev
, struct pci_bus_region
*region
,
844 struct resource
*res
)
846 resource_size_t offset
= 0, mask
= (resource_size_t
)-1;
847 struct pci_controller
*hose
= pci_bus_to_host(dev
->bus
);
851 if (res
->flags
& IORESOURCE_IO
) {
852 offset
= (unsigned long)hose
->io_base_virt
- _IO_BASE
;
854 } else if (res
->flags
& IORESOURCE_MEM
)
855 offset
= hose
->pci_mem_offset
;
857 region
->start
= (res
->start
- offset
) & mask
;
858 region
->end
= (res
->end
- offset
) & mask
;
860 EXPORT_SYMBOL(pcibios_resource_to_bus
);
862 void pcibios_bus_to_resource(struct pci_dev
*dev
, struct resource
*res
,
863 struct pci_bus_region
*region
)
865 resource_size_t offset
= 0, mask
= (resource_size_t
)-1;
866 struct pci_controller
*hose
= pci_bus_to_host(dev
->bus
);
870 if (res
->flags
& IORESOURCE_IO
) {
871 offset
= (unsigned long)hose
->io_base_virt
- _IO_BASE
;
873 } else if (res
->flags
& IORESOURCE_MEM
)
874 offset
= hose
->pci_mem_offset
;
875 res
->start
= (region
->start
+ offset
) & mask
;
876 res
->end
= (region
->end
+ offset
) & mask
;
878 EXPORT_SYMBOL(pcibios_bus_to_resource
);
880 /* Fixup a bus resource into a linux resource */
881 static void __devinit
fixup_resource(struct resource
*res
, struct pci_dev
*dev
)
883 struct pci_controller
*hose
= pci_bus_to_host(dev
->bus
);
884 resource_size_t offset
= 0, mask
= (resource_size_t
)-1;
886 if (res
->flags
& IORESOURCE_IO
) {
887 offset
= (unsigned long)hose
->io_base_virt
- _IO_BASE
;
889 } else if (res
->flags
& IORESOURCE_MEM
)
890 offset
= hose
->pci_mem_offset
;
892 res
->start
= (res
->start
+ offset
) & mask
;
893 res
->end
= (res
->end
+ offset
) & mask
;
896 /* This header fixup will do the resource fixup for all devices as they are
897 * probed, but not for bridge ranges
899 static void __devinit
pcibios_fixup_resources(struct pci_dev
*dev
)
901 struct pci_controller
*hose
= pci_bus_to_host(dev
->bus
);
905 printk(KERN_ERR
"No host bridge for PCI dev %s !\n",
909 for (i
= 0; i
< DEVICE_COUNT_RESOURCE
; i
++) {
910 struct resource
*res
= dev
->resource
+ i
;
913 /* On platforms that have PCI_PROBE_ONLY set, we don't
914 * consider 0 as an unassigned BAR value. It's technically
915 * a valid value, but linux doesn't like it... so when we can
916 * re-assign things, we do so, but if we can't, we keep it
917 * around and hope for the best...
919 if (res
->start
== 0 && !(pci_flags
& PCI_PROBE_ONLY
)) {
920 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x]" \
923 (unsigned long long)res
->start
,
924 (unsigned long long)res
->end
,
925 (unsigned int)res
->flags
);
926 res
->end
-= res
->start
;
928 res
->flags
|= IORESOURCE_UNSET
;
932 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x] fixup...\n",
934 (unsigned long long)res
->start
,\
935 (unsigned long long)res
->end
,
936 (unsigned int)res
->flags
);
938 fixup_resource(res
, dev
);
940 pr_debug("PCI:%s %016llx-%016llx\n",
942 (unsigned long long)res
->start
,
943 (unsigned long long)res
->end
);
946 DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID
, PCI_ANY_ID
, pcibios_fixup_resources
);
948 /* This function tries to figure out if a bridge resource has been initialized
949 * by the firmware or not. It doesn't have to be absolutely bullet proof, but
950 * things go more smoothly when it gets it right. It should covers cases such
951 * as Apple "closed" bridge resources and bare-metal pSeries unassigned bridges
953 static int __devinit
pcibios_uninitialized_bridge_resource(struct pci_bus
*bus
,
954 struct resource
*res
)
956 struct pci_controller
*hose
= pci_bus_to_host(bus
);
957 struct pci_dev
*dev
= bus
->self
;
958 resource_size_t offset
;
962 /* We don't do anything if PCI_PROBE_ONLY is set */
963 if (pci_flags
& PCI_PROBE_ONLY
)
966 /* Job is a bit different between memory and IO */
967 if (res
->flags
& IORESOURCE_MEM
) {
968 /* If the BAR is non-0 (res != pci_mem_offset) then it's
969 * probably been initialized by somebody
971 if (res
->start
!= hose
->pci_mem_offset
)
974 /* The BAR is 0, let's check if memory decoding is enabled on
975 * the bridge. If not, we consider it unassigned
977 pci_read_config_word(dev
, PCI_COMMAND
, &command
);
978 if ((command
& PCI_COMMAND_MEMORY
) == 0)
981 /* Memory decoding is enabled and the BAR is 0. If any of
982 * the bridge resources covers that starting address (0 then
983 * it's good enough for us for memory
985 for (i
= 0; i
< 3; i
++) {
986 if ((hose
->mem_resources
[i
].flags
& IORESOURCE_MEM
) &&
987 hose
->mem_resources
[i
].start
== hose
->pci_mem_offset
)
991 /* Well, it starts at 0 and we know it will collide so we may as
992 * well consider it as unassigned. That covers the Apple case.
996 /* If the BAR is non-0, then we consider it assigned */
997 offset
= (unsigned long)hose
->io_base_virt
- _IO_BASE
;
998 if (((res
->start
- offset
) & 0xfffffffful
) != 0)
1001 /* Here, we are a bit different than memory as typically IO
1002 * space starting at low addresses -is- valid. What we do
1003 * instead if that we consider as unassigned anything that
1004 * doesn't have IO enabled in the PCI command register,
1007 pci_read_config_word(dev
, PCI_COMMAND
, &command
);
1008 if (command
& PCI_COMMAND_IO
)
1011 /* It's starting at 0 and IO is disabled in the bridge, consider
1018 /* Fixup resources of a PCI<->PCI bridge */
1019 static void __devinit
pcibios_fixup_bridge(struct pci_bus
*bus
)
1021 struct resource
*res
;
1024 struct pci_dev
*dev
= bus
->self
;
1026 pci_bus_for_each_resource(bus
, res
, i
) {
1031 if (i
>= 3 && bus
->self
->transparent
)
1034 pr_debug("PCI:%s Bus rsrc %d %016llx-%016llx [%x] fixup...\n",
1036 (unsigned long long)res
->start
,\
1037 (unsigned long long)res
->end
,
1038 (unsigned int)res
->flags
);
1041 fixup_resource(res
, dev
);
1043 /* Try to detect uninitialized P2P bridge resources,
1044 * and clear them out so they get re-assigned later
1046 if (pcibios_uninitialized_bridge_resource(bus
, res
)) {
1048 pr_debug("PCI:%s (unassigned)\n",
1051 pr_debug("PCI:%s %016llx-%016llx\n",
1053 (unsigned long long)res
->start
,
1054 (unsigned long long)res
->end
);
1059 void __devinit
pcibios_setup_bus_self(struct pci_bus
*bus
)
1061 /* Fix up the bus resources for P2P bridges */
1062 if (bus
->self
!= NULL
)
1063 pcibios_fixup_bridge(bus
);
1066 void __devinit
pcibios_setup_bus_devices(struct pci_bus
*bus
)
1068 struct pci_dev
*dev
;
1070 pr_debug("PCI: Fixup bus devices %d (%s)\n",
1071 bus
->number
, bus
->self
? pci_name(bus
->self
) : "PHB");
1073 list_for_each_entry(dev
, &bus
->devices
, bus_list
) {
1074 /* Setup OF node pointer in archdata */
1075 dev
->dev
.of_node
= pci_device_to_OF_node(dev
);
1077 /* Fixup NUMA node as it may not be setup yet by the generic
1078 * code and is needed by the DMA init
1080 set_dev_node(&dev
->dev
, pcibus_to_node(dev
->bus
));
1082 /* Hook up default DMA ops */
1083 set_dma_ops(&dev
->dev
, pci_dma_ops
);
1084 dev
->dev
.archdata
.dma_data
= (void *)PCI_DRAM_OFFSET
;
1086 /* Read default IRQs and fixup if necessary */
1087 pci_read_irq_line(dev
);
1091 void __devinit
pcibios_fixup_bus(struct pci_bus
*bus
)
1093 /* When called from the generic PCI probe, read PCI<->PCI bridge
1094 * bases. This is -not- called when generating the PCI tree from
1095 * the OF device-tree.
1097 if (bus
->self
!= NULL
)
1098 pci_read_bridge_bases(bus
);
1100 /* Now fixup the bus bus */
1101 pcibios_setup_bus_self(bus
);
1103 /* Now fixup devices on that bus */
1104 pcibios_setup_bus_devices(bus
);
1106 EXPORT_SYMBOL(pcibios_fixup_bus
);
1108 static int skip_isa_ioresource_align(struct pci_dev
*dev
)
1110 if ((pci_flags
& PCI_CAN_SKIP_ISA_ALIGN
) &&
1111 !(dev
->bus
->bridge_ctl
& PCI_BRIDGE_CTL_ISA
))
1117 * We need to avoid collisions with `mirrored' VGA ports
1118 * and other strange ISA hardware, so we always want the
1119 * addresses to be allocated in the 0x000-0x0ff region
1122 * Why? Because some silly external IO cards only decode
1123 * the low 10 bits of the IO address. The 0x00-0xff region
1124 * is reserved for motherboard devices that decode all 16
1125 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
1126 * but we want to try to avoid allocating at 0x2900-0x2bff
1127 * which might have be mirrored at 0x0100-0x03ff..
1129 resource_size_t
pcibios_align_resource(void *data
, const struct resource
*res
,
1130 resource_size_t size
, resource_size_t align
)
1132 struct pci_dev
*dev
= data
;
1133 resource_size_t start
= res
->start
;
1135 if (res
->flags
& IORESOURCE_IO
) {
1136 if (skip_isa_ioresource_align(dev
))
1139 start
= (start
+ 0x3ff) & ~0x3ff;
1144 EXPORT_SYMBOL(pcibios_align_resource
);
1147 * Reparent resource children of pr that conflict with res
1148 * under res, and make res replace those children.
1150 static int __init
reparent_resources(struct resource
*parent
,
1151 struct resource
*res
)
1153 struct resource
*p
, **pp
;
1154 struct resource
**firstpp
= NULL
;
1156 for (pp
= &parent
->child
; (p
= *pp
) != NULL
; pp
= &p
->sibling
) {
1157 if (p
->end
< res
->start
)
1159 if (res
->end
< p
->start
)
1161 if (p
->start
< res
->start
|| p
->end
> res
->end
)
1162 return -1; /* not completely contained */
1163 if (firstpp
== NULL
)
1166 if (firstpp
== NULL
)
1167 return -1; /* didn't find any conflicting entries? */
1168 res
->parent
= parent
;
1169 res
->child
= *firstpp
;
1173 for (p
= res
->child
; p
!= NULL
; p
= p
->sibling
) {
1175 pr_debug("PCI: Reparented %s [%llx..%llx] under %s\n",
1177 (unsigned long long)p
->start
,
1178 (unsigned long long)p
->end
, res
->name
);
1184 * Handle resources of PCI devices. If the world were perfect, we could
1185 * just allocate all the resource regions and do nothing more. It isn't.
1186 * On the other hand, we cannot just re-allocate all devices, as it would
1187 * require us to know lots of host bridge internals. So we attempt to
1188 * keep as much of the original configuration as possible, but tweak it
1189 * when it's found to be wrong.
1191 * Known BIOS problems we have to work around:
1192 * - I/O or memory regions not configured
1193 * - regions configured, but not enabled in the command register
1194 * - bogus I/O addresses above 64K used
1195 * - expansion ROMs left enabled (this may sound harmless, but given
1196 * the fact the PCI specs explicitly allow address decoders to be
1197 * shared between expansion ROMs and other resource regions, it's
1198 * at least dangerous)
1201 * (1) Allocate resources for all buses behind PCI-to-PCI bridges.
1202 * This gives us fixed barriers on where we can allocate.
1203 * (2) Allocate resources for all enabled devices. If there is
1204 * a collision, just mark the resource as unallocated. Also
1205 * disable expansion ROMs during this step.
1206 * (3) Try to allocate resources for disabled devices. If the
1207 * resources were assigned correctly, everything goes well,
1208 * if they weren't, they won't disturb allocation of other
1210 * (4) Assign new addresses to resources which were either
1211 * not configured at all or misconfigured. If explicitly
1212 * requested by the user, configure expansion ROM address
1216 void pcibios_allocate_bus_resources(struct pci_bus
*bus
)
1220 struct resource
*res
, *pr
;
1222 pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
1223 pci_domain_nr(bus
), bus
->number
);
1225 pci_bus_for_each_resource(bus
, res
, i
) {
1226 if (!res
|| !res
->flags
1227 || res
->start
> res
->end
|| res
->parent
)
1229 if (bus
->parent
== NULL
)
1230 pr
= (res
->flags
& IORESOURCE_IO
) ?
1231 &ioport_resource
: &iomem_resource
;
1233 /* Don't bother with non-root busses when
1234 * re-assigning all resources. We clear the
1235 * resource flags as if they were colliding
1236 * and as such ensure proper re-allocation
1239 if (pci_flags
& PCI_REASSIGN_ALL_RSRC
)
1240 goto clear_resource
;
1241 pr
= pci_find_parent_resource(bus
->self
, res
);
1243 /* this happens when the generic PCI
1244 * code (wrongly) decides that this
1245 * bridge is transparent -- paulus
1251 pr_debug("PCI: %s (bus %d) bridge rsrc %d: %016llx-%016llx "
1252 "[0x%x], parent %p (%s)\n",
1253 bus
->self
? pci_name(bus
->self
) : "PHB",
1255 (unsigned long long)res
->start
,
1256 (unsigned long long)res
->end
,
1257 (unsigned int)res
->flags
,
1258 pr
, (pr
&& pr
->name
) ? pr
->name
: "nil");
1260 if (pr
&& !(pr
->flags
& IORESOURCE_UNSET
)) {
1261 if (request_resource(pr
, res
) == 0)
1264 * Must be a conflict with an existing entry.
1265 * Move that entry (or entries) under the
1266 * bridge resource and try again.
1268 if (reparent_resources(pr
, res
) == 0)
1271 printk(KERN_WARNING
"PCI: Cannot allocate resource region "
1272 "%d of PCI bridge %d, will remap\n", i
, bus
->number
);
1274 res
->start
= res
->end
= 0;
1278 list_for_each_entry(b
, &bus
->children
, node
)
1279 pcibios_allocate_bus_resources(b
);
1282 static inline void __devinit
alloc_resource(struct pci_dev
*dev
, int idx
)
1284 struct resource
*pr
, *r
= &dev
->resource
[idx
];
1286 pr_debug("PCI: Allocating %s: Resource %d: %016llx..%016llx [%x]\n",
1288 (unsigned long long)r
->start
,
1289 (unsigned long long)r
->end
,
1290 (unsigned int)r
->flags
);
1292 pr
= pci_find_parent_resource(dev
, r
);
1293 if (!pr
|| (pr
->flags
& IORESOURCE_UNSET
) ||
1294 request_resource(pr
, r
) < 0) {
1295 printk(KERN_WARNING
"PCI: Cannot allocate resource region %d"
1296 " of device %s, will remap\n", idx
, pci_name(dev
));
1298 pr_debug("PCI: parent is %p: %016llx-%016llx [%x]\n",
1300 (unsigned long long)pr
->start
,
1301 (unsigned long long)pr
->end
,
1302 (unsigned int)pr
->flags
);
1303 /* We'll assign a new address later */
1304 r
->flags
|= IORESOURCE_UNSET
;
1310 static void __init
pcibios_allocate_resources(int pass
)
1312 struct pci_dev
*dev
= NULL
;
1317 for_each_pci_dev(dev
) {
1318 pci_read_config_word(dev
, PCI_COMMAND
, &command
);
1319 for (idx
= 0; idx
<= PCI_ROM_RESOURCE
; idx
++) {
1320 r
= &dev
->resource
[idx
];
1321 if (r
->parent
) /* Already allocated */
1323 if (!r
->flags
|| (r
->flags
& IORESOURCE_UNSET
))
1324 continue; /* Not assigned at all */
1325 /* We only allocate ROMs on pass 1 just in case they
1326 * have been screwed up by firmware
1328 if (idx
== PCI_ROM_RESOURCE
)
1330 if (r
->flags
& IORESOURCE_IO
)
1331 disabled
= !(command
& PCI_COMMAND_IO
);
1333 disabled
= !(command
& PCI_COMMAND_MEMORY
);
1334 if (pass
== disabled
)
1335 alloc_resource(dev
, idx
);
1339 r
= &dev
->resource
[PCI_ROM_RESOURCE
];
1341 /* Turn the ROM off, leave the resource region,
1342 * but keep it unregistered.
1345 pci_read_config_dword(dev
, dev
->rom_base_reg
, ®
);
1346 if (reg
& PCI_ROM_ADDRESS_ENABLE
) {
1347 pr_debug("PCI: Switching off ROM of %s\n",
1349 r
->flags
&= ~IORESOURCE_ROM_ENABLE
;
1350 pci_write_config_dword(dev
, dev
->rom_base_reg
,
1351 reg
& ~PCI_ROM_ADDRESS_ENABLE
);
1357 static void __init
pcibios_reserve_legacy_regions(struct pci_bus
*bus
)
1359 struct pci_controller
*hose
= pci_bus_to_host(bus
);
1360 resource_size_t offset
;
1361 struct resource
*res
, *pres
;
1364 pr_debug("Reserving legacy ranges for domain %04x\n",
1365 pci_domain_nr(bus
));
1368 if (!(hose
->io_resource
.flags
& IORESOURCE_IO
))
1370 offset
= (unsigned long)hose
->io_base_virt
- _IO_BASE
;
1371 res
= kzalloc(sizeof(struct resource
), GFP_KERNEL
);
1372 BUG_ON(res
== NULL
);
1373 res
->name
= "Legacy IO";
1374 res
->flags
= IORESOURCE_IO
;
1375 res
->start
= offset
;
1376 res
->end
= (offset
+ 0xfff) & 0xfffffffful
;
1377 pr_debug("Candidate legacy IO: %pR\n", res
);
1378 if (request_resource(&hose
->io_resource
, res
)) {
1380 "PCI %04x:%02x Cannot reserve Legacy IO %pR\n",
1381 pci_domain_nr(bus
), bus
->number
, res
);
1386 /* Check for memory */
1387 offset
= hose
->pci_mem_offset
;
1388 pr_debug("hose mem offset: %016llx\n", (unsigned long long)offset
);
1389 for (i
= 0; i
< 3; i
++) {
1390 pres
= &hose
->mem_resources
[i
];
1391 if (!(pres
->flags
& IORESOURCE_MEM
))
1393 pr_debug("hose mem res: %pR\n", pres
);
1394 if ((pres
->start
- offset
) <= 0xa0000 &&
1395 (pres
->end
- offset
) >= 0xbffff)
1400 res
= kzalloc(sizeof(struct resource
), GFP_KERNEL
);
1401 BUG_ON(res
== NULL
);
1402 res
->name
= "Legacy VGA memory";
1403 res
->flags
= IORESOURCE_MEM
;
1404 res
->start
= 0xa0000 + offset
;
1405 res
->end
= 0xbffff + offset
;
1406 pr_debug("Candidate VGA memory: %pR\n", res
);
1407 if (request_resource(pres
, res
)) {
1409 "PCI %04x:%02x Cannot reserve VGA memory %pR\n",
1410 pci_domain_nr(bus
), bus
->number
, res
);
1415 void __init
pcibios_resource_survey(void)
1419 /* Allocate and assign resources. If we re-assign everything, then
1420 * we skip the allocate phase
1422 list_for_each_entry(b
, &pci_root_buses
, node
)
1423 pcibios_allocate_bus_resources(b
);
1425 if (!(pci_flags
& PCI_REASSIGN_ALL_RSRC
)) {
1426 pcibios_allocate_resources(0);
1427 pcibios_allocate_resources(1);
1430 /* Before we start assigning unassigned resource, we try to reserve
1431 * the low IO area and the VGA memory area if they intersect the
1432 * bus available resources to avoid allocating things on top of them
1434 if (!(pci_flags
& PCI_PROBE_ONLY
)) {
1435 list_for_each_entry(b
, &pci_root_buses
, node
)
1436 pcibios_reserve_legacy_regions(b
);
1439 /* Now, if the platform didn't decide to blindly trust the firmware,
1440 * we proceed to assigning things that were left unassigned
1442 if (!(pci_flags
& PCI_PROBE_ONLY
)) {
1443 pr_debug("PCI: Assigning unassigned resources...\n");
1444 pci_assign_unassigned_resources();
1448 #ifdef CONFIG_HOTPLUG
1450 /* This is used by the PCI hotplug driver to allocate resource
1451 * of newly plugged busses. We can try to consolidate with the
1452 * rest of the code later, for now, keep it as-is as our main
1453 * resource allocation function doesn't deal with sub-trees yet.
1455 void __devinit
pcibios_claim_one_bus(struct pci_bus
*bus
)
1457 struct pci_dev
*dev
;
1458 struct pci_bus
*child_bus
;
1460 list_for_each_entry(dev
, &bus
->devices
, bus_list
) {
1463 for (i
= 0; i
< PCI_NUM_RESOURCES
; i
++) {
1464 struct resource
*r
= &dev
->resource
[i
];
1466 if (r
->parent
|| !r
->start
|| !r
->flags
)
1469 pr_debug("PCI: Claiming %s: "
1470 "Resource %d: %016llx..%016llx [%x]\n",
1472 (unsigned long long)r
->start
,
1473 (unsigned long long)r
->end
,
1474 (unsigned int)r
->flags
);
1476 pci_claim_resource(dev
, i
);
1480 list_for_each_entry(child_bus
, &bus
->children
, node
)
1481 pcibios_claim_one_bus(child_bus
);
1483 EXPORT_SYMBOL_GPL(pcibios_claim_one_bus
);
1486 /* pcibios_finish_adding_to_bus
1488 * This is to be called by the hotplug code after devices have been
1489 * added to a bus, this include calling it for a PHB that is just
1492 void pcibios_finish_adding_to_bus(struct pci_bus
*bus
)
1494 pr_debug("PCI: Finishing adding to hotplug bus %04x:%02x\n",
1495 pci_domain_nr(bus
), bus
->number
);
1497 /* Allocate bus and devices resources */
1498 pcibios_allocate_bus_resources(bus
);
1499 pcibios_claim_one_bus(bus
);
1501 /* Add new devices to global lists. Register in proc, sysfs. */
1502 pci_bus_add_devices(bus
);
1505 /* eeh_add_device_tree_late(bus); */
1507 EXPORT_SYMBOL_GPL(pcibios_finish_adding_to_bus
);
1509 #endif /* CONFIG_HOTPLUG */
1511 int pcibios_enable_device(struct pci_dev
*dev
, int mask
)
1513 return pci_enable_resources(dev
, mask
);
1516 static void __devinit
pcibios_setup_phb_resources(struct pci_controller
*hose
, struct list_head
*resources
)
1518 struct resource
*res
;
1521 /* Hookup PHB IO resource */
1522 res
= &hose
->io_resource
;
1524 /* Fixup IO space offset */
1525 io_offset
= (unsigned long)hose
->io_base_virt
- isa_io_base
;
1526 res
->start
= (res
->start
+ io_offset
) & 0xffffffffu
;
1527 res
->end
= (res
->end
+ io_offset
) & 0xffffffffu
;
1530 printk(KERN_WARNING
"PCI: I/O resource not set for host"
1531 " bridge %s (domain %d)\n",
1532 hose
->dn
->full_name
, hose
->global_number
);
1533 /* Workaround for lack of IO resource only on 32-bit */
1534 res
->start
= (unsigned long)hose
->io_base_virt
- isa_io_base
;
1535 res
->end
= res
->start
+ IO_SPACE_LIMIT
;
1536 res
->flags
= IORESOURCE_IO
;
1538 pci_add_resource(resources
, res
);
1540 pr_debug("PCI: PHB IO resource = %016llx-%016llx [%lx]\n",
1541 (unsigned long long)res
->start
,
1542 (unsigned long long)res
->end
,
1543 (unsigned long)res
->flags
);
1545 /* Hookup PHB Memory resources */
1546 for (i
= 0; i
< 3; ++i
) {
1547 res
= &hose
->mem_resources
[i
];
1551 printk(KERN_ERR
"PCI: Memory resource 0 not set for "
1552 "host bridge %s (domain %d)\n",
1553 hose
->dn
->full_name
, hose
->global_number
);
1555 /* Workaround for lack of MEM resource only on 32-bit */
1556 res
->start
= hose
->pci_mem_offset
;
1557 res
->end
= (resource_size_t
)-1LL;
1558 res
->flags
= IORESOURCE_MEM
;
1561 pci_add_resource(resources
, res
);
1563 pr_debug("PCI: PHB MEM resource %d = %016llx-%016llx [%lx]\n",
1564 i
, (unsigned long long)res
->start
,
1565 (unsigned long long)res
->end
,
1566 (unsigned long)res
->flags
);
1569 pr_debug("PCI: PHB MEM offset = %016llx\n",
1570 (unsigned long long)hose
->pci_mem_offset
);
1571 pr_debug("PCI: PHB IO offset = %08lx\n",
1572 (unsigned long)hose
->io_base_virt
- _IO_BASE
);
1575 struct device_node
*pcibios_get_phb_of_node(struct pci_bus
*bus
)
1577 struct pci_controller
*hose
= bus
->sysdata
;
1579 return of_node_get(hose
->dn
);
1582 static void __devinit
pcibios_scan_phb(struct pci_controller
*hose
)
1584 LIST_HEAD(resources
);
1585 struct pci_bus
*bus
;
1586 struct device_node
*node
= hose
->dn
;
1588 pr_debug("PCI: Scanning PHB %s\n",
1589 node
? node
->full_name
: "<NO NAME>");
1591 pcibios_setup_phb_resources(hose
, &resources
);
1593 bus
= pci_scan_root_bus(hose
->parent
, hose
->first_busno
,
1594 hose
->ops
, hose
, &resources
);
1596 printk(KERN_ERR
"Failed to create bus for PCI domain %04x\n",
1597 hose
->global_number
);
1598 pci_free_resource_list(&resources
);
1601 bus
->secondary
= hose
->first_busno
;
1604 hose
->last_busno
= bus
->subordinate
;
1607 static int __init
pcibios_init(void)
1609 struct pci_controller
*hose
, *tmp
;
1612 printk(KERN_INFO
"PCI: Probing PCI hardware\n");
1614 /* Scan all of the recorded PCI controllers. */
1615 list_for_each_entry_safe(hose
, tmp
, &hose_list
, list_node
) {
1616 hose
->last_busno
= 0xff;
1617 pcibios_scan_phb(hose
);
1618 if (next_busno
<= hose
->last_busno
)
1619 next_busno
= hose
->last_busno
+ 1;
1621 pci_bus_count
= next_busno
;
1623 /* Call common code to handle resource allocation */
1624 pcibios_resource_survey();
1629 subsys_initcall(pcibios_init
);
1631 static struct pci_controller
*pci_bus_to_hose(int bus
)
1633 struct pci_controller
*hose
, *tmp
;
1635 list_for_each_entry_safe(hose
, tmp
, &hose_list
, list_node
)
1636 if (bus
>= hose
->first_busno
&& bus
<= hose
->last_busno
)
1641 /* Provide information on locations of various I/O regions in physical
1642 * memory. Do this on a per-card basis so that we choose the right
1644 * Note that the returned IO or memory base is a physical address
1647 long sys_pciconfig_iobase(long which
, unsigned long bus
, unsigned long devfn
)
1649 struct pci_controller
*hose
;
1650 long result
= -EOPNOTSUPP
;
1652 hose
= pci_bus_to_hose(bus
);
1657 case IOBASE_BRIDGE_NUMBER
:
1658 return (long)hose
->first_busno
;
1660 return (long)hose
->pci_mem_offset
;
1662 return (long)hose
->io_base_phys
;
1664 return (long)isa_io_base
;
1665 case IOBASE_ISA_MEM
:
1666 return (long)isa_mem_base
;
1673 * Null PCI config access functions, for the case when we can't
1676 #define NULL_PCI_OP(rw, size, type) \
1678 null_##rw##_config_##size(struct pci_dev *dev, int offset, type val) \
1680 return PCIBIOS_DEVICE_NOT_FOUND; \
1684 null_read_config(struct pci_bus
*bus
, unsigned int devfn
, int offset
,
1687 return PCIBIOS_DEVICE_NOT_FOUND
;
1691 null_write_config(struct pci_bus
*bus
, unsigned int devfn
, int offset
,
1694 return PCIBIOS_DEVICE_NOT_FOUND
;
1697 static struct pci_ops null_pci_ops
= {
1698 .read
= null_read_config
,
1699 .write
= null_write_config
,
1703 * These functions are used early on before PCI scanning is done
1704 * and all of the pci_dev and pci_bus structures have been created.
1706 static struct pci_bus
*
1707 fake_pci_bus(struct pci_controller
*hose
, int busnr
)
1709 static struct pci_bus bus
;
1712 printk(KERN_ERR
"Can't find hose for PCI bus %d!\n", busnr
);
1716 bus
.ops
= hose
? hose
->ops
: &null_pci_ops
;
1720 #define EARLY_PCI_OP(rw, size, type) \
1721 int early_##rw##_config_##size(struct pci_controller *hose, int bus, \
1722 int devfn, int offset, type value) \
1724 return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus), \
1725 devfn, offset, value); \
1728 EARLY_PCI_OP(read
, byte
, u8
*)
1729 EARLY_PCI_OP(read
, word
, u16
*)
1730 EARLY_PCI_OP(read
, dword
, u32
*)
1731 EARLY_PCI_OP(write
, byte
, u8
)
1732 EARLY_PCI_OP(write
, word
, u16
)
1733 EARLY_PCI_OP(write
, dword
, u32
)
1735 int early_find_capability(struct pci_controller
*hose
, int bus
, int devfn
,
1738 return pci_bus_find_capability(fake_pci_bus(hose
, bus
), devfn
, cap
);