blob: 249cca27a9b84ade58c94020534a8aa8a018ee83 [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;
Benjamin Herrenschmidtde821202007-05-15 16:19:36 +100044static int pci_initial_scan_done;
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);
Stephen Rothwell9623b5d2006-01-12 14:18:28 +110048static void phbs_remap_io(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* pci_io_base -- the base address from which io bars are offsets.
51 * This is the lowest I/O base address (so bar values are always positive),
52 * and it *must* be the start of ISA space if an ISA bus exists because
53 * ISA drivers use hard coded offsets. If no ISA bus exists a dummy
54 * page is mapped and isa_io_limit prevents access to it.
55 */
56unsigned long isa_io_base; /* NULL if no ISA bus */
57EXPORT_SYMBOL(isa_io_base);
58unsigned long pci_io_base;
59EXPORT_SYMBOL(pci_io_base);
60
61void iSeries_pcibios_init(void);
62
63LIST_HEAD(hose_list);
64
Stephen Rothwell57190702007-03-04 17:02:41 +110065static struct dma_mapping_ops *pci_dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
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
Stephen Rothwell98747772007-03-04 16:58:39 +110073void set_pci_dma_ops(struct dma_mapping_ops *dma_ops)
74{
75 pci_dma_ops = dma_ops;
76}
77
Stephen Rothwell57190702007-03-04 17:02:41 +110078struct dma_mapping_ops *get_pci_dma_ops(void)
79{
80 return pci_dma_ops;
81}
82EXPORT_SYMBOL(get_pci_dma_ops);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static void fixup_broken_pcnet32(struct pci_dev* dev)
85{
86 if ((dev->class>>8 == PCI_CLASS_NETWORK_ETHERNET)) {
87 dev->vendor = PCI_VENDOR_ID_AMD;
88 pci_write_config_word(dev, PCI_VENDOR_ID, PCI_VENDOR_ID_AMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 }
90}
91DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TRIDENT, PCI_ANY_ID, fixup_broken_pcnet32);
92
93void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
94 struct resource *res)
95{
96 unsigned long offset = 0;
97 struct pci_controller *hose = pci_bus_to_host(dev->bus);
98
99 if (!hose)
100 return;
101
102 if (res->flags & IORESOURCE_IO)
103 offset = (unsigned long)hose->io_base_virt - pci_io_base;
104
105 if (res->flags & IORESOURCE_MEM)
106 offset = hose->pci_mem_offset;
107
108 region->start = res->start - offset;
109 region->end = res->end - offset;
110}
111
Dominik Brodowski43c34732005-08-04 18:06:21 -0700112void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
113 struct pci_bus_region *region)
114{
115 unsigned long offset = 0;
116 struct pci_controller *hose = pci_bus_to_host(dev->bus);
117
118 if (!hose)
119 return;
120
121 if (res->flags & IORESOURCE_IO)
122 offset = (unsigned long)hose->io_base_virt - pci_io_base;
123
124 if (res->flags & IORESOURCE_MEM)
125 offset = hose->pci_mem_offset;
126
127 res->start = region->start + offset;
128 res->end = region->end + offset;
129}
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#ifdef CONFIG_HOTPLUG
132EXPORT_SYMBOL(pcibios_resource_to_bus);
Dominik Brodowski43c34732005-08-04 18:06:21 -0700133EXPORT_SYMBOL(pcibios_bus_to_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#endif
135
136/*
137 * We need to avoid collisions with `mirrored' VGA ports
138 * and other strange ISA hardware, so we always want the
139 * addresses to be allocated in the 0x000-0x0ff region
140 * modulo 0x400.
141 *
142 * Why? Because some silly external IO cards only decode
143 * the low 10 bits of the IO address. The 0x00-0xff region
144 * is reserved for motherboard devices that decode all 16
145 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
146 * but we want to try to avoid allocating at 0x2900-0x2bff
147 * which might have be mirrored at 0x0100-0x03ff..
148 */
149void pcibios_align_resource(void *data, struct resource *res,
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700150 resource_size_t size, resource_size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 struct pci_dev *dev = data;
153 struct pci_controller *hose = pci_bus_to_host(dev->bus);
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700154 resource_size_t start = res->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 unsigned long alignto;
156
157 if (res->flags & IORESOURCE_IO) {
158 unsigned long offset = (unsigned long)hose->io_base_virt -
159 pci_io_base;
160 /* Make sure we start at our min on all hoses */
161 if (start - offset < PCIBIOS_MIN_IO)
162 start = PCIBIOS_MIN_IO + offset;
163
164 /*
165 * Put everything into 0x00-0xff region modulo 0x400
166 */
167 if (start & 0x300)
168 start = (start + 0x3ff) & ~0x3ff;
169
170 } else if (res->flags & IORESOURCE_MEM) {
171 /* Make sure we start at our min on all hoses */
172 if (start - hose->pci_mem_offset < PCIBIOS_MIN_MEM)
173 start = PCIBIOS_MIN_MEM + hose->pci_mem_offset;
174
175 /* Align to multiple of size of minimum base. */
176 alignto = max(0x1000UL, align);
177 start = ALIGN(start, alignto);
178 }
179
180 res->start = start;
181}
182
183static DEFINE_SPINLOCK(hose_spinlock);
184
185/*
186 * pci_controller(phb) initialized common variables.
187 */
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100188static void __devinit pci_setup_pci_controller(struct pci_controller *hose)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 memset(hose, 0, sizeof(struct pci_controller));
191
192 spin_lock(&hose_spinlock);
193 hose->global_number = global_phb_number++;
194 list_add_tail(&hose->list_node, &hose_list);
195 spin_unlock(&hose_spinlock);
196}
197
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100198struct pci_controller * pcibios_alloc_controller(struct device_node *dev)
199{
200 struct pci_controller *phb;
201
202 if (mem_init_done)
203 phb = kmalloc(sizeof(struct pci_controller), GFP_KERNEL);
204 else
205 phb = alloc_bootmem(sizeof (struct pci_controller));
206 if (phb == NULL)
207 return NULL;
208 pci_setup_pci_controller(phb);
209 phb->arch_data = dev;
210 phb->is_dynamic = mem_init_done;
Anton Blanchard284a9402006-10-13 12:26:57 +1000211 if (dev) {
212 int nid = of_node_to_nid(dev);
213
214 if (nid < 0 || !node_online(nid))
215 nid = -1;
216
217 PHB_SET_NODE(phb, nid);
218 }
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100219 return phb;
220}
221
222void pcibios_free_controller(struct pci_controller *phb)
223{
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100224 spin_lock(&hose_spinlock);
225 list_del(&phb->list_node);
226 spin_unlock(&hose_spinlock);
227
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100228 if (phb->is_dynamic)
229 kfree(phb);
230}
231
Linas Vepstasfacf0782005-11-03 18:52:01 -0600232void __devinit pcibios_claim_one_bus(struct pci_bus *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 struct pci_dev *dev;
235 struct pci_bus *child_bus;
236
237 list_for_each_entry(dev, &b->devices, bus_list) {
238 int i;
239
240 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
241 struct resource *r = &dev->resource[i];
242
243 if (r->parent || !r->start || !r->flags)
244 continue;
245 pci_claim_resource(dev, i);
246 }
247 }
248
249 list_for_each_entry(child_bus, &b->children, node)
250 pcibios_claim_one_bus(child_bus);
251}
linasaf9deab2006-01-10 15:18:16 -0600252#ifdef CONFIG_HOTPLUG
253EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
254#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256static void __init pcibios_claim_of_setup(void)
257{
258 struct pci_bus *b;
259
Stephen Rothwelleecba332006-09-25 13:35:09 +1000260 if (firmware_has_feature(FW_FEATURE_ISERIES))
261 return;
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 list_for_each_entry(b, &pci_root_buses, node)
264 pcibios_claim_one_bus(b);
265}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Paul Mackerras42672922005-09-12 17:17:36 +1000267static u32 get_int_prop(struct device_node *np, const char *name, u32 def)
268{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000269 const u32 *prop;
Paul Mackerras42672922005-09-12 17:17:36 +1000270 int len;
271
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000272 prop = of_get_property(np, name, &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000273 if (prop && len >= 4)
274 return *prop;
275 return def;
276}
277
278static unsigned int pci_parse_of_flags(u32 addr0)
279{
280 unsigned int flags = 0;
281
282 if (addr0 & 0x02000000) {
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000283 flags = IORESOURCE_MEM | PCI_BASE_ADDRESS_SPACE_MEMORY;
284 flags |= (addr0 >> 22) & PCI_BASE_ADDRESS_MEM_TYPE_64;
285 flags |= (addr0 >> 28) & PCI_BASE_ADDRESS_MEM_TYPE_1M;
Paul Mackerras42672922005-09-12 17:17:36 +1000286 if (addr0 & 0x40000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000287 flags |= IORESOURCE_PREFETCH
288 | PCI_BASE_ADDRESS_MEM_PREFETCH;
Paul Mackerras42672922005-09-12 17:17:36 +1000289 } else if (addr0 & 0x01000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000290 flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO;
Paul Mackerras42672922005-09-12 17:17:36 +1000291 return flags;
292}
293
294#define GET_64BIT(prop, i) ((((u64) (prop)[(i)]) << 32) | (prop)[(i)+1])
295
296static void pci_parse_of_addrs(struct device_node *node, struct pci_dev *dev)
297{
298 u64 base, size;
299 unsigned int flags;
300 struct resource *res;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000301 const u32 *addrs;
302 u32 i;
Paul Mackerras42672922005-09-12 17:17:36 +1000303 int proplen;
304
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000305 addrs = of_get_property(node, "assigned-addresses", &proplen);
Paul Mackerras42672922005-09-12 17:17:36 +1000306 if (!addrs)
307 return;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100308 DBG(" parse addresses (%d bytes) @ %p\n", proplen, addrs);
Paul Mackerras42672922005-09-12 17:17:36 +1000309 for (; proplen >= 20; proplen -= 20, addrs += 5) {
310 flags = pci_parse_of_flags(addrs[0]);
311 if (!flags)
312 continue;
313 base = GET_64BIT(addrs, 1);
314 size = GET_64BIT(addrs, 3);
315 if (!size)
316 continue;
317 i = addrs[0] & 0xff;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100318 DBG(" base: %llx, size: %llx, i: %x\n",
319 (unsigned long long)base, (unsigned long long)size, i);
320
Paul Mackerras42672922005-09-12 17:17:36 +1000321 if (PCI_BASE_ADDRESS_0 <= i && i <= PCI_BASE_ADDRESS_5) {
322 res = &dev->resource[(i - PCI_BASE_ADDRESS_0) >> 2];
323 } else if (i == dev->rom_base_reg) {
324 res = &dev->resource[PCI_ROM_RESOURCE];
325 flags |= IORESOURCE_READONLY | IORESOURCE_CACHEABLE;
326 } else {
327 printk(KERN_ERR "PCI: bad cfg reg num 0x%x\n", i);
328 continue;
329 }
330 res->start = base;
331 res->end = base + size - 1;
332 res->flags = flags;
333 res->name = pci_name(dev);
334 fixup_resource(res, dev);
335 }
336}
337
John Roseead83712005-11-04 15:30:56 -0600338struct pci_dev *of_create_pci_dev(struct device_node *node,
339 struct pci_bus *bus, int devfn)
Paul Mackerras42672922005-09-12 17:17:36 +1000340{
341 struct pci_dev *dev;
342 const char *type;
343
Michael Ellermanbab41e92007-04-05 17:19:09 +1000344 dev = alloc_pci_dev();
Paul Mackerras42672922005-09-12 17:17:36 +1000345 if (!dev)
346 return NULL;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000347 type = of_get_property(node, "device_type", NULL);
Paul Mackerras42672922005-09-12 17:17:36 +1000348 if (type == NULL)
349 type = "";
350
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100351 DBG(" create device, devfn: %x, type: %s\n", devfn, type);
352
Paul Mackerras42672922005-09-12 17:17:36 +1000353 dev->bus = bus;
354 dev->sysdata = node;
355 dev->dev.parent = bus->bridge;
356 dev->dev.bus = &pci_bus_type;
357 dev->devfn = devfn;
358 dev->multifunction = 0; /* maybe a lie? */
359
360 dev->vendor = get_int_prop(node, "vendor-id", 0xffff);
361 dev->device = get_int_prop(node, "device-id", 0xffff);
362 dev->subsystem_vendor = get_int_prop(node, "subsystem-vendor-id", 0);
363 dev->subsystem_device = get_int_prop(node, "subsystem-id", 0);
364
Benjamin Herrenschmidt9d17a5c2006-01-10 14:50:37 +1100365 dev->cfg_size = pci_cfg_space_size(dev);
Paul Mackerras42672922005-09-12 17:17:36 +1000366
367 sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus),
368 dev->bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn));
369 dev->class = get_int_prop(node, "class-code", 0);
370
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100371 DBG(" class: 0x%x\n", dev->class);
372
Paul Mackerras42672922005-09-12 17:17:36 +1000373 dev->current_state = 4; /* unknown power state */
Linas Vepstasbb63ab12006-12-19 14:00:34 -0600374 dev->error_state = pci_channel_io_normal;
Paul Mackerras42672922005-09-12 17:17:36 +1000375
Jake Moilanenbb53bb32006-06-07 16:05:46 -0500376 if (!strcmp(type, "pci") || !strcmp(type, "pciex")) {
Paul Mackerras42672922005-09-12 17:17:36 +1000377 /* a PCI-PCI bridge */
378 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
379 dev->rom_base_reg = PCI_ROM_ADDRESS1;
380 } else if (!strcmp(type, "cardbus")) {
381 dev->hdr_type = PCI_HEADER_TYPE_CARDBUS;
382 } else {
383 dev->hdr_type = PCI_HEADER_TYPE_NORMAL;
384 dev->rom_base_reg = PCI_ROM_ADDRESS;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000385 /* Maybe do a default OF mapping here */
Paul Mackerras42672922005-09-12 17:17:36 +1000386 dev->irq = NO_IRQ;
Paul Mackerras42672922005-09-12 17:17:36 +1000387 }
388
389 pci_parse_of_addrs(node, dev);
390
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100391 DBG(" adding to system ...\n");
392
Paul Mackerras42672922005-09-12 17:17:36 +1000393 pci_device_add(dev, bus);
394
Paul Mackerras42672922005-09-12 17:17:36 +1000395 return dev;
396}
John Roseead83712005-11-04 15:30:56 -0600397EXPORT_SYMBOL(of_create_pci_dev);
Paul Mackerras42672922005-09-12 17:17:36 +1000398
John Roseead83712005-11-04 15:30:56 -0600399void __devinit of_scan_bus(struct device_node *node,
Paul Mackerras42672922005-09-12 17:17:36 +1000400 struct pci_bus *bus)
401{
402 struct device_node *child = NULL;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000403 const u32 *reg;
Paul Mackerras42672922005-09-12 17:17:36 +1000404 int reglen, devfn;
405 struct pci_dev *dev;
406
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100407 DBG("of_scan_bus(%s) bus no %d... \n", node->full_name, bus->number);
408
Paul Mackerras42672922005-09-12 17:17:36 +1000409 while ((child = of_get_next_child(node, child)) != NULL) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100410 DBG(" * %s\n", child->full_name);
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000411 reg = of_get_property(child, "reg", &reglen);
Paul Mackerras42672922005-09-12 17:17:36 +1000412 if (reg == NULL || reglen < 20)
413 continue;
414 devfn = (reg[0] >> 8) & 0xff;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100415
Paul Mackerras42672922005-09-12 17:17:36 +1000416 /* create a new pci_dev for this device */
417 dev = of_create_pci_dev(child, bus, devfn);
418 if (!dev)
419 continue;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100420 DBG("dev header type: %x\n", dev->hdr_type);
421
Paul Mackerras42672922005-09-12 17:17:36 +1000422 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
423 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
424 of_scan_pci_bridge(child, dev);
425 }
426
427 do_bus_setup(bus);
428}
John Roseead83712005-11-04 15:30:56 -0600429EXPORT_SYMBOL(of_scan_bus);
Paul Mackerras42672922005-09-12 17:17:36 +1000430
John Roseead83712005-11-04 15:30:56 -0600431void __devinit of_scan_pci_bridge(struct device_node *node,
432 struct pci_dev *dev)
Paul Mackerras42672922005-09-12 17:17:36 +1000433{
434 struct pci_bus *bus;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000435 const u32 *busrange, *ranges;
Paul Mackerras42672922005-09-12 17:17:36 +1000436 int len, i, mode;
437 struct resource *res;
438 unsigned int flags;
439 u64 size;
440
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100441 DBG("of_scan_pci_bridge(%s)\n", node->full_name);
442
Paul Mackerras42672922005-09-12 17:17:36 +1000443 /* parse bus-range property */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000444 busrange = of_get_property(node, "bus-range", &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000445 if (busrange == NULL || len != 8) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100446 printk(KERN_DEBUG "Can't get bus-range for PCI-PCI bridge %s\n",
Paul Mackerras42672922005-09-12 17:17:36 +1000447 node->full_name);
448 return;
449 }
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000450 ranges = of_get_property(node, "ranges", &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000451 if (ranges == NULL) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100452 printk(KERN_DEBUG "Can't get ranges for PCI-PCI bridge %s\n",
Paul Mackerras42672922005-09-12 17:17:36 +1000453 node->full_name);
454 return;
455 }
456
457 bus = pci_add_new_bus(dev->bus, dev, busrange[0]);
458 if (!bus) {
459 printk(KERN_ERR "Failed to create pci bus for %s\n",
460 node->full_name);
461 return;
462 }
463
464 bus->primary = dev->bus->number;
465 bus->subordinate = busrange[1];
466 bus->bridge_ctl = 0;
467 bus->sysdata = node;
468
469 /* parse ranges property */
470 /* PCI #address-cells == 3 and #size-cells == 2 always */
471 res = &dev->resource[PCI_BRIDGE_RESOURCES];
472 for (i = 0; i < PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES; ++i) {
473 res->flags = 0;
474 bus->resource[i] = res;
475 ++res;
476 }
477 i = 1;
478 for (; len >= 32; len -= 32, ranges += 8) {
479 flags = pci_parse_of_flags(ranges[0]);
480 size = GET_64BIT(ranges, 6);
481 if (flags == 0 || size == 0)
482 continue;
483 if (flags & IORESOURCE_IO) {
484 res = bus->resource[0];
485 if (res->flags) {
486 printk(KERN_ERR "PCI: ignoring extra I/O range"
487 " for bridge %s\n", node->full_name);
488 continue;
489 }
490 } else {
491 if (i >= PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES) {
492 printk(KERN_ERR "PCI: too many memory ranges"
493 " for bridge %s\n", node->full_name);
494 continue;
495 }
496 res = bus->resource[i];
497 ++i;
498 }
499 res->start = GET_64BIT(ranges, 1);
500 res->end = res->start + size - 1;
501 res->flags = flags;
502 fixup_resource(res, dev);
503 }
504 sprintf(bus->name, "PCI Bus %04x:%02x", pci_domain_nr(bus),
505 bus->number);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100506 DBG(" bus name: %s\n", bus->name);
Paul Mackerras42672922005-09-12 17:17:36 +1000507
508 mode = PCI_PROBE_NORMAL;
509 if (ppc_md.pci_probe_mode)
510 mode = ppc_md.pci_probe_mode(bus);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100511 DBG(" probe mode: %d\n", mode);
512
Paul Mackerras42672922005-09-12 17:17:36 +1000513 if (mode == PCI_PROBE_DEVTREE)
514 of_scan_bus(node, bus);
515 else if (mode == PCI_PROBE_NORMAL)
516 pci_scan_child_bus(bus);
517}
John Roseead83712005-11-04 15:30:56 -0600518EXPORT_SYMBOL(of_scan_pci_bridge);
Paul Mackerras42672922005-09-12 17:17:36 +1000519
John Roseead83712005-11-04 15:30:56 -0600520void __devinit scan_phb(struct pci_controller *hose)
Paul Mackerras42672922005-09-12 17:17:36 +1000521{
522 struct pci_bus *bus;
523 struct device_node *node = hose->arch_data;
524 int i, mode;
525 struct resource *res;
526
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100527 DBG("Scanning PHB %s\n", node ? node->full_name : "<NO NAME>");
528
Benjamin Herrenschmidt803d4572006-11-11 17:25:07 +1100529 bus = pci_create_bus(hose->parent, hose->first_busno, hose->ops, node);
Paul Mackerras42672922005-09-12 17:17:36 +1000530 if (bus == NULL) {
531 printk(KERN_ERR "Failed to create bus for PCI domain %04x\n",
532 hose->global_number);
533 return;
534 }
535 bus->secondary = hose->first_busno;
536 hose->bus = bus;
537
538 bus->resource[0] = res = &hose->io_resource;
539 if (res->flags && request_resource(&ioport_resource, res))
540 printk(KERN_ERR "Failed to request PCI IO region "
541 "on PCI domain %04x\n", hose->global_number);
542
543 for (i = 0; i < 3; ++i) {
544 res = &hose->mem_resources[i];
545 bus->resource[i+1] = res;
546 if (res->flags && request_resource(&iomem_resource, res))
547 printk(KERN_ERR "Failed to request PCI memory region "
548 "on PCI domain %04x\n", hose->global_number);
549 }
550
551 mode = PCI_PROBE_NORMAL;
s.hauer@pengutronix.de99a565b2006-11-02 13:56:06 +0100552
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100553 if (node && ppc_md.pci_probe_mode)
Paul Mackerras42672922005-09-12 17:17:36 +1000554 mode = ppc_md.pci_probe_mode(bus);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100555 DBG(" probe mode: %d\n", mode);
Paul Mackerras42672922005-09-12 17:17:36 +1000556 if (mode == PCI_PROBE_DEVTREE) {
557 bus->subordinate = hose->last_busno;
558 of_scan_bus(node, bus);
559 }
s.hauer@pengutronix.de99a565b2006-11-02 13:56:06 +0100560
Paul Mackerras42672922005-09-12 17:17:36 +1000561 if (mode == PCI_PROBE_NORMAL)
562 hose->last_busno = bus->subordinate = pci_scan_child_bus(bus);
Paul Mackerras42672922005-09-12 17:17:36 +1000563}
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565static int __init pcibios_init(void)
566{
567 struct pci_controller *hose, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 /* For now, override phys_mem_access_prot. If we need it,
570 * later, we may move that initialization to each ppc_md
571 */
572 ppc_md.phys_mem_access_prot = pci_phys_mem_access_prot;
573
Stephen Rothwelleecba332006-09-25 13:35:09 +1000574 if (firmware_has_feature(FW_FEATURE_ISERIES))
575 iSeries_pcibios_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Olof Johanssone884e9c2006-04-12 15:26:59 -0500577 printk(KERN_DEBUG "PCI: Probing PCI hardware\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 /* Scan all of the recorded PCI controllers. */
John Rose92eb4602006-03-14 17:46:45 -0600580 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
Paul Mackerras42672922005-09-12 17:17:36 +1000581 scan_phb(hose);
John Rose92eb4602006-03-14 17:46:45 -0600582 pci_bus_add_devices(hose->bus);
583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Stephen Rothwelleecba332006-09-25 13:35:09 +1000585 if (!firmware_has_feature(FW_FEATURE_ISERIES)) {
586 if (pci_probe_only)
587 pcibios_claim_of_setup();
588 else
589 /* FIXME: `else' will be removed when
590 pci_assign_unassigned_resources() is able to work
591 correctly with [partially] allocated PCI tree. */
592 pci_assign_unassigned_resources();
593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 /* Call machine dependent final fixup */
596 if (ppc_md.pcibios_fixup)
597 ppc_md.pcibios_fixup();
598
599 /* Cache the location of the ISA bridge (if we have one) */
600 ppc64_isabridge_dev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
601 if (ppc64_isabridge_dev != NULL)
Olof Johanssone884e9c2006-04-12 15:26:59 -0500602 printk(KERN_DEBUG "ISA bridge at %s\n", pci_name(ppc64_isabridge_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Stephen Rothwelleecba332006-09-25 13:35:09 +1000604 if (!firmware_has_feature(FW_FEATURE_ISERIES))
605 /* map in PCI I/O space */
606 phbs_remap_io();
Benjamin Herrenschmidt0f34f492005-11-10 15:04:24 +1100607
Benjamin Herrenschmidtde821202007-05-15 16:19:36 +1000608 pci_initial_scan_done = 1;
609
Olof Johanssone884e9c2006-04-12 15:26:59 -0500610 printk(KERN_DEBUG "PCI: Probing PCI hardware done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 return 0;
613}
614
615subsys_initcall(pcibios_init);
616
617char __init *pcibios_setup(char *str)
618{
619 return str;
620}
621
622int pcibios_enable_device(struct pci_dev *dev, int mask)
623{
624 u16 cmd, oldcmd;
625 int i;
626
627 pci_read_config_word(dev, PCI_COMMAND, &cmd);
628 oldcmd = cmd;
629
630 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
631 struct resource *res = &dev->resource[i];
632
633 /* Only set up the requested stuff */
634 if (!(mask & (1<<i)))
635 continue;
636
637 if (res->flags & IORESOURCE_IO)
638 cmd |= PCI_COMMAND_IO;
639 if (res->flags & IORESOURCE_MEM)
640 cmd |= PCI_COMMAND_MEMORY;
641 }
642
643 if (cmd != oldcmd) {
644 printk(KERN_DEBUG "PCI: Enabling device: (%s), cmd %x\n",
645 pci_name(dev), cmd);
646 /* Enable the appropriate bits in the PCI command register. */
647 pci_write_config_word(dev, PCI_COMMAND, cmd);
648 }
649 return 0;
650}
651
652/*
653 * Return the domain number for this bus.
654 */
655int pci_domain_nr(struct pci_bus *bus)
656{
Stephen Rothwelleecba332006-09-25 13:35:09 +1000657 if (firmware_has_feature(FW_FEATURE_ISERIES))
658 return 0;
659 else {
660 struct pci_controller *hose = pci_bus_to_host(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Stephen Rothwelleecba332006-09-25 13:35:09 +1000662 return hose->global_number;
663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
665
666EXPORT_SYMBOL(pci_domain_nr);
667
668/* Decide whether to display the domain number in /proc */
669int pci_proc_domain(struct pci_bus *bus)
670{
Stephen Rothwelleecba332006-09-25 13:35:09 +1000671 if (firmware_has_feature(FW_FEATURE_ISERIES))
672 return 0;
673 else {
674 struct pci_controller *hose = pci_bus_to_host(bus);
675 return hose->buid;
676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
679/*
680 * Platform support for /proc/bus/pci/X/Y mmap()s,
681 * modelled on the sparc64 implementation by Dave Miller.
682 * -- paulus.
683 */
684
685/*
686 * Adjust vm_pgoff of VMA such that it is the physical page offset
687 * corresponding to the 32-bit pci bus offset for DEV requested by the user.
688 *
689 * Basically, the user finds the base address for his device which he wishes
690 * to mmap. They read the 32-bit value from the config space base register,
691 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
692 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
693 *
694 * Returns negative error code on failure, zero on success.
695 */
696static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +1100697 resource_size_t *offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 enum pci_mmap_state mmap_state)
699{
700 struct pci_controller *hose = pci_bus_to_host(dev->bus);
701 unsigned long io_offset = 0;
702 int i, res_bit;
703
704 if (hose == 0)
705 return NULL; /* should never happen */
706
707 /* If memory, add on the PCI bridge address offset */
708 if (mmap_state == pci_mmap_mem) {
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +1100709#if 0 /* See comment in pci_resource_to_user() for why this is disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 *offset += hose->pci_mem_offset;
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +1100711#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 res_bit = IORESOURCE_MEM;
713 } else {
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000714 io_offset = (unsigned long)hose->io_base_virt - pci_io_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 *offset += io_offset;
716 res_bit = IORESOURCE_IO;
717 }
718
719 /*
720 * Check that the offset requested corresponds to one of the
721 * resources of the device.
722 */
723 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
724 struct resource *rp = &dev->resource[i];
725 int flags = rp->flags;
726
727 /* treat ROM as memory (should be already) */
728 if (i == PCI_ROM_RESOURCE)
729 flags |= IORESOURCE_MEM;
730
731 /* Active and same type? */
732 if ((flags & res_bit) == 0)
733 continue;
734
735 /* In the range of this resource? */
736 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
737 continue;
738
739 /* found it! construct the final physical address */
740 if (mmap_state == pci_mmap_io)
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000741 *offset += hose->io_base_phys - io_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return rp;
743 }
744
745 return NULL;
746}
747
748/*
749 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
750 * device mapping.
751 */
752static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
753 pgprot_t protection,
754 enum pci_mmap_state mmap_state,
755 int write_combine)
756{
757 unsigned long prot = pgprot_val(protection);
758
759 /* Write combine is always 0 on non-memory space mappings. On
760 * memory space, if the user didn't pass 1, we check for a
761 * "prefetchable" resource. This is a bit hackish, but we use
762 * this to workaround the inability of /sysfs to provide a write
763 * combine bit
764 */
765 if (mmap_state != pci_mmap_mem)
766 write_combine = 0;
767 else if (write_combine == 0) {
768 if (rp->flags & IORESOURCE_PREFETCH)
769 write_combine = 1;
770 }
771
772 /* XXX would be nice to have a way to ask for write-through */
773 prot |= _PAGE_NO_CACHE;
774 if (write_combine)
775 prot &= ~_PAGE_GUARDED;
776 else
777 prot |= _PAGE_GUARDED;
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return __pgprot(prot);
780}
781
782/*
783 * This one is used by /dev/mem and fbdev who have no clue about the
784 * PCI device, it tries to find the PCI device first and calls the
785 * above routine
786 */
787pgprot_t pci_phys_mem_access_prot(struct file *file,
Roland Dreier8b150472005-10-28 17:46:18 -0700788 unsigned long pfn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 unsigned long size,
790 pgprot_t protection)
791{
792 struct pci_dev *pdev = NULL;
793 struct resource *found = NULL;
794 unsigned long prot = pgprot_val(protection);
Roland Dreier8b150472005-10-28 17:46:18 -0700795 unsigned long offset = pfn << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 int i;
797
Roland Dreier8b150472005-10-28 17:46:18 -0700798 if (page_is_ram(pfn))
David Gibson1f8d4192005-05-05 16:15:13 -0700799 return __pgprot(prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 prot |= _PAGE_NO_CACHE | _PAGE_GUARDED;
802
803 for_each_pci_dev(pdev) {
804 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
805 struct resource *rp = &pdev->resource[i];
806 int flags = rp->flags;
807
808 /* Active and same type? */
809 if ((flags & IORESOURCE_MEM) == 0)
810 continue;
811 /* In the range of this resource? */
812 if (offset < (rp->start & PAGE_MASK) ||
813 offset > rp->end)
814 continue;
815 found = rp;
816 break;
817 }
818 if (found)
819 break;
820 }
821 if (found) {
822 if (found->flags & IORESOURCE_PREFETCH)
823 prot &= ~_PAGE_GUARDED;
824 pci_dev_put(pdev);
825 }
826
827 DBG("non-PCI map for %lx, prot: %lx\n", offset, prot);
828
829 return __pgprot(prot);
830}
831
832
833/*
834 * Perform the actual remap of the pages for a PCI device mapping, as
835 * appropriate for this architecture. The region in the process to map
836 * is described by vm_start and vm_end members of VMA, the base physical
837 * address is found in vm_pgoff.
838 * The pci device structure is provided so that architectures may make mapping
839 * decisions on a per-device or per-bus basis.
840 *
841 * Returns a negative error code on failure, zero on success.
842 */
843int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100844 enum pci_mmap_state mmap_state, int write_combine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +1100846 resource_size_t offset = vma->vm_pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 struct resource *rp;
848 int ret;
849
850 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
851 if (rp == NULL)
852 return -EINVAL;
853
854 vma->vm_pgoff = offset >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
856 vma->vm_page_prot,
857 mmap_state, write_combine);
858
859 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
860 vma->vm_end - vma->vm_start, vma->vm_page_prot);
861
862 return ret;
863}
864
Stephen Rothwellefbd3862006-05-19 16:53:11 +1000865static ssize_t pci_show_devspec(struct device *dev,
866 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
868 struct pci_dev *pdev;
869 struct device_node *np;
870
871 pdev = to_pci_dev (dev);
872 np = pci_device_to_OF_node(pdev);
873 if (np == NULL || np->full_name == NULL)
874 return 0;
875 return sprintf(buf, "%s", np->full_name);
876}
877static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879void pcibios_add_platform_entries(struct pci_dev *pdev)
880{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 device_create_file(&pdev->dev, &dev_attr_devspec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884#define ISA_SPACE_MASK 0x1
885#define ISA_SPACE_IO 0x1
886
887static void __devinit pci_process_ISA_OF_ranges(struct device_node *isa_node,
888 unsigned long phb_io_base_phys,
889 void __iomem * phb_io_base_virt)
890{
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100891 /* Remove these asap */
892
893 struct pci_address {
894 u32 a_hi;
895 u32 a_mid;
896 u32 a_lo;
897 };
898
899 struct isa_address {
900 u32 a_hi;
901 u32 a_lo;
902 };
903
904 struct isa_range {
905 struct isa_address isa_addr;
906 struct pci_address pci_addr;
907 unsigned int size;
908 };
909
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000910 const struct isa_range *range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 unsigned long pci_addr;
912 unsigned int isa_addr;
913 unsigned int size;
914 int rlen = 0;
915
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000916 range = of_get_property(isa_node, "ranges", &rlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (range == NULL || (rlen < sizeof(struct isa_range))) {
918 printk(KERN_ERR "no ISA ranges or unexpected isa range size,"
919 "mapping 64k\n");
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700920 __ioremap_explicit(phb_io_base_phys,
921 (unsigned long)phb_io_base_virt,
922 0x10000, _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 return;
924 }
925
926 /* From "ISA Binding to 1275"
927 * The ranges property is laid out as an array of elements,
928 * each of which comprises:
929 * cells 0 - 1: an ISA address
930 * cells 2 - 4: a PCI address
931 * (size depending on dev->n_addr_cells)
932 * cell 5: the size of the range
933 */
934 if ((range->isa_addr.a_hi && ISA_SPACE_MASK) == ISA_SPACE_IO) {
935 isa_addr = range->isa_addr.a_lo;
936 pci_addr = (unsigned long) range->pci_addr.a_mid << 32 |
937 range->pci_addr.a_lo;
938
939 /* Assume these are both zero */
940 if ((pci_addr != 0) || (isa_addr != 0)) {
941 printk(KERN_ERR "unexpected isa to pci mapping: %s\n",
942 __FUNCTION__);
943 return;
944 }
945
946 size = PAGE_ALIGN(range->size);
947
948 __ioremap_explicit(phb_io_base_phys,
949 (unsigned long) phb_io_base_virt,
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700950 size, _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
952}
953
954void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000955 struct device_node *dev, int prim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000957 const unsigned int *ranges;
958 unsigned int pci_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 unsigned long size;
960 int rlen = 0;
961 int memno = 0;
962 struct resource *res;
Stephen Rothwella8bda5d2007-04-03 10:56:50 +1000963 int np, na = of_n_addr_cells(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 unsigned long pci_addr, cpu_phys_addr;
965
966 np = na + 5;
967
968 /* From "PCI Binding to 1275"
969 * The ranges property is laid out as an array of elements,
970 * each of which comprises:
971 * cells 0 - 2: a PCI address
972 * cells 3 or 3+4: a CPU physical address
973 * (size depending on dev->n_addr_cells)
974 * cells 4+5 or 5+6: the size of the range
975 */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000976 ranges = of_get_property(dev, "ranges", &rlen);
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100977 if (ranges == NULL)
978 return;
979 hose->io_base_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 while ((rlen -= np * sizeof(unsigned int)) >= 0) {
981 res = NULL;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000982 pci_space = ranges[0];
983 pci_addr = ((unsigned long)ranges[1] << 32) | ranges[2];
Benjamin Herrenschmidte557a1c2006-11-11 17:25:05 +1100984 cpu_phys_addr = of_translate_address(dev, &ranges[3]);
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000985 size = ((unsigned long)ranges[na+3] << 32) | ranges[na+4];
986 ranges += np;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (size == 0)
988 continue;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000989
990 /* Now consume following elements while they are contiguous */
991 while (rlen >= np * sizeof(unsigned int)) {
992 unsigned long addr, phys;
993
994 if (ranges[0] != pci_space)
995 break;
996 addr = ((unsigned long)ranges[1] << 32) | ranges[2];
997 phys = ranges[3];
998 if (na >= 2)
999 phys = (phys << 32) | ranges[4];
1000 if (addr != pci_addr + size ||
1001 phys != cpu_phys_addr + size)
1002 break;
1003
1004 size += ((unsigned long)ranges[na+3] << 32)
1005 | ranges[na+4];
1006 ranges += np;
1007 rlen -= np * sizeof(unsigned int);
1008 }
1009
1010 switch ((pci_space >> 24) & 0x3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 case 1: /* I/O space */
Paul Mackerras11fbb002007-05-07 15:16:23 +10001012 hose->io_base_phys = cpu_phys_addr - pci_addr;
1013 /* handle from 0 to top of I/O window */
1014 hose->pci_io_size = pci_addr + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 res = &hose->io_resource;
1017 res->flags = IORESOURCE_IO;
1018 res->start = pci_addr;
1019 DBG("phb%d: IO 0x%lx -> 0x%lx\n", hose->global_number,
1020 res->start, res->start + size - 1);
1021 break;
1022 case 2: /* memory space */
1023 memno = 0;
1024 while (memno < 3 && hose->mem_resources[memno].flags)
1025 ++memno;
1026
1027 if (memno == 0)
1028 hose->pci_mem_offset = cpu_phys_addr - pci_addr;
1029 if (memno < 3) {
1030 res = &hose->mem_resources[memno];
1031 res->flags = IORESOURCE_MEM;
1032 res->start = cpu_phys_addr;
1033 DBG("phb%d: MEM 0x%lx -> 0x%lx\n", hose->global_number,
1034 res->start, res->start + size - 1);
1035 }
1036 break;
1037 }
1038 if (res != NULL) {
1039 res->name = dev->full_name;
1040 res->end = res->start + size - 1;
1041 res->parent = NULL;
1042 res->sibling = NULL;
1043 res->child = NULL;
1044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046}
1047
Benjamin Herrenschmidtde821202007-05-15 16:19:36 +10001048void __devinit pci_setup_phb_io(struct pci_controller *hose, int primary)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
1050 unsigned long size = hose->pci_io_size;
1051 unsigned long io_virt_offset;
1052 struct resource *res;
1053 struct device_node *isa_dn;
1054
Benjamin Herrenschmidtde821202007-05-15 16:19:36 +10001055 if (size == 0)
1056 return;
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 hose->io_base_virt = reserve_phb_iospace(size);
1059 DBG("phb%d io_base_phys 0x%lx io_base_virt 0x%lx\n",
1060 hose->global_number, hose->io_base_phys,
1061 (unsigned long) hose->io_base_virt);
1062
1063 if (primary) {
1064 pci_io_base = (unsigned long)hose->io_base_virt;
1065 isa_dn = of_find_node_by_type(NULL, "isa");
1066 if (isa_dn) {
1067 isa_io_base = pci_io_base;
1068 pci_process_ISA_OF_ranges(isa_dn, hose->io_base_phys,
1069 hose->io_base_virt);
1070 of_node_put(isa_dn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
1072 }
1073
1074 io_virt_offset = (unsigned long)hose->io_base_virt - pci_io_base;
1075 res = &hose->io_resource;
1076 res->start += io_virt_offset;
1077 res->end += io_virt_offset;
Benjamin Herrenschmidtde821202007-05-15 16:19:36 +10001078
1079 /* If this is called after the initial PCI scan, then we need to
1080 * proceed to IO mappings now
1081 */
1082 if (pci_initial_scan_done)
1083 __ioremap_explicit(hose->io_base_phys,
1084 (unsigned long)hose->io_base_virt,
1085 hose->pci_io_size,
1086 _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
1089void __devinit pci_setup_phb_io_dynamic(struct pci_controller *hose,
1090 int primary)
1091{
1092 unsigned long size = hose->pci_io_size;
1093 unsigned long io_virt_offset;
1094 struct resource *res;
1095
Benjamin Herrenschmidtde821202007-05-15 16:19:36 +10001096 if (size == 0)
1097 return;
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 hose->io_base_virt = __ioremap(hose->io_base_phys, size,
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -07001100 _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 DBG("phb%d io_base_phys 0x%lx io_base_virt 0x%lx\n",
1102 hose->global_number, hose->io_base_phys,
1103 (unsigned long) hose->io_base_virt);
1104
1105 if (primary)
1106 pci_io_base = (unsigned long)hose->io_base_virt;
1107
1108 io_virt_offset = (unsigned long)hose->io_base_virt - pci_io_base;
1109 res = &hose->io_resource;
1110 res->start += io_virt_offset;
1111 res->end += io_virt_offset;
1112}
1113
1114
1115static int get_bus_io_range(struct pci_bus *bus, unsigned long *start_phys,
1116 unsigned long *start_virt, unsigned long *size)
1117{
1118 struct pci_controller *hose = pci_bus_to_host(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 struct resource *res;
1120
Paul Mackerras31e92e02007-05-09 21:47:15 +10001121 if (bus->self)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 res = bus->resource[0];
Paul Mackerras31e92e02007-05-09 21:47:15 +10001123 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 /* Root Bus */
1125 res = &hose->io_resource;
Paul Mackerras31e92e02007-05-09 21:47:15 +10001126
Benjamin Herrenschmidtde821202007-05-15 16:19:36 +10001127 if (res->end == 0 && res->start == 0)
1128 return 1;
1129
Paul Mackerras31e92e02007-05-09 21:47:15 +10001130 *start_virt = pci_io_base + res->start;
1131 *start_phys = *start_virt + hose->io_base_phys
1132 - (unsigned long) hose->io_base_virt;
1133
1134 if (res->end > res->start)
1135 *size = res->end - res->start + 1;
1136 else {
1137 printk("%s(): unexpected region 0x%lx->0x%lx\n",
1138 __FUNCTION__, res->start, res->end);
1139 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
1141
1142 return 0;
1143}
1144
1145int unmap_bus_range(struct pci_bus *bus)
1146{
1147 unsigned long start_phys;
1148 unsigned long start_virt;
1149 unsigned long size;
1150
1151 if (!bus) {
1152 printk(KERN_ERR "%s() expected bus\n", __FUNCTION__);
1153 return 1;
1154 }
1155
1156 if (get_bus_io_range(bus, &start_phys, &start_virt, &size))
1157 return 1;
Benjamin Herrenschmidt4cb3cee2006-11-11 17:25:10 +11001158 if (__iounmap_explicit((void __iomem *) start_virt, size))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return 1;
1160
1161 return 0;
1162}
1163EXPORT_SYMBOL(unmap_bus_range);
1164
1165int remap_bus_range(struct pci_bus *bus)
1166{
1167 unsigned long start_phys;
1168 unsigned long start_virt;
1169 unsigned long size;
1170
1171 if (!bus) {
1172 printk(KERN_ERR "%s() expected bus\n", __FUNCTION__);
1173 return 1;
1174 }
1175
1176
1177 if (get_bus_io_range(bus, &start_phys, &start_virt, &size))
1178 return 1;
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +11001179 if (start_phys == 0)
1180 return 1;
Olof Johanssone884e9c2006-04-12 15:26:59 -05001181 printk(KERN_DEBUG "mapping IO %lx -> %lx, size: %lx\n", start_phys, start_virt, size);
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -07001182 if (__ioremap_explicit(start_phys, start_virt, size,
1183 _PAGE_NO_CACHE | _PAGE_GUARDED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 return 1;
1185
1186 return 0;
1187}
1188EXPORT_SYMBOL(remap_bus_range);
1189
Stephen Rothwell9623b5d2006-01-12 14:18:28 +11001190static void phbs_remap_io(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191{
1192 struct pci_controller *hose, *tmp;
1193
1194 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1195 remap_bus_range(hose->bus);
1196}
1197
Paul Mackerras42672922005-09-12 17:17:36 +10001198static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev)
1199{
1200 struct pci_controller *hose = pci_bus_to_host(dev->bus);
Anton Blanchardc256f4b2006-04-07 15:23:03 +10001201 unsigned long offset;
Paul Mackerras42672922005-09-12 17:17:36 +10001202
1203 if (res->flags & IORESOURCE_IO) {
1204 offset = (unsigned long)hose->io_base_virt - pci_io_base;
1205
Anton Blanchardc256f4b2006-04-07 15:23:03 +10001206 res->start += offset;
1207 res->end += offset;
Paul Mackerras42672922005-09-12 17:17:36 +10001208 } else if (res->flags & IORESOURCE_MEM) {
1209 res->start += hose->pci_mem_offset;
1210 res->end += hose->pci_mem_offset;
1211 }
1212}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214void __devinit pcibios_fixup_device_resources(struct pci_dev *dev,
Paul Mackerras42672922005-09-12 17:17:36 +10001215 struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
1217 /* Update device resources. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 int i;
1219
Paul Mackerras42672922005-09-12 17:17:36 +10001220 for (i = 0; i < PCI_NUM_RESOURCES; i++)
1221 if (dev->resource[i].flags)
1222 fixup_resource(&dev->resource[i], dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223}
1224EXPORT_SYMBOL(pcibios_fixup_device_resources);
1225
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001226void __devinit pcibios_setup_new_device(struct pci_dev *dev)
1227{
1228 struct dev_archdata *sd = &dev->dev.archdata;
1229
1230 sd->of_node = pci_device_to_OF_node(dev);
1231
1232 DBG("PCI device %s OF node: %s\n", pci_name(dev),
1233 sd->of_node ? sd->of_node->full_name : "<none>");
1234
1235 sd->dma_ops = pci_dma_ops;
1236#ifdef CONFIG_NUMA
1237 sd->numa_node = pcibus_to_node(dev->bus);
1238#else
1239 sd->numa_node = -1;
1240#endif
1241 if (ppc_md.pci_dma_dev_setup)
1242 ppc_md.pci_dma_dev_setup(dev);
1243}
1244EXPORT_SYMBOL(pcibios_setup_new_device);
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +11001245
Paul Mackerras42672922005-09-12 17:17:36 +10001246static void __devinit do_bus_setup(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Paul Mackerras42672922005-09-12 17:17:36 +10001248 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001250 if (ppc_md.pci_dma_bus_setup)
1251 ppc_md.pci_dma_bus_setup(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 list_for_each_entry(dev, &bus->devices, bus_list)
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001254 pcibios_setup_new_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +11001256 /* Read default IRQs and fixup if necessary */
1257 list_for_each_entry(dev, &bus->devices, bus_list) {
1258 pci_read_irq_line(dev);
1259 if (ppc_md.pci_irq_fixup)
1260 ppc_md.pci_irq_fixup(dev);
1261 }
Paul Mackerras42672922005-09-12 17:17:36 +10001262}
1263
1264void __devinit pcibios_fixup_bus(struct pci_bus *bus)
1265{
1266 struct pci_dev *dev = bus->self;
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +11001267 struct device_node *np;
1268
1269 np = pci_bus_to_OF_node(bus);
1270
1271 DBG("pcibios_fixup_bus(%s)\n", np ? np->full_name : "<???>");
Paul Mackerras42672922005-09-12 17:17:36 +10001272
1273 if (dev && pci_probe_only &&
1274 (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
1275 /* This is a subordinate bridge */
1276
1277 pci_read_bridge_bases(bus);
1278 pcibios_fixup_device_resources(dev, bus);
1279 }
1280
1281 do_bus_setup(bus);
John Rosedad32bb2005-06-23 17:09:54 +10001282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 if (!pci_probe_only)
1284 return;
1285
Paul Mackerras42672922005-09-12 17:17:36 +10001286 list_for_each_entry(dev, &bus->devices, bus_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1288 pcibios_fixup_device_resources(dev, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289}
1290EXPORT_SYMBOL(pcibios_fixup_bus);
1291
1292/*
1293 * Reads the interrupt pin to determine if interrupt is use by card.
1294 * If the interrupt is used, then gets the interrupt line from the
1295 * openfirmware and sets it in the pci_dev and pci_config line.
1296 */
1297int pci_read_irq_line(struct pci_dev *pci_dev)
1298{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001299 struct of_irq oirq;
1300 unsigned int virq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001302 DBG("Try to map irq for %s...\n", pci_name(pci_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +10001304#ifdef DEBUG
1305 memset(&oirq, 0xff, sizeof(oirq));
1306#endif
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001307 /* Try to get a mapping from the device-tree */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001308 if (of_irq_map_pci(pci_dev, &oirq)) {
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001309 u8 line, pin;
1310
1311 /* If that fails, lets fallback to what is in the config
1312 * space and map that through the default controller. We
1313 * also set the type to level low since that's what PCI
1314 * interrupts are. If your platform does differently, then
1315 * either provide a proper interrupt tree or don't use this
1316 * function.
1317 */
1318 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
1319 return -1;
1320 if (pin == 0)
1321 return -1;
1322 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
1323 line == 0xff) {
1324 return -1;
1325 }
1326 DBG(" -> no map ! Using irq line %d from PCI config\n", line);
1327
1328 virq = irq_create_mapping(NULL, line);
1329 if (virq != NO_IRQ)
1330 set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
1331 } else {
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +10001332 DBG(" -> got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
1333 oirq.size, oirq.specifier[0], oirq.specifier[1],
1334 oirq.controller->full_name);
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001335
1336 virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
1337 oirq.size);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001338 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001339 if(virq == NO_IRQ) {
1340 DBG(" -> failed to map !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 return -1;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001342 }
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +10001343
1344 DBG(" -> mapped to linux irq %d\n", virq);
1345
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001346 pci_dev->irq = virq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 return 0;
1349}
1350EXPORT_SYMBOL(pci_read_irq_line);
1351
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001352void pci_resource_to_user(const struct pci_dev *dev, int bar,
1353 const struct resource *rsrc,
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001354 resource_size_t *start, resource_size_t *end)
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001355{
1356 struct pci_controller *hose = pci_bus_to_host(dev->bus);
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001357 resource_size_t offset = 0;
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001358
1359 if (hose == NULL)
1360 return;
1361
1362 if (rsrc->flags & IORESOURCE_IO)
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001363 offset = (unsigned long)hose->io_base_virt - pci_io_base;
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001364
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001365 /* We pass a fully fixed up address to userland for MMIO instead of
1366 * a BAR value because X is lame and expects to be able to use that
1367 * to pass to /dev/mem !
1368 *
1369 * That means that we'll have potentially 64 bits values where some
1370 * userland apps only expect 32 (like X itself since it thinks only
1371 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
1372 * 32 bits CHRPs :-(
1373 *
1374 * Hopefully, the sysfs insterface is immune to that gunk. Once X
1375 * has been fixed (and the fix spread enough), we can re-enable the
1376 * 2 lines below and pass down a BAR value to userland. In that case
1377 * we'll also have to re-enable the matching code in
1378 * __pci_mmap_make_offset().
1379 *
1380 * BenH.
1381 */
1382#if 0
1383 else if (rsrc->flags & IORESOURCE_MEM)
1384 offset = hose->pci_mem_offset;
1385#endif
1386
1387 *start = rsrc->start - offset;
1388 *end = rsrc->end - offset;
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001389}
1390
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +11001391struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
1392{
1393 if (!have_of)
1394 return NULL;
1395 while(node) {
1396 struct pci_controller *hose, *tmp;
1397 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1398 if (hose->arch_data == node)
1399 return hose;
1400 node = node->parent;
1401 }
1402 return NULL;
1403}
1404
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +11001405unsigned long pci_address_to_pio(phys_addr_t address)
Stephen Rothwelld4e4b352005-12-07 13:01:05 +11001406{
1407 struct pci_controller *hose, *tmp;
1408
1409 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1410 if (address >= hose->io_base_phys &&
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +11001411 address < (hose->io_base_phys + hose->pci_io_size)) {
1412 unsigned long base =
1413 (unsigned long)hose->io_base_virt - pci_io_base;
1414 return base + (address - hose->io_base_phys);
1415 }
Stephen Rothwelld4e4b352005-12-07 13:01:05 +11001416 }
1417 return (unsigned int)-1;
1418}
1419EXPORT_SYMBOL_GPL(pci_address_to_pio);
1420
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001421
1422#define IOBASE_BRIDGE_NUMBER 0
1423#define IOBASE_MEMORY 1
1424#define IOBASE_IO 2
1425#define IOBASE_ISA_IO 3
1426#define IOBASE_ISA_MEM 4
1427
1428long sys_pciconfig_iobase(long which, unsigned long in_bus,
1429 unsigned long in_devfn)
1430{
1431 struct pci_controller* hose;
1432 struct list_head *ln;
1433 struct pci_bus *bus = NULL;
1434 struct device_node *hose_node;
1435
1436 /* Argh ! Please forgive me for that hack, but that's the
1437 * simplest way to get existing XFree to not lockup on some
1438 * G5 machines... So when something asks for bus 0 io base
1439 * (bus 0 is HT root), we return the AGP one instead.
1440 */
Paul Mackerras799d6042005-11-10 13:37:51 +11001441 if (machine_is_compatible("MacRISC4"))
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001442 if (in_bus == 0)
1443 in_bus = 0xf0;
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001444
1445 /* That syscall isn't quite compatible with PCI domains, but it's
1446 * used on pre-domains setup. We return the first match
1447 */
1448
1449 for (ln = pci_root_buses.next; ln != &pci_root_buses; ln = ln->next) {
1450 bus = pci_bus_b(ln);
Benjamin Herrenschmidt545da942007-01-28 07:45:53 +11001451 if (in_bus >= bus->number && in_bus <= bus->subordinate)
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001452 break;
1453 bus = NULL;
1454 }
1455 if (bus == NULL || bus->sysdata == NULL)
1456 return -ENODEV;
1457
1458 hose_node = (struct device_node *)bus->sysdata;
1459 hose = PCI_DN(hose_node)->phb;
1460
1461 switch (which) {
1462 case IOBASE_BRIDGE_NUMBER:
1463 return (long)hose->first_busno;
1464 case IOBASE_MEMORY:
1465 return (long)hose->pci_mem_offset;
1466 case IOBASE_IO:
1467 return (long)hose->io_base_phys;
1468 case IOBASE_ISA_IO:
1469 return (long)isa_io_base;
1470 case IOBASE_ISA_MEM:
1471 return -EINVAL;
1472 }
1473
1474 return -EOPNOTSUPP;
1475}
Anton Blanchard357518f2006-06-10 20:53:06 +10001476
1477#ifdef CONFIG_NUMA
1478int pcibus_to_node(struct pci_bus *bus)
1479{
1480 struct pci_controller *phb = pci_bus_to_host(bus);
1481 return phb->node;
1482}
1483EXPORT_SYMBOL(pcibus_to_node);
1484#endif