]> asedeno.scripts.mit.edu Git - linux.git/blob - arch/powerpc/kernel/pci-common.c
23989175349c5fed5ec930d2ad504ac651fa83e7
[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 #include <linux/kernel.h>
20 #include <linux/pci.h>
21 #include <linux/string.h>
22 #include <linux/init.h>
23 #include <linux/delay.h>
24 #include <linux/export.h>
25 #include <linux/of_address.h>
26 #include <linux/of_pci.h>
27 #include <linux/mm.h>
28 #include <linux/shmem_fs.h>
29 #include <linux/list.h>
30 #include <linux/syscalls.h>
31 #include <linux/irq.h>
32 #include <linux/vmalloc.h>
33 #include <linux/slab.h>
34 #include <linux/vgaarb.h>
35
36 #include <asm/processor.h>
37 #include <asm/io.h>
38 #include <asm/prom.h>
39 #include <asm/pci-bridge.h>
40 #include <asm/byteorder.h>
41 #include <asm/machdep.h>
42 #include <asm/ppc-pci.h>
43 #include <asm/eeh.h>
44
45 #include "../../../drivers/pci/pci.h"
46
47 /* hose_spinlock protects accesses to the the phb_bitmap. */
48 static DEFINE_SPINLOCK(hose_spinlock);
49 LIST_HEAD(hose_list);
50
51 /* For dynamic PHB numbering on get_phb_number(): max number of PHBs. */
52 #define MAX_PHBS 0x10000
53
54 /*
55  * For dynamic PHB numbering: used/free PHBs tracking bitmap.
56  * Accesses to this bitmap should be protected by hose_spinlock.
57  */
58 static DECLARE_BITMAP(phb_bitmap, MAX_PHBS);
59
60 /* ISA Memory physical address */
61 resource_size_t isa_mem_base;
62 EXPORT_SYMBOL(isa_mem_base);
63
64
65 static const struct dma_map_ops *pci_dma_ops;
66
67 void set_pci_dma_ops(const struct dma_map_ops *dma_ops)
68 {
69         pci_dma_ops = dma_ops;
70 }
71
72 /*
73  * This function should run under locking protection, specifically
74  * hose_spinlock.
75  */
76 static int get_phb_number(struct device_node *dn)
77 {
78         int ret, phb_id = -1;
79         u32 prop_32;
80         u64 prop;
81
82         /*
83          * Try fixed PHB numbering first, by checking archs and reading
84          * the respective device-tree properties. Firstly, try powernv by
85          * reading "ibm,opal-phbid", only present in OPAL environment.
86          */
87         ret = of_property_read_u64(dn, "ibm,opal-phbid", &prop);
88         if (ret) {
89                 ret = of_property_read_u32_index(dn, "reg", 1, &prop_32);
90                 prop = prop_32;
91         }
92
93         if (!ret)
94                 phb_id = (int)(prop & (MAX_PHBS - 1));
95
96         /* We need to be sure to not use the same PHB number twice. */
97         if ((phb_id >= 0) && !test_and_set_bit(phb_id, phb_bitmap))
98                 return phb_id;
99
100         /*
101          * If not pseries nor powernv, or if fixed PHB numbering tried to add
102          * the same PHB number twice, then fallback to dynamic PHB numbering.
103          */
104         phb_id = find_first_zero_bit(phb_bitmap, MAX_PHBS);
105         BUG_ON(phb_id >= MAX_PHBS);
106         set_bit(phb_id, phb_bitmap);
107
108         return phb_id;
109 }
110
111 struct pci_controller *pcibios_alloc_controller(struct device_node *dev)
112 {
113         struct pci_controller *phb;
114
115         phb = zalloc_maybe_bootmem(sizeof(struct pci_controller), GFP_KERNEL);
116         if (phb == NULL)
117                 return NULL;
118         spin_lock(&hose_spinlock);
119         phb->global_number = get_phb_number(dev);
120         list_add_tail(&phb->list_node, &hose_list);
121         spin_unlock(&hose_spinlock);
122         phb->dn = dev;
123         phb->is_dynamic = slab_is_available();
124 #ifdef CONFIG_PPC64
125         if (dev) {
126                 int nid = of_node_to_nid(dev);
127
128                 if (nid < 0 || !node_online(nid))
129                         nid = -1;
130
131                 PHB_SET_NODE(phb, nid);
132         }
133 #endif
134         return phb;
135 }
136 EXPORT_SYMBOL_GPL(pcibios_alloc_controller);
137
138 void pcibios_free_controller(struct pci_controller *phb)
139 {
140         spin_lock(&hose_spinlock);
141
142         /* Clear bit of phb_bitmap to allow reuse of this PHB number. */
143         if (phb->global_number < MAX_PHBS)
144                 clear_bit(phb->global_number, phb_bitmap);
145
146         list_del(&phb->list_node);
147         spin_unlock(&hose_spinlock);
148
149         if (phb->is_dynamic)
150                 kfree(phb);
151 }
152 EXPORT_SYMBOL_GPL(pcibios_free_controller);
153
154 /*
155  * This function is used to call pcibios_free_controller()
156  * in a deferred manner: a callback from the PCI subsystem.
157  *
158  * _*DO NOT*_ call pcibios_free_controller() explicitly if
159  * this is used (or it may access an invalid *phb pointer).
160  *
161  * The callback occurs when all references to the root bus
162  * are dropped (e.g., child buses/devices and their users).
163  *
164  * It's called as .release_fn() of 'struct pci_host_bridge'
165  * which is associated with the 'struct pci_controller.bus'
166  * (root bus) - it expects .release_data to hold a pointer
167  * to 'struct pci_controller'.
168  *
169  * In order to use it, register .release_fn()/release_data
170  * like this:
171  *
172  * pci_set_host_bridge_release(bridge,
173  *                             pcibios_free_controller_deferred
174  *                             (void *) phb);
175  *
176  * e.g. in the pcibios_root_bridge_prepare() callback from
177  * pci_create_root_bus().
178  */
179 void pcibios_free_controller_deferred(struct pci_host_bridge *bridge)
180 {
181         struct pci_controller *phb = (struct pci_controller *)
182                                          bridge->release_data;
183
184         pr_debug("domain %d, dynamic %d\n", phb->global_number, phb->is_dynamic);
185
186         pcibios_free_controller(phb);
187 }
188 EXPORT_SYMBOL_GPL(pcibios_free_controller_deferred);
189
190 /*
191  * The function is used to return the minimal alignment
192  * for memory or I/O windows of the associated P2P bridge.
193  * By default, 4KiB alignment for I/O windows and 1MiB for
194  * memory windows.
195  */
196 resource_size_t pcibios_window_alignment(struct pci_bus *bus,
197                                          unsigned long type)
198 {
199         struct pci_controller *phb = pci_bus_to_host(bus);
200
201         if (phb->controller_ops.window_alignment)
202                 return phb->controller_ops.window_alignment(bus, type);
203
204         /*
205          * PCI core will figure out the default
206          * alignment: 4KiB for I/O and 1MiB for
207          * memory window.
208          */
209         return 1;
210 }
211
212 void pcibios_setup_bridge(struct pci_bus *bus, unsigned long type)
213 {
214         struct pci_controller *hose = pci_bus_to_host(bus);
215
216         if (hose->controller_ops.setup_bridge)
217                 hose->controller_ops.setup_bridge(bus, type);
218 }
219
220 void pcibios_reset_secondary_bus(struct pci_dev *dev)
221 {
222         struct pci_controller *phb = pci_bus_to_host(dev->bus);
223
224         if (phb->controller_ops.reset_secondary_bus) {
225                 phb->controller_ops.reset_secondary_bus(dev);
226                 return;
227         }
228
229         pci_reset_secondary_bus(dev);
230 }
231
232 resource_size_t pcibios_default_alignment(void)
233 {
234         if (ppc_md.pcibios_default_alignment)
235                 return ppc_md.pcibios_default_alignment();
236
237         return 0;
238 }
239
240 #ifdef CONFIG_PCI_IOV
241 resource_size_t pcibios_iov_resource_alignment(struct pci_dev *pdev, int resno)
242 {
243         if (ppc_md.pcibios_iov_resource_alignment)
244                 return ppc_md.pcibios_iov_resource_alignment(pdev, resno);
245
246         return pci_iov_resource_size(pdev, resno);
247 }
248
249 int pcibios_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
250 {
251         if (ppc_md.pcibios_sriov_enable)
252                 return ppc_md.pcibios_sriov_enable(pdev, num_vfs);
253
254         return 0;
255 }
256
257 int pcibios_sriov_disable(struct pci_dev *pdev)
258 {
259         if (ppc_md.pcibios_sriov_disable)
260                 return ppc_md.pcibios_sriov_disable(pdev);
261
262         return 0;
263 }
264
265 #endif /* CONFIG_PCI_IOV */
266
267 void pcibios_bus_add_device(struct pci_dev *pdev)
268 {
269         if (ppc_md.pcibios_bus_add_device)
270                 ppc_md.pcibios_bus_add_device(pdev);
271 }
272
273 static resource_size_t pcibios_io_size(const struct pci_controller *hose)
274 {
275 #ifdef CONFIG_PPC64
276         return hose->pci_io_size;
277 #else
278         return resource_size(&hose->io_resource);
279 #endif
280 }
281
282 int pcibios_vaddr_is_ioport(void __iomem *address)
283 {
284         int ret = 0;
285         struct pci_controller *hose;
286         resource_size_t size;
287
288         spin_lock(&hose_spinlock);
289         list_for_each_entry(hose, &hose_list, list_node) {
290                 size = pcibios_io_size(hose);
291                 if (address >= hose->io_base_virt &&
292                     address < (hose->io_base_virt + size)) {
293                         ret = 1;
294                         break;
295                 }
296         }
297         spin_unlock(&hose_spinlock);
298         return ret;
299 }
300
301 unsigned long pci_address_to_pio(phys_addr_t address)
302 {
303         struct pci_controller *hose;
304         resource_size_t size;
305         unsigned long ret = ~0;
306
307         spin_lock(&hose_spinlock);
308         list_for_each_entry(hose, &hose_list, list_node) {
309                 size = pcibios_io_size(hose);
310                 if (address >= hose->io_base_phys &&
311                     address < (hose->io_base_phys + size)) {
312                         unsigned long base =
313                                 (unsigned long)hose->io_base_virt - _IO_BASE;
314                         ret = base + (address - hose->io_base_phys);
315                         break;
316                 }
317         }
318         spin_unlock(&hose_spinlock);
319
320         return ret;
321 }
322 EXPORT_SYMBOL_GPL(pci_address_to_pio);
323
324 /*
325  * Return the domain number for this bus.
326  */
327 int pci_domain_nr(struct pci_bus *bus)
328 {
329         struct pci_controller *hose = pci_bus_to_host(bus);
330
331         return hose->global_number;
332 }
333 EXPORT_SYMBOL(pci_domain_nr);
334
335 /* This routine is meant to be used early during boot, when the
336  * PCI bus numbers have not yet been assigned, and you need to
337  * issue PCI config cycles to an OF device.
338  * It could also be used to "fix" RTAS config cycles if you want
339  * to set pci_assign_all_buses to 1 and still use RTAS for PCI
340  * config cycles.
341  */
342 struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
343 {
344         while(node) {
345                 struct pci_controller *hose, *tmp;
346                 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
347                         if (hose->dn == node)
348                                 return hose;
349                 node = node->parent;
350         }
351         return NULL;
352 }
353
354 /*
355  * Reads the interrupt pin to determine if interrupt is use by card.
356  * If the interrupt is used, then gets the interrupt line from the
357  * openfirmware and sets it in the pci_dev and pci_config line.
358  */
359 static int pci_read_irq_line(struct pci_dev *pci_dev)
360 {
361         int virq;
362
363         pr_debug("PCI: Try to map irq for %s...\n", pci_name(pci_dev));
364
365         /* Try to get a mapping from the device-tree */
366         virq = of_irq_parse_and_map_pci(pci_dev, 0, 0);
367         if (virq <= 0) {
368                 u8 line, pin;
369
370                 /* If that fails, lets fallback to what is in the config
371                  * space and map that through the default controller. We
372                  * also set the type to level low since that's what PCI
373                  * interrupts are. If your platform does differently, then
374                  * either provide a proper interrupt tree or don't use this
375                  * function.
376                  */
377                 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
378                         return -1;
379                 if (pin == 0)
380                         return -1;
381                 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
382                     line == 0xff || line == 0) {
383                         return -1;
384                 }
385                 pr_debug(" No map ! Using line %d (pin %d) from PCI config\n",
386                          line, pin);
387
388                 virq = irq_create_mapping(NULL, line);
389                 if (virq)
390                         irq_set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
391         }
392
393         if (!virq) {
394                 pr_debug(" Failed to map !\n");
395                 return -1;
396         }
397
398         pr_debug(" Mapped to linux irq %d\n", virq);
399
400         pci_dev->irq = virq;
401
402         return 0;
403 }
404
405 /*
406  * Platform support for /proc/bus/pci/X/Y mmap()s.
407  *  -- paulus.
408  */
409 int pci_iobar_pfn(struct pci_dev *pdev, int bar, struct vm_area_struct *vma)
410 {
411         struct pci_controller *hose = pci_bus_to_host(pdev->bus);
412         resource_size_t ioaddr = pci_resource_start(pdev, bar);
413
414         if (!hose)
415                 return -EINVAL;
416
417         /* Convert to an offset within this PCI controller */
418         ioaddr -= (unsigned long)hose->io_base_virt - _IO_BASE;
419
420         vma->vm_pgoff += (ioaddr + hose->io_base_phys) >> PAGE_SHIFT;
421         return 0;
422 }
423
424 /*
425  * This one is used by /dev/mem and fbdev who have no clue about the
426  * PCI device, it tries to find the PCI device first and calls the
427  * above routine
428  */
429 pgprot_t pci_phys_mem_access_prot(struct file *file,
430                                   unsigned long pfn,
431                                   unsigned long size,
432                                   pgprot_t prot)
433 {
434         struct pci_dev *pdev = NULL;
435         struct resource *found = NULL;
436         resource_size_t offset = ((resource_size_t)pfn) << PAGE_SHIFT;
437         int i;
438
439         if (page_is_ram(pfn))
440                 return prot;
441
442         prot = pgprot_noncached(prot);
443         for_each_pci_dev(pdev) {
444                 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
445                         struct resource *rp = &pdev->resource[i];
446                         int flags = rp->flags;
447
448                         /* Active and same type? */
449                         if ((flags & IORESOURCE_MEM) == 0)
450                                 continue;
451                         /* In the range of this resource? */
452                         if (offset < (rp->start & PAGE_MASK) ||
453                             offset > rp->end)
454                                 continue;
455                         found = rp;
456                         break;
457                 }
458                 if (found)
459                         break;
460         }
461         if (found) {
462                 if (found->flags & IORESOURCE_PREFETCH)
463                         prot = pgprot_noncached_wc(prot);
464                 pci_dev_put(pdev);
465         }
466
467         pr_debug("PCI: Non-PCI map for %llx, prot: %lx\n",
468                  (unsigned long long)offset, pgprot_val(prot));
469
470         return prot;
471 }
472
473 /* This provides legacy IO read access on a bus */
474 int pci_legacy_read(struct pci_bus *bus, loff_t port, u32 *val, size_t size)
475 {
476         unsigned long offset;
477         struct pci_controller *hose = pci_bus_to_host(bus);
478         struct resource *rp = &hose->io_resource;
479         void __iomem *addr;
480
481         /* Check if port can be supported by that bus. We only check
482          * the ranges of the PHB though, not the bus itself as the rules
483          * for forwarding legacy cycles down bridges are not our problem
484          * here. So if the host bridge supports it, we do it.
485          */
486         offset = (unsigned long)hose->io_base_virt - _IO_BASE;
487         offset += port;
488
489         if (!(rp->flags & IORESOURCE_IO))
490                 return -ENXIO;
491         if (offset < rp->start || (offset + size) > rp->end)
492                 return -ENXIO;
493         addr = hose->io_base_virt + port;
494
495         switch(size) {
496         case 1:
497                 *((u8 *)val) = in_8(addr);
498                 return 1;
499         case 2:
500                 if (port & 1)
501                         return -EINVAL;
502                 *((u16 *)val) = in_le16(addr);
503                 return 2;
504         case 4:
505                 if (port & 3)
506                         return -EINVAL;
507                 *((u32 *)val) = in_le32(addr);
508                 return 4;
509         }
510         return -EINVAL;
511 }
512
513 /* This provides legacy IO write access on a bus */
514 int pci_legacy_write(struct pci_bus *bus, loff_t port, u32 val, size_t size)
515 {
516         unsigned long offset;
517         struct pci_controller *hose = pci_bus_to_host(bus);
518         struct resource *rp = &hose->io_resource;
519         void __iomem *addr;
520
521         /* Check if port can be supported by that bus. We only check
522          * the ranges of the PHB though, not the bus itself as the rules
523          * for forwarding legacy cycles down bridges are not our problem
524          * here. So if the host bridge supports it, we do it.
525          */
526         offset = (unsigned long)hose->io_base_virt - _IO_BASE;
527         offset += port;
528
529         if (!(rp->flags & IORESOURCE_IO))
530                 return -ENXIO;
531         if (offset < rp->start || (offset + size) > rp->end)
532                 return -ENXIO;
533         addr = hose->io_base_virt + port;
534
535         /* WARNING: The generic code is idiotic. It gets passed a pointer
536          * to what can be a 1, 2 or 4 byte quantity and always reads that
537          * as a u32, which means that we have to correct the location of
538          * the data read within those 32 bits for size 1 and 2
539          */
540         switch(size) {
541         case 1:
542                 out_8(addr, val >> 24);
543                 return 1;
544         case 2:
545                 if (port & 1)
546                         return -EINVAL;
547                 out_le16(addr, val >> 16);
548                 return 2;
549         case 4:
550                 if (port & 3)
551                         return -EINVAL;
552                 out_le32(addr, val);
553                 return 4;
554         }
555         return -EINVAL;
556 }
557
558 /* This provides legacy IO or memory mmap access on a bus */
559 int pci_mmap_legacy_page_range(struct pci_bus *bus,
560                                struct vm_area_struct *vma,
561                                enum pci_mmap_state mmap_state)
562 {
563         struct pci_controller *hose = pci_bus_to_host(bus);
564         resource_size_t offset =
565                 ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
566         resource_size_t size = vma->vm_end - vma->vm_start;
567         struct resource *rp;
568
569         pr_debug("pci_mmap_legacy_page_range(%04x:%02x, %s @%llx..%llx)\n",
570                  pci_domain_nr(bus), bus->number,
571                  mmap_state == pci_mmap_mem ? "MEM" : "IO",
572                  (unsigned long long)offset,
573                  (unsigned long long)(offset + size - 1));
574
575         if (mmap_state == pci_mmap_mem) {
576                 /* Hack alert !
577                  *
578                  * Because X is lame and can fail starting if it gets an error trying
579                  * to mmap legacy_mem (instead of just moving on without legacy memory
580                  * access) we fake it here by giving it anonymous memory, effectively
581                  * behaving just like /dev/zero
582                  */
583                 if ((offset + size) > hose->isa_mem_size) {
584                         printk(KERN_DEBUG
585                                "Process %s (pid:%d) mapped non-existing PCI legacy memory for 0%04x:%02x\n",
586                                current->comm, current->pid, pci_domain_nr(bus), bus->number);
587                         if (vma->vm_flags & VM_SHARED)
588                                 return shmem_zero_setup(vma);
589                         return 0;
590                 }
591                 offset += hose->isa_mem_phys;
592         } else {
593                 unsigned long io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
594                 unsigned long roffset = offset + io_offset;
595                 rp = &hose->io_resource;
596                 if (!(rp->flags & IORESOURCE_IO))
597                         return -ENXIO;
598                 if (roffset < rp->start || (roffset + size) > rp->end)
599                         return -ENXIO;
600                 offset += hose->io_base_phys;
601         }
602         pr_debug(" -> mapping phys %llx\n", (unsigned long long)offset);
603
604         vma->vm_pgoff = offset >> PAGE_SHIFT;
605         vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
606         return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
607                                vma->vm_end - vma->vm_start,
608                                vma->vm_page_prot);
609 }
610
611 void pci_resource_to_user(const struct pci_dev *dev, int bar,
612                           const struct resource *rsrc,
613                           resource_size_t *start, resource_size_t *end)
614 {
615         struct pci_bus_region region;
616
617         if (rsrc->flags & IORESOURCE_IO) {
618                 pcibios_resource_to_bus(dev->bus, &region,
619                                         (struct resource *) rsrc);
620                 *start = region.start;
621                 *end = region.end;
622                 return;
623         }
624
625         /* We pass a CPU physical address to userland for MMIO instead of a
626          * BAR value because X is lame and expects to be able to use that
627          * to pass to /dev/mem!
628          *
629          * That means we may have 64-bit values where some apps only expect
630          * 32 (like X itself since it thinks only Sparc has 64-bit MMIO).
631          */
632         *start = rsrc->start;
633         *end = rsrc->end;
634 }
635
636 /**
637  * pci_process_bridge_OF_ranges - Parse PCI bridge resources from device tree
638  * @hose: newly allocated pci_controller to be setup
639  * @dev: device node of the host bridge
640  * @primary: set if primary bus (32 bits only, soon to be deprecated)
641  *
642  * This function will parse the "ranges" property of a PCI host bridge device
643  * node and setup the resource mapping of a pci controller based on its
644  * content.
645  *
646  * Life would be boring if it wasn't for a few issues that we have to deal
647  * with here:
648  *
649  *   - We can only cope with one IO space range and up to 3 Memory space
650  *     ranges. However, some machines (thanks Apple !) tend to split their
651  *     space into lots of small contiguous ranges. So we have to coalesce.
652  *
653  *   - Some busses have IO space not starting at 0, which causes trouble with
654  *     the way we do our IO resource renumbering. The code somewhat deals with
655  *     it for 64 bits but I would expect problems on 32 bits.
656  *
657  *   - Some 32 bits platforms such as 4xx can have physical space larger than
658  *     32 bits so we need to use 64 bits values for the parsing
659  */
660 void pci_process_bridge_OF_ranges(struct pci_controller *hose,
661                                   struct device_node *dev, int primary)
662 {
663         int memno = 0;
664         struct resource *res;
665         struct of_pci_range range;
666         struct of_pci_range_parser parser;
667
668         printk(KERN_INFO "PCI host bridge %pOF %s ranges:\n",
669                dev, primary ? "(primary)" : "");
670
671         /* Check for ranges property */
672         if (of_pci_range_parser_init(&parser, dev))
673                 return;
674
675         /* Parse it */
676         for_each_of_pci_range(&parser, &range) {
677                 /* If we failed translation or got a zero-sized region
678                  * (some FW try to feed us with non sensical zero sized regions
679                  * such as power3 which look like some kind of attempt at exposing
680                  * the VGA memory hole)
681                  */
682                 if (range.cpu_addr == OF_BAD_ADDR || range.size == 0)
683                         continue;
684
685                 /* Act based on address space type */
686                 res = NULL;
687                 switch (range.flags & IORESOURCE_TYPE_BITS) {
688                 case IORESOURCE_IO:
689                         printk(KERN_INFO
690                                "  IO 0x%016llx..0x%016llx -> 0x%016llx\n",
691                                range.cpu_addr, range.cpu_addr + range.size - 1,
692                                range.pci_addr);
693
694                         /* We support only one IO range */
695                         if (hose->pci_io_size) {
696                                 printk(KERN_INFO
697                                        " \\--> Skipped (too many) !\n");
698                                 continue;
699                         }
700 #ifdef CONFIG_PPC32
701                         /* On 32 bits, limit I/O space to 16MB */
702                         if (range.size > 0x01000000)
703                                 range.size = 0x01000000;
704
705                         /* 32 bits needs to map IOs here */
706                         hose->io_base_virt = ioremap(range.cpu_addr,
707                                                 range.size);
708
709                         /* Expect trouble if pci_addr is not 0 */
710                         if (primary)
711                                 isa_io_base =
712                                         (unsigned long)hose->io_base_virt;
713 #endif /* CONFIG_PPC32 */
714                         /* pci_io_size and io_base_phys always represent IO
715                          * space starting at 0 so we factor in pci_addr
716                          */
717                         hose->pci_io_size = range.pci_addr + range.size;
718                         hose->io_base_phys = range.cpu_addr - range.pci_addr;
719
720                         /* Build resource */
721                         res = &hose->io_resource;
722                         range.cpu_addr = range.pci_addr;
723                         break;
724                 case IORESOURCE_MEM:
725                         printk(KERN_INFO
726                                " MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",
727                                range.cpu_addr, range.cpu_addr + range.size - 1,
728                                range.pci_addr,
729                                (range.pci_space & 0x40000000) ?
730                                "Prefetch" : "");
731
732                         /* We support only 3 memory ranges */
733                         if (memno >= 3) {
734                                 printk(KERN_INFO
735                                        " \\--> Skipped (too many) !\n");
736                                 continue;
737                         }
738                         /* Handles ISA memory hole space here */
739                         if (range.pci_addr == 0) {
740                                 if (primary || isa_mem_base == 0)
741                                         isa_mem_base = range.cpu_addr;
742                                 hose->isa_mem_phys = range.cpu_addr;
743                                 hose->isa_mem_size = range.size;
744                         }
745
746                         /* Build resource */
747                         hose->mem_offset[memno] = range.cpu_addr -
748                                                         range.pci_addr;
749                         res = &hose->mem_resources[memno++];
750                         break;
751                 }
752                 if (res != NULL) {
753                         res->name = dev->full_name;
754                         res->flags = range.flags;
755                         res->start = range.cpu_addr;
756                         res->end = range.cpu_addr + range.size - 1;
757                         res->parent = res->child = res->sibling = NULL;
758                 }
759         }
760 }
761
762 /* Decide whether to display the domain number in /proc */
763 int pci_proc_domain(struct pci_bus *bus)
764 {
765         struct pci_controller *hose = pci_bus_to_host(bus);
766
767         if (!pci_has_flag(PCI_ENABLE_PROC_DOMAINS))
768                 return 0;
769         if (pci_has_flag(PCI_COMPAT_DOMAIN_0))
770                 return hose->global_number != 0;
771         return 1;
772 }
773
774 int pcibios_root_bridge_prepare(struct pci_host_bridge *bridge)
775 {
776         if (ppc_md.pcibios_root_bridge_prepare)
777                 return ppc_md.pcibios_root_bridge_prepare(bridge);
778
779         return 0;
780 }
781
782 /* This header fixup will do the resource fixup for all devices as they are
783  * probed, but not for bridge ranges
784  */
785 static void pcibios_fixup_resources(struct pci_dev *dev)
786 {
787         struct pci_controller *hose = pci_bus_to_host(dev->bus);
788         int i;
789
790         if (!hose) {
791                 printk(KERN_ERR "No host bridge for PCI dev %s !\n",
792                        pci_name(dev));
793                 return;
794         }
795
796         if (dev->is_virtfn)
797                 return;
798
799         for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
800                 struct resource *res = dev->resource + i;
801                 struct pci_bus_region reg;
802                 if (!res->flags)
803                         continue;
804
805                 /* If we're going to re-assign everything, we mark all resources
806                  * as unset (and 0-base them). In addition, we mark BARs starting
807                  * at 0 as unset as well, except if PCI_PROBE_ONLY is also set
808                  * since in that case, we don't want to re-assign anything
809                  */
810                 pcibios_resource_to_bus(dev->bus, &reg, res);
811                 if (pci_has_flag(PCI_REASSIGN_ALL_RSRC) ||
812                     (reg.start == 0 && !pci_has_flag(PCI_PROBE_ONLY))) {
813                         /* Only print message if not re-assigning */
814                         if (!pci_has_flag(PCI_REASSIGN_ALL_RSRC))
815                                 pr_debug("PCI:%s Resource %d %pR is unassigned\n",
816                                          pci_name(dev), i, res);
817                         res->end -= res->start;
818                         res->start = 0;
819                         res->flags |= IORESOURCE_UNSET;
820                         continue;
821                 }
822
823                 pr_debug("PCI:%s Resource %d %pR\n", pci_name(dev), i, res);
824         }
825
826         /* Call machine specific resource fixup */
827         if (ppc_md.pcibios_fixup_resources)
828                 ppc_md.pcibios_fixup_resources(dev);
829 }
830 DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
831
832 /* This function tries to figure out if a bridge resource has been initialized
833  * by the firmware or not. It doesn't have to be absolutely bullet proof, but
834  * things go more smoothly when it gets it right. It should covers cases such
835  * as Apple "closed" bridge resources and bare-metal pSeries unassigned bridges
836  */
837 static int pcibios_uninitialized_bridge_resource(struct pci_bus *bus,
838                                                  struct resource *res)
839 {
840         struct pci_controller *hose = pci_bus_to_host(bus);
841         struct pci_dev *dev = bus->self;
842         resource_size_t offset;
843         struct pci_bus_region region;
844         u16 command;
845         int i;
846
847         /* We don't do anything if PCI_PROBE_ONLY is set */
848         if (pci_has_flag(PCI_PROBE_ONLY))
849                 return 0;
850
851         /* Job is a bit different between memory and IO */
852         if (res->flags & IORESOURCE_MEM) {
853                 pcibios_resource_to_bus(dev->bus, &region, res);
854
855                 /* If the BAR is non-0 then it's probably been initialized */
856                 if (region.start != 0)
857                         return 0;
858
859                 /* The BAR is 0, let's check if memory decoding is enabled on
860                  * the bridge. If not, we consider it unassigned
861                  */
862                 pci_read_config_word(dev, PCI_COMMAND, &command);
863                 if ((command & PCI_COMMAND_MEMORY) == 0)
864                         return 1;
865
866                 /* Memory decoding is enabled and the BAR is 0. If any of the bridge
867                  * resources covers that starting address (0 then it's good enough for
868                  * us for memory space)
869                  */
870                 for (i = 0; i < 3; i++) {
871                         if ((hose->mem_resources[i].flags & IORESOURCE_MEM) &&
872                             hose->mem_resources[i].start == hose->mem_offset[i])
873                                 return 0;
874                 }
875
876                 /* Well, it starts at 0 and we know it will collide so we may as
877                  * well consider it as unassigned. That covers the Apple case.
878                  */
879                 return 1;
880         } else {
881                 /* If the BAR is non-0, then we consider it assigned */
882                 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
883                 if (((res->start - offset) & 0xfffffffful) != 0)
884                         return 0;
885
886                 /* Here, we are a bit different than memory as typically IO space
887                  * starting at low addresses -is- valid. What we do instead if that
888                  * we consider as unassigned anything that doesn't have IO enabled
889                  * in the PCI command register, and that's it.
890                  */
891                 pci_read_config_word(dev, PCI_COMMAND, &command);
892                 if (command & PCI_COMMAND_IO)
893                         return 0;
894
895                 /* It's starting at 0 and IO is disabled in the bridge, consider
896                  * it unassigned
897                  */
898                 return 1;
899         }
900 }
901
902 /* Fixup resources of a PCI<->PCI bridge */
903 static void pcibios_fixup_bridge(struct pci_bus *bus)
904 {
905         struct resource *res;
906         int i;
907
908         struct pci_dev *dev = bus->self;
909
910         pci_bus_for_each_resource(bus, res, i) {
911                 if (!res || !res->flags)
912                         continue;
913                 if (i >= 3 && bus->self->transparent)
914                         continue;
915
916                 /* If we're going to reassign everything, we can
917                  * shrink the P2P resource to have size as being
918                  * of 0 in order to save space.
919                  */
920                 if (pci_has_flag(PCI_REASSIGN_ALL_RSRC)) {
921                         res->flags |= IORESOURCE_UNSET;
922                         res->start = 0;
923                         res->end = -1;
924                         continue;
925                 }
926
927                 pr_debug("PCI:%s Bus rsrc %d %pR\n", pci_name(dev), i, res);
928
929                 /* Try to detect uninitialized P2P bridge resources,
930                  * and clear them out so they get re-assigned later
931                  */
932                 if (pcibios_uninitialized_bridge_resource(bus, res)) {
933                         res->flags = 0;
934                         pr_debug("PCI:%s            (unassigned)\n", pci_name(dev));
935                 }
936         }
937 }
938
939 void pcibios_setup_bus_self(struct pci_bus *bus)
940 {
941         struct pci_controller *phb;
942
943         /* Fix up the bus resources for P2P bridges */
944         if (bus->self != NULL)
945                 pcibios_fixup_bridge(bus);
946
947         /* Platform specific bus fixups. This is currently only used
948          * by fsl_pci and I'm hoping to get rid of it at some point
949          */
950         if (ppc_md.pcibios_fixup_bus)
951                 ppc_md.pcibios_fixup_bus(bus);
952
953         /* Setup bus DMA mappings */
954         phb = pci_bus_to_host(bus);
955         if (phb->controller_ops.dma_bus_setup)
956                 phb->controller_ops.dma_bus_setup(bus);
957 }
958
959 static void pcibios_setup_device(struct pci_dev *dev)
960 {
961         struct pci_controller *phb;
962         /* Fixup NUMA node as it may not be setup yet by the generic
963          * code and is needed by the DMA init
964          */
965         set_dev_node(&dev->dev, pcibus_to_node(dev->bus));
966
967         /* Hook up default DMA ops */
968         set_dma_ops(&dev->dev, pci_dma_ops);
969         set_dma_offset(&dev->dev, PCI_DRAM_OFFSET);
970
971         /* Additional platform DMA/iommu setup */
972         phb = pci_bus_to_host(dev->bus);
973         if (phb->controller_ops.dma_dev_setup)
974                 phb->controller_ops.dma_dev_setup(dev);
975
976         /* Read default IRQs and fixup if necessary */
977         pci_read_irq_line(dev);
978         if (ppc_md.pci_irq_fixup)
979                 ppc_md.pci_irq_fixup(dev);
980 }
981
982 int pcibios_add_device(struct pci_dev *dev)
983 {
984         /*
985          * We can only call pcibios_setup_device() after bus setup is complete,
986          * since some of the platform specific DMA setup code depends on it.
987          */
988         if (dev->bus->is_added)
989                 pcibios_setup_device(dev);
990
991 #ifdef CONFIG_PCI_IOV
992         if (ppc_md.pcibios_fixup_sriov)
993                 ppc_md.pcibios_fixup_sriov(dev);
994 #endif /* CONFIG_PCI_IOV */
995
996         return 0;
997 }
998
999 void pcibios_setup_bus_devices(struct pci_bus *bus)
1000 {
1001         struct pci_dev *dev;
1002
1003         pr_debug("PCI: Fixup bus devices %d (%s)\n",
1004                  bus->number, bus->self ? pci_name(bus->self) : "PHB");
1005
1006         list_for_each_entry(dev, &bus->devices, bus_list) {
1007                 /* Cardbus can call us to add new devices to a bus, so ignore
1008                  * those who are already fully discovered
1009                  */
1010                 if (pci_dev_is_added(dev))
1011                         continue;
1012
1013                 pcibios_setup_device(dev);
1014         }
1015 }
1016
1017 void pcibios_set_master(struct pci_dev *dev)
1018 {
1019         /* No special bus mastering setup handling */
1020 }
1021
1022 void pcibios_fixup_bus(struct pci_bus *bus)
1023 {
1024         /* When called from the generic PCI probe, read PCI<->PCI bridge
1025          * bases. This is -not- called when generating the PCI tree from
1026          * the OF device-tree.
1027          */
1028         pci_read_bridge_bases(bus);
1029
1030         /* Now fixup the bus bus */
1031         pcibios_setup_bus_self(bus);
1032
1033         /* Now fixup devices on that bus */
1034         pcibios_setup_bus_devices(bus);
1035 }
1036 EXPORT_SYMBOL(pcibios_fixup_bus);
1037
1038 void pci_fixup_cardbus(struct pci_bus *bus)
1039 {
1040         /* Now fixup devices on that bus */
1041         pcibios_setup_bus_devices(bus);
1042 }
1043
1044
1045 static int skip_isa_ioresource_align(struct pci_dev *dev)
1046 {
1047         if (pci_has_flag(PCI_CAN_SKIP_ISA_ALIGN) &&
1048             !(dev->bus->bridge_ctl & PCI_BRIDGE_CTL_ISA))
1049                 return 1;
1050         return 0;
1051 }
1052
1053 /*
1054  * We need to avoid collisions with `mirrored' VGA ports
1055  * and other strange ISA hardware, so we always want the
1056  * addresses to be allocated in the 0x000-0x0ff region
1057  * modulo 0x400.
1058  *
1059  * Why? Because some silly external IO cards only decode
1060  * the low 10 bits of the IO address. The 0x00-0xff region
1061  * is reserved for motherboard devices that decode all 16
1062  * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
1063  * but we want to try to avoid allocating at 0x2900-0x2bff
1064  * which might have be mirrored at 0x0100-0x03ff..
1065  */
1066 resource_size_t pcibios_align_resource(void *data, const struct resource *res,
1067                                 resource_size_t size, resource_size_t align)
1068 {
1069         struct pci_dev *dev = data;
1070         resource_size_t start = res->start;
1071
1072         if (res->flags & IORESOURCE_IO) {
1073                 if (skip_isa_ioresource_align(dev))
1074                         return start;
1075                 if (start & 0x300)
1076                         start = (start + 0x3ff) & ~0x3ff;
1077         }
1078
1079         return start;
1080 }
1081 EXPORT_SYMBOL(pcibios_align_resource);
1082
1083 /*
1084  * Reparent resource children of pr that conflict with res
1085  * under res, and make res replace those children.
1086  */
1087 static int reparent_resources(struct resource *parent,
1088                                      struct resource *res)
1089 {
1090         struct resource *p, **pp;
1091         struct resource **firstpp = NULL;
1092
1093         for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {
1094                 if (p->end < res->start)
1095                         continue;
1096                 if (res->end < p->start)
1097                         break;
1098                 if (p->start < res->start || p->end > res->end)
1099                         return -1;      /* not completely contained */
1100                 if (firstpp == NULL)
1101                         firstpp = pp;
1102         }
1103         if (firstpp == NULL)
1104                 return -1;      /* didn't find any conflicting entries? */
1105         res->parent = parent;
1106         res->child = *firstpp;
1107         res->sibling = *pp;
1108         *firstpp = res;
1109         *pp = NULL;
1110         for (p = res->child; p != NULL; p = p->sibling) {
1111                 p->parent = res;
1112                 pr_debug("PCI: Reparented %s %pR under %s\n",
1113                          p->name, p, res->name);
1114         }
1115         return 0;
1116 }
1117
1118 /*
1119  *  Handle resources of PCI devices.  If the world were perfect, we could
1120  *  just allocate all the resource regions and do nothing more.  It isn't.
1121  *  On the other hand, we cannot just re-allocate all devices, as it would
1122  *  require us to know lots of host bridge internals.  So we attempt to
1123  *  keep as much of the original configuration as possible, but tweak it
1124  *  when it's found to be wrong.
1125  *
1126  *  Known BIOS problems we have to work around:
1127  *      - I/O or memory regions not configured
1128  *      - regions configured, but not enabled in the command register
1129  *      - bogus I/O addresses above 64K used
1130  *      - expansion ROMs left enabled (this may sound harmless, but given
1131  *        the fact the PCI specs explicitly allow address decoders to be
1132  *        shared between expansion ROMs and other resource regions, it's
1133  *        at least dangerous)
1134  *
1135  *  Our solution:
1136  *      (1) Allocate resources for all buses behind PCI-to-PCI bridges.
1137  *          This gives us fixed barriers on where we can allocate.
1138  *      (2) Allocate resources for all enabled devices.  If there is
1139  *          a collision, just mark the resource as unallocated. Also
1140  *          disable expansion ROMs during this step.
1141  *      (3) Try to allocate resources for disabled devices.  If the
1142  *          resources were assigned correctly, everything goes well,
1143  *          if they weren't, they won't disturb allocation of other
1144  *          resources.
1145  *      (4) Assign new addresses to resources which were either
1146  *          not configured at all or misconfigured.  If explicitly
1147  *          requested by the user, configure expansion ROM address
1148  *          as well.
1149  */
1150
1151 static void pcibios_allocate_bus_resources(struct pci_bus *bus)
1152 {
1153         struct pci_bus *b;
1154         int i;
1155         struct resource *res, *pr;
1156
1157         pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
1158                  pci_domain_nr(bus), bus->number);
1159
1160         pci_bus_for_each_resource(bus, res, i) {
1161                 if (!res || !res->flags || res->start > res->end || res->parent)
1162                         continue;
1163
1164                 /* If the resource was left unset at this point, we clear it */
1165                 if (res->flags & IORESOURCE_UNSET)
1166                         goto clear_resource;
1167
1168                 if (bus->parent == NULL)
1169                         pr = (res->flags & IORESOURCE_IO) ?
1170                                 &ioport_resource : &iomem_resource;
1171                 else {
1172                         pr = pci_find_parent_resource(bus->self, res);
1173                         if (pr == res) {
1174                                 /* this happens when the generic PCI
1175                                  * code (wrongly) decides that this
1176                                  * bridge is transparent  -- paulus
1177                                  */
1178                                 continue;
1179                         }
1180                 }
1181
1182                 pr_debug("PCI: %s (bus %d) bridge rsrc %d: %pR, parent %p (%s)\n",
1183                          bus->self ? pci_name(bus->self) : "PHB", bus->number,
1184                          i, res, pr, (pr && pr->name) ? pr->name : "nil");
1185
1186                 if (pr && !(pr->flags & IORESOURCE_UNSET)) {
1187                         struct pci_dev *dev = bus->self;
1188
1189                         if (request_resource(pr, res) == 0)
1190                                 continue;
1191                         /*
1192                          * Must be a conflict with an existing entry.
1193                          * Move that entry (or entries) under the
1194                          * bridge resource and try again.
1195                          */
1196                         if (reparent_resources(pr, res) == 0)
1197                                 continue;
1198
1199                         if (dev && i < PCI_BRIDGE_RESOURCE_NUM &&
1200                             pci_claim_bridge_resource(dev,
1201                                                 i + PCI_BRIDGE_RESOURCES) == 0)
1202                                 continue;
1203                 }
1204                 pr_warn("PCI: Cannot allocate resource region %d of PCI bridge %d, will remap\n",
1205                         i, bus->number);
1206         clear_resource:
1207                 /* The resource might be figured out when doing
1208                  * reassignment based on the resources required
1209                  * by the downstream PCI devices. Here we set
1210                  * the size of the resource to be 0 in order to
1211                  * save more space.
1212                  */
1213                 res->start = 0;
1214                 res->end = -1;
1215                 res->flags = 0;
1216         }
1217
1218         list_for_each_entry(b, &bus->children, node)
1219                 pcibios_allocate_bus_resources(b);
1220 }
1221
1222 static inline void alloc_resource(struct pci_dev *dev, int idx)
1223 {
1224         struct resource *pr, *r = &dev->resource[idx];
1225
1226         pr_debug("PCI: Allocating %s: Resource %d: %pR\n",
1227                  pci_name(dev), idx, r);
1228
1229         pr = pci_find_parent_resource(dev, r);
1230         if (!pr || (pr->flags & IORESOURCE_UNSET) ||
1231             request_resource(pr, r) < 0) {
1232                 printk(KERN_WARNING "PCI: Cannot allocate resource region %d"
1233                        " of device %s, will remap\n", idx, pci_name(dev));
1234                 if (pr)
1235                         pr_debug("PCI:  parent is %p: %pR\n", pr, pr);
1236                 /* We'll assign a new address later */
1237                 r->flags |= IORESOURCE_UNSET;
1238                 r->end -= r->start;
1239                 r->start = 0;
1240         }
1241 }
1242
1243 static void __init pcibios_allocate_resources(int pass)
1244 {
1245         struct pci_dev *dev = NULL;
1246         int idx, disabled;
1247         u16 command;
1248         struct resource *r;
1249
1250         for_each_pci_dev(dev) {
1251                 pci_read_config_word(dev, PCI_COMMAND, &command);
1252                 for (idx = 0; idx <= PCI_ROM_RESOURCE; idx++) {
1253                         r = &dev->resource[idx];
1254                         if (r->parent)          /* Already allocated */
1255                                 continue;
1256                         if (!r->flags || (r->flags & IORESOURCE_UNSET))
1257                                 continue;       /* Not assigned at all */
1258                         /* We only allocate ROMs on pass 1 just in case they
1259                          * have been screwed up by firmware
1260                          */
1261                         if (idx == PCI_ROM_RESOURCE )
1262                                 disabled = 1;
1263                         if (r->flags & IORESOURCE_IO)
1264                                 disabled = !(command & PCI_COMMAND_IO);
1265                         else
1266                                 disabled = !(command & PCI_COMMAND_MEMORY);
1267                         if (pass == disabled)
1268                                 alloc_resource(dev, idx);
1269                 }
1270                 if (pass)
1271                         continue;
1272                 r = &dev->resource[PCI_ROM_RESOURCE];
1273                 if (r->flags) {
1274                         /* Turn the ROM off, leave the resource region,
1275                          * but keep it unregistered.
1276                          */
1277                         u32 reg;
1278                         pci_read_config_dword(dev, dev->rom_base_reg, &reg);
1279                         if (reg & PCI_ROM_ADDRESS_ENABLE) {
1280                                 pr_debug("PCI: Switching off ROM of %s\n",
1281                                          pci_name(dev));
1282                                 r->flags &= ~IORESOURCE_ROM_ENABLE;
1283                                 pci_write_config_dword(dev, dev->rom_base_reg,
1284                                                        reg & ~PCI_ROM_ADDRESS_ENABLE);
1285                         }
1286                 }
1287         }
1288 }
1289
1290 static void __init pcibios_reserve_legacy_regions(struct pci_bus *bus)
1291 {
1292         struct pci_controller *hose = pci_bus_to_host(bus);
1293         resource_size_t offset;
1294         struct resource *res, *pres;
1295         int i;
1296
1297         pr_debug("Reserving legacy ranges for domain %04x\n", pci_domain_nr(bus));
1298
1299         /* Check for IO */
1300         if (!(hose->io_resource.flags & IORESOURCE_IO))
1301                 goto no_io;
1302         offset = (unsigned long)hose->io_base_virt - _IO_BASE;
1303         res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1304         BUG_ON(res == NULL);
1305         res->name = "Legacy IO";
1306         res->flags = IORESOURCE_IO;
1307         res->start = offset;
1308         res->end = (offset + 0xfff) & 0xfffffffful;
1309         pr_debug("Candidate legacy IO: %pR\n", res);
1310         if (request_resource(&hose->io_resource, res)) {
1311                 printk(KERN_DEBUG
1312                        "PCI %04x:%02x Cannot reserve Legacy IO %pR\n",
1313                        pci_domain_nr(bus), bus->number, res);
1314                 kfree(res);
1315         }
1316
1317  no_io:
1318         /* Check for memory */
1319         for (i = 0; i < 3; i++) {
1320                 pres = &hose->mem_resources[i];
1321                 offset = hose->mem_offset[i];
1322                 if (!(pres->flags & IORESOURCE_MEM))
1323                         continue;
1324                 pr_debug("hose mem res: %pR\n", pres);
1325                 if ((pres->start - offset) <= 0xa0000 &&
1326                     (pres->end - offset) >= 0xbffff)
1327                         break;
1328         }
1329         if (i >= 3)
1330                 return;
1331         res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1332         BUG_ON(res == NULL);
1333         res->name = "Legacy VGA memory";
1334         res->flags = IORESOURCE_MEM;
1335         res->start = 0xa0000 + offset;
1336         res->end = 0xbffff + offset;
1337         pr_debug("Candidate VGA memory: %pR\n", res);
1338         if (request_resource(pres, res)) {
1339                 printk(KERN_DEBUG
1340                        "PCI %04x:%02x Cannot reserve VGA memory %pR\n",
1341                        pci_domain_nr(bus), bus->number, res);
1342                 kfree(res);
1343         }
1344 }
1345
1346 void __init pcibios_resource_survey(void)
1347 {
1348         struct pci_bus *b;
1349
1350         /* Allocate and assign resources */
1351         list_for_each_entry(b, &pci_root_buses, node)
1352                 pcibios_allocate_bus_resources(b);
1353         if (!pci_has_flag(PCI_REASSIGN_ALL_RSRC)) {
1354                 pcibios_allocate_resources(0);
1355                 pcibios_allocate_resources(1);
1356         }
1357
1358         /* Before we start assigning unassigned resource, we try to reserve
1359          * the low IO area and the VGA memory area if they intersect the
1360          * bus available resources to avoid allocating things on top of them
1361          */
1362         if (!pci_has_flag(PCI_PROBE_ONLY)) {
1363                 list_for_each_entry(b, &pci_root_buses, node)
1364                         pcibios_reserve_legacy_regions(b);
1365         }
1366
1367         /* Now, if the platform didn't decide to blindly trust the firmware,
1368          * we proceed to assigning things that were left unassigned
1369          */
1370         if (!pci_has_flag(PCI_PROBE_ONLY)) {
1371                 pr_debug("PCI: Assigning unassigned resources...\n");
1372                 pci_assign_unassigned_resources();
1373         }
1374
1375         /* Call machine dependent fixup */
1376         if (ppc_md.pcibios_fixup)
1377                 ppc_md.pcibios_fixup();
1378 }
1379
1380 /* This is used by the PCI hotplug driver to allocate resource
1381  * of newly plugged busses. We can try to consolidate with the
1382  * rest of the code later, for now, keep it as-is as our main
1383  * resource allocation function doesn't deal with sub-trees yet.
1384  */
1385 void pcibios_claim_one_bus(struct pci_bus *bus)
1386 {
1387         struct pci_dev *dev;
1388         struct pci_bus *child_bus;
1389
1390         list_for_each_entry(dev, &bus->devices, bus_list) {
1391                 int i;
1392
1393                 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1394                         struct resource *r = &dev->resource[i];
1395
1396                         if (r->parent || !r->start || !r->flags)
1397                                 continue;
1398
1399                         pr_debug("PCI: Claiming %s: Resource %d: %pR\n",
1400                                  pci_name(dev), i, r);
1401
1402                         if (pci_claim_resource(dev, i) == 0)
1403                                 continue;
1404
1405                         pci_claim_bridge_resource(dev, i);
1406                 }
1407         }
1408
1409         list_for_each_entry(child_bus, &bus->children, node)
1410                 pcibios_claim_one_bus(child_bus);
1411 }
1412 EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
1413
1414
1415 /* pcibios_finish_adding_to_bus
1416  *
1417  * This is to be called by the hotplug code after devices have been
1418  * added to a bus, this include calling it for a PHB that is just
1419  * being added
1420  */
1421 void pcibios_finish_adding_to_bus(struct pci_bus *bus)
1422 {
1423         pr_debug("PCI: Finishing adding to hotplug bus %04x:%02x\n",
1424                  pci_domain_nr(bus), bus->number);
1425
1426         /* Allocate bus and devices resources */
1427         pcibios_allocate_bus_resources(bus);
1428         pcibios_claim_one_bus(bus);
1429         if (!pci_has_flag(PCI_PROBE_ONLY)) {
1430                 if (bus->self)
1431                         pci_assign_unassigned_bridge_resources(bus->self);
1432                 else
1433                         pci_assign_unassigned_bus_resources(bus);
1434         }
1435
1436         /* Fixup EEH */
1437         eeh_add_device_tree_late(bus);
1438
1439         /* Add new devices to global lists.  Register in proc, sysfs. */
1440         pci_bus_add_devices(bus);
1441
1442         /* sysfs files should only be added after devices are added */
1443         eeh_add_sysfs_files(bus);
1444 }
1445 EXPORT_SYMBOL_GPL(pcibios_finish_adding_to_bus);
1446
1447 int pcibios_enable_device(struct pci_dev *dev, int mask)
1448 {
1449         struct pci_controller *phb = pci_bus_to_host(dev->bus);
1450
1451         if (phb->controller_ops.enable_device_hook)
1452                 if (!phb->controller_ops.enable_device_hook(dev))
1453                         return -EINVAL;
1454
1455         return pci_enable_resources(dev, mask);
1456 }
1457
1458 void pcibios_disable_device(struct pci_dev *dev)
1459 {
1460         struct pci_controller *phb = pci_bus_to_host(dev->bus);
1461
1462         if (phb->controller_ops.disable_device)
1463                 phb->controller_ops.disable_device(dev);
1464 }
1465
1466 resource_size_t pcibios_io_space_offset(struct pci_controller *hose)
1467 {
1468         return (unsigned long) hose->io_base_virt - _IO_BASE;
1469 }
1470
1471 static void pcibios_setup_phb_resources(struct pci_controller *hose,
1472                                         struct list_head *resources)
1473 {
1474         struct resource *res;
1475         resource_size_t offset;
1476         int i;
1477
1478         /* Hookup PHB IO resource */
1479         res = &hose->io_resource;
1480
1481         if (!res->flags) {
1482                 pr_debug("PCI: I/O resource not set for host"
1483                          " bridge %pOF (domain %d)\n",
1484                          hose->dn, hose->global_number);
1485         } else {
1486                 offset = pcibios_io_space_offset(hose);
1487
1488                 pr_debug("PCI: PHB IO resource    = %pR off 0x%08llx\n",
1489                          res, (unsigned long long)offset);
1490                 pci_add_resource_offset(resources, res, offset);
1491         }
1492
1493         /* Hookup PHB Memory resources */
1494         for (i = 0; i < 3; ++i) {
1495                 res = &hose->mem_resources[i];
1496                 if (!res->flags)
1497                         continue;
1498
1499                 offset = hose->mem_offset[i];
1500                 pr_debug("PCI: PHB MEM resource %d = %pR off 0x%08llx\n", i,
1501                          res, (unsigned long long)offset);
1502
1503                 pci_add_resource_offset(resources, res, offset);
1504         }
1505 }
1506
1507 /*
1508  * Null PCI config access functions, for the case when we can't
1509  * find a hose.
1510  */
1511 #define NULL_PCI_OP(rw, size, type)                                     \
1512 static int                                                              \
1513 null_##rw##_config_##size(struct pci_dev *dev, int offset, type val)    \
1514 {                                                                       \
1515         return PCIBIOS_DEVICE_NOT_FOUND;                                \
1516 }
1517
1518 static int
1519 null_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
1520                  int len, u32 *val)
1521 {
1522         return PCIBIOS_DEVICE_NOT_FOUND;
1523 }
1524
1525 static int
1526 null_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
1527                   int len, u32 val)
1528 {
1529         return PCIBIOS_DEVICE_NOT_FOUND;
1530 }
1531
1532 static struct pci_ops null_pci_ops =
1533 {
1534         .read = null_read_config,
1535         .write = null_write_config,
1536 };
1537
1538 /*
1539  * These functions are used early on before PCI scanning is done
1540  * and all of the pci_dev and pci_bus structures have been created.
1541  */
1542 static struct pci_bus *
1543 fake_pci_bus(struct pci_controller *hose, int busnr)
1544 {
1545         static struct pci_bus bus;
1546
1547         if (hose == NULL) {
1548                 printk(KERN_ERR "Can't find hose for PCI bus %d!\n", busnr);
1549         }
1550         bus.number = busnr;
1551         bus.sysdata = hose;
1552         bus.ops = hose? hose->ops: &null_pci_ops;
1553         return &bus;
1554 }
1555
1556 #define EARLY_PCI_OP(rw, size, type)                                    \
1557 int early_##rw##_config_##size(struct pci_controller *hose, int bus,    \
1558                                int devfn, int offset, type value)       \
1559 {                                                                       \
1560         return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus),    \
1561                                             devfn, offset, value);      \
1562 }
1563
1564 EARLY_PCI_OP(read, byte, u8 *)
1565 EARLY_PCI_OP(read, word, u16 *)
1566 EARLY_PCI_OP(read, dword, u32 *)
1567 EARLY_PCI_OP(write, byte, u8)
1568 EARLY_PCI_OP(write, word, u16)
1569 EARLY_PCI_OP(write, dword, u32)
1570
1571 int early_find_capability(struct pci_controller *hose, int bus, int devfn,
1572                           int cap)
1573 {
1574         return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap);
1575 }
1576
1577 struct device_node *pcibios_get_phb_of_node(struct pci_bus *bus)
1578 {
1579         struct pci_controller *hose = bus->sysdata;
1580
1581         return of_node_get(hose->dn);
1582 }
1583
1584 /**
1585  * pci_scan_phb - Given a pci_controller, setup and scan the PCI bus
1586  * @hose: Pointer to the PCI host controller instance structure
1587  */
1588 void pcibios_scan_phb(struct pci_controller *hose)
1589 {
1590         LIST_HEAD(resources);
1591         struct pci_bus *bus;
1592         struct device_node *node = hose->dn;
1593         int mode;
1594
1595         pr_debug("PCI: Scanning PHB %pOF\n", node);
1596
1597         /* Get some IO space for the new PHB */
1598         pcibios_setup_phb_io_space(hose);
1599
1600         /* Wire up PHB bus resources */
1601         pcibios_setup_phb_resources(hose, &resources);
1602
1603         hose->busn.start = hose->first_busno;
1604         hose->busn.end   = hose->last_busno;
1605         hose->busn.flags = IORESOURCE_BUS;
1606         pci_add_resource(&resources, &hose->busn);
1607
1608         /* Create an empty bus for the toplevel */
1609         bus = pci_create_root_bus(hose->parent, hose->first_busno,
1610                                   hose->ops, hose, &resources);
1611         if (bus == NULL) {
1612                 pr_err("Failed to create bus for PCI domain %04x\n",
1613                         hose->global_number);
1614                 pci_free_resource_list(&resources);
1615                 return;
1616         }
1617         hose->bus = bus;
1618
1619         /* Get probe mode and perform scan */
1620         mode = PCI_PROBE_NORMAL;
1621         if (node && hose->controller_ops.probe_mode)
1622                 mode = hose->controller_ops.probe_mode(bus);
1623         pr_debug("    probe mode: %d\n", mode);
1624         if (mode == PCI_PROBE_DEVTREE)
1625                 of_scan_bus(node, bus);
1626
1627         if (mode == PCI_PROBE_NORMAL) {
1628                 pci_bus_update_busn_res_end(bus, 255);
1629                 hose->last_busno = pci_scan_child_bus(bus);
1630                 pci_bus_update_busn_res_end(bus, hose->last_busno);
1631         }
1632
1633         /* Platform gets a chance to do some global fixups before
1634          * we proceed to resource allocation
1635          */
1636         if (ppc_md.pcibios_fixup_phb)
1637                 ppc_md.pcibios_fixup_phb(hose);
1638
1639         /* Configure PCI Express settings */
1640         if (bus && !pci_has_flag(PCI_PROBE_ONLY)) {
1641                 struct pci_bus *child;
1642                 list_for_each_entry(child, &bus->children, node)
1643                         pcie_bus_configure_settings(child);
1644         }
1645 }
1646 EXPORT_SYMBOL_GPL(pcibios_scan_phb);
1647
1648 static void fixup_hide_host_resource_fsl(struct pci_dev *dev)
1649 {
1650         int i, class = dev->class >> 8;
1651         /* When configured as agent, programing interface = 1 */
1652         int prog_if = dev->class & 0xf;
1653
1654         if ((class == PCI_CLASS_PROCESSOR_POWERPC ||
1655              class == PCI_CLASS_BRIDGE_OTHER) &&
1656                 (dev->hdr_type == PCI_HEADER_TYPE_NORMAL) &&
1657                 (prog_if == 0) &&
1658                 (dev->bus->parent == NULL)) {
1659                 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1660                         dev->resource[i].start = 0;
1661                         dev->resource[i].end = 0;
1662                         dev->resource[i].flags = 0;
1663                 }
1664         }
1665 }
1666 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MOTOROLA, PCI_ANY_ID, fixup_hide_host_resource_fsl);
1667 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_FREESCALE, PCI_ANY_ID, fixup_hide_host_resource_fsl);