blob: bdb8ea100e73ee8637c8ea587378000292b0b37b [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>
Sebastian Andrzej Siewior04bea682011-01-24 09:58:55 +053032#include <linux/of_pci.h>
Paul Gortmaker66421a62011-09-22 11:22:55 -040033#include <linux/export.h>
Michal Simekd3afa582010-01-18 14:42:34 +010034
35#include <asm/processor.h>
Michal Simek6bd55f02012-12-27 10:40:38 +010036#include <linux/io.h>
Michal Simekd3afa582010-01-18 14:42:34 +010037#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
Michal Simekd3afa582010-01-18 14:42:34 +010049static struct dma_map_ops *pci_dma_ops = &dma_direct_ops;
50
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +100051unsigned long isa_io_base;
52unsigned long pci_dram_offset;
53static int pci_bus_count;
54
55
Michal Simekd3afa582010-01-18 14:42:34 +010056void 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
Michal Simekd3afa582010-01-18 14:42:34 +010067struct 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{
Joe Perches28f65c112011-06-09 09:13:32 -070095 return resource_size(&hose->io_resource);
Michal Simekd3afa582010-01-18 14:42:34 +010096}
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
Myron Stoweb51d4a32011-10-28 15:47:56 -0600190void pcibios_set_master(struct pci_dev *dev)
191{
192 /* No special bus mastering setup handling */
193}
194
Michal Simekd3afa582010-01-18 14:42:34 +0100195/*
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);
Michal Simek18e3b102011-12-21 13:10:24 +0100242 if (virq)
Thomas Gleixner4adc1922011-03-24 14:52:04 +0100243 irq_set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
Michal Simekd3afa582010-01-18 14:42:34 +0100244 } 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],
Grant Likely74a7f082012-06-15 11:50:25 -0600247 of_node_full_name(oirq.controller));
Michal Simekd3afa582010-01-18 14:42:34 +0100248
249 virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
250 oirq.size);
251 }
Michal Simek18e3b102011-12-21 13:10:24 +0100252 if (!virq) {
Michal Simekd3afa582010-01-18 14:42:34 +0100253 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
Michal Simekf7eaacc2013-01-04 09:14:46 +0100290 if (!hose)
Michal Simekd3afa582010-01-18 14:42:34 +0100291 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) {
Michal Simek79bf3a12010-01-20 15:17:08 +0100554#ifdef CONFIG_MMU
Michal Simek6bd55f02012-12-27 10:40:38 +0100555 pr_debug("Process %s (pid:%d) mapped non-existing PCI",
556 current->comm, current->pid);
557 pr_debug("legacy memory for 0%04x:%02x\n",
558 pci_domain_nr(bus), bus->number);
Michal Simek79bf3a12010-01-20 15:17:08 +0100559#endif
Michal Simekd3afa582010-01-18 14:42:34 +0100560 if (vma->vm_flags & VM_SHARED)
561 return shmem_zero_setup(vma);
562 return 0;
563 }
564 offset += hose->isa_mem_phys;
565 } else {
Michal Simek6bd55f02012-12-27 10:40:38 +0100566 unsigned long io_offset = (unsigned long)hose->io_base_virt -
Michal Simekd3afa582010-01-18 14:42:34 +0100567 _IO_BASE;
568 unsigned long roffset = offset + io_offset;
569 rp = &hose->io_resource;
570 if (!(rp->flags & IORESOURCE_IO))
571 return -ENXIO;
572 if (roffset < rp->start || (roffset + size) > rp->end)
573 return -ENXIO;
574 offset += hose->io_base_phys;
575 }
576 pr_debug(" -> mapping phys %llx\n", (unsigned long long)offset);
577
578 vma->vm_pgoff = offset >> PAGE_SHIFT;
579 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
580 return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
581 vma->vm_end - vma->vm_start,
582 vma->vm_page_prot);
583}
584
585void pci_resource_to_user(const struct pci_dev *dev, int bar,
586 const struct resource *rsrc,
587 resource_size_t *start, resource_size_t *end)
588{
589 struct pci_controller *hose = pci_bus_to_host(dev->bus);
590 resource_size_t offset = 0;
591
592 if (hose == NULL)
593 return;
594
595 if (rsrc->flags & IORESOURCE_IO)
596 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
597
598 /* We pass a fully fixed up address to userland for MMIO instead of
599 * a BAR value because X is lame and expects to be able to use that
600 * to pass to /dev/mem !
601 *
602 * That means that we'll have potentially 64 bits values where some
603 * userland apps only expect 32 (like X itself since it thinks only
604 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
605 * 32 bits CHRPs :-(
606 *
607 * Hopefully, the sysfs insterface is immune to that gunk. Once X
608 * has been fixed (and the fix spread enough), we can re-enable the
609 * 2 lines below and pass down a BAR value to userland. In that case
610 * we'll also have to re-enable the matching code in
611 * __pci_mmap_make_offset().
612 *
613 * BenH.
614 */
615#if 0
616 else if (rsrc->flags & IORESOURCE_MEM)
617 offset = hose->pci_mem_offset;
618#endif
619
620 *start = rsrc->start - offset;
621 *end = rsrc->end - offset;
622}
623
624/**
625 * pci_process_bridge_OF_ranges - Parse PCI bridge resources from device tree
626 * @hose: newly allocated pci_controller to be setup
627 * @dev: device node of the host bridge
628 * @primary: set if primary bus (32 bits only, soon to be deprecated)
629 *
630 * This function will parse the "ranges" property of a PCI host bridge device
631 * node and setup the resource mapping of a pci controller based on its
632 * content.
633 *
634 * Life would be boring if it wasn't for a few issues that we have to deal
635 * with here:
636 *
637 * - We can only cope with one IO space range and up to 3 Memory space
638 * ranges. However, some machines (thanks Apple !) tend to split their
639 * space into lots of small contiguous ranges. So we have to coalesce.
640 *
641 * - We can only cope with all memory ranges having the same offset
642 * between CPU addresses and PCI addresses. Unfortunately, some bridges
643 * are setup for a large 1:1 mapping along with a small "window" which
644 * maps PCI address 0 to some arbitrary high address of the CPU space in
645 * order to give access to the ISA memory hole.
646 * The way out of here that I've chosen for now is to always set the
647 * offset based on the first resource found, then override it if we
648 * have a different offset and the previous was set by an ISA hole.
649 *
650 * - Some busses have IO space not starting at 0, which causes trouble with
651 * the way we do our IO resource renumbering. The code somewhat deals with
652 * it for 64 bits but I would expect problems on 32 bits.
653 *
654 * - Some 32 bits platforms such as 4xx can have physical space larger than
655 * 32 bits so we need to use 64 bits values for the parsing
656 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800657void pci_process_bridge_OF_ranges(struct pci_controller *hose,
658 struct device_node *dev, int primary)
Michal Simekd3afa582010-01-18 14:42:34 +0100659{
660 const u32 *ranges;
661 int rlen;
662 int pna = of_n_addr_cells(dev);
663 int np = pna + 5;
664 int memno = 0, isa_hole = -1;
665 u32 pci_space;
666 unsigned long long pci_addr, cpu_addr, pci_next, cpu_next, size;
667 unsigned long long isa_mb = 0;
668 struct resource *res;
669
Michal Simek6bd55f02012-12-27 10:40:38 +0100670 pr_info("PCI host bridge %s %s ranges:\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100671 dev->full_name, primary ? "(primary)" : "");
672
673 /* Get ranges property */
674 ranges = of_get_property(dev, "ranges", &rlen);
675 if (ranges == NULL)
676 return;
677
678 /* Parse it */
679 pr_debug("Parsing ranges property...\n");
680 while ((rlen -= np * 4) >= 0) {
681 /* Read next ranges element */
682 pci_space = ranges[0];
683 pci_addr = of_read_number(ranges + 1, 2);
684 cpu_addr = of_translate_address(dev, ranges + 3);
685 size = of_read_number(ranges + pna + 3, 2);
686
Michal Simek6bd55f02012-12-27 10:40:38 +0100687 pr_debug("pci_space: 0x%08x pci_addr:0x%016llx ",
688 pci_space, pci_addr);
689 pr_debug("cpu_addr:0x%016llx size:0x%016llx\n",
690 cpu_addr, size);
Michal Simekd3afa582010-01-18 14:42:34 +0100691
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 */
Michal Simek6bd55f02012-12-27 10:40:38 +0100719 pr_info(" IO 0x%016llx..0x%016llx -> 0x%016llx\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100720 cpu_addr, cpu_addr + size - 1, pci_addr);
721
722 /* We support only one IO range */
723 if (hose->pci_io_size) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100724 pr_info(" \\--> Skipped (too many) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100725 continue;
726 }
727 /* On 32 bits, limit I/O space to 16MB */
728 if (size > 0x01000000)
729 size = 0x01000000;
730
731 /* 32 bits needs to map IOs here */
732 hose->io_base_virt = ioremap(cpu_addr, size);
733
734 /* Expect trouble if pci_addr is not 0 */
735 if (primary)
736 isa_io_base =
737 (unsigned long)hose->io_base_virt;
738 /* pci_io_size and io_base_phys always represent IO
739 * space starting at 0 so we factor in pci_addr
740 */
741 hose->pci_io_size = pci_addr + size;
742 hose->io_base_phys = cpu_addr - pci_addr;
743
744 /* Build resource */
745 res = &hose->io_resource;
746 res->flags = IORESOURCE_IO;
747 res->start = pci_addr;
748 break;
749 case 2: /* PCI Memory space */
750 case 3: /* PCI 64 bits Memory space */
Michal Simek6bd55f02012-12-27 10:40:38 +0100751 pr_info(" MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100752 cpu_addr, cpu_addr + size - 1, pci_addr,
753 (pci_space & 0x40000000) ? "Prefetch" : "");
754
755 /* We support only 3 memory ranges */
756 if (memno >= 3) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100757 pr_info(" \\--> Skipped (too many) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100758 continue;
759 }
760 /* Handles ISA memory hole space here */
761 if (pci_addr == 0) {
762 isa_mb = cpu_addr;
763 isa_hole = memno;
764 if (primary || isa_mem_base == 0)
765 isa_mem_base = cpu_addr;
766 hose->isa_mem_phys = cpu_addr;
767 hose->isa_mem_size = size;
768 }
769
770 /* We get the PCI/Mem offset from the first range or
771 * the, current one if the offset came from an ISA
772 * hole. If they don't match, bugger.
773 */
774 if (memno == 0 ||
775 (isa_hole >= 0 && pci_addr != 0 &&
776 hose->pci_mem_offset == isa_mb))
777 hose->pci_mem_offset = cpu_addr - pci_addr;
778 else if (pci_addr != 0 &&
779 hose->pci_mem_offset != cpu_addr - pci_addr) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100780 pr_info(" \\--> Skipped (offset mismatch) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100781 continue;
782 }
783
784 /* Build resource */
785 res = &hose->mem_resources[memno++];
786 res->flags = IORESOURCE_MEM;
787 if (pci_space & 0x40000000)
788 res->flags |= IORESOURCE_PREFETCH;
789 res->start = cpu_addr;
790 break;
791 }
792 if (res != NULL) {
793 res->name = dev->full_name;
794 res->end = res->start + size - 1;
795 res->parent = NULL;
796 res->sibling = NULL;
797 res->child = NULL;
798 }
799 }
800
801 /* If there's an ISA hole and the pci_mem_offset is -not- matching
802 * the ISA hole offset, then we need to remove the ISA hole from
803 * the resource list for that brige
804 */
805 if (isa_hole >= 0 && hose->pci_mem_offset != isa_mb) {
806 unsigned int next = isa_hole + 1;
Michal Simek6bd55f02012-12-27 10:40:38 +0100807 pr_info(" Removing ISA hole at 0x%016llx\n", isa_mb);
Michal Simekd3afa582010-01-18 14:42:34 +0100808 if (next < memno)
809 memmove(&hose->mem_resources[isa_hole],
810 &hose->mem_resources[next],
811 sizeof(struct resource) * (memno - next));
812 hose->mem_resources[--memno].flags = 0;
813 }
814}
815
816/* Decide whether to display the domain number in /proc */
817int pci_proc_domain(struct pci_bus *bus)
818{
Bjorn Helgaase5b36842012-02-23 20:18:57 -0700819 return 0;
Michal Simekd3afa582010-01-18 14:42:34 +0100820}
821
Michal Simekd3afa582010-01-18 14:42:34 +0100822/* This header fixup will do the resource fixup for all devices as they are
823 * probed, but not for bridge ranges
824 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800825static void pcibios_fixup_resources(struct pci_dev *dev)
Michal Simekd3afa582010-01-18 14:42:34 +0100826{
827 struct pci_controller *hose = pci_bus_to_host(dev->bus);
828 int i;
829
830 if (!hose) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100831 pr_err("No host bridge for PCI dev %s !\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100832 pci_name(dev));
833 return;
834 }
835 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
836 struct resource *res = dev->resource + i;
837 if (!res->flags)
838 continue;
Bjorn Helgaase5b36842012-02-23 20:18:57 -0700839 if (res->start == 0) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100840 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x]",
Michal Simekd3afa582010-01-18 14:42:34 +0100841 pci_name(dev), i,
842 (unsigned long long)res->start,
843 (unsigned long long)res->end,
844 (unsigned int)res->flags);
Michal Simek6bd55f02012-12-27 10:40:38 +0100845 pr_debug("is unassigned\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100846 res->end -= res->start;
847 res->start = 0;
848 res->flags |= IORESOURCE_UNSET;
849 continue;
850 }
851
Bjorn Helgaasaa23bdc2012-02-23 20:19:02 -0700852 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x]\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100853 pci_name(dev), i,
Michal Simek6bd55f02012-12-27 10:40:38 +0100854 (unsigned long long)res->start,
Michal Simekd3afa582010-01-18 14:42:34 +0100855 (unsigned long long)res->end,
856 (unsigned int)res->flags);
Michal Simekd3afa582010-01-18 14:42:34 +0100857 }
858}
859DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
860
861/* This function tries to figure out if a bridge resource has been initialized
862 * by the firmware or not. It doesn't have to be absolutely bullet proof, but
863 * things go more smoothly when it gets it right. It should covers cases such
864 * as Apple "closed" bridge resources and bare-metal pSeries unassigned bridges
865 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800866static int pcibios_uninitialized_bridge_resource(struct pci_bus *bus,
867 struct resource *res)
Michal Simekd3afa582010-01-18 14:42:34 +0100868{
869 struct pci_controller *hose = pci_bus_to_host(bus);
870 struct pci_dev *dev = bus->self;
871 resource_size_t offset;
872 u16 command;
873 int i;
874
Michal Simekd3afa582010-01-18 14:42:34 +0100875 /* Job is a bit different between memory and IO */
876 if (res->flags & IORESOURCE_MEM) {
877 /* If the BAR is non-0 (res != pci_mem_offset) then it's
878 * probably been initialized by somebody
879 */
880 if (res->start != hose->pci_mem_offset)
881 return 0;
882
883 /* The BAR is 0, let's check if memory decoding is enabled on
884 * the bridge. If not, we consider it unassigned
885 */
886 pci_read_config_word(dev, PCI_COMMAND, &command);
887 if ((command & PCI_COMMAND_MEMORY) == 0)
888 return 1;
889
890 /* Memory decoding is enabled and the BAR is 0. If any of
891 * the bridge resources covers that starting address (0 then
892 * it's good enough for us for memory
893 */
894 for (i = 0; i < 3; i++) {
895 if ((hose->mem_resources[i].flags & IORESOURCE_MEM) &&
896 hose->mem_resources[i].start == hose->pci_mem_offset)
897 return 0;
898 }
899
900 /* Well, it starts at 0 and we know it will collide so we may as
901 * well consider it as unassigned. That covers the Apple case.
902 */
903 return 1;
904 } else {
905 /* If the BAR is non-0, then we consider it assigned */
906 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
907 if (((res->start - offset) & 0xfffffffful) != 0)
908 return 0;
909
910 /* Here, we are a bit different than memory as typically IO
911 * space starting at low addresses -is- valid. What we do
912 * instead if that we consider as unassigned anything that
913 * doesn't have IO enabled in the PCI command register,
914 * and that's it.
915 */
916 pci_read_config_word(dev, PCI_COMMAND, &command);
917 if (command & PCI_COMMAND_IO)
918 return 0;
919
920 /* It's starting at 0 and IO is disabled in the bridge, consider
921 * it unassigned
922 */
923 return 1;
924 }
925}
926
927/* Fixup resources of a PCI<->PCI bridge */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800928static void pcibios_fixup_bridge(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100929{
930 struct resource *res;
931 int i;
932
933 struct pci_dev *dev = bus->self;
934
Michal Simek8a66da72010-04-16 09:03:00 +0200935 pci_bus_for_each_resource(bus, res, i) {
Michal Simekd3afa582010-01-18 14:42:34 +0100936 if (!res)
937 continue;
938 if (!res->flags)
939 continue;
940 if (i >= 3 && bus->self->transparent)
941 continue;
942
943 pr_debug("PCI:%s Bus rsrc %d %016llx-%016llx [%x] fixup...\n",
944 pci_name(dev), i,
Michal Simek6bd55f02012-12-27 10:40:38 +0100945 (unsigned long long)res->start,
Michal Simekd3afa582010-01-18 14:42:34 +0100946 (unsigned long long)res->end,
947 (unsigned int)res->flags);
948
Michal Simekd3afa582010-01-18 14:42:34 +0100949 /* Try to detect uninitialized P2P bridge resources,
950 * and clear them out so they get re-assigned later
951 */
952 if (pcibios_uninitialized_bridge_resource(bus, res)) {
953 res->flags = 0;
954 pr_debug("PCI:%s (unassigned)\n",
955 pci_name(dev));
956 } else {
957 pr_debug("PCI:%s %016llx-%016llx\n",
958 pci_name(dev),
959 (unsigned long long)res->start,
960 (unsigned long long)res->end);
961 }
962 }
963}
964
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800965void pcibios_setup_bus_self(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100966{
967 /* Fix up the bus resources for P2P bridges */
968 if (bus->self != NULL)
969 pcibios_fixup_bridge(bus);
970}
971
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800972void pcibios_setup_bus_devices(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100973{
974 struct pci_dev *dev;
975
976 pr_debug("PCI: Fixup bus devices %d (%s)\n",
977 bus->number, bus->self ? pci_name(bus->self) : "PHB");
978
979 list_for_each_entry(dev, &bus->devices, bus_list) {
Michal Simekd3afa582010-01-18 14:42:34 +0100980 /* Setup OF node pointer in archdata */
Michal Simek088ab302010-08-16 10:31:54 +0200981 dev->dev.of_node = pci_device_to_OF_node(dev);
Michal Simekd3afa582010-01-18 14:42:34 +0100982
983 /* Fixup NUMA node as it may not be setup yet by the generic
984 * code and is needed by the DMA init
985 */
986 set_dev_node(&dev->dev, pcibus_to_node(dev->bus));
987
988 /* Hook up default DMA ops */
Nishanth Aravamudan6c3bbdd2010-09-15 11:05:51 -0700989 set_dma_ops(&dev->dev, pci_dma_ops);
990 dev->dev.archdata.dma_data = (void *)PCI_DRAM_OFFSET;
Michal Simekd3afa582010-01-18 14:42:34 +0100991
992 /* Read default IRQs and fixup if necessary */
993 pci_read_irq_line(dev);
994 }
995}
996
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800997void pcibios_fixup_bus(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100998{
999 /* When called from the generic PCI probe, read PCI<->PCI bridge
1000 * bases. This is -not- called when generating the PCI tree from
1001 * the OF device-tree.
1002 */
1003 if (bus->self != NULL)
1004 pci_read_bridge_bases(bus);
1005
1006 /* Now fixup the bus bus */
1007 pcibios_setup_bus_self(bus);
1008
1009 /* Now fixup devices on that bus */
1010 pcibios_setup_bus_devices(bus);
1011}
1012EXPORT_SYMBOL(pcibios_fixup_bus);
1013
1014static int skip_isa_ioresource_align(struct pci_dev *dev)
1015{
Michal Simekd3afa582010-01-18 14:42:34 +01001016 return 0;
1017}
1018
1019/*
1020 * We need to avoid collisions with `mirrored' VGA ports
1021 * and other strange ISA hardware, so we always want the
1022 * addresses to be allocated in the 0x000-0x0ff region
1023 * modulo 0x400.
1024 *
1025 * Why? Because some silly external IO cards only decode
1026 * the low 10 bits of the IO address. The 0x00-0xff region
1027 * is reserved for motherboard devices that decode all 16
1028 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
1029 * but we want to try to avoid allocating at 0x2900-0x2bff
1030 * which might have be mirrored at 0x0100-0x03ff..
1031 */
Michal Simekc86fac42010-04-16 09:04:51 +02001032resource_size_t pcibios_align_resource(void *data, const struct resource *res,
Michal Simekd3afa582010-01-18 14:42:34 +01001033 resource_size_t size, resource_size_t align)
1034{
1035 struct pci_dev *dev = data;
Michal Simekc86fac42010-04-16 09:04:51 +02001036 resource_size_t start = res->start;
Michal Simekd3afa582010-01-18 14:42:34 +01001037
1038 if (res->flags & IORESOURCE_IO) {
Michal Simekd3afa582010-01-18 14:42:34 +01001039 if (skip_isa_ioresource_align(dev))
Michal Simekc86fac42010-04-16 09:04:51 +02001040 return start;
1041 if (start & 0x300)
Michal Simekd3afa582010-01-18 14:42:34 +01001042 start = (start + 0x3ff) & ~0x3ff;
Michal Simekd3afa582010-01-18 14:42:34 +01001043 }
Michal Simekc86fac42010-04-16 09:04:51 +02001044
1045 return start;
Michal Simekd3afa582010-01-18 14:42:34 +01001046}
1047EXPORT_SYMBOL(pcibios_align_resource);
1048
1049/*
1050 * Reparent resource children of pr that conflict with res
1051 * under res, and make res replace those children.
1052 */
1053static int __init reparent_resources(struct resource *parent,
1054 struct resource *res)
1055{
1056 struct resource *p, **pp;
1057 struct resource **firstpp = NULL;
1058
1059 for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {
1060 if (p->end < res->start)
1061 continue;
1062 if (res->end < p->start)
1063 break;
1064 if (p->start < res->start || p->end > res->end)
1065 return -1; /* not completely contained */
1066 if (firstpp == NULL)
1067 firstpp = pp;
1068 }
1069 if (firstpp == NULL)
1070 return -1; /* didn't find any conflicting entries? */
1071 res->parent = parent;
1072 res->child = *firstpp;
1073 res->sibling = *pp;
1074 *firstpp = res;
1075 *pp = NULL;
1076 for (p = res->child; p != NULL; p = p->sibling) {
1077 p->parent = res;
1078 pr_debug("PCI: Reparented %s [%llx..%llx] under %s\n",
1079 p->name,
1080 (unsigned long long)p->start,
1081 (unsigned long long)p->end, res->name);
1082 }
1083 return 0;
1084}
1085
1086/*
1087 * Handle resources of PCI devices. If the world were perfect, we could
1088 * just allocate all the resource regions and do nothing more. It isn't.
1089 * On the other hand, we cannot just re-allocate all devices, as it would
1090 * require us to know lots of host bridge internals. So we attempt to
1091 * keep as much of the original configuration as possible, but tweak it
1092 * when it's found to be wrong.
1093 *
1094 * Known BIOS problems we have to work around:
1095 * - I/O or memory regions not configured
1096 * - regions configured, but not enabled in the command register
1097 * - bogus I/O addresses above 64K used
1098 * - expansion ROMs left enabled (this may sound harmless, but given
1099 * the fact the PCI specs explicitly allow address decoders to be
1100 * shared between expansion ROMs and other resource regions, it's
1101 * at least dangerous)
1102 *
1103 * Our solution:
1104 * (1) Allocate resources for all buses behind PCI-to-PCI bridges.
1105 * This gives us fixed barriers on where we can allocate.
1106 * (2) Allocate resources for all enabled devices. If there is
1107 * a collision, just mark the resource as unallocated. Also
1108 * disable expansion ROMs during this step.
1109 * (3) Try to allocate resources for disabled devices. If the
1110 * resources were assigned correctly, everything goes well,
1111 * if they weren't, they won't disturb allocation of other
1112 * resources.
1113 * (4) Assign new addresses to resources which were either
1114 * not configured at all or misconfigured. If explicitly
1115 * requested by the user, configure expansion ROM address
1116 * as well.
1117 */
1118
Michal Simekf7eaacc2013-01-04 09:14:46 +01001119static void pcibios_allocate_bus_resources(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +01001120{
1121 struct pci_bus *b;
1122 int i;
1123 struct resource *res, *pr;
1124
1125 pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
1126 pci_domain_nr(bus), bus->number);
1127
Michal Simek8a66da72010-04-16 09:03:00 +02001128 pci_bus_for_each_resource(bus, res, i) {
Michal Simekd3afa582010-01-18 14:42:34 +01001129 if (!res || !res->flags
1130 || res->start > res->end || res->parent)
1131 continue;
1132 if (bus->parent == NULL)
1133 pr = (res->flags & IORESOURCE_IO) ?
1134 &ioport_resource : &iomem_resource;
1135 else {
1136 /* Don't bother with non-root busses when
1137 * re-assigning all resources. We clear the
1138 * resource flags as if they were colliding
1139 * and as such ensure proper re-allocation
1140 * later.
1141 */
Michal Simekd3afa582010-01-18 14:42:34 +01001142 pr = pci_find_parent_resource(bus->self, res);
1143 if (pr == res) {
1144 /* this happens when the generic PCI
1145 * code (wrongly) decides that this
1146 * bridge is transparent -- paulus
1147 */
1148 continue;
1149 }
1150 }
1151
Michal Simek6bd55f02012-12-27 10:40:38 +01001152 pr_debug("PCI: %s (bus %d) bridge rsrc %d: %016llx-%016llx ",
Michal Simekd3afa582010-01-18 14:42:34 +01001153 bus->self ? pci_name(bus->self) : "PHB",
1154 bus->number, i,
1155 (unsigned long long)res->start,
Michal Simek6bd55f02012-12-27 10:40:38 +01001156 (unsigned long long)res->end);
1157 pr_debug("[0x%x], parent %p (%s)\n",
Michal Simekd3afa582010-01-18 14:42:34 +01001158 (unsigned int)res->flags,
1159 pr, (pr && pr->name) ? pr->name : "nil");
1160
1161 if (pr && !(pr->flags & IORESOURCE_UNSET)) {
1162 if (request_resource(pr, res) == 0)
1163 continue;
1164 /*
1165 * Must be a conflict with an existing entry.
1166 * Move that entry (or entries) under the
1167 * bridge resource and try again.
1168 */
1169 if (reparent_resources(pr, res) == 0)
1170 continue;
1171 }
Michal Simek6bd55f02012-12-27 10:40:38 +01001172 pr_warn("PCI: Cannot allocate resource region ");
1173 pr_cont("%d of PCI bridge %d, will remap\n", i, bus->number);
Yinghai Lu837c4ef2010-06-03 13:43:03 -07001174 res->start = res->end = 0;
Michal Simekd3afa582010-01-18 14:42:34 +01001175 res->flags = 0;
1176 }
1177
1178 list_for_each_entry(b, &bus->children, node)
1179 pcibios_allocate_bus_resources(b);
1180}
1181
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001182static inline void alloc_resource(struct pci_dev *dev, int idx)
Michal Simekd3afa582010-01-18 14:42:34 +01001183{
1184 struct resource *pr, *r = &dev->resource[idx];
1185
1186 pr_debug("PCI: Allocating %s: Resource %d: %016llx..%016llx [%x]\n",
1187 pci_name(dev), idx,
1188 (unsigned long long)r->start,
1189 (unsigned long long)r->end,
1190 (unsigned int)r->flags);
1191
1192 pr = pci_find_parent_resource(dev, r);
1193 if (!pr || (pr->flags & IORESOURCE_UNSET) ||
1194 request_resource(pr, r) < 0) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001195 pr_warn("PCI: Cannot allocate resource region %d ", idx);
1196 pr_cont("of device %s, will remap\n", pci_name(dev));
Michal Simekd3afa582010-01-18 14:42:34 +01001197 if (pr)
1198 pr_debug("PCI: parent is %p: %016llx-%016llx [%x]\n",
1199 pr,
1200 (unsigned long long)pr->start,
1201 (unsigned long long)pr->end,
1202 (unsigned int)pr->flags);
1203 /* We'll assign a new address later */
1204 r->flags |= IORESOURCE_UNSET;
1205 r->end -= r->start;
1206 r->start = 0;
1207 }
1208}
1209
1210static void __init pcibios_allocate_resources(int pass)
1211{
1212 struct pci_dev *dev = NULL;
1213 int idx, disabled;
1214 u16 command;
1215 struct resource *r;
1216
1217 for_each_pci_dev(dev) {
1218 pci_read_config_word(dev, PCI_COMMAND, &command);
1219 for (idx = 0; idx <= PCI_ROM_RESOURCE; idx++) {
1220 r = &dev->resource[idx];
1221 if (r->parent) /* Already allocated */
1222 continue;
1223 if (!r->flags || (r->flags & IORESOURCE_UNSET))
1224 continue; /* Not assigned at all */
1225 /* We only allocate ROMs on pass 1 just in case they
1226 * have been screwed up by firmware
1227 */
1228 if (idx == PCI_ROM_RESOURCE)
1229 disabled = 1;
1230 if (r->flags & IORESOURCE_IO)
1231 disabled = !(command & PCI_COMMAND_IO);
1232 else
1233 disabled = !(command & PCI_COMMAND_MEMORY);
1234 if (pass == disabled)
1235 alloc_resource(dev, idx);
1236 }
1237 if (pass)
1238 continue;
1239 r = &dev->resource[PCI_ROM_RESOURCE];
1240 if (r->flags) {
1241 /* Turn the ROM off, leave the resource region,
1242 * but keep it unregistered.
1243 */
1244 u32 reg;
1245 pci_read_config_dword(dev, dev->rom_base_reg, &reg);
1246 if (reg & PCI_ROM_ADDRESS_ENABLE) {
1247 pr_debug("PCI: Switching off ROM of %s\n",
1248 pci_name(dev));
1249 r->flags &= ~IORESOURCE_ROM_ENABLE;
1250 pci_write_config_dword(dev, dev->rom_base_reg,
1251 reg & ~PCI_ROM_ADDRESS_ENABLE);
1252 }
1253 }
1254 }
1255}
1256
1257static void __init pcibios_reserve_legacy_regions(struct pci_bus *bus)
1258{
1259 struct pci_controller *hose = pci_bus_to_host(bus);
1260 resource_size_t offset;
1261 struct resource *res, *pres;
1262 int i;
1263
1264 pr_debug("Reserving legacy ranges for domain %04x\n",
1265 pci_domain_nr(bus));
1266
1267 /* Check for IO */
1268 if (!(hose->io_resource.flags & IORESOURCE_IO))
1269 goto no_io;
1270 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
1271 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1272 BUG_ON(res == NULL);
1273 res->name = "Legacy IO";
1274 res->flags = IORESOURCE_IO;
1275 res->start = offset;
1276 res->end = (offset + 0xfff) & 0xfffffffful;
1277 pr_debug("Candidate legacy IO: %pR\n", res);
1278 if (request_resource(&hose->io_resource, res)) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001279 pr_debug("PCI %04x:%02x Cannot reserve Legacy IO %pR\n",
Michal Simekd3afa582010-01-18 14:42:34 +01001280 pci_domain_nr(bus), bus->number, res);
1281 kfree(res);
1282 }
1283
1284 no_io:
1285 /* Check for memory */
1286 offset = hose->pci_mem_offset;
1287 pr_debug("hose mem offset: %016llx\n", (unsigned long long)offset);
1288 for (i = 0; i < 3; i++) {
1289 pres = &hose->mem_resources[i];
1290 if (!(pres->flags & IORESOURCE_MEM))
1291 continue;
1292 pr_debug("hose mem res: %pR\n", pres);
1293 if ((pres->start - offset) <= 0xa0000 &&
1294 (pres->end - offset) >= 0xbffff)
1295 break;
1296 }
1297 if (i >= 3)
1298 return;
1299 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1300 BUG_ON(res == NULL);
1301 res->name = "Legacy VGA memory";
1302 res->flags = IORESOURCE_MEM;
1303 res->start = 0xa0000 + offset;
1304 res->end = 0xbffff + offset;
1305 pr_debug("Candidate VGA memory: %pR\n", res);
1306 if (request_resource(pres, res)) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001307 pr_debug("PCI %04x:%02x Cannot reserve VGA memory %pR\n",
Michal Simekd3afa582010-01-18 14:42:34 +01001308 pci_domain_nr(bus), bus->number, res);
1309 kfree(res);
1310 }
1311}
1312
1313void __init pcibios_resource_survey(void)
1314{
1315 struct pci_bus *b;
1316
1317 /* Allocate and assign resources. If we re-assign everything, then
1318 * we skip the allocate phase
1319 */
1320 list_for_each_entry(b, &pci_root_buses, node)
1321 pcibios_allocate_bus_resources(b);
1322
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001323 pcibios_allocate_resources(0);
1324 pcibios_allocate_resources(1);
Michal Simekd3afa582010-01-18 14:42:34 +01001325
1326 /* Before we start assigning unassigned resource, we try to reserve
1327 * the low IO area and the VGA memory area if they intersect the
1328 * bus available resources to avoid allocating things on top of them
1329 */
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001330 list_for_each_entry(b, &pci_root_buses, node)
1331 pcibios_reserve_legacy_regions(b);
Michal Simekd3afa582010-01-18 14:42:34 +01001332
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001333 /* Now proceed to assigning things that were left unassigned */
1334 pr_debug("PCI: Assigning unassigned resources...\n");
1335 pci_assign_unassigned_resources();
Michal Simekd3afa582010-01-18 14:42:34 +01001336}
1337
Michal Simekd3afa582010-01-18 14:42:34 +01001338/* This is used by the PCI hotplug driver to allocate resource
1339 * of newly plugged busses. We can try to consolidate with the
1340 * rest of the code later, for now, keep it as-is as our main
1341 * resource allocation function doesn't deal with sub-trees yet.
1342 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001343void pcibios_claim_one_bus(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +01001344{
1345 struct pci_dev *dev;
1346 struct pci_bus *child_bus;
1347
1348 list_for_each_entry(dev, &bus->devices, bus_list) {
1349 int i;
1350
1351 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1352 struct resource *r = &dev->resource[i];
1353
1354 if (r->parent || !r->start || !r->flags)
1355 continue;
1356
Michal Simek6bd55f02012-12-27 10:40:38 +01001357 pr_debug("PCI: Claiming %s: ", pci_name(dev));
1358 pr_debug("Resource %d: %016llx..%016llx [%x]\n",
1359 i, (unsigned long long)r->start,
Michal Simekd3afa582010-01-18 14:42:34 +01001360 (unsigned long long)r->end,
1361 (unsigned int)r->flags);
1362
1363 pci_claim_resource(dev, i);
1364 }
1365 }
1366
1367 list_for_each_entry(child_bus, &bus->children, node)
1368 pcibios_claim_one_bus(child_bus);
1369}
1370EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
1371
1372
1373/* pcibios_finish_adding_to_bus
1374 *
1375 * This is to be called by the hotplug code after devices have been
1376 * added to a bus, this include calling it for a PHB that is just
1377 * being added
1378 */
1379void pcibios_finish_adding_to_bus(struct pci_bus *bus)
1380{
1381 pr_debug("PCI: Finishing adding to hotplug bus %04x:%02x\n",
1382 pci_domain_nr(bus), bus->number);
1383
1384 /* Allocate bus and devices resources */
1385 pcibios_allocate_bus_resources(bus);
1386 pcibios_claim_one_bus(bus);
1387
1388 /* Add new devices to global lists. Register in proc, sysfs. */
1389 pci_bus_add_devices(bus);
1390
1391 /* Fixup EEH */
Michal Simek1ce24702010-05-13 12:09:54 +02001392 /* eeh_add_device_tree_late(bus); */
Michal Simekd3afa582010-01-18 14:42:34 +01001393}
1394EXPORT_SYMBOL_GPL(pcibios_finish_adding_to_bus);
1395
Michal Simekd3afa582010-01-18 14:42:34 +01001396int pcibios_enable_device(struct pci_dev *dev, int mask)
1397{
1398 return pci_enable_resources(dev, mask);
1399}
1400
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001401static void pcibios_setup_phb_resources(struct pci_controller *hose,
1402 struct list_head *resources)
Michal Simekd3afa582010-01-18 14:42:34 +01001403{
Bjorn Helgaas5420e462012-05-15 17:03:25 -06001404 unsigned long io_offset;
Michal Simekd3afa582010-01-18 14:42:34 +01001405 struct resource *res;
1406 int i;
1407
1408 /* Hookup PHB IO resource */
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001409 res = &hose->io_resource;
1410
1411 /* Fixup IO space offset */
1412 io_offset = (unsigned long)hose->io_base_virt - isa_io_base;
1413 res->start = (res->start + io_offset) & 0xffffffffu;
1414 res->end = (res->end + io_offset) & 0xffffffffu;
Michal Simekd3afa582010-01-18 14:42:34 +01001415
1416 if (!res->flags) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001417 pr_warn("PCI: I/O resource not set for host ");
1418 pr_cont("bridge %s (domain %d)\n",
1419 hose->dn->full_name, hose->global_number);
Michal Simekd3afa582010-01-18 14:42:34 +01001420 /* Workaround for lack of IO resource only on 32-bit */
1421 res->start = (unsigned long)hose->io_base_virt - isa_io_base;
1422 res->end = res->start + IO_SPACE_LIMIT;
1423 res->flags = IORESOURCE_IO;
1424 }
Michal Simekf7eaacc2013-01-04 09:14:46 +01001425 pci_add_resource_offset(resources, res,
1426 (__force resource_size_t)(hose->io_base_virt - _IO_BASE));
Michal Simekd3afa582010-01-18 14:42:34 +01001427
1428 pr_debug("PCI: PHB IO resource = %016llx-%016llx [%lx]\n",
1429 (unsigned long long)res->start,
1430 (unsigned long long)res->end,
1431 (unsigned long)res->flags);
1432
1433 /* Hookup PHB Memory resources */
1434 for (i = 0; i < 3; ++i) {
1435 res = &hose->mem_resources[i];
1436 if (!res->flags) {
1437 if (i > 0)
1438 continue;
Michal Simek6bd55f02012-12-27 10:40:38 +01001439 pr_err("PCI: Memory resource 0 not set for ");
1440 pr_cont("host bridge %s (domain %d)\n",
1441 hose->dn->full_name, hose->global_number);
Michal Simekd3afa582010-01-18 14:42:34 +01001442
1443 /* Workaround for lack of MEM resource only on 32-bit */
1444 res->start = hose->pci_mem_offset;
1445 res->end = (resource_size_t)-1LL;
1446 res->flags = IORESOURCE_MEM;
1447
1448 }
Bjorn Helgaasaa23bdc2012-02-23 20:19:02 -07001449 pci_add_resource_offset(resources, res, hose->pci_mem_offset);
Michal Simekd3afa582010-01-18 14:42:34 +01001450
1451 pr_debug("PCI: PHB MEM resource %d = %016llx-%016llx [%lx]\n",
1452 i, (unsigned long long)res->start,
1453 (unsigned long long)res->end,
1454 (unsigned long)res->flags);
1455 }
1456
1457 pr_debug("PCI: PHB MEM offset = %016llx\n",
1458 (unsigned long long)hose->pci_mem_offset);
1459 pr_debug("PCI: PHB IO offset = %08lx\n",
1460 (unsigned long)hose->io_base_virt - _IO_BASE);
1461}
1462
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001463struct device_node *pcibios_get_phb_of_node(struct pci_bus *bus)
1464{
1465 struct pci_controller *hose = bus->sysdata;
1466
1467 return of_node_get(hose->dn);
1468}
1469
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001470static void pcibios_scan_phb(struct pci_controller *hose)
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001471{
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001472 LIST_HEAD(resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001473 struct pci_bus *bus;
1474 struct device_node *node = hose->dn;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001475
Grant Likely74a7f082012-06-15 11:50:25 -06001476 pr_debug("PCI: Scanning PHB %s\n", of_node_full_name(node));
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001477
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001478 pcibios_setup_phb_resources(hose, &resources);
1479
Bjorn Helgaas4723b982011-10-28 16:26:52 -06001480 bus = pci_scan_root_bus(hose->parent, hose->first_busno,
1481 hose->ops, hose, &resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001482 if (bus == NULL) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001483 pr_err("Failed to create bus for PCI domain %04x\n",
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001484 hose->global_number);
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001485 pci_free_resource_list(&resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001486 return;
1487 }
Yinghai Lub918c622012-05-17 18:51:11 -07001488 bus->busn_res.start = hose->first_busno;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001489 hose->bus = bus;
1490
Yinghai Lub918c622012-05-17 18:51:11 -07001491 hose->last_busno = bus->busn_res.end;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001492}
1493
1494static int __init pcibios_init(void)
1495{
1496 struct pci_controller *hose, *tmp;
1497 int next_busno = 0;
1498
Michal Simek6bd55f02012-12-27 10:40:38 +01001499 pr_info("PCI: Probing PCI hardware\n");
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001500
1501 /* Scan all of the recorded PCI controllers. */
1502 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1503 hose->last_busno = 0xff;
1504 pcibios_scan_phb(hose);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001505 if (next_busno <= hose->last_busno)
1506 next_busno = hose->last_busno + 1;
1507 }
1508 pci_bus_count = next_busno;
1509
1510 /* Call common code to handle resource allocation */
1511 pcibios_resource_survey();
1512
1513 return 0;
1514}
1515
1516subsys_initcall(pcibios_init);
1517
1518static struct pci_controller *pci_bus_to_hose(int bus)
1519{
1520 struct pci_controller *hose, *tmp;
1521
1522 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1523 if (bus >= hose->first_busno && bus <= hose->last_busno)
1524 return hose;
1525 return NULL;
1526}
1527
1528/* Provide information on locations of various I/O regions in physical
1529 * memory. Do this on a per-card basis so that we choose the right
1530 * root bridge.
1531 * Note that the returned IO or memory base is a physical address
1532 */
1533
1534long sys_pciconfig_iobase(long which, unsigned long bus, unsigned long devfn)
1535{
1536 struct pci_controller *hose;
1537 long result = -EOPNOTSUPP;
1538
1539 hose = pci_bus_to_hose(bus);
1540 if (!hose)
1541 return -ENODEV;
1542
1543 switch (which) {
1544 case IOBASE_BRIDGE_NUMBER:
1545 return (long)hose->first_busno;
1546 case IOBASE_MEMORY:
1547 return (long)hose->pci_mem_offset;
1548 case IOBASE_IO:
1549 return (long)hose->io_base_phys;
1550 case IOBASE_ISA_IO:
1551 return (long)isa_io_base;
1552 case IOBASE_ISA_MEM:
1553 return (long)isa_mem_base;
1554 }
1555
1556 return result;
1557}
1558
Michal Simekd3afa582010-01-18 14:42:34 +01001559/*
1560 * Null PCI config access functions, for the case when we can't
1561 * find a hose.
1562 */
1563#define NULL_PCI_OP(rw, size, type) \
1564static int \
1565null_##rw##_config_##size(struct pci_dev *dev, int offset, type val) \
1566{ \
1567 return PCIBIOS_DEVICE_NOT_FOUND; \
1568}
1569
1570static int
1571null_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
1572 int len, u32 *val)
1573{
1574 return PCIBIOS_DEVICE_NOT_FOUND;
1575}
1576
1577static int
1578null_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
1579 int len, u32 val)
1580{
1581 return PCIBIOS_DEVICE_NOT_FOUND;
1582}
1583
1584static struct pci_ops null_pci_ops = {
1585 .read = null_read_config,
1586 .write = null_write_config,
1587};
1588
1589/*
1590 * These functions are used early on before PCI scanning is done
1591 * and all of the pci_dev and pci_bus structures have been created.
1592 */
1593static struct pci_bus *
1594fake_pci_bus(struct pci_controller *hose, int busnr)
1595{
1596 static struct pci_bus bus;
1597
1598 if (!hose)
Michal Simek6bd55f02012-12-27 10:40:38 +01001599 pr_err("Can't find hose for PCI bus %d!\n", busnr);
Michal Simekd3afa582010-01-18 14:42:34 +01001600
1601 bus.number = busnr;
1602 bus.sysdata = hose;
1603 bus.ops = hose ? hose->ops : &null_pci_ops;
1604 return &bus;
1605}
1606
1607#define EARLY_PCI_OP(rw, size, type) \
1608int early_##rw##_config_##size(struct pci_controller *hose, int bus, \
1609 int devfn, int offset, type value) \
1610{ \
1611 return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus), \
1612 devfn, offset, value); \
1613}
1614
1615EARLY_PCI_OP(read, byte, u8 *)
1616EARLY_PCI_OP(read, word, u16 *)
1617EARLY_PCI_OP(read, dword, u32 *)
1618EARLY_PCI_OP(write, byte, u8)
1619EARLY_PCI_OP(write, word, u16)
1620EARLY_PCI_OP(write, dword, u32)
1621
1622int early_find_capability(struct pci_controller *hose, int bus, int devfn,
1623 int cap)
1624{
1625 return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap);
1626}
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001627