blob: ba92bab7cc2c9188848e43cd220e955537df24f8 [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>
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +110037#define DBG(fmt...) printk(fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#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);
Stephen Rothwell9623b5d2006-01-12 14:18:28 +110056static void phbs_remap_io(void);
Paul Mackerras42672922005-09-12 17:17:36 +100057#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/* pci_io_base -- the base address from which io bars are offsets.
60 * This is the lowest I/O base address (so bar values are always positive),
61 * and it *must* be the start of ISA space if an ISA bus exists because
62 * ISA drivers use hard coded offsets. If no ISA bus exists a dummy
63 * page is mapped and isa_io_limit prevents access to it.
64 */
65unsigned long isa_io_base; /* NULL if no ISA bus */
66EXPORT_SYMBOL(isa_io_base);
67unsigned long pci_io_base;
68EXPORT_SYMBOL(pci_io_base);
69
70void iSeries_pcibios_init(void);
71
72LIST_HEAD(hose_list);
73
74struct dma_mapping_ops pci_dma_ops;
75EXPORT_SYMBOL(pci_dma_ops);
76
77int global_phb_number; /* Global phb counter */
78
79/* Cached ISA bridge dev. */
80struct pci_dev *ppc64_isabridge_dev = NULL;
81
82static void fixup_broken_pcnet32(struct pci_dev* dev)
83{
84 if ((dev->class>>8 == PCI_CLASS_NETWORK_ETHERNET)) {
85 dev->vendor = PCI_VENDOR_ID_AMD;
86 pci_write_config_word(dev, PCI_VENDOR_ID, PCI_VENDOR_ID_AMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 }
88}
89DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TRIDENT, PCI_ANY_ID, fixup_broken_pcnet32);
90
91void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
92 struct resource *res)
93{
94 unsigned long offset = 0;
95 struct pci_controller *hose = pci_bus_to_host(dev->bus);
96
97 if (!hose)
98 return;
99
100 if (res->flags & IORESOURCE_IO)
101 offset = (unsigned long)hose->io_base_virt - pci_io_base;
102
103 if (res->flags & IORESOURCE_MEM)
104 offset = hose->pci_mem_offset;
105
106 region->start = res->start - offset;
107 region->end = res->end - offset;
108}
109
Dominik Brodowski43c34732005-08-04 18:06:21 -0700110void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
111 struct pci_bus_region *region)
112{
113 unsigned long offset = 0;
114 struct pci_controller *hose = pci_bus_to_host(dev->bus);
115
116 if (!hose)
117 return;
118
119 if (res->flags & IORESOURCE_IO)
120 offset = (unsigned long)hose->io_base_virt - pci_io_base;
121
122 if (res->flags & IORESOURCE_MEM)
123 offset = hose->pci_mem_offset;
124
125 res->start = region->start + offset;
126 res->end = region->end + offset;
127}
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#ifdef CONFIG_HOTPLUG
130EXPORT_SYMBOL(pcibios_resource_to_bus);
Dominik Brodowski43c34732005-08-04 18:06:21 -0700131EXPORT_SYMBOL(pcibios_bus_to_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#endif
133
134/*
135 * We need to avoid collisions with `mirrored' VGA ports
136 * and other strange ISA hardware, so we always want the
137 * addresses to be allocated in the 0x000-0x0ff region
138 * modulo 0x400.
139 *
140 * Why? Because some silly external IO cards only decode
141 * the low 10 bits of the IO address. The 0x00-0xff region
142 * is reserved for motherboard devices that decode all 16
143 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
144 * but we want to try to avoid allocating at 0x2900-0x2bff
145 * which might have be mirrored at 0x0100-0x03ff..
146 */
147void pcibios_align_resource(void *data, struct resource *res,
148 unsigned long size, unsigned long align)
149{
150 struct pci_dev *dev = data;
151 struct pci_controller *hose = pci_bus_to_host(dev->bus);
152 unsigned long start = res->start;
153 unsigned long alignto;
154
155 if (res->flags & IORESOURCE_IO) {
156 unsigned long offset = (unsigned long)hose->io_base_virt -
157 pci_io_base;
158 /* Make sure we start at our min on all hoses */
159 if (start - offset < PCIBIOS_MIN_IO)
160 start = PCIBIOS_MIN_IO + offset;
161
162 /*
163 * Put everything into 0x00-0xff region modulo 0x400
164 */
165 if (start & 0x300)
166 start = (start + 0x3ff) & ~0x3ff;
167
168 } else if (res->flags & IORESOURCE_MEM) {
169 /* Make sure we start at our min on all hoses */
170 if (start - hose->pci_mem_offset < PCIBIOS_MIN_MEM)
171 start = PCIBIOS_MIN_MEM + hose->pci_mem_offset;
172
173 /* Align to multiple of size of minimum base. */
174 alignto = max(0x1000UL, align);
175 start = ALIGN(start, alignto);
176 }
177
178 res->start = start;
179}
180
181static DEFINE_SPINLOCK(hose_spinlock);
182
183/*
184 * pci_controller(phb) initialized common variables.
185 */
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100186static void __devinit pci_setup_pci_controller(struct pci_controller *hose)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 memset(hose, 0, sizeof(struct pci_controller));
189
190 spin_lock(&hose_spinlock);
191 hose->global_number = global_phb_number++;
192 list_add_tail(&hose->list_node, &hose_list);
193 spin_unlock(&hose_spinlock);
194}
195
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100196static void add_linux_pci_domain(struct device_node *dev,
197 struct pci_controller *phb)
198{
199 struct property *of_prop;
200 unsigned int size;
201
202 of_prop = (struct property *)
203 get_property(dev, "linux,pci-domain", &size);
204 if (of_prop != NULL)
205 return;
206 WARN_ON(of_prop && size < sizeof(int));
207 if (of_prop && size < sizeof(int))
208 of_prop = NULL;
209 size = sizeof(struct property) + sizeof(int);
210 if (of_prop == NULL) {
211 if (mem_init_done)
212 of_prop = kmalloc(size, GFP_KERNEL);
213 else
214 of_prop = alloc_bootmem(size);
215 }
216 memset(of_prop, 0, sizeof(struct property));
217 of_prop->name = "linux,pci-domain";
218 of_prop->length = sizeof(int);
219 of_prop->value = (unsigned char *)&of_prop[1];
220 *((int *)of_prop->value) = phb->global_number;
221 prom_add_property(dev, of_prop);
222}
223
224struct pci_controller * pcibios_alloc_controller(struct device_node *dev)
225{
226 struct pci_controller *phb;
227
228 if (mem_init_done)
229 phb = kmalloc(sizeof(struct pci_controller), GFP_KERNEL);
230 else
231 phb = alloc_bootmem(sizeof (struct pci_controller));
232 if (phb == NULL)
233 return NULL;
234 pci_setup_pci_controller(phb);
235 phb->arch_data = dev;
236 phb->is_dynamic = mem_init_done;
237 if (dev)
238 add_linux_pci_domain(dev, phb);
239 return phb;
240}
241
242void pcibios_free_controller(struct pci_controller *phb)
243{
244 if (phb->arch_data) {
245 struct device_node *np = phb->arch_data;
246 int *domain = (int *)get_property(np,
247 "linux,pci-domain", NULL);
248 if (domain)
249 *domain = -1;
250 }
251 if (phb->is_dynamic)
252 kfree(phb);
253}
254
Stephen Rothwell9623b5d2006-01-12 14:18:28 +1100255#ifndef CONFIG_PPC_ISERIES
Linas Vepstasfacf0782005-11-03 18:52:01 -0600256void __devinit pcibios_claim_one_bus(struct pci_bus *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct pci_dev *dev;
259 struct pci_bus *child_bus;
260
261 list_for_each_entry(dev, &b->devices, bus_list) {
262 int i;
263
264 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
265 struct resource *r = &dev->resource[i];
266
267 if (r->parent || !r->start || !r->flags)
268 continue;
269 pci_claim_resource(dev, i);
270 }
271 }
272
273 list_for_each_entry(child_bus, &b->children, node)
274 pcibios_claim_one_bus(child_bus);
275}
linasaf9deab2006-01-10 15:18:16 -0600276#ifdef CONFIG_HOTPLUG
277EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
278#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280static void __init pcibios_claim_of_setup(void)
281{
282 struct pci_bus *b;
283
284 list_for_each_entry(b, &pci_root_buses, node)
285 pcibios_claim_one_bus(b);
286}
287#endif
288
Paul Mackerras42672922005-09-12 17:17:36 +1000289#ifdef CONFIG_PPC_MULTIPLATFORM
290static u32 get_int_prop(struct device_node *np, const char *name, u32 def)
291{
292 u32 *prop;
293 int len;
294
295 prop = (u32 *) get_property(np, name, &len);
296 if (prop && len >= 4)
297 return *prop;
298 return def;
299}
300
301static unsigned int pci_parse_of_flags(u32 addr0)
302{
303 unsigned int flags = 0;
304
305 if (addr0 & 0x02000000) {
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000306 flags = IORESOURCE_MEM | PCI_BASE_ADDRESS_SPACE_MEMORY;
307 flags |= (addr0 >> 22) & PCI_BASE_ADDRESS_MEM_TYPE_64;
308 flags |= (addr0 >> 28) & PCI_BASE_ADDRESS_MEM_TYPE_1M;
Paul Mackerras42672922005-09-12 17:17:36 +1000309 if (addr0 & 0x40000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000310 flags |= IORESOURCE_PREFETCH
311 | PCI_BASE_ADDRESS_MEM_PREFETCH;
Paul Mackerras42672922005-09-12 17:17:36 +1000312 } else if (addr0 & 0x01000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000313 flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO;
Paul Mackerras42672922005-09-12 17:17:36 +1000314 return flags;
315}
316
317#define GET_64BIT(prop, i) ((((u64) (prop)[(i)]) << 32) | (prop)[(i)+1])
318
319static void pci_parse_of_addrs(struct device_node *node, struct pci_dev *dev)
320{
321 u64 base, size;
322 unsigned int flags;
323 struct resource *res;
324 u32 *addrs, i;
325 int proplen;
326
327 addrs = (u32 *) get_property(node, "assigned-addresses", &proplen);
328 if (!addrs)
329 return;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100330 DBG(" parse addresses (%d bytes) @ %p\n", proplen, addrs);
Paul Mackerras42672922005-09-12 17:17:36 +1000331 for (; proplen >= 20; proplen -= 20, addrs += 5) {
332 flags = pci_parse_of_flags(addrs[0]);
333 if (!flags)
334 continue;
335 base = GET_64BIT(addrs, 1);
336 size = GET_64BIT(addrs, 3);
337 if (!size)
338 continue;
339 i = addrs[0] & 0xff;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100340 DBG(" base: %llx, size: %llx, i: %x\n",
341 (unsigned long long)base, (unsigned long long)size, i);
342
Paul Mackerras42672922005-09-12 17:17:36 +1000343 if (PCI_BASE_ADDRESS_0 <= i && i <= PCI_BASE_ADDRESS_5) {
344 res = &dev->resource[(i - PCI_BASE_ADDRESS_0) >> 2];
345 } else if (i == dev->rom_base_reg) {
346 res = &dev->resource[PCI_ROM_RESOURCE];
347 flags |= IORESOURCE_READONLY | IORESOURCE_CACHEABLE;
348 } else {
349 printk(KERN_ERR "PCI: bad cfg reg num 0x%x\n", i);
350 continue;
351 }
352 res->start = base;
353 res->end = base + size - 1;
354 res->flags = flags;
355 res->name = pci_name(dev);
356 fixup_resource(res, dev);
357 }
358}
359
John Roseead83712005-11-04 15:30:56 -0600360struct pci_dev *of_create_pci_dev(struct device_node *node,
361 struct pci_bus *bus, int devfn)
Paul Mackerras42672922005-09-12 17:17:36 +1000362{
363 struct pci_dev *dev;
364 const char *type;
365
366 dev = kmalloc(sizeof(struct pci_dev), GFP_KERNEL);
367 if (!dev)
368 return NULL;
369 type = get_property(node, "device_type", NULL);
370 if (type == NULL)
371 type = "";
372
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100373 DBG(" create device, devfn: %x, type: %s\n", devfn, type);
374
Paul Mackerras42672922005-09-12 17:17:36 +1000375 memset(dev, 0, sizeof(struct pci_dev));
376 dev->bus = bus;
377 dev->sysdata = node;
378 dev->dev.parent = bus->bridge;
379 dev->dev.bus = &pci_bus_type;
380 dev->devfn = devfn;
381 dev->multifunction = 0; /* maybe a lie? */
382
383 dev->vendor = get_int_prop(node, "vendor-id", 0xffff);
384 dev->device = get_int_prop(node, "device-id", 0xffff);
385 dev->subsystem_vendor = get_int_prop(node, "subsystem-vendor-id", 0);
386 dev->subsystem_device = get_int_prop(node, "subsystem-id", 0);
387
Benjamin Herrenschmidt9d17a5c2006-01-10 14:50:37 +1100388 dev->cfg_size = pci_cfg_space_size(dev);
Paul Mackerras42672922005-09-12 17:17:36 +1000389
390 sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus),
391 dev->bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn));
392 dev->class = get_int_prop(node, "class-code", 0);
393
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100394 DBG(" class: 0x%x\n", dev->class);
395
Paul Mackerras42672922005-09-12 17:17:36 +1000396 dev->current_state = 4; /* unknown power state */
397
398 if (!strcmp(type, "pci")) {
399 /* a PCI-PCI bridge */
400 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
401 dev->rom_base_reg = PCI_ROM_ADDRESS1;
402 } else if (!strcmp(type, "cardbus")) {
403 dev->hdr_type = PCI_HEADER_TYPE_CARDBUS;
404 } else {
405 dev->hdr_type = PCI_HEADER_TYPE_NORMAL;
406 dev->rom_base_reg = PCI_ROM_ADDRESS;
407 dev->irq = NO_IRQ;
408 if (node->n_intrs > 0) {
409 dev->irq = node->intrs[0].line;
410 pci_write_config_byte(dev, PCI_INTERRUPT_LINE,
411 dev->irq);
412 }
413 }
414
415 pci_parse_of_addrs(node, dev);
416
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100417 DBG(" adding to system ...\n");
418
Paul Mackerras42672922005-09-12 17:17:36 +1000419 pci_device_add(dev, bus);
420
421 /* XXX pci_scan_msi_device(dev); */
422
423 return dev;
424}
John Roseead83712005-11-04 15:30:56 -0600425EXPORT_SYMBOL(of_create_pci_dev);
Paul Mackerras42672922005-09-12 17:17:36 +1000426
John Roseead83712005-11-04 15:30:56 -0600427void __devinit of_scan_bus(struct device_node *node,
Paul Mackerras42672922005-09-12 17:17:36 +1000428 struct pci_bus *bus)
429{
430 struct device_node *child = NULL;
431 u32 *reg;
432 int reglen, devfn;
433 struct pci_dev *dev;
434
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100435 DBG("of_scan_bus(%s) bus no %d... \n", node->full_name, bus->number);
436
Paul Mackerras42672922005-09-12 17:17:36 +1000437 while ((child = of_get_next_child(node, child)) != NULL) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100438 DBG(" * %s\n", child->full_name);
Paul Mackerras42672922005-09-12 17:17:36 +1000439 reg = (u32 *) get_property(child, "reg", &reglen);
440 if (reg == NULL || reglen < 20)
441 continue;
442 devfn = (reg[0] >> 8) & 0xff;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100443
Paul Mackerras42672922005-09-12 17:17:36 +1000444 /* create a new pci_dev for this device */
445 dev = of_create_pci_dev(child, bus, devfn);
446 if (!dev)
447 continue;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100448 DBG("dev header type: %x\n", dev->hdr_type);
449
Paul Mackerras42672922005-09-12 17:17:36 +1000450 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
451 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
452 of_scan_pci_bridge(child, dev);
453 }
454
455 do_bus_setup(bus);
456}
John Roseead83712005-11-04 15:30:56 -0600457EXPORT_SYMBOL(of_scan_bus);
Paul Mackerras42672922005-09-12 17:17:36 +1000458
John Roseead83712005-11-04 15:30:56 -0600459void __devinit of_scan_pci_bridge(struct device_node *node,
460 struct pci_dev *dev)
Paul Mackerras42672922005-09-12 17:17:36 +1000461{
462 struct pci_bus *bus;
463 u32 *busrange, *ranges;
464 int len, i, mode;
465 struct resource *res;
466 unsigned int flags;
467 u64 size;
468
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100469 DBG("of_scan_pci_bridge(%s)\n", node->full_name);
470
Paul Mackerras42672922005-09-12 17:17:36 +1000471 /* parse bus-range property */
472 busrange = (u32 *) get_property(node, "bus-range", &len);
473 if (busrange == NULL || len != 8) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100474 printk(KERN_DEBUG "Can't get bus-range for PCI-PCI bridge %s\n",
Paul Mackerras42672922005-09-12 17:17:36 +1000475 node->full_name);
476 return;
477 }
478 ranges = (u32 *) get_property(node, "ranges", &len);
479 if (ranges == NULL) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100480 printk(KERN_DEBUG "Can't get ranges for PCI-PCI bridge %s\n",
Paul Mackerras42672922005-09-12 17:17:36 +1000481 node->full_name);
482 return;
483 }
484
485 bus = pci_add_new_bus(dev->bus, dev, busrange[0]);
486 if (!bus) {
487 printk(KERN_ERR "Failed to create pci bus for %s\n",
488 node->full_name);
489 return;
490 }
491
492 bus->primary = dev->bus->number;
493 bus->subordinate = busrange[1];
494 bus->bridge_ctl = 0;
495 bus->sysdata = node;
496
497 /* parse ranges property */
498 /* PCI #address-cells == 3 and #size-cells == 2 always */
499 res = &dev->resource[PCI_BRIDGE_RESOURCES];
500 for (i = 0; i < PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES; ++i) {
501 res->flags = 0;
502 bus->resource[i] = res;
503 ++res;
504 }
505 i = 1;
506 for (; len >= 32; len -= 32, ranges += 8) {
507 flags = pci_parse_of_flags(ranges[0]);
508 size = GET_64BIT(ranges, 6);
509 if (flags == 0 || size == 0)
510 continue;
511 if (flags & IORESOURCE_IO) {
512 res = bus->resource[0];
513 if (res->flags) {
514 printk(KERN_ERR "PCI: ignoring extra I/O range"
515 " for bridge %s\n", node->full_name);
516 continue;
517 }
518 } else {
519 if (i >= PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES) {
520 printk(KERN_ERR "PCI: too many memory ranges"
521 " for bridge %s\n", node->full_name);
522 continue;
523 }
524 res = bus->resource[i];
525 ++i;
526 }
527 res->start = GET_64BIT(ranges, 1);
528 res->end = res->start + size - 1;
529 res->flags = flags;
530 fixup_resource(res, dev);
531 }
532 sprintf(bus->name, "PCI Bus %04x:%02x", pci_domain_nr(bus),
533 bus->number);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100534 DBG(" bus name: %s\n", bus->name);
Paul Mackerras42672922005-09-12 17:17:36 +1000535
536 mode = PCI_PROBE_NORMAL;
537 if (ppc_md.pci_probe_mode)
538 mode = ppc_md.pci_probe_mode(bus);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100539 DBG(" probe mode: %d\n", mode);
540
Paul Mackerras42672922005-09-12 17:17:36 +1000541 if (mode == PCI_PROBE_DEVTREE)
542 of_scan_bus(node, bus);
543 else if (mode == PCI_PROBE_NORMAL)
544 pci_scan_child_bus(bus);
545}
John Roseead83712005-11-04 15:30:56 -0600546EXPORT_SYMBOL(of_scan_pci_bridge);
Paul Mackerras42672922005-09-12 17:17:36 +1000547#endif /* CONFIG_PPC_MULTIPLATFORM */
548
John Roseead83712005-11-04 15:30:56 -0600549void __devinit scan_phb(struct pci_controller *hose)
Paul Mackerras42672922005-09-12 17:17:36 +1000550{
551 struct pci_bus *bus;
552 struct device_node *node = hose->arch_data;
553 int i, mode;
554 struct resource *res;
555
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100556 DBG("Scanning PHB %s\n", node ? node->full_name : "<NO NAME>");
557
Paul Mackerras42672922005-09-12 17:17:36 +1000558 bus = pci_create_bus(NULL, hose->first_busno, hose->ops, node);
559 if (bus == NULL) {
560 printk(KERN_ERR "Failed to create bus for PCI domain %04x\n",
561 hose->global_number);
562 return;
563 }
564 bus->secondary = hose->first_busno;
565 hose->bus = bus;
566
567 bus->resource[0] = res = &hose->io_resource;
568 if (res->flags && request_resource(&ioport_resource, res))
569 printk(KERN_ERR "Failed to request PCI IO region "
570 "on PCI domain %04x\n", hose->global_number);
571
572 for (i = 0; i < 3; ++i) {
573 res = &hose->mem_resources[i];
574 bus->resource[i+1] = res;
575 if (res->flags && request_resource(&iomem_resource, res))
576 printk(KERN_ERR "Failed to request PCI memory region "
577 "on PCI domain %04x\n", hose->global_number);
578 }
579
580 mode = PCI_PROBE_NORMAL;
581#ifdef CONFIG_PPC_MULTIPLATFORM
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100582 if (node && ppc_md.pci_probe_mode)
Paul Mackerras42672922005-09-12 17:17:36 +1000583 mode = ppc_md.pci_probe_mode(bus);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100584 DBG(" probe mode: %d\n", mode);
Paul Mackerras42672922005-09-12 17:17:36 +1000585 if (mode == PCI_PROBE_DEVTREE) {
586 bus->subordinate = hose->last_busno;
587 of_scan_bus(node, bus);
588 }
589#endif /* CONFIG_PPC_MULTIPLATFORM */
590 if (mode == PCI_PROBE_NORMAL)
591 hose->last_busno = bus->subordinate = pci_scan_child_bus(bus);
Paul Mackerras42672922005-09-12 17:17:36 +1000592}
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594static int __init pcibios_init(void)
595{
596 struct pci_controller *hose, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 /* For now, override phys_mem_access_prot. If we need it,
599 * later, we may move that initialization to each ppc_md
600 */
601 ppc_md.phys_mem_access_prot = pci_phys_mem_access_prot;
602
603#ifdef CONFIG_PPC_ISERIES
604 iSeries_pcibios_init();
605#endif
606
607 printk("PCI: Probing PCI hardware\n");
608
609 /* Scan all of the recorded PCI controllers. */
John Rose92eb4602006-03-14 17:46:45 -0600610 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
Paul Mackerras42672922005-09-12 17:17:36 +1000611 scan_phb(hose);
John Rose92eb4602006-03-14 17:46:45 -0600612 pci_bus_add_devices(hose->bus);
613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615#ifndef CONFIG_PPC_ISERIES
616 if (pci_probe_only)
617 pcibios_claim_of_setup();
618 else
619 /* FIXME: `else' will be removed when
620 pci_assign_unassigned_resources() is able to work
621 correctly with [partially] allocated PCI tree. */
622 pci_assign_unassigned_resources();
623#endif /* !CONFIG_PPC_ISERIES */
624
625 /* Call machine dependent final fixup */
626 if (ppc_md.pcibios_fixup)
627 ppc_md.pcibios_fixup();
628
629 /* Cache the location of the ISA bridge (if we have one) */
630 ppc64_isabridge_dev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
631 if (ppc64_isabridge_dev != NULL)
632 printk("ISA bridge at %s\n", pci_name(ppc64_isabridge_dev));
633
Stephen Rothwellfe360cd2005-11-10 16:07:12 +1100634#ifdef CONFIG_PPC_MULTIPLATFORM
Benjamin Herrenschmidt0f34f492005-11-10 15:04:24 +1100635 /* map in PCI I/O space */
636 phbs_remap_io();
Stephen Rothwellfe360cd2005-11-10 16:07:12 +1100637#endif
Benjamin Herrenschmidt0f34f492005-11-10 15:04:24 +1100638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 printk("PCI: Probing PCI hardware done\n");
640
641 return 0;
642}
643
644subsys_initcall(pcibios_init);
645
646char __init *pcibios_setup(char *str)
647{
648 return str;
649}
650
651int pcibios_enable_device(struct pci_dev *dev, int mask)
652{
653 u16 cmd, oldcmd;
654 int i;
655
656 pci_read_config_word(dev, PCI_COMMAND, &cmd);
657 oldcmd = cmd;
658
659 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
660 struct resource *res = &dev->resource[i];
661
662 /* Only set up the requested stuff */
663 if (!(mask & (1<<i)))
664 continue;
665
666 if (res->flags & IORESOURCE_IO)
667 cmd |= PCI_COMMAND_IO;
668 if (res->flags & IORESOURCE_MEM)
669 cmd |= PCI_COMMAND_MEMORY;
670 }
671
672 if (cmd != oldcmd) {
673 printk(KERN_DEBUG "PCI: Enabling device: (%s), cmd %x\n",
674 pci_name(dev), cmd);
675 /* Enable the appropriate bits in the PCI command register. */
676 pci_write_config_word(dev, PCI_COMMAND, cmd);
677 }
678 return 0;
679}
680
681/*
682 * Return the domain number for this bus.
683 */
684int pci_domain_nr(struct pci_bus *bus)
685{
686#ifdef CONFIG_PPC_ISERIES
687 return 0;
688#else
689 struct pci_controller *hose = pci_bus_to_host(bus);
690
691 return hose->global_number;
692#endif
693}
694
695EXPORT_SYMBOL(pci_domain_nr);
696
697/* Decide whether to display the domain number in /proc */
698int pci_proc_domain(struct pci_bus *bus)
699{
700#ifdef CONFIG_PPC_ISERIES
701 return 0;
702#else
703 struct pci_controller *hose = pci_bus_to_host(bus);
704 return hose->buid;
705#endif
706}
707
708/*
709 * Platform support for /proc/bus/pci/X/Y mmap()s,
710 * modelled on the sparc64 implementation by Dave Miller.
711 * -- paulus.
712 */
713
714/*
715 * Adjust vm_pgoff of VMA such that it is the physical page offset
716 * corresponding to the 32-bit pci bus offset for DEV requested by the user.
717 *
718 * Basically, the user finds the base address for his device which he wishes
719 * to mmap. They read the 32-bit value from the config space base register,
720 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
721 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
722 *
723 * Returns negative error code on failure, zero on success.
724 */
725static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
726 unsigned long *offset,
727 enum pci_mmap_state mmap_state)
728{
729 struct pci_controller *hose = pci_bus_to_host(dev->bus);
730 unsigned long io_offset = 0;
731 int i, res_bit;
732
733 if (hose == 0)
734 return NULL; /* should never happen */
735
736 /* If memory, add on the PCI bridge address offset */
737 if (mmap_state == pci_mmap_mem) {
738 *offset += hose->pci_mem_offset;
739 res_bit = IORESOURCE_MEM;
740 } else {
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000741 io_offset = (unsigned long)hose->io_base_virt - pci_io_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 *offset += io_offset;
743 res_bit = IORESOURCE_IO;
744 }
745
746 /*
747 * Check that the offset requested corresponds to one of the
748 * resources of the device.
749 */
750 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
751 struct resource *rp = &dev->resource[i];
752 int flags = rp->flags;
753
754 /* treat ROM as memory (should be already) */
755 if (i == PCI_ROM_RESOURCE)
756 flags |= IORESOURCE_MEM;
757
758 /* Active and same type? */
759 if ((flags & res_bit) == 0)
760 continue;
761
762 /* In the range of this resource? */
763 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
764 continue;
765
766 /* found it! construct the final physical address */
767 if (mmap_state == pci_mmap_io)
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000768 *offset += hose->io_base_phys - io_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return rp;
770 }
771
772 return NULL;
773}
774
775/*
776 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
777 * device mapping.
778 */
779static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
780 pgprot_t protection,
781 enum pci_mmap_state mmap_state,
782 int write_combine)
783{
784 unsigned long prot = pgprot_val(protection);
785
786 /* Write combine is always 0 on non-memory space mappings. On
787 * memory space, if the user didn't pass 1, we check for a
788 * "prefetchable" resource. This is a bit hackish, but we use
789 * this to workaround the inability of /sysfs to provide a write
790 * combine bit
791 */
792 if (mmap_state != pci_mmap_mem)
793 write_combine = 0;
794 else if (write_combine == 0) {
795 if (rp->flags & IORESOURCE_PREFETCH)
796 write_combine = 1;
797 }
798
799 /* XXX would be nice to have a way to ask for write-through */
800 prot |= _PAGE_NO_CACHE;
801 if (write_combine)
802 prot &= ~_PAGE_GUARDED;
803 else
804 prot |= _PAGE_GUARDED;
805
806 printk("PCI map for %s:%lx, prot: %lx\n", pci_name(dev), rp->start,
807 prot);
808
809 return __pgprot(prot);
810}
811
812/*
813 * This one is used by /dev/mem and fbdev who have no clue about the
814 * PCI device, it tries to find the PCI device first and calls the
815 * above routine
816 */
817pgprot_t pci_phys_mem_access_prot(struct file *file,
Roland Dreier8b150472005-10-28 17:46:18 -0700818 unsigned long pfn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 unsigned long size,
820 pgprot_t protection)
821{
822 struct pci_dev *pdev = NULL;
823 struct resource *found = NULL;
824 unsigned long prot = pgprot_val(protection);
Roland Dreier8b150472005-10-28 17:46:18 -0700825 unsigned long offset = pfn << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 int i;
827
Roland Dreier8b150472005-10-28 17:46:18 -0700828 if (page_is_ram(pfn))
David Gibson1f8d4192005-05-05 16:15:13 -0700829 return __pgprot(prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 prot |= _PAGE_NO_CACHE | _PAGE_GUARDED;
832
833 for_each_pci_dev(pdev) {
834 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
835 struct resource *rp = &pdev->resource[i];
836 int flags = rp->flags;
837
838 /* Active and same type? */
839 if ((flags & IORESOURCE_MEM) == 0)
840 continue;
841 /* In the range of this resource? */
842 if (offset < (rp->start & PAGE_MASK) ||
843 offset > rp->end)
844 continue;
845 found = rp;
846 break;
847 }
848 if (found)
849 break;
850 }
851 if (found) {
852 if (found->flags & IORESOURCE_PREFETCH)
853 prot &= ~_PAGE_GUARDED;
854 pci_dev_put(pdev);
855 }
856
857 DBG("non-PCI map for %lx, prot: %lx\n", offset, prot);
858
859 return __pgprot(prot);
860}
861
862
863/*
864 * Perform the actual remap of the pages for a PCI device mapping, as
865 * appropriate for this architecture. The region in the process to map
866 * is described by vm_start and vm_end members of VMA, the base physical
867 * address is found in vm_pgoff.
868 * The pci device structure is provided so that architectures may make mapping
869 * decisions on a per-device or per-bus basis.
870 *
871 * Returns a negative error code on failure, zero on success.
872 */
873int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100874 enum pci_mmap_state mmap_state, int write_combine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
876 unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
877 struct resource *rp;
878 int ret;
879
880 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
881 if (rp == NULL)
882 return -EINVAL;
883
884 vma->vm_pgoff = offset >> PAGE_SHIFT;
885 vma->vm_flags |= VM_SHM | VM_LOCKED | VM_IO;
886 vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
887 vma->vm_page_prot,
888 mmap_state, write_combine);
889
890 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
891 vma->vm_end - vma->vm_start, vma->vm_page_prot);
892
893 return ret;
894}
895
896#ifdef CONFIG_PPC_MULTIPLATFORM
Yani Ioannouff381d22005-05-17 06:40:51 -0400897static ssize_t pci_show_devspec(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
899 struct pci_dev *pdev;
900 struct device_node *np;
901
902 pdev = to_pci_dev (dev);
903 np = pci_device_to_OF_node(pdev);
904 if (np == NULL || np->full_name == NULL)
905 return 0;
906 return sprintf(buf, "%s", np->full_name);
907}
908static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
909#endif /* CONFIG_PPC_MULTIPLATFORM */
910
911void pcibios_add_platform_entries(struct pci_dev *pdev)
912{
913#ifdef CONFIG_PPC_MULTIPLATFORM
914 device_create_file(&pdev->dev, &dev_attr_devspec);
915#endif /* CONFIG_PPC_MULTIPLATFORM */
916}
917
918#ifdef CONFIG_PPC_MULTIPLATFORM
919
920#define ISA_SPACE_MASK 0x1
921#define ISA_SPACE_IO 0x1
922
923static void __devinit pci_process_ISA_OF_ranges(struct device_node *isa_node,
924 unsigned long phb_io_base_phys,
925 void __iomem * phb_io_base_virt)
926{
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100927 /* Remove these asap */
928
929 struct pci_address {
930 u32 a_hi;
931 u32 a_mid;
932 u32 a_lo;
933 };
934
935 struct isa_address {
936 u32 a_hi;
937 u32 a_lo;
938 };
939
940 struct isa_range {
941 struct isa_address isa_addr;
942 struct pci_address pci_addr;
943 unsigned int size;
944 };
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 struct isa_range *range;
947 unsigned long pci_addr;
948 unsigned int isa_addr;
949 unsigned int size;
950 int rlen = 0;
951
952 range = (struct isa_range *) get_property(isa_node, "ranges", &rlen);
953 if (range == NULL || (rlen < sizeof(struct isa_range))) {
954 printk(KERN_ERR "no ISA ranges or unexpected isa range size,"
955 "mapping 64k\n");
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700956 __ioremap_explicit(phb_io_base_phys,
957 (unsigned long)phb_io_base_virt,
958 0x10000, _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return;
960 }
961
962 /* From "ISA Binding to 1275"
963 * The ranges property is laid out as an array of elements,
964 * each of which comprises:
965 * cells 0 - 1: an ISA address
966 * cells 2 - 4: a PCI address
967 * (size depending on dev->n_addr_cells)
968 * cell 5: the size of the range
969 */
970 if ((range->isa_addr.a_hi && ISA_SPACE_MASK) == ISA_SPACE_IO) {
971 isa_addr = range->isa_addr.a_lo;
972 pci_addr = (unsigned long) range->pci_addr.a_mid << 32 |
973 range->pci_addr.a_lo;
974
975 /* Assume these are both zero */
976 if ((pci_addr != 0) || (isa_addr != 0)) {
977 printk(KERN_ERR "unexpected isa to pci mapping: %s\n",
978 __FUNCTION__);
979 return;
980 }
981
982 size = PAGE_ALIGN(range->size);
983
984 __ioremap_explicit(phb_io_base_phys,
985 (unsigned long) phb_io_base_virt,
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700986 size, _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988}
989
990void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000991 struct device_node *dev, int prim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000993 unsigned int *ranges, pci_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 unsigned long size;
995 int rlen = 0;
996 int memno = 0;
997 struct resource *res;
998 int np, na = prom_n_addr_cells(dev);
999 unsigned long pci_addr, cpu_phys_addr;
1000
1001 np = na + 5;
1002
1003 /* From "PCI Binding to 1275"
1004 * The ranges property is laid out as an array of elements,
1005 * each of which comprises:
1006 * cells 0 - 2: a PCI address
1007 * cells 3 or 3+4: a CPU physical address
1008 * (size depending on dev->n_addr_cells)
1009 * cells 4+5 or 5+6: the size of the range
1010 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 ranges = (unsigned int *) get_property(dev, "ranges", &rlen);
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +11001012 if (ranges == NULL)
1013 return;
1014 hose->io_base_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 while ((rlen -= np * sizeof(unsigned int)) >= 0) {
1016 res = NULL;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +10001017 pci_space = ranges[0];
1018 pci_addr = ((unsigned long)ranges[1] << 32) | ranges[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 cpu_phys_addr = ranges[3];
Paul Mackerrasf7abbc12005-10-22 15:03:21 +10001021 if (na >= 2)
1022 cpu_phys_addr = (cpu_phys_addr << 32) | ranges[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Paul Mackerrasf7abbc12005-10-22 15:03:21 +10001024 size = ((unsigned long)ranges[na+3] << 32) | ranges[na+4];
1025 ranges += np;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if (size == 0)
1027 continue;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +10001028
1029 /* Now consume following elements while they are contiguous */
1030 while (rlen >= np * sizeof(unsigned int)) {
1031 unsigned long addr, phys;
1032
1033 if (ranges[0] != pci_space)
1034 break;
1035 addr = ((unsigned long)ranges[1] << 32) | ranges[2];
1036 phys = ranges[3];
1037 if (na >= 2)
1038 phys = (phys << 32) | ranges[4];
1039 if (addr != pci_addr + size ||
1040 phys != cpu_phys_addr + size)
1041 break;
1042
1043 size += ((unsigned long)ranges[na+3] << 32)
1044 | ranges[na+4];
1045 ranges += np;
1046 rlen -= np * sizeof(unsigned int);
1047 }
1048
1049 switch ((pci_space >> 24) & 0x3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 case 1: /* I/O space */
1051 hose->io_base_phys = cpu_phys_addr;
1052 hose->pci_io_size = size;
1053
1054 res = &hose->io_resource;
1055 res->flags = IORESOURCE_IO;
1056 res->start = pci_addr;
1057 DBG("phb%d: IO 0x%lx -> 0x%lx\n", hose->global_number,
1058 res->start, res->start + size - 1);
1059 break;
1060 case 2: /* memory space */
1061 memno = 0;
1062 while (memno < 3 && hose->mem_resources[memno].flags)
1063 ++memno;
1064
1065 if (memno == 0)
1066 hose->pci_mem_offset = cpu_phys_addr - pci_addr;
1067 if (memno < 3) {
1068 res = &hose->mem_resources[memno];
1069 res->flags = IORESOURCE_MEM;
1070 res->start = cpu_phys_addr;
1071 DBG("phb%d: MEM 0x%lx -> 0x%lx\n", hose->global_number,
1072 res->start, res->start + size - 1);
1073 }
1074 break;
1075 }
1076 if (res != NULL) {
1077 res->name = dev->full_name;
1078 res->end = res->start + size - 1;
1079 res->parent = NULL;
1080 res->sibling = NULL;
1081 res->child = NULL;
1082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084}
1085
1086void __init pci_setup_phb_io(struct pci_controller *hose, int primary)
1087{
1088 unsigned long size = hose->pci_io_size;
1089 unsigned long io_virt_offset;
1090 struct resource *res;
1091 struct device_node *isa_dn;
1092
1093 hose->io_base_virt = reserve_phb_iospace(size);
1094 DBG("phb%d io_base_phys 0x%lx io_base_virt 0x%lx\n",
1095 hose->global_number, hose->io_base_phys,
1096 (unsigned long) hose->io_base_virt);
1097
1098 if (primary) {
1099 pci_io_base = (unsigned long)hose->io_base_virt;
1100 isa_dn = of_find_node_by_type(NULL, "isa");
1101 if (isa_dn) {
1102 isa_io_base = pci_io_base;
1103 pci_process_ISA_OF_ranges(isa_dn, hose->io_base_phys,
1104 hose->io_base_virt);
1105 of_node_put(isa_dn);
1106 /* Allow all IO */
1107 io_page_mask = -1;
1108 }
1109 }
1110
1111 io_virt_offset = (unsigned long)hose->io_base_virt - pci_io_base;
1112 res = &hose->io_resource;
1113 res->start += io_virt_offset;
1114 res->end += io_virt_offset;
1115}
1116
1117void __devinit pci_setup_phb_io_dynamic(struct pci_controller *hose,
1118 int primary)
1119{
1120 unsigned long size = hose->pci_io_size;
1121 unsigned long io_virt_offset;
1122 struct resource *res;
1123
1124 hose->io_base_virt = __ioremap(hose->io_base_phys, size,
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -07001125 _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 DBG("phb%d io_base_phys 0x%lx io_base_virt 0x%lx\n",
1127 hose->global_number, hose->io_base_phys,
1128 (unsigned long) hose->io_base_virt);
1129
1130 if (primary)
1131 pci_io_base = (unsigned long)hose->io_base_virt;
1132
1133 io_virt_offset = (unsigned long)hose->io_base_virt - pci_io_base;
1134 res = &hose->io_resource;
1135 res->start += io_virt_offset;
1136 res->end += io_virt_offset;
1137}
1138
1139
1140static int get_bus_io_range(struct pci_bus *bus, unsigned long *start_phys,
1141 unsigned long *start_virt, unsigned long *size)
1142{
1143 struct pci_controller *hose = pci_bus_to_host(bus);
1144 struct pci_bus_region region;
1145 struct resource *res;
1146
1147 if (bus->self) {
1148 res = bus->resource[0];
1149 pcibios_resource_to_bus(bus->self, &region, res);
1150 *start_phys = hose->io_base_phys + region.start;
1151 *start_virt = (unsigned long) hose->io_base_virt +
1152 region.start;
1153 if (region.end > region.start)
1154 *size = region.end - region.start + 1;
1155 else {
1156 printk("%s(): unexpected region 0x%lx->0x%lx\n",
1157 __FUNCTION__, region.start, region.end);
1158 return 1;
1159 }
1160
1161 } else {
1162 /* Root Bus */
1163 res = &hose->io_resource;
1164 *start_phys = hose->io_base_phys;
1165 *start_virt = (unsigned long) hose->io_base_virt;
1166 if (res->end > res->start)
1167 *size = res->end - res->start + 1;
1168 else {
1169 printk("%s(): unexpected region 0x%lx->0x%lx\n",
1170 __FUNCTION__, res->start, res->end);
1171 return 1;
1172 }
1173 }
1174
1175 return 0;
1176}
1177
1178int unmap_bus_range(struct pci_bus *bus)
1179{
1180 unsigned long start_phys;
1181 unsigned long start_virt;
1182 unsigned long size;
1183
1184 if (!bus) {
1185 printk(KERN_ERR "%s() expected bus\n", __FUNCTION__);
1186 return 1;
1187 }
1188
1189 if (get_bus_io_range(bus, &start_phys, &start_virt, &size))
1190 return 1;
1191 if (iounmap_explicit((void __iomem *) start_virt, size))
1192 return 1;
1193
1194 return 0;
1195}
1196EXPORT_SYMBOL(unmap_bus_range);
1197
1198int remap_bus_range(struct pci_bus *bus)
1199{
1200 unsigned long start_phys;
1201 unsigned long start_virt;
1202 unsigned long size;
1203
1204 if (!bus) {
1205 printk(KERN_ERR "%s() expected bus\n", __FUNCTION__);
1206 return 1;
1207 }
1208
1209
1210 if (get_bus_io_range(bus, &start_phys, &start_virt, &size))
1211 return 1;
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +11001212 if (start_phys == 0)
1213 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 printk("mapping IO %lx -> %lx, size: %lx\n", start_phys, start_virt, size);
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -07001215 if (__ioremap_explicit(start_phys, start_virt, size,
1216 _PAGE_NO_CACHE | _PAGE_GUARDED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return 1;
1218
1219 return 0;
1220}
1221EXPORT_SYMBOL(remap_bus_range);
1222
Stephen Rothwell9623b5d2006-01-12 14:18:28 +11001223static void phbs_remap_io(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
1225 struct pci_controller *hose, *tmp;
1226
1227 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1228 remap_bus_range(hose->bus);
1229}
1230
Paul Mackerras42672922005-09-12 17:17:36 +10001231static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev)
1232{
1233 struct pci_controller *hose = pci_bus_to_host(dev->bus);
1234 unsigned long start, end, mask, offset;
1235
1236 if (res->flags & IORESOURCE_IO) {
1237 offset = (unsigned long)hose->io_base_virt - pci_io_base;
1238
1239 start = res->start += offset;
1240 end = res->end += offset;
1241
1242 /* Need to allow IO access to pages that are in the
1243 ISA range */
1244 if (start < MAX_ISA_PORT) {
1245 if (end > MAX_ISA_PORT)
1246 end = MAX_ISA_PORT;
1247
1248 start >>= PAGE_SHIFT;
1249 end >>= PAGE_SHIFT;
1250
1251 /* get the range of pages for the map */
1252 mask = ((1 << (end+1)) - 1) ^ ((1 << start) - 1);
1253 io_page_mask |= mask;
1254 }
1255 } else if (res->flags & IORESOURCE_MEM) {
1256 res->start += hose->pci_mem_offset;
1257 res->end += hose->pci_mem_offset;
1258 }
1259}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261void __devinit pcibios_fixup_device_resources(struct pci_dev *dev,
Paul Mackerras42672922005-09-12 17:17:36 +10001262 struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
1264 /* Update device resources. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 int i;
1266
Paul Mackerras42672922005-09-12 17:17:36 +10001267 for (i = 0; i < PCI_NUM_RESOURCES; i++)
1268 if (dev->resource[i].flags)
1269 fixup_resource(&dev->resource[i], dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
1271EXPORT_SYMBOL(pcibios_fixup_device_resources);
1272
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +11001273
Paul Mackerras42672922005-09-12 17:17:36 +10001274static void __devinit do_bus_setup(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
Paul Mackerras42672922005-09-12 17:17:36 +10001276 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 ppc_md.iommu_bus_setup(bus);
1279
1280 list_for_each_entry(dev, &bus->devices, bus_list)
1281 ppc_md.iommu_dev_setup(dev);
1282
John Rosedad32bb2005-06-23 17:09:54 +10001283 if (ppc_md.irq_bus_setup)
1284 ppc_md.irq_bus_setup(bus);
Paul Mackerras42672922005-09-12 17:17:36 +10001285}
1286
1287void __devinit pcibios_fixup_bus(struct pci_bus *bus)
1288{
1289 struct pci_dev *dev = bus->self;
1290
1291 if (dev && pci_probe_only &&
1292 (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
1293 /* This is a subordinate bridge */
1294
1295 pci_read_bridge_bases(bus);
1296 pcibios_fixup_device_resources(dev, bus);
1297 }
1298
1299 do_bus_setup(bus);
John Rosedad32bb2005-06-23 17:09:54 +10001300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 if (!pci_probe_only)
1302 return;
1303
Paul Mackerras42672922005-09-12 17:17:36 +10001304 list_for_each_entry(dev, &bus->devices, bus_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1306 pcibios_fixup_device_resources(dev, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308EXPORT_SYMBOL(pcibios_fixup_bus);
1309
1310/*
1311 * Reads the interrupt pin to determine if interrupt is use by card.
1312 * If the interrupt is used, then gets the interrupt line from the
1313 * openfirmware and sets it in the pci_dev and pci_config line.
1314 */
1315int pci_read_irq_line(struct pci_dev *pci_dev)
1316{
1317 u8 intpin;
1318 struct device_node *node;
1319
1320 pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &intpin);
1321 if (intpin == 0)
1322 return 0;
1323
1324 node = pci_device_to_OF_node(pci_dev);
1325 if (node == NULL)
1326 return -1;
1327
1328 if (node->n_intrs == 0)
1329 return -1;
1330
1331 pci_dev->irq = node->intrs[0].line;
1332
1333 pci_write_config_byte(pci_dev, PCI_INTERRUPT_LINE, pci_dev->irq);
1334
1335 return 0;
1336}
1337EXPORT_SYMBOL(pci_read_irq_line);
1338
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001339void pci_resource_to_user(const struct pci_dev *dev, int bar,
1340 const struct resource *rsrc,
1341 u64 *start, u64 *end)
1342{
1343 struct pci_controller *hose = pci_bus_to_host(dev->bus);
1344 unsigned long offset = 0;
1345
1346 if (hose == NULL)
1347 return;
1348
1349 if (rsrc->flags & IORESOURCE_IO)
1350 offset = pci_io_base - (unsigned long)hose->io_base_virt +
1351 hose->io_base_phys;
1352
1353 *start = rsrc->start + offset;
1354 *end = rsrc->end + offset;
1355}
1356
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +11001357struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
1358{
1359 if (!have_of)
1360 return NULL;
1361 while(node) {
1362 struct pci_controller *hose, *tmp;
1363 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1364 if (hose->arch_data == node)
1365 return hose;
1366 node = node->parent;
1367 }
1368 return NULL;
1369}
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371#endif /* CONFIG_PPC_MULTIPLATFORM */
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001372
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +11001373unsigned long pci_address_to_pio(phys_addr_t address)
Stephen Rothwelld4e4b352005-12-07 13:01:05 +11001374{
1375 struct pci_controller *hose, *tmp;
1376
1377 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1378 if (address >= hose->io_base_phys &&
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +11001379 address < (hose->io_base_phys + hose->pci_io_size)) {
1380 unsigned long base =
1381 (unsigned long)hose->io_base_virt - pci_io_base;
1382 return base + (address - hose->io_base_phys);
1383 }
Stephen Rothwelld4e4b352005-12-07 13:01:05 +11001384 }
1385 return (unsigned int)-1;
1386}
1387EXPORT_SYMBOL_GPL(pci_address_to_pio);
1388
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001389
1390#define IOBASE_BRIDGE_NUMBER 0
1391#define IOBASE_MEMORY 1
1392#define IOBASE_IO 2
1393#define IOBASE_ISA_IO 3
1394#define IOBASE_ISA_MEM 4
1395
1396long sys_pciconfig_iobase(long which, unsigned long in_bus,
1397 unsigned long in_devfn)
1398{
1399 struct pci_controller* hose;
1400 struct list_head *ln;
1401 struct pci_bus *bus = NULL;
1402 struct device_node *hose_node;
1403
1404 /* Argh ! Please forgive me for that hack, but that's the
1405 * simplest way to get existing XFree to not lockup on some
1406 * G5 machines... So when something asks for bus 0 io base
1407 * (bus 0 is HT root), we return the AGP one instead.
1408 */
Paul Mackerras799d6042005-11-10 13:37:51 +11001409 if (machine_is_compatible("MacRISC4"))
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001410 if (in_bus == 0)
1411 in_bus = 0xf0;
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001412
1413 /* That syscall isn't quite compatible with PCI domains, but it's
1414 * used on pre-domains setup. We return the first match
1415 */
1416
1417 for (ln = pci_root_buses.next; ln != &pci_root_buses; ln = ln->next) {
1418 bus = pci_bus_b(ln);
1419 if (in_bus >= bus->number && in_bus < (bus->number + bus->subordinate))
1420 break;
1421 bus = NULL;
1422 }
1423 if (bus == NULL || bus->sysdata == NULL)
1424 return -ENODEV;
1425
1426 hose_node = (struct device_node *)bus->sysdata;
1427 hose = PCI_DN(hose_node)->phb;
1428
1429 switch (which) {
1430 case IOBASE_BRIDGE_NUMBER:
1431 return (long)hose->first_busno;
1432 case IOBASE_MEMORY:
1433 return (long)hose->pci_mem_offset;
1434 case IOBASE_IO:
1435 return (long)hose->io_base_phys;
1436 case IOBASE_ISA_IO:
1437 return (long)isa_io_base;
1438 case IOBASE_ISA_MEM:
1439 return -EINVAL;
1440 }
1441
1442 return -EOPNOTSUPP;
1443}