blob: 93b2920effc58970890cc59013eb31d66862fc55 [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
Michael Ellerman131208c2007-06-27 16:02:55 +100014#undef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
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>
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +100025#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include <asm/processor.h>
28#include <asm/io.h>
29#include <asm/prom.h>
30#include <asm/pci-bridge.h>
31#include <asm/byteorder.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/machdep.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100033#include <asm/ppc-pci.h>
Stephen Rothwelleecba332006-09-25 13:35:09 +100034#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#ifdef DEBUG
Michael Ellermanf9e4ec52005-11-15 15:16:38 +110037#include <asm/udbg.h>
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +110038#define DBG(fmt...) printk(fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#else
40#define DBG(fmt...)
41#endif
42
43unsigned long pci_probe_only = 1;
Paul Mackerrasf8ef2702005-11-19 20:46:04 +110044int pci_assign_all_buses = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Paul Mackerras42672922005-09-12 17:17:36 +100046static void fixup_resource(struct resource *res, struct pci_dev *dev);
47static void do_bus_setup(struct pci_bus *bus);
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
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +100052 * ISA drivers use hard coded offsets. If no ISA bus exists nothing
53 * is mapped on the first 64K of IO space
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 */
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +100055unsigned long pci_io_base = ISA_IO_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056EXPORT_SYMBOL(pci_io_base);
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058LIST_HEAD(hose_list);
59
Stephen Rothwell57190702007-03-04 17:02:41 +110060static struct dma_mapping_ops *pci_dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Stephen Rothwell98747772007-03-04 16:58:39 +110062void set_pci_dma_ops(struct dma_mapping_ops *dma_ops)
63{
64 pci_dma_ops = dma_ops;
65}
66
Stephen Rothwell57190702007-03-04 17:02:41 +110067struct dma_mapping_ops *get_pci_dma_ops(void)
68{
69 return pci_dma_ops;
70}
71EXPORT_SYMBOL(get_pci_dma_ops);
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static 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)
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +100092 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
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)
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000111 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
Dominik Brodowski43c34732005-08-04 18:06:21 -0700112
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 -
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000148 _IO_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 /* 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
Linas Vepstasfacf0782005-11-03 18:52:01 -0600172void __devinit pcibios_claim_one_bus(struct pci_bus *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
174 struct pci_dev *dev;
175 struct pci_bus *child_bus;
176
177 list_for_each_entry(dev, &b->devices, bus_list) {
178 int i;
179
180 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
181 struct resource *r = &dev->resource[i];
182
183 if (r->parent || !r->start || !r->flags)
184 continue;
185 pci_claim_resource(dev, i);
186 }
187 }
188
189 list_for_each_entry(child_bus, &b->children, node)
190 pcibios_claim_one_bus(child_bus);
191}
linasaf9deab2006-01-10 15:18:16 -0600192#ifdef CONFIG_HOTPLUG
193EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
194#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196static void __init pcibios_claim_of_setup(void)
197{
198 struct pci_bus *b;
199
Stephen Rothwelleecba332006-09-25 13:35:09 +1000200 if (firmware_has_feature(FW_FEATURE_ISERIES))
201 return;
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 list_for_each_entry(b, &pci_root_buses, node)
204 pcibios_claim_one_bus(b);
205}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Paul Mackerras42672922005-09-12 17:17:36 +1000207static u32 get_int_prop(struct device_node *np, const char *name, u32 def)
208{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000209 const u32 *prop;
Paul Mackerras42672922005-09-12 17:17:36 +1000210 int len;
211
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000212 prop = of_get_property(np, name, &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000213 if (prop && len >= 4)
214 return *prop;
215 return def;
216}
217
218static unsigned int pci_parse_of_flags(u32 addr0)
219{
220 unsigned int flags = 0;
221
222 if (addr0 & 0x02000000) {
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000223 flags = IORESOURCE_MEM | PCI_BASE_ADDRESS_SPACE_MEMORY;
224 flags |= (addr0 >> 22) & PCI_BASE_ADDRESS_MEM_TYPE_64;
225 flags |= (addr0 >> 28) & PCI_BASE_ADDRESS_MEM_TYPE_1M;
Paul Mackerras42672922005-09-12 17:17:36 +1000226 if (addr0 & 0x40000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000227 flags |= IORESOURCE_PREFETCH
228 | PCI_BASE_ADDRESS_MEM_PREFETCH;
Paul Mackerras42672922005-09-12 17:17:36 +1000229 } else if (addr0 & 0x01000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000230 flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO;
Paul Mackerras42672922005-09-12 17:17:36 +1000231 return flags;
232}
233
Paul Mackerras42672922005-09-12 17:17:36 +1000234
235static void pci_parse_of_addrs(struct device_node *node, struct pci_dev *dev)
236{
237 u64 base, size;
238 unsigned int flags;
239 struct resource *res;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000240 const u32 *addrs;
241 u32 i;
Paul Mackerras42672922005-09-12 17:17:36 +1000242 int proplen;
243
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000244 addrs = of_get_property(node, "assigned-addresses", &proplen);
Paul Mackerras42672922005-09-12 17:17:36 +1000245 if (!addrs)
246 return;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100247 DBG(" parse addresses (%d bytes) @ %p\n", proplen, addrs);
Paul Mackerras42672922005-09-12 17:17:36 +1000248 for (; proplen >= 20; proplen -= 20, addrs += 5) {
249 flags = pci_parse_of_flags(addrs[0]);
250 if (!flags)
251 continue;
Jon Loeliger327e22d2007-06-04 14:28:44 -0500252 base = of_read_number(&addrs[1], 2);
253 size = of_read_number(&addrs[3], 2);
Paul Mackerras42672922005-09-12 17:17:36 +1000254 if (!size)
255 continue;
256 i = addrs[0] & 0xff;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100257 DBG(" base: %llx, size: %llx, i: %x\n",
258 (unsigned long long)base, (unsigned long long)size, i);
259
Paul Mackerras42672922005-09-12 17:17:36 +1000260 if (PCI_BASE_ADDRESS_0 <= i && i <= PCI_BASE_ADDRESS_5) {
261 res = &dev->resource[(i - PCI_BASE_ADDRESS_0) >> 2];
262 } else if (i == dev->rom_base_reg) {
263 res = &dev->resource[PCI_ROM_RESOURCE];
264 flags |= IORESOURCE_READONLY | IORESOURCE_CACHEABLE;
265 } else {
266 printk(KERN_ERR "PCI: bad cfg reg num 0x%x\n", i);
267 continue;
268 }
269 res->start = base;
270 res->end = base + size - 1;
271 res->flags = flags;
272 res->name = pci_name(dev);
273 fixup_resource(res, dev);
274 }
275}
276
John Roseead83712005-11-04 15:30:56 -0600277struct pci_dev *of_create_pci_dev(struct device_node *node,
278 struct pci_bus *bus, int devfn)
Paul Mackerras42672922005-09-12 17:17:36 +1000279{
280 struct pci_dev *dev;
281 const char *type;
282
Michael Ellermanbab41e92007-04-05 17:19:09 +1000283 dev = alloc_pci_dev();
Paul Mackerras42672922005-09-12 17:17:36 +1000284 if (!dev)
285 return NULL;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000286 type = of_get_property(node, "device_type", NULL);
Paul Mackerras42672922005-09-12 17:17:36 +1000287 if (type == NULL)
288 type = "";
289
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100290 DBG(" create device, devfn: %x, type: %s\n", devfn, type);
291
Paul Mackerras42672922005-09-12 17:17:36 +1000292 dev->bus = bus;
293 dev->sysdata = node;
294 dev->dev.parent = bus->bridge;
295 dev->dev.bus = &pci_bus_type;
296 dev->devfn = devfn;
297 dev->multifunction = 0; /* maybe a lie? */
298
299 dev->vendor = get_int_prop(node, "vendor-id", 0xffff);
300 dev->device = get_int_prop(node, "device-id", 0xffff);
301 dev->subsystem_vendor = get_int_prop(node, "subsystem-vendor-id", 0);
302 dev->subsystem_device = get_int_prop(node, "subsystem-id", 0);
303
Benjamin Herrenschmidt9d17a5c2006-01-10 14:50:37 +1100304 dev->cfg_size = pci_cfg_space_size(dev);
Paul Mackerras42672922005-09-12 17:17:36 +1000305
306 sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus),
307 dev->bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn));
308 dev->class = get_int_prop(node, "class-code", 0);
309
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100310 DBG(" class: 0x%x\n", dev->class);
311
Paul Mackerras42672922005-09-12 17:17:36 +1000312 dev->current_state = 4; /* unknown power state */
Linas Vepstasbb63ab12006-12-19 14:00:34 -0600313 dev->error_state = pci_channel_io_normal;
Paul Mackerras42672922005-09-12 17:17:36 +1000314
Jake Moilanenbb53bb32006-06-07 16:05:46 -0500315 if (!strcmp(type, "pci") || !strcmp(type, "pciex")) {
Paul Mackerras42672922005-09-12 17:17:36 +1000316 /* a PCI-PCI bridge */
317 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
318 dev->rom_base_reg = PCI_ROM_ADDRESS1;
319 } else if (!strcmp(type, "cardbus")) {
320 dev->hdr_type = PCI_HEADER_TYPE_CARDBUS;
321 } else {
322 dev->hdr_type = PCI_HEADER_TYPE_NORMAL;
323 dev->rom_base_reg = PCI_ROM_ADDRESS;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000324 /* Maybe do a default OF mapping here */
Paul Mackerras42672922005-09-12 17:17:36 +1000325 dev->irq = NO_IRQ;
Paul Mackerras42672922005-09-12 17:17:36 +1000326 }
327
328 pci_parse_of_addrs(node, dev);
329
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100330 DBG(" adding to system ...\n");
331
Paul Mackerras42672922005-09-12 17:17:36 +1000332 pci_device_add(dev, bus);
333
Paul Mackerras42672922005-09-12 17:17:36 +1000334 return dev;
335}
John Roseead83712005-11-04 15:30:56 -0600336EXPORT_SYMBOL(of_create_pci_dev);
Paul Mackerras42672922005-09-12 17:17:36 +1000337
John Roseead83712005-11-04 15:30:56 -0600338void __devinit of_scan_bus(struct device_node *node,
Paul Mackerras42672922005-09-12 17:17:36 +1000339 struct pci_bus *bus)
340{
341 struct device_node *child = NULL;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000342 const u32 *reg;
Paul Mackerras42672922005-09-12 17:17:36 +1000343 int reglen, devfn;
344 struct pci_dev *dev;
345
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100346 DBG("of_scan_bus(%s) bus no %d... \n", node->full_name, bus->number);
347
Paul Mackerras42672922005-09-12 17:17:36 +1000348 while ((child = of_get_next_child(node, child)) != NULL) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100349 DBG(" * %s\n", child->full_name);
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000350 reg = of_get_property(child, "reg", &reglen);
Paul Mackerras42672922005-09-12 17:17:36 +1000351 if (reg == NULL || reglen < 20)
352 continue;
353 devfn = (reg[0] >> 8) & 0xff;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100354
Paul Mackerras42672922005-09-12 17:17:36 +1000355 /* create a new pci_dev for this device */
356 dev = of_create_pci_dev(child, bus, devfn);
357 if (!dev)
358 continue;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100359 DBG("dev header type: %x\n", dev->hdr_type);
360
Paul Mackerras42672922005-09-12 17:17:36 +1000361 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
362 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
363 of_scan_pci_bridge(child, dev);
364 }
365
366 do_bus_setup(bus);
367}
John Roseead83712005-11-04 15:30:56 -0600368EXPORT_SYMBOL(of_scan_bus);
Paul Mackerras42672922005-09-12 17:17:36 +1000369
John Roseead83712005-11-04 15:30:56 -0600370void __devinit of_scan_pci_bridge(struct device_node *node,
371 struct pci_dev *dev)
Paul Mackerras42672922005-09-12 17:17:36 +1000372{
373 struct pci_bus *bus;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000374 const u32 *busrange, *ranges;
Paul Mackerras42672922005-09-12 17:17:36 +1000375 int len, i, mode;
376 struct resource *res;
377 unsigned int flags;
378 u64 size;
379
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100380 DBG("of_scan_pci_bridge(%s)\n", node->full_name);
381
Paul Mackerras42672922005-09-12 17:17:36 +1000382 /* parse bus-range property */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000383 busrange = of_get_property(node, "bus-range", &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000384 if (busrange == NULL || len != 8) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100385 printk(KERN_DEBUG "Can't get bus-range for PCI-PCI bridge %s\n",
Paul Mackerras42672922005-09-12 17:17:36 +1000386 node->full_name);
387 return;
388 }
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000389 ranges = of_get_property(node, "ranges", &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000390 if (ranges == NULL) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100391 printk(KERN_DEBUG "Can't get ranges for PCI-PCI bridge %s\n",
Paul Mackerras42672922005-09-12 17:17:36 +1000392 node->full_name);
393 return;
394 }
395
396 bus = pci_add_new_bus(dev->bus, dev, busrange[0]);
397 if (!bus) {
398 printk(KERN_ERR "Failed to create pci bus for %s\n",
399 node->full_name);
400 return;
401 }
402
403 bus->primary = dev->bus->number;
404 bus->subordinate = busrange[1];
405 bus->bridge_ctl = 0;
406 bus->sysdata = node;
407
408 /* parse ranges property */
409 /* PCI #address-cells == 3 and #size-cells == 2 always */
410 res = &dev->resource[PCI_BRIDGE_RESOURCES];
411 for (i = 0; i < PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES; ++i) {
412 res->flags = 0;
413 bus->resource[i] = res;
414 ++res;
415 }
416 i = 1;
417 for (; len >= 32; len -= 32, ranges += 8) {
418 flags = pci_parse_of_flags(ranges[0]);
Jon Loeliger327e22d2007-06-04 14:28:44 -0500419 size = of_read_number(&ranges[6], 2);
Paul Mackerras42672922005-09-12 17:17:36 +1000420 if (flags == 0 || size == 0)
421 continue;
422 if (flags & IORESOURCE_IO) {
423 res = bus->resource[0];
424 if (res->flags) {
425 printk(KERN_ERR "PCI: ignoring extra I/O range"
426 " for bridge %s\n", node->full_name);
427 continue;
428 }
429 } else {
430 if (i >= PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES) {
431 printk(KERN_ERR "PCI: too many memory ranges"
432 " for bridge %s\n", node->full_name);
433 continue;
434 }
435 res = bus->resource[i];
436 ++i;
437 }
Jon Loeliger327e22d2007-06-04 14:28:44 -0500438 res->start = of_read_number(&ranges[1], 2);
Paul Mackerras42672922005-09-12 17:17:36 +1000439 res->end = res->start + size - 1;
440 res->flags = flags;
441 fixup_resource(res, dev);
442 }
443 sprintf(bus->name, "PCI Bus %04x:%02x", pci_domain_nr(bus),
444 bus->number);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100445 DBG(" bus name: %s\n", bus->name);
Paul Mackerras42672922005-09-12 17:17:36 +1000446
447 mode = PCI_PROBE_NORMAL;
448 if (ppc_md.pci_probe_mode)
449 mode = ppc_md.pci_probe_mode(bus);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100450 DBG(" probe mode: %d\n", mode);
451
Paul Mackerras42672922005-09-12 17:17:36 +1000452 if (mode == PCI_PROBE_DEVTREE)
453 of_scan_bus(node, bus);
454 else if (mode == PCI_PROBE_NORMAL)
455 pci_scan_child_bus(bus);
456}
John Roseead83712005-11-04 15:30:56 -0600457EXPORT_SYMBOL(of_scan_pci_bridge);
Paul Mackerras42672922005-09-12 17:17:36 +1000458
John Roseead83712005-11-04 15:30:56 -0600459void __devinit scan_phb(struct pci_controller *hose)
Paul Mackerras42672922005-09-12 17:17:36 +1000460{
461 struct pci_bus *bus;
462 struct device_node *node = hose->arch_data;
463 int i, mode;
464 struct resource *res;
465
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100466 DBG("Scanning PHB %s\n", node ? node->full_name : "<NO NAME>");
467
Benjamin Herrenschmidt803d4572006-11-11 17:25:07 +1100468 bus = pci_create_bus(hose->parent, hose->first_busno, hose->ops, node);
Paul Mackerras42672922005-09-12 17:17:36 +1000469 if (bus == NULL) {
470 printk(KERN_ERR "Failed to create bus for PCI domain %04x\n",
471 hose->global_number);
472 return;
473 }
474 bus->secondary = hose->first_busno;
475 hose->bus = bus;
476
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000477 if (!firmware_has_feature(FW_FEATURE_ISERIES))
478 pcibios_map_io_space(bus);
479
Paul Mackerras42672922005-09-12 17:17:36 +1000480 bus->resource[0] = res = &hose->io_resource;
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000481 if (res->flags && request_resource(&ioport_resource, res)) {
Paul Mackerras42672922005-09-12 17:17:36 +1000482 printk(KERN_ERR "Failed to request PCI IO region "
483 "on PCI domain %04x\n", hose->global_number);
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000484 DBG("res->start = 0x%016lx, res->end = 0x%016lx\n",
485 res->start, res->end);
486 }
Paul Mackerras42672922005-09-12 17:17:36 +1000487
488 for (i = 0; i < 3; ++i) {
489 res = &hose->mem_resources[i];
490 bus->resource[i+1] = res;
491 if (res->flags && request_resource(&iomem_resource, res))
492 printk(KERN_ERR "Failed to request PCI memory region "
493 "on PCI domain %04x\n", hose->global_number);
494 }
495
496 mode = PCI_PROBE_NORMAL;
s.hauer@pengutronix.de99a565b2006-11-02 13:56:06 +0100497
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100498 if (node && ppc_md.pci_probe_mode)
Paul Mackerras42672922005-09-12 17:17:36 +1000499 mode = ppc_md.pci_probe_mode(bus);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100500 DBG(" probe mode: %d\n", mode);
Paul Mackerras42672922005-09-12 17:17:36 +1000501 if (mode == PCI_PROBE_DEVTREE) {
502 bus->subordinate = hose->last_busno;
503 of_scan_bus(node, bus);
504 }
s.hauer@pengutronix.de99a565b2006-11-02 13:56:06 +0100505
Paul Mackerras42672922005-09-12 17:17:36 +1000506 if (mode == PCI_PROBE_NORMAL)
507 hose->last_busno = bus->subordinate = pci_scan_child_bus(bus);
Paul Mackerras42672922005-09-12 17:17:36 +1000508}
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510static int __init pcibios_init(void)
511{
512 struct pci_controller *hose, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 /* For now, override phys_mem_access_prot. If we need it,
515 * later, we may move that initialization to each ppc_md
516 */
517 ppc_md.phys_mem_access_prot = pci_phys_mem_access_prot;
518
Stephen Rothwelleecba332006-09-25 13:35:09 +1000519 if (firmware_has_feature(FW_FEATURE_ISERIES))
520 iSeries_pcibios_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Olof Johanssone884e9c2006-04-12 15:26:59 -0500522 printk(KERN_DEBUG "PCI: Probing PCI hardware\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 /* Scan all of the recorded PCI controllers. */
John Rose92eb4602006-03-14 17:46:45 -0600525 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
Paul Mackerras42672922005-09-12 17:17:36 +1000526 scan_phb(hose);
John Rose92eb4602006-03-14 17:46:45 -0600527 pci_bus_add_devices(hose->bus);
528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Stephen Rothwelleecba332006-09-25 13:35:09 +1000530 if (!firmware_has_feature(FW_FEATURE_ISERIES)) {
531 if (pci_probe_only)
532 pcibios_claim_of_setup();
533 else
534 /* FIXME: `else' will be removed when
535 pci_assign_unassigned_resources() is able to work
536 correctly with [partially] allocated PCI tree. */
537 pci_assign_unassigned_resources();
538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /* Call machine dependent final fixup */
541 if (ppc_md.pcibios_fixup)
542 ppc_md.pcibios_fixup();
543
Olof Johanssone884e9c2006-04-12 15:26:59 -0500544 printk(KERN_DEBUG "PCI: Probing PCI hardware done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 return 0;
547}
548
549subsys_initcall(pcibios_init);
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551int pcibios_enable_device(struct pci_dev *dev, int mask)
552{
553 u16 cmd, oldcmd;
554 int i;
555
556 pci_read_config_word(dev, PCI_COMMAND, &cmd);
557 oldcmd = cmd;
558
559 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
560 struct resource *res = &dev->resource[i];
561
562 /* Only set up the requested stuff */
563 if (!(mask & (1<<i)))
564 continue;
565
566 if (res->flags & IORESOURCE_IO)
567 cmd |= PCI_COMMAND_IO;
568 if (res->flags & IORESOURCE_MEM)
569 cmd |= PCI_COMMAND_MEMORY;
570 }
571
572 if (cmd != oldcmd) {
573 printk(KERN_DEBUG "PCI: Enabling device: (%s), cmd %x\n",
574 pci_name(dev), cmd);
575 /* Enable the appropriate bits in the PCI command register. */
576 pci_write_config_word(dev, PCI_COMMAND, cmd);
577 }
578 return 0;
579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581/* Decide whether to display the domain number in /proc */
582int pci_proc_domain(struct pci_bus *bus)
583{
Stephen Rothwelleecba332006-09-25 13:35:09 +1000584 if (firmware_has_feature(FW_FEATURE_ISERIES))
585 return 0;
586 else {
587 struct pci_controller *hose = pci_bus_to_host(bus);
588 return hose->buid;
589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000593 struct device_node *dev, int prim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000595 const unsigned int *ranges;
596 unsigned int pci_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 unsigned long size;
598 int rlen = 0;
599 int memno = 0;
600 struct resource *res;
Stephen Rothwella8bda5d2007-04-03 10:56:50 +1000601 int np, na = of_n_addr_cells(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 unsigned long pci_addr, cpu_phys_addr;
603
604 np = na + 5;
605
606 /* From "PCI Binding to 1275"
607 * The ranges property is laid out as an array of elements,
608 * each of which comprises:
609 * cells 0 - 2: a PCI address
610 * cells 3 or 3+4: a CPU physical address
611 * (size depending on dev->n_addr_cells)
612 * cells 4+5 or 5+6: the size of the range
613 */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000614 ranges = of_get_property(dev, "ranges", &rlen);
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100615 if (ranges == NULL)
616 return;
617 hose->io_base_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 while ((rlen -= np * sizeof(unsigned int)) >= 0) {
619 res = NULL;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000620 pci_space = ranges[0];
621 pci_addr = ((unsigned long)ranges[1] << 32) | ranges[2];
Benjamin Herrenschmidte557a1c2006-11-11 17:25:05 +1100622 cpu_phys_addr = of_translate_address(dev, &ranges[3]);
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000623 size = ((unsigned long)ranges[na+3] << 32) | ranges[na+4];
624 ranges += np;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (size == 0)
626 continue;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000627
628 /* Now consume following elements while they are contiguous */
629 while (rlen >= np * sizeof(unsigned int)) {
630 unsigned long addr, phys;
631
632 if (ranges[0] != pci_space)
633 break;
634 addr = ((unsigned long)ranges[1] << 32) | ranges[2];
635 phys = ranges[3];
636 if (na >= 2)
637 phys = (phys << 32) | ranges[4];
638 if (addr != pci_addr + size ||
639 phys != cpu_phys_addr + size)
640 break;
641
642 size += ((unsigned long)ranges[na+3] << 32)
643 | ranges[na+4];
644 ranges += np;
645 rlen -= np * sizeof(unsigned int);
646 }
647
648 switch ((pci_space >> 24) & 0x3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 case 1: /* I/O space */
Paul Mackerras11fbb002007-05-07 15:16:23 +1000650 hose->io_base_phys = cpu_phys_addr - pci_addr;
651 /* handle from 0 to top of I/O window */
652 hose->pci_io_size = pci_addr + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 res = &hose->io_resource;
655 res->flags = IORESOURCE_IO;
656 res->start = pci_addr;
657 DBG("phb%d: IO 0x%lx -> 0x%lx\n", hose->global_number,
658 res->start, res->start + size - 1);
659 break;
660 case 2: /* memory space */
661 memno = 0;
662 while (memno < 3 && hose->mem_resources[memno].flags)
663 ++memno;
664
665 if (memno == 0)
666 hose->pci_mem_offset = cpu_phys_addr - pci_addr;
667 if (memno < 3) {
668 res = &hose->mem_resources[memno];
669 res->flags = IORESOURCE_MEM;
670 res->start = cpu_phys_addr;
671 DBG("phb%d: MEM 0x%lx -> 0x%lx\n", hose->global_number,
672 res->start, res->start + size - 1);
673 }
674 break;
675 }
676 if (res != NULL) {
677 res->name = dev->full_name;
678 res->end = res->start + size - 1;
679 res->parent = NULL;
680 res->sibling = NULL;
681 res->child = NULL;
682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
684}
685
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000686#ifdef CONFIG_HOTPLUG
687
688int pcibios_unmap_io_space(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000690 struct pci_controller *hose;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000692 WARN_ON(bus == NULL);
Benjamin Herrenschmidtde821202007-05-15 16:19:36 +1000693
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000694 /* If this is not a PHB, we only flush the hash table over
695 * the area mapped by this bridge. We don't play with the PTE
696 * mappings since we might have to deal with sub-page alignemnts
697 * so flushing the hash table is the only sane way to make sure
698 * that no hash entries are covering that removed bridge area
699 * while still allowing other busses overlapping those pages
Benjamin Herrenschmidtde821202007-05-15 16:19:36 +1000700 */
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000701 if (bus->self) {
702 struct resource *res = bus->resource[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000704 DBG("IO unmapping for PCI-PCI bridge %s\n",
705 pci_name(bus->self));
706
707 __flush_hash_table_range(&init_mm, res->start + _IO_BASE,
708 res->end - res->start + 1);
709 return 0;
710 }
711
712 /* Get the host bridge */
713 hose = pci_bus_to_host(bus);
714
715 /* Check if we have IOs allocated */
716 if (hose->io_base_alloc == 0)
717 return 0;
718
719 DBG("IO unmapping for PHB %s\n",
720 ((struct device_node *)hose->arch_data)->full_name);
721 DBG(" alloc=0x%p\n", hose->io_base_alloc);
722
723 /* This is a PHB, we fully unmap the IO area */
724 vunmap(hose->io_base_alloc);
725
726 return 0;
727}
728EXPORT_SYMBOL_GPL(pcibios_unmap_io_space);
729
730#endif /* CONFIG_HOTPLUG */
731
732int __devinit pcibios_map_io_space(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000734 struct vm_struct *area;
735 unsigned long phys_page;
736 unsigned long size_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 unsigned long io_virt_offset;
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000738 struct pci_controller *hose;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000740 WARN_ON(bus == NULL);
Benjamin Herrenschmidtde821202007-05-15 16:19:36 +1000741
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000742 /* If this not a PHB, nothing to do, page tables still exist and
743 * thus HPTEs will be faulted in when needed
744 */
745 if (bus->self) {
746 DBG("IO mapping for PCI-PCI bridge %s\n",
747 pci_name(bus->self));
748 DBG(" virt=0x%016lx...0x%016lx\n",
749 bus->resource[0]->start + _IO_BASE,
750 bus->resource[0]->end + _IO_BASE);
751 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000754 /* Get the host bridge */
755 hose = pci_bus_to_host(bus);
756 phys_page = _ALIGN_DOWN(hose->io_base_phys, PAGE_SIZE);
757 size_page = _ALIGN_UP(hose->pci_io_size, PAGE_SIZE);
758
759 /* Make sure IO area address is clear */
760 hose->io_base_alloc = NULL;
761
762 /* If there's no IO to map on that bus, get away too */
763 if (hose->pci_io_size == 0 || hose->io_base_phys == 0)
764 return 0;
765
766 /* Let's allocate some IO space for that guy. We don't pass
767 * VM_IOREMAP because we don't care about alignment tricks that
768 * the core does in that case. Maybe we should due to stupid card
769 * with incomplete address decoding but I'd rather not deal with
770 * those outside of the reserved 64K legacy region.
771 */
772 area = __get_vm_area(size_page, 0, PHB_IO_BASE, PHB_IO_END);
773 if (area == NULL)
774 return -ENOMEM;
775 hose->io_base_alloc = area->addr;
776 hose->io_base_virt = (void __iomem *)(area->addr +
777 hose->io_base_phys - phys_page);
778
779 DBG("IO mapping for PHB %s\n",
780 ((struct device_node *)hose->arch_data)->full_name);
781 DBG(" phys=0x%016lx, virt=0x%p (alloc=0x%p)\n",
782 hose->io_base_phys, hose->io_base_virt, hose->io_base_alloc);
783 DBG(" size=0x%016lx (alloc=0x%016lx)\n",
784 hose->pci_io_size, size_page);
785
786 /* Establish the mapping */
787 if (__ioremap_at(phys_page, area->addr, size_page,
788 _PAGE_NO_CACHE | _PAGE_GUARDED) == NULL)
789 return -ENOMEM;
790
791 /* Fixup hose IO resource */
792 io_virt_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
793 hose->io_resource.start += io_virt_offset;
794 hose->io_resource.end += io_virt_offset;
795
796 DBG(" hose->io_resource=0x%016lx...0x%016lx\n",
797 hose->io_resource.start, hose->io_resource.end);
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 return 0;
800}
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000801EXPORT_SYMBOL_GPL(pcibios_map_io_space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Paul Mackerras42672922005-09-12 17:17:36 +1000803static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev)
804{
805 struct pci_controller *hose = pci_bus_to_host(dev->bus);
Anton Blanchardc256f4b2006-04-07 15:23:03 +1000806 unsigned long offset;
Paul Mackerras42672922005-09-12 17:17:36 +1000807
808 if (res->flags & IORESOURCE_IO) {
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000809 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
Anton Blanchardc256f4b2006-04-07 15:23:03 +1000810 res->start += offset;
811 res->end += offset;
Paul Mackerras42672922005-09-12 17:17:36 +1000812 } else if (res->flags & IORESOURCE_MEM) {
813 res->start += hose->pci_mem_offset;
814 res->end += hose->pci_mem_offset;
815 }
816}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818void __devinit pcibios_fixup_device_resources(struct pci_dev *dev,
Paul Mackerras42672922005-09-12 17:17:36 +1000819 struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
821 /* Update device resources. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 int i;
823
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000824 DBG("%s: Fixup resources:\n", pci_name(dev));
825 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
826 struct resource *res = &dev->resource[i];
827 if (!res->flags)
828 continue;
829
830 DBG(" 0x%02x < %08lx:0x%016lx...0x%016lx\n",
831 i, res->flags, res->start, res->end);
832
833 fixup_resource(res, dev);
834
835 DBG(" > %08lx:0x%016lx...0x%016lx\n",
836 res->flags, res->start, res->end);
837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839EXPORT_SYMBOL(pcibios_fixup_device_resources);
840
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100841void __devinit pcibios_setup_new_device(struct pci_dev *dev)
842{
843 struct dev_archdata *sd = &dev->dev.archdata;
844
845 sd->of_node = pci_device_to_OF_node(dev);
846
847 DBG("PCI device %s OF node: %s\n", pci_name(dev),
848 sd->of_node ? sd->of_node->full_name : "<none>");
849
850 sd->dma_ops = pci_dma_ops;
851#ifdef CONFIG_NUMA
852 sd->numa_node = pcibus_to_node(dev->bus);
853#else
854 sd->numa_node = -1;
855#endif
856 if (ppc_md.pci_dma_dev_setup)
857 ppc_md.pci_dma_dev_setup(dev);
858}
859EXPORT_SYMBOL(pcibios_setup_new_device);
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +1100860
Paul Mackerras42672922005-09-12 17:17:36 +1000861static void __devinit do_bus_setup(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Paul Mackerras42672922005-09-12 17:17:36 +1000863 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100865 if (ppc_md.pci_dma_bus_setup)
866 ppc_md.pci_dma_bus_setup(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 list_for_each_entry(dev, &bus->devices, bus_list)
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100869 pcibios_setup_new_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +1100871 /* Read default IRQs and fixup if necessary */
872 list_for_each_entry(dev, &bus->devices, bus_list) {
873 pci_read_irq_line(dev);
874 if (ppc_md.pci_irq_fixup)
875 ppc_md.pci_irq_fixup(dev);
876 }
Paul Mackerras42672922005-09-12 17:17:36 +1000877}
878
879void __devinit pcibios_fixup_bus(struct pci_bus *bus)
880{
881 struct pci_dev *dev = bus->self;
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100882 struct device_node *np;
883
884 np = pci_bus_to_OF_node(bus);
885
886 DBG("pcibios_fixup_bus(%s)\n", np ? np->full_name : "<???>");
Paul Mackerras42672922005-09-12 17:17:36 +1000887
888 if (dev && pci_probe_only &&
889 (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
890 /* This is a subordinate bridge */
891
892 pci_read_bridge_bases(bus);
893 pcibios_fixup_device_resources(dev, bus);
894 }
895
896 do_bus_setup(bus);
John Rosedad32bb2005-06-23 17:09:54 +1000897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if (!pci_probe_only)
899 return;
900
Paul Mackerras42672922005-09-12 17:17:36 +1000901 list_for_each_entry(dev, &bus->devices, bus_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
903 pcibios_fixup_device_resources(dev, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905EXPORT_SYMBOL(pcibios_fixup_bus);
906
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +1100907unsigned long pci_address_to_pio(phys_addr_t address)
Stephen Rothwelld4e4b352005-12-07 13:01:05 +1100908{
909 struct pci_controller *hose, *tmp;
910
911 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
912 if (address >= hose->io_base_phys &&
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +1100913 address < (hose->io_base_phys + hose->pci_io_size)) {
914 unsigned long base =
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000915 (unsigned long)hose->io_base_virt - _IO_BASE;
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +1100916 return base + (address - hose->io_base_phys);
917 }
Stephen Rothwelld4e4b352005-12-07 13:01:05 +1100918 }
919 return (unsigned int)-1;
920}
921EXPORT_SYMBOL_GPL(pci_address_to_pio);
922
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +1000923
924#define IOBASE_BRIDGE_NUMBER 0
925#define IOBASE_MEMORY 1
926#define IOBASE_IO 2
927#define IOBASE_ISA_IO 3
928#define IOBASE_ISA_MEM 4
929
930long sys_pciconfig_iobase(long which, unsigned long in_bus,
931 unsigned long in_devfn)
932{
933 struct pci_controller* hose;
934 struct list_head *ln;
935 struct pci_bus *bus = NULL;
936 struct device_node *hose_node;
937
938 /* Argh ! Please forgive me for that hack, but that's the
939 * simplest way to get existing XFree to not lockup on some
940 * G5 machines... So when something asks for bus 0 io base
941 * (bus 0 is HT root), we return the AGP one instead.
942 */
Paul Mackerras799d6042005-11-10 13:37:51 +1100943 if (machine_is_compatible("MacRISC4"))
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +1000944 if (in_bus == 0)
945 in_bus = 0xf0;
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +1000946
947 /* That syscall isn't quite compatible with PCI domains, but it's
948 * used on pre-domains setup. We return the first match
949 */
950
951 for (ln = pci_root_buses.next; ln != &pci_root_buses; ln = ln->next) {
952 bus = pci_bus_b(ln);
Benjamin Herrenschmidt545da942007-01-28 07:45:53 +1100953 if (in_bus >= bus->number && in_bus <= bus->subordinate)
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +1000954 break;
955 bus = NULL;
956 }
957 if (bus == NULL || bus->sysdata == NULL)
958 return -ENODEV;
959
960 hose_node = (struct device_node *)bus->sysdata;
961 hose = PCI_DN(hose_node)->phb;
962
963 switch (which) {
964 case IOBASE_BRIDGE_NUMBER:
965 return (long)hose->first_busno;
966 case IOBASE_MEMORY:
967 return (long)hose->pci_mem_offset;
968 case IOBASE_IO:
969 return (long)hose->io_base_phys;
970 case IOBASE_ISA_IO:
971 return (long)isa_io_base;
972 case IOBASE_ISA_MEM:
973 return -EINVAL;
974 }
975
976 return -EOPNOTSUPP;
977}
Anton Blanchard357518f2006-06-10 20:53:06 +1000978
979#ifdef CONFIG_NUMA
980int pcibus_to_node(struct pci_bus *bus)
981{
982 struct pci_controller *phb = pci_bus_to_host(bus);
983 return phb->node;
984}
985EXPORT_SYMBOL(pcibus_to_node);
986#endif