blob: 2603f20984c41d962959efdaa99215034b9217f8 [file] [log] [blame]
Kumar Gala5516b542007-06-27 01:17:57 -05001/*
2 * Contains common pci routines for ALL ppc platform
Kumar Galacf1d8a82007-06-28 22:56:24 -05003 * (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
Kumar Gala5516b542007-06-27 01:17:57 -050012 *
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
Kumar Gala5516b542007-06-27 01:17:57 -050019#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>
29
30#include <asm/processor.h>
31#include <asm/io.h>
32#include <asm/prom.h>
33#include <asm/pci-bridge.h>
34#include <asm/byteorder.h>
35#include <asm/machdep.h>
36#include <asm/ppc-pci.h>
37#include <asm/firmware.h>
Benjamin Herrenschmidt8b8da352008-10-27 19:48:37 +000038#include <asm/eeh.h>
Kumar Gala5516b542007-06-27 01:17:57 -050039
Kumar Galaa4c9e322007-06-27 13:09:43 -050040static DEFINE_SPINLOCK(hose_spinlock);
Milton Millerc3bd5172009-01-08 02:19:46 +000041LIST_HEAD(hose_list);
Kumar Galaa4c9e322007-06-27 13:09:43 -050042
43/* XXX kill that some day ... */
Stephen Rothwellebfc00f2007-11-19 16:56:15 +110044static int global_phb_number; /* Global phb counter */
Kumar Galaa4c9e322007-06-27 13:09:43 -050045
Benjamin Herrenschmidt25e81f92007-12-11 14:48:17 +110046/* ISA Memory physical address */
47resource_size_t isa_mem_base;
48
Benjamin Herrenschmidt1fd0f522008-10-02 14:12:51 +000049/* Default PCI flags is 0 on ppc32, modified at boot on ppc64 */
50unsigned int ppc_pci_flags = 0;
51
Kumar Galaa4c9e322007-06-27 13:09:43 -050052
Becky Bruce4fc665b2008-09-12 10:34:46 +000053static struct dma_mapping_ops *pci_dma_ops;
54
55void set_pci_dma_ops(struct dma_mapping_ops *dma_ops)
56{
57 pci_dma_ops = dma_ops;
58}
59
60struct dma_mapping_ops *get_pci_dma_ops(void)
61{
62 return pci_dma_ops;
63}
64EXPORT_SYMBOL(get_pci_dma_ops);
65
66int pci_set_dma_mask(struct pci_dev *dev, u64 mask)
67{
68 return dma_set_mask(&dev->dev, mask);
69}
70
71int pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
72{
73 int rc;
74
75 rc = dma_set_mask(&dev->dev, mask);
76 dev->dev.coherent_dma_mask = dev->dma_mask;
77
78 return rc;
79}
80
Stephen Rothwelle60516e2007-12-11 11:02:07 +110081struct pci_controller *pcibios_alloc_controller(struct device_node *dev)
Kumar Galaa4c9e322007-06-27 13:09:43 -050082{
83 struct pci_controller *phb;
84
Stephen Rothwelle60516e2007-12-11 11:02:07 +110085 phb = zalloc_maybe_bootmem(sizeof(struct pci_controller), GFP_KERNEL);
Kumar Galaa4c9e322007-06-27 13:09:43 -050086 if (phb == NULL)
87 return NULL;
Stephen Rothwelle60516e2007-12-11 11:02:07 +110088 spin_lock(&hose_spinlock);
89 phb->global_number = global_phb_number++;
90 list_add_tail(&phb->list_node, &hose_list);
91 spin_unlock(&hose_spinlock);
Stephen Rothwell44ef3392007-12-10 14:33:21 +110092 phb->dn = dev;
Kumar Galaa4c9e322007-06-27 13:09:43 -050093 phb->is_dynamic = mem_init_done;
94#ifdef CONFIG_PPC64
95 if (dev) {
96 int nid = of_node_to_nid(dev);
97
98 if (nid < 0 || !node_online(nid))
99 nid = -1;
100
101 PHB_SET_NODE(phb, nid);
102 }
103#endif
104 return phb;
105}
106
107void pcibios_free_controller(struct pci_controller *phb)
108{
109 spin_lock(&hose_spinlock);
110 list_del(&phb->list_node);
111 spin_unlock(&hose_spinlock);
112
113 if (phb->is_dynamic)
114 kfree(phb);
115}
116
Milton Millerc3bd5172009-01-08 02:19:46 +0000117static resource_size_t pcibios_io_size(const struct pci_controller *hose)
118{
119#ifdef CONFIG_PPC64
120 return hose->pci_io_size;
121#else
122 return hose->io_resource.end - hose->io_resource.start + 1;
123#endif
124}
125
Benjamin Herrenschmidt6dfbde22007-07-26 14:07:13 +1000126int pcibios_vaddr_is_ioport(void __iomem *address)
127{
128 int ret = 0;
129 struct pci_controller *hose;
Milton Millerc3bd5172009-01-08 02:19:46 +0000130 resource_size_t size;
Benjamin Herrenschmidt6dfbde22007-07-26 14:07:13 +1000131
132 spin_lock(&hose_spinlock);
133 list_for_each_entry(hose, &hose_list, list_node) {
Milton Millerc3bd5172009-01-08 02:19:46 +0000134 size = pcibios_io_size(hose);
Benjamin Herrenschmidt6dfbde22007-07-26 14:07:13 +1000135 if (address >= hose->io_base_virt &&
136 address < (hose->io_base_virt + size)) {
137 ret = 1;
138 break;
139 }
140 }
141 spin_unlock(&hose_spinlock);
142 return ret;
143}
144
Milton Millerc3bd5172009-01-08 02:19:46 +0000145unsigned long pci_address_to_pio(phys_addr_t address)
146{
147 struct pci_controller *hose;
148 resource_size_t size;
149 unsigned long ret = ~0;
150
151 spin_lock(&hose_spinlock);
152 list_for_each_entry(hose, &hose_list, list_node) {
153 size = pcibios_io_size(hose);
154 if (address >= hose->io_base_phys &&
155 address < (hose->io_base_phys + size)) {
156 unsigned long base =
157 (unsigned long)hose->io_base_virt - _IO_BASE;
158 ret = base + (address - hose->io_base_phys);
159 break;
160 }
161 }
162 spin_unlock(&hose_spinlock);
163
164 return ret;
165}
166EXPORT_SYMBOL_GPL(pci_address_to_pio);
167
Kumar Gala5516b542007-06-27 01:17:57 -0500168/*
169 * Return the domain number for this bus.
170 */
171int pci_domain_nr(struct pci_bus *bus)
172{
Stephen Rothwell6207e812007-12-07 02:04:33 +1100173 struct pci_controller *hose = pci_bus_to_host(bus);
Kumar Gala5516b542007-06-27 01:17:57 -0500174
Stephen Rothwell6207e812007-12-07 02:04:33 +1100175 return hose->global_number;
Kumar Gala5516b542007-06-27 01:17:57 -0500176}
Kumar Gala5516b542007-06-27 01:17:57 -0500177EXPORT_SYMBOL(pci_domain_nr);
Kumar Gala58083da2007-06-27 11:07:51 -0500178
179#ifdef CONFIG_PPC_OF
Kumar Galaa4c9e322007-06-27 13:09:43 -0500180
181/* This routine is meant to be used early during boot, when the
182 * PCI bus numbers have not yet been assigned, and you need to
183 * issue PCI config cycles to an OF device.
184 * It could also be used to "fix" RTAS config cycles if you want
185 * to set pci_assign_all_buses to 1 and still use RTAS for PCI
186 * config cycles.
187 */
188struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
189{
Kumar Galaa4c9e322007-06-27 13:09:43 -0500190 while(node) {
191 struct pci_controller *hose, *tmp;
192 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
Stephen Rothwell44ef3392007-12-10 14:33:21 +1100193 if (hose->dn == node)
Kumar Galaa4c9e322007-06-27 13:09:43 -0500194 return hose;
195 node = node->parent;
196 }
197 return NULL;
198}
199
Kumar Gala58083da2007-06-27 11:07:51 -0500200static ssize_t pci_show_devspec(struct device *dev,
201 struct device_attribute *attr, char *buf)
202{
203 struct pci_dev *pdev;
204 struct device_node *np;
205
206 pdev = to_pci_dev (dev);
207 np = pci_device_to_OF_node(pdev);
208 if (np == NULL || np->full_name == NULL)
209 return 0;
210 return sprintf(buf, "%s", np->full_name);
211}
212static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
213#endif /* CONFIG_PPC_OF */
214
215/* Add sysfs properties */
Tony Breeds4f3731d2007-07-18 11:03:55 +1000216int pcibios_add_platform_entries(struct pci_dev *pdev)
Kumar Gala58083da2007-06-27 11:07:51 -0500217{
218#ifdef CONFIG_PPC_OF
Tony Breeds4f3731d2007-07-18 11:03:55 +1000219 return device_create_file(&pdev->dev, &dev_attr_devspec);
220#else
221 return 0;
Kumar Gala58083da2007-06-27 11:07:51 -0500222#endif /* CONFIG_PPC_OF */
Tony Breeds4f3731d2007-07-18 11:03:55 +1000223
Kumar Gala58083da2007-06-27 11:07:51 -0500224}
225
Stephen Rothwella2b73902007-07-22 00:37:38 +1000226char __devinit *pcibios_setup(char *str)
Kumar Gala58083da2007-06-27 11:07:51 -0500227{
228 return str;
229}
230
231/*
232 * Reads the interrupt pin to determine if interrupt is use by card.
233 * If the interrupt is used, then gets the interrupt line from the
234 * openfirmware and sets it in the pci_dev and pci_config line.
235 */
236int pci_read_irq_line(struct pci_dev *pci_dev)
237{
238 struct of_irq oirq;
239 unsigned int virq;
240
Benjamin Herrenschmidt50c9bc22007-12-20 14:54:55 +1100241 /* The current device-tree that iSeries generates from the HV
242 * PCI informations doesn't contain proper interrupt routing,
243 * and all the fallback would do is print out crap, so we
244 * don't attempt to resolve the interrupts here at all, some
245 * iSeries specific fixup does it.
246 *
247 * In the long run, we will hopefully fix the generated device-tree
248 * instead.
249 */
250#ifdef CONFIG_PPC_ISERIES
251 if (firmware_has_feature(FW_FEATURE_ISERIES))
252 return -1;
253#endif
254
Benjamin Herrenschmidtb0494bc2008-10-27 19:48:22 +0000255 pr_debug("PCI: Try to map irq for %s...\n", pci_name(pci_dev));
Kumar Gala58083da2007-06-27 11:07:51 -0500256
257#ifdef DEBUG
258 memset(&oirq, 0xff, sizeof(oirq));
259#endif
260 /* Try to get a mapping from the device-tree */
261 if (of_irq_map_pci(pci_dev, &oirq)) {
262 u8 line, pin;
263
264 /* If that fails, lets fallback to what is in the config
265 * space and map that through the default controller. We
266 * also set the type to level low since that's what PCI
267 * interrupts are. If your platform does differently, then
268 * either provide a proper interrupt tree or don't use this
269 * function.
270 */
271 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
272 return -1;
273 if (pin == 0)
274 return -1;
275 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
Benjamin Herrenschmidt54a24cb2007-12-20 15:10:02 +1100276 line == 0xff || line == 0) {
Kumar Gala58083da2007-06-27 11:07:51 -0500277 return -1;
278 }
Benjamin Herrenschmidtb0494bc2008-10-27 19:48:22 +0000279 pr_debug(" No map ! Using line %d (pin %d) from PCI config\n",
280 line, pin);
Kumar Gala58083da2007-06-27 11:07:51 -0500281
282 virq = irq_create_mapping(NULL, line);
283 if (virq != NO_IRQ)
284 set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
285 } else {
Benjamin Herrenschmidtb0494bc2008-10-27 19:48:22 +0000286 pr_debug(" Got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
287 oirq.size, oirq.specifier[0], oirq.specifier[1],
Benjamin Herrenschmidt59b608c2009-02-01 17:03:59 +0000288 oirq.controller ? oirq.controller->full_name :
289 "<default>");
Kumar Gala58083da2007-06-27 11:07:51 -0500290
291 virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
292 oirq.size);
293 }
294 if(virq == NO_IRQ) {
Benjamin Herrenschmidtb0494bc2008-10-27 19:48:22 +0000295 pr_debug(" Failed to map !\n");
Kumar Gala58083da2007-06-27 11:07:51 -0500296 return -1;
297 }
298
Benjamin Herrenschmidtb0494bc2008-10-27 19:48:22 +0000299 pr_debug(" Mapped to linux irq %d\n", virq);
Kumar Gala58083da2007-06-27 11:07:51 -0500300
301 pci_dev->irq = virq;
302
303 return 0;
304}
305EXPORT_SYMBOL(pci_read_irq_line);
306
307/*
308 * Platform support for /proc/bus/pci/X/Y mmap()s,
309 * modelled on the sparc64 implementation by Dave Miller.
310 * -- paulus.
311 */
312
313/*
314 * Adjust vm_pgoff of VMA such that it is the physical page offset
315 * corresponding to the 32-bit pci bus offset for DEV requested by the user.
316 *
317 * Basically, the user finds the base address for his device which he wishes
318 * to mmap. They read the 32-bit value from the config space base register,
319 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
320 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
321 *
322 * Returns negative error code on failure, zero on success.
323 */
324static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
325 resource_size_t *offset,
326 enum pci_mmap_state mmap_state)
327{
328 struct pci_controller *hose = pci_bus_to_host(dev->bus);
329 unsigned long io_offset = 0;
330 int i, res_bit;
331
332 if (hose == 0)
333 return NULL; /* should never happen */
334
335 /* If memory, add on the PCI bridge address offset */
336 if (mmap_state == pci_mmap_mem) {
337#if 0 /* See comment in pci_resource_to_user() for why this is disabled */
338 *offset += hose->pci_mem_offset;
339#endif
340 res_bit = IORESOURCE_MEM;
341 } else {
342 io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
343 *offset += io_offset;
344 res_bit = IORESOURCE_IO;
345 }
346
347 /*
348 * Check that the offset requested corresponds to one of the
349 * resources of the device.
350 */
351 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
352 struct resource *rp = &dev->resource[i];
353 int flags = rp->flags;
354
355 /* treat ROM as memory (should be already) */
356 if (i == PCI_ROM_RESOURCE)
357 flags |= IORESOURCE_MEM;
358
359 /* Active and same type? */
360 if ((flags & res_bit) == 0)
361 continue;
362
363 /* In the range of this resource? */
364 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
365 continue;
366
367 /* found it! construct the final physical address */
368 if (mmap_state == pci_mmap_io)
369 *offset += hose->io_base_phys - io_offset;
370 return rp;
371 }
372
373 return NULL;
374}
375
376/*
377 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
378 * device mapping.
379 */
380static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
381 pgprot_t protection,
382 enum pci_mmap_state mmap_state,
383 int write_combine)
384{
385 unsigned long prot = pgprot_val(protection);
386
387 /* Write combine is always 0 on non-memory space mappings. On
388 * memory space, if the user didn't pass 1, we check for a
389 * "prefetchable" resource. This is a bit hackish, but we use
390 * this to workaround the inability of /sysfs to provide a write
391 * combine bit
392 */
393 if (mmap_state != pci_mmap_mem)
394 write_combine = 0;
395 else if (write_combine == 0) {
396 if (rp->flags & IORESOURCE_PREFETCH)
397 write_combine = 1;
398 }
399
400 /* XXX would be nice to have a way to ask for write-through */
Kumar Gala58083da2007-06-27 11:07:51 -0500401 if (write_combine)
Benjamin Herrenschmidt64b3d0e2008-12-18 19:13:51 +0000402 return pgprot_noncached_wc(prot);
Kumar Gala58083da2007-06-27 11:07:51 -0500403 else
Benjamin Herrenschmidt64b3d0e2008-12-18 19:13:51 +0000404 return pgprot_noncached(prot);
Kumar Gala58083da2007-06-27 11:07:51 -0500405}
406
407/*
408 * This one is used by /dev/mem and fbdev who have no clue about the
409 * PCI device, it tries to find the PCI device first and calls the
410 * above routine
411 */
412pgprot_t pci_phys_mem_access_prot(struct file *file,
413 unsigned long pfn,
414 unsigned long size,
Benjamin Herrenschmidt64b3d0e2008-12-18 19:13:51 +0000415 pgprot_t prot)
Kumar Gala58083da2007-06-27 11:07:51 -0500416{
417 struct pci_dev *pdev = NULL;
418 struct resource *found = NULL;
Benjamin Herrenschmidt7c12d902008-10-01 15:30:04 +0000419 resource_size_t offset = ((resource_size_t)pfn) << PAGE_SHIFT;
Kumar Gala58083da2007-06-27 11:07:51 -0500420 int i;
421
422 if (page_is_ram(pfn))
Benjamin Herrenschmidt64b3d0e2008-12-18 19:13:51 +0000423 return prot;
Kumar Gala58083da2007-06-27 11:07:51 -0500424
Benjamin Herrenschmidt64b3d0e2008-12-18 19:13:51 +0000425 prot = pgprot_noncached(prot);
Kumar Gala58083da2007-06-27 11:07:51 -0500426 for_each_pci_dev(pdev) {
427 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
428 struct resource *rp = &pdev->resource[i];
429 int flags = rp->flags;
430
431 /* Active and same type? */
432 if ((flags & IORESOURCE_MEM) == 0)
433 continue;
434 /* In the range of this resource? */
435 if (offset < (rp->start & PAGE_MASK) ||
436 offset > rp->end)
437 continue;
438 found = rp;
439 break;
440 }
441 if (found)
442 break;
443 }
444 if (found) {
445 if (found->flags & IORESOURCE_PREFETCH)
Benjamin Herrenschmidt64b3d0e2008-12-18 19:13:51 +0000446 prot = pgprot_noncached_wc(prot);
Kumar Gala58083da2007-06-27 11:07:51 -0500447 pci_dev_put(pdev);
448 }
449
Benjamin Herrenschmidtb0494bc2008-10-27 19:48:22 +0000450 pr_debug("PCI: Non-PCI map for %llx, prot: %lx\n",
Benjamin Herrenschmidt64b3d0e2008-12-18 19:13:51 +0000451 (unsigned long long)offset, pgprot_val(prot));
Kumar Gala58083da2007-06-27 11:07:51 -0500452
Benjamin Herrenschmidt64b3d0e2008-12-18 19:13:51 +0000453 return prot;
Kumar Gala58083da2007-06-27 11:07:51 -0500454}
455
456
457/*
458 * Perform the actual remap of the pages for a PCI device mapping, as
459 * appropriate for this architecture. The region in the process to map
460 * is described by vm_start and vm_end members of VMA, the base physical
461 * address is found in vm_pgoff.
462 * The pci device structure is provided so that architectures may make mapping
463 * decisions on a per-device or per-bus basis.
464 *
465 * Returns a negative error code on failure, zero on success.
466 */
467int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
468 enum pci_mmap_state mmap_state, int write_combine)
469{
Benjamin Herrenschmidt7c12d902008-10-01 15:30:04 +0000470 resource_size_t offset =
471 ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
Kumar Gala58083da2007-06-27 11:07:51 -0500472 struct resource *rp;
473 int ret;
474
475 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
476 if (rp == NULL)
477 return -EINVAL;
478
479 vma->vm_pgoff = offset >> PAGE_SHIFT;
480 vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
481 vma->vm_page_prot,
482 mmap_state, write_combine);
483
484 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
485 vma->vm_end - vma->vm_start, vma->vm_page_prot);
486
487 return ret;
488}
489
Benjamin Herrenschmidte9f82cb2008-10-14 11:55:31 +1100490/* This provides legacy IO read access on a bus */
491int pci_legacy_read(struct pci_bus *bus, loff_t port, u32 *val, size_t size)
492{
493 unsigned long offset;
494 struct pci_controller *hose = pci_bus_to_host(bus);
495 struct resource *rp = &hose->io_resource;
496 void __iomem *addr;
497
498 /* Check if port can be supported by that bus. We only check
499 * the ranges of the PHB though, not the bus itself as the rules
500 * for forwarding legacy cycles down bridges are not our problem
501 * here. So if the host bridge supports it, we do it.
502 */
503 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
504 offset += port;
505
506 if (!(rp->flags & IORESOURCE_IO))
507 return -ENXIO;
508 if (offset < rp->start || (offset + size) > rp->end)
509 return -ENXIO;
510 addr = hose->io_base_virt + port;
511
512 switch(size) {
513 case 1:
514 *((u8 *)val) = in_8(addr);
515 return 1;
516 case 2:
517 if (port & 1)
518 return -EINVAL;
519 *((u16 *)val) = in_le16(addr);
520 return 2;
521 case 4:
522 if (port & 3)
523 return -EINVAL;
524 *((u32 *)val) = in_le32(addr);
525 return 4;
526 }
527 return -EINVAL;
528}
529
530/* This provides legacy IO write access on a bus */
531int pci_legacy_write(struct pci_bus *bus, loff_t port, u32 val, size_t size)
532{
533 unsigned long offset;
534 struct pci_controller *hose = pci_bus_to_host(bus);
535 struct resource *rp = &hose->io_resource;
536 void __iomem *addr;
537
538 /* Check if port can be supported by that bus. We only check
539 * the ranges of the PHB though, not the bus itself as the rules
540 * for forwarding legacy cycles down bridges are not our problem
541 * here. So if the host bridge supports it, we do it.
542 */
543 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
544 offset += port;
545
546 if (!(rp->flags & IORESOURCE_IO))
547 return -ENXIO;
548 if (offset < rp->start || (offset + size) > rp->end)
549 return -ENXIO;
550 addr = hose->io_base_virt + port;
551
552 /* WARNING: The generic code is idiotic. It gets passed a pointer
553 * to what can be a 1, 2 or 4 byte quantity and always reads that
554 * as a u32, which means that we have to correct the location of
555 * the data read within those 32 bits for size 1 and 2
556 */
557 switch(size) {
558 case 1:
559 out_8(addr, val >> 24);
560 return 1;
561 case 2:
562 if (port & 1)
563 return -EINVAL;
564 out_le16(addr, val >> 16);
565 return 2;
566 case 4:
567 if (port & 3)
568 return -EINVAL;
569 out_le32(addr, val);
570 return 4;
571 }
572 return -EINVAL;
573}
574
575/* This provides legacy IO or memory mmap access on a bus */
576int pci_mmap_legacy_page_range(struct pci_bus *bus,
577 struct vm_area_struct *vma,
578 enum pci_mmap_state mmap_state)
579{
580 struct pci_controller *hose = pci_bus_to_host(bus);
581 resource_size_t offset =
582 ((resource_size_t)vma->vm_pgoff) << PAGE_SHIFT;
583 resource_size_t size = vma->vm_end - vma->vm_start;
584 struct resource *rp;
585
586 pr_debug("pci_mmap_legacy_page_range(%04x:%02x, %s @%llx..%llx)\n",
587 pci_domain_nr(bus), bus->number,
588 mmap_state == pci_mmap_mem ? "MEM" : "IO",
589 (unsigned long long)offset,
590 (unsigned long long)(offset + size - 1));
591
592 if (mmap_state == pci_mmap_mem) {
Benjamin Herrenschmidt5b11abf2009-02-08 14:27:21 +0000593 /* Hack alert !
594 *
595 * Because X is lame and can fail starting if it gets an error trying
596 * to mmap legacy_mem (instead of just moving on without legacy memory
597 * access) we fake it here by giving it anonymous memory, effectively
598 * behaving just like /dev/zero
599 */
600 if ((offset + size) > hose->isa_mem_size) {
601 printk(KERN_DEBUG
602 "Process %s (pid:%d) mapped non-existing PCI legacy memory for 0%04x:%02x\n",
603 current->comm, current->pid, pci_domain_nr(bus), bus->number);
604 if (vma->vm_flags & VM_SHARED)
605 return shmem_zero_setup(vma);
606 return 0;
607 }
Benjamin Herrenschmidte9f82cb2008-10-14 11:55:31 +1100608 offset += hose->isa_mem_phys;
609 } else {
610 unsigned long io_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
611 unsigned long roffset = offset + io_offset;
612 rp = &hose->io_resource;
613 if (!(rp->flags & IORESOURCE_IO))
614 return -ENXIO;
615 if (roffset < rp->start || (roffset + size) > rp->end)
616 return -ENXIO;
617 offset += hose->io_base_phys;
618 }
619 pr_debug(" -> mapping phys %llx\n", (unsigned long long)offset);
620
621 vma->vm_pgoff = offset >> PAGE_SHIFT;
Benjamin Herrenschmidt64b3d0e2008-12-18 19:13:51 +0000622 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
Benjamin Herrenschmidte9f82cb2008-10-14 11:55:31 +1100623 return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
624 vma->vm_end - vma->vm_start,
625 vma->vm_page_prot);
626}
627
Kumar Gala58083da2007-06-27 11:07:51 -0500628void pci_resource_to_user(const struct pci_dev *dev, int bar,
629 const struct resource *rsrc,
630 resource_size_t *start, resource_size_t *end)
631{
632 struct pci_controller *hose = pci_bus_to_host(dev->bus);
633 resource_size_t offset = 0;
634
635 if (hose == NULL)
636 return;
637
638 if (rsrc->flags & IORESOURCE_IO)
639 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
640
641 /* We pass a fully fixed up address to userland for MMIO instead of
642 * a BAR value because X is lame and expects to be able to use that
643 * to pass to /dev/mem !
644 *
645 * That means that we'll have potentially 64 bits values where some
646 * userland apps only expect 32 (like X itself since it thinks only
647 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
648 * 32 bits CHRPs :-(
649 *
650 * Hopefully, the sysfs insterface is immune to that gunk. Once X
651 * has been fixed (and the fix spread enough), we can re-enable the
652 * 2 lines below and pass down a BAR value to userland. In that case
653 * we'll also have to re-enable the matching code in
654 * __pci_mmap_make_offset().
655 *
656 * BenH.
657 */
658#if 0
659 else if (rsrc->flags & IORESOURCE_MEM)
660 offset = hose->pci_mem_offset;
661#endif
662
663 *start = rsrc->start - offset;
664 *end = rsrc->end - offset;
665}
Benjamin Herrenschmidt13dccb92007-12-11 14:48:18 +1100666
667/**
668 * pci_process_bridge_OF_ranges - Parse PCI bridge resources from device tree
669 * @hose: newly allocated pci_controller to be setup
670 * @dev: device node of the host bridge
671 * @primary: set if primary bus (32 bits only, soon to be deprecated)
672 *
673 * This function will parse the "ranges" property of a PCI host bridge device
674 * node and setup the resource mapping of a pci controller based on its
675 * content.
676 *
677 * Life would be boring if it wasn't for a few issues that we have to deal
678 * with here:
679 *
680 * - We can only cope with one IO space range and up to 3 Memory space
681 * ranges. However, some machines (thanks Apple !) tend to split their
682 * space into lots of small contiguous ranges. So we have to coalesce.
683 *
684 * - We can only cope with all memory ranges having the same offset
685 * between CPU addresses and PCI addresses. Unfortunately, some bridges
686 * are setup for a large 1:1 mapping along with a small "window" which
687 * maps PCI address 0 to some arbitrary high address of the CPU space in
688 * order to give access to the ISA memory hole.
689 * The way out of here that I've chosen for now is to always set the
690 * offset based on the first resource found, then override it if we
691 * have a different offset and the previous was set by an ISA hole.
692 *
693 * - Some busses have IO space not starting at 0, which causes trouble with
694 * the way we do our IO resource renumbering. The code somewhat deals with
695 * it for 64 bits but I would expect problems on 32 bits.
696 *
697 * - Some 32 bits platforms such as 4xx can have physical space larger than
698 * 32 bits so we need to use 64 bits values for the parsing
699 */
700void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,
701 struct device_node *dev,
702 int primary)
703{
704 const u32 *ranges;
705 int rlen;
706 int pna = of_n_addr_cells(dev);
707 int np = pna + 5;
708 int memno = 0, isa_hole = -1;
709 u32 pci_space;
710 unsigned long long pci_addr, cpu_addr, pci_next, cpu_next, size;
711 unsigned long long isa_mb = 0;
712 struct resource *res;
713
714 printk(KERN_INFO "PCI host bridge %s %s ranges:\n",
715 dev->full_name, primary ? "(primary)" : "");
716
717 /* Get ranges property */
718 ranges = of_get_property(dev, "ranges", &rlen);
719 if (ranges == NULL)
720 return;
721
722 /* Parse it */
723 while ((rlen -= np * 4) >= 0) {
724 /* Read next ranges element */
725 pci_space = ranges[0];
726 pci_addr = of_read_number(ranges + 1, 2);
727 cpu_addr = of_translate_address(dev, ranges + 3);
728 size = of_read_number(ranges + pna + 3, 2);
729 ranges += np;
Benjamin Herrenschmidte9f82cb2008-10-14 11:55:31 +1100730
731 /* If we failed translation or got a zero-sized region
732 * (some FW try to feed us with non sensical zero sized regions
733 * such as power3 which look like some kind of attempt at exposing
734 * the VGA memory hole)
735 */
Benjamin Herrenschmidt13dccb92007-12-11 14:48:18 +1100736 if (cpu_addr == OF_BAD_ADDR || size == 0)
737 continue;
738
739 /* Now consume following elements while they are contiguous */
740 for (; rlen >= np * sizeof(u32);
741 ranges += np, rlen -= np * 4) {
742 if (ranges[0] != pci_space)
743 break;
744 pci_next = of_read_number(ranges + 1, 2);
745 cpu_next = of_translate_address(dev, ranges + 3);
746 if (pci_next != pci_addr + size ||
747 cpu_next != cpu_addr + size)
748 break;
749 size += of_read_number(ranges + pna + 3, 2);
750 }
751
752 /* Act based on address space type */
753 res = NULL;
754 switch ((pci_space >> 24) & 0x3) {
755 case 1: /* PCI IO space */
756 printk(KERN_INFO
757 " IO 0x%016llx..0x%016llx -> 0x%016llx\n",
758 cpu_addr, cpu_addr + size - 1, pci_addr);
759
760 /* We support only one IO range */
761 if (hose->pci_io_size) {
762 printk(KERN_INFO
763 " \\--> Skipped (too many) !\n");
764 continue;
765 }
766#ifdef CONFIG_PPC32
767 /* On 32 bits, limit I/O space to 16MB */
768 if (size > 0x01000000)
769 size = 0x01000000;
770
771 /* 32 bits needs to map IOs here */
772 hose->io_base_virt = ioremap(cpu_addr, size);
773
774 /* Expect trouble if pci_addr is not 0 */
775 if (primary)
776 isa_io_base =
777 (unsigned long)hose->io_base_virt;
778#endif /* CONFIG_PPC32 */
779 /* pci_io_size and io_base_phys always represent IO
780 * space starting at 0 so we factor in pci_addr
781 */
782 hose->pci_io_size = pci_addr + size;
783 hose->io_base_phys = cpu_addr - pci_addr;
784
785 /* Build resource */
786 res = &hose->io_resource;
787 res->flags = IORESOURCE_IO;
788 res->start = pci_addr;
789 break;
790 case 2: /* PCI Memory space */
Benjamin Herrenschmidt67260ac2008-07-17 15:53:31 +1000791 case 3: /* PCI 64 bits Memory space */
Benjamin Herrenschmidt13dccb92007-12-11 14:48:18 +1100792 printk(KERN_INFO
793 " MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",
794 cpu_addr, cpu_addr + size - 1, pci_addr,
795 (pci_space & 0x40000000) ? "Prefetch" : "");
796
797 /* We support only 3 memory ranges */
798 if (memno >= 3) {
799 printk(KERN_INFO
800 " \\--> Skipped (too many) !\n");
801 continue;
802 }
803 /* Handles ISA memory hole space here */
804 if (pci_addr == 0) {
805 isa_mb = cpu_addr;
806 isa_hole = memno;
807 if (primary || isa_mem_base == 0)
808 isa_mem_base = cpu_addr;
Benjamin Herrenschmidte9f82cb2008-10-14 11:55:31 +1100809 hose->isa_mem_phys = cpu_addr;
810 hose->isa_mem_size = size;
Benjamin Herrenschmidt13dccb92007-12-11 14:48:18 +1100811 }
812
813 /* We get the PCI/Mem offset from the first range or
814 * the, current one if the offset came from an ISA
815 * hole. If they don't match, bugger.
816 */
817 if (memno == 0 ||
818 (isa_hole >= 0 && pci_addr != 0 &&
819 hose->pci_mem_offset == isa_mb))
820 hose->pci_mem_offset = cpu_addr - pci_addr;
821 else if (pci_addr != 0 &&
822 hose->pci_mem_offset != cpu_addr - pci_addr) {
823 printk(KERN_INFO
824 " \\--> Skipped (offset mismatch) !\n");
825 continue;
826 }
827
828 /* Build resource */
829 res = &hose->mem_resources[memno++];
830 res->flags = IORESOURCE_MEM;
831 if (pci_space & 0x40000000)
832 res->flags |= IORESOURCE_PREFETCH;
833 res->start = cpu_addr;
834 break;
835 }
836 if (res != NULL) {
837 res->name = dev->full_name;
838 res->end = res->start + size - 1;
839 res->parent = NULL;
840 res->sibling = NULL;
841 res->child = NULL;
842 }
843 }
844
Benjamin Herrenschmidt8db13a02008-07-31 15:24:13 +1000845 /* If there's an ISA hole and the pci_mem_offset is -not- matching
846 * the ISA hole offset, then we need to remove the ISA hole from
847 * the resource list for that brige
848 */
849 if (isa_hole >= 0 && hose->pci_mem_offset != isa_mb) {
850 unsigned int next = isa_hole + 1;
851 printk(KERN_INFO " Removing ISA hole at 0x%016llx\n", isa_mb);
852 if (next < memno)
853 memmove(&hose->mem_resources[isa_hole],
854 &hose->mem_resources[next],
855 sizeof(struct resource) * (memno - next));
856 hose->mem_resources[--memno].flags = 0;
Benjamin Herrenschmidt13dccb92007-12-11 14:48:18 +1100857 }
858}
Benjamin Herrenschmidtfa462f22007-12-20 14:54:49 +1100859
860/* Decide whether to display the domain number in /proc */
861int pci_proc_domain(struct pci_bus *bus)
862{
863 struct pci_controller *hose = pci_bus_to_host(bus);
Benjamin Herrenschmidt1fd0f522008-10-02 14:12:51 +0000864
Benjamin Herrenschmidtfa462f22007-12-20 14:54:49 +1100865 if (!(ppc_pci_flags & PPC_PCI_ENABLE_PROC_DOMAINS))
866 return 0;
867 if (ppc_pci_flags & PPC_PCI_COMPAT_DOMAIN_0)
868 return hose->global_number != 0;
869 return 1;
Benjamin Herrenschmidtfa462f22007-12-20 14:54:49 +1100870}
871
Benjamin Herrenschmidtfe2d338c2007-12-20 14:54:50 +1100872void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
873 struct resource *res)
874{
875 resource_size_t offset = 0, mask = (resource_size_t)-1;
876 struct pci_controller *hose = pci_bus_to_host(dev->bus);
877
878 if (!hose)
879 return;
880 if (res->flags & IORESOURCE_IO) {
881 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
882 mask = 0xffffffffu;
883 } else if (res->flags & IORESOURCE_MEM)
884 offset = hose->pci_mem_offset;
885
886 region->start = (res->start - offset) & mask;
887 region->end = (res->end - offset) & mask;
888}
889EXPORT_SYMBOL(pcibios_resource_to_bus);
890
891void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
892 struct pci_bus_region *region)
893{
894 resource_size_t offset = 0, mask = (resource_size_t)-1;
895 struct pci_controller *hose = pci_bus_to_host(dev->bus);
896
897 if (!hose)
898 return;
899 if (res->flags & IORESOURCE_IO) {
900 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
901 mask = 0xffffffffu;
902 } else if (res->flags & IORESOURCE_MEM)
903 offset = hose->pci_mem_offset;
904 res->start = (region->start + offset) & mask;
905 res->end = (region->end + offset) & mask;
906}
907EXPORT_SYMBOL(pcibios_bus_to_resource);
Benjamin Herrenschmidtbf5e2ba2007-12-20 14:54:51 +1100908
909/* Fixup a bus resource into a linux resource */
910static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev)
911{
912 struct pci_controller *hose = pci_bus_to_host(dev->bus);
913 resource_size_t offset = 0, mask = (resource_size_t)-1;
914
915 if (res->flags & IORESOURCE_IO) {
916 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
917 mask = 0xffffffffu;
918 } else if (res->flags & IORESOURCE_MEM)
919 offset = hose->pci_mem_offset;
920
921 res->start = (res->start + offset) & mask;
922 res->end = (res->end + offset) & mask;
Benjamin Herrenschmidtbf5e2ba2007-12-20 14:54:51 +1100923}
924
925
926/* This header fixup will do the resource fixup for all devices as they are
927 * probed, but not for bridge ranges
928 */
929static void __devinit pcibios_fixup_resources(struct pci_dev *dev)
930{
931 struct pci_controller *hose = pci_bus_to_host(dev->bus);
932 int i;
933
934 if (!hose) {
935 printk(KERN_ERR "No host bridge for PCI dev %s !\n",
936 pci_name(dev));
937 return;
938 }
939 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
940 struct resource *res = dev->resource + i;
941 if (!res->flags)
942 continue;
Benjamin Herrenschmidt7f172892008-02-29 14:58:03 +1100943 /* On platforms that have PPC_PCI_PROBE_ONLY set, we don't
944 * consider 0 as an unassigned BAR value. It's technically
945 * a valid value, but linux doesn't like it... so when we can
946 * re-assign things, we do so, but if we can't, we keep it
947 * around and hope for the best...
948 */
949 if (res->start == 0 && !(ppc_pci_flags & PPC_PCI_PROBE_ONLY)) {
Benjamin Herrenschmidtbf5e2ba2007-12-20 14:54:51 +1100950 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x] is unassigned\n",
951 pci_name(dev), i,
952 (unsigned long long)res->start,
953 (unsigned long long)res->end,
954 (unsigned int)res->flags);
955 res->end -= res->start;
956 res->start = 0;
957 res->flags |= IORESOURCE_UNSET;
958 continue;
959 }
960
961 pr_debug("PCI:%s Resource %d %016llx-%016llx [%x] fixup...\n",
962 pci_name(dev), i,
963 (unsigned long long)res->start,\
964 (unsigned long long)res->end,
965 (unsigned int)res->flags);
966
967 fixup_resource(res, dev);
Benjamin Herrenschmidtb5561512008-10-13 13:56:31 +0000968
969 pr_debug("PCI:%s %016llx-%016llx\n",
970 pci_name(dev),
971 (unsigned long long)res->start,
972 (unsigned long long)res->end);
Benjamin Herrenschmidtbf5e2ba2007-12-20 14:54:51 +1100973 }
974
975 /* Call machine specific resource fixup */
976 if (ppc_md.pcibios_fixup_resources)
977 ppc_md.pcibios_fixup_resources(dev);
978}
979DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
980
Benjamin Herrenschmidtb5561512008-10-13 13:56:31 +0000981/* This function tries to figure out if a bridge resource has been initialized
982 * by the firmware or not. It doesn't have to be absolutely bullet proof, but
983 * things go more smoothly when it gets it right. It should covers cases such
984 * as Apple "closed" bridge resources and bare-metal pSeries unassigned bridges
985 */
986static int __devinit pcibios_uninitialized_bridge_resource(struct pci_bus *bus,
987 struct resource *res)
Benjamin Herrenschmidtbf5e2ba2007-12-20 14:54:51 +1100988{
Benjamin Herrenschmidtbe8cbcd2007-12-20 14:55:04 +1100989 struct pci_controller *hose = pci_bus_to_host(bus);
Benjamin Herrenschmidtbf5e2ba2007-12-20 14:54:51 +1100990 struct pci_dev *dev = bus->self;
Benjamin Herrenschmidtb5561512008-10-13 13:56:31 +0000991 resource_size_t offset;
992 u16 command;
993 int i;
994
995 /* We don't do anything if PCI_PROBE_ONLY is set */
996 if (ppc_pci_flags & PPC_PCI_PROBE_ONLY)
997 return 0;
998
999 /* Job is a bit different between memory and IO */
1000 if (res->flags & IORESOURCE_MEM) {
1001 /* If the BAR is non-0 (res != pci_mem_offset) then it's probably been
1002 * initialized by somebody
1003 */
1004 if (res->start != hose->pci_mem_offset)
1005 return 0;
1006
1007 /* The BAR is 0, let's check if memory decoding is enabled on
1008 * the bridge. If not, we consider it unassigned
1009 */
1010 pci_read_config_word(dev, PCI_COMMAND, &command);
1011 if ((command & PCI_COMMAND_MEMORY) == 0)
1012 return 1;
1013
1014 /* Memory decoding is enabled and the BAR is 0. If any of the bridge
1015 * resources covers that starting address (0 then it's good enough for
1016 * us for memory
1017 */
1018 for (i = 0; i < 3; i++) {
1019 if ((hose->mem_resources[i].flags & IORESOURCE_MEM) &&
1020 hose->mem_resources[i].start == hose->pci_mem_offset)
1021 return 0;
1022 }
1023
1024 /* Well, it starts at 0 and we know it will collide so we may as
1025 * well consider it as unassigned. That covers the Apple case.
1026 */
1027 return 1;
1028 } else {
1029 /* If the BAR is non-0, then we consider it assigned */
1030 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
1031 if (((res->start - offset) & 0xfffffffful) != 0)
1032 return 0;
1033
1034 /* Here, we are a bit different than memory as typically IO space
1035 * starting at low addresses -is- valid. What we do instead if that
1036 * we consider as unassigned anything that doesn't have IO enabled
1037 * in the PCI command register, and that's it.
1038 */
1039 pci_read_config_word(dev, PCI_COMMAND, &command);
1040 if (command & PCI_COMMAND_IO)
1041 return 0;
1042
1043 /* It's starting at 0 and IO is disabled in the bridge, consider
1044 * it unassigned
1045 */
1046 return 1;
1047 }
1048}
1049
1050/* Fixup resources of a PCI<->PCI bridge */
1051static void __devinit pcibios_fixup_bridge(struct pci_bus *bus)
1052{
1053 struct resource *res;
1054 int i;
1055
1056 struct pci_dev *dev = bus->self;
1057
1058 for (i = 0; i < PCI_BUS_NUM_RESOURCES; ++i) {
1059 if ((res = bus->resource[i]) == NULL)
1060 continue;
1061 if (!res->flags)
1062 continue;
1063 if (i >= 3 && bus->self->transparent)
1064 continue;
1065
1066 pr_debug("PCI:%s Bus rsrc %d %016llx-%016llx [%x] fixup...\n",
1067 pci_name(dev), i,
1068 (unsigned long long)res->start,\
1069 (unsigned long long)res->end,
1070 (unsigned int)res->flags);
1071
1072 /* Perform fixup */
1073 fixup_resource(res, dev);
1074
1075 /* Try to detect uninitialized P2P bridge resources,
1076 * and clear them out so they get re-assigned later
1077 */
1078 if (pcibios_uninitialized_bridge_resource(bus, res)) {
1079 res->flags = 0;
1080 pr_debug("PCI:%s (unassigned)\n", pci_name(dev));
1081 } else {
1082
1083 pr_debug("PCI:%s %016llx-%016llx\n",
1084 pci_name(dev),
1085 (unsigned long long)res->start,
1086 (unsigned long long)res->end);
1087 }
1088 }
1089}
1090
Benjamin Herrenschmidt8b8da352008-10-27 19:48:37 +00001091void __devinit pcibios_setup_bus_self(struct pci_bus *bus)
1092{
Benjamin Herrenschmidt7eef4402008-10-27 19:48:56 +00001093 /* Fix up the bus resources for P2P bridges */
Benjamin Herrenschmidt8b8da352008-10-27 19:48:37 +00001094 if (bus->self != NULL)
1095 pcibios_fixup_bridge(bus);
1096
1097 /* Platform specific bus fixups. This is currently only used
Benjamin Herrenschmidt7eef4402008-10-27 19:48:56 +00001098 * by fsl_pci and I'm hoping to get rid of it at some point
Benjamin Herrenschmidt8b8da352008-10-27 19:48:37 +00001099 */
1100 if (ppc_md.pcibios_fixup_bus)
1101 ppc_md.pcibios_fixup_bus(bus);
1102
1103 /* Setup bus DMA mappings */
1104 if (ppc_md.pci_dma_bus_setup)
1105 ppc_md.pci_dma_bus_setup(bus);
1106}
1107
Benjamin Herrenschmidt7eef4402008-10-27 19:48:56 +00001108void __devinit pcibios_setup_bus_devices(struct pci_bus *bus)
1109{
1110 struct pci_dev *dev;
1111
1112 pr_debug("PCI: Fixup bus devices %d (%s)\n",
1113 bus->number, bus->self ? pci_name(bus->self) : "PHB");
1114
1115 list_for_each_entry(dev, &bus->devices, bus_list) {
1116 struct dev_archdata *sd = &dev->dev.archdata;
1117
1118 /* Setup OF node pointer in archdata */
1119 sd->of_node = pci_device_to_OF_node(dev);
1120
1121 /* Fixup NUMA node as it may not be setup yet by the generic
1122 * code and is needed by the DMA init
1123 */
1124 set_dev_node(&dev->dev, pcibus_to_node(dev->bus));
1125
1126 /* Hook up default DMA ops */
1127 sd->dma_ops = pci_dma_ops;
1128 sd->dma_data = (void *)PCI_DRAM_OFFSET;
1129
1130 /* Additional platform DMA/iommu setup */
1131 if (ppc_md.pci_dma_dev_setup)
1132 ppc_md.pci_dma_dev_setup(dev);
1133
1134 /* Read default IRQs and fixup if necessary */
1135 pci_read_irq_line(dev);
1136 if (ppc_md.pci_irq_fixup)
1137 ppc_md.pci_irq_fixup(dev);
1138 }
1139}
1140
Benjamin Herrenschmidtbf5e2ba2007-12-20 14:54:51 +11001141void __devinit pcibios_fixup_bus(struct pci_bus *bus)
1142{
1143 /* When called from the generic PCI probe, read PCI<->PCI bridge
Benjamin Herrenschmidt7eef4402008-10-27 19:48:56 +00001144 * bases. This is -not- called when generating the PCI tree from
Benjamin Herrenschmidt8b8da352008-10-27 19:48:37 +00001145 * the OF device-tree.
Benjamin Herrenschmidtbf5e2ba2007-12-20 14:54:51 +11001146 */
1147 if (bus->self != NULL)
1148 pci_read_bridge_bases(bus);
Benjamin Herrenschmidt8b8da352008-10-27 19:48:37 +00001149
1150 /* Now fixup the bus bus */
1151 pcibios_setup_bus_self(bus);
1152
1153 /* Now fixup devices on that bus */
1154 pcibios_setup_bus_devices(bus);
Benjamin Herrenschmidtbf5e2ba2007-12-20 14:54:51 +11001155}
1156EXPORT_SYMBOL(pcibios_fixup_bus);
1157
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001158static int skip_isa_ioresource_align(struct pci_dev *dev)
1159{
1160 if ((ppc_pci_flags & PPC_PCI_CAN_SKIP_ISA_ALIGN) &&
1161 !(dev->bus->bridge_ctl & PCI_BRIDGE_CTL_ISA))
1162 return 1;
1163 return 0;
1164}
1165
1166/*
1167 * We need to avoid collisions with `mirrored' VGA ports
1168 * and other strange ISA hardware, so we always want the
1169 * addresses to be allocated in the 0x000-0x0ff region
1170 * modulo 0x400.
1171 *
1172 * Why? Because some silly external IO cards only decode
1173 * the low 10 bits of the IO address. The 0x00-0xff region
1174 * is reserved for motherboard devices that decode all 16
1175 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
1176 * but we want to try to avoid allocating at 0x2900-0x2bff
1177 * which might have be mirrored at 0x0100-0x03ff..
1178 */
1179void pcibios_align_resource(void *data, struct resource *res,
1180 resource_size_t size, resource_size_t align)
1181{
1182 struct pci_dev *dev = data;
1183
1184 if (res->flags & IORESOURCE_IO) {
1185 resource_size_t start = res->start;
1186
1187 if (skip_isa_ioresource_align(dev))
1188 return;
1189 if (start & 0x300) {
1190 start = (start + 0x3ff) & ~0x3ff;
1191 res->start = start;
1192 }
1193 }
1194}
1195EXPORT_SYMBOL(pcibios_align_resource);
1196
1197/*
1198 * Reparent resource children of pr that conflict with res
1199 * under res, and make res replace those children.
1200 */
1201static int __init reparent_resources(struct resource *parent,
1202 struct resource *res)
1203{
1204 struct resource *p, **pp;
1205 struct resource **firstpp = NULL;
1206
1207 for (pp = &parent->child; (p = *pp) != NULL; pp = &p->sibling) {
1208 if (p->end < res->start)
1209 continue;
1210 if (res->end < p->start)
1211 break;
1212 if (p->start < res->start || p->end > res->end)
1213 return -1; /* not completely contained */
1214 if (firstpp == NULL)
1215 firstpp = pp;
1216 }
1217 if (firstpp == NULL)
1218 return -1; /* didn't find any conflicting entries? */
1219 res->parent = parent;
1220 res->child = *firstpp;
1221 res->sibling = *pp;
1222 *firstpp = res;
1223 *pp = NULL;
1224 for (p = res->child; p != NULL; p = p->sibling) {
1225 p->parent = res;
Benjamin Herrenschmidtb0494bc2008-10-27 19:48:22 +00001226 pr_debug("PCI: Reparented %s [%llx..%llx] under %s\n",
1227 p->name,
1228 (unsigned long long)p->start,
1229 (unsigned long long)p->end, res->name);
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001230 }
1231 return 0;
1232}
1233
1234/*
1235 * Handle resources of PCI devices. If the world were perfect, we could
1236 * just allocate all the resource regions and do nothing more. It isn't.
1237 * On the other hand, we cannot just re-allocate all devices, as it would
1238 * require us to know lots of host bridge internals. So we attempt to
1239 * keep as much of the original configuration as possible, but tweak it
1240 * when it's found to be wrong.
1241 *
1242 * Known BIOS problems we have to work around:
1243 * - I/O or memory regions not configured
1244 * - regions configured, but not enabled in the command register
1245 * - bogus I/O addresses above 64K used
1246 * - expansion ROMs left enabled (this may sound harmless, but given
1247 * the fact the PCI specs explicitly allow address decoders to be
1248 * shared between expansion ROMs and other resource regions, it's
1249 * at least dangerous)
1250 *
1251 * Our solution:
1252 * (1) Allocate resources for all buses behind PCI-to-PCI bridges.
1253 * This gives us fixed barriers on where we can allocate.
1254 * (2) Allocate resources for all enabled devices. If there is
1255 * a collision, just mark the resource as unallocated. Also
1256 * disable expansion ROMs during this step.
1257 * (3) Try to allocate resources for disabled devices. If the
1258 * resources were assigned correctly, everything goes well,
1259 * if they weren't, they won't disturb allocation of other
1260 * resources.
1261 * (4) Assign new addresses to resources which were either
1262 * not configured at all or misconfigured. If explicitly
1263 * requested by the user, configure expansion ROM address
1264 * as well.
1265 */
1266
Nathan Fontenote90a1312008-10-27 19:48:17 +00001267void pcibios_allocate_bus_resources(struct pci_bus *bus)
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001268{
Nathan Fontenote90a1312008-10-27 19:48:17 +00001269 struct pci_bus *b;
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001270 int i;
1271 struct resource *res, *pr;
1272
Benjamin Herrenschmidtb5ae5f92008-10-27 19:48:44 +00001273 pr_debug("PCI: Allocating bus resources for %04x:%02x...\n",
1274 pci_domain_nr(bus), bus->number);
1275
Nathan Fontenote90a1312008-10-27 19:48:17 +00001276 for (i = 0; i < PCI_BUS_NUM_RESOURCES; ++i) {
1277 if ((res = bus->resource[i]) == NULL || !res->flags
Benjamin Herrenschmidtb5ae5f92008-10-27 19:48:44 +00001278 || res->start > res->end || res->parent)
Nathan Fontenote90a1312008-10-27 19:48:17 +00001279 continue;
1280 if (bus->parent == NULL)
1281 pr = (res->flags & IORESOURCE_IO) ?
1282 &ioport_resource : &iomem_resource;
1283 else {
1284 /* Don't bother with non-root busses when
1285 * re-assigning all resources. We clear the
1286 * resource flags as if they were colliding
1287 * and as such ensure proper re-allocation
1288 * later.
1289 */
1290 if (ppc_pci_flags & PPC_PCI_REASSIGN_ALL_RSRC)
1291 goto clear_resource;
1292 pr = pci_find_parent_resource(bus->self, res);
1293 if (pr == res) {
1294 /* this happens when the generic PCI
1295 * code (wrongly) decides that this
1296 * bridge is transparent -- paulus
1297 */
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001298 continue;
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001299 }
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001300 }
Nathan Fontenote90a1312008-10-27 19:48:17 +00001301
Benjamin Herrenschmidtb0494bc2008-10-27 19:48:22 +00001302 pr_debug("PCI: %s (bus %d) bridge rsrc %d: %016llx-%016llx "
1303 "[0x%x], parent %p (%s)\n",
1304 bus->self ? pci_name(bus->self) : "PHB",
1305 bus->number, i,
1306 (unsigned long long)res->start,
1307 (unsigned long long)res->end,
1308 (unsigned int)res->flags,
1309 pr, (pr && pr->name) ? pr->name : "nil");
Nathan Fontenote90a1312008-10-27 19:48:17 +00001310
1311 if (pr && !(pr->flags & IORESOURCE_UNSET)) {
1312 if (request_resource(pr, res) == 0)
1313 continue;
1314 /*
1315 * Must be a conflict with an existing entry.
1316 * Move that entry (or entries) under the
1317 * bridge resource and try again.
1318 */
1319 if (reparent_resources(pr, res) == 0)
1320 continue;
1321 }
1322 printk(KERN_WARNING "PCI: Cannot allocate resource region "
1323 "%d of PCI bridge %d, will remap\n", i, bus->number);
1324clear_resource:
1325 res->flags = 0;
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001326 }
Nathan Fontenote90a1312008-10-27 19:48:17 +00001327
1328 list_for_each_entry(b, &bus->children, node)
1329 pcibios_allocate_bus_resources(b);
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001330}
1331
Paul Mackerras533b1922007-12-31 10:04:15 +11001332static inline void __devinit alloc_resource(struct pci_dev *dev, int idx)
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001333{
1334 struct resource *pr, *r = &dev->resource[idx];
1335
Benjamin Herrenschmidtb0494bc2008-10-27 19:48:22 +00001336 pr_debug("PCI: Allocating %s: Resource %d: %016llx..%016llx [%x]\n",
1337 pci_name(dev), idx,
1338 (unsigned long long)r->start,
1339 (unsigned long long)r->end,
1340 (unsigned int)r->flags);
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001341
1342 pr = pci_find_parent_resource(dev, r);
1343 if (!pr || (pr->flags & IORESOURCE_UNSET) ||
1344 request_resource(pr, r) < 0) {
1345 printk(KERN_WARNING "PCI: Cannot allocate resource region %d"
1346 " of device %s, will remap\n", idx, pci_name(dev));
1347 if (pr)
Benjamin Herrenschmidtb0494bc2008-10-27 19:48:22 +00001348 pr_debug("PCI: parent is %p: %016llx-%016llx [%x]\n",
1349 pr,
1350 (unsigned long long)pr->start,
1351 (unsigned long long)pr->end,
1352 (unsigned int)pr->flags);
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001353 /* We'll assign a new address later */
1354 r->flags |= IORESOURCE_UNSET;
1355 r->end -= r->start;
1356 r->start = 0;
1357 }
1358}
1359
1360static void __init pcibios_allocate_resources(int pass)
1361{
1362 struct pci_dev *dev = NULL;
1363 int idx, disabled;
1364 u16 command;
1365 struct resource *r;
1366
1367 for_each_pci_dev(dev) {
1368 pci_read_config_word(dev, PCI_COMMAND, &command);
1369 for (idx = 0; idx < 6; idx++) {
1370 r = &dev->resource[idx];
1371 if (r->parent) /* Already allocated */
1372 continue;
1373 if (!r->flags || (r->flags & IORESOURCE_UNSET))
1374 continue; /* Not assigned at all */
1375 if (r->flags & IORESOURCE_IO)
1376 disabled = !(command & PCI_COMMAND_IO);
1377 else
1378 disabled = !(command & PCI_COMMAND_MEMORY);
Paul Mackerras533b1922007-12-31 10:04:15 +11001379 if (pass == disabled)
1380 alloc_resource(dev, idx);
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001381 }
1382 if (pass)
1383 continue;
1384 r = &dev->resource[PCI_ROM_RESOURCE];
1385 if (r->flags & IORESOURCE_ROM_ENABLE) {
1386 /* Turn the ROM off, leave the resource region,
1387 * but keep it unregistered.
1388 */
1389 u32 reg;
Benjamin Herrenschmidtb0494bc2008-10-27 19:48:22 +00001390 pr_debug("PCI: Switching off ROM of %s\n",
1391 pci_name(dev));
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001392 r->flags &= ~IORESOURCE_ROM_ENABLE;
1393 pci_read_config_dword(dev, dev->rom_base_reg, &reg);
1394 pci_write_config_dword(dev, dev->rom_base_reg,
1395 reg & ~PCI_ROM_ADDRESS_ENABLE);
1396 }
1397 }
1398}
1399
Benjamin Herrenschmidtc1f34302008-11-11 17:45:52 +00001400static void __init pcibios_reserve_legacy_regions(struct pci_bus *bus)
1401{
1402 struct pci_controller *hose = pci_bus_to_host(bus);
1403 resource_size_t offset;
1404 struct resource *res, *pres;
1405 int i;
1406
1407 pr_debug("Reserving legacy ranges for domain %04x\n", pci_domain_nr(bus));
1408
1409 /* Check for IO */
1410 if (!(hose->io_resource.flags & IORESOURCE_IO))
1411 goto no_io;
1412 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
1413 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1414 BUG_ON(res == NULL);
1415 res->name = "Legacy IO";
1416 res->flags = IORESOURCE_IO;
1417 res->start = offset;
1418 res->end = (offset + 0xfff) & 0xfffffffful;
1419 pr_debug("Candidate legacy IO: %pR\n", res);
1420 if (request_resource(&hose->io_resource, res)) {
1421 printk(KERN_DEBUG
1422 "PCI %04x:%02x Cannot reserve Legacy IO %pR\n",
1423 pci_domain_nr(bus), bus->number, res);
1424 kfree(res);
1425 }
1426
1427 no_io:
1428 /* Check for memory */
1429 offset = hose->pci_mem_offset;
1430 pr_debug("hose mem offset: %016llx\n", (unsigned long long)offset);
1431 for (i = 0; i < 3; i++) {
1432 pres = &hose->mem_resources[i];
1433 if (!(pres->flags & IORESOURCE_MEM))
1434 continue;
1435 pr_debug("hose mem res: %pR\n", pres);
1436 if ((pres->start - offset) <= 0xa0000 &&
1437 (pres->end - offset) >= 0xbffff)
1438 break;
1439 }
1440 if (i >= 3)
1441 return;
1442 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
1443 BUG_ON(res == NULL);
1444 res->name = "Legacy VGA memory";
1445 res->flags = IORESOURCE_MEM;
1446 res->start = 0xa0000 + offset;
1447 res->end = 0xbffff + offset;
1448 pr_debug("Candidate VGA memory: %pR\n", res);
1449 if (request_resource(pres, res)) {
1450 printk(KERN_DEBUG
1451 "PCI %04x:%02x Cannot reserve VGA memory %pR\n",
1452 pci_domain_nr(bus), bus->number, res);
1453 kfree(res);
1454 }
1455}
1456
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001457void __init pcibios_resource_survey(void)
1458{
Nathan Fontenote90a1312008-10-27 19:48:17 +00001459 struct pci_bus *b;
1460
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001461 /* Allocate and assign resources. If we re-assign everything, then
1462 * we skip the allocate phase
1463 */
Nathan Fontenote90a1312008-10-27 19:48:17 +00001464 list_for_each_entry(b, &pci_root_buses, node)
1465 pcibios_allocate_bus_resources(b);
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001466
1467 if (!(ppc_pci_flags & PPC_PCI_REASSIGN_ALL_RSRC)) {
1468 pcibios_allocate_resources(0);
1469 pcibios_allocate_resources(1);
1470 }
1471
Benjamin Herrenschmidtc1f34302008-11-11 17:45:52 +00001472 /* Before we start assigning unassigned resource, we try to reserve
1473 * the low IO area and the VGA memory area if they intersect the
1474 * bus available resources to avoid allocating things on top of them
1475 */
1476 if (!(ppc_pci_flags & PPC_PCI_PROBE_ONLY)) {
1477 list_for_each_entry(b, &pci_root_buses, node)
1478 pcibios_reserve_legacy_regions(b);
1479 }
1480
1481 /* Now, if the platform didn't decide to blindly trust the firmware,
1482 * we proceed to assigning things that were left unassigned
1483 */
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001484 if (!(ppc_pci_flags & PPC_PCI_PROBE_ONLY)) {
Wolfram Sanga77acda2009-03-09 06:39:01 +00001485 pr_debug("PCI: Assigning unassigned resources...\n");
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001486 pci_assign_unassigned_resources();
1487 }
1488
1489 /* Call machine dependent fixup */
1490 if (ppc_md.pcibios_fixup)
1491 ppc_md.pcibios_fixup();
1492}
1493
1494#ifdef CONFIG_HOTPLUG
Benjamin Herrenschmidt8b8da352008-10-27 19:48:37 +00001495
Benjamin Herrenschmidtfd6852c2008-10-27 19:48:52 +00001496/* This is used by the PCI hotplug driver to allocate resource
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001497 * of newly plugged busses. We can try to consolidate with the
Benjamin Herrenschmidtfd6852c2008-10-27 19:48:52 +00001498 * rest of the code later, for now, keep it as-is as our main
1499 * resource allocation function doesn't deal with sub-trees yet.
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001500 */
1501void __devinit pcibios_claim_one_bus(struct pci_bus *bus)
1502{
1503 struct pci_dev *dev;
1504 struct pci_bus *child_bus;
1505
1506 list_for_each_entry(dev, &bus->devices, bus_list) {
1507 int i;
1508
1509 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1510 struct resource *r = &dev->resource[i];
1511
1512 if (r->parent || !r->start || !r->flags)
1513 continue;
Benjamin Herrenschmidtfd6852c2008-10-27 19:48:52 +00001514
1515 pr_debug("PCI: Claiming %s: "
1516 "Resource %d: %016llx..%016llx [%x]\n",
1517 pci_name(dev), i,
1518 (unsigned long long)r->start,
1519 (unsigned long long)r->end,
1520 (unsigned int)r->flags);
1521
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001522 pci_claim_resource(dev, i);
1523 }
1524 }
1525
1526 list_for_each_entry(child_bus, &bus->children, node)
1527 pcibios_claim_one_bus(child_bus);
1528}
1529EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
Benjamin Herrenschmidtfd6852c2008-10-27 19:48:52 +00001530
1531
1532/* pcibios_finish_adding_to_bus
1533 *
1534 * This is to be called by the hotplug code after devices have been
1535 * added to a bus, this include calling it for a PHB that is just
1536 * being added
1537 */
1538void pcibios_finish_adding_to_bus(struct pci_bus *bus)
1539{
1540 pr_debug("PCI: Finishing adding to hotplug bus %04x:%02x\n",
1541 pci_domain_nr(bus), bus->number);
1542
1543 /* Allocate bus and devices resources */
1544 pcibios_allocate_bus_resources(bus);
1545 pcibios_claim_one_bus(bus);
1546
1547 /* Add new devices to global lists. Register in proc, sysfs. */
1548 pci_bus_add_devices(bus);
1549
1550 /* Fixup EEH */
1551 eeh_add_device_tree_late(bus);
1552}
1553EXPORT_SYMBOL_GPL(pcibios_finish_adding_to_bus);
1554
Benjamin Herrenschmidt3fd94c62007-12-20 14:54:53 +11001555#endif /* CONFIG_HOTPLUG */
Benjamin Herrenschmidt549beb92007-12-20 14:54:57 +11001556
1557int pcibios_enable_device(struct pci_dev *dev, int mask)
1558{
Benjamin Herrenschmidt549beb92007-12-20 14:54:57 +11001559 if (ppc_md.pcibios_enable_device_hook)
1560 if (ppc_md.pcibios_enable_device_hook(dev))
1561 return -EINVAL;
1562
Bjorn Helgaas7cfb5f92008-03-04 11:56:56 -07001563 return pci_enable_resources(dev, mask);
Benjamin Herrenschmidt549beb92007-12-20 14:54:57 +11001564}
Benjamin Herrenschmidt53280322008-10-27 19:48:29 +00001565
1566void __devinit pcibios_setup_phb_resources(struct pci_controller *hose)
1567{
1568 struct pci_bus *bus = hose->bus;
1569 struct resource *res;
1570 int i;
1571
1572 /* Hookup PHB IO resource */
1573 bus->resource[0] = res = &hose->io_resource;
1574
1575 if (!res->flags) {
1576 printk(KERN_WARNING "PCI: I/O resource not set for host"
1577 " bridge %s (domain %d)\n",
1578 hose->dn->full_name, hose->global_number);
1579#ifdef CONFIG_PPC32
1580 /* Workaround for lack of IO resource only on 32-bit */
1581 res->start = (unsigned long)hose->io_base_virt - isa_io_base;
1582 res->end = res->start + IO_SPACE_LIMIT;
1583 res->flags = IORESOURCE_IO;
1584#endif /* CONFIG_PPC32 */
1585 }
1586
1587 pr_debug("PCI: PHB IO resource = %016llx-%016llx [%lx]\n",
1588 (unsigned long long)res->start,
1589 (unsigned long long)res->end,
1590 (unsigned long)res->flags);
1591
1592 /* Hookup PHB Memory resources */
1593 for (i = 0; i < 3; ++i) {
1594 res = &hose->mem_resources[i];
1595 if (!res->flags) {
1596 if (i > 0)
1597 continue;
1598 printk(KERN_ERR "PCI: Memory resource 0 not set for "
1599 "host bridge %s (domain %d)\n",
1600 hose->dn->full_name, hose->global_number);
1601#ifdef CONFIG_PPC32
1602 /* Workaround for lack of MEM resource only on 32-bit */
1603 res->start = hose->pci_mem_offset;
1604 res->end = (resource_size_t)-1LL;
1605 res->flags = IORESOURCE_MEM;
1606#endif /* CONFIG_PPC32 */
1607 }
1608 bus->resource[i+1] = res;
1609
1610 pr_debug("PCI: PHB MEM resource %d = %016llx-%016llx [%lx]\n", i,
1611 (unsigned long long)res->start,
1612 (unsigned long long)res->end,
1613 (unsigned long)res->flags);
1614 }
1615
1616 pr_debug("PCI: PHB MEM offset = %016llx\n",
1617 (unsigned long long)hose->pci_mem_offset);
1618 pr_debug("PCI: PHB IO offset = %08lx\n",
1619 (unsigned long)hose->io_base_virt - _IO_BASE);
1620
1621}
1622