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