blob: d800e19ea564a3541419004b66919bacac44679d [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#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>
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +100023#include <linux/syscalls.h>
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -070024#include <linux/irq.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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/machdep.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100032#include <asm/ppc-pci.h>
Stephen Rothwelleecba332006-09-25 13:35:09 +100033#include <asm/firmware.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
Paul Mackerras42672922005-09-12 17:17:36 +100045static void fixup_resource(struct resource *res, struct pci_dev *dev);
46static void do_bus_setup(struct pci_bus *bus);
Stephen Rothwell9623b5d2006-01-12 14:18:28 +110047static void phbs_remap_io(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* pci_io_base -- the base address from which io bars are offsets.
50 * This is the lowest I/O base address (so bar values are always positive),
51 * and it *must* be the start of ISA space if an ISA bus exists because
52 * ISA drivers use hard coded offsets. If no ISA bus exists a dummy
53 * page is mapped and isa_io_limit prevents access to it.
54 */
55unsigned long isa_io_base; /* NULL if no ISA bus */
56EXPORT_SYMBOL(isa_io_base);
57unsigned long pci_io_base;
58EXPORT_SYMBOL(pci_io_base);
59
60void iSeries_pcibios_init(void);
61
62LIST_HEAD(hose_list);
63
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +110064struct dma_mapping_ops *pci_dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065EXPORT_SYMBOL(pci_dma_ops);
66
67int global_phb_number; /* Global phb counter */
68
69/* Cached ISA bridge dev. */
70struct pci_dev *ppc64_isabridge_dev = NULL;
Stephen Rothwellb239cbe2006-03-28 14:40:58 +110071EXPORT_SYMBOL_GPL(ppc64_isabridge_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73static void fixup_broken_pcnet32(struct pci_dev* dev)
74{
75 if ((dev->class>>8 == PCI_CLASS_NETWORK_ETHERNET)) {
76 dev->vendor = PCI_VENDOR_ID_AMD;
77 pci_write_config_word(dev, PCI_VENDOR_ID, PCI_VENDOR_ID_AMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
79}
80DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TRIDENT, PCI_ANY_ID, fixup_broken_pcnet32);
81
82void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
83 struct resource *res)
84{
85 unsigned long offset = 0;
86 struct pci_controller *hose = pci_bus_to_host(dev->bus);
87
88 if (!hose)
89 return;
90
91 if (res->flags & IORESOURCE_IO)
92 offset = (unsigned long)hose->io_base_virt - pci_io_base;
93
94 if (res->flags & IORESOURCE_MEM)
95 offset = hose->pci_mem_offset;
96
97 region->start = res->start - offset;
98 region->end = res->end - offset;
99}
100
Dominik Brodowski43c34732005-08-04 18:06:21 -0700101void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
102 struct pci_bus_region *region)
103{
104 unsigned long offset = 0;
105 struct pci_controller *hose = pci_bus_to_host(dev->bus);
106
107 if (!hose)
108 return;
109
110 if (res->flags & IORESOURCE_IO)
111 offset = (unsigned long)hose->io_base_virt - pci_io_base;
112
113 if (res->flags & IORESOURCE_MEM)
114 offset = hose->pci_mem_offset;
115
116 res->start = region->start + offset;
117 res->end = region->end + offset;
118}
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#ifdef CONFIG_HOTPLUG
121EXPORT_SYMBOL(pcibios_resource_to_bus);
Dominik Brodowski43c34732005-08-04 18:06:21 -0700122EXPORT_SYMBOL(pcibios_bus_to_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#endif
124
125/*
126 * We need to avoid collisions with `mirrored' VGA ports
127 * and other strange ISA hardware, so we always want the
128 * addresses to be allocated in the 0x000-0x0ff region
129 * modulo 0x400.
130 *
131 * Why? Because some silly external IO cards only decode
132 * the low 10 bits of the IO address. The 0x00-0xff region
133 * is reserved for motherboard devices that decode all 16
134 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
135 * but we want to try to avoid allocating at 0x2900-0x2bff
136 * which might have be mirrored at 0x0100-0x03ff..
137 */
138void pcibios_align_resource(void *data, struct resource *res,
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700139 resource_size_t size, resource_size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 struct pci_dev *dev = data;
142 struct pci_controller *hose = pci_bus_to_host(dev->bus);
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700143 resource_size_t start = res->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 unsigned long alignto;
145
146 if (res->flags & IORESOURCE_IO) {
147 unsigned long offset = (unsigned long)hose->io_base_virt -
148 pci_io_base;
149 /* Make sure we start at our min on all hoses */
150 if (start - offset < PCIBIOS_MIN_IO)
151 start = PCIBIOS_MIN_IO + offset;
152
153 /*
154 * Put everything into 0x00-0xff region modulo 0x400
155 */
156 if (start & 0x300)
157 start = (start + 0x3ff) & ~0x3ff;
158
159 } else if (res->flags & IORESOURCE_MEM) {
160 /* Make sure we start at our min on all hoses */
161 if (start - hose->pci_mem_offset < PCIBIOS_MIN_MEM)
162 start = PCIBIOS_MIN_MEM + hose->pci_mem_offset;
163
164 /* Align to multiple of size of minimum base. */
165 alignto = max(0x1000UL, align);
166 start = ALIGN(start, alignto);
167 }
168
169 res->start = start;
170}
171
172static DEFINE_SPINLOCK(hose_spinlock);
173
174/*
175 * pci_controller(phb) initialized common variables.
176 */
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100177static void __devinit pci_setup_pci_controller(struct pci_controller *hose)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 memset(hose, 0, sizeof(struct pci_controller));
180
181 spin_lock(&hose_spinlock);
182 hose->global_number = global_phb_number++;
183 list_add_tail(&hose->list_node, &hose_list);
184 spin_unlock(&hose_spinlock);
185}
186
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100187struct pci_controller * pcibios_alloc_controller(struct device_node *dev)
188{
189 struct pci_controller *phb;
190
191 if (mem_init_done)
192 phb = kmalloc(sizeof(struct pci_controller), GFP_KERNEL);
193 else
194 phb = alloc_bootmem(sizeof (struct pci_controller));
195 if (phb == NULL)
196 return NULL;
197 pci_setup_pci_controller(phb);
198 phb->arch_data = dev;
199 phb->is_dynamic = mem_init_done;
Anton Blanchard284a9402006-10-13 12:26:57 +1000200 if (dev) {
201 int nid = of_node_to_nid(dev);
202
203 if (nid < 0 || !node_online(nid))
204 nid = -1;
205
206 PHB_SET_NODE(phb, nid);
207 }
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100208 return phb;
209}
210
211void pcibios_free_controller(struct pci_controller *phb)
212{
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100213 spin_lock(&hose_spinlock);
214 list_del(&phb->list_node);
215 spin_unlock(&hose_spinlock);
216
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100217 if (phb->is_dynamic)
218 kfree(phb);
219}
220
Linas Vepstasfacf0782005-11-03 18:52:01 -0600221void __devinit pcibios_claim_one_bus(struct pci_bus *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct pci_dev *dev;
224 struct pci_bus *child_bus;
225
226 list_for_each_entry(dev, &b->devices, bus_list) {
227 int i;
228
229 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
230 struct resource *r = &dev->resource[i];
231
232 if (r->parent || !r->start || !r->flags)
233 continue;
234 pci_claim_resource(dev, i);
235 }
236 }
237
238 list_for_each_entry(child_bus, &b->children, node)
239 pcibios_claim_one_bus(child_bus);
240}
linasaf9deab2006-01-10 15:18:16 -0600241#ifdef CONFIG_HOTPLUG
242EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
243#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245static void __init pcibios_claim_of_setup(void)
246{
247 struct pci_bus *b;
248
Stephen Rothwelleecba332006-09-25 13:35:09 +1000249 if (firmware_has_feature(FW_FEATURE_ISERIES))
250 return;
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 list_for_each_entry(b, &pci_root_buses, node)
253 pcibios_claim_one_bus(b);
254}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Paul Mackerras42672922005-09-12 17:17:36 +1000256static u32 get_int_prop(struct device_node *np, const char *name, u32 def)
257{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000258 const u32 *prop;
Paul Mackerras42672922005-09-12 17:17:36 +1000259 int len;
260
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000261 prop = get_property(np, name, &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000262 if (prop && len >= 4)
263 return *prop;
264 return def;
265}
266
267static unsigned int pci_parse_of_flags(u32 addr0)
268{
269 unsigned int flags = 0;
270
271 if (addr0 & 0x02000000) {
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000272 flags = IORESOURCE_MEM | PCI_BASE_ADDRESS_SPACE_MEMORY;
273 flags |= (addr0 >> 22) & PCI_BASE_ADDRESS_MEM_TYPE_64;
274 flags |= (addr0 >> 28) & PCI_BASE_ADDRESS_MEM_TYPE_1M;
Paul Mackerras42672922005-09-12 17:17:36 +1000275 if (addr0 & 0x40000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000276 flags |= IORESOURCE_PREFETCH
277 | PCI_BASE_ADDRESS_MEM_PREFETCH;
Paul Mackerras42672922005-09-12 17:17:36 +1000278 } else if (addr0 & 0x01000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000279 flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO;
Paul Mackerras42672922005-09-12 17:17:36 +1000280 return flags;
281}
282
283#define GET_64BIT(prop, i) ((((u64) (prop)[(i)]) << 32) | (prop)[(i)+1])
284
285static void pci_parse_of_addrs(struct device_node *node, struct pci_dev *dev)
286{
287 u64 base, size;
288 unsigned int flags;
289 struct resource *res;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000290 const u32 *addrs;
291 u32 i;
Paul Mackerras42672922005-09-12 17:17:36 +1000292 int proplen;
293
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000294 addrs = get_property(node, "assigned-addresses", &proplen);
Paul Mackerras42672922005-09-12 17:17:36 +1000295 if (!addrs)
296 return;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100297 DBG(" parse addresses (%d bytes) @ %p\n", proplen, addrs);
Paul Mackerras42672922005-09-12 17:17:36 +1000298 for (; proplen >= 20; proplen -= 20, addrs += 5) {
299 flags = pci_parse_of_flags(addrs[0]);
300 if (!flags)
301 continue;
302 base = GET_64BIT(addrs, 1);
303 size = GET_64BIT(addrs, 3);
304 if (!size)
305 continue;
306 i = addrs[0] & 0xff;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100307 DBG(" base: %llx, size: %llx, i: %x\n",
308 (unsigned long long)base, (unsigned long long)size, i);
309
Paul Mackerras42672922005-09-12 17:17:36 +1000310 if (PCI_BASE_ADDRESS_0 <= i && i <= PCI_BASE_ADDRESS_5) {
311 res = &dev->resource[(i - PCI_BASE_ADDRESS_0) >> 2];
312 } else if (i == dev->rom_base_reg) {
313 res = &dev->resource[PCI_ROM_RESOURCE];
314 flags |= IORESOURCE_READONLY | IORESOURCE_CACHEABLE;
315 } else {
316 printk(KERN_ERR "PCI: bad cfg reg num 0x%x\n", i);
317 continue;
318 }
319 res->start = base;
320 res->end = base + size - 1;
321 res->flags = flags;
322 res->name = pci_name(dev);
323 fixup_resource(res, dev);
324 }
325}
326
John Roseead83712005-11-04 15:30:56 -0600327struct pci_dev *of_create_pci_dev(struct device_node *node,
328 struct pci_bus *bus, int devfn)
Paul Mackerras42672922005-09-12 17:17:36 +1000329{
330 struct pci_dev *dev;
331 const char *type;
332
333 dev = kmalloc(sizeof(struct pci_dev), GFP_KERNEL);
334 if (!dev)
335 return NULL;
336 type = get_property(node, "device_type", NULL);
337 if (type == NULL)
338 type = "";
339
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100340 DBG(" create device, devfn: %x, type: %s\n", devfn, type);
341
Paul Mackerras42672922005-09-12 17:17:36 +1000342 memset(dev, 0, sizeof(struct pci_dev));
343 dev->bus = bus;
344 dev->sysdata = node;
345 dev->dev.parent = bus->bridge;
346 dev->dev.bus = &pci_bus_type;
347 dev->devfn = devfn;
348 dev->multifunction = 0; /* maybe a lie? */
349
350 dev->vendor = get_int_prop(node, "vendor-id", 0xffff);
351 dev->device = get_int_prop(node, "device-id", 0xffff);
352 dev->subsystem_vendor = get_int_prop(node, "subsystem-vendor-id", 0);
353 dev->subsystem_device = get_int_prop(node, "subsystem-id", 0);
354
Benjamin Herrenschmidt9d17a5c2006-01-10 14:50:37 +1100355 dev->cfg_size = pci_cfg_space_size(dev);
Paul Mackerras42672922005-09-12 17:17:36 +1000356
357 sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus),
358 dev->bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn));
359 dev->class = get_int_prop(node, "class-code", 0);
360
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100361 DBG(" class: 0x%x\n", dev->class);
362
Paul Mackerras42672922005-09-12 17:17:36 +1000363 dev->current_state = 4; /* unknown power state */
364
Jake Moilanenbb53bb32006-06-07 16:05:46 -0500365 if (!strcmp(type, "pci") || !strcmp(type, "pciex")) {
Paul Mackerras42672922005-09-12 17:17:36 +1000366 /* a PCI-PCI bridge */
367 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
368 dev->rom_base_reg = PCI_ROM_ADDRESS1;
369 } else if (!strcmp(type, "cardbus")) {
370 dev->hdr_type = PCI_HEADER_TYPE_CARDBUS;
371 } else {
372 dev->hdr_type = PCI_HEADER_TYPE_NORMAL;
373 dev->rom_base_reg = PCI_ROM_ADDRESS;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000374 /* Maybe do a default OF mapping here */
Paul Mackerras42672922005-09-12 17:17:36 +1000375 dev->irq = NO_IRQ;
Paul Mackerras42672922005-09-12 17:17:36 +1000376 }
377
378 pci_parse_of_addrs(node, dev);
379
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100380 DBG(" adding to system ...\n");
381
Paul Mackerras42672922005-09-12 17:17:36 +1000382 pci_device_add(dev, bus);
383
384 /* XXX pci_scan_msi_device(dev); */
385
386 return dev;
387}
John Roseead83712005-11-04 15:30:56 -0600388EXPORT_SYMBOL(of_create_pci_dev);
Paul Mackerras42672922005-09-12 17:17:36 +1000389
John Roseead83712005-11-04 15:30:56 -0600390void __devinit of_scan_bus(struct device_node *node,
Paul Mackerras42672922005-09-12 17:17:36 +1000391 struct pci_bus *bus)
392{
393 struct device_node *child = NULL;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000394 const u32 *reg;
Paul Mackerras42672922005-09-12 17:17:36 +1000395 int reglen, devfn;
396 struct pci_dev *dev;
397
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100398 DBG("of_scan_bus(%s) bus no %d... \n", node->full_name, bus->number);
399
Paul Mackerras42672922005-09-12 17:17:36 +1000400 while ((child = of_get_next_child(node, child)) != NULL) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100401 DBG(" * %s\n", child->full_name);
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000402 reg = get_property(child, "reg", &reglen);
Paul Mackerras42672922005-09-12 17:17:36 +1000403 if (reg == NULL || reglen < 20)
404 continue;
405 devfn = (reg[0] >> 8) & 0xff;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100406
Paul Mackerras42672922005-09-12 17:17:36 +1000407 /* create a new pci_dev for this device */
408 dev = of_create_pci_dev(child, bus, devfn);
409 if (!dev)
410 continue;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100411 DBG("dev header type: %x\n", dev->hdr_type);
412
Paul Mackerras42672922005-09-12 17:17:36 +1000413 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
414 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
415 of_scan_pci_bridge(child, dev);
416 }
417
418 do_bus_setup(bus);
419}
John Roseead83712005-11-04 15:30:56 -0600420EXPORT_SYMBOL(of_scan_bus);
Paul Mackerras42672922005-09-12 17:17:36 +1000421
John Roseead83712005-11-04 15:30:56 -0600422void __devinit of_scan_pci_bridge(struct device_node *node,
423 struct pci_dev *dev)
Paul Mackerras42672922005-09-12 17:17:36 +1000424{
425 struct pci_bus *bus;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000426 const u32 *busrange, *ranges;
Paul Mackerras42672922005-09-12 17:17:36 +1000427 int len, i, mode;
428 struct resource *res;
429 unsigned int flags;
430 u64 size;
431
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100432 DBG("of_scan_pci_bridge(%s)\n", node->full_name);
433
Paul Mackerras42672922005-09-12 17:17:36 +1000434 /* parse bus-range property */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000435 busrange = get_property(node, "bus-range", &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000436 if (busrange == NULL || len != 8) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100437 printk(KERN_DEBUG "Can't get bus-range for PCI-PCI bridge %s\n",
Paul Mackerras42672922005-09-12 17:17:36 +1000438 node->full_name);
439 return;
440 }
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000441 ranges = get_property(node, "ranges", &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000442 if (ranges == NULL) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100443 printk(KERN_DEBUG "Can't get ranges for PCI-PCI bridge %s\n",
Paul Mackerras42672922005-09-12 17:17:36 +1000444 node->full_name);
445 return;
446 }
447
448 bus = pci_add_new_bus(dev->bus, dev, busrange[0]);
449 if (!bus) {
450 printk(KERN_ERR "Failed to create pci bus for %s\n",
451 node->full_name);
452 return;
453 }
454
455 bus->primary = dev->bus->number;
456 bus->subordinate = busrange[1];
457 bus->bridge_ctl = 0;
458 bus->sysdata = node;
459
460 /* parse ranges property */
461 /* PCI #address-cells == 3 and #size-cells == 2 always */
462 res = &dev->resource[PCI_BRIDGE_RESOURCES];
463 for (i = 0; i < PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES; ++i) {
464 res->flags = 0;
465 bus->resource[i] = res;
466 ++res;
467 }
468 i = 1;
469 for (; len >= 32; len -= 32, ranges += 8) {
470 flags = pci_parse_of_flags(ranges[0]);
471 size = GET_64BIT(ranges, 6);
472 if (flags == 0 || size == 0)
473 continue;
474 if (flags & IORESOURCE_IO) {
475 res = bus->resource[0];
476 if (res->flags) {
477 printk(KERN_ERR "PCI: ignoring extra I/O range"
478 " for bridge %s\n", node->full_name);
479 continue;
480 }
481 } else {
482 if (i >= PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES) {
483 printk(KERN_ERR "PCI: too many memory ranges"
484 " for bridge %s\n", node->full_name);
485 continue;
486 }
487 res = bus->resource[i];
488 ++i;
489 }
490 res->start = GET_64BIT(ranges, 1);
491 res->end = res->start + size - 1;
492 res->flags = flags;
493 fixup_resource(res, dev);
494 }
495 sprintf(bus->name, "PCI Bus %04x:%02x", pci_domain_nr(bus),
496 bus->number);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100497 DBG(" bus name: %s\n", bus->name);
Paul Mackerras42672922005-09-12 17:17:36 +1000498
499 mode = PCI_PROBE_NORMAL;
500 if (ppc_md.pci_probe_mode)
501 mode = ppc_md.pci_probe_mode(bus);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100502 DBG(" probe mode: %d\n", mode);
503
Paul Mackerras42672922005-09-12 17:17:36 +1000504 if (mode == PCI_PROBE_DEVTREE)
505 of_scan_bus(node, bus);
506 else if (mode == PCI_PROBE_NORMAL)
507 pci_scan_child_bus(bus);
508}
John Roseead83712005-11-04 15:30:56 -0600509EXPORT_SYMBOL(of_scan_pci_bridge);
Paul Mackerras42672922005-09-12 17:17:36 +1000510
John Roseead83712005-11-04 15:30:56 -0600511void __devinit scan_phb(struct pci_controller *hose)
Paul Mackerras42672922005-09-12 17:17:36 +1000512{
513 struct pci_bus *bus;
514 struct device_node *node = hose->arch_data;
515 int i, mode;
516 struct resource *res;
517
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100518 DBG("Scanning PHB %s\n", node ? node->full_name : "<NO NAME>");
519
Benjamin Herrenschmidt803d4572006-11-11 17:25:07 +1100520 bus = pci_create_bus(hose->parent, hose->first_busno, hose->ops, node);
Paul Mackerras42672922005-09-12 17:17:36 +1000521 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;
s.hauer@pengutronix.de99a565b2006-11-02 13:56:06 +0100543
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100544 if (node && ppc_md.pci_probe_mode)
Paul Mackerras42672922005-09-12 17:17:36 +1000545 mode = ppc_md.pci_probe_mode(bus);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100546 DBG(" probe mode: %d\n", mode);
Paul Mackerras42672922005-09-12 17:17:36 +1000547 if (mode == PCI_PROBE_DEVTREE) {
548 bus->subordinate = hose->last_busno;
549 of_scan_bus(node, bus);
550 }
s.hauer@pengutronix.de99a565b2006-11-02 13:56:06 +0100551
Paul Mackerras42672922005-09-12 17:17:36 +1000552 if (mode == PCI_PROBE_NORMAL)
553 hose->last_busno = bus->subordinate = pci_scan_child_bus(bus);
Paul Mackerras42672922005-09-12 17:17:36 +1000554}
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556static int __init pcibios_init(void)
557{
558 struct pci_controller *hose, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
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
Stephen Rothwelleecba332006-09-25 13:35:09 +1000565 if (firmware_has_feature(FW_FEATURE_ISERIES))
566 iSeries_pcibios_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Olof Johanssone884e9c2006-04-12 15:26:59 -0500568 printk(KERN_DEBUG "PCI: Probing PCI hardware\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 /* Scan all of the recorded PCI controllers. */
John Rose92eb4602006-03-14 17:46:45 -0600571 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
Paul Mackerras42672922005-09-12 17:17:36 +1000572 scan_phb(hose);
John Rose92eb4602006-03-14 17:46:45 -0600573 pci_bus_add_devices(hose->bus);
574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Stephen Rothwelleecba332006-09-25 13:35:09 +1000576 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
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)
Olof Johanssone884e9c2006-04-12 15:26:59 -0500593 printk(KERN_DEBUG "ISA bridge at %s\n", pci_name(ppc64_isabridge_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Stephen Rothwelleecba332006-09-25 13:35:09 +1000595 if (!firmware_has_feature(FW_FEATURE_ISERIES))
596 /* map in PCI I/O space */
597 phbs_remap_io();
Benjamin Herrenschmidt0f34f492005-11-10 15:04:24 +1100598
Olof Johanssone884e9c2006-04-12 15:26:59 -0500599 printk(KERN_DEBUG "PCI: Probing PCI hardware done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 return 0;
602}
603
604subsys_initcall(pcibios_init);
605
606char __init *pcibios_setup(char *str)
607{
608 return str;
609}
610
611int pcibios_enable_device(struct pci_dev *dev, int mask)
612{
613 u16 cmd, oldcmd;
614 int i;
615
616 pci_read_config_word(dev, PCI_COMMAND, &cmd);
617 oldcmd = cmd;
618
619 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
620 struct resource *res = &dev->resource[i];
621
622 /* Only set up the requested stuff */
623 if (!(mask & (1<<i)))
624 continue;
625
626 if (res->flags & IORESOURCE_IO)
627 cmd |= PCI_COMMAND_IO;
628 if (res->flags & IORESOURCE_MEM)
629 cmd |= PCI_COMMAND_MEMORY;
630 }
631
632 if (cmd != oldcmd) {
633 printk(KERN_DEBUG "PCI: Enabling device: (%s), cmd %x\n",
634 pci_name(dev), cmd);
635 /* Enable the appropriate bits in the PCI command register. */
636 pci_write_config_word(dev, PCI_COMMAND, cmd);
637 }
638 return 0;
639}
640
641/*
642 * Return the domain number for this bus.
643 */
644int pci_domain_nr(struct pci_bus *bus)
645{
Stephen Rothwelleecba332006-09-25 13:35:09 +1000646 if (firmware_has_feature(FW_FEATURE_ISERIES))
647 return 0;
648 else {
649 struct pci_controller *hose = pci_bus_to_host(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Stephen Rothwelleecba332006-09-25 13:35:09 +1000651 return hose->global_number;
652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
655EXPORT_SYMBOL(pci_domain_nr);
656
657/* Decide whether to display the domain number in /proc */
658int pci_proc_domain(struct pci_bus *bus)
659{
Stephen Rothwelleecba332006-09-25 13:35:09 +1000660 if (firmware_has_feature(FW_FEATURE_ISERIES))
661 return 0;
662 else {
663 struct pci_controller *hose = pci_bus_to_host(bus);
664 return hose->buid;
665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
668/*
669 * Platform support for /proc/bus/pci/X/Y mmap()s,
670 * modelled on the sparc64 implementation by Dave Miller.
671 * -- paulus.
672 */
673
674/*
675 * Adjust vm_pgoff of VMA such that it is the physical page offset
676 * corresponding to the 32-bit pci bus offset for DEV requested by the user.
677 *
678 * Basically, the user finds the base address for his device which he wishes
679 * to mmap. They read the 32-bit value from the config space base register,
680 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
681 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
682 *
683 * Returns negative error code on failure, zero on success.
684 */
685static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
686 unsigned long *offset,
687 enum pci_mmap_state mmap_state)
688{
689 struct pci_controller *hose = pci_bus_to_host(dev->bus);
690 unsigned long io_offset = 0;
691 int i, res_bit;
692
693 if (hose == 0)
694 return NULL; /* should never happen */
695
696 /* If memory, add on the PCI bridge address offset */
697 if (mmap_state == pci_mmap_mem) {
698 *offset += hose->pci_mem_offset;
699 res_bit = IORESOURCE_MEM;
700 } else {
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000701 io_offset = (unsigned long)hose->io_base_virt - pci_io_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 *offset += io_offset;
703 res_bit = IORESOURCE_IO;
704 }
705
706 /*
707 * Check that the offset requested corresponds to one of the
708 * resources of the device.
709 */
710 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
711 struct resource *rp = &dev->resource[i];
712 int flags = rp->flags;
713
714 /* treat ROM as memory (should be already) */
715 if (i == PCI_ROM_RESOURCE)
716 flags |= IORESOURCE_MEM;
717
718 /* Active and same type? */
719 if ((flags & res_bit) == 0)
720 continue;
721
722 /* In the range of this resource? */
723 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
724 continue;
725
726 /* found it! construct the final physical address */
727 if (mmap_state == pci_mmap_io)
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000728 *offset += hose->io_base_phys - io_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return rp;
730 }
731
732 return NULL;
733}
734
735/*
736 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
737 * device mapping.
738 */
739static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
740 pgprot_t protection,
741 enum pci_mmap_state mmap_state,
742 int write_combine)
743{
744 unsigned long prot = pgprot_val(protection);
745
746 /* Write combine is always 0 on non-memory space mappings. On
747 * memory space, if the user didn't pass 1, we check for a
748 * "prefetchable" resource. This is a bit hackish, but we use
749 * this to workaround the inability of /sysfs to provide a write
750 * combine bit
751 */
752 if (mmap_state != pci_mmap_mem)
753 write_combine = 0;
754 else if (write_combine == 0) {
755 if (rp->flags & IORESOURCE_PREFETCH)
756 write_combine = 1;
757 }
758
759 /* XXX would be nice to have a way to ask for write-through */
760 prot |= _PAGE_NO_CACHE;
761 if (write_combine)
762 prot &= ~_PAGE_GUARDED;
763 else
764 prot |= _PAGE_GUARDED;
765
Olof Johanssone884e9c2006-04-12 15:26:59 -0500766 printk(KERN_DEBUG "PCI map for %s:%lx, prot: %lx\n", pci_name(dev), rp->start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 prot);
768
769 return __pgprot(prot);
770}
771
772/*
773 * This one is used by /dev/mem and fbdev who have no clue about the
774 * PCI device, it tries to find the PCI device first and calls the
775 * above routine
776 */
777pgprot_t pci_phys_mem_access_prot(struct file *file,
Roland Dreier8b150472005-10-28 17:46:18 -0700778 unsigned long pfn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 unsigned long size,
780 pgprot_t protection)
781{
782 struct pci_dev *pdev = NULL;
783 struct resource *found = NULL;
784 unsigned long prot = pgprot_val(protection);
Roland Dreier8b150472005-10-28 17:46:18 -0700785 unsigned long offset = pfn << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 int i;
787
Roland Dreier8b150472005-10-28 17:46:18 -0700788 if (page_is_ram(pfn))
David Gibson1f8d4192005-05-05 16:15:13 -0700789 return __pgprot(prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 prot |= _PAGE_NO_CACHE | _PAGE_GUARDED;
792
793 for_each_pci_dev(pdev) {
794 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
795 struct resource *rp = &pdev->resource[i];
796 int flags = rp->flags;
797
798 /* Active and same type? */
799 if ((flags & IORESOURCE_MEM) == 0)
800 continue;
801 /* In the range of this resource? */
802 if (offset < (rp->start & PAGE_MASK) ||
803 offset > rp->end)
804 continue;
805 found = rp;
806 break;
807 }
808 if (found)
809 break;
810 }
811 if (found) {
812 if (found->flags & IORESOURCE_PREFETCH)
813 prot &= ~_PAGE_GUARDED;
814 pci_dev_put(pdev);
815 }
816
817 DBG("non-PCI map for %lx, prot: %lx\n", offset, prot);
818
819 return __pgprot(prot);
820}
821
822
823/*
824 * Perform the actual remap of the pages for a PCI device mapping, as
825 * appropriate for this architecture. The region in the process to map
826 * is described by vm_start and vm_end members of VMA, the base physical
827 * address is found in vm_pgoff.
828 * The pci device structure is provided so that architectures may make mapping
829 * decisions on a per-device or per-bus basis.
830 *
831 * Returns a negative error code on failure, zero on success.
832 */
833int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100834 enum pci_mmap_state mmap_state, int write_combine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
836 unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
837 struct resource *rp;
838 int ret;
839
840 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
841 if (rp == NULL)
842 return -EINVAL;
843
844 vma->vm_pgoff = offset >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
846 vma->vm_page_prot,
847 mmap_state, write_combine);
848
849 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
850 vma->vm_end - vma->vm_start, vma->vm_page_prot);
851
852 return ret;
853}
854
Stephen Rothwellefbd3862006-05-19 16:53:11 +1000855static ssize_t pci_show_devspec(struct device *dev,
856 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
858 struct pci_dev *pdev;
859 struct device_node *np;
860
861 pdev = to_pci_dev (dev);
862 np = pci_device_to_OF_node(pdev);
863 if (np == NULL || np->full_name == NULL)
864 return 0;
865 return sprintf(buf, "%s", np->full_name);
866}
867static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869void pcibios_add_platform_entries(struct pci_dev *pdev)
870{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 device_create_file(&pdev->dev, &dev_attr_devspec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874#define ISA_SPACE_MASK 0x1
875#define ISA_SPACE_IO 0x1
876
877static void __devinit pci_process_ISA_OF_ranges(struct device_node *isa_node,
878 unsigned long phb_io_base_phys,
879 void __iomem * phb_io_base_virt)
880{
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100881 /* Remove these asap */
882
883 struct pci_address {
884 u32 a_hi;
885 u32 a_mid;
886 u32 a_lo;
887 };
888
889 struct isa_address {
890 u32 a_hi;
891 u32 a_lo;
892 };
893
894 struct isa_range {
895 struct isa_address isa_addr;
896 struct pci_address pci_addr;
897 unsigned int size;
898 };
899
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000900 const struct isa_range *range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 unsigned long pci_addr;
902 unsigned int isa_addr;
903 unsigned int size;
904 int rlen = 0;
905
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000906 range = get_property(isa_node, "ranges", &rlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (range == NULL || (rlen < sizeof(struct isa_range))) {
908 printk(KERN_ERR "no ISA ranges or unexpected isa range size,"
909 "mapping 64k\n");
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700910 __ioremap_explicit(phb_io_base_phys,
911 (unsigned long)phb_io_base_virt,
912 0x10000, _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 return;
914 }
915
916 /* From "ISA Binding to 1275"
917 * The ranges property is laid out as an array of elements,
918 * each of which comprises:
919 * cells 0 - 1: an ISA address
920 * cells 2 - 4: a PCI address
921 * (size depending on dev->n_addr_cells)
922 * cell 5: the size of the range
923 */
924 if ((range->isa_addr.a_hi && ISA_SPACE_MASK) == ISA_SPACE_IO) {
925 isa_addr = range->isa_addr.a_lo;
926 pci_addr = (unsigned long) range->pci_addr.a_mid << 32 |
927 range->pci_addr.a_lo;
928
929 /* Assume these are both zero */
930 if ((pci_addr != 0) || (isa_addr != 0)) {
931 printk(KERN_ERR "unexpected isa to pci mapping: %s\n",
932 __FUNCTION__);
933 return;
934 }
935
936 size = PAGE_ALIGN(range->size);
937
938 __ioremap_explicit(phb_io_base_phys,
939 (unsigned long) phb_io_base_virt,
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700940 size, _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
942}
943
944void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000945 struct device_node *dev, int prim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000947 const unsigned int *ranges;
948 unsigned int pci_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 unsigned long size;
950 int rlen = 0;
951 int memno = 0;
952 struct resource *res;
953 int np, na = prom_n_addr_cells(dev);
954 unsigned long pci_addr, cpu_phys_addr;
955
956 np = na + 5;
957
958 /* From "PCI Binding to 1275"
959 * The ranges property is laid out as an array of elements,
960 * each of which comprises:
961 * cells 0 - 2: a PCI address
962 * cells 3 or 3+4: a CPU physical address
963 * (size depending on dev->n_addr_cells)
964 * cells 4+5 or 5+6: the size of the range
965 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000966 ranges = get_property(dev, "ranges", &rlen);
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100967 if (ranges == NULL)
968 return;
969 hose->io_base_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 while ((rlen -= np * sizeof(unsigned int)) >= 0) {
971 res = NULL;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000972 pci_space = ranges[0];
973 pci_addr = ((unsigned long)ranges[1] << 32) | ranges[2];
Benjamin Herrenschmidte557a1c2006-11-11 17:25:05 +1100974 cpu_phys_addr = of_translate_address(dev, &ranges[3]);
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000975 size = ((unsigned long)ranges[na+3] << 32) | ranges[na+4];
976 ranges += np;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (size == 0)
978 continue;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000979
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) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
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,
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -07001074 _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 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;
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +11001161 if (start_phys == 0)
1162 return 1;
Olof Johanssone884e9c2006-04-12 15:26:59 -05001163 printk(KERN_DEBUG "mapping IO %lx -> %lx, size: %lx\n", start_phys, start_virt, size);
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -07001164 if (__ioremap_explicit(start_phys, start_virt, size,
1165 _PAGE_NO_CACHE | _PAGE_GUARDED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 return 1;
1167
1168 return 0;
1169}
1170EXPORT_SYMBOL(remap_bus_range);
1171
Stephen Rothwell9623b5d2006-01-12 14:18:28 +11001172static void phbs_remap_io(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
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
Paul Mackerras42672922005-09-12 17:17:36 +10001180static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev)
1181{
1182 struct pci_controller *hose = pci_bus_to_host(dev->bus);
Anton Blanchardc256f4b2006-04-07 15:23:03 +10001183 unsigned long offset;
Paul Mackerras42672922005-09-12 17:17:36 +10001184
1185 if (res->flags & IORESOURCE_IO) {
1186 offset = (unsigned long)hose->io_base_virt - pci_io_base;
1187
Anton Blanchardc256f4b2006-04-07 15:23:03 +10001188 res->start += offset;
1189 res->end += offset;
Paul Mackerras42672922005-09-12 17:17:36 +10001190 } else if (res->flags & IORESOURCE_MEM) {
1191 res->start += hose->pci_mem_offset;
1192 res->end += hose->pci_mem_offset;
1193 }
1194}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196void __devinit pcibios_fixup_device_resources(struct pci_dev *dev,
Paul Mackerras42672922005-09-12 17:17:36 +10001197 struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
1199 /* Update device resources. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 int i;
1201
Paul Mackerras42672922005-09-12 17:17:36 +10001202 for (i = 0; i < PCI_NUM_RESOURCES; i++)
1203 if (dev->resource[i].flags)
1204 fixup_resource(&dev->resource[i], dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206EXPORT_SYMBOL(pcibios_fixup_device_resources);
1207
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001208void __devinit pcibios_setup_new_device(struct pci_dev *dev)
1209{
1210 struct dev_archdata *sd = &dev->dev.archdata;
1211
1212 sd->of_node = pci_device_to_OF_node(dev);
1213
1214 DBG("PCI device %s OF node: %s\n", pci_name(dev),
1215 sd->of_node ? sd->of_node->full_name : "<none>");
1216
1217 sd->dma_ops = pci_dma_ops;
1218#ifdef CONFIG_NUMA
1219 sd->numa_node = pcibus_to_node(dev->bus);
1220#else
1221 sd->numa_node = -1;
1222#endif
1223 if (ppc_md.pci_dma_dev_setup)
1224 ppc_md.pci_dma_dev_setup(dev);
1225}
1226EXPORT_SYMBOL(pcibios_setup_new_device);
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +11001227
Paul Mackerras42672922005-09-12 17:17:36 +10001228static void __devinit do_bus_setup(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
Paul Mackerras42672922005-09-12 17:17:36 +10001230 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001232 if (ppc_md.pci_dma_bus_setup)
1233 ppc_md.pci_dma_bus_setup(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 list_for_each_entry(dev, &bus->devices, bus_list)
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001236 pcibios_setup_new_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +11001238 /* Read default IRQs and fixup if necessary */
1239 list_for_each_entry(dev, &bus->devices, bus_list) {
1240 pci_read_irq_line(dev);
1241 if (ppc_md.pci_irq_fixup)
1242 ppc_md.pci_irq_fixup(dev);
1243 }
Paul Mackerras42672922005-09-12 17:17:36 +10001244}
1245
1246void __devinit pcibios_fixup_bus(struct pci_bus *bus)
1247{
1248 struct pci_dev *dev = bus->self;
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +11001249 struct device_node *np;
1250
1251 np = pci_bus_to_OF_node(bus);
1252
1253 DBG("pcibios_fixup_bus(%s)\n", np ? np->full_name : "<???>");
Paul Mackerras42672922005-09-12 17:17:36 +10001254
1255 if (dev && pci_probe_only &&
1256 (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
1257 /* This is a subordinate bridge */
1258
1259 pci_read_bridge_bases(bus);
1260 pcibios_fixup_device_resources(dev, bus);
1261 }
1262
1263 do_bus_setup(bus);
John Rosedad32bb2005-06-23 17:09:54 +10001264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 if (!pci_probe_only)
1266 return;
1267
Paul Mackerras42672922005-09-12 17:17:36 +10001268 list_for_each_entry(dev, &bus->devices, bus_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1270 pcibios_fixup_device_resources(dev, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272EXPORT_SYMBOL(pcibios_fixup_bus);
1273
1274/*
1275 * Reads the interrupt pin to determine if interrupt is use by card.
1276 * If the interrupt is used, then gets the interrupt line from the
1277 * openfirmware and sets it in the pci_dev and pci_config line.
1278 */
1279int pci_read_irq_line(struct pci_dev *pci_dev)
1280{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001281 struct of_irq oirq;
1282 unsigned int virq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001284 DBG("Try to map irq for %s...\n", pci_name(pci_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +10001286#ifdef DEBUG
1287 memset(&oirq, 0xff, sizeof(oirq));
1288#endif
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001289 /* Try to get a mapping from the device-tree */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001290 if (of_irq_map_pci(pci_dev, &oirq)) {
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001291 u8 line, pin;
1292
1293 /* If that fails, lets fallback to what is in the config
1294 * space and map that through the default controller. We
1295 * also set the type to level low since that's what PCI
1296 * interrupts are. If your platform does differently, then
1297 * either provide a proper interrupt tree or don't use this
1298 * function.
1299 */
1300 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
1301 return -1;
1302 if (pin == 0)
1303 return -1;
1304 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
1305 line == 0xff) {
1306 return -1;
1307 }
1308 DBG(" -> no map ! Using irq line %d from PCI config\n", line);
1309
1310 virq = irq_create_mapping(NULL, line);
1311 if (virq != NO_IRQ)
1312 set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
1313 } else {
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +10001314 DBG(" -> got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
1315 oirq.size, oirq.specifier[0], oirq.specifier[1],
1316 oirq.controller->full_name);
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001317
1318 virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
1319 oirq.size);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001320 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001321 if(virq == NO_IRQ) {
1322 DBG(" -> failed to map !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return -1;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001324 }
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +10001325
1326 DBG(" -> mapped to linux irq %d\n", virq);
1327
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001328 pci_dev->irq = virq;
1329 pci_write_config_byte(pci_dev, PCI_INTERRUPT_LINE, virq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331 return 0;
1332}
1333EXPORT_SYMBOL(pci_read_irq_line);
1334
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001335void pci_resource_to_user(const struct pci_dev *dev, int bar,
1336 const struct resource *rsrc,
1337 u64 *start, u64 *end)
1338{
1339 struct pci_controller *hose = pci_bus_to_host(dev->bus);
1340 unsigned long offset = 0;
1341
1342 if (hose == NULL)
1343 return;
1344
1345 if (rsrc->flags & IORESOURCE_IO)
1346 offset = pci_io_base - (unsigned long)hose->io_base_virt +
1347 hose->io_base_phys;
1348
1349 *start = rsrc->start + offset;
1350 *end = rsrc->end + offset;
1351}
1352
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +11001353struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
1354{
1355 if (!have_of)
1356 return NULL;
1357 while(node) {
1358 struct pci_controller *hose, *tmp;
1359 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1360 if (hose->arch_data == node)
1361 return hose;
1362 node = node->parent;
1363 }
1364 return NULL;
1365}
1366
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +11001367unsigned long pci_address_to_pio(phys_addr_t address)
Stephen Rothwelld4e4b352005-12-07 13:01:05 +11001368{
1369 struct pci_controller *hose, *tmp;
1370
1371 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1372 if (address >= hose->io_base_phys &&
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +11001373 address < (hose->io_base_phys + hose->pci_io_size)) {
1374 unsigned long base =
1375 (unsigned long)hose->io_base_virt - pci_io_base;
1376 return base + (address - hose->io_base_phys);
1377 }
Stephen Rothwelld4e4b352005-12-07 13:01:05 +11001378 }
1379 return (unsigned int)-1;
1380}
1381EXPORT_SYMBOL_GPL(pci_address_to_pio);
1382
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001383
1384#define IOBASE_BRIDGE_NUMBER 0
1385#define IOBASE_MEMORY 1
1386#define IOBASE_IO 2
1387#define IOBASE_ISA_IO 3
1388#define IOBASE_ISA_MEM 4
1389
1390long sys_pciconfig_iobase(long which, unsigned long in_bus,
1391 unsigned long in_devfn)
1392{
1393 struct pci_controller* hose;
1394 struct list_head *ln;
1395 struct pci_bus *bus = NULL;
1396 struct device_node *hose_node;
1397
1398 /* Argh ! Please forgive me for that hack, but that's the
1399 * simplest way to get existing XFree to not lockup on some
1400 * G5 machines... So when something asks for bus 0 io base
1401 * (bus 0 is HT root), we return the AGP one instead.
1402 */
Paul Mackerras799d6042005-11-10 13:37:51 +11001403 if (machine_is_compatible("MacRISC4"))
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001404 if (in_bus == 0)
1405 in_bus = 0xf0;
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001406
1407 /* That syscall isn't quite compatible with PCI domains, but it's
1408 * used on pre-domains setup. We return the first match
1409 */
1410
1411 for (ln = pci_root_buses.next; ln != &pci_root_buses; ln = ln->next) {
1412 bus = pci_bus_b(ln);
1413 if (in_bus >= bus->number && in_bus < (bus->number + bus->subordinate))
1414 break;
1415 bus = NULL;
1416 }
1417 if (bus == NULL || bus->sysdata == NULL)
1418 return -ENODEV;
1419
1420 hose_node = (struct device_node *)bus->sysdata;
1421 hose = PCI_DN(hose_node)->phb;
1422
1423 switch (which) {
1424 case IOBASE_BRIDGE_NUMBER:
1425 return (long)hose->first_busno;
1426 case IOBASE_MEMORY:
1427 return (long)hose->pci_mem_offset;
1428 case IOBASE_IO:
1429 return (long)hose->io_base_phys;
1430 case IOBASE_ISA_IO:
1431 return (long)isa_io_base;
1432 case IOBASE_ISA_MEM:
1433 return -EINVAL;
1434 }
1435
1436 return -EOPNOTSUPP;
1437}
Anton Blanchard357518f2006-06-10 20:53:06 +10001438
1439#ifdef CONFIG_NUMA
1440int pcibus_to_node(struct pci_bus *bus)
1441{
1442 struct pci_controller *phb = pci_bus_to_host(bus);
1443 return phb->node;
1444}
1445EXPORT_SYMBOL(pcibus_to_node);
1446#endif