]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/powerpc/kernel/prom_parse.c
[POWERPC] Use const qualifiers for prom parsing utilites
[linux-2.6-omap-h63xx.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         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 = (u32 *)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, 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 u32 *of_get_address(struct device_node *dev, int index, u64 *size,
411                     unsigned int *flags)
412 {
413         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 = (u32 *)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 u32 *of_get_pci_address(struct device_node *dev, int bar_no, u64 *size,
449                         unsigned int *flags)
450 {
451         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 = (u32 *)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, 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         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         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, unsigned char *dma_window_prop,
547                 unsigned long *busno, unsigned long *phys, unsigned long *size)
548 {
549         u32 *dma_window, cells;
550         unsigned char *prop;
551
552         dma_window = (u32 *)dma_window_prop;
553
554         /* busno is always one cell */
555         *busno = *(dma_window++);
556
557         prop = get_property(dn, "ibm,#dma-address-cells", NULL);
558         if (!prop)
559                 prop = get_property(dn, "#address-cells", NULL);
560
561         cells = prop ? *(u32 *)prop : prom_n_addr_cells(dn);
562         *phys = of_read_number(dma_window, cells);
563
564         dma_window += cells;
565
566         prop = get_property(dn, "ibm,#dma-size-cells", NULL);
567         cells = prop ? *(u32 *)prop : prom_n_size_cells(dn);
568         *size = of_read_number(dma_window, cells);
569 }
570
571 /*
572  * Interrupt remapper
573  */
574
575 static unsigned int of_irq_workarounds;
576 static struct device_node *of_irq_dflt_pic;
577
578 static struct device_node *of_irq_find_parent(struct device_node *child)
579 {
580         struct device_node *p;
581         phandle *parp;
582
583         if (!of_node_get(child))
584                 return NULL;
585
586         do {
587                 parp = (phandle *)get_property(child, "interrupt-parent", NULL);
588                 if (parp == NULL)
589                         p = of_get_parent(child);
590                 else {
591                         if (of_irq_workarounds & OF_IMAP_NO_PHANDLE)
592                                 p = of_node_get(of_irq_dflt_pic);
593                         else
594                                 p = of_find_node_by_phandle(*parp);
595                 }
596                 of_node_put(child);
597                 child = p;
598         } while (p && get_property(p, "#interrupt-cells", NULL) == NULL);
599
600         return p;
601 }
602
603 static u8 of_irq_pci_swizzle(u8 slot, u8 pin)
604 {
605         return (((pin - 1) + slot) % 4) + 1;
606 }
607
608 /* This doesn't need to be called if you don't have any special workaround
609  * flags to pass
610  */
611 void of_irq_map_init(unsigned int flags)
612 {
613         of_irq_workarounds = flags;
614
615         /* OldWorld, don't bother looking at other things */
616         if (flags & OF_IMAP_OLDWORLD_MAC)
617                 return;
618
619         /* If we don't have phandles, let's try to locate a default interrupt
620          * controller (happens when booting with BootX). We do a first match
621          * here, hopefully, that only ever happens on machines with one
622          * controller.
623          */
624         if (flags & OF_IMAP_NO_PHANDLE) {
625                 struct device_node *np;
626
627                 for(np = NULL; (np = of_find_all_nodes(np)) != NULL;) {
628                         if (get_property(np, "interrupt-controller", NULL)
629                             == NULL)
630                                 continue;
631                         /* Skip /chosen/interrupt-controller */
632                         if (strcmp(np->name, "chosen") == 0)
633                                 continue;
634                         /* It seems like at least one person on this planet wants
635                          * to use BootX on a machine with an AppleKiwi controller
636                          * which happens to pretend to be an interrupt
637                          * controller too.
638                          */
639                         if (strcmp(np->name, "AppleKiwi") == 0)
640                                 continue;
641                         /* I think we found one ! */
642                         of_irq_dflt_pic = np;
643                         break;
644                 }
645         }
646
647 }
648
649 int of_irq_map_raw(struct device_node *parent, u32 *intspec, u32 *addr,
650                    struct of_irq *out_irq)
651 {
652         struct device_node *ipar, *tnode, *old = NULL, *newpar = NULL;
653         u32 *tmp, *imap, *imask;
654         u32 intsize = 1, addrsize, newintsize = 0, newaddrsize = 0;
655         int imaplen, match, i;
656
657         ipar = of_node_get(parent);
658
659         /* First get the #interrupt-cells property of the current cursor
660          * that tells us how to interpret the passed-in intspec. If there
661          * is none, we are nice and just walk up the tree
662          */
663         do {
664                 tmp = (u32 *)get_property(ipar, "#interrupt-cells", NULL);
665                 if (tmp != NULL) {
666                         intsize = *tmp;
667                         break;
668                 }
669                 tnode = ipar;
670                 ipar = of_irq_find_parent(ipar);
671                 of_node_put(tnode);
672         } while (ipar);
673         if (ipar == NULL) {
674                 DBG(" -> no parent found !\n");
675                 goto fail;
676         }
677
678         DBG("of_irq_map_raw: ipar=%s, size=%d\n", ipar->full_name, intsize);
679
680         /* Look for this #address-cells. We have to implement the old linux
681          * trick of looking for the parent here as some device-trees rely on it
682          */
683         old = of_node_get(ipar);
684         do {
685                 tmp = (u32 *)get_property(old, "#address-cells", NULL);
686                 tnode = of_get_parent(old);
687                 of_node_put(old);
688                 old = tnode;
689         } while(old && tmp == NULL);
690         of_node_put(old);
691         old = NULL;
692         addrsize = (tmp == NULL) ? 2 : *tmp;
693
694         DBG(" -> addrsize=%d\n", addrsize);
695
696         /* Now start the actual "proper" walk of the interrupt tree */
697         while (ipar != NULL) {
698                 /* Now check if cursor is an interrupt-controller and if it is
699                  * then we are done
700                  */
701                 if (get_property(ipar, "interrupt-controller", NULL) != NULL) {
702                         DBG(" -> got it !\n");
703                         memcpy(out_irq->specifier, intspec,
704                                intsize * sizeof(u32));
705                         out_irq->size = intsize;
706                         out_irq->controller = ipar;
707                         of_node_put(old);
708                         return 0;
709                 }
710
711                 /* Now look for an interrupt-map */
712                 imap = (u32 *)get_property(ipar, "interrupt-map", &imaplen);
713                 /* No interrupt map, check for an interrupt parent */
714                 if (imap == NULL) {
715                         DBG(" -> no map, getting parent\n");
716                         newpar = of_irq_find_parent(ipar);
717                         goto skiplevel;
718                 }
719                 imaplen /= sizeof(u32);
720
721                 /* Look for a mask */
722                 imask = (u32 *)get_property(ipar, "interrupt-map-mask", NULL);
723
724                 /* If we were passed no "reg" property and we attempt to parse
725                  * an interrupt-map, then #address-cells must be 0.
726                  * Fail if it's not.
727                  */
728                 if (addr == NULL && addrsize != 0) {
729                         DBG(" -> no reg passed in when needed !\n");
730                         goto fail;
731                 }
732
733                 /* Parse interrupt-map */
734                 match = 0;
735                 while (imaplen > (addrsize + intsize + 1) && !match) {
736                         /* Compare specifiers */
737                         match = 1;
738                         for (i = 0; i < addrsize && match; ++i) {
739                                 u32 mask = imask ? imask[i] : 0xffffffffu;
740                                 match = ((addr[i] ^ imap[i]) & mask) == 0;
741                         }
742                         for (; i < (addrsize + intsize) && match; ++i) {
743                                 u32 mask = imask ? imask[i] : 0xffffffffu;
744                                 match =
745                                    ((intspec[i-addrsize] ^ imap[i]) & mask) == 0;
746                         }
747                         imap += addrsize + intsize;
748                         imaplen -= addrsize + intsize;
749
750                         DBG(" -> match=%d (imaplen=%d)\n", match, imaplen);
751
752                         /* Get the interrupt parent */
753                         if (of_irq_workarounds & OF_IMAP_NO_PHANDLE)
754                                 newpar = of_node_get(of_irq_dflt_pic);
755                         else
756                                 newpar = of_find_node_by_phandle((phandle)*imap);
757                         imap++;
758                         --imaplen;
759
760                         /* Check if not found */
761                         if (newpar == NULL) {
762                                 DBG(" -> imap parent not found !\n");
763                                 goto fail;
764                         }
765
766                         /* Get #interrupt-cells and #address-cells of new
767                          * parent
768                          */
769                         tmp = (u32 *)get_property(newpar, "#interrupt-cells",
770                                                   NULL);
771                         if (tmp == NULL) {
772                                 DBG(" -> parent lacks #interrupt-cells !\n");
773                                 goto fail;
774                         }
775                         newintsize = *tmp;
776                         tmp = (u32 *)get_property(newpar, "#address-cells",
777                                                   NULL);
778                         newaddrsize = (tmp == NULL) ? 0 : *tmp;
779
780                         DBG(" -> newintsize=%d, newaddrsize=%d\n",
781                             newintsize, newaddrsize);
782
783                         /* Check for malformed properties */
784                         if (imaplen < (newaddrsize + newintsize))
785                                 goto fail;
786
787                         imap += newaddrsize + newintsize;
788                         imaplen -= newaddrsize + newintsize;
789
790                         DBG(" -> imaplen=%d\n", imaplen);
791                 }
792                 if (!match)
793                         goto fail;
794
795                 of_node_put(old);
796                 old = of_node_get(newpar);
797                 addrsize = newaddrsize;
798                 intsize = newintsize;
799                 intspec = imap - intsize;
800                 addr = intspec - addrsize;
801
802         skiplevel:
803                 /* Iterate again with new parent */
804                 DBG(" -> new parent: %s\n", newpar ? newpar->full_name : "<>");
805                 of_node_put(ipar);
806                 ipar = newpar;
807                 newpar = NULL;
808         }
809  fail:
810         of_node_put(ipar);
811         of_node_put(old);
812         of_node_put(newpar);
813
814         return -EINVAL;
815 }
816 EXPORT_SYMBOL_GPL(of_irq_map_raw);
817
818 #if defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32)
819 static int of_irq_map_oldworld(struct device_node *device, int index,
820                                struct of_irq *out_irq)
821 {
822         u32 *ints;
823         int intlen;
824
825         /*
826          * Old machines just have a list of interrupt numbers
827          * and no interrupt-controller nodes.
828          */
829         ints = (u32 *) get_property(device, "AAPL,interrupts", &intlen);
830         if (ints == NULL)
831                 return -EINVAL;
832         intlen /= sizeof(u32);
833
834         if (index >= intlen)
835                 return -EINVAL;
836
837         out_irq->controller = NULL;
838         out_irq->specifier[0] = ints[index];
839         out_irq->size = 1;
840
841         return 0;
842 }
843 #else /* defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32) */
844 static int of_irq_map_oldworld(struct device_node *device, int index,
845                                struct of_irq *out_irq)
846 {
847         return -EINVAL;
848 }
849 #endif /* !(defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32)) */
850
851 int of_irq_map_one(struct device_node *device, int index, struct of_irq *out_irq)
852 {
853         struct device_node *p;
854         u32 *intspec, *tmp, intsize, intlen, *addr;
855         int res;
856
857         DBG("of_irq_map_one: dev=%s, index=%d\n", device->full_name, index);
858
859         /* OldWorld mac stuff is "special", handle out of line */
860         if (of_irq_workarounds & OF_IMAP_OLDWORLD_MAC)
861                 return of_irq_map_oldworld(device, index, out_irq);
862
863         /* Get the interrupts property */
864         intspec = (u32 *)get_property(device, "interrupts", &intlen);
865         if (intspec == NULL)
866                 return -EINVAL;
867         intlen /= sizeof(u32);
868
869         /* Get the reg property (if any) */
870         addr = (u32 *)get_property(device, "reg", NULL);
871
872         /* Look for the interrupt parent. */
873         p = of_irq_find_parent(device);
874         if (p == NULL)
875                 return -EINVAL;
876
877         /* Get size of interrupt specifier */
878         tmp = (u32 *)get_property(p, "#interrupt-cells", NULL);
879         if (tmp == NULL) {
880                 of_node_put(p);
881                 return -EINVAL;
882         }
883         intsize = *tmp;
884
885         /* Check index */
886         if (index * intsize >= intlen)
887                 return -EINVAL;
888
889         /* Get new specifier and map it */
890         res = of_irq_map_raw(p, intspec + index * intsize, addr, out_irq);
891         of_node_put(p);
892         return res;
893 }
894 EXPORT_SYMBOL_GPL(of_irq_map_one);
895
896 int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq)
897 {
898         struct device_node *dn, *ppnode;
899         struct pci_dev *ppdev;
900         u32 lspec;
901         u32 laddr[3];
902         u8 pin;
903         int rc;
904
905         /* Check if we have a device node, if yes, fallback to standard OF
906          * parsing
907          */
908         dn = pci_device_to_OF_node(pdev);
909         if (dn)
910                 return of_irq_map_one(dn, 0, out_irq);
911
912         /* Ok, we don't, time to have fun. Let's start by building up an
913          * interrupt spec.  we assume #interrupt-cells is 1, which is standard
914          * for PCI. If you do different, then don't use that routine.
915          */
916         rc = pci_read_config_byte(pdev, PCI_INTERRUPT_PIN, &pin);
917         if (rc != 0)
918                 return rc;
919         /* No pin, exit */
920         if (pin == 0)
921                 return -ENODEV;
922
923         /* Now we walk up the PCI tree */
924         lspec = pin;
925         for (;;) {
926                 /* Get the pci_dev of our parent */
927                 ppdev = pdev->bus->self;
928
929                 /* Ouch, it's a host bridge... */
930                 if (ppdev == NULL) {
931 #ifdef CONFIG_PPC64
932                         ppnode = pci_bus_to_OF_node(pdev->bus);
933 #else
934                         struct pci_controller *host;
935                         host = pci_bus_to_host(pdev->bus);
936                         ppnode = host ? host->arch_data : NULL;
937 #endif
938                         /* No node for host bridge ? give up */
939                         if (ppnode == NULL)
940                                 return -EINVAL;
941                 } else
942                         /* We found a P2P bridge, check if it has a node */
943                         ppnode = pci_device_to_OF_node(ppdev);
944
945                 /* Ok, we have found a parent with a device-node, hand over to
946                  * the OF parsing code.
947                  * We build a unit address from the linux device to be used for
948                  * resolution. Note that we use the linux bus number which may
949                  * not match your firmware bus numbering.
950                  * Fortunately, in most cases, interrupt-map-mask doesn't include
951                  * the bus number as part of the matching.
952                  * You should still be careful about that though if you intend
953                  * to rely on this function (you ship  a firmware that doesn't
954                  * create device nodes for all PCI devices).
955                  */
956                 if (ppnode)
957                         break;
958
959                 /* We can only get here if we hit a P2P bridge with no node,
960                  * let's do standard swizzling and try again
961                  */
962                 lspec = of_irq_pci_swizzle(PCI_SLOT(pdev->devfn), lspec);
963                 pdev = ppdev;
964         }
965
966         laddr[0] = (pdev->bus->number << 16)
967                 | (pdev->devfn << 8);
968         laddr[1]  = laddr[2] = 0;
969         return of_irq_map_raw(ppnode, &lspec, laddr, out_irq);
970 }
971 EXPORT_SYMBOL_GPL(of_irq_map_pci);
972