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