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