blob: 1974567f3b4ba99a3479be585d06cd2c5c22c06d [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;
Fengguang Wu52e9e6e2016-03-17 10:36:28 +080051EXPORT_SYMBOL(isa_io_base);
52
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +100053static int pci_bus_count;
54
Michal Simekd3afa582010-01-18 14:42:34 +010055struct pci_controller *pcibios_alloc_controller(struct device_node *dev)
56{
57 struct pci_controller *phb;
58
59 phb = zalloc_maybe_bootmem(sizeof(struct pci_controller), GFP_KERNEL);
60 if (!phb)
61 return NULL;
62 spin_lock(&hose_spinlock);
63 phb->global_number = global_phb_number++;
64 list_add_tail(&phb->list_node, &hose_list);
65 spin_unlock(&hose_spinlock);
66 phb->dn = dev;
67 phb->is_dynamic = mem_init_done;
68 return phb;
69}
70
71void pcibios_free_controller(struct pci_controller *phb)
72{
73 spin_lock(&hose_spinlock);
74 list_del(&phb->list_node);
75 spin_unlock(&hose_spinlock);
76
77 if (phb->is_dynamic)
78 kfree(phb);
79}
80
81static resource_size_t pcibios_io_size(const struct pci_controller *hose)
82{
Joe Perches28f65c112011-06-09 09:13:32 -070083 return resource_size(&hose->io_resource);
Michal Simekd3afa582010-01-18 14:42:34 +010084}
85
86int pcibios_vaddr_is_ioport(void __iomem *address)
87{
88 int ret = 0;
89 struct pci_controller *hose;
90 resource_size_t size;
91
92 spin_lock(&hose_spinlock);
93 list_for_each_entry(hose, &hose_list, list_node) {
94 size = pcibios_io_size(hose);
95 if (address >= hose->io_base_virt &&
96 address < (hose->io_base_virt + size)) {
97 ret = 1;
98 break;
99 }
100 }
101 spin_unlock(&hose_spinlock);
102 return ret;
103}
104
105unsigned long pci_address_to_pio(phys_addr_t address)
106{
107 struct pci_controller *hose;
108 resource_size_t size;
109 unsigned long ret = ~0;
110
111 spin_lock(&hose_spinlock);
112 list_for_each_entry(hose, &hose_list, list_node) {
113 size = pcibios_io_size(hose);
114 if (address >= hose->io_base_phys &&
115 address < (hose->io_base_phys + size)) {
116 unsigned long base =
117 (unsigned long)hose->io_base_virt - _IO_BASE;
118 ret = base + (address - hose->io_base_phys);
119 break;
120 }
121 }
122 spin_unlock(&hose_spinlock);
123
124 return ret;
125}
126EXPORT_SYMBOL_GPL(pci_address_to_pio);
127
Michal Simekd3afa582010-01-18 14:42:34 +0100128/* This routine is meant to be used early during boot, when the
129 * PCI bus numbers have not yet been assigned, and you need to
130 * issue PCI config cycles to an OF device.
131 * It could also be used to "fix" RTAS config cycles if you want
132 * to set pci_assign_all_buses to 1 and still use RTAS for PCI
133 * config cycles.
134 */
135struct pci_controller *pci_find_hose_for_OF_device(struct device_node *node)
136{
137 while (node) {
138 struct pci_controller *hose, *tmp;
139 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
140 if (hose->dn == node)
141 return hose;
142 node = node->parent;
143 }
144 return NULL;
145}
146
Myron Stoweb51d4a32011-10-28 15:47:56 -0600147void pcibios_set_master(struct pci_dev *dev)
148{
149 /* No special bus mastering setup handling */
150}
151
Michal Simekd3afa582010-01-18 14:42:34 +0100152/*
Michal Simekd3afa582010-01-18 14:42:34 +0100153 * Platform support for /proc/bus/pci/X/Y mmap()s,
154 * modelled on the sparc64 implementation by Dave Miller.
155 * -- paulus.
156 */
157
158/*
159 * Adjust vm_pgoff of VMA such that it is the physical page offset
160 * corresponding to the 32-bit pci bus offset for DEV requested by the user.
161 *
162 * Basically, the user finds the base address for his device which he wishes
163 * to mmap. They read the 32-bit value from the config space base register,
164 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
165 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
166 *
167 * Returns negative error code on failure, zero on success.
168 */
169static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
170 resource_size_t *offset,
171 enum pci_mmap_state mmap_state)
172{
173 struct pci_controller *hose = pci_bus_to_host(dev->bus);
174 unsigned long io_offset = 0;
175 int i, res_bit;
176
Michal Simekf7eaacc2013-01-04 09:14:46 +0100177 if (!hose)
Michal Simekd3afa582010-01-18 14:42:34 +0100178 return NULL; /* should never happen */
179
180 /* If memory, add on the PCI bridge address offset */
181 if (mmap_state == pci_mmap_mem) {
182#if 0 /* See comment in pci_resource_to_user() for why this is disabled */
183 *offset += hose->pci_mem_offset;
184#endif
185 res_bit = IORESOURCE_MEM;
186 } else {
187 io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
188 *offset += io_offset;
189 res_bit = IORESOURCE_IO;
190 }
191
192 /*
193 * Check that the offset requested corresponds to one of the
194 * resources of the device.
195 */
196 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
197 struct resource *rp = &dev->resource[i];
198 int flags = rp->flags;
199
200 /* treat ROM as memory (should be already) */
201 if (i == PCI_ROM_RESOURCE)
202 flags |= IORESOURCE_MEM;
203
204 /* Active and same type? */
205 if ((flags & res_bit) == 0)
206 continue;
207
208 /* In the range of this resource? */
209 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
210 continue;
211
212 /* found it! construct the final physical address */
213 if (mmap_state == pci_mmap_io)
214 *offset += hose->io_base_phys - io_offset;
215 return rp;
216 }
217
218 return NULL;
219}
220
221/*
Michal Simekd3afa582010-01-18 14:42:34 +0100222 * This one is used by /dev/mem and fbdev who have no clue about the
223 * PCI device, it tries to find the PCI device first and calls the
224 * above routine
225 */
226pgprot_t pci_phys_mem_access_prot(struct file *file,
227 unsigned long pfn,
228 unsigned long size,
229 pgprot_t prot)
230{
231 struct pci_dev *pdev = NULL;
232 struct resource *found = NULL;
233 resource_size_t offset = ((resource_size_t)pfn) << PAGE_SHIFT;
234 int i;
235
236 if (page_is_ram(pfn))
237 return prot;
238
239 prot = pgprot_noncached(prot);
240 for_each_pci_dev(pdev) {
241 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
242 struct resource *rp = &pdev->resource[i];
243 int flags = rp->flags;
244
245 /* Active and same type? */
246 if ((flags & IORESOURCE_MEM) == 0)
247 continue;
248 /* In the range of this resource? */
249 if (offset < (rp->start & PAGE_MASK) ||
250 offset > rp->end)
251 continue;
252 found = rp;
253 break;
254 }
255 if (found)
256 break;
257 }
258 if (found) {
259 if (found->flags & IORESOURCE_PREFETCH)
260 prot = pgprot_noncached_wc(prot);
261 pci_dev_put(pdev);
262 }
263
264 pr_debug("PCI: Non-PCI map for %llx, prot: %lx\n",
265 (unsigned long long)offset, pgprot_val(prot));
266
267 return prot;
268}
269
270/*
271 * Perform the actual remap of the pages for a PCI device mapping, as
272 * appropriate for this architecture. The region in the process to map
273 * is described by vm_start and vm_end members of VMA, the base physical
274 * address is found in vm_pgoff.
275 * The pci device structure is provided so that architectures may make mapping
276 * decisions on a per-device or per-bus basis.
277 *
278 * Returns a negative error code on failure, zero on success.
279 */
280int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
281 enum pci_mmap_state mmap_state, int write_combine)
282{
283 resource_size_t offset =
284 ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
285 struct resource *rp;
286 int ret;
287
288 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
289 if (rp == NULL)
290 return -EINVAL;
291
292 vma->vm_pgoff = offset >> PAGE_SHIFT;
Bjorn Helgaasc444a2be2016-06-17 14:43:33 -0500293 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
Michal Simekd3afa582010-01-18 14:42:34 +0100294
295 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
296 vma->vm_end - vma->vm_start, vma->vm_page_prot);
297
298 return ret;
299}
300
301/* This provides legacy IO read access on a bus */
302int pci_legacy_read(struct pci_bus *bus, loff_t port, u32 *val, size_t size)
303{
304 unsigned long offset;
305 struct pci_controller *hose = pci_bus_to_host(bus);
306 struct resource *rp = &hose->io_resource;
307 void __iomem *addr;
308
309 /* Check if port can be supported by that bus. We only check
310 * the ranges of the PHB though, not the bus itself as the rules
311 * for forwarding legacy cycles down bridges are not our problem
312 * here. So if the host bridge supports it, we do it.
313 */
314 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
315 offset += port;
316
317 if (!(rp->flags & IORESOURCE_IO))
318 return -ENXIO;
319 if (offset < rp->start || (offset + size) > rp->end)
320 return -ENXIO;
321 addr = hose->io_base_virt + port;
322
323 switch (size) {
324 case 1:
325 *((u8 *)val) = in_8(addr);
326 return 1;
327 case 2:
328 if (port & 1)
329 return -EINVAL;
330 *((u16 *)val) = in_le16(addr);
331 return 2;
332 case 4:
333 if (port & 3)
334 return -EINVAL;
335 *((u32 *)val) = in_le32(addr);
336 return 4;
337 }
338 return -EINVAL;
339}
340
341/* This provides legacy IO write access on a bus */
342int pci_legacy_write(struct pci_bus *bus, loff_t port, u32 val, size_t size)
343{
344 unsigned long offset;
345 struct pci_controller *hose = pci_bus_to_host(bus);
346 struct resource *rp = &hose->io_resource;
347 void __iomem *addr;
348
349 /* Check if port can be supported by that bus. We only check
350 * the ranges of the PHB though, not the bus itself as the rules
351 * for forwarding legacy cycles down bridges are not our problem
352 * here. So if the host bridge supports it, we do it.
353 */
354 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
355 offset += port;
356
357 if (!(rp->flags & IORESOURCE_IO))
358 return -ENXIO;
359 if (offset < rp->start || (offset + size) > rp->end)
360 return -ENXIO;
361 addr = hose->io_base_virt + port;
362
363 /* WARNING: The generic code is idiotic. It gets passed a pointer
364 * to what can be a 1, 2 or 4 byte quantity and always reads that
365 * as a u32, which means that we have to correct the location of
366 * the data read within those 32 bits for size 1 and 2
367 */
368 switch (size) {
369 case 1:
370 out_8(addr, val >> 24);
371 return 1;
372 case 2:
373 if (port & 1)
374 return -EINVAL;
375 out_le16(addr, val >> 16);
376 return 2;
377 case 4:
378 if (port & 3)
379 return -EINVAL;
380 out_le32(addr, val);
381 return 4;
382 }
383 return -EINVAL;
384}
385
386/* This provides legacy IO or memory mmap access on a bus */
387int pci_mmap_legacy_page_range(struct pci_bus *bus,
388 struct vm_area_struct *vma,
389 enum pci_mmap_state mmap_state)
390{
391 struct pci_controller *hose = pci_bus_to_host(bus);
392 resource_size_t offset =
393 ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
394 resource_size_t size = vma->vm_end - vma->vm_start;
395 struct resource *rp;
396
397 pr_debug("pci_mmap_legacy_page_range(%04x:%02x, %s @%llx..%llx)\n",
398 pci_domain_nr(bus), bus->number,
399 mmap_state == pci_mmap_mem ? "MEM" : "IO",
400 (unsigned long long)offset,
401 (unsigned long long)(offset + size - 1));
402
403 if (mmap_state == pci_mmap_mem) {
404 /* Hack alert !
405 *
406 * Because X is lame and can fail starting if it gets an error
407 * trying to mmap legacy_mem (instead of just moving on without
408 * legacy memory access) we fake it here by giving it anonymous
409 * memory, effectively behaving just like /dev/zero
410 */
411 if ((offset + size) > hose->isa_mem_size) {
Michal Simek79bf3a12010-01-20 15:17:08 +0100412#ifdef CONFIG_MMU
Michal Simek6bd55f02012-12-27 10:40:38 +0100413 pr_debug("Process %s (pid:%d) mapped non-existing PCI",
414 current->comm, current->pid);
415 pr_debug("legacy memory for 0%04x:%02x\n",
416 pci_domain_nr(bus), bus->number);
Michal Simek79bf3a12010-01-20 15:17:08 +0100417#endif
Michal Simekd3afa582010-01-18 14:42:34 +0100418 if (vma->vm_flags & VM_SHARED)
419 return shmem_zero_setup(vma);
420 return 0;
421 }
422 offset += hose->isa_mem_phys;
423 } else {
Michal Simek6bd55f02012-12-27 10:40:38 +0100424 unsigned long io_offset = (unsigned long)hose->io_base_virt -
Michal Simekd3afa582010-01-18 14:42:34 +0100425 _IO_BASE;
426 unsigned long roffset = offset + io_offset;
427 rp = &hose->io_resource;
428 if (!(rp->flags & IORESOURCE_IO))
429 return -ENXIO;
430 if (roffset < rp->start || (roffset + size) > rp->end)
431 return -ENXIO;
432 offset += hose->io_base_phys;
433 }
434 pr_debug(" -> mapping phys %llx\n", (unsigned long long)offset);
435
436 vma->vm_pgoff = offset >> PAGE_SHIFT;
437 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
438 return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
439 vma->vm_end - vma->vm_start,
440 vma->vm_page_prot);
441}
442
443void pci_resource_to_user(const struct pci_dev *dev, int bar,
444 const struct resource *rsrc,
445 resource_size_t *start, resource_size_t *end)
446{
447 struct pci_controller *hose = pci_bus_to_host(dev->bus);
448 resource_size_t offset = 0;
449
450 if (hose == NULL)
451 return;
452
453 if (rsrc->flags & IORESOURCE_IO)
454 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
455
456 /* We pass a fully fixed up address to userland for MMIO instead of
457 * a BAR value because X is lame and expects to be able to use that
458 * to pass to /dev/mem !
459 *
460 * That means that we'll have potentially 64 bits values where some
461 * userland apps only expect 32 (like X itself since it thinks only
462 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
463 * 32 bits CHRPs :-(
464 *
465 * Hopefully, the sysfs insterface is immune to that gunk. Once X
466 * has been fixed (and the fix spread enough), we can re-enable the
467 * 2 lines below and pass down a BAR value to userland. In that case
468 * we'll also have to re-enable the matching code in
469 * __pci_mmap_make_offset().
470 *
471 * BenH.
472 */
473#if 0
474 else if (rsrc->flags & IORESOURCE_MEM)
475 offset = hose->pci_mem_offset;
476#endif
477
478 *start = rsrc->start - offset;
479 *end = rsrc->end - offset;
480}
481
482/**
483 * pci_process_bridge_OF_ranges - Parse PCI bridge resources from device tree
484 * @hose: newly allocated pci_controller to be setup
485 * @dev: device node of the host bridge
486 * @primary: set if primary bus (32 bits only, soon to be deprecated)
487 *
488 * This function will parse the "ranges" property of a PCI host bridge device
489 * node and setup the resource mapping of a pci controller based on its
490 * content.
491 *
492 * Life would be boring if it wasn't for a few issues that we have to deal
493 * with here:
494 *
495 * - We can only cope with one IO space range and up to 3 Memory space
496 * ranges. However, some machines (thanks Apple !) tend to split their
497 * space into lots of small contiguous ranges. So we have to coalesce.
498 *
499 * - We can only cope with all memory ranges having the same offset
500 * between CPU addresses and PCI addresses. Unfortunately, some bridges
501 * are setup for a large 1:1 mapping along with a small "window" which
502 * maps PCI address 0 to some arbitrary high address of the CPU space in
503 * order to give access to the ISA memory hole.
504 * The way out of here that I've chosen for now is to always set the
505 * offset based on the first resource found, then override it if we
506 * have a different offset and the previous was set by an ISA hole.
507 *
508 * - Some busses have IO space not starting at 0, which causes trouble with
509 * the way we do our IO resource renumbering. The code somewhat deals with
510 * it for 64 bits but I would expect problems on 32 bits.
511 *
512 * - Some 32 bits platforms such as 4xx can have physical space larger than
513 * 32 bits so we need to use 64 bits values for the parsing
514 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800515void pci_process_bridge_OF_ranges(struct pci_controller *hose,
516 struct device_node *dev, int primary)
Michal Simekd3afa582010-01-18 14:42:34 +0100517{
Michal Simekd3afa582010-01-18 14:42:34 +0100518 int memno = 0, isa_hole = -1;
Michal Simekd3afa582010-01-18 14:42:34 +0100519 unsigned long long isa_mb = 0;
520 struct resource *res;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100521 struct of_pci_range range;
522 struct of_pci_range_parser parser;
Michal Simekd3afa582010-01-18 14:42:34 +0100523
Michal Simek6bd55f02012-12-27 10:40:38 +0100524 pr_info("PCI host bridge %s %s ranges:\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100525 dev->full_name, primary ? "(primary)" : "");
526
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100527 /* Check for ranges property */
528 if (of_pci_range_parser_init(&parser, dev))
Michal Simekd3afa582010-01-18 14:42:34 +0100529 return;
530
Michal Simekd3afa582010-01-18 14:42:34 +0100531 pr_debug("Parsing ranges property...\n");
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100532 for_each_of_pci_range(&parser, &range) {
Michal Simekd3afa582010-01-18 14:42:34 +0100533 /* Read next ranges element */
Michal Simek6bd55f02012-12-27 10:40:38 +0100534 pr_debug("pci_space: 0x%08x pci_addr:0x%016llx ",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100535 range.pci_space, range.pci_addr);
Michal Simek6bd55f02012-12-27 10:40:38 +0100536 pr_debug("cpu_addr:0x%016llx size:0x%016llx\n",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100537 range.cpu_addr, range.size);
Michal Simekd3afa582010-01-18 14:42:34 +0100538
539 /* If we failed translation or got a zero-sized region
540 * (some FW try to feed us with non sensical zero sized regions
541 * such as power3 which look like some kind of attempt
542 * at exposing the VGA memory hole)
543 */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100544 if (range.cpu_addr == OF_BAD_ADDR || range.size == 0)
Michal Simekd3afa582010-01-18 14:42:34 +0100545 continue;
546
Michal Simekd3afa582010-01-18 14:42:34 +0100547 /* Act based on address space type */
548 res = NULL;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100549 switch (range.flags & IORESOURCE_TYPE_BITS) {
550 case IORESOURCE_IO:
Michal Simek6bd55f02012-12-27 10:40:38 +0100551 pr_info(" IO 0x%016llx..0x%016llx -> 0x%016llx\n",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100552 range.cpu_addr, range.cpu_addr + range.size - 1,
553 range.pci_addr);
Michal Simekd3afa582010-01-18 14:42:34 +0100554
555 /* We support only one IO range */
556 if (hose->pci_io_size) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100557 pr_info(" \\--> Skipped (too many) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100558 continue;
559 }
560 /* On 32 bits, limit I/O space to 16MB */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100561 if (range.size > 0x01000000)
562 range.size = 0x01000000;
Michal Simekd3afa582010-01-18 14:42:34 +0100563
564 /* 32 bits needs to map IOs here */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100565 hose->io_base_virt = ioremap(range.cpu_addr,
566 range.size);
Michal Simekd3afa582010-01-18 14:42:34 +0100567
568 /* Expect trouble if pci_addr is not 0 */
569 if (primary)
570 isa_io_base =
571 (unsigned long)hose->io_base_virt;
572 /* pci_io_size and io_base_phys always represent IO
573 * space starting at 0 so we factor in pci_addr
574 */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100575 hose->pci_io_size = range.pci_addr + range.size;
576 hose->io_base_phys = range.cpu_addr - range.pci_addr;
Michal Simekd3afa582010-01-18 14:42:34 +0100577
578 /* Build resource */
579 res = &hose->io_resource;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100580 range.cpu_addr = range.pci_addr;
581
Michal Simekd3afa582010-01-18 14:42:34 +0100582 break;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100583 case IORESOURCE_MEM:
Michal Simek6bd55f02012-12-27 10:40:38 +0100584 pr_info(" MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100585 range.cpu_addr, range.cpu_addr + range.size - 1,
586 range.pci_addr,
587 (range.pci_space & 0x40000000) ?
588 "Prefetch" : "");
Michal Simekd3afa582010-01-18 14:42:34 +0100589
590 /* We support only 3 memory ranges */
591 if (memno >= 3) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100592 pr_info(" \\--> Skipped (too many) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100593 continue;
594 }
595 /* Handles ISA memory hole space here */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100596 if (range.pci_addr == 0) {
597 isa_mb = range.cpu_addr;
Michal Simekd3afa582010-01-18 14:42:34 +0100598 isa_hole = memno;
599 if (primary || isa_mem_base == 0)
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100600 isa_mem_base = range.cpu_addr;
601 hose->isa_mem_phys = range.cpu_addr;
602 hose->isa_mem_size = range.size;
Michal Simekd3afa582010-01-18 14:42:34 +0100603 }
604
605 /* We get the PCI/Mem offset from the first range or
606 * the, current one if the offset came from an ISA
607 * hole. If they don't match, bugger.
608 */
609 if (memno == 0 ||
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100610 (isa_hole >= 0 && range.pci_addr != 0 &&
Michal Simekd3afa582010-01-18 14:42:34 +0100611 hose->pci_mem_offset == isa_mb))
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100612 hose->pci_mem_offset = range.cpu_addr -
613 range.pci_addr;
614 else if (range.pci_addr != 0 &&
615 hose->pci_mem_offset != range.cpu_addr -
616 range.pci_addr) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100617 pr_info(" \\--> Skipped (offset mismatch) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100618 continue;
619 }
620
621 /* Build resource */
622 res = &hose->mem_resources[memno++];
Michal Simekd3afa582010-01-18 14:42:34 +0100623 break;
624 }
Michal Simek70dcd942014-10-27 08:15:25 +0100625 if (res != NULL) {
626 res->name = dev->full_name;
627 res->flags = range.flags;
628 res->start = range.cpu_addr;
629 res->end = range.cpu_addr + range.size - 1;
630 res->parent = res->child = res->sibling = NULL;
631 }
Michal Simekd3afa582010-01-18 14:42:34 +0100632 }
633
634 /* If there's an ISA hole and the pci_mem_offset is -not- matching
635 * the ISA hole offset, then we need to remove the ISA hole from
636 * the resource list for that brige
637 */
638 if (isa_hole >= 0 && hose->pci_mem_offset != isa_mb) {
639 unsigned int next = isa_hole + 1;
Michal Simek6bd55f02012-12-27 10:40:38 +0100640 pr_info(" Removing ISA hole at 0x%016llx\n", isa_mb);
Michal Simekd3afa582010-01-18 14:42:34 +0100641 if (next < memno)
642 memmove(&hose->mem_resources[isa_hole],
643 &hose->mem_resources[next],
644 sizeof(struct resource) * (memno - next));
645 hose->mem_resources[--memno].flags = 0;
646 }
647}
648
649/* Decide whether to display the domain number in /proc */
650int pci_proc_domain(struct pci_bus *bus)
651{
Bjorn Helgaase5b36842012-02-23 20:18:57 -0700652 return 0;
Michal Simekd3afa582010-01-18 14:42:34 +0100653}
654
Michal Simekd3afa582010-01-18 14:42:34 +0100655/* This header fixup will do the resource fixup for all devices as they are
656 * probed, but not for bridge ranges
657 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800658static void pcibios_fixup_resources(struct pci_dev *dev)
Michal Simekd3afa582010-01-18 14:42:34 +0100659{
660 struct pci_controller *hose = pci_bus_to_host(dev->bus);
661 int i;
662
663 if (!hose) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100664 pr_err("No host bridge for PCI dev %s !\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100665 pci_name(dev));
666 return;
667 }
668 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
669 struct resource *res = dev->resource + i;
670 if (!res->flags)
671 continue;
Bjorn Helgaase5b36842012-02-23 20:18:57 -0700672 if (res->start == 0) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100673 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x]",
Michal Simekd3afa582010-01-18 14:42:34 +0100674 pci_name(dev), i,
675 (unsigned long long)res->start,
676 (unsigned long long)res->end,
677 (unsigned int)res->flags);
Michal Simek6bd55f02012-12-27 10:40:38 +0100678 pr_debug("is unassigned\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100679 res->end -= res->start;
680 res->start = 0;
681 res->flags |= IORESOURCE_UNSET;
682 continue;
683 }
684
Bjorn Helgaasaa23bdc2012-02-23 20:19:02 -0700685 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x]\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100686 pci_name(dev), i,
Michal Simek6bd55f02012-12-27 10:40:38 +0100687 (unsigned long long)res->start,
Michal Simekd3afa582010-01-18 14:42:34 +0100688 (unsigned long long)res->end,
689 (unsigned int)res->flags);
Michal Simekd3afa582010-01-18 14:42:34 +0100690 }
691}
692DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
693
694/* This function tries to figure out if a bridge resource has been initialized
695 * by the firmware or not. It doesn't have to be absolutely bullet proof, but
696 * things go more smoothly when it gets it right. It should covers cases such
697 * as Apple "closed" bridge resources and bare-metal pSeries unassigned bridges
698 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800699static int pcibios_uninitialized_bridge_resource(struct pci_bus *bus,
700 struct resource *res)
Michal Simekd3afa582010-01-18 14:42:34 +0100701{
702 struct pci_controller *hose = pci_bus_to_host(bus);
703 struct pci_dev *dev = bus->self;
704 resource_size_t offset;
705 u16 command;
706 int i;
707
Michal Simekd3afa582010-01-18 14:42:34 +0100708 /* Job is a bit different between memory and IO */
709 if (res->flags & IORESOURCE_MEM) {
710 /* If the BAR is non-0 (res != pci_mem_offset) then it's
711 * probably been initialized by somebody
712 */
713 if (res->start != hose->pci_mem_offset)
714 return 0;
715
716 /* The BAR is 0, let's check if memory decoding is enabled on
717 * the bridge. If not, we consider it unassigned
718 */
719 pci_read_config_word(dev, PCI_COMMAND, &command);
720 if ((command & PCI_COMMAND_MEMORY) == 0)
721 return 1;
722
723 /* Memory decoding is enabled and the BAR is 0. If any of
724 * the bridge resources covers that starting address (0 then
725 * it's good enough for us for memory
726 */
727 for (i = 0; i < 3; i++) {
728 if ((hose->mem_resources[i].flags & IORESOURCE_MEM) &&
729 hose->mem_resources[i].start == hose->pci_mem_offset)
730 return 0;
731 }
732
733 /* Well, it starts at 0 and we know it will collide so we may as
734 * well consider it as unassigned. That covers the Apple case.
735 */
736 return 1;
737 } else {
738 /* If the BAR is non-0, then we consider it assigned */
739 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
740 if (((res->start - offset) & 0xfffffffful) != 0)
741 return 0;
742
743 /* Here, we are a bit different than memory as typically IO
744 * space starting at low addresses -is- valid. What we do
745 * instead if that we consider as unassigned anything that
746 * doesn't have IO enabled in the PCI command register,
747 * and that's it.
748 */
749 pci_read_config_word(dev, PCI_COMMAND, &command);
750 if (command & PCI_COMMAND_IO)
751 return 0;
752
753 /* It's starting at 0 and IO is disabled in the bridge, consider
754 * it unassigned
755 */
756 return 1;
757 }
758}
759
760/* Fixup resources of a PCI<->PCI bridge */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800761static void pcibios_fixup_bridge(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100762{
763 struct resource *res;
764 int i;
765
766 struct pci_dev *dev = bus->self;
767
Michal Simek8a66da72010-04-16 09:03:00 +0200768 pci_bus_for_each_resource(bus, res, i) {
Michal Simekd3afa582010-01-18 14:42:34 +0100769 if (!res)
770 continue;
771 if (!res->flags)
772 continue;
773 if (i >= 3 && bus->self->transparent)
774 continue;
775
776 pr_debug("PCI:%s Bus rsrc %d %016llx-%016llx [%x] fixup...\n",
777 pci_name(dev), i,
Michal Simek6bd55f02012-12-27 10:40:38 +0100778 (unsigned long long)res->start,
Michal Simekd3afa582010-01-18 14:42:34 +0100779 (unsigned long long)res->end,
780 (unsigned int)res->flags);
781
Michal Simekd3afa582010-01-18 14:42:34 +0100782 /* Try to detect uninitialized P2P bridge resources,
783 * and clear them out so they get re-assigned later
784 */
785 if (pcibios_uninitialized_bridge_resource(bus, res)) {
786 res->flags = 0;
787 pr_debug("PCI:%s (unassigned)\n",
788 pci_name(dev));
789 } else {
790 pr_debug("PCI:%s %016llx-%016llx\n",
791 pci_name(dev),
792 (unsigned long long)res->start,
793 (unsigned long long)res->end);
794 }
795 }
796}
797
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800798void pcibios_setup_bus_self(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100799{
800 /* Fix up the bus resources for P2P bridges */
801 if (bus->self != NULL)
802 pcibios_fixup_bridge(bus);
803}
804
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800805void pcibios_setup_bus_devices(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100806{
807 struct pci_dev *dev;
808
809 pr_debug("PCI: Fixup bus devices %d (%s)\n",
810 bus->number, bus->self ? pci_name(bus->self) : "PHB");
811
812 list_for_each_entry(dev, &bus->devices, bus_list) {
Michal Simekd3afa582010-01-18 14:42:34 +0100813 /* Setup OF node pointer in archdata */
Michal Simek088ab302010-08-16 10:31:54 +0200814 dev->dev.of_node = pci_device_to_OF_node(dev);
Michal Simekd3afa582010-01-18 14:42:34 +0100815
816 /* Fixup NUMA node as it may not be setup yet by the generic
817 * code and is needed by the DMA init
818 */
819 set_dev_node(&dev->dev, pcibus_to_node(dev->bus));
820
Michal Simekd3afa582010-01-18 14:42:34 +0100821 /* Read default IRQs and fixup if necessary */
Grant Likelyf27446c2013-09-19 23:34:26 -0500822 dev->irq = of_irq_parse_and_map_pci(dev, 0, 0);
Michal Simekd3afa582010-01-18 14:42:34 +0100823 }
824}
825
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800826void pcibios_fixup_bus(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100827{
Bharat Kumar Gogada01cf9d52016-02-11 21:58:11 +0530828 /* nothing to do */
Michal Simekd3afa582010-01-18 14:42:34 +0100829}
830EXPORT_SYMBOL(pcibios_fixup_bus);
831
Michal Simekd3afa582010-01-18 14:42:34 +0100832/*
833 * We need to avoid collisions with `mirrored' VGA ports
834 * and other strange ISA hardware, so we always want the
835 * addresses to be allocated in the 0x000-0x0ff region
836 * modulo 0x400.
837 *
838 * Why? Because some silly external IO cards only decode
839 * the low 10 bits of the IO address. The 0x00-0xff region
840 * is reserved for motherboard devices that decode all 16
841 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
842 * but we want to try to avoid allocating at 0x2900-0x2bff
843 * which might have be mirrored at 0x0100-0x03ff..
844 */
Michal Simekc86fac42010-04-16 09:04:51 +0200845resource_size_t pcibios_align_resource(void *data, const struct resource *res,
Michal Simekd3afa582010-01-18 14:42:34 +0100846 resource_size_t size, resource_size_t align)
847{
Bharat Kumar Gogada01cf9d52016-02-11 21:58:11 +0530848 return res->start;
Michal Simekd3afa582010-01-18 14:42:34 +0100849}
850EXPORT_SYMBOL(pcibios_align_resource);
851
Bharat Kumar Gogada01cf9d52016-02-11 21:58:11 +0530852int pcibios_add_device(struct pci_dev *dev)
853{
854 dev->irq = of_irq_parse_and_map_pci(dev, 0, 0);
855
856 return 0;
857}
858EXPORT_SYMBOL(pcibios_add_device);
859
Michal Simekd3afa582010-01-18 14:42:34 +0100860/*
861 * Reparent resource children of pr that conflict with res
862 * under res, and make res replace those children.
863 */
864static int __init reparent_resources(struct resource *parent,
865 struct resource *res)
866{
867 struct resource *p, **pp;
868 struct resource **firstpp = NULL;
869
870 for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {
871 if (p->end < res->start)
872 continue;
873 if (res->end < p->start)
874 break;
875 if (p->start < res->start || p->end > res->end)
876 return -1; /* not completely contained */
877 if (firstpp == NULL)
878 firstpp = pp;
879 }
880 if (firstpp == NULL)
881 return -1; /* didn't find any conflicting entries? */
882 res->parent = parent;
883 res->child = *firstpp;
884 res->sibling = *pp;
885 *firstpp = res;
886 *pp = NULL;
887 for (p = res->child; p != NULL; p = p->sibling) {
888 p->parent = res;
889 pr_debug("PCI: Reparented %s [%llx..%llx] under %s\n",
890 p->name,
891 (unsigned long long)p->start,
892 (unsigned long long)p->end, res->name);
893 }
894 return 0;
895}
896
897/*
898 * Handle resources of PCI devices. If the world were perfect, we could
899 * just allocate all the resource regions and do nothing more. It isn't.
900 * On the other hand, we cannot just re-allocate all devices, as it would
901 * require us to know lots of host bridge internals. So we attempt to
902 * keep as much of the original configuration as possible, but tweak it
903 * when it's found to be wrong.
904 *
905 * Known BIOS problems we have to work around:
906 * - I/O or memory regions not configured
907 * - regions configured, but not enabled in the command register
908 * - bogus I/O addresses above 64K used
909 * - expansion ROMs left enabled (this may sound harmless, but given
910 * the fact the PCI specs explicitly allow address decoders to be
911 * shared between expansion ROMs and other resource regions, it's
912 * at least dangerous)
913 *
914 * Our solution:
915 * (1) Allocate resources for all buses behind PCI-to-PCI bridges.
916 * This gives us fixed barriers on where we can allocate.
917 * (2) Allocate resources for all enabled devices. If there is
918 * a collision, just mark the resource as unallocated. Also
919 * disable expansion ROMs during this step.
920 * (3) Try to allocate resources for disabled devices. If the
921 * resources were assigned correctly, everything goes well,
922 * if they weren't, they won't disturb allocation of other
923 * resources.
924 * (4) Assign new addresses to resources which were either
925 * not configured at all or misconfigured. If explicitly
926 * requested by the user, configure expansion ROM address
927 * as well.
928 */
929
Michal Simekf7eaacc2013-01-04 09:14:46 +0100930static void pcibios_allocate_bus_resources(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100931{
932 struct pci_bus *b;
933 int i;
934 struct resource *res, *pr;
935
936 pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
937 pci_domain_nr(bus), bus->number);
938
Michal Simek8a66da72010-04-16 09:03:00 +0200939 pci_bus_for_each_resource(bus, res, i) {
Michal Simekd3afa582010-01-18 14:42:34 +0100940 if (!res || !res->flags
941 || res->start > res->end || res->parent)
942 continue;
943 if (bus->parent == NULL)
944 pr = (res->flags & IORESOURCE_IO) ?
945 &ioport_resource : &iomem_resource;
946 else {
947 /* Don't bother with non-root busses when
948 * re-assigning all resources. We clear the
949 * resource flags as if they were colliding
950 * and as such ensure proper re-allocation
951 * later.
952 */
Michal Simekd3afa582010-01-18 14:42:34 +0100953 pr = pci_find_parent_resource(bus->self, res);
954 if (pr == res) {
955 /* this happens when the generic PCI
956 * code (wrongly) decides that this
957 * bridge is transparent -- paulus
958 */
959 continue;
960 }
961 }
962
Michal Simek6bd55f02012-12-27 10:40:38 +0100963 pr_debug("PCI: %s (bus %d) bridge rsrc %d: %016llx-%016llx ",
Michal Simekd3afa582010-01-18 14:42:34 +0100964 bus->self ? pci_name(bus->self) : "PHB",
965 bus->number, i,
966 (unsigned long long)res->start,
Michal Simek6bd55f02012-12-27 10:40:38 +0100967 (unsigned long long)res->end);
968 pr_debug("[0x%x], parent %p (%s)\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100969 (unsigned int)res->flags,
970 pr, (pr && pr->name) ? pr->name : "nil");
971
972 if (pr && !(pr->flags & IORESOURCE_UNSET)) {
Yinghai Lu576e4382015-01-15 16:21:50 -0600973 struct pci_dev *dev = bus->self;
974
Michal Simekd3afa582010-01-18 14:42:34 +0100975 if (request_resource(pr, res) == 0)
976 continue;
977 /*
978 * Must be a conflict with an existing entry.
979 * Move that entry (or entries) under the
980 * bridge resource and try again.
981 */
982 if (reparent_resources(pr, res) == 0)
983 continue;
Yinghai Lu576e4382015-01-15 16:21:50 -0600984
985 if (dev && i < PCI_BRIDGE_RESOURCE_NUM &&
986 pci_claim_bridge_resource(dev,
987 i + PCI_BRIDGE_RESOURCES) == 0)
988 continue;
989
Michal Simekd3afa582010-01-18 14:42:34 +0100990 }
Michal Simek6bd55f02012-12-27 10:40:38 +0100991 pr_warn("PCI: Cannot allocate resource region ");
992 pr_cont("%d of PCI bridge %d, will remap\n", i, bus->number);
Yinghai Lu837c4ef2010-06-03 13:43:03 -0700993 res->start = res->end = 0;
Michal Simekd3afa582010-01-18 14:42:34 +0100994 res->flags = 0;
995 }
996
997 list_for_each_entry(b, &bus->children, node)
998 pcibios_allocate_bus_resources(b);
999}
1000
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001001static inline void alloc_resource(struct pci_dev *dev, int idx)
Michal Simekd3afa582010-01-18 14:42:34 +01001002{
1003 struct resource *pr, *r = &dev->resource[idx];
1004
1005 pr_debug("PCI: Allocating %s: Resource %d: %016llx..%016llx [%x]\n",
1006 pci_name(dev), idx,
1007 (unsigned long long)r->start,
1008 (unsigned long long)r->end,
1009 (unsigned int)r->flags);
1010
1011 pr = pci_find_parent_resource(dev, r);
1012 if (!pr || (pr->flags & IORESOURCE_UNSET) ||
1013 request_resource(pr, r) < 0) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001014 pr_warn("PCI: Cannot allocate resource region %d ", idx);
1015 pr_cont("of device %s, will remap\n", pci_name(dev));
Michal Simekd3afa582010-01-18 14:42:34 +01001016 if (pr)
1017 pr_debug("PCI: parent is %p: %016llx-%016llx [%x]\n",
1018 pr,
1019 (unsigned long long)pr->start,
1020 (unsigned long long)pr->end,
1021 (unsigned int)pr->flags);
1022 /* We'll assign a new address later */
1023 r->flags |= IORESOURCE_UNSET;
1024 r->end -= r->start;
1025 r->start = 0;
1026 }
1027}
1028
1029static void __init pcibios_allocate_resources(int pass)
1030{
1031 struct pci_dev *dev = NULL;
1032 int idx, disabled;
1033 u16 command;
1034 struct resource *r;
1035
1036 for_each_pci_dev(dev) {
1037 pci_read_config_word(dev, PCI_COMMAND, &command);
1038 for (idx = 0; idx <= PCI_ROM_RESOURCE; idx++) {
1039 r = &dev->resource[idx];
1040 if (r->parent) /* Already allocated */
1041 continue;
1042 if (!r->flags || (r->flags & IORESOURCE_UNSET))
1043 continue; /* Not assigned at all */
1044 /* We only allocate ROMs on pass 1 just in case they
1045 * have been screwed up by firmware
1046 */
1047 if (idx == PCI_ROM_RESOURCE)
1048 disabled = 1;
1049 if (r->flags & IORESOURCE_IO)
1050 disabled = !(command & PCI_COMMAND_IO);
1051 else
1052 disabled = !(command & PCI_COMMAND_MEMORY);
1053 if (pass == disabled)
1054 alloc_resource(dev, idx);
1055 }
1056 if (pass)
1057 continue;
1058 r = &dev->resource[PCI_ROM_RESOURCE];
1059 if (r->flags) {
1060 /* Turn the ROM off, leave the resource region,
1061 * but keep it unregistered.
1062 */
1063 u32 reg;
1064 pci_read_config_dword(dev, dev->rom_base_reg, &reg);
1065 if (reg & PCI_ROM_ADDRESS_ENABLE) {
1066 pr_debug("PCI: Switching off ROM of %s\n",
1067 pci_name(dev));
1068 r->flags &= ~IORESOURCE_ROM_ENABLE;
1069 pci_write_config_dword(dev, dev->rom_base_reg,
1070 reg & ~PCI_ROM_ADDRESS_ENABLE);
1071 }
1072 }
1073 }
1074}
1075
1076static void __init pcibios_reserve_legacy_regions(struct pci_bus *bus)
1077{
1078 struct pci_controller *hose = pci_bus_to_host(bus);
1079 resource_size_t offset;
1080 struct resource *res, *pres;
1081 int i;
1082
1083 pr_debug("Reserving legacy ranges for domain %04x\n",
1084 pci_domain_nr(bus));
1085
1086 /* Check for IO */
1087 if (!(hose->io_resource.flags & IORESOURCE_IO))
1088 goto no_io;
1089 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
1090 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1091 BUG_ON(res == NULL);
1092 res->name = "Legacy IO";
1093 res->flags = IORESOURCE_IO;
1094 res->start = offset;
1095 res->end = (offset + 0xfff) & 0xfffffffful;
1096 pr_debug("Candidate legacy IO: %pR\n", res);
1097 if (request_resource(&hose->io_resource, res)) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001098 pr_debug("PCI %04x:%02x Cannot reserve Legacy IO %pR\n",
Michal Simekd3afa582010-01-18 14:42:34 +01001099 pci_domain_nr(bus), bus->number, res);
1100 kfree(res);
1101 }
1102
1103 no_io:
1104 /* Check for memory */
1105 offset = hose->pci_mem_offset;
1106 pr_debug("hose mem offset: %016llx\n", (unsigned long long)offset);
1107 for (i = 0; i < 3; i++) {
1108 pres = &hose->mem_resources[i];
1109 if (!(pres->flags & IORESOURCE_MEM))
1110 continue;
1111 pr_debug("hose mem res: %pR\n", pres);
1112 if ((pres->start - offset) <= 0xa0000 &&
1113 (pres->end - offset) >= 0xbffff)
1114 break;
1115 }
1116 if (i >= 3)
1117 return;
1118 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1119 BUG_ON(res == NULL);
1120 res->name = "Legacy VGA memory";
1121 res->flags = IORESOURCE_MEM;
1122 res->start = 0xa0000 + offset;
1123 res->end = 0xbffff + offset;
1124 pr_debug("Candidate VGA memory: %pR\n", res);
1125 if (request_resource(pres, res)) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001126 pr_debug("PCI %04x:%02x Cannot reserve VGA memory %pR\n",
Michal Simekd3afa582010-01-18 14:42:34 +01001127 pci_domain_nr(bus), bus->number, res);
1128 kfree(res);
1129 }
1130}
1131
1132void __init pcibios_resource_survey(void)
1133{
1134 struct pci_bus *b;
1135
1136 /* Allocate and assign resources. If we re-assign everything, then
1137 * we skip the allocate phase
1138 */
1139 list_for_each_entry(b, &pci_root_buses, node)
1140 pcibios_allocate_bus_resources(b);
1141
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001142 pcibios_allocate_resources(0);
1143 pcibios_allocate_resources(1);
Michal Simekd3afa582010-01-18 14:42:34 +01001144
1145 /* Before we start assigning unassigned resource, we try to reserve
1146 * the low IO area and the VGA memory area if they intersect the
1147 * bus available resources to avoid allocating things on top of them
1148 */
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001149 list_for_each_entry(b, &pci_root_buses, node)
1150 pcibios_reserve_legacy_regions(b);
Michal Simekd3afa582010-01-18 14:42:34 +01001151
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001152 /* Now proceed to assigning things that were left unassigned */
1153 pr_debug("PCI: Assigning unassigned resources...\n");
1154 pci_assign_unassigned_resources();
Michal Simekd3afa582010-01-18 14:42:34 +01001155}
1156
Michal Simekd3afa582010-01-18 14:42:34 +01001157/* This is used by the PCI hotplug driver to allocate resource
1158 * of newly plugged busses. We can try to consolidate with the
1159 * rest of the code later, for now, keep it as-is as our main
1160 * resource allocation function doesn't deal with sub-trees yet.
1161 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001162void pcibios_claim_one_bus(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +01001163{
1164 struct pci_dev *dev;
1165 struct pci_bus *child_bus;
1166
1167 list_for_each_entry(dev, &bus->devices, bus_list) {
1168 int i;
1169
1170 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1171 struct resource *r = &dev->resource[i];
1172
1173 if (r->parent || !r->start || !r->flags)
1174 continue;
1175
Michal Simek6bd55f02012-12-27 10:40:38 +01001176 pr_debug("PCI: Claiming %s: ", pci_name(dev));
1177 pr_debug("Resource %d: %016llx..%016llx [%x]\n",
1178 i, (unsigned long long)r->start,
Michal Simekd3afa582010-01-18 14:42:34 +01001179 (unsigned long long)r->end,
1180 (unsigned int)r->flags);
1181
Yinghai Lu576e4382015-01-15 16:21:50 -06001182 if (pci_claim_resource(dev, i) == 0)
1183 continue;
1184
1185 pci_claim_bridge_resource(dev, i);
Michal Simekd3afa582010-01-18 14:42:34 +01001186 }
1187 }
1188
1189 list_for_each_entry(child_bus, &bus->children, node)
1190 pcibios_claim_one_bus(child_bus);
1191}
1192EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
1193
1194
1195/* pcibios_finish_adding_to_bus
1196 *
1197 * This is to be called by the hotplug code after devices have been
1198 * added to a bus, this include calling it for a PHB that is just
1199 * being added
1200 */
1201void pcibios_finish_adding_to_bus(struct pci_bus *bus)
1202{
1203 pr_debug("PCI: Finishing adding to hotplug bus %04x:%02x\n",
1204 pci_domain_nr(bus), bus->number);
1205
1206 /* Allocate bus and devices resources */
1207 pcibios_allocate_bus_resources(bus);
1208 pcibios_claim_one_bus(bus);
1209
1210 /* Add new devices to global lists. Register in proc, sysfs. */
1211 pci_bus_add_devices(bus);
1212
1213 /* Fixup EEH */
Michal Simek1ce24702010-05-13 12:09:54 +02001214 /* eeh_add_device_tree_late(bus); */
Michal Simekd3afa582010-01-18 14:42:34 +01001215}
1216EXPORT_SYMBOL_GPL(pcibios_finish_adding_to_bus);
1217
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001218static void pcibios_setup_phb_resources(struct pci_controller *hose,
1219 struct list_head *resources)
Michal Simekd3afa582010-01-18 14:42:34 +01001220{
Bjorn Helgaas5420e462012-05-15 17:03:25 -06001221 unsigned long io_offset;
Michal Simekd3afa582010-01-18 14:42:34 +01001222 struct resource *res;
1223 int i;
1224
1225 /* Hookup PHB IO resource */
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001226 res = &hose->io_resource;
1227
1228 /* Fixup IO space offset */
1229 io_offset = (unsigned long)hose->io_base_virt - isa_io_base;
1230 res->start = (res->start + io_offset) & 0xffffffffu;
1231 res->end = (res->end + io_offset) & 0xffffffffu;
Michal Simekd3afa582010-01-18 14:42:34 +01001232
1233 if (!res->flags) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001234 pr_warn("PCI: I/O resource not set for host ");
1235 pr_cont("bridge %s (domain %d)\n",
1236 hose->dn->full_name, hose->global_number);
Michal Simekd3afa582010-01-18 14:42:34 +01001237 /* Workaround for lack of IO resource only on 32-bit */
1238 res->start = (unsigned long)hose->io_base_virt - isa_io_base;
1239 res->end = res->start + IO_SPACE_LIMIT;
1240 res->flags = IORESOURCE_IO;
1241 }
Michal Simekf7eaacc2013-01-04 09:14:46 +01001242 pci_add_resource_offset(resources, res,
1243 (__force resource_size_t)(hose->io_base_virt - _IO_BASE));
Michal Simekd3afa582010-01-18 14:42:34 +01001244
1245 pr_debug("PCI: PHB IO resource = %016llx-%016llx [%lx]\n",
1246 (unsigned long long)res->start,
1247 (unsigned long long)res->end,
1248 (unsigned long)res->flags);
1249
1250 /* Hookup PHB Memory resources */
1251 for (i = 0; i < 3; ++i) {
1252 res = &hose->mem_resources[i];
1253 if (!res->flags) {
1254 if (i > 0)
1255 continue;
Michal Simek6bd55f02012-12-27 10:40:38 +01001256 pr_err("PCI: Memory resource 0 not set for ");
1257 pr_cont("host bridge %s (domain %d)\n",
1258 hose->dn->full_name, hose->global_number);
Michal Simekd3afa582010-01-18 14:42:34 +01001259
1260 /* Workaround for lack of MEM resource only on 32-bit */
1261 res->start = hose->pci_mem_offset;
1262 res->end = (resource_size_t)-1LL;
1263 res->flags = IORESOURCE_MEM;
1264
1265 }
Bjorn Helgaasaa23bdc2012-02-23 20:19:02 -07001266 pci_add_resource_offset(resources, res, hose->pci_mem_offset);
Michal Simekd3afa582010-01-18 14:42:34 +01001267
1268 pr_debug("PCI: PHB MEM resource %d = %016llx-%016llx [%lx]\n",
1269 i, (unsigned long long)res->start,
1270 (unsigned long long)res->end,
1271 (unsigned long)res->flags);
1272 }
1273
1274 pr_debug("PCI: PHB MEM offset = %016llx\n",
1275 (unsigned long long)hose->pci_mem_offset);
1276 pr_debug("PCI: PHB IO offset = %08lx\n",
1277 (unsigned long)hose->io_base_virt - _IO_BASE);
1278}
1279
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001280static void pcibios_scan_phb(struct pci_controller *hose)
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001281{
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001282 LIST_HEAD(resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001283 struct pci_bus *bus;
1284 struct device_node *node = hose->dn;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001285
Grant Likely74a7f082012-06-15 11:50:25 -06001286 pr_debug("PCI: Scanning PHB %s\n", of_node_full_name(node));
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001287
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001288 pcibios_setup_phb_resources(hose, &resources);
1289
Bjorn Helgaas4723b982011-10-28 16:26:52 -06001290 bus = pci_scan_root_bus(hose->parent, hose->first_busno,
1291 hose->ops, hose, &resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001292 if (bus == NULL) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001293 pr_err("Failed to create bus for PCI domain %04x\n",
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001294 hose->global_number);
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001295 pci_free_resource_list(&resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001296 return;
1297 }
Yinghai Lub918c622012-05-17 18:51:11 -07001298 bus->busn_res.start = hose->first_busno;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001299 hose->bus = bus;
1300
Yinghai Lub918c622012-05-17 18:51:11 -07001301 hose->last_busno = bus->busn_res.end;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001302}
1303
1304static int __init pcibios_init(void)
1305{
1306 struct pci_controller *hose, *tmp;
1307 int next_busno = 0;
1308
Michal Simek6bd55f02012-12-27 10:40:38 +01001309 pr_info("PCI: Probing PCI hardware\n");
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001310
1311 /* Scan all of the recorded PCI controllers. */
1312 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1313 hose->last_busno = 0xff;
1314 pcibios_scan_phb(hose);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001315 if (next_busno <= hose->last_busno)
1316 next_busno = hose->last_busno + 1;
1317 }
1318 pci_bus_count = next_busno;
1319
1320 /* Call common code to handle resource allocation */
1321 pcibios_resource_survey();
Yijing Wangb97ea282015-03-16 11:18:56 +08001322 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1323 if (hose->bus)
1324 pci_bus_add_devices(hose->bus);
1325 }
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001326
1327 return 0;
1328}
1329
1330subsys_initcall(pcibios_init);
1331
1332static struct pci_controller *pci_bus_to_hose(int bus)
1333{
1334 struct pci_controller *hose, *tmp;
1335
1336 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1337 if (bus >= hose->first_busno && bus <= hose->last_busno)
1338 return hose;
1339 return NULL;
1340}
1341
1342/* Provide information on locations of various I/O regions in physical
1343 * memory. Do this on a per-card basis so that we choose the right
1344 * root bridge.
1345 * Note that the returned IO or memory base is a physical address
1346 */
1347
1348long sys_pciconfig_iobase(long which, unsigned long bus, unsigned long devfn)
1349{
1350 struct pci_controller *hose;
1351 long result = -EOPNOTSUPP;
1352
1353 hose = pci_bus_to_hose(bus);
1354 if (!hose)
1355 return -ENODEV;
1356
1357 switch (which) {
1358 case IOBASE_BRIDGE_NUMBER:
1359 return (long)hose->first_busno;
1360 case IOBASE_MEMORY:
1361 return (long)hose->pci_mem_offset;
1362 case IOBASE_IO:
1363 return (long)hose->io_base_phys;
1364 case IOBASE_ISA_IO:
1365 return (long)isa_io_base;
1366 case IOBASE_ISA_MEM:
1367 return (long)isa_mem_base;
1368 }
1369
1370 return result;
1371}
1372
Michal Simekd3afa582010-01-18 14:42:34 +01001373/*
1374 * Null PCI config access functions, for the case when we can't
1375 * find a hose.
1376 */
1377#define NULL_PCI_OP(rw, size, type) \
1378static int \
1379null_##rw##_config_##size(struct pci_dev *dev, int offset, type val) \
1380{ \
1381 return PCIBIOS_DEVICE_NOT_FOUND; \
1382}
1383
1384static int
1385null_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
1386 int len, u32 *val)
1387{
1388 return PCIBIOS_DEVICE_NOT_FOUND;
1389}
1390
1391static int
1392null_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
1393 int len, u32 val)
1394{
1395 return PCIBIOS_DEVICE_NOT_FOUND;
1396}
1397
1398static struct pci_ops null_pci_ops = {
1399 .read = null_read_config,
1400 .write = null_write_config,
1401};
1402
1403/*
1404 * These functions are used early on before PCI scanning is done
1405 * and all of the pci_dev and pci_bus structures have been created.
1406 */
1407static struct pci_bus *
1408fake_pci_bus(struct pci_controller *hose, int busnr)
1409{
1410 static struct pci_bus bus;
1411
1412 if (!hose)
Michal Simek6bd55f02012-12-27 10:40:38 +01001413 pr_err("Can't find hose for PCI bus %d!\n", busnr);
Michal Simekd3afa582010-01-18 14:42:34 +01001414
1415 bus.number = busnr;
1416 bus.sysdata = hose;
1417 bus.ops = hose ? hose->ops : &null_pci_ops;
1418 return &bus;
1419}
1420
1421#define EARLY_PCI_OP(rw, size, type) \
1422int early_##rw##_config_##size(struct pci_controller *hose, int bus, \
1423 int devfn, int offset, type value) \
1424{ \
1425 return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus), \
1426 devfn, offset, value); \
1427}
1428
1429EARLY_PCI_OP(read, byte, u8 *)
1430EARLY_PCI_OP(read, word, u16 *)
1431EARLY_PCI_OP(read, dword, u32 *)
1432EARLY_PCI_OP(write, byte, u8)
1433EARLY_PCI_OP(write, word, u16)
1434EARLY_PCI_OP(write, dword, u32)
1435
1436int early_find_capability(struct pci_controller *hose, int bus, int devfn,
1437 int cap)
1438{
1439 return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap);
1440}
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001441