[POWERPC] Only offer CONFIG_BRIQ_PANEL if CONFIG_PPC_CHRP is enabled
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / powerpc / kernel / prom_parse.c
1 #undef DEBUG
2
3 #include <linux/kernel.h>
4 #include <linux/string.h>
5 #include <linux/pci_regs.h>
6 #include <linux/module.h>
7 #include <linux/ioport.h>
8 #include <asm/prom.h>
9 #include <asm/pci-bridge.h>
10
11 #ifdef DEBUG
12 #define DBG(fmt...) do { printk(fmt); } while(0)
13 #else
14 #define DBG(fmt...) do { } while(0)
15 #endif
16
17 #ifdef CONFIG_PPC64
18 #define PRu64 "%lx"
19 #else
20 #define PRu64 "%llx"
21 #endif
22
23 /* Max address size we deal with */
24 #define OF_MAX_ADDR_CELLS 4
25 #define OF_CHECK_COUNTS(na, ns) ((na) > 0 && (na) <= OF_MAX_ADDR_CELLS && \
26 (ns) > 0)
27
28 /* Debug utility */
29 #ifdef DEBUG
30 static void of_dump_addr(const char *s, const u32 *addr, int na)
31 {
32 printk("%s", s);
33 while(na--)
34 printk(" %08x", *(addr++));
35 printk("\n");
36 }
37 #else
38 static void of_dump_addr(const char *s, const u32 *addr, int na) { }
39 #endif
40
41
42 /* Callbacks for bus specific translators */
43 struct of_bus {
44 const char *name;
45 const char *addresses;
46 int (*match)(struct device_node *parent);
47 void (*count_cells)(struct device_node *child,
48 int *addrc, int *sizec);
49 u64 (*map)(u32 *addr, const u32 *range,
50 int na, int ns, int pna);
51 int (*translate)(u32 *addr, u64 offset, int na);
52 unsigned int (*get_flags)(const u32 *addr);
53 };
54
55
56 /*
57 * Default translator (generic bus)
58 */
59
60 static void of_bus_default_count_cells(struct device_node *dev,
61 int *addrc, int *sizec)
62 {
63 if (addrc)
64 *addrc = prom_n_addr_cells(dev);
65 if (sizec)
66 *sizec = prom_n_size_cells(dev);
67 }
68
69 static u64 of_bus_default_map(u32 *addr, const u32 *range,
70 int na, int ns, int pna)
71 {
72 u64 cp, s, da;
73
74 cp = of_read_number(range, na);
75 s = of_read_number(range + na + pna, ns);
76 da = of_read_number(addr, na);
77
78 DBG("OF: default map, cp="PRu64", s="PRu64", da="PRu64"\n",
79 cp, s, da);
80
81 if (da < cp || da >= (cp + s))
82 return OF_BAD_ADDR;
83 return da - cp;
84 }
85
86 static int of_bus_default_translate(u32 *addr, u64 offset, int na)
87 {
88 u64 a = of_read_number(addr, na);
89 memset(addr, 0, na * 4);
90 a += offset;
91 if (na > 1)
92 addr[na - 2] = a >> 32;
93 addr[na - 1] = a & 0xffffffffu;
94
95 return 0;
96 }
97
98 static unsigned int of_bus_default_get_flags(const u32 *addr)
99 {
100 return IORESOURCE_MEM;
101 }
102
103
104 /*
105 * PCI bus specific translator
106 */
107
108 static int of_bus_pci_match(struct device_node *np)
109 {
110 /* "vci" is for the /chaos bridge on 1st-gen PCI powermacs */
111 return !strcmp(np->type, "pci") || !strcmp(np->type, "vci");
112 }
113
114 static void of_bus_pci_count_cells(struct device_node *np,
115 int *addrc, int *sizec)
116 {
117 if (addrc)
118 *addrc = 3;
119 if (sizec)
120 *sizec = 2;
121 }
122
123 static u64 of_bus_pci_map(u32 *addr, const u32 *range, int na, int ns, int pna)
124 {
125 u64 cp, s, da;
126
127 /* Check address type match */
128 if ((addr[0] ^ range[0]) & 0x03000000)
129 return OF_BAD_ADDR;
130
131 /* Read address values, skipping high cell */
132 cp = of_read_number(range + 1, na - 1);
133 s = of_read_number(range + na + pna, ns);
134 da = of_read_number(addr + 1, na - 1);
135
136 DBG("OF: PCI map, cp="PRu64", s="PRu64", da="PRu64"\n", cp, s, da);
137
138 if (da < cp || da >= (cp + s))
139 return OF_BAD_ADDR;
140 return da - cp;
141 }
142
143 static int of_bus_pci_translate(u32 *addr, u64 offset, int na)
144 {
145 return of_bus_default_translate(addr + 1, offset, na - 1);
146 }
147
148 static unsigned int of_bus_pci_get_flags(const u32 *addr)
149 {
150 unsigned int flags = 0;
151 u32 w = addr[0];
152
153 switch((w >> 24) & 0x03) {
154 case 0x01:
155 flags |= IORESOURCE_IO;
156 case 0x02: /* 32 bits */
157 case 0x03: /* 64 bits */
158 flags |= IORESOURCE_MEM;
159 }
160 if (w & 0x40000000)
161 flags |= IORESOURCE_PREFETCH;
162 return flags;
163 }
164
165 /*
166 * ISA bus specific translator
167 */
168
169 static int of_bus_isa_match(struct device_node *np)
170 {
171 return !strcmp(np->name, "isa");
172 }
173
174 static void of_bus_isa_count_cells(struct device_node *child,
175 int *addrc, int *sizec)
176 {
177 if (addrc)
178 *addrc = 2;
179 if (sizec)
180 *sizec = 1;
181 }
182
183 static u64 of_bus_isa_map(u32 *addr, const u32 *range, int na, int ns, int pna)
184 {
185 u64 cp, s, da;
186
187 /* Check address type match */
188 if ((addr[0] ^ range[0]) & 0x00000001)
189 return OF_BAD_ADDR;
190
191 /* Read address values, skipping high cell */
192 cp = of_read_number(range + 1, na - 1);
193 s = of_read_number(range + na + pna, ns);
194 da = of_read_number(addr + 1, na - 1);
195
196 DBG("OF: ISA map, cp="PRu64", s="PRu64", da="PRu64"\n", cp, s, da);
197
198 if (da < cp || da >= (cp + s))
199 return OF_BAD_ADDR;
200 return da - cp;
201 }
202
203 static int of_bus_isa_translate(u32 *addr, u64 offset, int na)
204 {
205 return of_bus_default_translate(addr + 1, offset, na - 1);
206 }
207
208 static unsigned int of_bus_isa_get_flags(const u32 *addr)
209 {
210 unsigned int flags = 0;
211 u32 w = addr[0];
212
213 if (w & 1)
214 flags |= IORESOURCE_IO;
215 else
216 flags |= IORESOURCE_MEM;
217 return flags;
218 }
219
220
221 /*
222 * Array of bus specific translators
223 */
224
225 static struct of_bus of_busses[] = {
226 /* PCI */
227 {
228 .name = "pci",
229 .addresses = "assigned-addresses",
230 .match = of_bus_pci_match,
231 .count_cells = of_bus_pci_count_cells,
232 .map = of_bus_pci_map,
233 .translate = of_bus_pci_translate,
234 .get_flags = of_bus_pci_get_flags,
235 },
236 /* ISA */
237 {
238 .name = "isa",
239 .addresses = "reg",
240 .match = of_bus_isa_match,
241 .count_cells = of_bus_isa_count_cells,
242 .map = of_bus_isa_map,
243 .translate = of_bus_isa_translate,
244 .get_flags = of_bus_isa_get_flags,
245 },
246 /* Default */
247 {
248 .name = "default",
249 .addresses = "reg",
250 .match = NULL,
251 .count_cells = of_bus_default_count_cells,
252 .map = of_bus_default_map,
253 .translate = of_bus_default_translate,
254 .get_flags = of_bus_default_get_flags,
255 },
256 };
257
258 static struct of_bus *of_match_bus(struct device_node *np)
259 {
260 int i;
261
262 for (i = 0; i < ARRAY_SIZE(of_busses); i ++)
263 if (!of_busses[i].match || of_busses[i].match(np))
264 return &of_busses[i];
265 BUG();
266 return NULL;
267 }
268
269 static int of_translate_one(struct device_node *parent, struct of_bus *bus,
270 struct of_bus *pbus, u32 *addr,
271 int na, int ns, int pna)
272 {
273 const u32 *ranges;
274 unsigned int rlen;
275 int rone;
276 u64 offset = OF_BAD_ADDR;
277
278 /* Normally, an absence of a "ranges" property means we are
279 * crossing a non-translatable boundary, and thus the addresses
280 * below the current not cannot be converted to CPU physical ones.
281 * Unfortunately, while this is very clear in the spec, it's not
282 * what Apple understood, and they do have things like /uni-n or
283 * /ht nodes with no "ranges" property and a lot of perfectly
284 * useable mapped devices below them. Thus we treat the absence of
285 * "ranges" as equivalent to an empty "ranges" property which means
286 * a 1:1 translation at that level. It's up to the caller not to try
287 * to translate addresses that aren't supposed to be translated in
288 * the first place. --BenH.
289 */
290 ranges = get_property(parent, "ranges", &rlen);
291 if (ranges == NULL || rlen == 0) {
292 offset = of_read_number(addr, na);
293 memset(addr, 0, pna * 4);
294 DBG("OF: no ranges, 1:1 translation\n");
295 goto finish;
296 }
297
298 DBG("OF: walking ranges...\n");
299
300 /* Now walk through the ranges */
301 rlen /= 4;
302 rone = na + pna + ns;
303 for (; rlen >= rone; rlen -= rone, ranges += rone) {
304 offset = bus->map(addr, ranges, na, ns, pna);
305 if (offset != OF_BAD_ADDR)
306 break;
307 }
308 if (offset == OF_BAD_ADDR) {
309 DBG("OF: not found !\n");
310 return 1;
311 }
312 memcpy(addr, ranges + na, 4 * pna);
313
314 finish:
315 of_dump_addr("OF: parent translation for:", addr, pna);
316 DBG("OF: with offset: "PRu64"\n", offset);
317
318 /* Translate it into parent bus space */
319 return pbus->translate(addr, offset, pna);
320 }
321
322
323 /*
324 * Translate an address from the device-tree into a CPU physical address,
325 * this walks up the tree and applies the various bus mappings on the
326 * way.
327 *
328 * Note: We consider that crossing any level with #size-cells == 0 to mean
329 * that translation is impossible (that is we are not dealing with a value
330 * that can be mapped to a cpu physical address). This is not really specified
331 * that way, but this is traditionally the way IBM at least do things
332 */
333 u64 of_translate_address(struct device_node *dev, const u32 *in_addr)
334 {
335 struct device_node *parent = NULL;
336 struct of_bus *bus, *pbus;
337 u32 addr[OF_MAX_ADDR_CELLS];
338 int na, ns, pna, pns;
339 u64 result = OF_BAD_ADDR;
340
341 DBG("OF: ** translation for device %s **\n", dev->full_name);
342
343 /* Increase refcount at current level */
344 of_node_get(dev);
345
346 /* Get parent & match bus type */
347 parent = of_get_parent(dev);
348 if (parent == NULL)
349 goto bail;
350 bus = of_match_bus(parent);
351
352 /* Cound address cells & copy address locally */
353 bus->count_cells(dev, &na, &ns);
354 if (!OF_CHECK_COUNTS(na, ns)) {
355 printk(KERN_ERR "prom_parse: Bad cell count for %s\n",
356 dev->full_name);
357 goto bail;
358 }
359 memcpy(addr, in_addr, na * 4);
360
361 DBG("OF: bus is %s (na=%d, ns=%d) on %s\n",
362 bus->name, na, ns, parent->full_name);
363 of_dump_addr("OF: translating address:", addr, na);
364
365 /* Translate */
366 for (;;) {
367 /* Switch to parent bus */
368 of_node_put(dev);
369 dev = parent;
370 parent = of_get_parent(dev);
371
372 /* If root, we have finished */
373 if (parent == NULL) {
374 DBG("OF: reached root node\n");
375 result = of_read_number(addr, na);
376 break;
377 }
378
379 /* Get new parent bus and counts */
380 pbus = of_match_bus(parent);
381 pbus->count_cells(dev, &pna, &pns);
382 if (!OF_CHECK_COUNTS(pna, pns)) {
383 printk(KERN_ERR "prom_parse: Bad cell count for %s\n",
384 dev->full_name);
385 break;
386 }
387
388 DBG("OF: parent bus is %s (na=%d, ns=%d) on %s\n",
389 pbus->name, pna, pns, parent->full_name);
390
391 /* Apply bus translation */
392 if (of_translate_one(dev, bus, pbus, addr, na, ns, pna))
393 break;
394
395 /* Complete the move up one level */
396 na = pna;
397 ns = pns;
398 bus = pbus;
399
400 of_dump_addr("OF: one level translation:", addr, na);
401 }
402 bail:
403 of_node_put(parent);
404 of_node_put(dev);
405
406 return result;
407 }
408 EXPORT_SYMBOL(of_translate_address);
409
410 const u32 *of_get_address(struct device_node *dev, int index, u64 *size,
411 unsigned int *flags)
412 {
413 const u32 *prop;
414 unsigned int psize;
415 struct device_node *parent;
416 struct of_bus *bus;
417 int onesize, i, na, ns;
418
419 /* Get parent & match bus type */
420 parent = of_get_parent(dev);
421 if (parent == NULL)
422 return NULL;
423 bus = of_match_bus(parent);
424 bus->count_cells(dev, &na, &ns);
425 of_node_put(parent);
426 if (!OF_CHECK_COUNTS(na, ns))
427 return NULL;
428
429 /* Get "reg" or "assigned-addresses" property */
430 prop = get_property(dev, bus->addresses, &psize);
431 if (prop == NULL)
432 return NULL;
433 psize /= 4;
434
435 onesize = na + ns;
436 for (i = 0; psize >= onesize; psize -= onesize, prop += onesize, i++)
437 if (i == index) {
438 if (size)
439 *size = of_read_number(prop + na, ns);
440 if (flags)
441 *flags = bus->get_flags(prop);
442 return prop;
443 }
444 return NULL;
445 }
446 EXPORT_SYMBOL(of_get_address);
447
448 const u32 *of_get_pci_address(struct device_node *dev, int bar_no, u64 *size,
449 unsigned int *flags)
450 {
451 const u32 *prop;
452 unsigned int psize;
453 struct device_node *parent;
454 struct of_bus *bus;
455 int onesize, i, na, ns;
456
457 /* Get parent & match bus type */
458 parent = of_get_parent(dev);
459 if (parent == NULL)
460 return NULL;
461 bus = of_match_bus(parent);
462 if (strcmp(bus->name, "pci")) {
463 of_node_put(parent);
464 return NULL;
465 }
466 bus->count_cells(dev, &na, &ns);
467 of_node_put(parent);
468 if (!OF_CHECK_COUNTS(na, ns))
469 return NULL;
470
471 /* Get "reg" or "assigned-addresses" property */
472 prop = get_property(dev, bus->addresses, &psize);
473 if (prop == NULL)
474 return NULL;
475 psize /= 4;
476
477 onesize = na + ns;
478 for (i = 0; psize >= onesize; psize -= onesize, prop += onesize, i++)
479 if ((prop[0] & 0xff) == ((bar_no * 4) + PCI_BASE_ADDRESS_0)) {
480 if (size)
481 *size = of_read_number(prop + na, ns);
482 if (flags)
483 *flags = bus->get_flags(prop);
484 return prop;
485 }
486 return NULL;
487 }
488 EXPORT_SYMBOL(of_get_pci_address);
489
490 static int __of_address_to_resource(struct device_node *dev, const u32 *addrp,
491 u64 size, unsigned int flags,
492 struct resource *r)
493 {
494 u64 taddr;
495
496 if ((flags & (IORESOURCE_IO | IORESOURCE_MEM)) == 0)
497 return -EINVAL;
498 taddr = of_translate_address(dev, addrp);
499 if (taddr == OF_BAD_ADDR)
500 return -EINVAL;
501 memset(r, 0, sizeof(struct resource));
502 if (flags & IORESOURCE_IO) {
503 unsigned long port;
504 port = pci_address_to_pio(taddr);
505 if (port == (unsigned long)-1)
506 return -EINVAL;
507 r->start = port;
508 r->end = port + size - 1;
509 } else {
510 r->start = taddr;
511 r->end = taddr + size - 1;
512 }
513 r->flags = flags;
514 r->name = dev->name;
515 return 0;
516 }
517
518 int of_address_to_resource(struct device_node *dev, int index,
519 struct resource *r)
520 {
521 const u32 *addrp;
522 u64 size;
523 unsigned int flags;
524
525 addrp = of_get_address(dev, index, &size, &flags);
526 if (addrp == NULL)
527 return -EINVAL;
528 return __of_address_to_resource(dev, addrp, size, flags, r);
529 }
530 EXPORT_SYMBOL_GPL(of_address_to_resource);
531
532 int of_pci_address_to_resource(struct device_node *dev, int bar,
533 struct resource *r)
534 {
535 const u32 *addrp;
536 u64 size;
537 unsigned int flags;
538
539 addrp = of_get_pci_address(dev, bar, &size, &flags);
540 if (addrp == NULL)
541 return -EINVAL;
542 return __of_address_to_resource(dev, addrp, size, flags, r);
543 }
544 EXPORT_SYMBOL_GPL(of_pci_address_to_resource);
545
546 void of_parse_dma_window(struct device_node *dn, const void *dma_window_prop,
547 unsigned long *busno, unsigned long *phys, unsigned long *size)
548 {
549 const u32 *dma_window;
550 u32 cells;
551 const unsigned char *prop;
552
553 dma_window = dma_window_prop;
554
555 /* busno is always one cell */
556 *busno = *(dma_window++);
557
558 prop = get_property(dn, "ibm,#dma-address-cells", NULL);
559 if (!prop)
560 prop = get_property(dn, "#address-cells", NULL);
561
562 cells = prop ? *(u32 *)prop : prom_n_addr_cells(dn);
563 *phys = of_read_number(dma_window, cells);
564
565 dma_window += cells;
566
567 prop = get_property(dn, "ibm,#dma-size-cells", NULL);
568 cells = prop ? *(u32 *)prop : prom_n_size_cells(dn);
569 *size = of_read_number(dma_window, cells);
570 }
571
572 /*
573 * Interrupt remapper
574 */
575
576 static unsigned int of_irq_workarounds;
577 static struct device_node *of_irq_dflt_pic;
578
579 static struct device_node *of_irq_find_parent(struct device_node *child)
580 {
581 struct device_node *p;
582 const phandle *parp;
583
584 if (!of_node_get(child))
585 return NULL;
586
587 do {
588 parp = get_property(child, "interrupt-parent", NULL);
589 if (parp == NULL)
590 p = of_get_parent(child);
591 else {
592 if (of_irq_workarounds & OF_IMAP_NO_PHANDLE)
593 p = of_node_get(of_irq_dflt_pic);
594 else
595 p = of_find_node_by_phandle(*parp);
596 }
597 of_node_put(child);
598 child = p;
599 } while (p && get_property(p, "#interrupt-cells", NULL) == NULL);
600
601 return p;
602 }
603
604 /* This doesn't need to be called if you don't have any special workaround
605 * flags to pass
606 */
607 void of_irq_map_init(unsigned int flags)
608 {
609 of_irq_workarounds = flags;
610
611 /* OldWorld, don't bother looking at other things */
612 if (flags & OF_IMAP_OLDWORLD_MAC)
613 return;
614
615 /* If we don't have phandles, let's try to locate a default interrupt
616 * controller (happens when booting with BootX). We do a first match
617 * here, hopefully, that only ever happens on machines with one
618 * controller.
619 */
620 if (flags & OF_IMAP_NO_PHANDLE) {
621 struct device_node *np;
622
623 for(np = NULL; (np = of_find_all_nodes(np)) != NULL;) {
624 if (get_property(np, "interrupt-controller", NULL)
625 == NULL)
626 continue;
627 /* Skip /chosen/interrupt-controller */
628 if (strcmp(np->name, "chosen") == 0)
629 continue;
630 /* It seems like at least one person on this planet wants
631 * to use BootX on a machine with an AppleKiwi controller
632 * which happens to pretend to be an interrupt
633 * controller too.
634 */
635 if (strcmp(np->name, "AppleKiwi") == 0)
636 continue;
637 /* I think we found one ! */
638 of_irq_dflt_pic = np;
639 break;
640 }
641 }
642
643 }
644
645 int of_irq_map_raw(struct device_node *parent, const u32 *intspec,
646 const u32 *addr, struct of_irq *out_irq)
647 {
648 struct device_node *ipar, *tnode, *old = NULL, *newpar = NULL;
649 const u32 *tmp, *imap, *imask;
650 u32 intsize = 1, addrsize, newintsize = 0, newaddrsize = 0;
651 int imaplen, match, i;
652
653 ipar = of_node_get(parent);
654
655 /* First get the #interrupt-cells property of the current cursor
656 * that tells us how to interpret the passed-in intspec. If there
657 * is none, we are nice and just walk up the tree
658 */
659 do {
660 tmp = get_property(ipar, "#interrupt-cells", NULL);
661 if (tmp != NULL) {
662 intsize = *tmp;
663 break;
664 }
665 tnode = ipar;
666 ipar = of_irq_find_parent(ipar);
667 of_node_put(tnode);
668 } while (ipar);
669 if (ipar == NULL) {
670 DBG(" -> no parent found !\n");
671 goto fail;
672 }
673
674 DBG("of_irq_map_raw: ipar=%s, size=%d\n", ipar->full_name, intsize);
675
676 /* Look for this #address-cells. We have to implement the old linux
677 * trick of looking for the parent here as some device-trees rely on it
678 */
679 old = of_node_get(ipar);
680 do {
681 tmp = get_property(old, "#address-cells", NULL);
682 tnode = of_get_parent(old);
683 of_node_put(old);
684 old = tnode;
685 } while(old && tmp == NULL);
686 of_node_put(old);
687 old = NULL;
688 addrsize = (tmp == NULL) ? 2 : *tmp;
689
690 DBG(" -> addrsize=%d\n", addrsize);
691
692 /* Now start the actual "proper" walk of the interrupt tree */
693 while (ipar != NULL) {
694 /* Now check if cursor is an interrupt-controller and if it is
695 * then we are done
696 */
697 if (get_property(ipar, "interrupt-controller", NULL) != NULL) {
698 DBG(" -> got it !\n");
699 memcpy(out_irq->specifier, intspec,
700 intsize * sizeof(u32));
701 out_irq->size = intsize;
702 out_irq->controller = ipar;
703 of_node_put(old);
704 return 0;
705 }
706
707 /* Now look for an interrupt-map */
708 imap = get_property(ipar, "interrupt-map", &imaplen);
709 /* No interrupt map, check for an interrupt parent */
710 if (imap == NULL) {
711 DBG(" -> no map, getting parent\n");
712 newpar = of_irq_find_parent(ipar);
713 goto skiplevel;
714 }
715 imaplen /= sizeof(u32);
716
717 /* Look for a mask */
718 imask = get_property(ipar, "interrupt-map-mask", NULL);
719
720 /* If we were passed no "reg" property and we attempt to parse
721 * an interrupt-map, then #address-cells must be 0.
722 * Fail if it's not.
723 */
724 if (addr == NULL && addrsize != 0) {
725 DBG(" -> no reg passed in when needed !\n");
726 goto fail;
727 }
728
729 /* Parse interrupt-map */
730 match = 0;
731 while (imaplen > (addrsize + intsize + 1) && !match) {
732 /* Compare specifiers */
733 match = 1;
734 for (i = 0; i < addrsize && match; ++i) {
735 u32 mask = imask ? imask[i] : 0xffffffffu;
736 match = ((addr[i] ^ imap[i]) & mask) == 0;
737 }
738 for (; i < (addrsize + intsize) && match; ++i) {
739 u32 mask = imask ? imask[i] : 0xffffffffu;
740 match =
741 ((intspec[i-addrsize] ^ imap[i]) & mask) == 0;
742 }
743 imap += addrsize + intsize;
744 imaplen -= addrsize + intsize;
745
746 DBG(" -> match=%d (imaplen=%d)\n", match, imaplen);
747
748 /* Get the interrupt parent */
749 if (of_irq_workarounds & OF_IMAP_NO_PHANDLE)
750 newpar = of_node_get(of_irq_dflt_pic);
751 else
752 newpar = of_find_node_by_phandle((phandle)*imap);
753 imap++;
754 --imaplen;
755
756 /* Check if not found */
757 if (newpar == NULL) {
758 DBG(" -> imap parent not found !\n");
759 goto fail;
760 }
761
762 /* Get #interrupt-cells and #address-cells of new
763 * parent
764 */
765 tmp = get_property(newpar, "#interrupt-cells",
766 NULL);
767 if (tmp == NULL) {
768 DBG(" -> parent lacks #interrupt-cells !\n");
769 goto fail;
770 }
771 newintsize = *tmp;
772 tmp = get_property(newpar, "#address-cells",
773 NULL);
774 newaddrsize = (tmp == NULL) ? 0 : *tmp;
775
776 DBG(" -> newintsize=%d, newaddrsize=%d\n",
777 newintsize, newaddrsize);
778
779 /* Check for malformed properties */
780 if (imaplen < (newaddrsize + newintsize))
781 goto fail;
782
783 imap += newaddrsize + newintsize;
784 imaplen -= newaddrsize + newintsize;
785
786 DBG(" -> imaplen=%d\n", imaplen);
787 }
788 if (!match)
789 goto fail;
790
791 of_node_put(old);
792 old = of_node_get(newpar);
793 addrsize = newaddrsize;
794 intsize = newintsize;
795 intspec = imap - intsize;
796 addr = intspec - addrsize;
797
798 skiplevel:
799 /* Iterate again with new parent */
800 DBG(" -> new parent: %s\n", newpar ? newpar->full_name : "<>");
801 of_node_put(ipar);
802 ipar = newpar;
803 newpar = NULL;
804 }
805 fail:
806 of_node_put(ipar);
807 of_node_put(old);
808 of_node_put(newpar);
809
810 return -EINVAL;
811 }
812 EXPORT_SYMBOL_GPL(of_irq_map_raw);
813
814 #if defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32)
815 static int of_irq_map_oldworld(struct device_node *device, int index,
816 struct of_irq *out_irq)
817 {
818 const u32 *ints;
819 int intlen;
820
821 /*
822 * Old machines just have a list of interrupt numbers
823 * and no interrupt-controller nodes.
824 */
825 ints = get_property(device, "AAPL,interrupts", &intlen);
826 if (ints == NULL)
827 return -EINVAL;
828 intlen /= sizeof(u32);
829
830 if (index >= intlen)
831 return -EINVAL;
832
833 out_irq->controller = NULL;
834 out_irq->specifier[0] = ints[index];
835 out_irq->size = 1;
836
837 return 0;
838 }
839 #else /* defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32) */
840 static int of_irq_map_oldworld(struct device_node *device, int index,
841 struct of_irq *out_irq)
842 {
843 return -EINVAL;
844 }
845 #endif /* !(defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32)) */
846
847 int of_irq_map_one(struct device_node *device, int index, struct of_irq *out_irq)
848 {
849 struct device_node *p;
850 const u32 *intspec, *tmp, *addr;
851 u32 intsize, intlen;
852 int res;
853
854 DBG("of_irq_map_one: dev=%s, index=%d\n", device->full_name, index);
855
856 /* OldWorld mac stuff is "special", handle out of line */
857 if (of_irq_workarounds & OF_IMAP_OLDWORLD_MAC)
858 return of_irq_map_oldworld(device, index, out_irq);
859
860 /* Get the interrupts property */
861 intspec = get_property(device, "interrupts", &intlen);
862 if (intspec == NULL)
863 return -EINVAL;
864 intlen /= sizeof(u32);
865
866 /* Get the reg property (if any) */
867 addr = get_property(device, "reg", NULL);
868
869 /* Look for the interrupt parent. */
870 p = of_irq_find_parent(device);
871 if (p == NULL)
872 return -EINVAL;
873
874 /* Get size of interrupt specifier */
875 tmp = get_property(p, "#interrupt-cells", NULL);
876 if (tmp == NULL) {
877 of_node_put(p);
878 return -EINVAL;
879 }
880 intsize = *tmp;
881
882 /* Check index */
883 if ((index + 1) * intsize > intlen)
884 return -EINVAL;
885
886 /* Get new specifier and map it */
887 res = of_irq_map_raw(p, intspec + index * intsize, addr, out_irq);
888 of_node_put(p);
889 return res;
890 }
891 EXPORT_SYMBOL_GPL(of_irq_map_one);
892
893 #ifdef CONFIG_PCI
894 static u8 of_irq_pci_swizzle(u8 slot, u8 pin)
895 {
896 return (((pin - 1) + slot) % 4) + 1;
897 }
898
899 int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq)
900 {
901 struct device_node *dn, *ppnode;
902 struct pci_dev *ppdev;
903 u32 lspec;
904 u32 laddr[3];
905 u8 pin;
906 int rc;
907
908 /* Check if we have a device node, if yes, fallback to standard OF
909 * parsing
910 */
911 dn = pci_device_to_OF_node(pdev);
912 if (dn)
913 return of_irq_map_one(dn, 0, out_irq);
914
915 /* Ok, we don't, time to have fun. Let's start by building up an
916 * interrupt spec. we assume #interrupt-cells is 1, which is standard
917 * for PCI. If you do different, then don't use that routine.
918 */
919 rc = pci_read_config_byte(pdev, PCI_INTERRUPT_PIN, &pin);
920 if (rc != 0)
921 return rc;
922 /* No pin, exit */
923 if (pin == 0)
924 return -ENODEV;
925
926 /* Now we walk up the PCI tree */
927 lspec = pin;
928 for (;;) {
929 /* Get the pci_dev of our parent */
930 ppdev = pdev->bus->self;
931
932 /* Ouch, it's a host bridge... */
933 if (ppdev == NULL) {
934 #ifdef CONFIG_PPC64
935 ppnode = pci_bus_to_OF_node(pdev->bus);
936 #else
937 struct pci_controller *host;
938 host = pci_bus_to_host(pdev->bus);
939 ppnode = host ? host->arch_data : NULL;
940 #endif
941 /* No node for host bridge ? give up */
942 if (ppnode == NULL)
943 return -EINVAL;
944 } else
945 /* We found a P2P bridge, check if it has a node */
946 ppnode = pci_device_to_OF_node(ppdev);
947
948 /* Ok, we have found a parent with a device-node, hand over to
949 * the OF parsing code.
950 * We build a unit address from the linux device to be used for
951 * resolution. Note that we use the linux bus number which may
952 * not match your firmware bus numbering.
953 * Fortunately, in most cases, interrupt-map-mask doesn't include
954 * the bus number as part of the matching.
955 * You should still be careful about that though if you intend
956 * to rely on this function (you ship a firmware that doesn't
957 * create device nodes for all PCI devices).
958 */
959 if (ppnode)
960 break;
961
962 /* We can only get here if we hit a P2P bridge with no node,
963 * let's do standard swizzling and try again
964 */
965 lspec = of_irq_pci_swizzle(PCI_SLOT(pdev->devfn), lspec);
966 pdev = ppdev;
967 }
968
969 laddr[0] = (pdev->bus->number << 16)
970 | (pdev->devfn << 8);
971 laddr[1] = laddr[2] = 0;
972 return of_irq_map_raw(ppnode, &lspec, laddr, out_irq);
973 }
974 EXPORT_SYMBOL_GPL(of_irq_map_pci);
975 #endif /* CONFIG_PCI */