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