blob: 35654be3f1c03289bda596b184b64c2d734d7655 [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
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +100050unsigned long isa_io_base;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +100051static int pci_bus_count;
52
Michal Simekd3afa582010-01-18 14:42:34 +010053struct pci_controller *pcibios_alloc_controller(struct device_node *dev)
54{
55 struct pci_controller *phb;
56
57 phb = zalloc_maybe_bootmem(sizeof(struct pci_controller), GFP_KERNEL);
58 if (!phb)
59 return NULL;
60 spin_lock(&hose_spinlock);
61 phb->global_number = global_phb_number++;
62 list_add_tail(&phb->list_node, &hose_list);
63 spin_unlock(&hose_spinlock);
64 phb->dn = dev;
65 phb->is_dynamic = mem_init_done;
66 return phb;
67}
68
69void pcibios_free_controller(struct pci_controller *phb)
70{
71 spin_lock(&hose_spinlock);
72 list_del(&phb->list_node);
73 spin_unlock(&hose_spinlock);
74
75 if (phb->is_dynamic)
76 kfree(phb);
77}
78
79static resource_size_t pcibios_io_size(const struct pci_controller *hose)
80{
Joe Perches28f65c112011-06-09 09:13:32 -070081 return resource_size(&hose->io_resource);
Michal Simekd3afa582010-01-18 14:42:34 +010082}
83
84int pcibios_vaddr_is_ioport(void __iomem *address)
85{
86 int ret = 0;
87 struct pci_controller *hose;
88 resource_size_t size;
89
90 spin_lock(&hose_spinlock);
91 list_for_each_entry(hose, &hose_list, list_node) {
92 size = pcibios_io_size(hose);
93 if (address >= hose->io_base_virt &&
94 address < (hose->io_base_virt + size)) {
95 ret = 1;
96 break;
97 }
98 }
99 spin_unlock(&hose_spinlock);
100 return ret;
101}
102
103unsigned long pci_address_to_pio(phys_addr_t address)
104{
105 struct pci_controller *hose;
106 resource_size_t size;
107 unsigned long ret = ~0;
108
109 spin_lock(&hose_spinlock);
110 list_for_each_entry(hose, &hose_list, list_node) {
111 size = pcibios_io_size(hose);
112 if (address >= hose->io_base_phys &&
113 address < (hose->io_base_phys + size)) {
114 unsigned long base =
115 (unsigned long)hose->io_base_virt - _IO_BASE;
116 ret = base + (address - hose->io_base_phys);
117 break;
118 }
119 }
120 spin_unlock(&hose_spinlock);
121
122 return ret;
123}
124EXPORT_SYMBOL_GPL(pci_address_to_pio);
125
Michal Simekd3afa582010-01-18 14:42:34 +0100126/* This routine is meant to be used early during boot, when the
127 * PCI bus numbers have not yet been assigned, and you need to
128 * issue PCI config cycles to an OF device.
129 * It could also be used to "fix" RTAS config cycles if you want
130 * to set pci_assign_all_buses to 1 and still use RTAS for PCI
131 * config cycles.
132 */
133struct pci_controller *pci_find_hose_for_OF_device(struct device_node *node)
134{
135 while (node) {
136 struct pci_controller *hose, *tmp;
137 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
138 if (hose->dn == node)
139 return hose;
140 node = node->parent;
141 }
142 return NULL;
143}
144
Myron Stoweb51d4a32011-10-28 15:47:56 -0600145void pcibios_set_master(struct pci_dev *dev)
146{
147 /* No special bus mastering setup handling */
148}
149
Michal Simekd3afa582010-01-18 14:42:34 +0100150/*
Michal Simekd3afa582010-01-18 14:42:34 +0100151 * Platform support for /proc/bus/pci/X/Y mmap()s,
152 * modelled on the sparc64 implementation by Dave Miller.
153 * -- paulus.
154 */
155
156/*
157 * Adjust vm_pgoff of VMA such that it is the physical page offset
158 * corresponding to the 32-bit pci bus offset for DEV requested by the user.
159 *
160 * Basically, the user finds the base address for his device which he wishes
161 * to mmap. They read the 32-bit value from the config space base register,
162 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
163 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
164 *
165 * Returns negative error code on failure, zero on success.
166 */
167static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
168 resource_size_t *offset,
169 enum pci_mmap_state mmap_state)
170{
171 struct pci_controller *hose = pci_bus_to_host(dev->bus);
172 unsigned long io_offset = 0;
173 int i, res_bit;
174
Michal Simekf7eaacc2013-01-04 09:14:46 +0100175 if (!hose)
Michal Simekd3afa582010-01-18 14:42:34 +0100176 return NULL; /* should never happen */
177
178 /* If memory, add on the PCI bridge address offset */
179 if (mmap_state == pci_mmap_mem) {
180#if 0 /* See comment in pci_resource_to_user() for why this is disabled */
181 *offset += hose->pci_mem_offset;
182#endif
183 res_bit = IORESOURCE_MEM;
184 } else {
185 io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
186 *offset += io_offset;
187 res_bit = IORESOURCE_IO;
188 }
189
190 /*
191 * Check that the offset requested corresponds to one of the
192 * resources of the device.
193 */
194 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
195 struct resource *rp = &dev->resource[i];
196 int flags = rp->flags;
197
198 /* treat ROM as memory (should be already) */
199 if (i == PCI_ROM_RESOURCE)
200 flags |= IORESOURCE_MEM;
201
202 /* Active and same type? */
203 if ((flags & res_bit) == 0)
204 continue;
205
206 /* In the range of this resource? */
207 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
208 continue;
209
210 /* found it! construct the final physical address */
211 if (mmap_state == pci_mmap_io)
212 *offset += hose->io_base_phys - io_offset;
213 return rp;
214 }
215
216 return NULL;
217}
218
219/*
220 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
221 * device mapping.
222 */
223static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
224 pgprot_t protection,
225 enum pci_mmap_state mmap_state,
226 int write_combine)
227{
228 pgprot_t prot = protection;
229
230 /* Write combine is always 0 on non-memory space mappings. On
231 * memory space, if the user didn't pass 1, we check for a
232 * "prefetchable" resource. This is a bit hackish, but we use
233 * this to workaround the inability of /sysfs to provide a write
234 * combine bit
235 */
236 if (mmap_state != pci_mmap_mem)
237 write_combine = 0;
238 else if (write_combine == 0) {
239 if (rp->flags & IORESOURCE_PREFETCH)
240 write_combine = 1;
241 }
242
243 return pgprot_noncached(prot);
244}
245
246/*
247 * This one is used by /dev/mem and fbdev who have no clue about the
248 * PCI device, it tries to find the PCI device first and calls the
249 * above routine
250 */
251pgprot_t pci_phys_mem_access_prot(struct file *file,
252 unsigned long pfn,
253 unsigned long size,
254 pgprot_t prot)
255{
256 struct pci_dev *pdev = NULL;
257 struct resource *found = NULL;
258 resource_size_t offset = ((resource_size_t)pfn) << PAGE_SHIFT;
259 int i;
260
261 if (page_is_ram(pfn))
262 return prot;
263
264 prot = pgprot_noncached(prot);
265 for_each_pci_dev(pdev) {
266 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
267 struct resource *rp = &pdev->resource[i];
268 int flags = rp->flags;
269
270 /* Active and same type? */
271 if ((flags & IORESOURCE_MEM) == 0)
272 continue;
273 /* In the range of this resource? */
274 if (offset < (rp->start & PAGE_MASK) ||
275 offset > rp->end)
276 continue;
277 found = rp;
278 break;
279 }
280 if (found)
281 break;
282 }
283 if (found) {
284 if (found->flags & IORESOURCE_PREFETCH)
285 prot = pgprot_noncached_wc(prot);
286 pci_dev_put(pdev);
287 }
288
289 pr_debug("PCI: Non-PCI map for %llx, prot: %lx\n",
290 (unsigned long long)offset, pgprot_val(prot));
291
292 return prot;
293}
294
295/*
296 * Perform the actual remap of the pages for a PCI device mapping, as
297 * appropriate for this architecture. The region in the process to map
298 * is described by vm_start and vm_end members of VMA, the base physical
299 * address is found in vm_pgoff.
300 * The pci device structure is provided so that architectures may make mapping
301 * decisions on a per-device or per-bus basis.
302 *
303 * Returns a negative error code on failure, zero on success.
304 */
305int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
306 enum pci_mmap_state mmap_state, int write_combine)
307{
308 resource_size_t offset =
309 ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
310 struct resource *rp;
311 int ret;
312
313 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
314 if (rp == NULL)
315 return -EINVAL;
316
317 vma->vm_pgoff = offset >> PAGE_SHIFT;
318 vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
319 vma->vm_page_prot,
320 mmap_state, write_combine);
321
322 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
323 vma->vm_end - vma->vm_start, vma->vm_page_prot);
324
325 return ret;
326}
327
328/* This provides legacy IO read access on a bus */
329int pci_legacy_read(struct pci_bus *bus, loff_t port, u32 *val, size_t size)
330{
331 unsigned long offset;
332 struct pci_controller *hose = pci_bus_to_host(bus);
333 struct resource *rp = &hose->io_resource;
334 void __iomem *addr;
335
336 /* Check if port can be supported by that bus. We only check
337 * the ranges of the PHB though, not the bus itself as the rules
338 * for forwarding legacy cycles down bridges are not our problem
339 * here. So if the host bridge supports it, we do it.
340 */
341 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
342 offset += port;
343
344 if (!(rp->flags & IORESOURCE_IO))
345 return -ENXIO;
346 if (offset < rp->start || (offset + size) > rp->end)
347 return -ENXIO;
348 addr = hose->io_base_virt + port;
349
350 switch (size) {
351 case 1:
352 *((u8 *)val) = in_8(addr);
353 return 1;
354 case 2:
355 if (port & 1)
356 return -EINVAL;
357 *((u16 *)val) = in_le16(addr);
358 return 2;
359 case 4:
360 if (port & 3)
361 return -EINVAL;
362 *((u32 *)val) = in_le32(addr);
363 return 4;
364 }
365 return -EINVAL;
366}
367
368/* This provides legacy IO write access on a bus */
369int pci_legacy_write(struct pci_bus *bus, loff_t port, u32 val, size_t size)
370{
371 unsigned long offset;
372 struct pci_controller *hose = pci_bus_to_host(bus);
373 struct resource *rp = &hose->io_resource;
374 void __iomem *addr;
375
376 /* Check if port can be supported by that bus. We only check
377 * the ranges of the PHB though, not the bus itself as the rules
378 * for forwarding legacy cycles down bridges are not our problem
379 * here. So if the host bridge supports it, we do it.
380 */
381 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
382 offset += port;
383
384 if (!(rp->flags & IORESOURCE_IO))
385 return -ENXIO;
386 if (offset < rp->start || (offset + size) > rp->end)
387 return -ENXIO;
388 addr = hose->io_base_virt + port;
389
390 /* WARNING: The generic code is idiotic. It gets passed a pointer
391 * to what can be a 1, 2 or 4 byte quantity and always reads that
392 * as a u32, which means that we have to correct the location of
393 * the data read within those 32 bits for size 1 and 2
394 */
395 switch (size) {
396 case 1:
397 out_8(addr, val >> 24);
398 return 1;
399 case 2:
400 if (port & 1)
401 return -EINVAL;
402 out_le16(addr, val >> 16);
403 return 2;
404 case 4:
405 if (port & 3)
406 return -EINVAL;
407 out_le32(addr, val);
408 return 4;
409 }
410 return -EINVAL;
411}
412
413/* This provides legacy IO or memory mmap access on a bus */
414int pci_mmap_legacy_page_range(struct pci_bus *bus,
415 struct vm_area_struct *vma,
416 enum pci_mmap_state mmap_state)
417{
418 struct pci_controller *hose = pci_bus_to_host(bus);
419 resource_size_t offset =
420 ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
421 resource_size_t size = vma->vm_end - vma->vm_start;
422 struct resource *rp;
423
424 pr_debug("pci_mmap_legacy_page_range(%04x:%02x, %s @%llx..%llx)\n",
425 pci_domain_nr(bus), bus->number,
426 mmap_state == pci_mmap_mem ? "MEM" : "IO",
427 (unsigned long long)offset,
428 (unsigned long long)(offset + size - 1));
429
430 if (mmap_state == pci_mmap_mem) {
431 /* Hack alert !
432 *
433 * Because X is lame and can fail starting if it gets an error
434 * trying to mmap legacy_mem (instead of just moving on without
435 * legacy memory access) we fake it here by giving it anonymous
436 * memory, effectively behaving just like /dev/zero
437 */
438 if ((offset + size) > hose->isa_mem_size) {
Michal Simek79bf3a12010-01-20 15:17:08 +0100439#ifdef CONFIG_MMU
Michal Simek6bd55f02012-12-27 10:40:38 +0100440 pr_debug("Process %s (pid:%d) mapped non-existing PCI",
441 current->comm, current->pid);
442 pr_debug("legacy memory for 0%04x:%02x\n",
443 pci_domain_nr(bus), bus->number);
Michal Simek79bf3a12010-01-20 15:17:08 +0100444#endif
Michal Simekd3afa582010-01-18 14:42:34 +0100445 if (vma->vm_flags & VM_SHARED)
446 return shmem_zero_setup(vma);
447 return 0;
448 }
449 offset += hose->isa_mem_phys;
450 } else {
Michal Simek6bd55f02012-12-27 10:40:38 +0100451 unsigned long io_offset = (unsigned long)hose->io_base_virt -
Michal Simekd3afa582010-01-18 14:42:34 +0100452 _IO_BASE;
453 unsigned long roffset = offset + io_offset;
454 rp = &hose->io_resource;
455 if (!(rp->flags & IORESOURCE_IO))
456 return -ENXIO;
457 if (roffset < rp->start || (roffset + size) > rp->end)
458 return -ENXIO;
459 offset += hose->io_base_phys;
460 }
461 pr_debug(" -> mapping phys %llx\n", (unsigned long long)offset);
462
463 vma->vm_pgoff = offset >> PAGE_SHIFT;
464 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
465 return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
466 vma->vm_end - vma->vm_start,
467 vma->vm_page_prot);
468}
469
470void pci_resource_to_user(const struct pci_dev *dev, int bar,
471 const struct resource *rsrc,
472 resource_size_t *start, resource_size_t *end)
473{
474 struct pci_controller *hose = pci_bus_to_host(dev->bus);
475 resource_size_t offset = 0;
476
477 if (hose == NULL)
478 return;
479
480 if (rsrc->flags & IORESOURCE_IO)
481 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
482
483 /* We pass a fully fixed up address to userland for MMIO instead of
484 * a BAR value because X is lame and expects to be able to use that
485 * to pass to /dev/mem !
486 *
487 * That means that we'll have potentially 64 bits values where some
488 * userland apps only expect 32 (like X itself since it thinks only
489 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
490 * 32 bits CHRPs :-(
491 *
492 * Hopefully, the sysfs insterface is immune to that gunk. Once X
493 * has been fixed (and the fix spread enough), we can re-enable the
494 * 2 lines below and pass down a BAR value to userland. In that case
495 * we'll also have to re-enable the matching code in
496 * __pci_mmap_make_offset().
497 *
498 * BenH.
499 */
500#if 0
501 else if (rsrc->flags & IORESOURCE_MEM)
502 offset = hose->pci_mem_offset;
503#endif
504
505 *start = rsrc->start - offset;
506 *end = rsrc->end - offset;
507}
508
509/**
510 * pci_process_bridge_OF_ranges - Parse PCI bridge resources from device tree
511 * @hose: newly allocated pci_controller to be setup
512 * @dev: device node of the host bridge
513 * @primary: set if primary bus (32 bits only, soon to be deprecated)
514 *
515 * This function will parse the "ranges" property of a PCI host bridge device
516 * node and setup the resource mapping of a pci controller based on its
517 * content.
518 *
519 * Life would be boring if it wasn't for a few issues that we have to deal
520 * with here:
521 *
522 * - We can only cope with one IO space range and up to 3 Memory space
523 * ranges. However, some machines (thanks Apple !) tend to split their
524 * space into lots of small contiguous ranges. So we have to coalesce.
525 *
526 * - We can only cope with all memory ranges having the same offset
527 * between CPU addresses and PCI addresses. Unfortunately, some bridges
528 * are setup for a large 1:1 mapping along with a small "window" which
529 * maps PCI address 0 to some arbitrary high address of the CPU space in
530 * order to give access to the ISA memory hole.
531 * The way out of here that I've chosen for now is to always set the
532 * offset based on the first resource found, then override it if we
533 * have a different offset and the previous was set by an ISA hole.
534 *
535 * - Some busses have IO space not starting at 0, which causes trouble with
536 * the way we do our IO resource renumbering. The code somewhat deals with
537 * it for 64 bits but I would expect problems on 32 bits.
538 *
539 * - Some 32 bits platforms such as 4xx can have physical space larger than
540 * 32 bits so we need to use 64 bits values for the parsing
541 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800542void pci_process_bridge_OF_ranges(struct pci_controller *hose,
543 struct device_node *dev, int primary)
Michal Simekd3afa582010-01-18 14:42:34 +0100544{
Michal Simekd3afa582010-01-18 14:42:34 +0100545 int memno = 0, isa_hole = -1;
Michal Simekd3afa582010-01-18 14:42:34 +0100546 unsigned long long isa_mb = 0;
547 struct resource *res;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100548 struct of_pci_range range;
549 struct of_pci_range_parser parser;
Michal Simekd3afa582010-01-18 14:42:34 +0100550
Michal Simek6bd55f02012-12-27 10:40:38 +0100551 pr_info("PCI host bridge %s %s ranges:\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100552 dev->full_name, primary ? "(primary)" : "");
553
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100554 /* Check for ranges property */
555 if (of_pci_range_parser_init(&parser, dev))
Michal Simekd3afa582010-01-18 14:42:34 +0100556 return;
557
Michal Simekd3afa582010-01-18 14:42:34 +0100558 pr_debug("Parsing ranges property...\n");
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100559 for_each_of_pci_range(&parser, &range) {
Michal Simekd3afa582010-01-18 14:42:34 +0100560 /* Read next ranges element */
Michal Simek6bd55f02012-12-27 10:40:38 +0100561 pr_debug("pci_space: 0x%08x pci_addr:0x%016llx ",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100562 range.pci_space, range.pci_addr);
Michal Simek6bd55f02012-12-27 10:40:38 +0100563 pr_debug("cpu_addr:0x%016llx size:0x%016llx\n",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100564 range.cpu_addr, range.size);
Michal Simekd3afa582010-01-18 14:42:34 +0100565
566 /* If we failed translation or got a zero-sized region
567 * (some FW try to feed us with non sensical zero sized regions
568 * such as power3 which look like some kind of attempt
569 * at exposing the VGA memory hole)
570 */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100571 if (range.cpu_addr == OF_BAD_ADDR || range.size == 0)
Michal Simekd3afa582010-01-18 14:42:34 +0100572 continue;
573
Michal Simekd3afa582010-01-18 14:42:34 +0100574 /* Act based on address space type */
575 res = NULL;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100576 switch (range.flags & IORESOURCE_TYPE_BITS) {
577 case IORESOURCE_IO:
Michal Simek6bd55f02012-12-27 10:40:38 +0100578 pr_info(" IO 0x%016llx..0x%016llx -> 0x%016llx\n",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100579 range.cpu_addr, range.cpu_addr + range.size - 1,
580 range.pci_addr);
Michal Simekd3afa582010-01-18 14:42:34 +0100581
582 /* We support only one IO range */
583 if (hose->pci_io_size) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100584 pr_info(" \\--> Skipped (too many) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100585 continue;
586 }
587 /* On 32 bits, limit I/O space to 16MB */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100588 if (range.size > 0x01000000)
589 range.size = 0x01000000;
Michal Simekd3afa582010-01-18 14:42:34 +0100590
591 /* 32 bits needs to map IOs here */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100592 hose->io_base_virt = ioremap(range.cpu_addr,
593 range.size);
Michal Simekd3afa582010-01-18 14:42:34 +0100594
595 /* Expect trouble if pci_addr is not 0 */
596 if (primary)
597 isa_io_base =
598 (unsigned long)hose->io_base_virt;
599 /* pci_io_size and io_base_phys always represent IO
600 * space starting at 0 so we factor in pci_addr
601 */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100602 hose->pci_io_size = range.pci_addr + range.size;
603 hose->io_base_phys = range.cpu_addr - range.pci_addr;
Michal Simekd3afa582010-01-18 14:42:34 +0100604
605 /* Build resource */
606 res = &hose->io_resource;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100607 range.cpu_addr = range.pci_addr;
608
Michal Simekd3afa582010-01-18 14:42:34 +0100609 break;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100610 case IORESOURCE_MEM:
Michal Simek6bd55f02012-12-27 10:40:38 +0100611 pr_info(" MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100612 range.cpu_addr, range.cpu_addr + range.size - 1,
613 range.pci_addr,
614 (range.pci_space & 0x40000000) ?
615 "Prefetch" : "");
Michal Simekd3afa582010-01-18 14:42:34 +0100616
617 /* We support only 3 memory ranges */
618 if (memno >= 3) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100619 pr_info(" \\--> Skipped (too many) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100620 continue;
621 }
622 /* Handles ISA memory hole space here */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100623 if (range.pci_addr == 0) {
624 isa_mb = range.cpu_addr;
Michal Simekd3afa582010-01-18 14:42:34 +0100625 isa_hole = memno;
626 if (primary || isa_mem_base == 0)
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100627 isa_mem_base = range.cpu_addr;
628 hose->isa_mem_phys = range.cpu_addr;
629 hose->isa_mem_size = range.size;
Michal Simekd3afa582010-01-18 14:42:34 +0100630 }
631
632 /* We get the PCI/Mem offset from the first range or
633 * the, current one if the offset came from an ISA
634 * hole. If they don't match, bugger.
635 */
636 if (memno == 0 ||
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100637 (isa_hole >= 0 && range.pci_addr != 0 &&
Michal Simekd3afa582010-01-18 14:42:34 +0100638 hose->pci_mem_offset == isa_mb))
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100639 hose->pci_mem_offset = range.cpu_addr -
640 range.pci_addr;
641 else if (range.pci_addr != 0 &&
642 hose->pci_mem_offset != range.cpu_addr -
643 range.pci_addr) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100644 pr_info(" \\--> Skipped (offset mismatch) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100645 continue;
646 }
647
648 /* Build resource */
649 res = &hose->mem_resources[memno++];
Michal Simekd3afa582010-01-18 14:42:34 +0100650 break;
651 }
Michal Simek70dcd942014-10-27 08:15:25 +0100652 if (res != NULL) {
653 res->name = dev->full_name;
654 res->flags = range.flags;
655 res->start = range.cpu_addr;
656 res->end = range.cpu_addr + range.size - 1;
657 res->parent = res->child = res->sibling = NULL;
658 }
Michal Simekd3afa582010-01-18 14:42:34 +0100659 }
660
661 /* If there's an ISA hole and the pci_mem_offset is -not- matching
662 * the ISA hole offset, then we need to remove the ISA hole from
663 * the resource list for that brige
664 */
665 if (isa_hole >= 0 && hose->pci_mem_offset != isa_mb) {
666 unsigned int next = isa_hole + 1;
Michal Simek6bd55f02012-12-27 10:40:38 +0100667 pr_info(" Removing ISA hole at 0x%016llx\n", isa_mb);
Michal Simekd3afa582010-01-18 14:42:34 +0100668 if (next < memno)
669 memmove(&hose->mem_resources[isa_hole],
670 &hose->mem_resources[next],
671 sizeof(struct resource) * (memno - next));
672 hose->mem_resources[--memno].flags = 0;
673 }
674}
675
676/* Decide whether to display the domain number in /proc */
677int pci_proc_domain(struct pci_bus *bus)
678{
Bjorn Helgaase5b36842012-02-23 20:18:57 -0700679 return 0;
Michal Simekd3afa582010-01-18 14:42:34 +0100680}
681
Michal Simekd3afa582010-01-18 14:42:34 +0100682/* This header fixup will do the resource fixup for all devices as they are
683 * probed, but not for bridge ranges
684 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800685static void pcibios_fixup_resources(struct pci_dev *dev)
Michal Simekd3afa582010-01-18 14:42:34 +0100686{
687 struct pci_controller *hose = pci_bus_to_host(dev->bus);
688 int i;
689
690 if (!hose) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100691 pr_err("No host bridge for PCI dev %s !\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100692 pci_name(dev));
693 return;
694 }
695 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
696 struct resource *res = dev->resource + i;
697 if (!res->flags)
698 continue;
Bjorn Helgaase5b36842012-02-23 20:18:57 -0700699 if (res->start == 0) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100700 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x]",
Michal Simekd3afa582010-01-18 14:42:34 +0100701 pci_name(dev), i,
702 (unsigned long long)res->start,
703 (unsigned long long)res->end,
704 (unsigned int)res->flags);
Michal Simek6bd55f02012-12-27 10:40:38 +0100705 pr_debug("is unassigned\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100706 res->end -= res->start;
707 res->start = 0;
708 res->flags |= IORESOURCE_UNSET;
709 continue;
710 }
711
Bjorn Helgaasaa23bdc2012-02-23 20:19:02 -0700712 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x]\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100713 pci_name(dev), i,
Michal Simek6bd55f02012-12-27 10:40:38 +0100714 (unsigned long long)res->start,
Michal Simekd3afa582010-01-18 14:42:34 +0100715 (unsigned long long)res->end,
716 (unsigned int)res->flags);
Michal Simekd3afa582010-01-18 14:42:34 +0100717 }
718}
719DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
720
721/* This function tries to figure out if a bridge resource has been initialized
722 * by the firmware or not. It doesn't have to be absolutely bullet proof, but
723 * things go more smoothly when it gets it right. It should covers cases such
724 * as Apple "closed" bridge resources and bare-metal pSeries unassigned bridges
725 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800726static int pcibios_uninitialized_bridge_resource(struct pci_bus *bus,
727 struct resource *res)
Michal Simekd3afa582010-01-18 14:42:34 +0100728{
729 struct pci_controller *hose = pci_bus_to_host(bus);
730 struct pci_dev *dev = bus->self;
731 resource_size_t offset;
732 u16 command;
733 int i;
734
Michal Simekd3afa582010-01-18 14:42:34 +0100735 /* Job is a bit different between memory and IO */
736 if (res->flags & IORESOURCE_MEM) {
737 /* If the BAR is non-0 (res != pci_mem_offset) then it's
738 * probably been initialized by somebody
739 */
740 if (res->start != hose->pci_mem_offset)
741 return 0;
742
743 /* The BAR is 0, let's check if memory decoding is enabled on
744 * the bridge. If not, we consider it unassigned
745 */
746 pci_read_config_word(dev, PCI_COMMAND, &command);
747 if ((command & PCI_COMMAND_MEMORY) == 0)
748 return 1;
749
750 /* Memory decoding is enabled and the BAR is 0. If any of
751 * the bridge resources covers that starting address (0 then
752 * it's good enough for us for memory
753 */
754 for (i = 0; i < 3; i++) {
755 if ((hose->mem_resources[i].flags & IORESOURCE_MEM) &&
756 hose->mem_resources[i].start == hose->pci_mem_offset)
757 return 0;
758 }
759
760 /* Well, it starts at 0 and we know it will collide so we may as
761 * well consider it as unassigned. That covers the Apple case.
762 */
763 return 1;
764 } else {
765 /* If the BAR is non-0, then we consider it assigned */
766 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
767 if (((res->start - offset) & 0xfffffffful) != 0)
768 return 0;
769
770 /* Here, we are a bit different than memory as typically IO
771 * space starting at low addresses -is- valid. What we do
772 * instead if that we consider as unassigned anything that
773 * doesn't have IO enabled in the PCI command register,
774 * and that's it.
775 */
776 pci_read_config_word(dev, PCI_COMMAND, &command);
777 if (command & PCI_COMMAND_IO)
778 return 0;
779
780 /* It's starting at 0 and IO is disabled in the bridge, consider
781 * it unassigned
782 */
783 return 1;
784 }
785}
786
787/* Fixup resources of a PCI<->PCI bridge */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800788static void pcibios_fixup_bridge(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100789{
790 struct resource *res;
791 int i;
792
793 struct pci_dev *dev = bus->self;
794
Michal Simek8a66da72010-04-16 09:03:00 +0200795 pci_bus_for_each_resource(bus, res, i) {
Michal Simekd3afa582010-01-18 14:42:34 +0100796 if (!res)
797 continue;
798 if (!res->flags)
799 continue;
800 if (i >= 3 && bus->self->transparent)
801 continue;
802
803 pr_debug("PCI:%s Bus rsrc %d %016llx-%016llx [%x] fixup...\n",
804 pci_name(dev), i,
Michal Simek6bd55f02012-12-27 10:40:38 +0100805 (unsigned long long)res->start,
Michal Simekd3afa582010-01-18 14:42:34 +0100806 (unsigned long long)res->end,
807 (unsigned int)res->flags);
808
Michal Simekd3afa582010-01-18 14:42:34 +0100809 /* Try to detect uninitialized P2P bridge resources,
810 * and clear them out so they get re-assigned later
811 */
812 if (pcibios_uninitialized_bridge_resource(bus, res)) {
813 res->flags = 0;
814 pr_debug("PCI:%s (unassigned)\n",
815 pci_name(dev));
816 } else {
817 pr_debug("PCI:%s %016llx-%016llx\n",
818 pci_name(dev),
819 (unsigned long long)res->start,
820 (unsigned long long)res->end);
821 }
822 }
823}
824
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800825void pcibios_setup_bus_self(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100826{
827 /* Fix up the bus resources for P2P bridges */
828 if (bus->self != NULL)
829 pcibios_fixup_bridge(bus);
830}
831
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800832void pcibios_setup_bus_devices(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100833{
834 struct pci_dev *dev;
835
836 pr_debug("PCI: Fixup bus devices %d (%s)\n",
837 bus->number, bus->self ? pci_name(bus->self) : "PHB");
838
839 list_for_each_entry(dev, &bus->devices, bus_list) {
Michal Simekd3afa582010-01-18 14:42:34 +0100840 /* Setup OF node pointer in archdata */
Michal Simek088ab302010-08-16 10:31:54 +0200841 dev->dev.of_node = pci_device_to_OF_node(dev);
Michal Simekd3afa582010-01-18 14:42:34 +0100842
843 /* Fixup NUMA node as it may not be setup yet by the generic
844 * code and is needed by the DMA init
845 */
846 set_dev_node(&dev->dev, pcibus_to_node(dev->bus));
847
Michal Simekd3afa582010-01-18 14:42:34 +0100848 /* Read default IRQs and fixup if necessary */
Grant Likelyf27446c2013-09-19 23:34:26 -0500849 dev->irq = of_irq_parse_and_map_pci(dev, 0, 0);
Michal Simekd3afa582010-01-18 14:42:34 +0100850 }
851}
852
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800853void pcibios_fixup_bus(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100854{
Bharat Kumar Gogada01cf9d52016-02-11 21:58:11 +0530855 /* nothing to do */
Michal Simekd3afa582010-01-18 14:42:34 +0100856}
857EXPORT_SYMBOL(pcibios_fixup_bus);
858
Michal Simekd3afa582010-01-18 14:42:34 +0100859/*
860 * We need to avoid collisions with `mirrored' VGA ports
861 * and other strange ISA hardware, so we always want the
862 * addresses to be allocated in the 0x000-0x0ff region
863 * modulo 0x400.
864 *
865 * Why? Because some silly external IO cards only decode
866 * the low 10 bits of the IO address. The 0x00-0xff region
867 * is reserved for motherboard devices that decode all 16
868 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
869 * but we want to try to avoid allocating at 0x2900-0x2bff
870 * which might have be mirrored at 0x0100-0x03ff..
871 */
Michal Simekc86fac42010-04-16 09:04:51 +0200872resource_size_t pcibios_align_resource(void *data, const struct resource *res,
Michal Simekd3afa582010-01-18 14:42:34 +0100873 resource_size_t size, resource_size_t align)
874{
Bharat Kumar Gogada01cf9d52016-02-11 21:58:11 +0530875 return res->start;
Michal Simekd3afa582010-01-18 14:42:34 +0100876}
877EXPORT_SYMBOL(pcibios_align_resource);
878
Bharat Kumar Gogada01cf9d52016-02-11 21:58:11 +0530879int pcibios_add_device(struct pci_dev *dev)
880{
881 dev->irq = of_irq_parse_and_map_pci(dev, 0, 0);
882
883 return 0;
884}
885EXPORT_SYMBOL(pcibios_add_device);
886
Michal Simekd3afa582010-01-18 14:42:34 +0100887/*
888 * Reparent resource children of pr that conflict with res
889 * under res, and make res replace those children.
890 */
891static int __init reparent_resources(struct resource *parent,
892 struct resource *res)
893{
894 struct resource *p, **pp;
895 struct resource **firstpp = NULL;
896
897 for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {
898 if (p->end < res->start)
899 continue;
900 if (res->end < p->start)
901 break;
902 if (p->start < res->start || p->end > res->end)
903 return -1; /* not completely contained */
904 if (firstpp == NULL)
905 firstpp = pp;
906 }
907 if (firstpp == NULL)
908 return -1; /* didn't find any conflicting entries? */
909 res->parent = parent;
910 res->child = *firstpp;
911 res->sibling = *pp;
912 *firstpp = res;
913 *pp = NULL;
914 for (p = res->child; p != NULL; p = p->sibling) {
915 p->parent = res;
916 pr_debug("PCI: Reparented %s [%llx..%llx] under %s\n",
917 p->name,
918 (unsigned long long)p->start,
919 (unsigned long long)p->end, res->name);
920 }
921 return 0;
922}
923
924/*
925 * Handle resources of PCI devices. If the world were perfect, we could
926 * just allocate all the resource regions and do nothing more. It isn't.
927 * On the other hand, we cannot just re-allocate all devices, as it would
928 * require us to know lots of host bridge internals. So we attempt to
929 * keep as much of the original configuration as possible, but tweak it
930 * when it's found to be wrong.
931 *
932 * Known BIOS problems we have to work around:
933 * - I/O or memory regions not configured
934 * - regions configured, but not enabled in the command register
935 * - bogus I/O addresses above 64K used
936 * - expansion ROMs left enabled (this may sound harmless, but given
937 * the fact the PCI specs explicitly allow address decoders to be
938 * shared between expansion ROMs and other resource regions, it's
939 * at least dangerous)
940 *
941 * Our solution:
942 * (1) Allocate resources for all buses behind PCI-to-PCI bridges.
943 * This gives us fixed barriers on where we can allocate.
944 * (2) Allocate resources for all enabled devices. If there is
945 * a collision, just mark the resource as unallocated. Also
946 * disable expansion ROMs during this step.
947 * (3) Try to allocate resources for disabled devices. If the
948 * resources were assigned correctly, everything goes well,
949 * if they weren't, they won't disturb allocation of other
950 * resources.
951 * (4) Assign new addresses to resources which were either
952 * not configured at all or misconfigured. If explicitly
953 * requested by the user, configure expansion ROM address
954 * as well.
955 */
956
Michal Simekf7eaacc2013-01-04 09:14:46 +0100957static void pcibios_allocate_bus_resources(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100958{
959 struct pci_bus *b;
960 int i;
961 struct resource *res, *pr;
962
963 pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
964 pci_domain_nr(bus), bus->number);
965
Michal Simek8a66da72010-04-16 09:03:00 +0200966 pci_bus_for_each_resource(bus, res, i) {
Michal Simekd3afa582010-01-18 14:42:34 +0100967 if (!res || !res->flags
968 || res->start > res->end || res->parent)
969 continue;
970 if (bus->parent == NULL)
971 pr = (res->flags & IORESOURCE_IO) ?
972 &ioport_resource : &iomem_resource;
973 else {
974 /* Don't bother with non-root busses when
975 * re-assigning all resources. We clear the
976 * resource flags as if they were colliding
977 * and as such ensure proper re-allocation
978 * later.
979 */
Michal Simekd3afa582010-01-18 14:42:34 +0100980 pr = pci_find_parent_resource(bus->self, res);
981 if (pr == res) {
982 /* this happens when the generic PCI
983 * code (wrongly) decides that this
984 * bridge is transparent -- paulus
985 */
986 continue;
987 }
988 }
989
Michal Simek6bd55f02012-12-27 10:40:38 +0100990 pr_debug("PCI: %s (bus %d) bridge rsrc %d: %016llx-%016llx ",
Michal Simekd3afa582010-01-18 14:42:34 +0100991 bus->self ? pci_name(bus->self) : "PHB",
992 bus->number, i,
993 (unsigned long long)res->start,
Michal Simek6bd55f02012-12-27 10:40:38 +0100994 (unsigned long long)res->end);
995 pr_debug("[0x%x], parent %p (%s)\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100996 (unsigned int)res->flags,
997 pr, (pr && pr->name) ? pr->name : "nil");
998
999 if (pr && !(pr->flags & IORESOURCE_UNSET)) {
Yinghai Lu576e4382015-01-15 16:21:50 -06001000 struct pci_dev *dev = bus->self;
1001
Michal Simekd3afa582010-01-18 14:42:34 +01001002 if (request_resource(pr, res) == 0)
1003 continue;
1004 /*
1005 * Must be a conflict with an existing entry.
1006 * Move that entry (or entries) under the
1007 * bridge resource and try again.
1008 */
1009 if (reparent_resources(pr, res) == 0)
1010 continue;
Yinghai Lu576e4382015-01-15 16:21:50 -06001011
1012 if (dev && i < PCI_BRIDGE_RESOURCE_NUM &&
1013 pci_claim_bridge_resource(dev,
1014 i + PCI_BRIDGE_RESOURCES) == 0)
1015 continue;
1016
Michal Simekd3afa582010-01-18 14:42:34 +01001017 }
Michal Simek6bd55f02012-12-27 10:40:38 +01001018 pr_warn("PCI: Cannot allocate resource region ");
1019 pr_cont("%d of PCI bridge %d, will remap\n", i, bus->number);
Yinghai Lu837c4ef2010-06-03 13:43:03 -07001020 res->start = res->end = 0;
Michal Simekd3afa582010-01-18 14:42:34 +01001021 res->flags = 0;
1022 }
1023
1024 list_for_each_entry(b, &bus->children, node)
1025 pcibios_allocate_bus_resources(b);
1026}
1027
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001028static inline void alloc_resource(struct pci_dev *dev, int idx)
Michal Simekd3afa582010-01-18 14:42:34 +01001029{
1030 struct resource *pr, *r = &dev->resource[idx];
1031
1032 pr_debug("PCI: Allocating %s: Resource %d: %016llx..%016llx [%x]\n",
1033 pci_name(dev), idx,
1034 (unsigned long long)r->start,
1035 (unsigned long long)r->end,
1036 (unsigned int)r->flags);
1037
1038 pr = pci_find_parent_resource(dev, r);
1039 if (!pr || (pr->flags & IORESOURCE_UNSET) ||
1040 request_resource(pr, r) < 0) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001041 pr_warn("PCI: Cannot allocate resource region %d ", idx);
1042 pr_cont("of device %s, will remap\n", pci_name(dev));
Michal Simekd3afa582010-01-18 14:42:34 +01001043 if (pr)
1044 pr_debug("PCI: parent is %p: %016llx-%016llx [%x]\n",
1045 pr,
1046 (unsigned long long)pr->start,
1047 (unsigned long long)pr->end,
1048 (unsigned int)pr->flags);
1049 /* We'll assign a new address later */
1050 r->flags |= IORESOURCE_UNSET;
1051 r->end -= r->start;
1052 r->start = 0;
1053 }
1054}
1055
1056static void __init pcibios_allocate_resources(int pass)
1057{
1058 struct pci_dev *dev = NULL;
1059 int idx, disabled;
1060 u16 command;
1061 struct resource *r;
1062
1063 for_each_pci_dev(dev) {
1064 pci_read_config_word(dev, PCI_COMMAND, &command);
1065 for (idx = 0; idx <= PCI_ROM_RESOURCE; idx++) {
1066 r = &dev->resource[idx];
1067 if (r->parent) /* Already allocated */
1068 continue;
1069 if (!r->flags || (r->flags & IORESOURCE_UNSET))
1070 continue; /* Not assigned at all */
1071 /* We only allocate ROMs on pass 1 just in case they
1072 * have been screwed up by firmware
1073 */
1074 if (idx == PCI_ROM_RESOURCE)
1075 disabled = 1;
1076 if (r->flags & IORESOURCE_IO)
1077 disabled = !(command & PCI_COMMAND_IO);
1078 else
1079 disabled = !(command & PCI_COMMAND_MEMORY);
1080 if (pass == disabled)
1081 alloc_resource(dev, idx);
1082 }
1083 if (pass)
1084 continue;
1085 r = &dev->resource[PCI_ROM_RESOURCE];
1086 if (r->flags) {
1087 /* Turn the ROM off, leave the resource region,
1088 * but keep it unregistered.
1089 */
1090 u32 reg;
1091 pci_read_config_dword(dev, dev->rom_base_reg, &reg);
1092 if (reg & PCI_ROM_ADDRESS_ENABLE) {
1093 pr_debug("PCI: Switching off ROM of %s\n",
1094 pci_name(dev));
1095 r->flags &= ~IORESOURCE_ROM_ENABLE;
1096 pci_write_config_dword(dev, dev->rom_base_reg,
1097 reg & ~PCI_ROM_ADDRESS_ENABLE);
1098 }
1099 }
1100 }
1101}
1102
1103static void __init pcibios_reserve_legacy_regions(struct pci_bus *bus)
1104{
1105 struct pci_controller *hose = pci_bus_to_host(bus);
1106 resource_size_t offset;
1107 struct resource *res, *pres;
1108 int i;
1109
1110 pr_debug("Reserving legacy ranges for domain %04x\n",
1111 pci_domain_nr(bus));
1112
1113 /* Check for IO */
1114 if (!(hose->io_resource.flags & IORESOURCE_IO))
1115 goto no_io;
1116 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
1117 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1118 BUG_ON(res == NULL);
1119 res->name = "Legacy IO";
1120 res->flags = IORESOURCE_IO;
1121 res->start = offset;
1122 res->end = (offset + 0xfff) & 0xfffffffful;
1123 pr_debug("Candidate legacy IO: %pR\n", res);
1124 if (request_resource(&hose->io_resource, res)) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001125 pr_debug("PCI %04x:%02x Cannot reserve Legacy IO %pR\n",
Michal Simekd3afa582010-01-18 14:42:34 +01001126 pci_domain_nr(bus), bus->number, res);
1127 kfree(res);
1128 }
1129
1130 no_io:
1131 /* Check for memory */
1132 offset = hose->pci_mem_offset;
1133 pr_debug("hose mem offset: %016llx\n", (unsigned long long)offset);
1134 for (i = 0; i < 3; i++) {
1135 pres = &hose->mem_resources[i];
1136 if (!(pres->flags & IORESOURCE_MEM))
1137 continue;
1138 pr_debug("hose mem res: %pR\n", pres);
1139 if ((pres->start - offset) <= 0xa0000 &&
1140 (pres->end - offset) >= 0xbffff)
1141 break;
1142 }
1143 if (i >= 3)
1144 return;
1145 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1146 BUG_ON(res == NULL);
1147 res->name = "Legacy VGA memory";
1148 res->flags = IORESOURCE_MEM;
1149 res->start = 0xa0000 + offset;
1150 res->end = 0xbffff + offset;
1151 pr_debug("Candidate VGA memory: %pR\n", res);
1152 if (request_resource(pres, res)) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001153 pr_debug("PCI %04x:%02x Cannot reserve VGA memory %pR\n",
Michal Simekd3afa582010-01-18 14:42:34 +01001154 pci_domain_nr(bus), bus->number, res);
1155 kfree(res);
1156 }
1157}
1158
1159void __init pcibios_resource_survey(void)
1160{
1161 struct pci_bus *b;
1162
1163 /* Allocate and assign resources. If we re-assign everything, then
1164 * we skip the allocate phase
1165 */
1166 list_for_each_entry(b, &pci_root_buses, node)
1167 pcibios_allocate_bus_resources(b);
1168
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001169 pcibios_allocate_resources(0);
1170 pcibios_allocate_resources(1);
Michal Simekd3afa582010-01-18 14:42:34 +01001171
1172 /* Before we start assigning unassigned resource, we try to reserve
1173 * the low IO area and the VGA memory area if they intersect the
1174 * bus available resources to avoid allocating things on top of them
1175 */
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001176 list_for_each_entry(b, &pci_root_buses, node)
1177 pcibios_reserve_legacy_regions(b);
Michal Simekd3afa582010-01-18 14:42:34 +01001178
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001179 /* Now proceed to assigning things that were left unassigned */
1180 pr_debug("PCI: Assigning unassigned resources...\n");
1181 pci_assign_unassigned_resources();
Michal Simekd3afa582010-01-18 14:42:34 +01001182}
1183
Michal Simekd3afa582010-01-18 14:42:34 +01001184/* This is used by the PCI hotplug driver to allocate resource
1185 * of newly plugged busses. We can try to consolidate with the
1186 * rest of the code later, for now, keep it as-is as our main
1187 * resource allocation function doesn't deal with sub-trees yet.
1188 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001189void pcibios_claim_one_bus(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +01001190{
1191 struct pci_dev *dev;
1192 struct pci_bus *child_bus;
1193
1194 list_for_each_entry(dev, &bus->devices, bus_list) {
1195 int i;
1196
1197 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1198 struct resource *r = &dev->resource[i];
1199
1200 if (r->parent || !r->start || !r->flags)
1201 continue;
1202
Michal Simek6bd55f02012-12-27 10:40:38 +01001203 pr_debug("PCI: Claiming %s: ", pci_name(dev));
1204 pr_debug("Resource %d: %016llx..%016llx [%x]\n",
1205 i, (unsigned long long)r->start,
Michal Simekd3afa582010-01-18 14:42:34 +01001206 (unsigned long long)r->end,
1207 (unsigned int)r->flags);
1208
Yinghai Lu576e4382015-01-15 16:21:50 -06001209 if (pci_claim_resource(dev, i) == 0)
1210 continue;
1211
1212 pci_claim_bridge_resource(dev, i);
Michal Simekd3afa582010-01-18 14:42:34 +01001213 }
1214 }
1215
1216 list_for_each_entry(child_bus, &bus->children, node)
1217 pcibios_claim_one_bus(child_bus);
1218}
1219EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
1220
1221
1222/* pcibios_finish_adding_to_bus
1223 *
1224 * This is to be called by the hotplug code after devices have been
1225 * added to a bus, this include calling it for a PHB that is just
1226 * being added
1227 */
1228void pcibios_finish_adding_to_bus(struct pci_bus *bus)
1229{
1230 pr_debug("PCI: Finishing adding to hotplug bus %04x:%02x\n",
1231 pci_domain_nr(bus), bus->number);
1232
1233 /* Allocate bus and devices resources */
1234 pcibios_allocate_bus_resources(bus);
1235 pcibios_claim_one_bus(bus);
1236
1237 /* Add new devices to global lists. Register in proc, sysfs. */
1238 pci_bus_add_devices(bus);
1239
1240 /* Fixup EEH */
Michal Simek1ce24702010-05-13 12:09:54 +02001241 /* eeh_add_device_tree_late(bus); */
Michal Simekd3afa582010-01-18 14:42:34 +01001242}
1243EXPORT_SYMBOL_GPL(pcibios_finish_adding_to_bus);
1244
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001245static void pcibios_setup_phb_resources(struct pci_controller *hose,
1246 struct list_head *resources)
Michal Simekd3afa582010-01-18 14:42:34 +01001247{
Bjorn Helgaas5420e462012-05-15 17:03:25 -06001248 unsigned long io_offset;
Michal Simekd3afa582010-01-18 14:42:34 +01001249 struct resource *res;
1250 int i;
1251
1252 /* Hookup PHB IO resource */
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001253 res = &hose->io_resource;
1254
1255 /* Fixup IO space offset */
1256 io_offset = (unsigned long)hose->io_base_virt - isa_io_base;
1257 res->start = (res->start + io_offset) & 0xffffffffu;
1258 res->end = (res->end + io_offset) & 0xffffffffu;
Michal Simekd3afa582010-01-18 14:42:34 +01001259
1260 if (!res->flags) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001261 pr_warn("PCI: I/O resource not set for host ");
1262 pr_cont("bridge %s (domain %d)\n",
1263 hose->dn->full_name, hose->global_number);
Michal Simekd3afa582010-01-18 14:42:34 +01001264 /* Workaround for lack of IO resource only on 32-bit */
1265 res->start = (unsigned long)hose->io_base_virt - isa_io_base;
1266 res->end = res->start + IO_SPACE_LIMIT;
1267 res->flags = IORESOURCE_IO;
1268 }
Michal Simekf7eaacc2013-01-04 09:14:46 +01001269 pci_add_resource_offset(resources, res,
1270 (__force resource_size_t)(hose->io_base_virt - _IO_BASE));
Michal Simekd3afa582010-01-18 14:42:34 +01001271
1272 pr_debug("PCI: PHB IO resource = %016llx-%016llx [%lx]\n",
1273 (unsigned long long)res->start,
1274 (unsigned long long)res->end,
1275 (unsigned long)res->flags);
1276
1277 /* Hookup PHB Memory resources */
1278 for (i = 0; i < 3; ++i) {
1279 res = &hose->mem_resources[i];
1280 if (!res->flags) {
1281 if (i > 0)
1282 continue;
Michal Simek6bd55f02012-12-27 10:40:38 +01001283 pr_err("PCI: Memory resource 0 not set for ");
1284 pr_cont("host bridge %s (domain %d)\n",
1285 hose->dn->full_name, hose->global_number);
Michal Simekd3afa582010-01-18 14:42:34 +01001286
1287 /* Workaround for lack of MEM resource only on 32-bit */
1288 res->start = hose->pci_mem_offset;
1289 res->end = (resource_size_t)-1LL;
1290 res->flags = IORESOURCE_MEM;
1291
1292 }
Bjorn Helgaasaa23bdc2012-02-23 20:19:02 -07001293 pci_add_resource_offset(resources, res, hose->pci_mem_offset);
Michal Simekd3afa582010-01-18 14:42:34 +01001294
1295 pr_debug("PCI: PHB MEM resource %d = %016llx-%016llx [%lx]\n",
1296 i, (unsigned long long)res->start,
1297 (unsigned long long)res->end,
1298 (unsigned long)res->flags);
1299 }
1300
1301 pr_debug("PCI: PHB MEM offset = %016llx\n",
1302 (unsigned long long)hose->pci_mem_offset);
1303 pr_debug("PCI: PHB IO offset = %08lx\n",
1304 (unsigned long)hose->io_base_virt - _IO_BASE);
1305}
1306
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001307static void pcibios_scan_phb(struct pci_controller *hose)
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001308{
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001309 LIST_HEAD(resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001310 struct pci_bus *bus;
1311 struct device_node *node = hose->dn;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001312
Grant Likely74a7f082012-06-15 11:50:25 -06001313 pr_debug("PCI: Scanning PHB %s\n", of_node_full_name(node));
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001314
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001315 pcibios_setup_phb_resources(hose, &resources);
1316
Bjorn Helgaas4723b982011-10-28 16:26:52 -06001317 bus = pci_scan_root_bus(hose->parent, hose->first_busno,
1318 hose->ops, hose, &resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001319 if (bus == NULL) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001320 pr_err("Failed to create bus for PCI domain %04x\n",
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001321 hose->global_number);
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001322 pci_free_resource_list(&resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001323 return;
1324 }
Yinghai Lub918c622012-05-17 18:51:11 -07001325 bus->busn_res.start = hose->first_busno;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001326 hose->bus = bus;
1327
Yinghai Lub918c622012-05-17 18:51:11 -07001328 hose->last_busno = bus->busn_res.end;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001329}
1330
1331static int __init pcibios_init(void)
1332{
1333 struct pci_controller *hose, *tmp;
1334 int next_busno = 0;
1335
Michal Simek6bd55f02012-12-27 10:40:38 +01001336 pr_info("PCI: Probing PCI hardware\n");
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001337
1338 /* Scan all of the recorded PCI controllers. */
1339 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1340 hose->last_busno = 0xff;
1341 pcibios_scan_phb(hose);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001342 if (next_busno <= hose->last_busno)
1343 next_busno = hose->last_busno + 1;
1344 }
1345 pci_bus_count = next_busno;
1346
1347 /* Call common code to handle resource allocation */
1348 pcibios_resource_survey();
Yijing Wangb97ea282015-03-16 11:18:56 +08001349 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1350 if (hose->bus)
1351 pci_bus_add_devices(hose->bus);
1352 }
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001353
1354 return 0;
1355}
1356
1357subsys_initcall(pcibios_init);
1358
1359static struct pci_controller *pci_bus_to_hose(int bus)
1360{
1361 struct pci_controller *hose, *tmp;
1362
1363 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1364 if (bus >= hose->first_busno && bus <= hose->last_busno)
1365 return hose;
1366 return NULL;
1367}
1368
1369/* Provide information on locations of various I/O regions in physical
1370 * memory. Do this on a per-card basis so that we choose the right
1371 * root bridge.
1372 * Note that the returned IO or memory base is a physical address
1373 */
1374
1375long sys_pciconfig_iobase(long which, unsigned long bus, unsigned long devfn)
1376{
1377 struct pci_controller *hose;
1378 long result = -EOPNOTSUPP;
1379
1380 hose = pci_bus_to_hose(bus);
1381 if (!hose)
1382 return -ENODEV;
1383
1384 switch (which) {
1385 case IOBASE_BRIDGE_NUMBER:
1386 return (long)hose->first_busno;
1387 case IOBASE_MEMORY:
1388 return (long)hose->pci_mem_offset;
1389 case IOBASE_IO:
1390 return (long)hose->io_base_phys;
1391 case IOBASE_ISA_IO:
1392 return (long)isa_io_base;
1393 case IOBASE_ISA_MEM:
1394 return (long)isa_mem_base;
1395 }
1396
1397 return result;
1398}
1399
Michal Simekd3afa582010-01-18 14:42:34 +01001400/*
1401 * Null PCI config access functions, for the case when we can't
1402 * find a hose.
1403 */
1404#define NULL_PCI_OP(rw, size, type) \
1405static int \
1406null_##rw##_config_##size(struct pci_dev *dev, int offset, type val) \
1407{ \
1408 return PCIBIOS_DEVICE_NOT_FOUND; \
1409}
1410
1411static int
1412null_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
1413 int len, u32 *val)
1414{
1415 return PCIBIOS_DEVICE_NOT_FOUND;
1416}
1417
1418static int
1419null_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
1420 int len, u32 val)
1421{
1422 return PCIBIOS_DEVICE_NOT_FOUND;
1423}
1424
1425static struct pci_ops null_pci_ops = {
1426 .read = null_read_config,
1427 .write = null_write_config,
1428};
1429
1430/*
1431 * These functions are used early on before PCI scanning is done
1432 * and all of the pci_dev and pci_bus structures have been created.
1433 */
1434static struct pci_bus *
1435fake_pci_bus(struct pci_controller *hose, int busnr)
1436{
1437 static struct pci_bus bus;
1438
1439 if (!hose)
Michal Simek6bd55f02012-12-27 10:40:38 +01001440 pr_err("Can't find hose for PCI bus %d!\n", busnr);
Michal Simekd3afa582010-01-18 14:42:34 +01001441
1442 bus.number = busnr;
1443 bus.sysdata = hose;
1444 bus.ops = hose ? hose->ops : &null_pci_ops;
1445 return &bus;
1446}
1447
1448#define EARLY_PCI_OP(rw, size, type) \
1449int early_##rw##_config_##size(struct pci_controller *hose, int bus, \
1450 int devfn, int offset, type value) \
1451{ \
1452 return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus), \
1453 devfn, offset, value); \
1454}
1455
1456EARLY_PCI_OP(read, byte, u8 *)
1457EARLY_PCI_OP(read, word, u16 *)
1458EARLY_PCI_OP(read, dword, u32 *)
1459EARLY_PCI_OP(write, byte, u8)
1460EARLY_PCI_OP(write, word, u16)
1461EARLY_PCI_OP(write, dword, u32)
1462
1463int early_find_capability(struct pci_controller *hose, int bus, int devfn,
1464 int cap)
1465{
1466 return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap);
1467}
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001468