blob: ec5f85b030efb71c62b068f585f2f8f4db65c7d8 [file] [log] [blame]
David S. Millera2fb23a2007-02-28 23:35:04 -08001/* pci.c: UltraSparc PCI controller support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (C) 1997, 1998, 1999 David S. Miller (davem@redhat.com)
4 * Copyright (C) 1998, 1999 Eddie C. Dost (ecd@skynet.be)
5 * Copyright (C) 1999 Jakub Jelinek (jj@ultra.linux.cz)
David S. Millera2fb23a2007-02-28 23:35:04 -08006 *
7 * OF tree based PCI bus probing taken from the PowerPC port
8 * with minor modifications, see there for credits.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/kernel.h>
13#include <linux/string.h>
14#include <linux/sched.h>
15#include <linux/capability.h>
16#include <linux/errno.h>
17#include <linux/smp_lock.h>
David S. Miller35a17eb2007-02-10 17:41:02 -080018#include <linux/msi.h>
19#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/init.h>
21
22#include <asm/uaccess.h>
23#include <asm/pbm.h>
24#include <asm/pgtable.h>
25#include <asm/irq.h>
26#include <asm/ebus.h>
27#include <asm/isa.h>
David S. Millere87dc352006-06-21 18:18:47 -070028#include <asm/prom.h>
David S. Miller01f94c42007-03-04 12:53:19 -080029#include <asm/apb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
David S. Miller1e8a8cc2007-02-28 23:38:38 -080031#include "pci_impl.h"
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033unsigned long pci_memspace_mask = 0xffffffffUL;
34
35#ifndef CONFIG_PCI
36/* A "nop" PCI implementation. */
37asmlinkage int sys_pciconfig_read(unsigned long bus, unsigned long dfn,
38 unsigned long off, unsigned long len,
39 unsigned char *buf)
40{
41 return 0;
42}
43asmlinkage int sys_pciconfig_write(unsigned long bus, unsigned long dfn,
44 unsigned long off, unsigned long len,
45 unsigned char *buf)
46{
47 return 0;
48}
49#else
50
51/* List of all PCI controllers found in the system. */
52struct pci_controller_info *pci_controller_root = NULL;
53
54/* Each PCI controller found gets a unique index. */
55int pci_num_controllers = 0;
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057volatile int pci_poke_in_progress;
58volatile int pci_poke_cpu = -1;
59volatile int pci_poke_faulted;
60
61static DEFINE_SPINLOCK(pci_poke_lock);
62
63void pci_config_read8(u8 *addr, u8 *ret)
64{
65 unsigned long flags;
66 u8 byte;
67
68 spin_lock_irqsave(&pci_poke_lock, flags);
69 pci_poke_cpu = smp_processor_id();
70 pci_poke_in_progress = 1;
71 pci_poke_faulted = 0;
72 __asm__ __volatile__("membar #Sync\n\t"
73 "lduba [%1] %2, %0\n\t"
74 "membar #Sync"
75 : "=r" (byte)
76 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
77 : "memory");
78 pci_poke_in_progress = 0;
79 pci_poke_cpu = -1;
80 if (!pci_poke_faulted)
81 *ret = byte;
82 spin_unlock_irqrestore(&pci_poke_lock, flags);
83}
84
85void pci_config_read16(u16 *addr, u16 *ret)
86{
87 unsigned long flags;
88 u16 word;
89
90 spin_lock_irqsave(&pci_poke_lock, flags);
91 pci_poke_cpu = smp_processor_id();
92 pci_poke_in_progress = 1;
93 pci_poke_faulted = 0;
94 __asm__ __volatile__("membar #Sync\n\t"
95 "lduha [%1] %2, %0\n\t"
96 "membar #Sync"
97 : "=r" (word)
98 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
99 : "memory");
100 pci_poke_in_progress = 0;
101 pci_poke_cpu = -1;
102 if (!pci_poke_faulted)
103 *ret = word;
104 spin_unlock_irqrestore(&pci_poke_lock, flags);
105}
106
107void pci_config_read32(u32 *addr, u32 *ret)
108{
109 unsigned long flags;
110 u32 dword;
111
112 spin_lock_irqsave(&pci_poke_lock, flags);
113 pci_poke_cpu = smp_processor_id();
114 pci_poke_in_progress = 1;
115 pci_poke_faulted = 0;
116 __asm__ __volatile__("membar #Sync\n\t"
117 "lduwa [%1] %2, %0\n\t"
118 "membar #Sync"
119 : "=r" (dword)
120 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
121 : "memory");
122 pci_poke_in_progress = 0;
123 pci_poke_cpu = -1;
124 if (!pci_poke_faulted)
125 *ret = dword;
126 spin_unlock_irqrestore(&pci_poke_lock, flags);
127}
128
129void pci_config_write8(u8 *addr, u8 val)
130{
131 unsigned long flags;
132
133 spin_lock_irqsave(&pci_poke_lock, flags);
134 pci_poke_cpu = smp_processor_id();
135 pci_poke_in_progress = 1;
136 pci_poke_faulted = 0;
137 __asm__ __volatile__("membar #Sync\n\t"
138 "stba %0, [%1] %2\n\t"
139 "membar #Sync"
140 : /* no outputs */
141 : "r" (val), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
142 : "memory");
143 pci_poke_in_progress = 0;
144 pci_poke_cpu = -1;
145 spin_unlock_irqrestore(&pci_poke_lock, flags);
146}
147
148void pci_config_write16(u16 *addr, u16 val)
149{
150 unsigned long flags;
151
152 spin_lock_irqsave(&pci_poke_lock, flags);
153 pci_poke_cpu = smp_processor_id();
154 pci_poke_in_progress = 1;
155 pci_poke_faulted = 0;
156 __asm__ __volatile__("membar #Sync\n\t"
157 "stha %0, [%1] %2\n\t"
158 "membar #Sync"
159 : /* no outputs */
160 : "r" (val), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
161 : "memory");
162 pci_poke_in_progress = 0;
163 pci_poke_cpu = -1;
164 spin_unlock_irqrestore(&pci_poke_lock, flags);
165}
166
167void pci_config_write32(u32 *addr, u32 val)
168{
169 unsigned long flags;
170
171 spin_lock_irqsave(&pci_poke_lock, flags);
172 pci_poke_cpu = smp_processor_id();
173 pci_poke_in_progress = 1;
174 pci_poke_faulted = 0;
175 __asm__ __volatile__("membar #Sync\n\t"
176 "stwa %0, [%1] %2\n\t"
177 "membar #Sync"
178 : /* no outputs */
179 : "r" (val), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
180 : "memory");
181 pci_poke_in_progress = 0;
182 pci_poke_cpu = -1;
183 spin_unlock_irqrestore(&pci_poke_lock, flags);
184}
185
186/* Probe for all PCI controllers in the system. */
David S. Millere87dc352006-06-21 18:18:47 -0700187extern void sabre_init(struct device_node *, const char *);
188extern void psycho_init(struct device_node *, const char *);
189extern void schizo_init(struct device_node *, const char *);
190extern void schizo_plus_init(struct device_node *, const char *);
191extern void tomatillo_init(struct device_node *, const char *);
192extern void sun4v_pci_init(struct device_node *, const char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194static struct {
195 char *model_name;
David S. Millere87dc352006-06-21 18:18:47 -0700196 void (*init)(struct device_node *, const char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197} pci_controller_table[] __initdata = {
198 { "SUNW,sabre", sabre_init },
199 { "pci108e,a000", sabre_init },
200 { "pci108e,a001", sabre_init },
201 { "SUNW,psycho", psycho_init },
202 { "pci108e,8000", psycho_init },
203 { "SUNW,schizo", schizo_init },
204 { "pci108e,8001", schizo_init },
205 { "SUNW,schizo+", schizo_plus_init },
206 { "pci108e,8002", schizo_plus_init },
207 { "SUNW,tomatillo", tomatillo_init },
208 { "pci108e,a801", tomatillo_init },
David S. Miller8f6a93a2006-02-09 21:32:07 -0800209 { "SUNW,sun4v-pci", sun4v_pci_init },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210};
211#define PCI_NUM_CONTROLLER_TYPES (sizeof(pci_controller_table) / \
212 sizeof(pci_controller_table[0]))
213
David S. Millere87dc352006-06-21 18:18:47 -0700214static int __init pci_controller_init(const char *model_name, int namelen, struct device_node *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 int i;
217
218 for (i = 0; i < PCI_NUM_CONTROLLER_TYPES; i++) {
219 if (!strncmp(model_name,
220 pci_controller_table[i].model_name,
221 namelen)) {
David S. Millere87dc352006-06-21 18:18:47 -0700222 pci_controller_table[i].init(dp, model_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return 1;
224 }
225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 return 0;
228}
229
David S. Millere87dc352006-06-21 18:18:47 -0700230static int __init pci_is_controller(const char *model_name, int namelen, struct device_node *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 int i;
233
234 for (i = 0; i < PCI_NUM_CONTROLLER_TYPES; i++) {
235 if (!strncmp(model_name,
236 pci_controller_table[i].model_name,
237 namelen)) {
238 return 1;
239 }
240 }
241 return 0;
242}
243
David S. Millere87dc352006-06-21 18:18:47 -0700244static int __init pci_controller_scan(int (*handler)(const char *, int, struct device_node *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
David S. Millere87dc352006-06-21 18:18:47 -0700246 struct device_node *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 int count = 0;
248
David S. Millere87dc352006-06-21 18:18:47 -0700249 for_each_node_by_name(dp, "pci") {
250 struct property *prop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 int len;
252
David S. Millere87dc352006-06-21 18:18:47 -0700253 prop = of_find_property(dp, "model", &len);
254 if (!prop)
255 prop = of_find_property(dp, "compatible", &len);
256
257 if (prop) {
258 const char *model = prop->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 int item_len = 0;
260
261 /* Our value may be a multi-valued string in the
262 * case of some compatible properties. For sanity,
David S. Millere87dc352006-06-21 18:18:47 -0700263 * only try the first one.
264 */
265 while (model[item_len] && len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 len--;
267 item_len++;
268 }
269
David S. Millere87dc352006-06-21 18:18:47 -0700270 if (handler(model, item_len, dp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 count++;
272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
274
275 return count;
276}
277
278
279/* Is there some PCI controller in the system? */
280int __init pcic_present(void)
281{
282 return pci_controller_scan(pci_is_controller);
283}
284
David S. Millerc6e87562007-03-09 16:58:43 -0800285const struct pci_iommu_ops *pci_iommu_ops;
David S. Miller8f6a93a2006-02-09 21:32:07 -0800286EXPORT_SYMBOL(pci_iommu_ops);
287
David S. Millerc6e87562007-03-09 16:58:43 -0800288extern const struct pci_iommu_ops pci_sun4u_iommu_ops,
David S. Miller8f6a93a2006-02-09 21:32:07 -0800289 pci_sun4v_iommu_ops;
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/* Find each controller in the system, attach and initialize
292 * software state structure for each and link into the
293 * pci_controller_root. Setup the controller enough such
294 * that bus scanning can be done.
295 */
296static void __init pci_controller_probe(void)
297{
David S. Miller8f6a93a2006-02-09 21:32:07 -0800298 if (tlb_type == hypervisor)
299 pci_iommu_ops = &pci_sun4v_iommu_ops;
300 else
301 pci_iommu_ops = &pci_sun4u_iommu_ops;
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 printk("PCI: Probing for controllers.\n");
304
305 pci_controller_scan(pci_controller_init);
306}
307
David S. Millera2fb23a2007-02-28 23:35:04 -0800308static unsigned long pci_parse_of_flags(u32 addr0)
309{
310 unsigned long flags = 0;
311
312 if (addr0 & 0x02000000) {
313 flags = IORESOURCE_MEM | PCI_BASE_ADDRESS_SPACE_MEMORY;
314 flags |= (addr0 >> 22) & PCI_BASE_ADDRESS_MEM_TYPE_64;
315 flags |= (addr0 >> 28) & PCI_BASE_ADDRESS_MEM_TYPE_1M;
316 if (addr0 & 0x40000000)
317 flags |= IORESOURCE_PREFETCH
318 | PCI_BASE_ADDRESS_MEM_PREFETCH;
319 } else if (addr0 & 0x01000000)
320 flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO;
321 return flags;
322}
323
324/* The of_device layer has translated all of the assigned-address properties
325 * into physical address resources, we only have to figure out the register
326 * mapping.
327 */
328static void pci_parse_of_addrs(struct of_device *op,
329 struct device_node *node,
330 struct pci_dev *dev)
331{
332 struct resource *op_res;
333 const u32 *addrs;
334 int proplen;
335
336 addrs = of_get_property(node, "assigned-addresses", &proplen);
337 if (!addrs)
338 return;
339 printk(" parse addresses (%d bytes) @ %p\n", proplen, addrs);
340 op_res = &op->resource[0];
341 for (; proplen >= 20; proplen -= 20, addrs += 5, op_res++) {
342 struct resource *res;
343 unsigned long flags;
344 int i;
345
346 flags = pci_parse_of_flags(addrs[0]);
347 if (!flags)
348 continue;
349 i = addrs[0] & 0xff;
350 printk(" start: %lx, end: %lx, i: %x\n",
351 op_res->start, op_res->end, i);
352
353 if (PCI_BASE_ADDRESS_0 <= i && i <= PCI_BASE_ADDRESS_5) {
354 res = &dev->resource[(i - PCI_BASE_ADDRESS_0) >> 2];
355 } else if (i == dev->rom_base_reg) {
356 res = &dev->resource[PCI_ROM_RESOURCE];
357 flags |= IORESOURCE_READONLY | IORESOURCE_CACHEABLE;
358 } else {
359 printk(KERN_ERR "PCI: bad cfg reg num 0x%x\n", i);
360 continue;
361 }
362 res->start = op_res->start;
363 res->end = op_res->end;
364 res->flags = flags;
365 res->name = pci_name(dev);
366 }
367}
368
369struct pci_dev *of_create_pci_dev(struct pci_pbm_info *pbm,
370 struct device_node *node,
David S. Miller97b3cf02007-03-11 16:42:53 -0700371 struct pci_bus *bus, int devfn,
372 int host_controller)
David S. Millera2fb23a2007-02-28 23:35:04 -0800373{
374 struct dev_archdata *sd;
375 struct pci_dev *dev;
376 const char *type;
David S. Miller01f94c42007-03-04 12:53:19 -0800377 u32 class;
David S. Millera2fb23a2007-02-28 23:35:04 -0800378
379 dev = kzalloc(sizeof(struct pci_dev), GFP_KERNEL);
380 if (!dev)
381 return NULL;
382
383 sd = &dev->dev.archdata;
384 sd->iommu = pbm->iommu;
385 sd->stc = &pbm->stc;
386 sd->host_controller = pbm;
387 sd->prom_node = node;
388 sd->op = of_find_device_by_node(node);
389 sd->msi_num = 0xffffffff;
390
391 type = of_get_property(node, "device_type", NULL);
392 if (type == NULL)
393 type = "";
394
395 printk(" create device, devfn: %x, type: %s\n", devfn, type);
396
397 dev->bus = bus;
398 dev->sysdata = node;
399 dev->dev.parent = bus->bridge;
400 dev->dev.bus = &pci_bus_type;
401 dev->devfn = devfn;
402 dev->multifunction = 0; /* maybe a lie? */
403
David S. Miller97b3cf02007-03-11 16:42:53 -0700404 if (host_controller) {
405 dev->vendor = 0x108e;
406 dev->device = 0x8000;
407 dev->subsystem_vendor = 0x0000;
408 dev->subsystem_device = 0x0000;
409 dev->cfg_size = 256;
410 } else {
411 dev->vendor = of_getintprop_default(node, "vendor-id", 0xffff);
412 dev->device = of_getintprop_default(node, "device-id", 0xffff);
413 dev->subsystem_vendor =
414 of_getintprop_default(node, "subsystem-vendor-id", 0);
415 dev->subsystem_device =
416 of_getintprop_default(node, "subsystem-id", 0);
David S. Millera2fb23a2007-02-28 23:35:04 -0800417
David S. Miller97b3cf02007-03-11 16:42:53 -0700418 dev->cfg_size = pci_cfg_space_size(dev);
419 }
David S. Millera2fb23a2007-02-28 23:35:04 -0800420 sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus),
421 dev->bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn));
David S. Miller01f94c42007-03-04 12:53:19 -0800422
David S. Miller97b3cf02007-03-11 16:42:53 -0700423 if (host_controller) {
424 dev->class = PCI_CLASS_BRIDGE_HOST << 8;
425 } else {
426 /* We can't actually use the firmware value, we have
427 * to read what is in the register right now. One
428 * reason is that in the case of IDE interfaces the
429 * firmware can sample the value before the the IDE
430 * interface is programmed into native mode.
431 */
432 pci_read_config_dword(dev, PCI_CLASS_REVISION, &class);
433 dev->class = class >> 8;
434 }
David S. Millera2fb23a2007-02-28 23:35:04 -0800435 printk(" class: 0x%x\n", dev->class);
436
437 dev->current_state = 4; /* unknown power state */
438 dev->error_state = pci_channel_io_normal;
439
David S. Miller97b3cf02007-03-11 16:42:53 -0700440 if (host_controller) {
David S. Millera2fb23a2007-02-28 23:35:04 -0800441 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
442 dev->rom_base_reg = PCI_ROM_ADDRESS1;
David S. Miller97b3cf02007-03-11 16:42:53 -0700443 dev->irq = PCI_IRQ_NONE;
David S. Millera2fb23a2007-02-28 23:35:04 -0800444 } else {
David S. Miller97b3cf02007-03-11 16:42:53 -0700445 if (!strcmp(type, "pci") || !strcmp(type, "pciex")) {
446 /* a PCI-PCI bridge */
447 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
448 dev->rom_base_reg = PCI_ROM_ADDRESS1;
449 } else if (!strcmp(type, "cardbus")) {
450 dev->hdr_type = PCI_HEADER_TYPE_CARDBUS;
451 } else {
452 dev->hdr_type = PCI_HEADER_TYPE_NORMAL;
453 dev->rom_base_reg = PCI_ROM_ADDRESS;
David S. Millera2fb23a2007-02-28 23:35:04 -0800454
David S. Miller97b3cf02007-03-11 16:42:53 -0700455 dev->irq = sd->op->irqs[0];
456 if (dev->irq == 0xffffffff)
457 dev->irq = PCI_IRQ_NONE;
458 }
David S. Millera2fb23a2007-02-28 23:35:04 -0800459 }
David S. Millera2fb23a2007-02-28 23:35:04 -0800460 pci_parse_of_addrs(sd->op, node, dev);
461
462 printk(" adding to system ...\n");
463
464 pci_device_add(dev, bus);
465
466 return dev;
467}
468
David S. Miller01f94c42007-03-04 12:53:19 -0800469static void __init apb_calc_first_last(u8 map, u32 *first_p, u32 *last_p)
470{
471 u32 idx, first, last;
472
473 first = 8;
474 last = 0;
475 for (idx = 0; idx < 8; idx++) {
476 if ((map & (1 << idx)) != 0) {
477 if (first > idx)
478 first = idx;
479 if (last < idx)
480 last = idx;
481 }
482 }
483
484 *first_p = first;
485 *last_p = last;
486}
487
David S. Miller0bae5f82007-03-08 22:42:19 -0800488static void __init pci_resource_adjust(struct resource *res,
489 struct resource *root)
490{
491 res->start += root->start;
492 res->end += root->start;
493}
494
David S. Miller01f94c42007-03-04 12:53:19 -0800495/* Cook up fake bus resources for SUNW,simba PCI bridges which lack
496 * a proper 'ranges' property.
497 */
498static void __init apb_fake_ranges(struct pci_dev *dev,
499 struct pci_bus *bus,
500 struct pci_pbm_info *pbm)
501{
502 struct resource *res;
503 u32 first, last;
504 u8 map;
505
506 pci_read_config_byte(dev, APB_IO_ADDRESS_MAP, &map);
507 apb_calc_first_last(map, &first, &last);
508 res = bus->resource[0];
509 res->start = (first << 21);
510 res->end = (last << 21) + ((1 << 21) - 1);
511 res->flags = IORESOURCE_IO;
David S. Miller0bae5f82007-03-08 22:42:19 -0800512 pci_resource_adjust(res, &pbm->io_space);
David S. Miller01f94c42007-03-04 12:53:19 -0800513
514 pci_read_config_byte(dev, APB_MEM_ADDRESS_MAP, &map);
515 apb_calc_first_last(map, &first, &last);
516 res = bus->resource[1];
517 res->start = (first << 21);
518 res->end = (last << 21) + ((1 << 21) - 1);
519 res->flags = IORESOURCE_MEM;
David S. Miller0bae5f82007-03-08 22:42:19 -0800520 pci_resource_adjust(res, &pbm->mem_space);
David S. Miller01f94c42007-03-04 12:53:19 -0800521}
522
David S. Millera2fb23a2007-02-28 23:35:04 -0800523static void __init pci_of_scan_bus(struct pci_pbm_info *pbm,
524 struct device_node *node,
525 struct pci_bus *bus);
526
527#define GET_64BIT(prop, i) ((((u64) (prop)[(i)]) << 32) | (prop)[(i)+1])
528
529void __devinit of_scan_pci_bridge(struct pci_pbm_info *pbm,
530 struct device_node *node,
531 struct pci_dev *dev)
532{
533 struct pci_bus *bus;
534 const u32 *busrange, *ranges;
David S. Miller01f94c42007-03-04 12:53:19 -0800535 int len, i, simba;
David S. Millera2fb23a2007-02-28 23:35:04 -0800536 struct resource *res;
537 unsigned int flags;
538 u64 size;
539
540 printk("of_scan_pci_bridge(%s)\n", node->full_name);
541
542 /* parse bus-range property */
543 busrange = of_get_property(node, "bus-range", &len);
544 if (busrange == NULL || len != 8) {
545 printk(KERN_DEBUG "Can't get bus-range for PCI-PCI bridge %s\n",
546 node->full_name);
547 return;
548 }
549 ranges = of_get_property(node, "ranges", &len);
David S. Miller01f94c42007-03-04 12:53:19 -0800550 simba = 0;
David S. Millera2fb23a2007-02-28 23:35:04 -0800551 if (ranges == NULL) {
David S. Miller01f94c42007-03-04 12:53:19 -0800552 char *model = of_get_property(node, "model", NULL);
553 if (model && !strcmp(model, "SUNW,simba")) {
554 simba = 1;
555 } else {
556 printk(KERN_DEBUG "Can't get ranges for PCI-PCI bridge %s\n",
557 node->full_name);
558 return;
559 }
David S. Millera2fb23a2007-02-28 23:35:04 -0800560 }
561
562 bus = pci_add_new_bus(dev->bus, dev, busrange[0]);
563 if (!bus) {
564 printk(KERN_ERR "Failed to create pci bus for %s\n",
565 node->full_name);
566 return;
567 }
568
569 bus->primary = dev->bus->number;
570 bus->subordinate = busrange[1];
571 bus->bridge_ctl = 0;
572
David S. Miller01f94c42007-03-04 12:53:19 -0800573 /* parse ranges property, or cook one up by hand for Simba */
David S. Millera2fb23a2007-02-28 23:35:04 -0800574 /* PCI #address-cells == 3 and #size-cells == 2 always */
575 res = &dev->resource[PCI_BRIDGE_RESOURCES];
576 for (i = 0; i < PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES; ++i) {
577 res->flags = 0;
578 bus->resource[i] = res;
579 ++res;
580 }
David S. Miller01f94c42007-03-04 12:53:19 -0800581 if (simba) {
582 apb_fake_ranges(dev, bus, pbm);
583 goto simba_cont;
584 }
David S. Millera2fb23a2007-02-28 23:35:04 -0800585 i = 1;
586 for (; len >= 32; len -= 32, ranges += 8) {
587 struct resource *root;
588
589 flags = pci_parse_of_flags(ranges[0]);
590 size = GET_64BIT(ranges, 6);
591 if (flags == 0 || size == 0)
592 continue;
593 if (flags & IORESOURCE_IO) {
594 res = bus->resource[0];
595 if (res->flags) {
596 printk(KERN_ERR "PCI: ignoring extra I/O range"
597 " for bridge %s\n", node->full_name);
598 continue;
599 }
600 root = &pbm->io_space;
601 } else {
602 if (i >= PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES) {
603 printk(KERN_ERR "PCI: too many memory ranges"
604 " for bridge %s\n", node->full_name);
605 continue;
606 }
607 res = bus->resource[i];
608 ++i;
609 root = &pbm->mem_space;
610 }
611
612 res->start = GET_64BIT(ranges, 1);
613 res->end = res->start + size - 1;
614 res->flags = flags;
615
616 /* Another way to implement this would be to add an of_device
617 * layer routine that can calculate a resource for a given
618 * range property value in a PCI device.
619 */
David S. Miller0bae5f82007-03-08 22:42:19 -0800620 pci_resource_adjust(res, root);
David S. Millera2fb23a2007-02-28 23:35:04 -0800621 }
David S. Miller01f94c42007-03-04 12:53:19 -0800622simba_cont:
David S. Millera2fb23a2007-02-28 23:35:04 -0800623 sprintf(bus->name, "PCI Bus %04x:%02x", pci_domain_nr(bus),
624 bus->number);
625 printk(" bus name: %s\n", bus->name);
626
627 pci_of_scan_bus(pbm, node, bus);
628}
629
630static void __init pci_of_scan_bus(struct pci_pbm_info *pbm,
631 struct device_node *node,
632 struct pci_bus *bus)
633{
634 struct device_node *child;
635 const u32 *reg;
636 int reglen, devfn;
637 struct pci_dev *dev;
638
639 printk("PCI: scan_bus[%s] bus no %d\n",
640 node->full_name, bus->number);
641
642 child = NULL;
643 while ((child = of_get_next_child(node, child)) != NULL) {
644 printk(" * %s\n", child->full_name);
645 reg = of_get_property(child, "reg", &reglen);
646 if (reg == NULL || reglen < 20)
647 continue;
648 devfn = (reg[0] >> 8) & 0xff;
649
650 /* create a new pci_dev for this device */
David S. Miller97b3cf02007-03-11 16:42:53 -0700651 dev = of_create_pci_dev(pbm, child, bus, devfn, 0);
David S. Millera2fb23a2007-02-28 23:35:04 -0800652 if (!dev)
653 continue;
654 printk("PCI: dev header type: %x\n", dev->hdr_type);
655
656 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
657 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
658 of_scan_pci_bridge(pbm, child, dev);
659 }
660}
661
662static ssize_t
663show_pciobppath_attr(struct device * dev, struct device_attribute * attr, char * buf)
664{
665 struct pci_dev *pdev;
666 struct device_node *dp;
667
668 pdev = to_pci_dev(dev);
669 dp = pdev->dev.archdata.prom_node;
670
671 return snprintf (buf, PAGE_SIZE, "%s\n", dp->full_name);
672}
673
674static DEVICE_ATTR(obppath, S_IRUSR | S_IRGRP | S_IROTH, show_pciobppath_attr, NULL);
675
676static void __devinit pci_bus_register_of_sysfs(struct pci_bus *bus)
677{
678 struct pci_dev *dev;
David S. Millera378fd02007-03-01 11:46:13 -0800679 struct pci_bus *child_bus;
David S. Millera2fb23a2007-02-28 23:35:04 -0800680 int err;
681
682 list_for_each_entry(dev, &bus->devices, bus_list) {
683 /* we don't really care if we can create this file or
684 * not, but we need to assign the result of the call
685 * or the world will fall under alien invasion and
686 * everybody will be frozen on a spaceship ready to be
687 * eaten on alpha centauri by some green and jelly
688 * humanoid.
689 */
690 err = sysfs_create_file(&dev->dev.kobj, &dev_attr_obppath.attr);
691 }
David S. Millera378fd02007-03-01 11:46:13 -0800692 list_for_each_entry(child_bus, &bus->children, node)
693 pci_bus_register_of_sysfs(child_bus);
David S. Millera2fb23a2007-02-28 23:35:04 -0800694}
695
David S. Miller97b3cf02007-03-11 16:42:53 -0700696int pci_host_bridge_read_pci_cfg(struct pci_bus *bus_dev,
697 unsigned int devfn,
698 int where, int size,
699 u32 *value)
700{
701 static u8 fake_pci_config[] = {
702 0x8e, 0x10, /* Vendor: 0x108e (Sun) */
703 0x00, 0x80, /* Device: 0x8000 (PBM) */
704 0x46, 0x01, /* Command: 0x0146 (SERR, PARITY, MASTER, MEM) */
705 0xa0, 0x22, /* Status: 0x02a0 (DEVSEL_MED, FB2B, 66MHZ) */
706 0x00, 0x00, 0x00, 0x06, /* Class: 0x06000000 host bridge */
707 0x00, /* Cacheline: 0x00 */
708 0x40, /* Latency: 0x40 */
709 0x00, /* Header-Type: 0x00 normal */
710 };
711
712 *value = 0;
713 if (where >= 0 && where < sizeof(fake_pci_config) &&
714 (where + size) >= 0 &&
715 (where + size) < sizeof(fake_pci_config) &&
716 size <= sizeof(u32)) {
717 while (size--) {
718 *value <<= 8;
719 *value |= fake_pci_config[where + size];
720 }
721 }
722
723 return PCIBIOS_SUCCESSFUL;
724}
725
726int pci_host_bridge_write_pci_cfg(struct pci_bus *bus_dev,
727 unsigned int devfn,
728 int where, int size,
729 u32 value)
730{
731 return PCIBIOS_SUCCESSFUL;
732}
733
David S. Millera2fb23a2007-02-28 23:35:04 -0800734struct pci_bus * __init pci_scan_one_pbm(struct pci_pbm_info *pbm)
735{
736 struct pci_controller_info *p = pbm->parent;
737 struct device_node *node = pbm->prom_node;
David S. Miller97b3cf02007-03-11 16:42:53 -0700738 struct pci_dev *host_pdev;
David S. Millera2fb23a2007-02-28 23:35:04 -0800739 struct pci_bus *bus;
740
741 printk("PCI: Scanning PBM %s\n", node->full_name);
742
743 /* XXX parent device? XXX */
744 bus = pci_create_bus(NULL, pbm->pci_first_busno, p->pci_ops, pbm);
745 if (!bus) {
746 printk(KERN_ERR "Failed to create bus for %s\n",
747 node->full_name);
748 return NULL;
749 }
750 bus->secondary = pbm->pci_first_busno;
751 bus->subordinate = pbm->pci_last_busno;
752
753 bus->resource[0] = &pbm->io_space;
754 bus->resource[1] = &pbm->mem_space;
755
David S. Miller97b3cf02007-03-11 16:42:53 -0700756 /* Create the dummy host bridge and link it in. */
757 host_pdev = of_create_pci_dev(pbm, node, bus, 0x00, 1);
758 bus->self = host_pdev;
759
David S. Millera2fb23a2007-02-28 23:35:04 -0800760 pci_of_scan_bus(pbm, node, bus);
761 pci_bus_add_devices(bus);
762 pci_bus_register_of_sysfs(bus);
763
764 return bus;
765}
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767static void __init pci_scan_each_controller_bus(void)
768{
769 struct pci_controller_info *p;
770
771 for (p = pci_controller_root; p; p = p->next)
772 p->scan_bus(p);
773}
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775extern void power_init(void);
776
777static int __init pcibios_init(void)
778{
779 pci_controller_probe();
780 if (pci_controller_root == NULL)
781 return 0;
782
783 pci_scan_each_controller_bus();
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 isa_init();
786 ebus_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 power_init();
788
789 return 0;
790}
791
792subsys_initcall(pcibios_init);
793
Robert Reiff6b45da2007-04-12 13:47:37 -0700794void __devinit pcibios_fixup_bus(struct pci_bus *pbus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 struct pci_pbm_info *pbm = pbus->sysdata;
797
798 /* Generic PCI bus probing sets these to point at
799 * &io{port,mem}_resouce which is wrong for us.
800 */
801 pbus->resource[0] = &pbm->io_space;
802 pbus->resource[1] = &pbm->mem_space;
803}
804
David S. Miller085ae412005-08-08 13:19:08 -0700805struct resource *pcibios_select_root(struct pci_dev *pdev, struct resource *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 struct pci_pbm_info *pbm = pdev->bus->sysdata;
David S. Miller085ae412005-08-08 13:19:08 -0700808 struct resource *root = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
David S. Miller085ae412005-08-08 13:19:08 -0700810 if (r->flags & IORESOURCE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 root = &pbm->io_space;
David S. Miller085ae412005-08-08 13:19:08 -0700812 if (r->flags & IORESOURCE_MEM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 root = &pbm->mem_space;
814
David S. Miller085ae412005-08-08 13:19:08 -0700815 return root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
818void pcibios_update_irq(struct pci_dev *pdev, int irq)
819{
820}
821
822void pcibios_align_resource(void *data, struct resource *res,
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700823 resource_size_t size, resource_size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
825}
826
David S. Millera2fb23a2007-02-28 23:35:04 -0800827int pcibios_enable_device(struct pci_dev *dev, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
David S. Millera2fb23a2007-02-28 23:35:04 -0800829 u16 cmd, oldcmd;
830 int i;
831
832 pci_read_config_word(dev, PCI_COMMAND, &cmd);
833 oldcmd = cmd;
834
835 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
836 struct resource *res = &dev->resource[i];
837
838 /* Only set up the requested stuff */
839 if (!(mask & (1<<i)))
840 continue;
841
842 if (res->flags & IORESOURCE_IO)
843 cmd |= PCI_COMMAND_IO;
844 if (res->flags & IORESOURCE_MEM)
845 cmd |= PCI_COMMAND_MEMORY;
846 }
847
848 if (cmd != oldcmd) {
849 printk(KERN_DEBUG "PCI: Enabling device: (%s), cmd %x\n",
850 pci_name(dev), cmd);
851 /* Enable the appropriate bits in the PCI command register. */
852 pci_write_config_word(dev, PCI_COMMAND, cmd);
853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return 0;
855}
856
857void pcibios_resource_to_bus(struct pci_dev *pdev, struct pci_bus_region *region,
858 struct resource *res)
859{
860 struct pci_pbm_info *pbm = pdev->bus->sysdata;
861 struct resource zero_res, *root;
862
863 zero_res.start = 0;
864 zero_res.end = 0;
865 zero_res.flags = res->flags;
866
867 if (res->flags & IORESOURCE_IO)
868 root = &pbm->io_space;
869 else
870 root = &pbm->mem_space;
871
David S. Miller0bae5f82007-03-08 22:42:19 -0800872 pci_resource_adjust(&zero_res, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 region->start = res->start - zero_res.start;
875 region->end = res->end - zero_res.start;
876}
David S. Miller5fdfd422006-04-17 13:34:44 -0700877EXPORT_SYMBOL(pcibios_resource_to_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879void pcibios_bus_to_resource(struct pci_dev *pdev, struct resource *res,
880 struct pci_bus_region *region)
881{
882 struct pci_pbm_info *pbm = pdev->bus->sysdata;
883 struct resource *root;
884
885 res->start = region->start;
886 res->end = region->end;
887
888 if (res->flags & IORESOURCE_IO)
889 root = &pbm->io_space;
890 else
891 root = &pbm->mem_space;
892
David S. Miller0bae5f82007-03-08 22:42:19 -0800893 pci_resource_adjust(res, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
Keith Owens41290c12005-08-24 16:06:25 +1000895EXPORT_SYMBOL(pcibios_bus_to_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Robert Reiff6b45da2007-04-12 13:47:37 -0700897char * __devinit pcibios_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return str;
900}
901
902/* Platform support for /proc/bus/pci/X/Y mmap()s. */
903
904/* If the user uses a host-bridge as the PCI device, he may use
905 * this to perform a raw mmap() of the I/O or MEM space behind
906 * that controller.
907 *
908 * This can be useful for execution of x86 PCI bios initialization code
909 * on a PCI card, like the xfree86 int10 stuff does.
910 */
911static int __pci_mmap_make_offset_bus(struct pci_dev *pdev, struct vm_area_struct *vma,
912 enum pci_mmap_state mmap_state)
913{
David S. Millera2fb23a2007-02-28 23:35:04 -0800914 struct pci_pbm_info *pbm = pdev->dev.archdata.host_controller;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 struct pci_controller_info *p;
916 unsigned long space_size, user_offset, user_size;
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 p = pbm->parent;
David S. Miller3875c5c2007-03-08 22:52:11 -0800919 if (mmap_state == pci_mmap_io) {
920 space_size = (pbm->io_space.end -
921 pbm->io_space.start) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 } else {
David S. Miller3875c5c2007-03-08 22:52:11 -0800923 space_size = (pbm->mem_space.end -
924 pbm->mem_space.start) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
926
927 /* Make sure the request is in range. */
928 user_offset = vma->vm_pgoff << PAGE_SHIFT;
929 user_size = vma->vm_end - vma->vm_start;
930
931 if (user_offset >= space_size ||
932 (user_offset + user_size) > space_size)
933 return -EINVAL;
934
David S. Miller3875c5c2007-03-08 22:52:11 -0800935 if (mmap_state == pci_mmap_io) {
936 vma->vm_pgoff = (pbm->io_space.start +
937 user_offset) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 } else {
David S. Miller3875c5c2007-03-08 22:52:11 -0800939 vma->vm_pgoff = (pbm->mem_space.start +
940 user_offset) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
942
943 return 0;
944}
945
946/* Adjust vm_pgoff of VMA such that it is the physical page offset corresponding
947 * to the 32-bit pci bus offset for DEV requested by the user.
948 *
949 * Basically, the user finds the base address for his device which he wishes
950 * to mmap. They read the 32-bit value from the config space base register,
951 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
952 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
953 *
954 * Returns negative error code on failure, zero on success.
955 */
956static int __pci_mmap_make_offset(struct pci_dev *dev, struct vm_area_struct *vma,
957 enum pci_mmap_state mmap_state)
958{
959 unsigned long user_offset = vma->vm_pgoff << PAGE_SHIFT;
960 unsigned long user32 = user_offset & pci_memspace_mask;
961 unsigned long largest_base, this_base, addr32;
962 int i;
963
964 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_HOST)
965 return __pci_mmap_make_offset_bus(dev, vma, mmap_state);
966
967 /* Figure out which base address this is for. */
968 largest_base = 0UL;
969 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
970 struct resource *rp = &dev->resource[i];
971
972 /* Active? */
973 if (!rp->flags)
974 continue;
975
976 /* Same type? */
977 if (i == PCI_ROM_RESOURCE) {
978 if (mmap_state != pci_mmap_mem)
979 continue;
980 } else {
981 if ((mmap_state == pci_mmap_io &&
982 (rp->flags & IORESOURCE_IO) == 0) ||
983 (mmap_state == pci_mmap_mem &&
984 (rp->flags & IORESOURCE_MEM) == 0))
985 continue;
986 }
987
988 this_base = rp->start;
989
990 addr32 = (this_base & PAGE_MASK) & pci_memspace_mask;
991
992 if (mmap_state == pci_mmap_io)
993 addr32 &= 0xffffff;
994
995 if (addr32 <= user32 && this_base > largest_base)
996 largest_base = this_base;
997 }
998
999 if (largest_base == 0UL)
1000 return -EINVAL;
1001
1002 /* Now construct the final physical address. */
1003 if (mmap_state == pci_mmap_io)
1004 vma->vm_pgoff = (((largest_base & ~0xffffffUL) | user32) >> PAGE_SHIFT);
1005 else
1006 vma->vm_pgoff = (((largest_base & ~(pci_memspace_mask)) | user32) >> PAGE_SHIFT);
1007
1008 return 0;
1009}
1010
1011/* Set vm_flags of VMA, as appropriate for this architecture, for a pci device
1012 * mapping.
1013 */
1014static void __pci_mmap_set_flags(struct pci_dev *dev, struct vm_area_struct *vma,
1015 enum pci_mmap_state mmap_state)
1016{
1017 vma->vm_flags |= (VM_IO | VM_RESERVED);
1018}
1019
1020/* Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
1021 * device mapping.
1022 */
1023static void __pci_mmap_set_pgprot(struct pci_dev *dev, struct vm_area_struct *vma,
1024 enum pci_mmap_state mmap_state)
1025{
David S. Millera7a6cac2005-09-01 21:51:26 -07001026 /* Our io_remap_pfn_range takes care of this, do nothing. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
1029/* Perform the actual remap of the pages for a PCI device mapping, as appropriate
1030 * for this architecture. The region in the process to map is described by vm_start
1031 * and vm_end members of VMA, the base physical address is found in vm_pgoff.
1032 * The pci device structure is provided so that architectures may make mapping
1033 * decisions on a per-device or per-bus basis.
1034 *
1035 * Returns a negative error code on failure, zero on success.
1036 */
1037int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
1038 enum pci_mmap_state mmap_state,
1039 int write_combine)
1040{
1041 int ret;
1042
1043 ret = __pci_mmap_make_offset(dev, vma, mmap_state);
1044 if (ret < 0)
1045 return ret;
1046
1047 __pci_mmap_set_flags(dev, vma, mmap_state);
1048 __pci_mmap_set_pgprot(dev, vma, mmap_state);
1049
David S. Miller14778d92006-03-21 02:29:39 -08001050 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 ret = io_remap_pfn_range(vma, vma->vm_start,
1052 vma->vm_pgoff,
1053 vma->vm_end - vma->vm_start,
1054 vma->vm_page_prot);
1055 if (ret)
1056 return ret;
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 return 0;
1059}
1060
1061/* Return the domain nuber for this pci bus */
1062
1063int pci_domain_nr(struct pci_bus *pbus)
1064{
1065 struct pci_pbm_info *pbm = pbus->sysdata;
1066 int ret;
1067
1068 if (pbm == NULL || pbm->parent == NULL) {
1069 ret = -ENXIO;
1070 } else {
1071 struct pci_controller_info *p = pbm->parent;
1072
1073 ret = p->index;
David S. Miller3875c5c2007-03-08 22:52:11 -08001074 ret = ((ret << 1) +
1075 ((pbm == &pbm->parent->pbm_B) ? 1 : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077
1078 return ret;
1079}
1080EXPORT_SYMBOL(pci_domain_nr);
1081
David S. Miller35a17eb2007-02-10 17:41:02 -08001082#ifdef CONFIG_PCI_MSI
1083int arch_setup_msi_irq(struct pci_dev *pdev, struct msi_desc *desc)
1084{
David S. Millera2fb23a2007-02-28 23:35:04 -08001085 struct pci_pbm_info *pbm = pdev->dev.archdata.host_controller;
David S. Miller35a17eb2007-02-10 17:41:02 -08001086 struct pci_controller_info *p = pbm->parent;
1087 int virt_irq, err;
1088
1089 if (!pbm->msi_num || !p->setup_msi_irq)
1090 return -EINVAL;
1091
1092 err = p->setup_msi_irq(&virt_irq, pdev, desc);
1093 if (err < 0)
1094 return err;
1095
1096 return virt_irq;
1097}
1098
1099void arch_teardown_msi_irq(unsigned int virt_irq)
1100{
David S. Millerabfd3362007-02-26 09:40:34 -08001101 struct msi_desc *entry = get_irq_msi(virt_irq);
David S. Miller35a17eb2007-02-10 17:41:02 -08001102 struct pci_dev *pdev = entry->dev;
David S. Millera2fb23a2007-02-28 23:35:04 -08001103 struct pci_pbm_info *pbm = pdev->dev.archdata.host_controller;
David S. Miller35a17eb2007-02-10 17:41:02 -08001104 struct pci_controller_info *p = pbm->parent;
1105
1106 if (!pbm->msi_num || !p->setup_msi_irq)
1107 return;
1108
1109 return p->teardown_msi_irq(virt_irq, pdev);
1110}
1111#endif /* !(CONFIG_PCI_MSI) */
1112
David S. Millerf6d0f9e2007-03-01 18:09:18 -08001113struct device_node *pci_device_to_OF_node(struct pci_dev *pdev)
1114{
David S. Millera2fb23a2007-02-28 23:35:04 -08001115 return pdev->dev.archdata.prom_node;
David S. Millerf6d0f9e2007-03-01 18:09:18 -08001116}
1117EXPORT_SYMBOL(pci_device_to_OF_node);
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119#endif /* !(CONFIG_PCI) */