blob: 523f35087e81c00714b0b782f523d68b84c34a1d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Port for PPC64 David Engebretsen, IBM Corp.
3 * Contains common pci routines for ppc64 platform, pSeries and iSeries brands.
4 *
5 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
6 * Rework, based on alpha PCI code.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14#undef DEBUG
15
16#include <linux/config.h>
17#include <linux/kernel.h>
18#include <linux/pci.h>
19#include <linux/string.h>
20#include <linux/init.h>
21#include <linux/bootmem.h>
22#include <linux/mm.h>
23#include <linux/list.h>
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +100024#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include <asm/processor.h>
27#include <asm/io.h>
28#include <asm/prom.h>
29#include <asm/pci-bridge.h>
30#include <asm/byteorder.h>
31#include <asm/irq.h>
32#include <asm/machdep.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100033#include <asm/ppc-pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#ifdef DEBUG
Michael Ellermanf9e4ec52005-11-15 15:16:38 +110036#include <asm/udbg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define DBG(fmt...) udbg_printf(fmt)
38#else
39#define DBG(fmt...)
40#endif
41
42unsigned long pci_probe_only = 1;
Paul Mackerrasf8ef2702005-11-19 20:46:04 +110043int pci_assign_all_buses = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/*
46 * legal IO pages under MAX_ISA_PORT. This is to ensure we don't touch
47 * devices we don't have access to.
48 */
49unsigned long io_page_mask;
50
51EXPORT_SYMBOL(io_page_mask);
52
Paul Mackerras42672922005-09-12 17:17:36 +100053#ifdef CONFIG_PPC_MULTIPLATFORM
54static void fixup_resource(struct resource *res, struct pci_dev *dev);
55static void do_bus_setup(struct pci_bus *bus);
56#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/* pci_io_base -- the base address from which io bars are offsets.
59 * This is the lowest I/O base address (so bar values are always positive),
60 * and it *must* be the start of ISA space if an ISA bus exists because
61 * ISA drivers use hard coded offsets. If no ISA bus exists a dummy
62 * page is mapped and isa_io_limit prevents access to it.
63 */
64unsigned long isa_io_base; /* NULL if no ISA bus */
65EXPORT_SYMBOL(isa_io_base);
66unsigned long pci_io_base;
67EXPORT_SYMBOL(pci_io_base);
68
69void iSeries_pcibios_init(void);
70
71LIST_HEAD(hose_list);
72
73struct dma_mapping_ops pci_dma_ops;
74EXPORT_SYMBOL(pci_dma_ops);
75
76int global_phb_number; /* Global phb counter */
77
78/* Cached ISA bridge dev. */
79struct pci_dev *ppc64_isabridge_dev = NULL;
80
81static void fixup_broken_pcnet32(struct pci_dev* dev)
82{
83 if ((dev->class>>8 == PCI_CLASS_NETWORK_ETHERNET)) {
84 dev->vendor = PCI_VENDOR_ID_AMD;
85 pci_write_config_word(dev, PCI_VENDOR_ID, PCI_VENDOR_ID_AMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 }
87}
88DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TRIDENT, PCI_ANY_ID, fixup_broken_pcnet32);
89
90void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
91 struct resource *res)
92{
93 unsigned long offset = 0;
94 struct pci_controller *hose = pci_bus_to_host(dev->bus);
95
96 if (!hose)
97 return;
98
99 if (res->flags & IORESOURCE_IO)
100 offset = (unsigned long)hose->io_base_virt - pci_io_base;
101
102 if (res->flags & IORESOURCE_MEM)
103 offset = hose->pci_mem_offset;
104
105 region->start = res->start - offset;
106 region->end = res->end - offset;
107}
108
Dominik Brodowski43c34732005-08-04 18:06:21 -0700109void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
110 struct pci_bus_region *region)
111{
112 unsigned long offset = 0;
113 struct pci_controller *hose = pci_bus_to_host(dev->bus);
114
115 if (!hose)
116 return;
117
118 if (res->flags & IORESOURCE_IO)
119 offset = (unsigned long)hose->io_base_virt - pci_io_base;
120
121 if (res->flags & IORESOURCE_MEM)
122 offset = hose->pci_mem_offset;
123
124 res->start = region->start + offset;
125 res->end = region->end + offset;
126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#ifdef CONFIG_HOTPLUG
129EXPORT_SYMBOL(pcibios_resource_to_bus);
Dominik Brodowski43c34732005-08-04 18:06:21 -0700130EXPORT_SYMBOL(pcibios_bus_to_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#endif
132
133/*
134 * We need to avoid collisions with `mirrored' VGA ports
135 * and other strange ISA hardware, so we always want the
136 * addresses to be allocated in the 0x000-0x0ff region
137 * modulo 0x400.
138 *
139 * Why? Because some silly external IO cards only decode
140 * the low 10 bits of the IO address. The 0x00-0xff region
141 * is reserved for motherboard devices that decode all 16
142 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
143 * but we want to try to avoid allocating at 0x2900-0x2bff
144 * which might have be mirrored at 0x0100-0x03ff..
145 */
146void pcibios_align_resource(void *data, struct resource *res,
147 unsigned long size, unsigned long align)
148{
149 struct pci_dev *dev = data;
150 struct pci_controller *hose = pci_bus_to_host(dev->bus);
151 unsigned long start = res->start;
152 unsigned long alignto;
153
154 if (res->flags & IORESOURCE_IO) {
155 unsigned long offset = (unsigned long)hose->io_base_virt -
156 pci_io_base;
157 /* Make sure we start at our min on all hoses */
158 if (start - offset < PCIBIOS_MIN_IO)
159 start = PCIBIOS_MIN_IO + offset;
160
161 /*
162 * Put everything into 0x00-0xff region modulo 0x400
163 */
164 if (start & 0x300)
165 start = (start + 0x3ff) & ~0x3ff;
166
167 } else if (res->flags & IORESOURCE_MEM) {
168 /* Make sure we start at our min on all hoses */
169 if (start - hose->pci_mem_offset < PCIBIOS_MIN_MEM)
170 start = PCIBIOS_MIN_MEM + hose->pci_mem_offset;
171
172 /* Align to multiple of size of minimum base. */
173 alignto = max(0x1000UL, align);
174 start = ALIGN(start, alignto);
175 }
176
177 res->start = start;
178}
179
180static DEFINE_SPINLOCK(hose_spinlock);
181
182/*
183 * pci_controller(phb) initialized common variables.
184 */
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100185static void __devinit pci_setup_pci_controller(struct pci_controller *hose)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 memset(hose, 0, sizeof(struct pci_controller));
188
189 spin_lock(&hose_spinlock);
190 hose->global_number = global_phb_number++;
191 list_add_tail(&hose->list_node, &hose_list);
192 spin_unlock(&hose_spinlock);
193}
194
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100195static void add_linux_pci_domain(struct device_node *dev,
196 struct pci_controller *phb)
197{
198 struct property *of_prop;
199 unsigned int size;
200
201 of_prop = (struct property *)
202 get_property(dev, "linux,pci-domain", &size);
203 if (of_prop != NULL)
204 return;
205 WARN_ON(of_prop && size < sizeof(int));
206 if (of_prop && size < sizeof(int))
207 of_prop = NULL;
208 size = sizeof(struct property) + sizeof(int);
209 if (of_prop == NULL) {
210 if (mem_init_done)
211 of_prop = kmalloc(size, GFP_KERNEL);
212 else
213 of_prop = alloc_bootmem(size);
214 }
215 memset(of_prop, 0, sizeof(struct property));
216 of_prop->name = "linux,pci-domain";
217 of_prop->length = sizeof(int);
218 of_prop->value = (unsigned char *)&of_prop[1];
219 *((int *)of_prop->value) = phb->global_number;
220 prom_add_property(dev, of_prop);
221}
222
223struct pci_controller * pcibios_alloc_controller(struct device_node *dev)
224{
225 struct pci_controller *phb;
226
227 if (mem_init_done)
228 phb = kmalloc(sizeof(struct pci_controller), GFP_KERNEL);
229 else
230 phb = alloc_bootmem(sizeof (struct pci_controller));
231 if (phb == NULL)
232 return NULL;
233 pci_setup_pci_controller(phb);
234 phb->arch_data = dev;
235 phb->is_dynamic = mem_init_done;
236 if (dev)
237 add_linux_pci_domain(dev, phb);
238 return phb;
239}
240
241void pcibios_free_controller(struct pci_controller *phb)
242{
243 if (phb->arch_data) {
244 struct device_node *np = phb->arch_data;
245 int *domain = (int *)get_property(np,
246 "linux,pci-domain", NULL);
247 if (domain)
248 *domain = -1;
249 }
250 if (phb->is_dynamic)
251 kfree(phb);
252}
253
Linas Vepstasfacf0782005-11-03 18:52:01 -0600254void __devinit pcibios_claim_one_bus(struct pci_bus *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 struct pci_dev *dev;
257 struct pci_bus *child_bus;
258
259 list_for_each_entry(dev, &b->devices, bus_list) {
260 int i;
261
262 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
263 struct resource *r = &dev->resource[i];
264
265 if (r->parent || !r->start || !r->flags)
266 continue;
267 pci_claim_resource(dev, i);
268 }
269 }
270
271 list_for_each_entry(child_bus, &b->children, node)
272 pcibios_claim_one_bus(child_bus);
273}
274
275#ifndef CONFIG_PPC_ISERIES
276static void __init pcibios_claim_of_setup(void)
277{
278 struct pci_bus *b;
279
280 list_for_each_entry(b, &pci_root_buses, node)
281 pcibios_claim_one_bus(b);
282}
283#endif
284
Paul Mackerras42672922005-09-12 17:17:36 +1000285#ifdef CONFIG_PPC_MULTIPLATFORM
286static u32 get_int_prop(struct device_node *np, const char *name, u32 def)
287{
288 u32 *prop;
289 int len;
290
291 prop = (u32 *) get_property(np, name, &len);
292 if (prop && len >= 4)
293 return *prop;
294 return def;
295}
296
297static unsigned int pci_parse_of_flags(u32 addr0)
298{
299 unsigned int flags = 0;
300
301 if (addr0 & 0x02000000) {
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000302 flags = IORESOURCE_MEM | PCI_BASE_ADDRESS_SPACE_MEMORY;
303 flags |= (addr0 >> 22) & PCI_BASE_ADDRESS_MEM_TYPE_64;
304 flags |= (addr0 >> 28) & PCI_BASE_ADDRESS_MEM_TYPE_1M;
Paul Mackerras42672922005-09-12 17:17:36 +1000305 if (addr0 & 0x40000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000306 flags |= IORESOURCE_PREFETCH
307 | PCI_BASE_ADDRESS_MEM_PREFETCH;
Paul Mackerras42672922005-09-12 17:17:36 +1000308 } else if (addr0 & 0x01000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000309 flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO;
Paul Mackerras42672922005-09-12 17:17:36 +1000310 return flags;
311}
312
313#define GET_64BIT(prop, i) ((((u64) (prop)[(i)]) << 32) | (prop)[(i)+1])
314
315static void pci_parse_of_addrs(struct device_node *node, struct pci_dev *dev)
316{
317 u64 base, size;
318 unsigned int flags;
319 struct resource *res;
320 u32 *addrs, i;
321 int proplen;
322
323 addrs = (u32 *) get_property(node, "assigned-addresses", &proplen);
324 if (!addrs)
325 return;
326 for (; proplen >= 20; proplen -= 20, addrs += 5) {
327 flags = pci_parse_of_flags(addrs[0]);
328 if (!flags)
329 continue;
330 base = GET_64BIT(addrs, 1);
331 size = GET_64BIT(addrs, 3);
332 if (!size)
333 continue;
334 i = addrs[0] & 0xff;
335 if (PCI_BASE_ADDRESS_0 <= i && i <= PCI_BASE_ADDRESS_5) {
336 res = &dev->resource[(i - PCI_BASE_ADDRESS_0) >> 2];
337 } else if (i == dev->rom_base_reg) {
338 res = &dev->resource[PCI_ROM_RESOURCE];
339 flags |= IORESOURCE_READONLY | IORESOURCE_CACHEABLE;
340 } else {
341 printk(KERN_ERR "PCI: bad cfg reg num 0x%x\n", i);
342 continue;
343 }
344 res->start = base;
345 res->end = base + size - 1;
346 res->flags = flags;
347 res->name = pci_name(dev);
348 fixup_resource(res, dev);
349 }
350}
351
John Roseead83712005-11-04 15:30:56 -0600352struct pci_dev *of_create_pci_dev(struct device_node *node,
353 struct pci_bus *bus, int devfn)
Paul Mackerras42672922005-09-12 17:17:36 +1000354{
355 struct pci_dev *dev;
356 const char *type;
357
358 dev = kmalloc(sizeof(struct pci_dev), GFP_KERNEL);
359 if (!dev)
360 return NULL;
361 type = get_property(node, "device_type", NULL);
362 if (type == NULL)
363 type = "";
364
365 memset(dev, 0, sizeof(struct pci_dev));
366 dev->bus = bus;
367 dev->sysdata = node;
368 dev->dev.parent = bus->bridge;
369 dev->dev.bus = &pci_bus_type;
370 dev->devfn = devfn;
371 dev->multifunction = 0; /* maybe a lie? */
372
373 dev->vendor = get_int_prop(node, "vendor-id", 0xffff);
374 dev->device = get_int_prop(node, "device-id", 0xffff);
375 dev->subsystem_vendor = get_int_prop(node, "subsystem-vendor-id", 0);
376 dev->subsystem_device = get_int_prop(node, "subsystem-id", 0);
377
378 dev->cfg_size = 256; /*pci_cfg_space_size(dev);*/
379
380 sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus),
381 dev->bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn));
382 dev->class = get_int_prop(node, "class-code", 0);
383
384 dev->current_state = 4; /* unknown power state */
385
386 if (!strcmp(type, "pci")) {
387 /* a PCI-PCI bridge */
388 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
389 dev->rom_base_reg = PCI_ROM_ADDRESS1;
390 } else if (!strcmp(type, "cardbus")) {
391 dev->hdr_type = PCI_HEADER_TYPE_CARDBUS;
392 } else {
393 dev->hdr_type = PCI_HEADER_TYPE_NORMAL;
394 dev->rom_base_reg = PCI_ROM_ADDRESS;
395 dev->irq = NO_IRQ;
396 if (node->n_intrs > 0) {
397 dev->irq = node->intrs[0].line;
398 pci_write_config_byte(dev, PCI_INTERRUPT_LINE,
399 dev->irq);
400 }
401 }
402
403 pci_parse_of_addrs(node, dev);
404
405 pci_device_add(dev, bus);
406
407 /* XXX pci_scan_msi_device(dev); */
408
409 return dev;
410}
John Roseead83712005-11-04 15:30:56 -0600411EXPORT_SYMBOL(of_create_pci_dev);
Paul Mackerras42672922005-09-12 17:17:36 +1000412
John Roseead83712005-11-04 15:30:56 -0600413void __devinit of_scan_bus(struct device_node *node,
Paul Mackerras42672922005-09-12 17:17:36 +1000414 struct pci_bus *bus)
415{
416 struct device_node *child = NULL;
417 u32 *reg;
418 int reglen, devfn;
419 struct pci_dev *dev;
420
421 while ((child = of_get_next_child(node, child)) != NULL) {
422 reg = (u32 *) get_property(child, "reg", &reglen);
423 if (reg == NULL || reglen < 20)
424 continue;
425 devfn = (reg[0] >> 8) & 0xff;
426 /* create a new pci_dev for this device */
427 dev = of_create_pci_dev(child, bus, devfn);
428 if (!dev)
429 continue;
430 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
431 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
432 of_scan_pci_bridge(child, dev);
433 }
434
435 do_bus_setup(bus);
436}
John Roseead83712005-11-04 15:30:56 -0600437EXPORT_SYMBOL(of_scan_bus);
Paul Mackerras42672922005-09-12 17:17:36 +1000438
John Roseead83712005-11-04 15:30:56 -0600439void __devinit of_scan_pci_bridge(struct device_node *node,
440 struct pci_dev *dev)
Paul Mackerras42672922005-09-12 17:17:36 +1000441{
442 struct pci_bus *bus;
443 u32 *busrange, *ranges;
444 int len, i, mode;
445 struct resource *res;
446 unsigned int flags;
447 u64 size;
448
449 /* parse bus-range property */
450 busrange = (u32 *) get_property(node, "bus-range", &len);
451 if (busrange == NULL || len != 8) {
452 printk(KERN_ERR "Can't get bus-range for PCI-PCI bridge %s\n",
453 node->full_name);
454 return;
455 }
456 ranges = (u32 *) get_property(node, "ranges", &len);
457 if (ranges == NULL) {
458 printk(KERN_ERR "Can't get ranges for PCI-PCI bridge %s\n",
459 node->full_name);
460 return;
461 }
462
463 bus = pci_add_new_bus(dev->bus, dev, busrange[0]);
464 if (!bus) {
465 printk(KERN_ERR "Failed to create pci bus for %s\n",
466 node->full_name);
467 return;
468 }
469
470 bus->primary = dev->bus->number;
471 bus->subordinate = busrange[1];
472 bus->bridge_ctl = 0;
473 bus->sysdata = node;
474
475 /* parse ranges property */
476 /* PCI #address-cells == 3 and #size-cells == 2 always */
477 res = &dev->resource[PCI_BRIDGE_RESOURCES];
478 for (i = 0; i < PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES; ++i) {
479 res->flags = 0;
480 bus->resource[i] = res;
481 ++res;
482 }
483 i = 1;
484 for (; len >= 32; len -= 32, ranges += 8) {
485 flags = pci_parse_of_flags(ranges[0]);
486 size = GET_64BIT(ranges, 6);
487 if (flags == 0 || size == 0)
488 continue;
489 if (flags & IORESOURCE_IO) {
490 res = bus->resource[0];
491 if (res->flags) {
492 printk(KERN_ERR "PCI: ignoring extra I/O range"
493 " for bridge %s\n", node->full_name);
494 continue;
495 }
496 } else {
497 if (i >= PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES) {
498 printk(KERN_ERR "PCI: too many memory ranges"
499 " for bridge %s\n", node->full_name);
500 continue;
501 }
502 res = bus->resource[i];
503 ++i;
504 }
505 res->start = GET_64BIT(ranges, 1);
506 res->end = res->start + size - 1;
507 res->flags = flags;
508 fixup_resource(res, dev);
509 }
510 sprintf(bus->name, "PCI Bus %04x:%02x", pci_domain_nr(bus),
511 bus->number);
512
513 mode = PCI_PROBE_NORMAL;
514 if (ppc_md.pci_probe_mode)
515 mode = ppc_md.pci_probe_mode(bus);
516 if (mode == PCI_PROBE_DEVTREE)
517 of_scan_bus(node, bus);
518 else if (mode == PCI_PROBE_NORMAL)
519 pci_scan_child_bus(bus);
520}
John Roseead83712005-11-04 15:30:56 -0600521EXPORT_SYMBOL(of_scan_pci_bridge);
Paul Mackerras42672922005-09-12 17:17:36 +1000522#endif /* CONFIG_PPC_MULTIPLATFORM */
523
John Roseead83712005-11-04 15:30:56 -0600524void __devinit scan_phb(struct pci_controller *hose)
Paul Mackerras42672922005-09-12 17:17:36 +1000525{
526 struct pci_bus *bus;
527 struct device_node *node = hose->arch_data;
528 int i, mode;
529 struct resource *res;
530
531 bus = pci_create_bus(NULL, hose->first_busno, hose->ops, node);
532 if (bus == NULL) {
533 printk(KERN_ERR "Failed to create bus for PCI domain %04x\n",
534 hose->global_number);
535 return;
536 }
537 bus->secondary = hose->first_busno;
538 hose->bus = bus;
539
540 bus->resource[0] = res = &hose->io_resource;
541 if (res->flags && request_resource(&ioport_resource, res))
542 printk(KERN_ERR "Failed to request PCI IO region "
543 "on PCI domain %04x\n", hose->global_number);
544
545 for (i = 0; i < 3; ++i) {
546 res = &hose->mem_resources[i];
547 bus->resource[i+1] = res;
548 if (res->flags && request_resource(&iomem_resource, res))
549 printk(KERN_ERR "Failed to request PCI memory region "
550 "on PCI domain %04x\n", hose->global_number);
551 }
552
553 mode = PCI_PROBE_NORMAL;
554#ifdef CONFIG_PPC_MULTIPLATFORM
555 if (ppc_md.pci_probe_mode)
556 mode = ppc_md.pci_probe_mode(bus);
557 if (mode == PCI_PROBE_DEVTREE) {
558 bus->subordinate = hose->last_busno;
559 of_scan_bus(node, bus);
560 }
561#endif /* CONFIG_PPC_MULTIPLATFORM */
562 if (mode == PCI_PROBE_NORMAL)
563 hose->last_busno = bus->subordinate = pci_scan_child_bus(bus);
564 pci_bus_add_devices(bus);
565}
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567static int __init pcibios_init(void)
568{
569 struct pci_controller *hose, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 /* For now, override phys_mem_access_prot. If we need it,
572 * later, we may move that initialization to each ppc_md
573 */
574 ppc_md.phys_mem_access_prot = pci_phys_mem_access_prot;
575
576#ifdef CONFIG_PPC_ISERIES
577 iSeries_pcibios_init();
578#endif
579
580 printk("PCI: Probing PCI hardware\n");
581
582 /* Scan all of the recorded PCI controllers. */
Paul Mackerras42672922005-09-12 17:17:36 +1000583 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
584 scan_phb(hose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586#ifndef CONFIG_PPC_ISERIES
587 if (pci_probe_only)
588 pcibios_claim_of_setup();
589 else
590 /* FIXME: `else' will be removed when
591 pci_assign_unassigned_resources() is able to work
592 correctly with [partially] allocated PCI tree. */
593 pci_assign_unassigned_resources();
594#endif /* !CONFIG_PPC_ISERIES */
595
596 /* Call machine dependent final fixup */
597 if (ppc_md.pcibios_fixup)
598 ppc_md.pcibios_fixup();
599
600 /* Cache the location of the ISA bridge (if we have one) */
601 ppc64_isabridge_dev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
602 if (ppc64_isabridge_dev != NULL)
603 printk("ISA bridge at %s\n", pci_name(ppc64_isabridge_dev));
604
Stephen Rothwellfe360cd2005-11-10 16:07:12 +1100605#ifdef CONFIG_PPC_MULTIPLATFORM
Benjamin Herrenschmidt0f34f492005-11-10 15:04:24 +1100606 /* map in PCI I/O space */
607 phbs_remap_io();
Stephen Rothwellfe360cd2005-11-10 16:07:12 +1100608#endif
Benjamin Herrenschmidt0f34f492005-11-10 15:04:24 +1100609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 printk("PCI: Probing PCI hardware done\n");
611
612 return 0;
613}
614
615subsys_initcall(pcibios_init);
616
617char __init *pcibios_setup(char *str)
618{
619 return str;
620}
621
622int pcibios_enable_device(struct pci_dev *dev, int mask)
623{
624 u16 cmd, oldcmd;
625 int i;
626
627 pci_read_config_word(dev, PCI_COMMAND, &cmd);
628 oldcmd = cmd;
629
630 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
631 struct resource *res = &dev->resource[i];
632
633 /* Only set up the requested stuff */
634 if (!(mask & (1<<i)))
635 continue;
636
637 if (res->flags & IORESOURCE_IO)
638 cmd |= PCI_COMMAND_IO;
639 if (res->flags & IORESOURCE_MEM)
640 cmd |= PCI_COMMAND_MEMORY;
641 }
642
643 if (cmd != oldcmd) {
644 printk(KERN_DEBUG "PCI: Enabling device: (%s), cmd %x\n",
645 pci_name(dev), cmd);
646 /* Enable the appropriate bits in the PCI command register. */
647 pci_write_config_word(dev, PCI_COMMAND, cmd);
648 }
649 return 0;
650}
651
652/*
653 * Return the domain number for this bus.
654 */
655int pci_domain_nr(struct pci_bus *bus)
656{
657#ifdef CONFIG_PPC_ISERIES
658 return 0;
659#else
660 struct pci_controller *hose = pci_bus_to_host(bus);
661
662 return hose->global_number;
663#endif
664}
665
666EXPORT_SYMBOL(pci_domain_nr);
667
668/* Decide whether to display the domain number in /proc */
669int pci_proc_domain(struct pci_bus *bus)
670{
671#ifdef CONFIG_PPC_ISERIES
672 return 0;
673#else
674 struct pci_controller *hose = pci_bus_to_host(bus);
675 return hose->buid;
676#endif
677}
678
679/*
680 * Platform support for /proc/bus/pci/X/Y mmap()s,
681 * modelled on the sparc64 implementation by Dave Miller.
682 * -- paulus.
683 */
684
685/*
686 * Adjust vm_pgoff of VMA such that it is the physical page offset
687 * corresponding to the 32-bit pci bus offset for DEV requested by the user.
688 *
689 * Basically, the user finds the base address for his device which he wishes
690 * to mmap. They read the 32-bit value from the config space base register,
691 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
692 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
693 *
694 * Returns negative error code on failure, zero on success.
695 */
696static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
697 unsigned long *offset,
698 enum pci_mmap_state mmap_state)
699{
700 struct pci_controller *hose = pci_bus_to_host(dev->bus);
701 unsigned long io_offset = 0;
702 int i, res_bit;
703
704 if (hose == 0)
705 return NULL; /* should never happen */
706
707 /* If memory, add on the PCI bridge address offset */
708 if (mmap_state == pci_mmap_mem) {
709 *offset += hose->pci_mem_offset;
710 res_bit = IORESOURCE_MEM;
711 } else {
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000712 io_offset = (unsigned long)hose->io_base_virt - pci_io_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 *offset += io_offset;
714 res_bit = IORESOURCE_IO;
715 }
716
717 /*
718 * Check that the offset requested corresponds to one of the
719 * resources of the device.
720 */
721 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
722 struct resource *rp = &dev->resource[i];
723 int flags = rp->flags;
724
725 /* treat ROM as memory (should be already) */
726 if (i == PCI_ROM_RESOURCE)
727 flags |= IORESOURCE_MEM;
728
729 /* Active and same type? */
730 if ((flags & res_bit) == 0)
731 continue;
732
733 /* In the range of this resource? */
734 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
735 continue;
736
737 /* found it! construct the final physical address */
738 if (mmap_state == pci_mmap_io)
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000739 *offset += hose->io_base_phys - io_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return rp;
741 }
742
743 return NULL;
744}
745
746/*
747 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
748 * device mapping.
749 */
750static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
751 pgprot_t protection,
752 enum pci_mmap_state mmap_state,
753 int write_combine)
754{
755 unsigned long prot = pgprot_val(protection);
756
757 /* Write combine is always 0 on non-memory space mappings. On
758 * memory space, if the user didn't pass 1, we check for a
759 * "prefetchable" resource. This is a bit hackish, but we use
760 * this to workaround the inability of /sysfs to provide a write
761 * combine bit
762 */
763 if (mmap_state != pci_mmap_mem)
764 write_combine = 0;
765 else if (write_combine == 0) {
766 if (rp->flags & IORESOURCE_PREFETCH)
767 write_combine = 1;
768 }
769
770 /* XXX would be nice to have a way to ask for write-through */
771 prot |= _PAGE_NO_CACHE;
772 if (write_combine)
773 prot &= ~_PAGE_GUARDED;
774 else
775 prot |= _PAGE_GUARDED;
776
777 printk("PCI map for %s:%lx, prot: %lx\n", pci_name(dev), rp->start,
778 prot);
779
780 return __pgprot(prot);
781}
782
783/*
784 * This one is used by /dev/mem and fbdev who have no clue about the
785 * PCI device, it tries to find the PCI device first and calls the
786 * above routine
787 */
788pgprot_t pci_phys_mem_access_prot(struct file *file,
Roland Dreier8b150472005-10-28 17:46:18 -0700789 unsigned long pfn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 unsigned long size,
791 pgprot_t protection)
792{
793 struct pci_dev *pdev = NULL;
794 struct resource *found = NULL;
795 unsigned long prot = pgprot_val(protection);
Roland Dreier8b150472005-10-28 17:46:18 -0700796 unsigned long offset = pfn << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 int i;
798
Roland Dreier8b150472005-10-28 17:46:18 -0700799 if (page_is_ram(pfn))
David Gibson1f8d4192005-05-05 16:15:13 -0700800 return __pgprot(prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 prot |= _PAGE_NO_CACHE | _PAGE_GUARDED;
803
804 for_each_pci_dev(pdev) {
805 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
806 struct resource *rp = &pdev->resource[i];
807 int flags = rp->flags;
808
809 /* Active and same type? */
810 if ((flags & IORESOURCE_MEM) == 0)
811 continue;
812 /* In the range of this resource? */
813 if (offset < (rp->start & PAGE_MASK) ||
814 offset > rp->end)
815 continue;
816 found = rp;
817 break;
818 }
819 if (found)
820 break;
821 }
822 if (found) {
823 if (found->flags & IORESOURCE_PREFETCH)
824 prot &= ~_PAGE_GUARDED;
825 pci_dev_put(pdev);
826 }
827
828 DBG("non-PCI map for %lx, prot: %lx\n", offset, prot);
829
830 return __pgprot(prot);
831}
832
833
834/*
835 * Perform the actual remap of the pages for a PCI device mapping, as
836 * appropriate for this architecture. The region in the process to map
837 * is described by vm_start and vm_end members of VMA, the base physical
838 * address is found in vm_pgoff.
839 * The pci device structure is provided so that architectures may make mapping
840 * decisions on a per-device or per-bus basis.
841 *
842 * Returns a negative error code on failure, zero on success.
843 */
844int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
845 enum pci_mmap_state mmap_state,
846 int write_combine)
847{
848 unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
849 struct resource *rp;
850 int ret;
851
852 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
853 if (rp == NULL)
854 return -EINVAL;
855
856 vma->vm_pgoff = offset >> PAGE_SHIFT;
857 vma->vm_flags |= VM_SHM | VM_LOCKED | VM_IO;
858 vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
859 vma->vm_page_prot,
860 mmap_state, write_combine);
861
862 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
863 vma->vm_end - vma->vm_start, vma->vm_page_prot);
864
865 return ret;
866}
867
868#ifdef CONFIG_PPC_MULTIPLATFORM
Yani Ioannouff381d22005-05-17 06:40:51 -0400869static ssize_t pci_show_devspec(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
871 struct pci_dev *pdev;
872 struct device_node *np;
873
874 pdev = to_pci_dev (dev);
875 np = pci_device_to_OF_node(pdev);
876 if (np == NULL || np->full_name == NULL)
877 return 0;
878 return sprintf(buf, "%s", np->full_name);
879}
880static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
881#endif /* CONFIG_PPC_MULTIPLATFORM */
882
883void pcibios_add_platform_entries(struct pci_dev *pdev)
884{
885#ifdef CONFIG_PPC_MULTIPLATFORM
886 device_create_file(&pdev->dev, &dev_attr_devspec);
887#endif /* CONFIG_PPC_MULTIPLATFORM */
888}
889
890#ifdef CONFIG_PPC_MULTIPLATFORM
891
892#define ISA_SPACE_MASK 0x1
893#define ISA_SPACE_IO 0x1
894
895static void __devinit pci_process_ISA_OF_ranges(struct device_node *isa_node,
896 unsigned long phb_io_base_phys,
897 void __iomem * phb_io_base_virt)
898{
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100899 /* Remove these asap */
900
901 struct pci_address {
902 u32 a_hi;
903 u32 a_mid;
904 u32 a_lo;
905 };
906
907 struct isa_address {
908 u32 a_hi;
909 u32 a_lo;
910 };
911
912 struct isa_range {
913 struct isa_address isa_addr;
914 struct pci_address pci_addr;
915 unsigned int size;
916 };
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 struct isa_range *range;
919 unsigned long pci_addr;
920 unsigned int isa_addr;
921 unsigned int size;
922 int rlen = 0;
923
924 range = (struct isa_range *) get_property(isa_node, "ranges", &rlen);
925 if (range == NULL || (rlen < sizeof(struct isa_range))) {
926 printk(KERN_ERR "no ISA ranges or unexpected isa range size,"
927 "mapping 64k\n");
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700928 __ioremap_explicit(phb_io_base_phys,
929 (unsigned long)phb_io_base_virt,
930 0x10000, _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return;
932 }
933
934 /* From "ISA Binding to 1275"
935 * The ranges property is laid out as an array of elements,
936 * each of which comprises:
937 * cells 0 - 1: an ISA address
938 * cells 2 - 4: a PCI address
939 * (size depending on dev->n_addr_cells)
940 * cell 5: the size of the range
941 */
942 if ((range->isa_addr.a_hi && ISA_SPACE_MASK) == ISA_SPACE_IO) {
943 isa_addr = range->isa_addr.a_lo;
944 pci_addr = (unsigned long) range->pci_addr.a_mid << 32 |
945 range->pci_addr.a_lo;
946
947 /* Assume these are both zero */
948 if ((pci_addr != 0) || (isa_addr != 0)) {
949 printk(KERN_ERR "unexpected isa to pci mapping: %s\n",
950 __FUNCTION__);
951 return;
952 }
953
954 size = PAGE_ALIGN(range->size);
955
956 __ioremap_explicit(phb_io_base_phys,
957 (unsigned long) phb_io_base_virt,
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700958 size, _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
960}
961
962void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000963 struct device_node *dev, int prim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000965 unsigned int *ranges, pci_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 unsigned long size;
967 int rlen = 0;
968 int memno = 0;
969 struct resource *res;
970 int np, na = prom_n_addr_cells(dev);
971 unsigned long pci_addr, cpu_phys_addr;
972
973 np = na + 5;
974
975 /* From "PCI Binding to 1275"
976 * The ranges property is laid out as an array of elements,
977 * each of which comprises:
978 * cells 0 - 2: a PCI address
979 * cells 3 or 3+4: a CPU physical address
980 * (size depending on dev->n_addr_cells)
981 * cells 4+5 or 5+6: the size of the range
982 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 ranges = (unsigned int *) get_property(dev, "ranges", &rlen);
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100984 if (ranges == NULL)
985 return;
986 hose->io_base_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 while ((rlen -= np * sizeof(unsigned int)) >= 0) {
988 res = NULL;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000989 pci_space = ranges[0];
990 pci_addr = ((unsigned long)ranges[1] << 32) | ranges[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 cpu_phys_addr = ranges[3];
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000993 if (na >= 2)
994 cpu_phys_addr = (cpu_phys_addr << 32) | ranges[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000996 size = ((unsigned long)ranges[na+3] << 32) | ranges[na+4];
997 ranges += np;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (size == 0)
999 continue;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +10001000
1001 /* Now consume following elements while they are contiguous */
1002 while (rlen >= np * sizeof(unsigned int)) {
1003 unsigned long addr, phys;
1004
1005 if (ranges[0] != pci_space)
1006 break;
1007 addr = ((unsigned long)ranges[1] << 32) | ranges[2];
1008 phys = ranges[3];
1009 if (na >= 2)
1010 phys = (phys << 32) | ranges[4];
1011 if (addr != pci_addr + size ||
1012 phys != cpu_phys_addr + size)
1013 break;
1014
1015 size += ((unsigned long)ranges[na+3] << 32)
1016 | ranges[na+4];
1017 ranges += np;
1018 rlen -= np * sizeof(unsigned int);
1019 }
1020
1021 switch ((pci_space >> 24) & 0x3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 case 1: /* I/O space */
1023 hose->io_base_phys = cpu_phys_addr;
1024 hose->pci_io_size = size;
1025
1026 res = &hose->io_resource;
1027 res->flags = IORESOURCE_IO;
1028 res->start = pci_addr;
1029 DBG("phb%d: IO 0x%lx -> 0x%lx\n", hose->global_number,
1030 res->start, res->start + size - 1);
1031 break;
1032 case 2: /* memory space */
1033 memno = 0;
1034 while (memno < 3 && hose->mem_resources[memno].flags)
1035 ++memno;
1036
1037 if (memno == 0)
1038 hose->pci_mem_offset = cpu_phys_addr - pci_addr;
1039 if (memno < 3) {
1040 res = &hose->mem_resources[memno];
1041 res->flags = IORESOURCE_MEM;
1042 res->start = cpu_phys_addr;
1043 DBG("phb%d: MEM 0x%lx -> 0x%lx\n", hose->global_number,
1044 res->start, res->start + size - 1);
1045 }
1046 break;
1047 }
1048 if (res != NULL) {
1049 res->name = dev->full_name;
1050 res->end = res->start + size - 1;
1051 res->parent = NULL;
1052 res->sibling = NULL;
1053 res->child = NULL;
1054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 }
1056}
1057
1058void __init pci_setup_phb_io(struct pci_controller *hose, int primary)
1059{
1060 unsigned long size = hose->pci_io_size;
1061 unsigned long io_virt_offset;
1062 struct resource *res;
1063 struct device_node *isa_dn;
1064
1065 hose->io_base_virt = reserve_phb_iospace(size);
1066 DBG("phb%d io_base_phys 0x%lx io_base_virt 0x%lx\n",
1067 hose->global_number, hose->io_base_phys,
1068 (unsigned long) hose->io_base_virt);
1069
1070 if (primary) {
1071 pci_io_base = (unsigned long)hose->io_base_virt;
1072 isa_dn = of_find_node_by_type(NULL, "isa");
1073 if (isa_dn) {
1074 isa_io_base = pci_io_base;
1075 pci_process_ISA_OF_ranges(isa_dn, hose->io_base_phys,
1076 hose->io_base_virt);
1077 of_node_put(isa_dn);
1078 /* Allow all IO */
1079 io_page_mask = -1;
1080 }
1081 }
1082
1083 io_virt_offset = (unsigned long)hose->io_base_virt - pci_io_base;
1084 res = &hose->io_resource;
1085 res->start += io_virt_offset;
1086 res->end += io_virt_offset;
1087}
1088
1089void __devinit pci_setup_phb_io_dynamic(struct pci_controller *hose,
1090 int primary)
1091{
1092 unsigned long size = hose->pci_io_size;
1093 unsigned long io_virt_offset;
1094 struct resource *res;
1095
1096 hose->io_base_virt = __ioremap(hose->io_base_phys, size,
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -07001097 _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 DBG("phb%d io_base_phys 0x%lx io_base_virt 0x%lx\n",
1099 hose->global_number, hose->io_base_phys,
1100 (unsigned long) hose->io_base_virt);
1101
1102 if (primary)
1103 pci_io_base = (unsigned long)hose->io_base_virt;
1104
1105 io_virt_offset = (unsigned long)hose->io_base_virt - pci_io_base;
1106 res = &hose->io_resource;
1107 res->start += io_virt_offset;
1108 res->end += io_virt_offset;
1109}
1110
1111
1112static int get_bus_io_range(struct pci_bus *bus, unsigned long *start_phys,
1113 unsigned long *start_virt, unsigned long *size)
1114{
1115 struct pci_controller *hose = pci_bus_to_host(bus);
1116 struct pci_bus_region region;
1117 struct resource *res;
1118
1119 if (bus->self) {
1120 res = bus->resource[0];
1121 pcibios_resource_to_bus(bus->self, &region, res);
1122 *start_phys = hose->io_base_phys + region.start;
1123 *start_virt = (unsigned long) hose->io_base_virt +
1124 region.start;
1125 if (region.end > region.start)
1126 *size = region.end - region.start + 1;
1127 else {
1128 printk("%s(): unexpected region 0x%lx->0x%lx\n",
1129 __FUNCTION__, region.start, region.end);
1130 return 1;
1131 }
1132
1133 } else {
1134 /* Root Bus */
1135 res = &hose->io_resource;
1136 *start_phys = hose->io_base_phys;
1137 *start_virt = (unsigned long) hose->io_base_virt;
1138 if (res->end > res->start)
1139 *size = res->end - res->start + 1;
1140 else {
1141 printk("%s(): unexpected region 0x%lx->0x%lx\n",
1142 __FUNCTION__, res->start, res->end);
1143 return 1;
1144 }
1145 }
1146
1147 return 0;
1148}
1149
1150int unmap_bus_range(struct pci_bus *bus)
1151{
1152 unsigned long start_phys;
1153 unsigned long start_virt;
1154 unsigned long size;
1155
1156 if (!bus) {
1157 printk(KERN_ERR "%s() expected bus\n", __FUNCTION__);
1158 return 1;
1159 }
1160
1161 if (get_bus_io_range(bus, &start_phys, &start_virt, &size))
1162 return 1;
1163 if (iounmap_explicit((void __iomem *) start_virt, size))
1164 return 1;
1165
1166 return 0;
1167}
1168EXPORT_SYMBOL(unmap_bus_range);
1169
1170int remap_bus_range(struct pci_bus *bus)
1171{
1172 unsigned long start_phys;
1173 unsigned long start_virt;
1174 unsigned long size;
1175
1176 if (!bus) {
1177 printk(KERN_ERR "%s() expected bus\n", __FUNCTION__);
1178 return 1;
1179 }
1180
1181
1182 if (get_bus_io_range(bus, &start_phys, &start_virt, &size))
1183 return 1;
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +11001184 if (start_phys == 0)
1185 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 printk("mapping IO %lx -> %lx, size: %lx\n", start_phys, start_virt, size);
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -07001187 if (__ioremap_explicit(start_phys, start_virt, size,
1188 _PAGE_NO_CACHE | _PAGE_GUARDED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 return 1;
1190
1191 return 0;
1192}
1193EXPORT_SYMBOL(remap_bus_range);
1194
1195void phbs_remap_io(void)
1196{
1197 struct pci_controller *hose, *tmp;
1198
1199 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1200 remap_bus_range(hose->bus);
1201}
1202
Paul Mackerras42672922005-09-12 17:17:36 +10001203static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev)
1204{
1205 struct pci_controller *hose = pci_bus_to_host(dev->bus);
1206 unsigned long start, end, mask, offset;
1207
1208 if (res->flags & IORESOURCE_IO) {
1209 offset = (unsigned long)hose->io_base_virt - pci_io_base;
1210
1211 start = res->start += offset;
1212 end = res->end += offset;
1213
1214 /* Need to allow IO access to pages that are in the
1215 ISA range */
1216 if (start < MAX_ISA_PORT) {
1217 if (end > MAX_ISA_PORT)
1218 end = MAX_ISA_PORT;
1219
1220 start >>= PAGE_SHIFT;
1221 end >>= PAGE_SHIFT;
1222
1223 /* get the range of pages for the map */
1224 mask = ((1 << (end+1)) - 1) ^ ((1 << start) - 1);
1225 io_page_mask |= mask;
1226 }
1227 } else if (res->flags & IORESOURCE_MEM) {
1228 res->start += hose->pci_mem_offset;
1229 res->end += hose->pci_mem_offset;
1230 }
1231}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233void __devinit pcibios_fixup_device_resources(struct pci_dev *dev,
Paul Mackerras42672922005-09-12 17:17:36 +10001234 struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
1236 /* Update device resources. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 int i;
1238
Paul Mackerras42672922005-09-12 17:17:36 +10001239 for (i = 0; i < PCI_NUM_RESOURCES; i++)
1240 if (dev->resource[i].flags)
1241 fixup_resource(&dev->resource[i], dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243EXPORT_SYMBOL(pcibios_fixup_device_resources);
1244
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +11001245
Paul Mackerras42672922005-09-12 17:17:36 +10001246static void __devinit do_bus_setup(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Paul Mackerras42672922005-09-12 17:17:36 +10001248 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 ppc_md.iommu_bus_setup(bus);
1251
1252 list_for_each_entry(dev, &bus->devices, bus_list)
1253 ppc_md.iommu_dev_setup(dev);
1254
John Rosedad32bb2005-06-23 17:09:54 +10001255 if (ppc_md.irq_bus_setup)
1256 ppc_md.irq_bus_setup(bus);
Paul Mackerras42672922005-09-12 17:17:36 +10001257}
1258
1259void __devinit pcibios_fixup_bus(struct pci_bus *bus)
1260{
1261 struct pci_dev *dev = bus->self;
1262
1263 if (dev && pci_probe_only &&
1264 (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
1265 /* This is a subordinate bridge */
1266
1267 pci_read_bridge_bases(bus);
1268 pcibios_fixup_device_resources(dev, bus);
1269 }
1270
1271 do_bus_setup(bus);
John Rosedad32bb2005-06-23 17:09:54 +10001272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (!pci_probe_only)
1274 return;
1275
Paul Mackerras42672922005-09-12 17:17:36 +10001276 list_for_each_entry(dev, &bus->devices, bus_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1278 pcibios_fixup_device_resources(dev, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
1280EXPORT_SYMBOL(pcibios_fixup_bus);
1281
1282/*
1283 * Reads the interrupt pin to determine if interrupt is use by card.
1284 * If the interrupt is used, then gets the interrupt line from the
1285 * openfirmware and sets it in the pci_dev and pci_config line.
1286 */
1287int pci_read_irq_line(struct pci_dev *pci_dev)
1288{
1289 u8 intpin;
1290 struct device_node *node;
1291
1292 pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &intpin);
1293 if (intpin == 0)
1294 return 0;
1295
1296 node = pci_device_to_OF_node(pci_dev);
1297 if (node == NULL)
1298 return -1;
1299
1300 if (node->n_intrs == 0)
1301 return -1;
1302
1303 pci_dev->irq = node->intrs[0].line;
1304
1305 pci_write_config_byte(pci_dev, PCI_INTERRUPT_LINE, pci_dev->irq);
1306
1307 return 0;
1308}
1309EXPORT_SYMBOL(pci_read_irq_line);
1310
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001311void pci_resource_to_user(const struct pci_dev *dev, int bar,
1312 const struct resource *rsrc,
1313 u64 *start, u64 *end)
1314{
1315 struct pci_controller *hose = pci_bus_to_host(dev->bus);
1316 unsigned long offset = 0;
1317
1318 if (hose == NULL)
1319 return;
1320
1321 if (rsrc->flags & IORESOURCE_IO)
1322 offset = pci_io_base - (unsigned long)hose->io_base_virt +
1323 hose->io_base_phys;
1324
1325 *start = rsrc->start + offset;
1326 *end = rsrc->end + offset;
1327}
1328
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +11001329struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
1330{
1331 if (!have_of)
1332 return NULL;
1333 while(node) {
1334 struct pci_controller *hose, *tmp;
1335 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1336 if (hose->arch_data == node)
1337 return hose;
1338 node = node->parent;
1339 }
1340 return NULL;
1341}
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343#endif /* CONFIG_PPC_MULTIPLATFORM */
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001344
Stephen Rothwelld4e4b352005-12-07 13:01:05 +11001345unsigned int pci_address_to_pio(phys_addr_t address)
1346{
1347 struct pci_controller *hose, *tmp;
1348
1349 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1350 if (address >= hose->io_base_phys &&
1351 address < (hose->io_base_phys + hose->pci_io_size))
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001352 return (unsigned int)
1353 ((unsigned long)hose->io_base_virt +
1354 (address - hose->io_base_phys));
Stephen Rothwelld4e4b352005-12-07 13:01:05 +11001355 }
1356 return (unsigned int)-1;
1357}
1358EXPORT_SYMBOL_GPL(pci_address_to_pio);
1359
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001360
1361#define IOBASE_BRIDGE_NUMBER 0
1362#define IOBASE_MEMORY 1
1363#define IOBASE_IO 2
1364#define IOBASE_ISA_IO 3
1365#define IOBASE_ISA_MEM 4
1366
1367long sys_pciconfig_iobase(long which, unsigned long in_bus,
1368 unsigned long in_devfn)
1369{
1370 struct pci_controller* hose;
1371 struct list_head *ln;
1372 struct pci_bus *bus = NULL;
1373 struct device_node *hose_node;
1374
1375 /* Argh ! Please forgive me for that hack, but that's the
1376 * simplest way to get existing XFree to not lockup on some
1377 * G5 machines... So when something asks for bus 0 io base
1378 * (bus 0 is HT root), we return the AGP one instead.
1379 */
Paul Mackerras799d6042005-11-10 13:37:51 +11001380 if (machine_is_compatible("MacRISC4"))
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001381 if (in_bus == 0)
1382 in_bus = 0xf0;
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001383
1384 /* That syscall isn't quite compatible with PCI domains, but it's
1385 * used on pre-domains setup. We return the first match
1386 */
1387
1388 for (ln = pci_root_buses.next; ln != &pci_root_buses; ln = ln->next) {
1389 bus = pci_bus_b(ln);
1390 if (in_bus >= bus->number && in_bus < (bus->number + bus->subordinate))
1391 break;
1392 bus = NULL;
1393 }
1394 if (bus == NULL || bus->sysdata == NULL)
1395 return -ENODEV;
1396
1397 hose_node = (struct device_node *)bus->sysdata;
1398 hose = PCI_DN(hose_node)->phb;
1399
1400 switch (which) {
1401 case IOBASE_BRIDGE_NUMBER:
1402 return (long)hose->first_busno;
1403 case IOBASE_MEMORY:
1404 return (long)hose->pci_mem_offset;
1405 case IOBASE_IO:
1406 return (long)hose->io_base_phys;
1407 case IOBASE_ISA_IO:
1408 return (long)isa_io_base;
1409 case IOBASE_ISA_MEM:
1410 return -EINVAL;
1411 }
1412
1413 return -EOPNOTSUPP;
1414}