blob: 14cba600da7ae4fff9573cfcb27465e8f322e73d [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/*
222 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
223 * device mapping.
224 */
225static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
226 pgprot_t protection,
227 enum pci_mmap_state mmap_state,
228 int write_combine)
229{
230 pgprot_t prot = protection;
231
232 /* Write combine is always 0 on non-memory space mappings. On
233 * memory space, if the user didn't pass 1, we check for a
234 * "prefetchable" resource. This is a bit hackish, but we use
235 * this to workaround the inability of /sysfs to provide a write
236 * combine bit
237 */
238 if (mmap_state != pci_mmap_mem)
239 write_combine = 0;
240 else if (write_combine == 0) {
241 if (rp->flags & IORESOURCE_PREFETCH)
242 write_combine = 1;
243 }
244
245 return pgprot_noncached(prot);
246}
247
248/*
249 * This one is used by /dev/mem and fbdev who have no clue about the
250 * PCI device, it tries to find the PCI device first and calls the
251 * above routine
252 */
253pgprot_t pci_phys_mem_access_prot(struct file *file,
254 unsigned long pfn,
255 unsigned long size,
256 pgprot_t prot)
257{
258 struct pci_dev *pdev = NULL;
259 struct resource *found = NULL;
260 resource_size_t offset = ((resource_size_t)pfn) << PAGE_SHIFT;
261 int i;
262
263 if (page_is_ram(pfn))
264 return prot;
265
266 prot = pgprot_noncached(prot);
267 for_each_pci_dev(pdev) {
268 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
269 struct resource *rp = &pdev->resource[i];
270 int flags = rp->flags;
271
272 /* Active and same type? */
273 if ((flags & IORESOURCE_MEM) == 0)
274 continue;
275 /* In the range of this resource? */
276 if (offset < (rp->start & PAGE_MASK) ||
277 offset > rp->end)
278 continue;
279 found = rp;
280 break;
281 }
282 if (found)
283 break;
284 }
285 if (found) {
286 if (found->flags & IORESOURCE_PREFETCH)
287 prot = pgprot_noncached_wc(prot);
288 pci_dev_put(pdev);
289 }
290
291 pr_debug("PCI: Non-PCI map for %llx, prot: %lx\n",
292 (unsigned long long)offset, pgprot_val(prot));
293
294 return prot;
295}
296
297/*
298 * Perform the actual remap of the pages for a PCI device mapping, as
299 * appropriate for this architecture. The region in the process to map
300 * is described by vm_start and vm_end members of VMA, the base physical
301 * address is found in vm_pgoff.
302 * The pci device structure is provided so that architectures may make mapping
303 * decisions on a per-device or per-bus basis.
304 *
305 * Returns a negative error code on failure, zero on success.
306 */
307int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
308 enum pci_mmap_state mmap_state, int write_combine)
309{
310 resource_size_t offset =
311 ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
312 struct resource *rp;
313 int ret;
314
315 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
316 if (rp == NULL)
317 return -EINVAL;
318
319 vma->vm_pgoff = offset >> PAGE_SHIFT;
320 vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
321 vma->vm_page_prot,
322 mmap_state, write_combine);
323
324 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
325 vma->vm_end - vma->vm_start, vma->vm_page_prot);
326
327 return ret;
328}
329
330/* This provides legacy IO read access on a bus */
331int pci_legacy_read(struct pci_bus *bus, loff_t port, u32 *val, size_t size)
332{
333 unsigned long offset;
334 struct pci_controller *hose = pci_bus_to_host(bus);
335 struct resource *rp = &hose->io_resource;
336 void __iomem *addr;
337
338 /* Check if port can be supported by that bus. We only check
339 * the ranges of the PHB though, not the bus itself as the rules
340 * for forwarding legacy cycles down bridges are not our problem
341 * here. So if the host bridge supports it, we do it.
342 */
343 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
344 offset += port;
345
346 if (!(rp->flags & IORESOURCE_IO))
347 return -ENXIO;
348 if (offset < rp->start || (offset + size) > rp->end)
349 return -ENXIO;
350 addr = hose->io_base_virt + port;
351
352 switch (size) {
353 case 1:
354 *((u8 *)val) = in_8(addr);
355 return 1;
356 case 2:
357 if (port & 1)
358 return -EINVAL;
359 *((u16 *)val) = in_le16(addr);
360 return 2;
361 case 4:
362 if (port & 3)
363 return -EINVAL;
364 *((u32 *)val) = in_le32(addr);
365 return 4;
366 }
367 return -EINVAL;
368}
369
370/* This provides legacy IO write access on a bus */
371int pci_legacy_write(struct pci_bus *bus, loff_t port, u32 val, size_t size)
372{
373 unsigned long offset;
374 struct pci_controller *hose = pci_bus_to_host(bus);
375 struct resource *rp = &hose->io_resource;
376 void __iomem *addr;
377
378 /* Check if port can be supported by that bus. We only check
379 * the ranges of the PHB though, not the bus itself as the rules
380 * for forwarding legacy cycles down bridges are not our problem
381 * here. So if the host bridge supports it, we do it.
382 */
383 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
384 offset += port;
385
386 if (!(rp->flags & IORESOURCE_IO))
387 return -ENXIO;
388 if (offset < rp->start || (offset + size) > rp->end)
389 return -ENXIO;
390 addr = hose->io_base_virt + port;
391
392 /* WARNING: The generic code is idiotic. It gets passed a pointer
393 * to what can be a 1, 2 or 4 byte quantity and always reads that
394 * as a u32, which means that we have to correct the location of
395 * the data read within those 32 bits for size 1 and 2
396 */
397 switch (size) {
398 case 1:
399 out_8(addr, val >> 24);
400 return 1;
401 case 2:
402 if (port & 1)
403 return -EINVAL;
404 out_le16(addr, val >> 16);
405 return 2;
406 case 4:
407 if (port & 3)
408 return -EINVAL;
409 out_le32(addr, val);
410 return 4;
411 }
412 return -EINVAL;
413}
414
415/* This provides legacy IO or memory mmap access on a bus */
416int pci_mmap_legacy_page_range(struct pci_bus *bus,
417 struct vm_area_struct *vma,
418 enum pci_mmap_state mmap_state)
419{
420 struct pci_controller *hose = pci_bus_to_host(bus);
421 resource_size_t offset =
422 ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
423 resource_size_t size = vma->vm_end - vma->vm_start;
424 struct resource *rp;
425
426 pr_debug("pci_mmap_legacy_page_range(%04x:%02x, %s @%llx..%llx)\n",
427 pci_domain_nr(bus), bus->number,
428 mmap_state == pci_mmap_mem ? "MEM" : "IO",
429 (unsigned long long)offset,
430 (unsigned long long)(offset + size - 1));
431
432 if (mmap_state == pci_mmap_mem) {
433 /* Hack alert !
434 *
435 * Because X is lame and can fail starting if it gets an error
436 * trying to mmap legacy_mem (instead of just moving on without
437 * legacy memory access) we fake it here by giving it anonymous
438 * memory, effectively behaving just like /dev/zero
439 */
440 if ((offset + size) > hose->isa_mem_size) {
Michal Simek79bf3a12010-01-20 15:17:08 +0100441#ifdef CONFIG_MMU
Michal Simek6bd55f02012-12-27 10:40:38 +0100442 pr_debug("Process %s (pid:%d) mapped non-existing PCI",
443 current->comm, current->pid);
444 pr_debug("legacy memory for 0%04x:%02x\n",
445 pci_domain_nr(bus), bus->number);
Michal Simek79bf3a12010-01-20 15:17:08 +0100446#endif
Michal Simekd3afa582010-01-18 14:42:34 +0100447 if (vma->vm_flags & VM_SHARED)
448 return shmem_zero_setup(vma);
449 return 0;
450 }
451 offset += hose->isa_mem_phys;
452 } else {
Michal Simek6bd55f02012-12-27 10:40:38 +0100453 unsigned long io_offset = (unsigned long)hose->io_base_virt -
Michal Simekd3afa582010-01-18 14:42:34 +0100454 _IO_BASE;
455 unsigned long roffset = offset + io_offset;
456 rp = &hose->io_resource;
457 if (!(rp->flags & IORESOURCE_IO))
458 return -ENXIO;
459 if (roffset < rp->start || (roffset + size) > rp->end)
460 return -ENXIO;
461 offset += hose->io_base_phys;
462 }
463 pr_debug(" -> mapping phys %llx\n", (unsigned long long)offset);
464
465 vma->vm_pgoff = offset >> PAGE_SHIFT;
466 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
467 return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
468 vma->vm_end - vma->vm_start,
469 vma->vm_page_prot);
470}
471
472void pci_resource_to_user(const struct pci_dev *dev, int bar,
473 const struct resource *rsrc,
474 resource_size_t *start, resource_size_t *end)
475{
476 struct pci_controller *hose = pci_bus_to_host(dev->bus);
477 resource_size_t offset = 0;
478
479 if (hose == NULL)
480 return;
481
482 if (rsrc->flags & IORESOURCE_IO)
483 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
484
485 /* We pass a fully fixed up address to userland for MMIO instead of
486 * a BAR value because X is lame and expects to be able to use that
487 * to pass to /dev/mem !
488 *
489 * That means that we'll have potentially 64 bits values where some
490 * userland apps only expect 32 (like X itself since it thinks only
491 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
492 * 32 bits CHRPs :-(
493 *
494 * Hopefully, the sysfs insterface is immune to that gunk. Once X
495 * has been fixed (and the fix spread enough), we can re-enable the
496 * 2 lines below and pass down a BAR value to userland. In that case
497 * we'll also have to re-enable the matching code in
498 * __pci_mmap_make_offset().
499 *
500 * BenH.
501 */
502#if 0
503 else if (rsrc->flags & IORESOURCE_MEM)
504 offset = hose->pci_mem_offset;
505#endif
506
507 *start = rsrc->start - offset;
508 *end = rsrc->end - offset;
509}
510
511/**
512 * pci_process_bridge_OF_ranges - Parse PCI bridge resources from device tree
513 * @hose: newly allocated pci_controller to be setup
514 * @dev: device node of the host bridge
515 * @primary: set if primary bus (32 bits only, soon to be deprecated)
516 *
517 * This function will parse the "ranges" property of a PCI host bridge device
518 * node and setup the resource mapping of a pci controller based on its
519 * content.
520 *
521 * Life would be boring if it wasn't for a few issues that we have to deal
522 * with here:
523 *
524 * - We can only cope with one IO space range and up to 3 Memory space
525 * ranges. However, some machines (thanks Apple !) tend to split their
526 * space into lots of small contiguous ranges. So we have to coalesce.
527 *
528 * - We can only cope with all memory ranges having the same offset
529 * between CPU addresses and PCI addresses. Unfortunately, some bridges
530 * are setup for a large 1:1 mapping along with a small "window" which
531 * maps PCI address 0 to some arbitrary high address of the CPU space in
532 * order to give access to the ISA memory hole.
533 * The way out of here that I've chosen for now is to always set the
534 * offset based on the first resource found, then override it if we
535 * have a different offset and the previous was set by an ISA hole.
536 *
537 * - Some busses have IO space not starting at 0, which causes trouble with
538 * the way we do our IO resource renumbering. The code somewhat deals with
539 * it for 64 bits but I would expect problems on 32 bits.
540 *
541 * - Some 32 bits platforms such as 4xx can have physical space larger than
542 * 32 bits so we need to use 64 bits values for the parsing
543 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800544void pci_process_bridge_OF_ranges(struct pci_controller *hose,
545 struct device_node *dev, int primary)
Michal Simekd3afa582010-01-18 14:42:34 +0100546{
Michal Simekd3afa582010-01-18 14:42:34 +0100547 int memno = 0, isa_hole = -1;
Michal Simekd3afa582010-01-18 14:42:34 +0100548 unsigned long long isa_mb = 0;
549 struct resource *res;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100550 struct of_pci_range range;
551 struct of_pci_range_parser parser;
Michal Simekd3afa582010-01-18 14:42:34 +0100552
Michal Simek6bd55f02012-12-27 10:40:38 +0100553 pr_info("PCI host bridge %s %s ranges:\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100554 dev->full_name, primary ? "(primary)" : "");
555
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100556 /* Check for ranges property */
557 if (of_pci_range_parser_init(&parser, dev))
Michal Simekd3afa582010-01-18 14:42:34 +0100558 return;
559
Michal Simekd3afa582010-01-18 14:42:34 +0100560 pr_debug("Parsing ranges property...\n");
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100561 for_each_of_pci_range(&parser, &range) {
Michal Simekd3afa582010-01-18 14:42:34 +0100562 /* Read next ranges element */
Michal Simek6bd55f02012-12-27 10:40:38 +0100563 pr_debug("pci_space: 0x%08x pci_addr:0x%016llx ",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100564 range.pci_space, range.pci_addr);
Michal Simek6bd55f02012-12-27 10:40:38 +0100565 pr_debug("cpu_addr:0x%016llx size:0x%016llx\n",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100566 range.cpu_addr, range.size);
Michal Simekd3afa582010-01-18 14:42:34 +0100567
568 /* If we failed translation or got a zero-sized region
569 * (some FW try to feed us with non sensical zero sized regions
570 * such as power3 which look like some kind of attempt
571 * at exposing the VGA memory hole)
572 */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100573 if (range.cpu_addr == OF_BAD_ADDR || range.size == 0)
Michal Simekd3afa582010-01-18 14:42:34 +0100574 continue;
575
Michal Simekd3afa582010-01-18 14:42:34 +0100576 /* Act based on address space type */
577 res = NULL;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100578 switch (range.flags & IORESOURCE_TYPE_BITS) {
579 case IORESOURCE_IO:
Michal Simek6bd55f02012-12-27 10:40:38 +0100580 pr_info(" IO 0x%016llx..0x%016llx -> 0x%016llx\n",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100581 range.cpu_addr, range.cpu_addr + range.size - 1,
582 range.pci_addr);
Michal Simekd3afa582010-01-18 14:42:34 +0100583
584 /* We support only one IO range */
585 if (hose->pci_io_size) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100586 pr_info(" \\--> Skipped (too many) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100587 continue;
588 }
589 /* On 32 bits, limit I/O space to 16MB */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100590 if (range.size > 0x01000000)
591 range.size = 0x01000000;
Michal Simekd3afa582010-01-18 14:42:34 +0100592
593 /* 32 bits needs to map IOs here */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100594 hose->io_base_virt = ioremap(range.cpu_addr,
595 range.size);
Michal Simekd3afa582010-01-18 14:42:34 +0100596
597 /* Expect trouble if pci_addr is not 0 */
598 if (primary)
599 isa_io_base =
600 (unsigned long)hose->io_base_virt;
601 /* pci_io_size and io_base_phys always represent IO
602 * space starting at 0 so we factor in pci_addr
603 */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100604 hose->pci_io_size = range.pci_addr + range.size;
605 hose->io_base_phys = range.cpu_addr - range.pci_addr;
Michal Simekd3afa582010-01-18 14:42:34 +0100606
607 /* Build resource */
608 res = &hose->io_resource;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100609 range.cpu_addr = range.pci_addr;
610
Michal Simekd3afa582010-01-18 14:42:34 +0100611 break;
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100612 case IORESOURCE_MEM:
Michal Simek6bd55f02012-12-27 10:40:38 +0100613 pr_info(" MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100614 range.cpu_addr, range.cpu_addr + range.size - 1,
615 range.pci_addr,
616 (range.pci_space & 0x40000000) ?
617 "Prefetch" : "");
Michal Simekd3afa582010-01-18 14:42:34 +0100618
619 /* We support only 3 memory ranges */
620 if (memno >= 3) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100621 pr_info(" \\--> Skipped (too many) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100622 continue;
623 }
624 /* Handles ISA memory hole space here */
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100625 if (range.pci_addr == 0) {
626 isa_mb = range.cpu_addr;
Michal Simekd3afa582010-01-18 14:42:34 +0100627 isa_hole = memno;
628 if (primary || isa_mem_base == 0)
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100629 isa_mem_base = range.cpu_addr;
630 hose->isa_mem_phys = range.cpu_addr;
631 hose->isa_mem_size = range.size;
Michal Simekd3afa582010-01-18 14:42:34 +0100632 }
633
634 /* We get the PCI/Mem offset from the first range or
635 * the, current one if the offset came from an ISA
636 * hole. If they don't match, bugger.
637 */
638 if (memno == 0 ||
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100639 (isa_hole >= 0 && range.pci_addr != 0 &&
Michal Simekd3afa582010-01-18 14:42:34 +0100640 hose->pci_mem_offset == isa_mb))
Andrew Murray4f7b6de2013-07-27 20:01:22 +0100641 hose->pci_mem_offset = range.cpu_addr -
642 range.pci_addr;
643 else if (range.pci_addr != 0 &&
644 hose->pci_mem_offset != range.cpu_addr -
645 range.pci_addr) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100646 pr_info(" \\--> Skipped (offset mismatch) !\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100647 continue;
648 }
649
650 /* Build resource */
651 res = &hose->mem_resources[memno++];
Michal Simekd3afa582010-01-18 14:42:34 +0100652 break;
653 }
Michal Simek70dcd942014-10-27 08:15:25 +0100654 if (res != NULL) {
655 res->name = dev->full_name;
656 res->flags = range.flags;
657 res->start = range.cpu_addr;
658 res->end = range.cpu_addr + range.size - 1;
659 res->parent = res->child = res->sibling = NULL;
660 }
Michal Simekd3afa582010-01-18 14:42:34 +0100661 }
662
663 /* If there's an ISA hole and the pci_mem_offset is -not- matching
664 * the ISA hole offset, then we need to remove the ISA hole from
665 * the resource list for that brige
666 */
667 if (isa_hole >= 0 && hose->pci_mem_offset != isa_mb) {
668 unsigned int next = isa_hole + 1;
Michal Simek6bd55f02012-12-27 10:40:38 +0100669 pr_info(" Removing ISA hole at 0x%016llx\n", isa_mb);
Michal Simekd3afa582010-01-18 14:42:34 +0100670 if (next < memno)
671 memmove(&hose->mem_resources[isa_hole],
672 &hose->mem_resources[next],
673 sizeof(struct resource) * (memno - next));
674 hose->mem_resources[--memno].flags = 0;
675 }
676}
677
678/* Decide whether to display the domain number in /proc */
679int pci_proc_domain(struct pci_bus *bus)
680{
Bjorn Helgaase5b36842012-02-23 20:18:57 -0700681 return 0;
Michal Simekd3afa582010-01-18 14:42:34 +0100682}
683
Michal Simekd3afa582010-01-18 14:42:34 +0100684/* This header fixup will do the resource fixup for all devices as they are
685 * probed, but not for bridge ranges
686 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800687static void pcibios_fixup_resources(struct pci_dev *dev)
Michal Simekd3afa582010-01-18 14:42:34 +0100688{
689 struct pci_controller *hose = pci_bus_to_host(dev->bus);
690 int i;
691
692 if (!hose) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100693 pr_err("No host bridge for PCI dev %s !\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100694 pci_name(dev));
695 return;
696 }
697 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
698 struct resource *res = dev->resource + i;
699 if (!res->flags)
700 continue;
Bjorn Helgaase5b36842012-02-23 20:18:57 -0700701 if (res->start == 0) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100702 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x]",
Michal Simekd3afa582010-01-18 14:42:34 +0100703 pci_name(dev), i,
704 (unsigned long long)res->start,
705 (unsigned long long)res->end,
706 (unsigned int)res->flags);
Michal Simek6bd55f02012-12-27 10:40:38 +0100707 pr_debug("is unassigned\n");
Michal Simekd3afa582010-01-18 14:42:34 +0100708 res->end -= res->start;
709 res->start = 0;
710 res->flags |= IORESOURCE_UNSET;
711 continue;
712 }
713
Bjorn Helgaasaa23bdc2012-02-23 20:19:02 -0700714 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x]\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100715 pci_name(dev), i,
Michal Simek6bd55f02012-12-27 10:40:38 +0100716 (unsigned long long)res->start,
Michal Simekd3afa582010-01-18 14:42:34 +0100717 (unsigned long long)res->end,
718 (unsigned int)res->flags);
Michal Simekd3afa582010-01-18 14:42:34 +0100719 }
720}
721DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
722
723/* This function tries to figure out if a bridge resource has been initialized
724 * by the firmware or not. It doesn't have to be absolutely bullet proof, but
725 * things go more smoothly when it gets it right. It should covers cases such
726 * as Apple "closed" bridge resources and bare-metal pSeries unassigned bridges
727 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800728static int pcibios_uninitialized_bridge_resource(struct pci_bus *bus,
729 struct resource *res)
Michal Simekd3afa582010-01-18 14:42:34 +0100730{
731 struct pci_controller *hose = pci_bus_to_host(bus);
732 struct pci_dev *dev = bus->self;
733 resource_size_t offset;
734 u16 command;
735 int i;
736
Michal Simekd3afa582010-01-18 14:42:34 +0100737 /* Job is a bit different between memory and IO */
738 if (res->flags & IORESOURCE_MEM) {
739 /* If the BAR is non-0 (res != pci_mem_offset) then it's
740 * probably been initialized by somebody
741 */
742 if (res->start != hose->pci_mem_offset)
743 return 0;
744
745 /* The BAR is 0, let's check if memory decoding is enabled on
746 * the bridge. If not, we consider it unassigned
747 */
748 pci_read_config_word(dev, PCI_COMMAND, &command);
749 if ((command & PCI_COMMAND_MEMORY) == 0)
750 return 1;
751
752 /* Memory decoding is enabled and the BAR is 0. If any of
753 * the bridge resources covers that starting address (0 then
754 * it's good enough for us for memory
755 */
756 for (i = 0; i < 3; i++) {
757 if ((hose->mem_resources[i].flags & IORESOURCE_MEM) &&
758 hose->mem_resources[i].start == hose->pci_mem_offset)
759 return 0;
760 }
761
762 /* Well, it starts at 0 and we know it will collide so we may as
763 * well consider it as unassigned. That covers the Apple case.
764 */
765 return 1;
766 } else {
767 /* If the BAR is non-0, then we consider it assigned */
768 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
769 if (((res->start - offset) & 0xfffffffful) != 0)
770 return 0;
771
772 /* Here, we are a bit different than memory as typically IO
773 * space starting at low addresses -is- valid. What we do
774 * instead if that we consider as unassigned anything that
775 * doesn't have IO enabled in the PCI command register,
776 * and that's it.
777 */
778 pci_read_config_word(dev, PCI_COMMAND, &command);
779 if (command & PCI_COMMAND_IO)
780 return 0;
781
782 /* It's starting at 0 and IO is disabled in the bridge, consider
783 * it unassigned
784 */
785 return 1;
786 }
787}
788
789/* Fixup resources of a PCI<->PCI bridge */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800790static void pcibios_fixup_bridge(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100791{
792 struct resource *res;
793 int i;
794
795 struct pci_dev *dev = bus->self;
796
Michal Simek8a66da72010-04-16 09:03:00 +0200797 pci_bus_for_each_resource(bus, res, i) {
Michal Simekd3afa582010-01-18 14:42:34 +0100798 if (!res)
799 continue;
800 if (!res->flags)
801 continue;
802 if (i >= 3 && bus->self->transparent)
803 continue;
804
805 pr_debug("PCI:%s Bus rsrc %d %016llx-%016llx [%x] fixup...\n",
806 pci_name(dev), i,
Michal Simek6bd55f02012-12-27 10:40:38 +0100807 (unsigned long long)res->start,
Michal Simekd3afa582010-01-18 14:42:34 +0100808 (unsigned long long)res->end,
809 (unsigned int)res->flags);
810
Michal Simekd3afa582010-01-18 14:42:34 +0100811 /* Try to detect uninitialized P2P bridge resources,
812 * and clear them out so they get re-assigned later
813 */
814 if (pcibios_uninitialized_bridge_resource(bus, res)) {
815 res->flags = 0;
816 pr_debug("PCI:%s (unassigned)\n",
817 pci_name(dev));
818 } else {
819 pr_debug("PCI:%s %016llx-%016llx\n",
820 pci_name(dev),
821 (unsigned long long)res->start,
822 (unsigned long long)res->end);
823 }
824 }
825}
826
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800827void pcibios_setup_bus_self(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100828{
829 /* Fix up the bus resources for P2P bridges */
830 if (bus->self != NULL)
831 pcibios_fixup_bridge(bus);
832}
833
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800834void pcibios_setup_bus_devices(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100835{
836 struct pci_dev *dev;
837
838 pr_debug("PCI: Fixup bus devices %d (%s)\n",
839 bus->number, bus->self ? pci_name(bus->self) : "PHB");
840
841 list_for_each_entry(dev, &bus->devices, bus_list) {
Michal Simekd3afa582010-01-18 14:42:34 +0100842 /* Setup OF node pointer in archdata */
Michal Simek088ab302010-08-16 10:31:54 +0200843 dev->dev.of_node = pci_device_to_OF_node(dev);
Michal Simekd3afa582010-01-18 14:42:34 +0100844
845 /* Fixup NUMA node as it may not be setup yet by the generic
846 * code and is needed by the DMA init
847 */
848 set_dev_node(&dev->dev, pcibus_to_node(dev->bus));
849
Michal Simekd3afa582010-01-18 14:42:34 +0100850 /* Read default IRQs and fixup if necessary */
Grant Likelyf27446c2013-09-19 23:34:26 -0500851 dev->irq = of_irq_parse_and_map_pci(dev, 0, 0);
Michal Simekd3afa582010-01-18 14:42:34 +0100852 }
853}
854
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800855void pcibios_fixup_bus(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100856{
Bharat Kumar Gogada01cf9d52016-02-11 21:58:11 +0530857 /* nothing to do */
Michal Simekd3afa582010-01-18 14:42:34 +0100858}
859EXPORT_SYMBOL(pcibios_fixup_bus);
860
Michal Simekd3afa582010-01-18 14:42:34 +0100861/*
862 * We need to avoid collisions with `mirrored' VGA ports
863 * and other strange ISA hardware, so we always want the
864 * addresses to be allocated in the 0x000-0x0ff region
865 * modulo 0x400.
866 *
867 * Why? Because some silly external IO cards only decode
868 * the low 10 bits of the IO address. The 0x00-0xff region
869 * is reserved for motherboard devices that decode all 16
870 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
871 * but we want to try to avoid allocating at 0x2900-0x2bff
872 * which might have be mirrored at 0x0100-0x03ff..
873 */
Michal Simekc86fac42010-04-16 09:04:51 +0200874resource_size_t pcibios_align_resource(void *data, const struct resource *res,
Michal Simekd3afa582010-01-18 14:42:34 +0100875 resource_size_t size, resource_size_t align)
876{
Bharat Kumar Gogada01cf9d52016-02-11 21:58:11 +0530877 return res->start;
Michal Simekd3afa582010-01-18 14:42:34 +0100878}
879EXPORT_SYMBOL(pcibios_align_resource);
880
Bharat Kumar Gogada01cf9d52016-02-11 21:58:11 +0530881int pcibios_add_device(struct pci_dev *dev)
882{
883 dev->irq = of_irq_parse_and_map_pci(dev, 0, 0);
884
885 return 0;
886}
887EXPORT_SYMBOL(pcibios_add_device);
888
Michal Simekd3afa582010-01-18 14:42:34 +0100889/*
890 * Reparent resource children of pr that conflict with res
891 * under res, and make res replace those children.
892 */
893static int __init reparent_resources(struct resource *parent,
894 struct resource *res)
895{
896 struct resource *p, **pp;
897 struct resource **firstpp = NULL;
898
899 for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {
900 if (p->end < res->start)
901 continue;
902 if (res->end < p->start)
903 break;
904 if (p->start < res->start || p->end > res->end)
905 return -1; /* not completely contained */
906 if (firstpp == NULL)
907 firstpp = pp;
908 }
909 if (firstpp == NULL)
910 return -1; /* didn't find any conflicting entries? */
911 res->parent = parent;
912 res->child = *firstpp;
913 res->sibling = *pp;
914 *firstpp = res;
915 *pp = NULL;
916 for (p = res->child; p != NULL; p = p->sibling) {
917 p->parent = res;
918 pr_debug("PCI: Reparented %s [%llx..%llx] under %s\n",
919 p->name,
920 (unsigned long long)p->start,
921 (unsigned long long)p->end, res->name);
922 }
923 return 0;
924}
925
926/*
927 * Handle resources of PCI devices. If the world were perfect, we could
928 * just allocate all the resource regions and do nothing more. It isn't.
929 * On the other hand, we cannot just re-allocate all devices, as it would
930 * require us to know lots of host bridge internals. So we attempt to
931 * keep as much of the original configuration as possible, but tweak it
932 * when it's found to be wrong.
933 *
934 * Known BIOS problems we have to work around:
935 * - I/O or memory regions not configured
936 * - regions configured, but not enabled in the command register
937 * - bogus I/O addresses above 64K used
938 * - expansion ROMs left enabled (this may sound harmless, but given
939 * the fact the PCI specs explicitly allow address decoders to be
940 * shared between expansion ROMs and other resource regions, it's
941 * at least dangerous)
942 *
943 * Our solution:
944 * (1) Allocate resources for all buses behind PCI-to-PCI bridges.
945 * This gives us fixed barriers on where we can allocate.
946 * (2) Allocate resources for all enabled devices. If there is
947 * a collision, just mark the resource as unallocated. Also
948 * disable expansion ROMs during this step.
949 * (3) Try to allocate resources for disabled devices. If the
950 * resources were assigned correctly, everything goes well,
951 * if they weren't, they won't disturb allocation of other
952 * resources.
953 * (4) Assign new addresses to resources which were either
954 * not configured at all or misconfigured. If explicitly
955 * requested by the user, configure expansion ROM address
956 * as well.
957 */
958
Michal Simekf7eaacc2013-01-04 09:14:46 +0100959static void pcibios_allocate_bus_resources(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +0100960{
961 struct pci_bus *b;
962 int i;
963 struct resource *res, *pr;
964
965 pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
966 pci_domain_nr(bus), bus->number);
967
Michal Simek8a66da72010-04-16 09:03:00 +0200968 pci_bus_for_each_resource(bus, res, i) {
Michal Simekd3afa582010-01-18 14:42:34 +0100969 if (!res || !res->flags
970 || res->start > res->end || res->parent)
971 continue;
972 if (bus->parent == NULL)
973 pr = (res->flags & IORESOURCE_IO) ?
974 &ioport_resource : &iomem_resource;
975 else {
976 /* Don't bother with non-root busses when
977 * re-assigning all resources. We clear the
978 * resource flags as if they were colliding
979 * and as such ensure proper re-allocation
980 * later.
981 */
Michal Simekd3afa582010-01-18 14:42:34 +0100982 pr = pci_find_parent_resource(bus->self, res);
983 if (pr == res) {
984 /* this happens when the generic PCI
985 * code (wrongly) decides that this
986 * bridge is transparent -- paulus
987 */
988 continue;
989 }
990 }
991
Michal Simek6bd55f02012-12-27 10:40:38 +0100992 pr_debug("PCI: %s (bus %d) bridge rsrc %d: %016llx-%016llx ",
Michal Simekd3afa582010-01-18 14:42:34 +0100993 bus->self ? pci_name(bus->self) : "PHB",
994 bus->number, i,
995 (unsigned long long)res->start,
Michal Simek6bd55f02012-12-27 10:40:38 +0100996 (unsigned long long)res->end);
997 pr_debug("[0x%x], parent %p (%s)\n",
Michal Simekd3afa582010-01-18 14:42:34 +0100998 (unsigned int)res->flags,
999 pr, (pr && pr->name) ? pr->name : "nil");
1000
1001 if (pr && !(pr->flags & IORESOURCE_UNSET)) {
Yinghai Lu576e4382015-01-15 16:21:50 -06001002 struct pci_dev *dev = bus->self;
1003
Michal Simekd3afa582010-01-18 14:42:34 +01001004 if (request_resource(pr, res) == 0)
1005 continue;
1006 /*
1007 * Must be a conflict with an existing entry.
1008 * Move that entry (or entries) under the
1009 * bridge resource and try again.
1010 */
1011 if (reparent_resources(pr, res) == 0)
1012 continue;
Yinghai Lu576e4382015-01-15 16:21:50 -06001013
1014 if (dev && i < PCI_BRIDGE_RESOURCE_NUM &&
1015 pci_claim_bridge_resource(dev,
1016 i + PCI_BRIDGE_RESOURCES) == 0)
1017 continue;
1018
Michal Simekd3afa582010-01-18 14:42:34 +01001019 }
Michal Simek6bd55f02012-12-27 10:40:38 +01001020 pr_warn("PCI: Cannot allocate resource region ");
1021 pr_cont("%d of PCI bridge %d, will remap\n", i, bus->number);
Yinghai Lu837c4ef2010-06-03 13:43:03 -07001022 res->start = res->end = 0;
Michal Simekd3afa582010-01-18 14:42:34 +01001023 res->flags = 0;
1024 }
1025
1026 list_for_each_entry(b, &bus->children, node)
1027 pcibios_allocate_bus_resources(b);
1028}
1029
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001030static inline void alloc_resource(struct pci_dev *dev, int idx)
Michal Simekd3afa582010-01-18 14:42:34 +01001031{
1032 struct resource *pr, *r = &dev->resource[idx];
1033
1034 pr_debug("PCI: Allocating %s: Resource %d: %016llx..%016llx [%x]\n",
1035 pci_name(dev), idx,
1036 (unsigned long long)r->start,
1037 (unsigned long long)r->end,
1038 (unsigned int)r->flags);
1039
1040 pr = pci_find_parent_resource(dev, r);
1041 if (!pr || (pr->flags & IORESOURCE_UNSET) ||
1042 request_resource(pr, r) < 0) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001043 pr_warn("PCI: Cannot allocate resource region %d ", idx);
1044 pr_cont("of device %s, will remap\n", pci_name(dev));
Michal Simekd3afa582010-01-18 14:42:34 +01001045 if (pr)
1046 pr_debug("PCI: parent is %p: %016llx-%016llx [%x]\n",
1047 pr,
1048 (unsigned long long)pr->start,
1049 (unsigned long long)pr->end,
1050 (unsigned int)pr->flags);
1051 /* We'll assign a new address later */
1052 r->flags |= IORESOURCE_UNSET;
1053 r->end -= r->start;
1054 r->start = 0;
1055 }
1056}
1057
1058static void __init pcibios_allocate_resources(int pass)
1059{
1060 struct pci_dev *dev = NULL;
1061 int idx, disabled;
1062 u16 command;
1063 struct resource *r;
1064
1065 for_each_pci_dev(dev) {
1066 pci_read_config_word(dev, PCI_COMMAND, &command);
1067 for (idx = 0; idx <= PCI_ROM_RESOURCE; idx++) {
1068 r = &dev->resource[idx];
1069 if (r->parent) /* Already allocated */
1070 continue;
1071 if (!r->flags || (r->flags & IORESOURCE_UNSET))
1072 continue; /* Not assigned at all */
1073 /* We only allocate ROMs on pass 1 just in case they
1074 * have been screwed up by firmware
1075 */
1076 if (idx == PCI_ROM_RESOURCE)
1077 disabled = 1;
1078 if (r->flags & IORESOURCE_IO)
1079 disabled = !(command & PCI_COMMAND_IO);
1080 else
1081 disabled = !(command & PCI_COMMAND_MEMORY);
1082 if (pass == disabled)
1083 alloc_resource(dev, idx);
1084 }
1085 if (pass)
1086 continue;
1087 r = &dev->resource[PCI_ROM_RESOURCE];
1088 if (r->flags) {
1089 /* Turn the ROM off, leave the resource region,
1090 * but keep it unregistered.
1091 */
1092 u32 reg;
1093 pci_read_config_dword(dev, dev->rom_base_reg, &reg);
1094 if (reg & PCI_ROM_ADDRESS_ENABLE) {
1095 pr_debug("PCI: Switching off ROM of %s\n",
1096 pci_name(dev));
1097 r->flags &= ~IORESOURCE_ROM_ENABLE;
1098 pci_write_config_dword(dev, dev->rom_base_reg,
1099 reg & ~PCI_ROM_ADDRESS_ENABLE);
1100 }
1101 }
1102 }
1103}
1104
1105static void __init pcibios_reserve_legacy_regions(struct pci_bus *bus)
1106{
1107 struct pci_controller *hose = pci_bus_to_host(bus);
1108 resource_size_t offset;
1109 struct resource *res, *pres;
1110 int i;
1111
1112 pr_debug("Reserving legacy ranges for domain %04x\n",
1113 pci_domain_nr(bus));
1114
1115 /* Check for IO */
1116 if (!(hose->io_resource.flags & IORESOURCE_IO))
1117 goto no_io;
1118 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
1119 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1120 BUG_ON(res == NULL);
1121 res->name = "Legacy IO";
1122 res->flags = IORESOURCE_IO;
1123 res->start = offset;
1124 res->end = (offset + 0xfff) & 0xfffffffful;
1125 pr_debug("Candidate legacy IO: %pR\n", res);
1126 if (request_resource(&hose->io_resource, res)) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001127 pr_debug("PCI %04x:%02x Cannot reserve Legacy IO %pR\n",
Michal Simekd3afa582010-01-18 14:42:34 +01001128 pci_domain_nr(bus), bus->number, res);
1129 kfree(res);
1130 }
1131
1132 no_io:
1133 /* Check for memory */
1134 offset = hose->pci_mem_offset;
1135 pr_debug("hose mem offset: %016llx\n", (unsigned long long)offset);
1136 for (i = 0; i < 3; i++) {
1137 pres = &hose->mem_resources[i];
1138 if (!(pres->flags & IORESOURCE_MEM))
1139 continue;
1140 pr_debug("hose mem res: %pR\n", pres);
1141 if ((pres->start - offset) <= 0xa0000 &&
1142 (pres->end - offset) >= 0xbffff)
1143 break;
1144 }
1145 if (i >= 3)
1146 return;
1147 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1148 BUG_ON(res == NULL);
1149 res->name = "Legacy VGA memory";
1150 res->flags = IORESOURCE_MEM;
1151 res->start = 0xa0000 + offset;
1152 res->end = 0xbffff + offset;
1153 pr_debug("Candidate VGA memory: %pR\n", res);
1154 if (request_resource(pres, res)) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001155 pr_debug("PCI %04x:%02x Cannot reserve VGA memory %pR\n",
Michal Simekd3afa582010-01-18 14:42:34 +01001156 pci_domain_nr(bus), bus->number, res);
1157 kfree(res);
1158 }
1159}
1160
1161void __init pcibios_resource_survey(void)
1162{
1163 struct pci_bus *b;
1164
1165 /* Allocate and assign resources. If we re-assign everything, then
1166 * we skip the allocate phase
1167 */
1168 list_for_each_entry(b, &pci_root_buses, node)
1169 pcibios_allocate_bus_resources(b);
1170
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001171 pcibios_allocate_resources(0);
1172 pcibios_allocate_resources(1);
Michal Simekd3afa582010-01-18 14:42:34 +01001173
1174 /* Before we start assigning unassigned resource, we try to reserve
1175 * the low IO area and the VGA memory area if they intersect the
1176 * bus available resources to avoid allocating things on top of them
1177 */
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001178 list_for_each_entry(b, &pci_root_buses, node)
1179 pcibios_reserve_legacy_regions(b);
Michal Simekd3afa582010-01-18 14:42:34 +01001180
Bjorn Helgaase5b36842012-02-23 20:18:57 -07001181 /* Now proceed to assigning things that were left unassigned */
1182 pr_debug("PCI: Assigning unassigned resources...\n");
1183 pci_assign_unassigned_resources();
Michal Simekd3afa582010-01-18 14:42:34 +01001184}
1185
Michal Simekd3afa582010-01-18 14:42:34 +01001186/* This is used by the PCI hotplug driver to allocate resource
1187 * of newly plugged busses. We can try to consolidate with the
1188 * rest of the code later, for now, keep it as-is as our main
1189 * resource allocation function doesn't deal with sub-trees yet.
1190 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001191void pcibios_claim_one_bus(struct pci_bus *bus)
Michal Simekd3afa582010-01-18 14:42:34 +01001192{
1193 struct pci_dev *dev;
1194 struct pci_bus *child_bus;
1195
1196 list_for_each_entry(dev, &bus->devices, bus_list) {
1197 int i;
1198
1199 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1200 struct resource *r = &dev->resource[i];
1201
1202 if (r->parent || !r->start || !r->flags)
1203 continue;
1204
Michal Simek6bd55f02012-12-27 10:40:38 +01001205 pr_debug("PCI: Claiming %s: ", pci_name(dev));
1206 pr_debug("Resource %d: %016llx..%016llx [%x]\n",
1207 i, (unsigned long long)r->start,
Michal Simekd3afa582010-01-18 14:42:34 +01001208 (unsigned long long)r->end,
1209 (unsigned int)r->flags);
1210
Yinghai Lu576e4382015-01-15 16:21:50 -06001211 if (pci_claim_resource(dev, i) == 0)
1212 continue;
1213
1214 pci_claim_bridge_resource(dev, i);
Michal Simekd3afa582010-01-18 14:42:34 +01001215 }
1216 }
1217
1218 list_for_each_entry(child_bus, &bus->children, node)
1219 pcibios_claim_one_bus(child_bus);
1220}
1221EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
1222
1223
1224/* pcibios_finish_adding_to_bus
1225 *
1226 * This is to be called by the hotplug code after devices have been
1227 * added to a bus, this include calling it for a PHB that is just
1228 * being added
1229 */
1230void pcibios_finish_adding_to_bus(struct pci_bus *bus)
1231{
1232 pr_debug("PCI: Finishing adding to hotplug bus %04x:%02x\n",
1233 pci_domain_nr(bus), bus->number);
1234
1235 /* Allocate bus and devices resources */
1236 pcibios_allocate_bus_resources(bus);
1237 pcibios_claim_one_bus(bus);
1238
1239 /* Add new devices to global lists. Register in proc, sysfs. */
1240 pci_bus_add_devices(bus);
1241
1242 /* Fixup EEH */
Michal Simek1ce24702010-05-13 12:09:54 +02001243 /* eeh_add_device_tree_late(bus); */
Michal Simekd3afa582010-01-18 14:42:34 +01001244}
1245EXPORT_SYMBOL_GPL(pcibios_finish_adding_to_bus);
1246
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001247static void pcibios_setup_phb_resources(struct pci_controller *hose,
1248 struct list_head *resources)
Michal Simekd3afa582010-01-18 14:42:34 +01001249{
Bjorn Helgaas5420e462012-05-15 17:03:25 -06001250 unsigned long io_offset;
Michal Simekd3afa582010-01-18 14:42:34 +01001251 struct resource *res;
1252 int i;
1253
1254 /* Hookup PHB IO resource */
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001255 res = &hose->io_resource;
1256
1257 /* Fixup IO space offset */
1258 io_offset = (unsigned long)hose->io_base_virt - isa_io_base;
1259 res->start = (res->start + io_offset) & 0xffffffffu;
1260 res->end = (res->end + io_offset) & 0xffffffffu;
Michal Simekd3afa582010-01-18 14:42:34 +01001261
1262 if (!res->flags) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001263 pr_warn("PCI: I/O resource not set for host ");
1264 pr_cont("bridge %s (domain %d)\n",
1265 hose->dn->full_name, hose->global_number);
Michal Simekd3afa582010-01-18 14:42:34 +01001266 /* Workaround for lack of IO resource only on 32-bit */
1267 res->start = (unsigned long)hose->io_base_virt - isa_io_base;
1268 res->end = res->start + IO_SPACE_LIMIT;
1269 res->flags = IORESOURCE_IO;
1270 }
Michal Simekf7eaacc2013-01-04 09:14:46 +01001271 pci_add_resource_offset(resources, res,
1272 (__force resource_size_t)(hose->io_base_virt - _IO_BASE));
Michal Simekd3afa582010-01-18 14:42:34 +01001273
1274 pr_debug("PCI: PHB IO resource = %016llx-%016llx [%lx]\n",
1275 (unsigned long long)res->start,
1276 (unsigned long long)res->end,
1277 (unsigned long)res->flags);
1278
1279 /* Hookup PHB Memory resources */
1280 for (i = 0; i < 3; ++i) {
1281 res = &hose->mem_resources[i];
1282 if (!res->flags) {
1283 if (i > 0)
1284 continue;
Michal Simek6bd55f02012-12-27 10:40:38 +01001285 pr_err("PCI: Memory resource 0 not set for ");
1286 pr_cont("host bridge %s (domain %d)\n",
1287 hose->dn->full_name, hose->global_number);
Michal Simekd3afa582010-01-18 14:42:34 +01001288
1289 /* Workaround for lack of MEM resource only on 32-bit */
1290 res->start = hose->pci_mem_offset;
1291 res->end = (resource_size_t)-1LL;
1292 res->flags = IORESOURCE_MEM;
1293
1294 }
Bjorn Helgaasaa23bdc2012-02-23 20:19:02 -07001295 pci_add_resource_offset(resources, res, hose->pci_mem_offset);
Michal Simekd3afa582010-01-18 14:42:34 +01001296
1297 pr_debug("PCI: PHB MEM resource %d = %016llx-%016llx [%lx]\n",
1298 i, (unsigned long long)res->start,
1299 (unsigned long long)res->end,
1300 (unsigned long)res->flags);
1301 }
1302
1303 pr_debug("PCI: PHB MEM offset = %016llx\n",
1304 (unsigned long long)hose->pci_mem_offset);
1305 pr_debug("PCI: PHB IO offset = %08lx\n",
1306 (unsigned long)hose->io_base_virt - _IO_BASE);
1307}
1308
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -08001309static void pcibios_scan_phb(struct pci_controller *hose)
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001310{
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001311 LIST_HEAD(resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001312 struct pci_bus *bus;
1313 struct device_node *node = hose->dn;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001314
Grant Likely74a7f082012-06-15 11:50:25 -06001315 pr_debug("PCI: Scanning PHB %s\n", of_node_full_name(node));
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001316
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001317 pcibios_setup_phb_resources(hose, &resources);
1318
Bjorn Helgaas4723b982011-10-28 16:26:52 -06001319 bus = pci_scan_root_bus(hose->parent, hose->first_busno,
1320 hose->ops, hose, &resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001321 if (bus == NULL) {
Michal Simek6bd55f02012-12-27 10:40:38 +01001322 pr_err("Failed to create bus for PCI domain %04x\n",
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001323 hose->global_number);
Bjorn Helgaas58de74b2011-10-28 16:26:46 -06001324 pci_free_resource_list(&resources);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001325 return;
1326 }
Yinghai Lub918c622012-05-17 18:51:11 -07001327 bus->busn_res.start = hose->first_busno;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001328 hose->bus = bus;
1329
Yinghai Lub918c622012-05-17 18:51:11 -07001330 hose->last_busno = bus->busn_res.end;
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001331}
1332
1333static int __init pcibios_init(void)
1334{
1335 struct pci_controller *hose, *tmp;
1336 int next_busno = 0;
1337
Michal Simek6bd55f02012-12-27 10:40:38 +01001338 pr_info("PCI: Probing PCI hardware\n");
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001339
1340 /* Scan all of the recorded PCI controllers. */
1341 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1342 hose->last_busno = 0xff;
1343 pcibios_scan_phb(hose);
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001344 if (next_busno <= hose->last_busno)
1345 next_busno = hose->last_busno + 1;
1346 }
1347 pci_bus_count = next_busno;
1348
1349 /* Call common code to handle resource allocation */
1350 pcibios_resource_survey();
Yijing Wangb97ea282015-03-16 11:18:56 +08001351 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1352 if (hose->bus)
1353 pci_bus_add_devices(hose->bus);
1354 }
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001355
1356 return 0;
1357}
1358
1359subsys_initcall(pcibios_init);
1360
1361static struct pci_controller *pci_bus_to_hose(int bus)
1362{
1363 struct pci_controller *hose, *tmp;
1364
1365 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1366 if (bus >= hose->first_busno && bus <= hose->last_busno)
1367 return hose;
1368 return NULL;
1369}
1370
1371/* Provide information on locations of various I/O regions in physical
1372 * memory. Do this on a per-card basis so that we choose the right
1373 * root bridge.
1374 * Note that the returned IO or memory base is a physical address
1375 */
1376
1377long sys_pciconfig_iobase(long which, unsigned long bus, unsigned long devfn)
1378{
1379 struct pci_controller *hose;
1380 long result = -EOPNOTSUPP;
1381
1382 hose = pci_bus_to_hose(bus);
1383 if (!hose)
1384 return -ENODEV;
1385
1386 switch (which) {
1387 case IOBASE_BRIDGE_NUMBER:
1388 return (long)hose->first_busno;
1389 case IOBASE_MEMORY:
1390 return (long)hose->pci_mem_offset;
1391 case IOBASE_IO:
1392 return (long)hose->io_base_phys;
1393 case IOBASE_ISA_IO:
1394 return (long)isa_io_base;
1395 case IOBASE_ISA_MEM:
1396 return (long)isa_mem_base;
1397 }
1398
1399 return result;
1400}
1401
Michal Simekd3afa582010-01-18 14:42:34 +01001402/*
1403 * Null PCI config access functions, for the case when we can't
1404 * find a hose.
1405 */
1406#define NULL_PCI_OP(rw, size, type) \
1407static int \
1408null_##rw##_config_##size(struct pci_dev *dev, int offset, type val) \
1409{ \
1410 return PCIBIOS_DEVICE_NOT_FOUND; \
1411}
1412
1413static int
1414null_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
1415 int len, u32 *val)
1416{
1417 return PCIBIOS_DEVICE_NOT_FOUND;
1418}
1419
1420static int
1421null_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
1422 int len, u32 val)
1423{
1424 return PCIBIOS_DEVICE_NOT_FOUND;
1425}
1426
1427static struct pci_ops null_pci_ops = {
1428 .read = null_read_config,
1429 .write = null_write_config,
1430};
1431
1432/*
1433 * These functions are used early on before PCI scanning is done
1434 * and all of the pci_dev and pci_bus structures have been created.
1435 */
1436static struct pci_bus *
1437fake_pci_bus(struct pci_controller *hose, int busnr)
1438{
1439 static struct pci_bus bus;
1440
1441 if (!hose)
Michal Simek6bd55f02012-12-27 10:40:38 +01001442 pr_err("Can't find hose for PCI bus %d!\n", busnr);
Michal Simekd3afa582010-01-18 14:42:34 +01001443
1444 bus.number = busnr;
1445 bus.sysdata = hose;
1446 bus.ops = hose ? hose->ops : &null_pci_ops;
1447 return &bus;
1448}
1449
1450#define EARLY_PCI_OP(rw, size, type) \
1451int early_##rw##_config_##size(struct pci_controller *hose, int bus, \
1452 int devfn, int offset, type value) \
1453{ \
1454 return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus), \
1455 devfn, offset, value); \
1456}
1457
1458EARLY_PCI_OP(read, byte, u8 *)
1459EARLY_PCI_OP(read, word, u16 *)
1460EARLY_PCI_OP(read, dword, u32 *)
1461EARLY_PCI_OP(write, byte, u8)
1462EARLY_PCI_OP(write, word, u16)
1463EARLY_PCI_OP(write, dword, u32)
1464
1465int early_find_capability(struct pci_controller *hose, int bus, int devfn,
1466 int cap)
1467{
1468 return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap);
1469}
Benjamin Herrenschmidtbf13a6f2011-04-11 11:17:26 +10001470