blob: 7c8a35238f740bf2b61952cd067902a99584c7d5 [file] [log] [blame]
Michal Simekd3afa582010-01-18 14:42:34 +01001/*
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Grant Likelyf1ca09b2010-08-16 23:44:49 -060030#include <linux/of.h>
31#include <linux/of_address.h>
Rob Herring5c9f3032013-09-07 14:05:10 -050032#include <linux/of_irq.h>
Sebastian Andrzej Siewior04bea682011-01-24 09:58:55 +053033#include <linux/of_pci.h>
Paul Gortmaker66421a62011-09-22 11:22:55 -040034#include <linux/export.h>
Michal Simekd3afa582010-01-18 14:42:34 +010035
36#include <asm/processor.h>
Michal Simek6bd55f02012-12-27 10:40:38 +010037#include <linux/io.h>
Michal Simekd3afa582010-01-18 14:42:34 +010038#include <asm/pci-bridge.h>
39#include <asm/byteorder.h>
40
41static DEFINE_SPINLOCK(hose_spinlock);
42LIST_HEAD(hose_list);
43
44/* XXX kill that some day ... */
45static int global_phb_number; /* Global phb counter */
46
47/* ISA Memory physical address */
48resource_size_t isa_mem_base;
49
Michal Simekd3afa582010-01-18 14:42:34 +010050static struct dma_map_ops *pci_dma_ops = &dma_direct_ops;
51
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +100052unsigned long isa_io_base;
53unsigned long pci_dram_offset;
54static int pci_bus_count;
55
56
Michal Simekd3afa582010-01-18 14:42:34 +010057void set_pci_dma_ops(struct dma_map_ops *dma_ops)
58{
59 pci_dma_ops = dma_ops;
60}
61
62struct dma_map_ops *get_pci_dma_ops(void)
63{
64 return pci_dma_ops;
65}
66EXPORT_SYMBOL(get_pci_dma_ops);
67
Michal Simekd3afa582010-01-18 14:42:34 +010068struct pci_controller *pcibios_alloc_controller(struct device_node *dev)
69{
70 struct pci_controller *phb;
71
72 phb = zalloc_maybe_bootmem(sizeof(struct pci_controller), GFP_KERNEL);
73 if (!phb)
74 return NULL;
75 spin_lock(&hose_spinlock);
76 phb->global_number = global_phb_number++;
77 list_add_tail(&phb->list_node, &hose_list);
78 spin_unlock(&hose_spinlock);
79 phb->dn = dev;
80 phb->is_dynamic = mem_init_done;
81 return phb;
82}
83
84void pcibios_free_controller(struct pci_controller *phb)
85{
86 spin_lock(&hose_spinlock);
87 list_del(&phb->list_node);
88 spin_unlock(&hose_spinlock);
89
90 if (phb->is_dynamic)
91 kfree(phb);
92}
93
94static resource_size_t pcibios_io_size(const struct pci_controller *hose)
95{
Joe Perches28f65c112011-06-09 09:13:32 -070096 return resource_size(&hose->io_resource);
Michal Simekd3afa582010-01-18 14:42:34 +010097}
98
99int pcibios_vaddr_is_ioport(void __iomem *address)
100{
101 int ret = 0;
102 struct pci_controller *hose;
103 resource_size_t size;
104
105 spin_lock(&hose_spinlock);
106 list_for_each_entry(hose, &hose_list, list_node) {
107 size = pcibios_io_size(hose);
108 if (address >= hose->io_base_virt &&
109 address < (hose->io_base_virt + size)) {
110 ret = 1;
111 break;
112 }
113 }
114 spin_unlock(&hose_spinlock);
115 return ret;
116}
117
118unsigned long pci_address_to_pio(phys_addr_t address)
119{
120 struct pci_controller *hose;
121 resource_size_t size;
122 unsigned long ret = ~0;
123
124 spin_lock(&hose_spinlock);
125 list_for_each_entry(hose, &hose_list, list_node) {
126 size = pcibios_io_size(hose);
127 if (address >= hose->io_base_phys &&
128 address < (hose->io_base_phys + size)) {
129 unsigned long base =
130 (unsigned long)hose->io_base_virt - _IO_BASE;
131 ret = base + (address - hose->io_base_phys);
132 break;
133 }
134 }
135 spin_unlock(&hose_spinlock);
136
137 return ret;
138}
139EXPORT_SYMBOL_GPL(pci_address_to_pio);
140
141/*
142 * Return the domain number for this bus.
143 */
144int pci_domain_nr(struct pci_bus *bus)
145{
146 struct pci_controller *hose = pci_bus_to_host(bus);
147
148 return hose->global_number;
149}
150EXPORT_SYMBOL(pci_domain_nr);
151
152/* This routine is meant to be used early during boot, when the
153 * PCI bus numbers have not yet been assigned, and you need to
154 * issue PCI config cycles to an OF device.
155 * It could also be used to "fix" RTAS config cycles if you want
156 * to set pci_assign_all_buses to 1 and still use RTAS for PCI
157 * config cycles.
158 */
159struct pci_controller *pci_find_hose_for_OF_device(struct device_node *node)
160{
161 while (node) {
162 struct pci_controller *hose, *tmp;
163 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
164 if (hose->dn == node)
165 return hose;
166 node = node->parent;
167 }
168 return NULL;
169}
170
171static ssize_t pci_show_devspec(struct device *dev,
172 struct device_attribute *attr, char *buf)
173{
174 struct pci_dev *pdev;
175 struct device_node *np;
176
177 pdev = to_pci_dev(dev);
178 np = pci_device_to_OF_node(pdev);
179 if (np == NULL || np->full_name == NULL)
180 return 0;
181 return sprintf(buf, "%s", np->full_name);
182}
183static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
184
185/* Add sysfs properties */
186int pcibios_add_platform_entries(struct pci_dev *pdev)
187{
188 return device_create_file(&pdev->dev, &dev_attr_devspec);
189}
190
Myron Stoweb51d4a32011-10-28 15:47:56 -0600191void pcibios_set_master(struct pci_dev *dev)
192{
193 /* No special bus mastering setup handling */
194}
195
Michal Simekd3afa582010-01-18 14:42:34 +0100196/*
197 * Reads the interrupt pin to determine if interrupt is use by card.
198 * If the interrupt is used, then gets the interrupt line from the
199 * openfirmware and sets it in the pci_dev and pci_config line.
200 */
201int pci_read_irq_line(struct pci_dev *pci_dev)
202{
203 struct of_irq oirq;
204 unsigned int virq;
205
206 /* The current device-tree that iSeries generates from the HV
207 * PCI informations doesn't contain proper interrupt routing,
208 * and all the fallback would do is print out crap, so we
209 * don't attempt to resolve the interrupts here at all, some
210 * iSeries specific fixup does it.
211 *
212 * In the long run, we will hopefully fix the generated device-tree
213 * instead.
214 */
215 pr_debug("PCI: Try to map irq for %s...\n", pci_name(pci_dev));
216
217#ifdef DEBUG
218 memset(&oirq, 0xff, sizeof(oirq));
219#endif
220 /* Try to get a mapping from the device-tree */
221 if (of_irq_map_pci(pci_dev, &oirq)) {
222 u8 line, pin;
223
224 /* If that fails, lets fallback to what is in the config
225 * space and map that through the default controller. We
226 * also set the type to level low since that's what PCI
227 * interrupts are. If your platform does differently, then
228 * either provide a proper interrupt tree or don't use this
229 * function.
230 */
231 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
232 return -1;
233 if (pin == 0)
234 return -1;
235 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
236 line == 0xff || line == 0) {
237 return -1;
238 }
239 pr_debug(" No map ! Using line %d (pin %d) from PCI config\n",
240 line, pin);
241
242 virq = irq_create_mapping(NULL, line);
Michal Simek18e3b102011-12-21 13:10:24 +0100243 if (virq)
Thomas Gleixner4adc1922011-03-24 14:52:04 +0100244 irq_set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
Michal Simekd3afa582010-01-18 14:42:34 +0100245 } else {
246 pr_debug(" Got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
247 oirq.size, oirq.specifier[0], oirq.specifier[1],
Grant Likely74a7f082012-06-15 11:50:25 -0600248 of_node_full_name(oirq.controller));
Michal Simekd3afa582010-01-18 14:42:34 +0100249
250 virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
251 oirq.size);
252 }
Michal Simek18e3b102011-12-21 13:10:24 +0100253 if (!virq) {
Michal Simekd3afa582010-01-18 14:42:34 +0100254 pr_debug(" Failed to map !\n");
255 return -1;
256 }
257
258 pr_debug(" Mapped to linux irq %d\n", virq);
259
260 pci_dev->irq = virq;
261
262 return 0;
263}
264EXPORT_SYMBOL(pci_read_irq_line);
265
266/*
267 * Platform support for /proc/bus/pci/X/Y mmap()s,
268 * modelled on the sparc64 implementation by Dave Miller.
269 * -- paulus.
270 */
271
272/*
273 * Adjust vm_pgoff of VMA such that it is the physical page offset
274 * corresponding to the 32-bit pci bus offset for DEV requested by the user.
275 *
276 * Basically, the user finds the base address for his device which he wishes
277 * to mmap. They read the 32-bit value from the config space base register,
278 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
279 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
280 *
281 * Returns negative error code on failure, zero on success.
282 */
283static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
284 resource_size_t *offset,
285 enum pci_mmap_state mmap_state)
286{
287 struct pci_controller *hose = pci_bus_to_host(dev->bus);
288 unsigned long io_offset = 0;
289 int i, res_bit;
290
Michal Simekf7eaacc2013-01-04 09:14:46 +0100291 if (!hose)
Michal Simekd3afa582010-01-18 14:42:34 +0100292 return NULL; /* should never happen */
293
294 /* If memory, add on the PCI bridge address offset */
295 if (mmap_state == pci_mmap_mem) {
296#if 0 /* See comment in pci_resource_to_user() for why this is disabled */
297 *offset += hose->pci_mem_offset;
298#endif
299 res_bit = IORESOURCE_MEM;
300 } else {
301 io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
302 *offset += io_offset;
303 res_bit = IORESOURCE_IO;
304 }
305
306 /*
307 * Check that the offset requested corresponds to one of the
308 * resources of the device.
309 */
310 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
311 struct resource *rp = &dev->resource[i];
312 int flags = rp->flags;
313
314 /* treat ROM as memory (should be already) */
315 if (i == PCI_ROM_RESOURCE)
316 flags |= IORESOURCE_MEM;
317
318 /* Active and same type? */
319 if ((flags & res_bit) == 0)
320 continue;
321
322 /* In the range of this resource? */
323 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
324 continue;
325
326 /* found it! construct the final physical address */
327 if (mmap_state == pci_mmap_io)
328 *offset += hose->io_base_phys - io_offset;
329 return rp;
330 }
331
332 return NULL;
333}
334
335/*
336 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
337 * device mapping.
338 */
339static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
340 pgprot_t protection,
341 enum pci_mmap_state mmap_state,
342 int write_combine)
343{
344 pgprot_t prot = protection;
345
346 /* Write combine is always 0 on non-memory space mappings. On
347 * memory space, if the user didn't pass 1, we check for a
348 * "prefetchable" resource. This is a bit hackish, but we use
349 * this to workaround the inability of /sysfs to provide a write
350 * combine bit
351 */
352 if (mmap_state != pci_mmap_mem)
353 write_combine = 0;
354 else if (write_combine == 0) {
355 if (rp->flags & IORESOURCE_PREFETCH)
356 write_combine = 1;
357 }
358
359 return pgprot_noncached(prot);
360}
361
362/*
363 * This one is used by /dev/mem and fbdev who have no clue about the
364 * PCI device, it tries to find the PCI device first and calls the
365 * above routine
366 */
367pgprot_t pci_phys_mem_access_prot(struct file *file,
368 unsigned long pfn,
369 unsigned long size,
370 pgprot_t prot)
371{
372 struct pci_dev *pdev = NULL;
373 struct resource *found = NULL;
374 resource_size_t offset = ((resource_size_t)pfn) << PAGE_SHIFT;
375 int i;
376
377 if (page_is_ram(pfn))
378 return prot;
379
380 prot = pgprot_noncached(prot);
381 for_each_pci_dev(pdev) {
382 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
383 struct resource *rp = &pdev->resource[i];
384 int flags = rp->flags;
385
386 /* Active and same type? */
387 if ((flags & IORESOURCE_MEM) == 0)
388 continue;
389 /* In the range of this resource? */
390 if (offset < (rp->start & PAGE_MASK) ||
391 offset > rp->end)
392 continue;
393 found = rp;
394 break;
395 }
396 if (found)
397 break;
398 }
399 if (found) {
400 if (found->flags & IORESOURCE_PREFETCH)
401 prot = pgprot_noncached_wc(prot);
402 pci_dev_put(pdev);
403 }
404
405 pr_debug("PCI: Non-PCI map for %llx, prot: %lx\n",
406 (unsigned long long)offset, pgprot_val(prot));
407
408 return prot;
409}
410
411/*
412 * Perform the actual remap of the pages for a PCI device mapping, as
413 * appropriate for this architecture. The region in the process to map
414 * is described by vm_start and vm_end members of VMA, the base physical
415 * address is found in vm_pgoff.
416 * The pci device structure is provided so that architectures may make mapping
417 * decisions on a per-device or per-bus basis.
418 *
419 * Returns a negative error code on failure, zero on success.
420 */
421int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
422 enum pci_mmap_state mmap_state, int write_combine)
423{
424 resource_size_t offset =
425 ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
426 struct resource *rp;
427 int ret;
428
429 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
430 if (rp == NULL)
431 return -EINVAL;
432
433 vma->vm_pgoff = offset >> PAGE_SHIFT;
434 vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
435 vma->vm_page_prot,
436 mmap_state, write_combine);
437
438 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
439 vma->vm_end - vma->vm_start, vma->vm_page_prot);
440
441 return ret;
442}
443
444/* This provides legacy IO read access on a bus */
445int pci_legacy_read(struct pci_bus *bus, loff_t port, u32 *val, size_t size)
446{
447 unsigned long offset;
448 struct pci_controller *hose = pci_bus_to_host(bus);
449 struct resource *rp = &hose->io_resource;
450 void __iomem *addr;
451
452 /* Check if port can be supported by that bus. We only check
453 * the ranges of the PHB though, not the bus itself as the rules
454 * for forwarding legacy cycles down bridges are not our problem
455 * here. So if the host bridge supports it, we do it.
456 */
457 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
458 offset += port;
459
460 if (!(rp->flags & IORESOURCE_IO))
461 return -ENXIO;
462 if (offset < rp->start || (offset + size) > rp->end)
463 return -ENXIO;
464 addr = hose->io_base_virt + port;
465
466 switch (size) {
467 case 1:
468 *((u8 *)val) = in_8(addr);
469 return 1;
470 case 2:
471 if (port & 1)
472 return -EINVAL;
473 *((u16 *)val) = in_le16(addr);
474 return 2;
475 case 4:
476 if (port & 3)
477 return -EINVAL;
478 *((u32 *)val) = in_le32(addr);
479 return 4;
480 }
481 return -EINVAL;
482}
483
484/* This provides legacy IO write access on a bus */
485int pci_legacy_write(struct pci_bus *bus, loff_t port, u32 val, size_t size)
486{
487 unsigned long offset;
488 struct pci_controller *hose = pci_bus_to_host(bus);
489 struct resource *rp = &hose->io_resource;
490 void __iomem *addr;
491
492 /* Check if port can be supported by that bus. We only check
493 * the ranges of the PHB though, not the bus itself as the rules
494 * for forwarding legacy cycles down bridges are not our problem
495 * here. So if the host bridge supports it, we do it.
496 */
497 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
498 offset += port;
499
500 if (!(rp->flags & IORESOURCE_IO))
501 return -ENXIO;
502 if (offset < rp->start || (offset + size) > rp->end)
503 return -ENXIO;
504 addr = hose->io_base_virt + port;
505
506 /* WARNING: The generic code is idiotic. It gets passed a pointer
507 * to what can be a 1, 2 or 4 byte quantity and always reads that
508 * as a u32, which means that we have to correct the location of
509 * the data read within those 32 bits for size 1 and 2
510 */
511 switch (size) {
512 case 1:
513 out_8(addr, val >> 24);
514 return 1;
515 case 2:
516 if (port & 1)
517 return -EINVAL;
518 out_le16(addr, val >> 16);
519 return 2;
520 case 4:
521 if (port & 3)
522 return -EINVAL;
523 out_le32(addr, val);
524 return 4;
525 }
526 return -EINVAL;
527}
528
529/* This provides legacy IO or memory mmap access on a bus */
530int pci_mmap_legacy_page_range(struct pci_bus *bus,
531 struct vm_area_struct *vma,
532 enum pci_mmap_state mmap_state)
533{
534 struct pci_controller *hose = pci_bus_to_host(bus);
535 resource_size_t offset =
536 ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
537 resource_size_t size = vma->vm_end - vma->vm_start;
538 struct resource *rp;
539
540 pr_debug("pci_mmap_legacy_page_range(%04x:%02x, %s @%llx..%llx)\n",
541 pci_domain_nr(bus), bus->number,
542 mmap_state == pci_mmap_mem ? "MEM" : "IO",
543 (unsigned long long)offset,
544 (unsigned long long)(offset + size - 1));
545
546 if (mmap_state == pci_mmap_mem) {
547 /* Hack alert !
548 *
549 * Because X is lame and can fail starting if it gets an error
550 * trying to mmap legacy_mem (instead of just moving on without
551 * legacy memory access) we fake it here by giving it anonymous
552 * memory, effectively behaving just like /dev/zero
553 */
554 if ((offset + size) > hose->isa_mem_size) {
Michal Simek79bf3a12010-01-20 15:17:08 +0100555#ifdef CONFIG_MMU
Michal Simek6bd55f02012-12-27 10:40:38 +0100556 pr_debug("Process %s (pid:%d) mapped non-existing PCI",
557 current->comm, current->pid);
558 pr_debug("legacy memory for 0%04x:%02x\n",
559 pci_domain_nr(bus), bus->number);
Michal Simek79bf3a12010-01-20 15:17:08 +0100560#endif
Michal Simekd3afa582010-01-18 14:42:34 +0100561 if (vma->vm_flags & VM_SHARED)
562 return shmem_zero_setup(vma);
563 return 0;
564 }
565 offset += hose->isa_mem_phys;
566 } else {
Michal Simek6bd55f02012-12-27 10:40:38 +0100567 unsigned long io_offset = (unsigned long)hose->io_base_virt -
Michal Simekd3afa582010-01-18 14:42:34 +0100568 _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 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800658void pci_process_bridge_OF_ranges(struct pci_controller *hose,
659 struct device_node *dev, int primary)
Michal Simekd3afa582010-01-18 14:42:34 +0100660{
Michal Simekd3afa582010-01-18 14:42:34 +0100661 int memno = 0, isa_hole = -1;
Michal Simekd3afa582010-01-18 14:42:34 +0100662 unsigned long long isa_mb = 0;
663 struct resource *res;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100664 struct of_pci_range range;
665 struct of_pci_range_parser parser;
Michal Simekd3afa582010-01-18 14:42:34 +0100666
Michal Simek6bd55f02012-12-27 10:40:38 +0100667 pr_info("PCI host bridge %s %s ranges:\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100668 dev->full_name, primary ? "(primary)" : "");
669
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100670 /* Check for ranges property */
671 if (of_pci_range_parser_init(&parser, dev))
Michal Simekd3afa582010-01-18 14:42:34 +0100672 return;
673
Michal Simekd3afa582010-01-18 14:42:34 +0100674 pr_debug("Parsing ranges property...\n");
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100675 for_each_of_pci_range(&parser, &range) {
Michal Simekd3afa582010-01-18 14:42:34 +0100676 /* Read next ranges element */
Michal Simek6bd55f02012-12-27 10:40:38 +0100677 pr_debug("pci_space: 0x%08x pci_addr:0x%016llx ",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100678 range.pci_space, range.pci_addr);
Michal Simek6bd55f02012-12-27 10:40:38 +0100679 pr_debug("cpu_addr:0x%016llx size:0x%016llx\n",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100680 range.cpu_addr, range.size);
Michal Simekd3afa582010-01-18 14:42:34 +0100681
682 /* If we failed translation or got a zero-sized region
683 * (some FW try to feed us with non sensical zero sized regions
684 * such as power3 which look like some kind of attempt
685 * at exposing the VGA memory hole)
686 */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100687 if (range.cpu_addr == OF_BAD_ADDR || range.size == 0)
Michal Simekd3afa582010-01-18 14:42:34 +0100688 continue;
689
Michal Simekd3afa582010-01-18 14:42:34 +0100690 /* Act based on address space type */
691 res = NULL;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100692 switch (range.flags & IORESOURCE_TYPE_BITS) {
693 case IORESOURCE_IO:
Michal Simek6bd55f02012-12-27 10:40:38 +0100694 pr_info(" IO 0x%016llx..0x%016llx -> 0x%016llx\n",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100695 range.cpu_addr, range.cpu_addr + range.size - 1,
696 range.pci_addr);
Michal Simekd3afa582010-01-18 14:42:34 +0100697
698 /* We support only one IO range */
699 if (hose->pci_io_size) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100700 pr_info(" \\--> Skipped (too many) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100701 continue;
702 }
703 /* On 32 bits, limit I/O space to 16MB */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100704 if (range.size > 0x01000000)
705 range.size = 0x01000000;
Michal Simekd3afa582010-01-18 14:42:34 +0100706
707 /* 32 bits needs to map IOs here */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100708 hose->io_base_virt = ioremap(range.cpu_addr,
709 range.size);
Michal Simekd3afa582010-01-18 14:42:34 +0100710
711 /* Expect trouble if pci_addr is not 0 */
712 if (primary)
713 isa_io_base =
714 (unsigned long)hose->io_base_virt;
715 /* pci_io_size and io_base_phys always represent IO
716 * space starting at 0 so we factor in pci_addr
717 */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100718 hose->pci_io_size = range.pci_addr + range.size;
719 hose->io_base_phys = range.cpu_addr - range.pci_addr;
Michal Simekd3afa582010-01-18 14:42:34 +0100720
721 /* Build resource */
722 res = &hose->io_resource;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100723 range.cpu_addr = range.pci_addr;
724
Michal Simekd3afa582010-01-18 14:42:34 +0100725 break;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100726 case IORESOURCE_MEM:
Michal Simek6bd55f02012-12-27 10:40:38 +0100727 pr_info(" MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100728 range.cpu_addr, range.cpu_addr + range.size - 1,
729 range.pci_addr,
730 (range.pci_space & 0x40000000) ?
731 "Prefetch" : "");
Michal Simekd3afa582010-01-18 14:42:34 +0100732
733 /* We support only 3 memory ranges */
734 if (memno >= 3) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100735 pr_info(" \\--> Skipped (too many) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100736 continue;
737 }
738 /* Handles ISA memory hole space here */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100739 if (range.pci_addr == 0) {
740 isa_mb = range.cpu_addr;
Michal Simekd3afa582010-01-18 14:42:34 +0100741 isa_hole = memno;
742 if (primary || isa_mem_base == 0)
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100743 isa_mem_base = range.cpu_addr;
744 hose->isa_mem_phys = range.cpu_addr;
745 hose->isa_mem_size = range.size;
Michal Simekd3afa582010-01-18 14:42:34 +0100746 }
747
748 /* We get the PCI/Mem offset from the first range or
749 * the, current one if the offset came from an ISA
750 * hole. If they don't match, bugger.
751 */
752 if (memno == 0 ||
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100753 (isa_hole >= 0 && range.pci_addr != 0 &&
Michal Simekd3afa582010-01-18 14:42:34 +0100754 hose->pci_mem_offset == isa_mb))
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100755 hose->pci_mem_offset = range.cpu_addr -
756 range.pci_addr;
757 else if (range.pci_addr != 0 &&
758 hose->pci_mem_offset != range.cpu_addr -
759 range.pci_addr) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100760 pr_info(" \\--> Skipped (offset mismatch) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100761 continue;
762 }
763
764 /* Build resource */
765 res = &hose->mem_resources[memno++];
Michal Simekd3afa582010-01-18 14:42:34 +0100766 break;
767 }
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100768 if (res != NULL)
769 of_pci_range_to_resource(&range, dev, res);
Michal Simekd3afa582010-01-18 14:42:34 +0100770 }
771
772 /* If there's an ISA hole and the pci_mem_offset is -not- matching
773 * the ISA hole offset, then we need to remove the ISA hole from
774 * the resource list for that brige
775 */
776 if (isa_hole >= 0 && hose->pci_mem_offset != isa_mb) {
777 unsigned int next = isa_hole + 1;
Michal Simek6bd55f02012-12-27 10:40:38 +0100778 pr_info(" Removing ISA hole at 0x%016llx\n", isa_mb);
Michal Simekd3afa582010-01-18 14:42:34 +0100779 if (next < memno)
780 memmove(&hose->mem_resources[isa_hole],
781 &hose->mem_resources[next],
782 sizeof(struct resource) * (memno - next));
783 hose->mem_resources[--memno].flags = 0;
784 }
785}
786
787/* Decide whether to display the domain number in /proc */
788int pci_proc_domain(struct pci_bus *bus)
789{
Bjorn Helgaase5b36842012-02-23 20:18:57 -0700790 return 0;
Michal Simekd3afa582010-01-18 14:42:34 +0100791}
792
Michal Simekd3afa582010-01-18 14:42:34 +0100793/* This header fixup will do the resource fixup for all devices as they are
794 * probed, but not for bridge ranges
795 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800796static void pcibios_fixup_resources(struct pci_dev *dev)
Michal Simekd3afa582010-01-18 14:42:34 +0100797{
798 struct pci_controller *hose = pci_bus_to_host(dev->bus);
799 int i;
800
801 if (!hose) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100802 pr_err("No host bridge for PCI dev %s !\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100803 pci_name(dev));
804 return;
805 }
806 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
807 struct resource *res = dev->resource + i;
808 if (!res->flags)
809 continue;
Bjorn Helgaase5b36842012-02-23 20:18:57 -0700810 if (res->start == 0) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100811 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x]",
Michal Simekd3afa582010-01-18 14:42:34 +0100812 pci_name(dev), i,
813 (unsigned long long)res->start,
814 (unsigned long long)res->end,
815 (unsigned int)res->flags);
Michal Simek6bd55f02012-12-27 10:40:38 +0100816 pr_debug("is unassigned\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100817 res->end -= res->start;
818 res->start = 0;
819 res->flags |= IORESOURCE_UNSET;
820 continue;
821 }
822
Bjorn Helgaasaa23bdc2012-02-23 20:19:02 -0700823 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x]\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100824 pci_name(dev), i,
Michal Simek6bd55f02012-12-27 10:40:38 +0100825 (unsigned long long)res->start,
Michal Simekd3afa582010-01-18 14:42:34 +0100826 (unsigned long long)res->end,
827 (unsigned int)res->flags);
Michal Simekd3afa582010-01-18 14:42:34 +0100828 }
829}
830DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
831
832/* This function tries to figure out if a bridge resource has been initialized
833 * by the firmware or not. It doesn't have to be absolutely bullet proof, but
834 * things go more smoothly when it gets it right. It should covers cases such
835 * as Apple "closed" bridge resources and bare-metal pSeries unassigned bridges
836 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800837static int pcibios_uninitialized_bridge_resource(struct pci_bus *bus,
838 struct resource *res)
Michal Simekd3afa582010-01-18 14:42:34 +0100839{
840 struct pci_controller *hose = pci_bus_to_host(bus);
841 struct pci_dev *dev = bus->self;
842 resource_size_t offset;
843 u16 command;
844 int i;
845
Michal Simekd3afa582010-01-18 14:42:34 +0100846 /* Job is a bit different between memory and IO */
847 if (res->flags & IORESOURCE_MEM) {
848 /* If the BAR is non-0 (res != pci_mem_offset) then it's
849 * probably been initialized by somebody
850 */
851 if (res->start != hose->pci_mem_offset)
852 return 0;
853
854 /* The BAR is 0, let's check if memory decoding is enabled on
855 * the bridge. If not, we consider it unassigned
856 */
857 pci_read_config_word(dev, PCI_COMMAND, &command);
858 if ((command & PCI_COMMAND_MEMORY) == 0)
859 return 1;
860
861 /* Memory decoding is enabled and the BAR is 0. If any of
862 * the bridge resources covers that starting address (0 then
863 * it's good enough for us for memory
864 */
865 for (i = 0; i < 3; i++) {
866 if ((hose->mem_resources[i].flags & IORESOURCE_MEM) &&
867 hose->mem_resources[i].start == hose->pci_mem_offset)
868 return 0;
869 }
870
871 /* Well, it starts at 0 and we know it will collide so we may as
872 * well consider it as unassigned. That covers the Apple case.
873 */
874 return 1;
875 } else {
876 /* If the BAR is non-0, then we consider it assigned */
877 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
878 if (((res->start - offset) & 0xfffffffful) != 0)
879 return 0;
880
881 /* Here, we are a bit different than memory as typically IO
882 * space starting at low addresses -is- valid. What we do
883 * instead if that we consider as unassigned anything that
884 * doesn't have IO enabled in the PCI command register,
885 * and that's it.
886 */
887 pci_read_config_word(dev, PCI_COMMAND, &command);
888 if (command & PCI_COMMAND_IO)
889 return 0;
890
891 /* It's starting at 0 and IO is disabled in the bridge, consider
892 * it unassigned
893 */
894 return 1;
895 }
896}
897
898/* Fixup resources of a PCI<->PCI bridge */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800899static void pcibios_fixup_bridge(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100900{
901 struct resource *res;
902 int i;
903
904 struct pci_dev *dev = bus->self;
905
Michal Simek8a66da72010-04-16 09:03:00 +0200906 pci_bus_for_each_resource(bus, res, i) {
Michal Simekd3afa582010-01-18 14:42:34 +0100907 if (!res)
908 continue;
909 if (!res->flags)
910 continue;
911 if (i >= 3 && bus->self->transparent)
912 continue;
913
914 pr_debug("PCI:%s Bus rsrc %d %016llx-%016llx [%x] fixup...\n",
915 pci_name(dev), i,
Michal Simek6bd55f02012-12-27 10:40:38 +0100916 (unsigned long long)res->start,
Michal Simekd3afa582010-01-18 14:42:34 +0100917 (unsigned long long)res->end,
918 (unsigned int)res->flags);
919
Michal Simekd3afa582010-01-18 14:42:34 +0100920 /* Try to detect uninitialized P2P bridge resources,
921 * and clear them out so they get re-assigned later
922 */
923 if (pcibios_uninitialized_bridge_resource(bus, res)) {
924 res->flags = 0;
925 pr_debug("PCI:%s (unassigned)\n",
926 pci_name(dev));
927 } else {
928 pr_debug("PCI:%s %016llx-%016llx\n",
929 pci_name(dev),
930 (unsigned long long)res->start,
931 (unsigned long long)res->end);
932 }
933 }
934}
935
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800936void pcibios_setup_bus_self(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100937{
938 /* Fix up the bus resources for P2P bridges */
939 if (bus->self != NULL)
940 pcibios_fixup_bridge(bus);
941}
942
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800943void pcibios_setup_bus_devices(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100944{
945 struct pci_dev *dev;
946
947 pr_debug("PCI: Fixup bus devices %d (%s)\n",
948 bus->number, bus->self ? pci_name(bus->self) : "PHB");
949
950 list_for_each_entry(dev, &bus->devices, bus_list) {
Michal Simekd3afa582010-01-18 14:42:34 +0100951 /* Setup OF node pointer in archdata */
Michal Simek088ab302010-08-16 10:31:54 +0200952 dev->dev.of_node = pci_device_to_OF_node(dev);
Michal Simekd3afa582010-01-18 14:42:34 +0100953
954 /* Fixup NUMA node as it may not be setup yet by the generic
955 * code and is needed by the DMA init
956 */
957 set_dev_node(&dev->dev, pcibus_to_node(dev->bus));
958
959 /* Hook up default DMA ops */
Nishanth Aravamudan6c3bbdd2010-09-15 11:05:51 -0700960 set_dma_ops(&dev->dev, pci_dma_ops);
961 dev->dev.archdata.dma_data = (void *)PCI_DRAM_OFFSET;
Michal Simekd3afa582010-01-18 14:42:34 +0100962
963 /* Read default IRQs and fixup if necessary */
964 pci_read_irq_line(dev);
965 }
966}
967
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800968void pcibios_fixup_bus(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100969{
970 /* When called from the generic PCI probe, read PCI<->PCI bridge
971 * bases. This is -not- called when generating the PCI tree from
972 * the OF device-tree.
973 */
974 if (bus->self != NULL)
975 pci_read_bridge_bases(bus);
976
977 /* Now fixup the bus bus */
978 pcibios_setup_bus_self(bus);
979
980 /* Now fixup devices on that bus */
981 pcibios_setup_bus_devices(bus);
982}
983EXPORT_SYMBOL(pcibios_fixup_bus);
984
985static int skip_isa_ioresource_align(struct pci_dev *dev)
986{
Michal Simekd3afa582010-01-18 14:42:34 +0100987 return 0;
988}
989
990/*
991 * We need to avoid collisions with `mirrored' VGA ports
992 * and other strange ISA hardware, so we always want the
993 * addresses to be allocated in the 0x000-0x0ff region
994 * modulo 0x400.
995 *
996 * Why? Because some silly external IO cards only decode
997 * the low 10 bits of the IO address. The 0x00-0xff region
998 * is reserved for motherboard devices that decode all 16
999 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
1000 * but we want to try to avoid allocating at 0x2900-0x2bff
1001 * which might have be mirrored at 0x0100-0x03ff..
1002 */
Michal Simekc86fac42010-04-16 09:04:51 +02001003resource_size_t pcibios_align_resource(void *data, const struct resource *res,
Michal Simekd3afa582010-01-18 14:42:34 +01001004 resource_size_t size, resource_size_t align)
1005{
1006 struct pci_dev *dev = data;
Michal Simekc86fac42010-04-16 09:04:51 +02001007 resource_size_t start = res->start;
Michal Simekd3afa582010-01-18 14:42:34 +01001008
1009 if (res->flags & IORESOURCE_IO) {
Michal Simekd3afa582010-01-18 14:42:34 +01001010 if (skip_isa_ioresource_align(dev))
Michal Simekc86fac42010-04-16 09:04:51 +02001011 return start;
1012 if (start & 0x300)
Michal Simekd3afa582010-01-18 14:42:34 +01001013 start = (start + 0x3ff) & ~0x3ff;
Michal Simekd3afa582010-01-18 14:42:34 +01001014 }
Michal Simekc86fac42010-04-16 09:04:51 +02001015
1016 return start;
Michal Simekd3afa582010-01-18 14:42:34 +01001017}
1018EXPORT_SYMBOL(pcibios_align_resource);
1019
1020/*
1021 * Reparent resource children of pr that conflict with res
1022 * under res, and make res replace those children.
1023 */
1024static int __init reparent_resources(struct resource *parent,
1025 struct resource *res)
1026{
1027 struct resource *p, **pp;
1028 struct resource **firstpp = NULL;
1029
1030 for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {
1031 if (p->end < res->start)
1032 continue;
1033 if (res->end < p->start)
1034 break;
1035 if (p->start < res->start || p->end > res->end)
1036 return -1; /* not completely contained */
1037 if (firstpp == NULL)
1038 firstpp = pp;
1039 }
1040 if (firstpp == NULL)
1041 return -1; /* didn't find any conflicting entries? */
1042 res->parent = parent;
1043 res->child = *firstpp;
1044 res->sibling = *pp;
1045 *firstpp = res;
1046 *pp = NULL;
1047 for (p = res->child; p != NULL; p = p->sibling) {
1048 p->parent = res;
1049 pr_debug("PCI: Reparented %s [%llx..%llx] under %s\n",
1050 p->name,
1051 (unsigned long long)p->start,
1052 (unsigned long long)p->end, res->name);
1053 }
1054 return 0;
1055}
1056
1057/*
1058 * Handle resources of PCI devices. If the world were perfect, we could
1059 * just allocate all the resource regions and do nothing more. It isn't.
1060 * On the other hand, we cannot just re-allocate all devices, as it would
1061 * require us to know lots of host bridge internals. So we attempt to
1062 * keep as much of the original configuration as possible, but tweak it
1063 * when it's found to be wrong.
1064 *
1065 * Known BIOS problems we have to work around:
1066 * - I/O or memory regions not configured
1067 * - regions configured, but not enabled in the command register
1068 * - bogus I/O addresses above 64K used
1069 * - expansion ROMs left enabled (this may sound harmless, but given
1070 * the fact the PCI specs explicitly allow address decoders to be
1071 * shared between expansion ROMs and other resource regions, it's
1072 * at least dangerous)
1073 *
1074 * Our solution:
1075 * (1) Allocate resources for all buses behind PCI-to-PCI bridges.
1076 * This gives us fixed barriers on where we can allocate.
1077 * (2) Allocate resources for all enabled devices. If there is
1078 * a collision, just mark the resource as unallocated. Also
1079 * disable expansion ROMs during this step.
1080 * (3) Try to allocate resources for disabled devices. If the
1081 * resources were assigned correctly, everything goes well,
1082 * if they weren't, they won't disturb allocation of other
1083 * resources.
1084 * (4) Assign new addresses to resources which were either
1085 * not configured at all or misconfigured. If explicitly
1086 * requested by the user, configure expansion ROM address
1087 * as well.
1088 */
1089
Michal Simekf7eaacc2013-01-04 09:14:46 +01001090static void pcibios_allocate_bus_resources(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +01001091{
1092 struct pci_bus *b;
1093 int i;
1094 struct resource *res, *pr;
1095
1096 pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
1097 pci_domain_nr(bus), bus->number);
1098
Michal Simek8a66da72010-04-16 09:03:00 +02001099 pci_bus_for_each_resource(bus, res, i) {
Michal Simekd3afa582010-01-18 14:42:34 +01001100 if (!res || !res->flags
1101 || res->start > res->end || res->parent)
1102 continue;
1103 if (bus->parent == NULL)
1104 pr = (res->flags & IORESOURCE_IO) ?
1105 &ioport_resource : &iomem_resource;
1106 else {
1107 /* Don't bother with non-root busses when
1108 * re-assigning all resources. We clear the
1109 * resource flags as if they were colliding
1110 * and as such ensure proper re-allocation
1111 * later.
1112 */
Michal Simekd3afa582010-01-18 14:42:34 +01001113 pr = pci_find_parent_resource(bus->self, res);
1114 if (pr == res) {
1115 /* this happens when the generic PCI
1116 * code (wrongly) decides that this
1117 * bridge is transparent -- paulus
1118 */
1119 continue;
1120 }
1121 }
1122
Michal Simek6bd55f02012-12-27 10:40:38 +01001123 pr_debug("PCI: %s (bus %d) bridge rsrc %d: %016llx-%016llx ",
Michal Simekd3afa582010-01-18 14:42:34 +01001124 bus->self ? pci_name(bus->self) : "PHB",
1125 bus->number, i,
1126 (unsigned long long)res->start,
Michal Simek6bd55f02012-12-27 10:40:38 +01001127 (unsigned long long)res->end);
1128 pr_debug("[0x%x], parent %p (%s)\n",
Michal Simekd3afa582010-01-18 14:42:34 +01001129 (unsigned int)res->flags,
1130 pr, (pr && pr->name) ? pr->name : "nil");
1131
1132 if (pr && !(pr->flags & IORESOURCE_UNSET)) {
1133 if (request_resource(pr, res) == 0)
1134 continue;
1135 /*
1136 * Must be a conflict with an existing entry.
1137 * Move that entry (or entries) under the
1138 * bridge resource and try again.
1139 */
1140 if (reparent_resources(pr, res) == 0)
1141 continue;
1142 }
Michal Simek6bd55f02012-12-27 10:40:38 +01001143 pr_warn("PCI: Cannot allocate resource region ");
1144 pr_cont("%d of PCI bridge %d, will remap\n", i, bus->number);
Yinghai Lu837c4ef2010-06-03 13:43:03 -07001145 res->start = res->end = 0;
Michal Simekd3afa582010-01-18 14:42:34 +01001146 res->flags = 0;
1147 }
1148
1149 list_for_each_entry(b, &bus->children, node)
1150 pcibios_allocate_bus_resources(b);
1151}
1152
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001153static inline void alloc_resource(struct pci_dev *dev, int idx)
Michal Simekd3afa582010-01-18 14:42:34 +01001154{
1155 struct resource *pr, *r = &dev->resource[idx];
1156
1157 pr_debug("PCI: Allocating %s: Resource %d: %016llx..%016llx [%x]\n",
1158 pci_name(dev), idx,
1159 (unsigned long long)r->start,
1160 (unsigned long long)r->end,
1161 (unsigned int)r->flags);
1162
1163 pr = pci_find_parent_resource(dev, r);
1164 if (!pr || (pr->flags & IORESOURCE_UNSET) ||
1165 request_resource(pr, r) < 0) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001166 pr_warn("PCI: Cannot allocate resource region %d ", idx);
1167 pr_cont("of device %s, will remap\n", pci_name(dev));
Michal Simekd3afa582010-01-18 14:42:34 +01001168 if (pr)
1169 pr_debug("PCI: parent is %p: %016llx-%016llx [%x]\n",
1170 pr,
1171 (unsigned long long)pr->start,
1172 (unsigned long long)pr->end,
1173 (unsigned int)pr->flags);
1174 /* We'll assign a new address later */
1175 r->flags |= IORESOURCE_UNSET;
1176 r->end -= r->start;
1177 r->start = 0;
1178 }
1179}
1180
1181static void __init pcibios_allocate_resources(int pass)
1182{
1183 struct pci_dev *dev = NULL;
1184 int idx, disabled;
1185 u16 command;
1186 struct resource *r;
1187
1188 for_each_pci_dev(dev) {
1189 pci_read_config_word(dev, PCI_COMMAND, &command);
1190 for (idx = 0; idx <= PCI_ROM_RESOURCE; idx++) {
1191 r = &dev->resource[idx];
1192 if (r->parent) /* Already allocated */
1193 continue;
1194 if (!r->flags || (r->flags & IORESOURCE_UNSET))
1195 continue; /* Not assigned at all */
1196 /* We only allocate ROMs on pass 1 just in case they
1197 * have been screwed up by firmware
1198 */
1199 if (idx == PCI_ROM_RESOURCE)
1200 disabled = 1;
1201 if (r->flags & IORESOURCE_IO)
1202 disabled = !(command & PCI_COMMAND_IO);
1203 else
1204 disabled = !(command & PCI_COMMAND_MEMORY);
1205 if (pass == disabled)
1206 alloc_resource(dev, idx);
1207 }
1208 if (pass)
1209 continue;
1210 r = &dev->resource[PCI_ROM_RESOURCE];
1211 if (r->flags) {
1212 /* Turn the ROM off, leave the resource region,
1213 * but keep it unregistered.
1214 */
1215 u32 reg;
1216 pci_read_config_dword(dev, dev->rom_base_reg, &reg);
1217 if (reg & PCI_ROM_ADDRESS_ENABLE) {
1218 pr_debug("PCI: Switching off ROM of %s\n",
1219 pci_name(dev));
1220 r->flags &= ~IORESOURCE_ROM_ENABLE;
1221 pci_write_config_dword(dev, dev->rom_base_reg,
1222 reg & ~PCI_ROM_ADDRESS_ENABLE);
1223 }
1224 }
1225 }
1226}
1227
1228static void __init pcibios_reserve_legacy_regions(struct pci_bus *bus)
1229{
1230 struct pci_controller *hose = pci_bus_to_host(bus);
1231 resource_size_t offset;
1232 struct resource *res, *pres;
1233 int i;
1234
1235 pr_debug("Reserving legacy ranges for domain %04x\n",
1236 pci_domain_nr(bus));
1237
1238 /* Check for IO */
1239 if (!(hose->io_resource.flags & IORESOURCE_IO))
1240 goto no_io;
1241 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
1242 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1243 BUG_ON(res == NULL);
1244 res->name = "Legacy IO";
1245 res->flags = IORESOURCE_IO;
1246 res->start = offset;
1247 res->end = (offset + 0xfff) & 0xfffffffful;
1248 pr_debug("Candidate legacy IO: %pR\n", res);
1249 if (request_resource(&hose->io_resource, res)) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001250 pr_debug("PCI %04x:%02x Cannot reserve Legacy IO %pR\n",
Michal Simekd3afa582010-01-18 14:42:34 +01001251 pci_domain_nr(bus), bus->number, res);
1252 kfree(res);
1253 }
1254
1255 no_io:
1256 /* Check for memory */
1257 offset = hose->pci_mem_offset;
1258 pr_debug("hose mem offset: %016llx\n", (unsigned long long)offset);
1259 for (i = 0; i < 3; i++) {
1260 pres = &hose->mem_resources[i];
1261 if (!(pres->flags & IORESOURCE_MEM))
1262 continue;
1263 pr_debug("hose mem res: %pR\n", pres);
1264 if ((pres->start - offset) <= 0xa0000 &&
1265 (pres->end - offset) >= 0xbffff)
1266 break;
1267 }
1268 if (i >= 3)
1269 return;
1270 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1271 BUG_ON(res == NULL);
1272 res->name = "Legacy VGA memory";
1273 res->flags = IORESOURCE_MEM;
1274 res->start = 0xa0000 + offset;
1275 res->end = 0xbffff + offset;
1276 pr_debug("Candidate VGA memory: %pR\n", res);
1277 if (request_resource(pres, res)) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001278 pr_debug("PCI %04x:%02x Cannot reserve VGA memory %pR\n",
Michal Simekd3afa582010-01-18 14:42:34 +01001279 pci_domain_nr(bus), bus->number, res);
1280 kfree(res);
1281 }
1282}
1283
1284void __init pcibios_resource_survey(void)
1285{
1286 struct pci_bus *b;
1287
1288 /* Allocate and assign resources. If we re-assign everything, then
1289 * we skip the allocate phase
1290 */
1291 list_for_each_entry(b, &pci_root_buses, node)
1292 pcibios_allocate_bus_resources(b);
1293
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001294 pcibios_allocate_resources(0);
1295 pcibios_allocate_resources(1);
Michal Simekd3afa582010-01-18 14:42:34 +01001296
1297 /* Before we start assigning unassigned resource, we try to reserve
1298 * the low IO area and the VGA memory area if they intersect the
1299 * bus available resources to avoid allocating things on top of them
1300 */
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001301 list_for_each_entry(b, &pci_root_buses, node)
1302 pcibios_reserve_legacy_regions(b);
Michal Simekd3afa582010-01-18 14:42:34 +01001303
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001304 /* Now proceed to assigning things that were left unassigned */
1305 pr_debug("PCI: Assigning unassigned resources...\n");
1306 pci_assign_unassigned_resources();
Michal Simekd3afa582010-01-18 14:42:34 +01001307}
1308
Michal Simekd3afa582010-01-18 14:42:34 +01001309/* This is used by the PCI hotplug driver to allocate resource
1310 * of newly plugged busses. We can try to consolidate with the
1311 * rest of the code later, for now, keep it as-is as our main
1312 * resource allocation function doesn't deal with sub-trees yet.
1313 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001314void pcibios_claim_one_bus(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +01001315{
1316 struct pci_dev *dev;
1317 struct pci_bus *child_bus;
1318
1319 list_for_each_entry(dev, &bus->devices, bus_list) {
1320 int i;
1321
1322 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1323 struct resource *r = &dev->resource[i];
1324
1325 if (r->parent || !r->start || !r->flags)
1326 continue;
1327
Michal Simek6bd55f02012-12-27 10:40:38 +01001328 pr_debug("PCI: Claiming %s: ", pci_name(dev));
1329 pr_debug("Resource %d: %016llx..%016llx [%x]\n",
1330 i, (unsigned long long)r->start,
Michal Simekd3afa582010-01-18 14:42:34 +01001331 (unsigned long long)r->end,
1332 (unsigned int)r->flags);
1333
1334 pci_claim_resource(dev, i);
1335 }
1336 }
1337
1338 list_for_each_entry(child_bus, &bus->children, node)
1339 pcibios_claim_one_bus(child_bus);
1340}
1341EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
1342
1343
1344/* pcibios_finish_adding_to_bus
1345 *
1346 * This is to be called by the hotplug code after devices have been
1347 * added to a bus, this include calling it for a PHB that is just
1348 * being added
1349 */
1350void pcibios_finish_adding_to_bus(struct pci_bus *bus)
1351{
1352 pr_debug("PCI: Finishing adding to hotplug bus %04x:%02x\n",
1353 pci_domain_nr(bus), bus->number);
1354
1355 /* Allocate bus and devices resources */
1356 pcibios_allocate_bus_resources(bus);
1357 pcibios_claim_one_bus(bus);
1358
1359 /* Add new devices to global lists. Register in proc, sysfs. */
1360 pci_bus_add_devices(bus);
1361
1362 /* Fixup EEH */
Michal Simek1ce24702010-05-13 12:09:54 +02001363 /* eeh_add_device_tree_late(bus); */
Michal Simekd3afa582010-01-18 14:42:34 +01001364}
1365EXPORT_SYMBOL_GPL(pcibios_finish_adding_to_bus);
1366
Michal Simekd3afa582010-01-18 14:42:34 +01001367int pcibios_enable_device(struct pci_dev *dev, int mask)
1368{
1369 return pci_enable_resources(dev, mask);
1370}
1371
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001372static void pcibios_setup_phb_resources(struct pci_controller *hose,
1373 struct list_head *resources)
Michal Simekd3afa582010-01-18 14:42:34 +01001374{
Bjorn Helgaas5420e462012-05-15 17:03:25 -06001375 unsigned long io_offset;
Michal Simekd3afa582010-01-18 14:42:34 +01001376 struct resource *res;
1377 int i;
1378
1379 /* Hookup PHB IO resource */
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001380 res = &hose->io_resource;
1381
1382 /* Fixup IO space offset */
1383 io_offset = (unsigned long)hose->io_base_virt - isa_io_base;
1384 res->start = (res->start + io_offset) & 0xffffffffu;
1385 res->end = (res->end + io_offset) & 0xffffffffu;
Michal Simekd3afa582010-01-18 14:42:34 +01001386
1387 if (!res->flags) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001388 pr_warn("PCI: I/O resource not set for host ");
1389 pr_cont("bridge %s (domain %d)\n",
1390 hose->dn->full_name, hose->global_number);
Michal Simekd3afa582010-01-18 14:42:34 +01001391 /* Workaround for lack of IO resource only on 32-bit */
1392 res->start = (unsigned long)hose->io_base_virt - isa_io_base;
1393 res->end = res->start + IO_SPACE_LIMIT;
1394 res->flags = IORESOURCE_IO;
1395 }
Michal Simekf7eaacc2013-01-04 09:14:46 +01001396 pci_add_resource_offset(resources, res,
1397 (__force resource_size_t)(hose->io_base_virt - _IO_BASE));
Michal Simekd3afa582010-01-18 14:42:34 +01001398
1399 pr_debug("PCI: PHB IO resource = %016llx-%016llx [%lx]\n",
1400 (unsigned long long)res->start,
1401 (unsigned long long)res->end,
1402 (unsigned long)res->flags);
1403
1404 /* Hookup PHB Memory resources */
1405 for (i = 0; i < 3; ++i) {
1406 res = &hose->mem_resources[i];
1407 if (!res->flags) {
1408 if (i > 0)
1409 continue;
Michal Simek6bd55f02012-12-27 10:40:38 +01001410 pr_err("PCI: Memory resource 0 not set for ");
1411 pr_cont("host bridge %s (domain %d)\n",
1412 hose->dn->full_name, hose->global_number);
Michal Simekd3afa582010-01-18 14:42:34 +01001413
1414 /* Workaround for lack of MEM resource only on 32-bit */
1415 res->start = hose->pci_mem_offset;
1416 res->end = (resource_size_t)-1LL;
1417 res->flags = IORESOURCE_MEM;
1418
1419 }
Bjorn Helgaasaa23bdc2012-02-23 20:19:02 -07001420 pci_add_resource_offset(resources, res, hose->pci_mem_offset);
Michal Simekd3afa582010-01-18 14:42:34 +01001421
1422 pr_debug("PCI: PHB MEM resource %d = %016llx-%016llx [%lx]\n",
1423 i, (unsigned long long)res->start,
1424 (unsigned long long)res->end,
1425 (unsigned long)res->flags);
1426 }
1427
1428 pr_debug("PCI: PHB MEM offset = %016llx\n",
1429 (unsigned long long)hose->pci_mem_offset);
1430 pr_debug("PCI: PHB IO offset = %08lx\n",
1431 (unsigned long)hose->io_base_virt - _IO_BASE);
1432}
1433
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001434struct device_node *pcibios_get_phb_of_node(struct pci_bus *bus)
1435{
1436 struct pci_controller *hose = bus->sysdata;
1437
1438 return of_node_get(hose->dn);
1439}
1440
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001441static void pcibios_scan_phb(struct pci_controller *hose)
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001442{
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001443 LIST_HEAD(resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001444 struct pci_bus *bus;
1445 struct device_node *node = hose->dn;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001446
Grant Likely74a7f082012-06-15 11:50:25 -06001447 pr_debug("PCI: Scanning PHB %s\n", of_node_full_name(node));
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001448
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001449 pcibios_setup_phb_resources(hose, &resources);
1450
Bjorn Helgaas4723b982011-10-28 16:26:52 -06001451 bus = pci_scan_root_bus(hose->parent, hose->first_busno,
1452 hose->ops, hose, &resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001453 if (bus == NULL) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001454 pr_err("Failed to create bus for PCI domain %04x\n",
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001455 hose->global_number);
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001456 pci_free_resource_list(&resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001457 return;
1458 }
Yinghai Lub918c622012-05-17 18:51:11 -07001459 bus->busn_res.start = hose->first_busno;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001460 hose->bus = bus;
1461
Yinghai Lub918c622012-05-17 18:51:11 -07001462 hose->last_busno = bus->busn_res.end;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001463}
1464
1465static int __init pcibios_init(void)
1466{
1467 struct pci_controller *hose, *tmp;
1468 int next_busno = 0;
1469
Michal Simek6bd55f02012-12-27 10:40:38 +01001470 pr_info("PCI: Probing PCI hardware\n");
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001471
1472 /* Scan all of the recorded PCI controllers. */
1473 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1474 hose->last_busno = 0xff;
1475 pcibios_scan_phb(hose);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001476 if (next_busno <= hose->last_busno)
1477 next_busno = hose->last_busno + 1;
1478 }
1479 pci_bus_count = next_busno;
1480
1481 /* Call common code to handle resource allocation */
1482 pcibios_resource_survey();
1483
1484 return 0;
1485}
1486
1487subsys_initcall(pcibios_init);
1488
1489static struct pci_controller *pci_bus_to_hose(int bus)
1490{
1491 struct pci_controller *hose, *tmp;
1492
1493 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1494 if (bus >= hose->first_busno && bus <= hose->last_busno)
1495 return hose;
1496 return NULL;
1497}
1498
1499/* Provide information on locations of various I/O regions in physical
1500 * memory. Do this on a per-card basis so that we choose the right
1501 * root bridge.
1502 * Note that the returned IO or memory base is a physical address
1503 */
1504
1505long sys_pciconfig_iobase(long which, unsigned long bus, unsigned long devfn)
1506{
1507 struct pci_controller *hose;
1508 long result = -EOPNOTSUPP;
1509
1510 hose = pci_bus_to_hose(bus);
1511 if (!hose)
1512 return -ENODEV;
1513
1514 switch (which) {
1515 case IOBASE_BRIDGE_NUMBER:
1516 return (long)hose->first_busno;
1517 case IOBASE_MEMORY:
1518 return (long)hose->pci_mem_offset;
1519 case IOBASE_IO:
1520 return (long)hose->io_base_phys;
1521 case IOBASE_ISA_IO:
1522 return (long)isa_io_base;
1523 case IOBASE_ISA_MEM:
1524 return (long)isa_mem_base;
1525 }
1526
1527 return result;
1528}
1529
Michal Simekd3afa582010-01-18 14:42:34 +01001530/*
1531 * Null PCI config access functions, for the case when we can't
1532 * find a hose.
1533 */
1534#define NULL_PCI_OP(rw, size, type) \
1535static int \
1536null_##rw##_config_##size(struct pci_dev *dev, int offset, type val) \
1537{ \
1538 return PCIBIOS_DEVICE_NOT_FOUND; \
1539}
1540
1541static int
1542null_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
1543 int len, u32 *val)
1544{
1545 return PCIBIOS_DEVICE_NOT_FOUND;
1546}
1547
1548static int
1549null_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
1550 int len, u32 val)
1551{
1552 return PCIBIOS_DEVICE_NOT_FOUND;
1553}
1554
1555static struct pci_ops null_pci_ops = {
1556 .read = null_read_config,
1557 .write = null_write_config,
1558};
1559
1560/*
1561 * These functions are used early on before PCI scanning is done
1562 * and all of the pci_dev and pci_bus structures have been created.
1563 */
1564static struct pci_bus *
1565fake_pci_bus(struct pci_controller *hose, int busnr)
1566{
1567 static struct pci_bus bus;
1568
1569 if (!hose)
Michal Simek6bd55f02012-12-27 10:40:38 +01001570 pr_err("Can't find hose for PCI bus %d!\n", busnr);
Michal Simekd3afa582010-01-18 14:42:34 +01001571
1572 bus.number = busnr;
1573 bus.sysdata = hose;
1574 bus.ops = hose ? hose->ops : &null_pci_ops;
1575 return &bus;
1576}
1577
1578#define EARLY_PCI_OP(rw, size, type) \
1579int early_##rw##_config_##size(struct pci_controller *hose, int bus, \
1580 int devfn, int offset, type value) \
1581{ \
1582 return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus), \
1583 devfn, offset, value); \
1584}
1585
1586EARLY_PCI_OP(read, byte, u8 *)
1587EARLY_PCI_OP(read, word, u16 *)
1588EARLY_PCI_OP(read, dword, u32 *)
1589EARLY_PCI_OP(write, byte, u8)
1590EARLY_PCI_OP(write, word, u16)
1591EARLY_PCI_OP(write, dword, u32)
1592
1593int early_find_capability(struct pci_controller *hose, int bus, int devfn,
1594 int cap)
1595{
1596 return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap);
1597}
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001598