blob: a7809a00324cadd66c60fe0f5f78cc71b6a72be8 [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. Miller8f6a93a2006-02-09 21:32:07 -0800285struct pci_iommu_ops *pci_iommu_ops;
286EXPORT_SYMBOL(pci_iommu_ops);
287
288extern struct pci_iommu_ops pci_sun4u_iommu_ops,
289 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,
371 struct pci_bus *bus, int devfn)
372{
373 struct dev_archdata *sd;
374 struct pci_dev *dev;
375 const char *type;
David S. Miller01f94c42007-03-04 12:53:19 -0800376 u32 class;
David S. Millera2fb23a2007-02-28 23:35:04 -0800377
378 dev = kzalloc(sizeof(struct pci_dev), GFP_KERNEL);
379 if (!dev)
380 return NULL;
381
382 sd = &dev->dev.archdata;
383 sd->iommu = pbm->iommu;
384 sd->stc = &pbm->stc;
385 sd->host_controller = pbm;
386 sd->prom_node = node;
387 sd->op = of_find_device_by_node(node);
388 sd->msi_num = 0xffffffff;
389
390 type = of_get_property(node, "device_type", NULL);
391 if (type == NULL)
392 type = "";
393
394 printk(" create device, devfn: %x, type: %s\n", devfn, type);
395
396 dev->bus = bus;
397 dev->sysdata = node;
398 dev->dev.parent = bus->bridge;
399 dev->dev.bus = &pci_bus_type;
400 dev->devfn = devfn;
401 dev->multifunction = 0; /* maybe a lie? */
402
403 dev->vendor = of_getintprop_default(node, "vendor-id", 0xffff);
404 dev->device = of_getintprop_default(node, "device-id", 0xffff);
405 dev->subsystem_vendor =
406 of_getintprop_default(node, "subsystem-vendor-id", 0);
407 dev->subsystem_device =
408 of_getintprop_default(node, "subsystem-id", 0);
409
410 dev->cfg_size = pci_cfg_space_size(dev);
411
412 sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus),
413 dev->bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn));
David S. Miller01f94c42007-03-04 12:53:19 -0800414
415 /* dev->class = of_getintprop_default(node, "class-code", 0); */
416 /* We can't actually use the firmware value, we have to read what
417 * is in the register right now. One reason is that in the case
418 * of IDE interfaces the firmware can sample the value before the
419 * the IDE interface is programmed into native mode.
420 */
421 pci_read_config_dword(dev, PCI_CLASS_REVISION, &class);
422 dev->class = class >> 8;
David S. Millera2fb23a2007-02-28 23:35:04 -0800423
424 printk(" class: 0x%x\n", dev->class);
425
426 dev->current_state = 4; /* unknown power state */
427 dev->error_state = pci_channel_io_normal;
428
429 if (!strcmp(type, "pci") || !strcmp(type, "pciex")) {
430 /* a PCI-PCI bridge */
431 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
432 dev->rom_base_reg = PCI_ROM_ADDRESS1;
433 } else if (!strcmp(type, "cardbus")) {
434 dev->hdr_type = PCI_HEADER_TYPE_CARDBUS;
435 } else {
436 dev->hdr_type = PCI_HEADER_TYPE_NORMAL;
437 dev->rom_base_reg = PCI_ROM_ADDRESS;
438
439 dev->irq = sd->op->irqs[0];
440 if (dev->irq == 0xffffffff)
441 dev->irq = PCI_IRQ_NONE;
442 }
443
444 pci_parse_of_addrs(sd->op, node, dev);
445
446 printk(" adding to system ...\n");
447
448 pci_device_add(dev, bus);
449
450 return dev;
451}
452
David S. Miller01f94c42007-03-04 12:53:19 -0800453static void __init apb_calc_first_last(u8 map, u32 *first_p, u32 *last_p)
454{
455 u32 idx, first, last;
456
457 first = 8;
458 last = 0;
459 for (idx = 0; idx < 8; idx++) {
460 if ((map & (1 << idx)) != 0) {
461 if (first > idx)
462 first = idx;
463 if (last < idx)
464 last = idx;
465 }
466 }
467
468 *first_p = first;
469 *last_p = last;
470}
471
David S. Miller0bae5f82007-03-08 22:42:19 -0800472static void __init pci_resource_adjust(struct resource *res,
473 struct resource *root)
474{
475 res->start += root->start;
476 res->end += root->start;
477}
478
David S. Miller01f94c42007-03-04 12:53:19 -0800479/* Cook up fake bus resources for SUNW,simba PCI bridges which lack
480 * a proper 'ranges' property.
481 */
482static void __init apb_fake_ranges(struct pci_dev *dev,
483 struct pci_bus *bus,
484 struct pci_pbm_info *pbm)
485{
486 struct resource *res;
487 u32 first, last;
488 u8 map;
489
490 pci_read_config_byte(dev, APB_IO_ADDRESS_MAP, &map);
491 apb_calc_first_last(map, &first, &last);
492 res = bus->resource[0];
493 res->start = (first << 21);
494 res->end = (last << 21) + ((1 << 21) - 1);
495 res->flags = IORESOURCE_IO;
David S. Miller0bae5f82007-03-08 22:42:19 -0800496 pci_resource_adjust(res, &pbm->io_space);
David S. Miller01f94c42007-03-04 12:53:19 -0800497
498 pci_read_config_byte(dev, APB_MEM_ADDRESS_MAP, &map);
499 apb_calc_first_last(map, &first, &last);
500 res = bus->resource[1];
501 res->start = (first << 21);
502 res->end = (last << 21) + ((1 << 21) - 1);
503 res->flags = IORESOURCE_MEM;
David S. Miller0bae5f82007-03-08 22:42:19 -0800504 pci_resource_adjust(res, &pbm->mem_space);
David S. Miller01f94c42007-03-04 12:53:19 -0800505}
506
David S. Millera2fb23a2007-02-28 23:35:04 -0800507static void __init pci_of_scan_bus(struct pci_pbm_info *pbm,
508 struct device_node *node,
509 struct pci_bus *bus);
510
511#define GET_64BIT(prop, i) ((((u64) (prop)[(i)]) << 32) | (prop)[(i)+1])
512
513void __devinit of_scan_pci_bridge(struct pci_pbm_info *pbm,
514 struct device_node *node,
515 struct pci_dev *dev)
516{
517 struct pci_bus *bus;
518 const u32 *busrange, *ranges;
David S. Miller01f94c42007-03-04 12:53:19 -0800519 int len, i, simba;
David S. Millera2fb23a2007-02-28 23:35:04 -0800520 struct resource *res;
521 unsigned int flags;
522 u64 size;
523
524 printk("of_scan_pci_bridge(%s)\n", node->full_name);
525
526 /* parse bus-range property */
527 busrange = of_get_property(node, "bus-range", &len);
528 if (busrange == NULL || len != 8) {
529 printk(KERN_DEBUG "Can't get bus-range for PCI-PCI bridge %s\n",
530 node->full_name);
531 return;
532 }
533 ranges = of_get_property(node, "ranges", &len);
David S. Miller01f94c42007-03-04 12:53:19 -0800534 simba = 0;
David S. Millera2fb23a2007-02-28 23:35:04 -0800535 if (ranges == NULL) {
David S. Miller01f94c42007-03-04 12:53:19 -0800536 char *model = of_get_property(node, "model", NULL);
537 if (model && !strcmp(model, "SUNW,simba")) {
538 simba = 1;
539 } else {
540 printk(KERN_DEBUG "Can't get ranges for PCI-PCI bridge %s\n",
541 node->full_name);
542 return;
543 }
David S. Millera2fb23a2007-02-28 23:35:04 -0800544 }
545
546 bus = pci_add_new_bus(dev->bus, dev, busrange[0]);
547 if (!bus) {
548 printk(KERN_ERR "Failed to create pci bus for %s\n",
549 node->full_name);
550 return;
551 }
552
553 bus->primary = dev->bus->number;
554 bus->subordinate = busrange[1];
555 bus->bridge_ctl = 0;
556
David S. Miller01f94c42007-03-04 12:53:19 -0800557 /* parse ranges property, or cook one up by hand for Simba */
David S. Millera2fb23a2007-02-28 23:35:04 -0800558 /* PCI #address-cells == 3 and #size-cells == 2 always */
559 res = &dev->resource[PCI_BRIDGE_RESOURCES];
560 for (i = 0; i < PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES; ++i) {
561 res->flags = 0;
562 bus->resource[i] = res;
563 ++res;
564 }
David S. Miller01f94c42007-03-04 12:53:19 -0800565 if (simba) {
566 apb_fake_ranges(dev, bus, pbm);
567 goto simba_cont;
568 }
David S. Millera2fb23a2007-02-28 23:35:04 -0800569 i = 1;
570 for (; len >= 32; len -= 32, ranges += 8) {
571 struct resource *root;
572
573 flags = pci_parse_of_flags(ranges[0]);
574 size = GET_64BIT(ranges, 6);
575 if (flags == 0 || size == 0)
576 continue;
577 if (flags & IORESOURCE_IO) {
578 res = bus->resource[0];
579 if (res->flags) {
580 printk(KERN_ERR "PCI: ignoring extra I/O range"
581 " for bridge %s\n", node->full_name);
582 continue;
583 }
584 root = &pbm->io_space;
585 } else {
586 if (i >= PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES) {
587 printk(KERN_ERR "PCI: too many memory ranges"
588 " for bridge %s\n", node->full_name);
589 continue;
590 }
591 res = bus->resource[i];
592 ++i;
593 root = &pbm->mem_space;
594 }
595
596 res->start = GET_64BIT(ranges, 1);
597 res->end = res->start + size - 1;
598 res->flags = flags;
599
600 /* Another way to implement this would be to add an of_device
601 * layer routine that can calculate a resource for a given
602 * range property value in a PCI device.
603 */
David S. Miller0bae5f82007-03-08 22:42:19 -0800604 pci_resource_adjust(res, root);
David S. Millera2fb23a2007-02-28 23:35:04 -0800605 }
David S. Miller01f94c42007-03-04 12:53:19 -0800606simba_cont:
David S. Millera2fb23a2007-02-28 23:35:04 -0800607 sprintf(bus->name, "PCI Bus %04x:%02x", pci_domain_nr(bus),
608 bus->number);
609 printk(" bus name: %s\n", bus->name);
610
611 pci_of_scan_bus(pbm, node, bus);
612}
613
614static void __init pci_of_scan_bus(struct pci_pbm_info *pbm,
615 struct device_node *node,
616 struct pci_bus *bus)
617{
618 struct device_node *child;
619 const u32 *reg;
620 int reglen, devfn;
621 struct pci_dev *dev;
622
623 printk("PCI: scan_bus[%s] bus no %d\n",
624 node->full_name, bus->number);
625
626 child = NULL;
627 while ((child = of_get_next_child(node, child)) != NULL) {
628 printk(" * %s\n", child->full_name);
629 reg = of_get_property(child, "reg", &reglen);
630 if (reg == NULL || reglen < 20)
631 continue;
632 devfn = (reg[0] >> 8) & 0xff;
633
634 /* create a new pci_dev for this device */
635 dev = of_create_pci_dev(pbm, child, bus, devfn);
636 if (!dev)
637 continue;
638 printk("PCI: dev header type: %x\n", dev->hdr_type);
639
640 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
641 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
642 of_scan_pci_bridge(pbm, child, dev);
643 }
644}
645
646static ssize_t
647show_pciobppath_attr(struct device * dev, struct device_attribute * attr, char * buf)
648{
649 struct pci_dev *pdev;
650 struct device_node *dp;
651
652 pdev = to_pci_dev(dev);
653 dp = pdev->dev.archdata.prom_node;
654
655 return snprintf (buf, PAGE_SIZE, "%s\n", dp->full_name);
656}
657
658static DEVICE_ATTR(obppath, S_IRUSR | S_IRGRP | S_IROTH, show_pciobppath_attr, NULL);
659
660static void __devinit pci_bus_register_of_sysfs(struct pci_bus *bus)
661{
662 struct pci_dev *dev;
David S. Millera378fd02007-03-01 11:46:13 -0800663 struct pci_bus *child_bus;
David S. Millera2fb23a2007-02-28 23:35:04 -0800664 int err;
665
666 list_for_each_entry(dev, &bus->devices, bus_list) {
667 /* we don't really care if we can create this file or
668 * not, but we need to assign the result of the call
669 * or the world will fall under alien invasion and
670 * everybody will be frozen on a spaceship ready to be
671 * eaten on alpha centauri by some green and jelly
672 * humanoid.
673 */
674 err = sysfs_create_file(&dev->dev.kobj, &dev_attr_obppath.attr);
675 }
David S. Millera378fd02007-03-01 11:46:13 -0800676 list_for_each_entry(child_bus, &bus->children, node)
677 pci_bus_register_of_sysfs(child_bus);
David S. Millera2fb23a2007-02-28 23:35:04 -0800678}
679
680struct pci_bus * __init pci_scan_one_pbm(struct pci_pbm_info *pbm)
681{
682 struct pci_controller_info *p = pbm->parent;
683 struct device_node *node = pbm->prom_node;
684 struct pci_bus *bus;
685
686 printk("PCI: Scanning PBM %s\n", node->full_name);
687
688 /* XXX parent device? XXX */
689 bus = pci_create_bus(NULL, pbm->pci_first_busno, p->pci_ops, pbm);
690 if (!bus) {
691 printk(KERN_ERR "Failed to create bus for %s\n",
692 node->full_name);
693 return NULL;
694 }
695 bus->secondary = pbm->pci_first_busno;
696 bus->subordinate = pbm->pci_last_busno;
697
698 bus->resource[0] = &pbm->io_space;
699 bus->resource[1] = &pbm->mem_space;
700
701 pci_of_scan_bus(pbm, node, bus);
702 pci_bus_add_devices(bus);
703 pci_bus_register_of_sysfs(bus);
704
705 return bus;
706}
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708static void __init pci_scan_each_controller_bus(void)
709{
710 struct pci_controller_info *p;
711
712 for (p = pci_controller_root; p; p = p->next)
713 p->scan_bus(p);
714}
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716extern void power_init(void);
717
718static int __init pcibios_init(void)
719{
720 pci_controller_probe();
721 if (pci_controller_root == NULL)
722 return 0;
723
724 pci_scan_each_controller_bus();
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 isa_init();
727 ebus_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 power_init();
729
730 return 0;
731}
732
733subsys_initcall(pcibios_init);
734
Robert Reiff6b45da2007-04-12 13:47:37 -0700735void __devinit pcibios_fixup_bus(struct pci_bus *pbus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
737 struct pci_pbm_info *pbm = pbus->sysdata;
738
739 /* Generic PCI bus probing sets these to point at
740 * &io{port,mem}_resouce which is wrong for us.
741 */
742 pbus->resource[0] = &pbm->io_space;
743 pbus->resource[1] = &pbm->mem_space;
744}
745
David S. Miller085ae412005-08-08 13:19:08 -0700746struct resource *pcibios_select_root(struct pci_dev *pdev, struct resource *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
748 struct pci_pbm_info *pbm = pdev->bus->sysdata;
David S. Miller085ae412005-08-08 13:19:08 -0700749 struct resource *root = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
David S. Miller085ae412005-08-08 13:19:08 -0700751 if (r->flags & IORESOURCE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 root = &pbm->io_space;
David S. Miller085ae412005-08-08 13:19:08 -0700753 if (r->flags & IORESOURCE_MEM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 root = &pbm->mem_space;
755
David S. Miller085ae412005-08-08 13:19:08 -0700756 return root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759void pcibios_update_irq(struct pci_dev *pdev, int irq)
760{
761}
762
763void pcibios_align_resource(void *data, struct resource *res,
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700764 resource_size_t size, resource_size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
766}
767
David S. Millera2fb23a2007-02-28 23:35:04 -0800768int pcibios_enable_device(struct pci_dev *dev, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
David S. Millera2fb23a2007-02-28 23:35:04 -0800770 u16 cmd, oldcmd;
771 int i;
772
773 pci_read_config_word(dev, PCI_COMMAND, &cmd);
774 oldcmd = cmd;
775
776 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
777 struct resource *res = &dev->resource[i];
778
779 /* Only set up the requested stuff */
780 if (!(mask & (1<<i)))
781 continue;
782
783 if (res->flags & IORESOURCE_IO)
784 cmd |= PCI_COMMAND_IO;
785 if (res->flags & IORESOURCE_MEM)
786 cmd |= PCI_COMMAND_MEMORY;
787 }
788
789 if (cmd != oldcmd) {
790 printk(KERN_DEBUG "PCI: Enabling device: (%s), cmd %x\n",
791 pci_name(dev), cmd);
792 /* Enable the appropriate bits in the PCI command register. */
793 pci_write_config_word(dev, PCI_COMMAND, cmd);
794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return 0;
796}
797
798void pcibios_resource_to_bus(struct pci_dev *pdev, struct pci_bus_region *region,
799 struct resource *res)
800{
801 struct pci_pbm_info *pbm = pdev->bus->sysdata;
802 struct resource zero_res, *root;
803
804 zero_res.start = 0;
805 zero_res.end = 0;
806 zero_res.flags = res->flags;
807
808 if (res->flags & IORESOURCE_IO)
809 root = &pbm->io_space;
810 else
811 root = &pbm->mem_space;
812
David S. Miller0bae5f82007-03-08 22:42:19 -0800813 pci_resource_adjust(&zero_res, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 region->start = res->start - zero_res.start;
816 region->end = res->end - zero_res.start;
817}
David S. Miller5fdfd422006-04-17 13:34:44 -0700818EXPORT_SYMBOL(pcibios_resource_to_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820void pcibios_bus_to_resource(struct pci_dev *pdev, struct resource *res,
821 struct pci_bus_region *region)
822{
823 struct pci_pbm_info *pbm = pdev->bus->sysdata;
824 struct resource *root;
825
826 res->start = region->start;
827 res->end = region->end;
828
829 if (res->flags & IORESOURCE_IO)
830 root = &pbm->io_space;
831 else
832 root = &pbm->mem_space;
833
David S. Miller0bae5f82007-03-08 22:42:19 -0800834 pci_resource_adjust(res, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
Keith Owens41290c12005-08-24 16:06:25 +1000836EXPORT_SYMBOL(pcibios_bus_to_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Robert Reiff6b45da2007-04-12 13:47:37 -0700838char * __devinit pcibios_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return str;
841}
842
843/* Platform support for /proc/bus/pci/X/Y mmap()s. */
844
845/* If the user uses a host-bridge as the PCI device, he may use
846 * this to perform a raw mmap() of the I/O or MEM space behind
847 * that controller.
848 *
849 * This can be useful for execution of x86 PCI bios initialization code
850 * on a PCI card, like the xfree86 int10 stuff does.
851 */
852static int __pci_mmap_make_offset_bus(struct pci_dev *pdev, struct vm_area_struct *vma,
853 enum pci_mmap_state mmap_state)
854{
David S. Millera2fb23a2007-02-28 23:35:04 -0800855 struct pci_pbm_info *pbm = pdev->dev.archdata.host_controller;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 struct pci_controller_info *p;
857 unsigned long space_size, user_offset, user_size;
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 p = pbm->parent;
David S. Miller3875c5c2007-03-08 22:52:11 -0800860 if (mmap_state == pci_mmap_io) {
861 space_size = (pbm->io_space.end -
862 pbm->io_space.start) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 } else {
David S. Miller3875c5c2007-03-08 22:52:11 -0800864 space_size = (pbm->mem_space.end -
865 pbm->mem_space.start) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
867
868 /* Make sure the request is in range. */
869 user_offset = vma->vm_pgoff << PAGE_SHIFT;
870 user_size = vma->vm_end - vma->vm_start;
871
872 if (user_offset >= space_size ||
873 (user_offset + user_size) > space_size)
874 return -EINVAL;
875
David S. Miller3875c5c2007-03-08 22:52:11 -0800876 if (mmap_state == pci_mmap_io) {
877 vma->vm_pgoff = (pbm->io_space.start +
878 user_offset) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 } else {
David S. Miller3875c5c2007-03-08 22:52:11 -0800880 vma->vm_pgoff = (pbm->mem_space.start +
881 user_offset) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
883
884 return 0;
885}
886
887/* Adjust vm_pgoff of VMA such that it is the physical page offset corresponding
888 * to the 32-bit pci bus offset for DEV requested by the user.
889 *
890 * Basically, the user finds the base address for his device which he wishes
891 * to mmap. They read the 32-bit value from the config space base register,
892 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
893 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
894 *
895 * Returns negative error code on failure, zero on success.
896 */
897static int __pci_mmap_make_offset(struct pci_dev *dev, struct vm_area_struct *vma,
898 enum pci_mmap_state mmap_state)
899{
900 unsigned long user_offset = vma->vm_pgoff << PAGE_SHIFT;
901 unsigned long user32 = user_offset & pci_memspace_mask;
902 unsigned long largest_base, this_base, addr32;
903 int i;
904
905 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_HOST)
906 return __pci_mmap_make_offset_bus(dev, vma, mmap_state);
907
908 /* Figure out which base address this is for. */
909 largest_base = 0UL;
910 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
911 struct resource *rp = &dev->resource[i];
912
913 /* Active? */
914 if (!rp->flags)
915 continue;
916
917 /* Same type? */
918 if (i == PCI_ROM_RESOURCE) {
919 if (mmap_state != pci_mmap_mem)
920 continue;
921 } else {
922 if ((mmap_state == pci_mmap_io &&
923 (rp->flags & IORESOURCE_IO) == 0) ||
924 (mmap_state == pci_mmap_mem &&
925 (rp->flags & IORESOURCE_MEM) == 0))
926 continue;
927 }
928
929 this_base = rp->start;
930
931 addr32 = (this_base & PAGE_MASK) & pci_memspace_mask;
932
933 if (mmap_state == pci_mmap_io)
934 addr32 &= 0xffffff;
935
936 if (addr32 <= user32 && this_base > largest_base)
937 largest_base = this_base;
938 }
939
940 if (largest_base == 0UL)
941 return -EINVAL;
942
943 /* Now construct the final physical address. */
944 if (mmap_state == pci_mmap_io)
945 vma->vm_pgoff = (((largest_base & ~0xffffffUL) | user32) >> PAGE_SHIFT);
946 else
947 vma->vm_pgoff = (((largest_base & ~(pci_memspace_mask)) | user32) >> PAGE_SHIFT);
948
949 return 0;
950}
951
952/* Set vm_flags of VMA, as appropriate for this architecture, for a pci device
953 * mapping.
954 */
955static void __pci_mmap_set_flags(struct pci_dev *dev, struct vm_area_struct *vma,
956 enum pci_mmap_state mmap_state)
957{
958 vma->vm_flags |= (VM_IO | VM_RESERVED);
959}
960
961/* Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
962 * device mapping.
963 */
964static void __pci_mmap_set_pgprot(struct pci_dev *dev, struct vm_area_struct *vma,
965 enum pci_mmap_state mmap_state)
966{
David S. Millera7a6cac2005-09-01 21:51:26 -0700967 /* Our io_remap_pfn_range takes care of this, do nothing. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
970/* Perform the actual remap of the pages for a PCI device mapping, as appropriate
971 * for this architecture. The region in the process to map is described by vm_start
972 * and vm_end members of VMA, the base physical address is found in vm_pgoff.
973 * The pci device structure is provided so that architectures may make mapping
974 * decisions on a per-device or per-bus basis.
975 *
976 * Returns a negative error code on failure, zero on success.
977 */
978int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
979 enum pci_mmap_state mmap_state,
980 int write_combine)
981{
982 int ret;
983
984 ret = __pci_mmap_make_offset(dev, vma, mmap_state);
985 if (ret < 0)
986 return ret;
987
988 __pci_mmap_set_flags(dev, vma, mmap_state);
989 __pci_mmap_set_pgprot(dev, vma, mmap_state);
990
David S. Miller14778d92006-03-21 02:29:39 -0800991 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 ret = io_remap_pfn_range(vma, vma->vm_start,
993 vma->vm_pgoff,
994 vma->vm_end - vma->vm_start,
995 vma->vm_page_prot);
996 if (ret)
997 return ret;
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return 0;
1000}
1001
1002/* Return the domain nuber for this pci bus */
1003
1004int pci_domain_nr(struct pci_bus *pbus)
1005{
1006 struct pci_pbm_info *pbm = pbus->sysdata;
1007 int ret;
1008
1009 if (pbm == NULL || pbm->parent == NULL) {
1010 ret = -ENXIO;
1011 } else {
1012 struct pci_controller_info *p = pbm->parent;
1013
1014 ret = p->index;
David S. Miller3875c5c2007-03-08 22:52:11 -08001015 ret = ((ret << 1) +
1016 ((pbm == &pbm->parent->pbm_B) ? 1 : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018
1019 return ret;
1020}
1021EXPORT_SYMBOL(pci_domain_nr);
1022
David S. Miller35a17eb2007-02-10 17:41:02 -08001023#ifdef CONFIG_PCI_MSI
1024int arch_setup_msi_irq(struct pci_dev *pdev, struct msi_desc *desc)
1025{
David S. Millera2fb23a2007-02-28 23:35:04 -08001026 struct pci_pbm_info *pbm = pdev->dev.archdata.host_controller;
David S. Miller35a17eb2007-02-10 17:41:02 -08001027 struct pci_controller_info *p = pbm->parent;
1028 int virt_irq, err;
1029
1030 if (!pbm->msi_num || !p->setup_msi_irq)
1031 return -EINVAL;
1032
1033 err = p->setup_msi_irq(&virt_irq, pdev, desc);
1034 if (err < 0)
1035 return err;
1036
1037 return virt_irq;
1038}
1039
1040void arch_teardown_msi_irq(unsigned int virt_irq)
1041{
David S. Millerabfd3362007-02-26 09:40:34 -08001042 struct msi_desc *entry = get_irq_msi(virt_irq);
David S. Miller35a17eb2007-02-10 17:41:02 -08001043 struct pci_dev *pdev = entry->dev;
David S. Millera2fb23a2007-02-28 23:35:04 -08001044 struct pci_pbm_info *pbm = pdev->dev.archdata.host_controller;
David S. Miller35a17eb2007-02-10 17:41:02 -08001045 struct pci_controller_info *p = pbm->parent;
1046
1047 if (!pbm->msi_num || !p->setup_msi_irq)
1048 return;
1049
1050 return p->teardown_msi_irq(virt_irq, pdev);
1051}
1052#endif /* !(CONFIG_PCI_MSI) */
1053
David S. Millerf6d0f9e2007-03-01 18:09:18 -08001054struct device_node *pci_device_to_OF_node(struct pci_dev *pdev)
1055{
David S. Millera2fb23a2007-02-28 23:35:04 -08001056 return pdev->dev.archdata.prom_node;
David S. Millerf6d0f9e2007-03-01 18:09:18 -08001057}
1058EXPORT_SYMBOL(pci_device_to_OF_node);
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060#endif /* !(CONFIG_PCI) */