2 * Procedures for creating, accessing and interpreting the device tree.
4 * Paul Mackerras August 1996.
5 * Copyright (C) 1996-2005 Paul Mackerras.
7 * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
8 * {engebret|bergner}@us.ibm.com
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
19 #include <linux/config.h>
20 #include <linux/kernel.h>
21 #include <linux/string.h>
22 #include <linux/init.h>
23 #include <linux/threads.h>
24 #include <linux/spinlock.h>
25 #include <linux/types.h>
26 #include <linux/pci.h>
27 #include <linux/stringify.h>
28 #include <linux/delay.h>
29 #include <linux/initrd.h>
30 #include <linux/bitops.h>
31 #include <linux/module.h>
37 #include <asm/processor.h>
41 #include <asm/system.h>
43 #include <asm/pgtable.h>
45 #include <asm/iommu.h>
46 #include <asm/btext.h>
47 #include <asm/sections.h>
48 #include <asm/machdep.h>
49 #include <asm/pSeries_reconfig.h>
50 #include <asm/pci-bridge.h>
52 #include <asm/systemcfg.h>
56 #define DBG(fmt...) printk(KERN_ERR fmt)
61 struct pci_reg_property {
62 struct pci_address addr;
67 struct isa_reg_property {
74 typedef int interpret_func(struct device_node *, unsigned long *,
77 extern struct rtas_t rtas;
78 extern struct lmb lmb;
79 extern unsigned long klimit;
81 static unsigned long memory_limit;
83 static int __initdata dt_root_addr_cells;
84 static int __initdata dt_root_size_cells;
87 static int __initdata iommu_is_off;
88 int __initdata iommu_force_on;
89 extern unsigned long tce_alloc_start, tce_alloc_end;
95 static struct boot_param_header *initial_boot_params __initdata;
97 struct boot_param_header *initial_boot_params;
100 static struct device_node *allnodes = NULL;
102 /* use when traversing tree through the allnext, child, sibling,
103 * or parent members of struct device_node.
105 static DEFINE_RWLOCK(devtree_lock);
107 /* export that to outside world */
108 struct device_node *of_chosen;
110 struct device_node *dflt_interrupt_controller;
111 int num_interrupt_controllers;
117 * Wrapper for allocating memory for various data that needs to be
118 * attached to device nodes as they are processed at boot or when
119 * added to the device tree later (e.g. DLPAR). At boot there is
120 * already a region reserved so we just increment *mem_start by size;
121 * otherwise we call kmalloc.
123 static void * prom_alloc(unsigned long size, unsigned long *mem_start)
128 return kmalloc(size, GFP_KERNEL);
136 * Find the device_node with a given phandle.
138 static struct device_node * find_phandle(phandle ph)
140 struct device_node *np;
142 for (np = allnodes; np != 0; np = np->allnext)
143 if (np->linux_phandle == ph)
149 * Find the interrupt parent of a node.
151 static struct device_node * __devinit intr_parent(struct device_node *p)
155 parp = (phandle *) get_property(p, "interrupt-parent", NULL);
158 p = find_phandle(*parp);
162 * On a powermac booted with BootX, we don't get to know the
163 * phandles for any nodes, so find_phandle will return NULL.
164 * Fortunately these machines only have one interrupt controller
165 * so there isn't in fact any ambiguity. -- paulus
167 if (num_interrupt_controllers == 1)
168 p = dflt_interrupt_controller;
173 * Find out the size of each entry of the interrupts property
176 int __devinit prom_n_intr_cells(struct device_node *np)
178 struct device_node *p;
181 for (p = np; (p = intr_parent(p)) != NULL; ) {
182 icp = (unsigned int *)
183 get_property(p, "#interrupt-cells", NULL);
186 if (get_property(p, "interrupt-controller", NULL) != NULL
187 || get_property(p, "interrupt-map", NULL) != NULL) {
188 printk("oops, node %s doesn't have #interrupt-cells\n",
194 printk("prom_n_intr_cells failed for %s\n", np->full_name);
200 * Map an interrupt from a device up to the platform interrupt
203 static int __devinit map_interrupt(unsigned int **irq, struct device_node **ictrler,
204 struct device_node *np, unsigned int *ints,
207 struct device_node *p, *ipar;
208 unsigned int *imap, *imask, *ip;
209 int i, imaplen, match;
210 int newintrc = 0, newaddrc = 0;
214 reg = (unsigned int *) get_property(np, "reg", NULL);
215 naddrc = prom_n_addr_cells(np);
218 if (get_property(p, "interrupt-controller", NULL) != NULL)
219 /* this node is an interrupt controller, stop here */
221 imap = (unsigned int *)
222 get_property(p, "interrupt-map", &imaplen);
227 imask = (unsigned int *)
228 get_property(p, "interrupt-map-mask", NULL);
230 printk("oops, %s has interrupt-map but no mask\n",
234 imaplen /= sizeof(unsigned int);
237 while (imaplen > 0 && !match) {
238 /* check the child-interrupt field */
240 for (i = 0; i < naddrc && match; ++i)
241 match = ((reg[i] ^ imap[i]) & imask[i]) == 0;
242 for (; i < naddrc + nintrc && match; ++i)
243 match = ((ints[i-naddrc] ^ imap[i]) & imask[i]) == 0;
244 imap += naddrc + nintrc;
245 imaplen -= naddrc + nintrc;
246 /* grab the interrupt parent */
247 ipar = find_phandle((phandle) *imap++);
249 if (ipar == NULL && num_interrupt_controllers == 1)
250 /* cope with BootX not giving us phandles */
251 ipar = dflt_interrupt_controller;
253 printk("oops, no int parent %x in map of %s\n",
254 imap[-1], p->full_name);
257 /* find the parent's # addr and intr cells */
258 ip = (unsigned int *)
259 get_property(ipar, "#interrupt-cells", NULL);
261 printk("oops, no #interrupt-cells on %s\n",
266 ip = (unsigned int *)
267 get_property(ipar, "#address-cells", NULL);
268 newaddrc = (ip == NULL)? 0: *ip;
269 imap += newaddrc + newintrc;
270 imaplen -= newaddrc + newintrc;
273 printk("oops, error decoding int-map on %s, len=%d\n",
274 p->full_name, imaplen);
279 printk("oops, no match in %s int-map for %s\n",
280 p->full_name, np->full_name);
287 ints = imap - nintrc;
292 printk("hmmm, int tree for %s doesn't have ctrler\n",
302 static int __devinit finish_node_interrupts(struct device_node *np,
303 unsigned long *mem_start,
307 int intlen, intrcells, intrcount;
309 unsigned int *irq, virq;
310 struct device_node *ic;
312 ints = (unsigned int *) get_property(np, "interrupts", &intlen);
315 intrcells = prom_n_intr_cells(np);
316 intlen /= intrcells * sizeof(unsigned int);
318 np->intrs = prom_alloc(intlen * sizeof(*(np->intrs)), mem_start);
326 for (i = 0; i < intlen; ++i, ints += intrcells) {
327 n = map_interrupt(&irq, &ic, np, ints, intrcells);
331 /* don't map IRQ numbers under a cascaded 8259 controller */
332 if (ic && device_is_compatible(ic, "chrp,iic")) {
333 np->intrs[intrcount].line = irq[0];
336 virq = virt_irq_create_mapping(irq[0]);
337 if (virq == NO_IRQ) {
338 printk(KERN_CRIT "Could not allocate interrupt"
339 " number for %s\n", np->full_name);
342 virq = irq_offset_up(virq);
346 np->intrs[intrcount].line = virq;
350 /* We offset irq numbers for the u3 MPIC by 128 in PowerMac */
351 if (systemcfg->platform == PLATFORM_POWERMAC && ic && ic->parent) {
352 char *name = get_property(ic->parent, "name", NULL);
353 if (name && !strcmp(name, "u3"))
354 np->intrs[intrcount].line += 128;
355 else if (!(name && !strcmp(name, "mac-io")))
356 /* ignore other cascaded controllers, such as
361 np->intrs[intrcount].sense = 1;
363 np->intrs[intrcount].sense = irq[1];
365 printk("hmmm, got %d intr cells for %s:", n,
367 for (j = 0; j < n; ++j)
368 printk(" %d", irq[j]);
373 np->n_intrs = intrcount;
378 static int __devinit interpret_pci_props(struct device_node *np,
379 unsigned long *mem_start,
380 int naddrc, int nsizec,
383 struct address_range *adr;
384 struct pci_reg_property *pci_addrs;
387 pci_addrs = (struct pci_reg_property *)
388 get_property(np, "assigned-addresses", &l);
392 n_addrs = l / sizeof(*pci_addrs);
394 adr = prom_alloc(n_addrs * sizeof(*adr), mem_start);
402 np->n_addrs = n_addrs;
404 for (i = 0; i < n_addrs; i++) {
405 adr[i].space = pci_addrs[i].addr.a_hi;
406 adr[i].address = pci_addrs[i].addr.a_lo |
407 ((u64)pci_addrs[i].addr.a_mid << 32);
408 adr[i].size = pci_addrs[i].size_lo;
414 static int __init interpret_dbdma_props(struct device_node *np,
415 unsigned long *mem_start,
416 int naddrc, int nsizec,
419 struct reg_property32 *rp;
420 struct address_range *adr;
421 unsigned long base_address;
423 struct device_node *db;
427 for (db = np->parent; db != NULL; db = db->parent) {
428 if (!strcmp(db->type, "dbdma") && db->n_addrs != 0) {
429 base_address = db->addrs[0].address;
435 rp = (struct reg_property32 *) get_property(np, "reg", &l);
436 if (rp != 0 && l >= sizeof(struct reg_property32)) {
438 adr = (struct address_range *) (*mem_start);
439 while ((l -= sizeof(struct reg_property32)) >= 0) {
442 adr[i].address = rp[i].address + base_address;
443 adr[i].size = rp[i].size;
449 (*mem_start) += i * sizeof(struct address_range);
455 static int __init interpret_macio_props(struct device_node *np,
456 unsigned long *mem_start,
457 int naddrc, int nsizec,
460 struct reg_property32 *rp;
461 struct address_range *adr;
462 unsigned long base_address;
464 struct device_node *db;
468 for (db = np->parent; db != NULL; db = db->parent) {
469 if (!strcmp(db->type, "mac-io") && db->n_addrs != 0) {
470 base_address = db->addrs[0].address;
476 rp = (struct reg_property32 *) get_property(np, "reg", &l);
477 if (rp != 0 && l >= sizeof(struct reg_property32)) {
479 adr = (struct address_range *) (*mem_start);
480 while ((l -= sizeof(struct reg_property32)) >= 0) {
483 adr[i].address = rp[i].address + base_address;
484 adr[i].size = rp[i].size;
490 (*mem_start) += i * sizeof(struct address_range);
496 static int __init interpret_isa_props(struct device_node *np,
497 unsigned long *mem_start,
498 int naddrc, int nsizec,
501 struct isa_reg_property *rp;
502 struct address_range *adr;
505 rp = (struct isa_reg_property *) get_property(np, "reg", &l);
506 if (rp != 0 && l >= sizeof(struct isa_reg_property)) {
508 adr = (struct address_range *) (*mem_start);
509 while ((l -= sizeof(struct isa_reg_property)) >= 0) {
511 adr[i].space = rp[i].space;
512 adr[i].address = rp[i].address;
513 adr[i].size = rp[i].size;
519 (*mem_start) += i * sizeof(struct address_range);
525 static int __init interpret_root_props(struct device_node *np,
526 unsigned long *mem_start,
527 int naddrc, int nsizec,
530 struct address_range *adr;
533 int rpsize = (naddrc + nsizec) * sizeof(unsigned int);
535 rp = (unsigned int *) get_property(np, "reg", &l);
536 if (rp != 0 && l >= rpsize) {
538 adr = (struct address_range *) (*mem_start);
539 while ((l -= rpsize) >= 0) {
542 adr[i].address = rp[naddrc - 1];
543 adr[i].size = rp[naddrc + nsizec - 1];
546 rp += naddrc + nsizec;
550 (*mem_start) += i * sizeof(struct address_range);
556 static int __devinit finish_node(struct device_node *np,
557 unsigned long *mem_start,
558 interpret_func *ifunc,
559 int naddrc, int nsizec,
562 struct device_node *child;
565 /* get the device addresses and interrupts */
567 rc = ifunc(np, mem_start, naddrc, nsizec, measure_only);
571 rc = finish_node_interrupts(np, mem_start, measure_only);
575 /* Look for #address-cells and #size-cells properties. */
576 ip = (int *) get_property(np, "#address-cells", NULL);
579 ip = (int *) get_property(np, "#size-cells", NULL);
583 if (!strcmp(np->name, "device-tree") || np->parent == NULL)
584 ifunc = interpret_root_props;
585 else if (np->type == 0)
587 else if (!strcmp(np->type, "pci") || !strcmp(np->type, "vci"))
588 ifunc = interpret_pci_props;
589 else if (!strcmp(np->type, "dbdma"))
590 ifunc = interpret_dbdma_props;
591 else if (!strcmp(np->type, "mac-io") || ifunc == interpret_macio_props)
592 ifunc = interpret_macio_props;
593 else if (!strcmp(np->type, "isa"))
594 ifunc = interpret_isa_props;
595 else if (!strcmp(np->name, "uni-n") || !strcmp(np->name, "u3"))
596 ifunc = interpret_root_props;
597 else if (!((ifunc == interpret_dbdma_props
598 || ifunc == interpret_macio_props)
599 && (!strcmp(np->type, "escc")
600 || !strcmp(np->type, "media-bay"))))
603 for (child = np->child; child != NULL; child = child->sibling) {
604 rc = finish_node(child, mem_start, ifunc,
605 naddrc, nsizec, measure_only);
613 static void __init scan_interrupt_controllers(void)
615 struct device_node *np;
620 for (np = allnodes; np != NULL; np = np->allnext) {
621 ic = get_property(np, "interrupt-controller", &iclen);
622 name = get_property(np, "name", NULL);
623 /* checking iclen makes sure we don't get a false
624 match on /chosen.interrupt_controller */
626 && strcmp(name, "interrupt-controller") == 0)
627 || (ic != NULL && iclen == 0
628 && strcmp(name, "AppleKiwi"))) {
630 dflt_interrupt_controller = np;
634 num_interrupt_controllers = n;
638 * finish_device_tree is called once things are running normally
639 * (i.e. with text and data mapped to the address they were linked at).
640 * It traverses the device tree and fills in some of the additional,
641 * fields in each node like {n_}addrs and {n_}intrs, the virt interrupt
642 * mapping is also initialized at this point.
644 void __init finish_device_tree(void)
646 unsigned long start, end, size = 0;
648 DBG(" -> finish_device_tree\n");
651 /* Initialize virtual IRQ map */
654 scan_interrupt_controllers();
657 * Finish device-tree (pre-parsing some properties etc...)
658 * We do this in 2 passes. One with "measure_only" set, which
659 * will only measure the amount of memory needed, then we can
660 * allocate that memory, and call finish_node again. However,
661 * we must be careful as most routines will fail nowadays when
662 * prom_alloc() returns 0, so we must make sure our first pass
663 * doesn't start at 0. We pre-initialize size to 16 for that
664 * reason and then remove those additional 16 bytes
667 finish_node(allnodes, &size, NULL, 0, 0, 1);
669 end = start = (unsigned long) __va(lmb_alloc(size, 128));
670 finish_node(allnodes, &end, NULL, 0, 0, 0);
671 BUG_ON(end != start + size);
673 DBG(" <- finish_device_tree\n");
676 static inline char *find_flat_dt_string(u32 offset)
678 return ((char *)initial_boot_params) +
679 initial_boot_params->off_dt_strings + offset;
683 * This function is used to scan the flattened device-tree, it is
684 * used to extract the memory informations at boot before we can
687 static int __init scan_flat_dt(int (*it)(unsigned long node,
688 const char *uname, int depth,
692 unsigned long p = ((unsigned long)initial_boot_params) +
693 initial_boot_params->off_dt_struct;
698 u32 tag = *((u32 *)p);
702 if (tag == OF_DT_END_NODE) {
706 if (tag == OF_DT_NOP)
708 if (tag == OF_DT_END)
710 if (tag == OF_DT_PROP) {
711 u32 sz = *((u32 *)p);
713 if (initial_boot_params->version < 0x10)
714 p = _ALIGN(p, sz >= 8 ? 8 : 4);
719 if (tag != OF_DT_BEGIN_NODE) {
720 printk(KERN_WARNING "Invalid tag %x scanning flattened"
721 " device tree !\n", tag);
726 p = _ALIGN(p + strlen(pathp) + 1, 4);
727 if ((*pathp) == '/') {
729 for (lp = NULL, np = pathp; *np; np++)
735 rc = it(p, pathp, depth, data);
744 * This function can be used within scan_flattened_dt callback to get
745 * access to properties
747 static void* __init get_flat_dt_prop(unsigned long node, const char *name,
750 unsigned long p = node;
753 u32 tag = *((u32 *)p);
758 if (tag == OF_DT_NOP)
760 if (tag != OF_DT_PROP)
764 noff = *((u32 *)(p + 4));
766 if (initial_boot_params->version < 0x10)
767 p = _ALIGN(p, sz >= 8 ? 8 : 4);
769 nstr = find_flat_dt_string(noff);
771 printk(KERN_WARNING "Can't find property index"
775 if (strcmp(name, nstr) == 0) {
785 static void *__init unflatten_dt_alloc(unsigned long *mem, unsigned long size,
790 *mem = _ALIGN(*mem, align);
797 static unsigned long __init unflatten_dt_node(unsigned long mem,
799 struct device_node *dad,
800 struct device_node ***allnextpp,
801 unsigned long fpsize)
803 struct device_node *np;
804 struct property *pp, **prev_pp = NULL;
807 unsigned int l, allocl;
811 tag = *((u32 *)(*p));
812 if (tag != OF_DT_BEGIN_NODE) {
813 printk("Weird tag at start of node: %x\n", tag);
818 l = allocl = strlen(pathp) + 1;
819 *p = _ALIGN(*p + l, 4);
821 /* version 0x10 has a more compact unit name here instead of the full
822 * path. we accumulate the full path size using "fpsize", we'll rebuild
823 * it later. We detect this because the first character of the name is
826 if ((*pathp) != '/') {
829 /* root node: special case. fpsize accounts for path
830 * plus terminating zero. root node only has '/', so
831 * fpsize should be 2, but we want to avoid the first
832 * level nodes to have two '/' so we use fpsize 1 here
837 /* account for '/' and path size minus terminal 0
846 np = unflatten_dt_alloc(&mem, sizeof(struct device_node) + allocl,
847 __alignof__(struct device_node));
849 memset(np, 0, sizeof(*np));
850 np->full_name = ((char*)np) + sizeof(struct device_node);
852 char *p = np->full_name;
853 /* rebuild full path for new format */
854 if (dad && dad->parent) {
855 strcpy(p, dad->full_name);
857 if ((strlen(p) + l + 1) != allocl) {
858 DBG("%s: p: %d, l: %d, a: %d\n",
859 pathp, strlen(p), l, allocl);
867 memcpy(np->full_name, pathp, l);
868 prev_pp = &np->properties;
870 *allnextpp = &np->allnext;
873 /* we temporarily use the next field as `last_child'*/
877 dad->next->sibling = np;
880 kref_init(&np->kref);
886 tag = *((u32 *)(*p));
887 if (tag == OF_DT_NOP) {
891 if (tag != OF_DT_PROP)
895 noff = *((u32 *)((*p) + 4));
897 if (initial_boot_params->version < 0x10)
898 *p = _ALIGN(*p, sz >= 8 ? 8 : 4);
900 pname = find_flat_dt_string(noff);
902 printk("Can't find property name in list !\n");
905 if (strcmp(pname, "name") == 0)
907 l = strlen(pname) + 1;
908 pp = unflatten_dt_alloc(&mem, sizeof(struct property),
909 __alignof__(struct property));
911 if (strcmp(pname, "linux,phandle") == 0) {
912 np->node = *((u32 *)*p);
913 if (np->linux_phandle == 0)
914 np->linux_phandle = np->node;
916 if (strcmp(pname, "ibm,phandle") == 0)
917 np->linux_phandle = *((u32 *)*p);
920 pp->value = (void *)*p;
924 *p = _ALIGN((*p) + sz, 4);
926 /* with version 0x10 we may not have the name property, recreate
927 * it here from the unit name if absent
930 char *p = pathp, *ps = pathp, *pa = NULL;
943 pp = unflatten_dt_alloc(&mem, sizeof(struct property) + sz,
944 __alignof__(struct property));
948 pp->value = (unsigned char *)(pp + 1);
951 memcpy(pp->value, ps, sz - 1);
952 ((char *)pp->value)[sz - 1] = 0;
953 DBG("fixed up name for %s -> %s\n", pathp, pp->value);
958 np->name = get_property(np, "name", NULL);
959 np->type = get_property(np, "device_type", NULL);
966 while (tag == OF_DT_BEGIN_NODE) {
967 mem = unflatten_dt_node(mem, p, np, allnextpp, fpsize);
968 tag = *((u32 *)(*p));
970 if (tag != OF_DT_END_NODE) {
971 printk("Weird tag at end of node: %x\n", tag);
980 * unflattens the device-tree passed by the firmware, creating the
981 * tree of struct device_node. It also fills the "name" and "type"
982 * pointers of the nodes so the normal device-tree walking functions
983 * can be used (this used to be done by finish_device_tree)
985 void __init unflatten_device_tree(void)
987 unsigned long start, mem, size;
988 struct device_node **allnextp = &allnodes;
992 DBG(" -> unflatten_device_tree()\n");
994 /* First pass, scan for size */
995 start = ((unsigned long)initial_boot_params) +
996 initial_boot_params->off_dt_struct;
997 size = unflatten_dt_node(0, &start, NULL, NULL, 0);
998 size = (size | 3) + 1;
1000 DBG(" size is %lx, allocating...\n", size);
1002 /* Allocate memory for the expanded device tree */
1003 mem = lmb_alloc(size + 4, __alignof__(struct device_node));
1005 DBG("Couldn't allocate memory with lmb_alloc()!\n");
1006 panic("Couldn't allocate memory with lmb_alloc()!\n");
1008 mem = (unsigned long) __va(mem);
1010 ((u32 *)mem)[size / 4] = 0xdeadbeef;
1012 DBG(" unflattening %lx...\n", mem);
1014 /* Second pass, do actual unflattening */
1015 start = ((unsigned long)initial_boot_params) +
1016 initial_boot_params->off_dt_struct;
1017 unflatten_dt_node(mem, &start, NULL, &allnextp, 0);
1018 if (*((u32 *)start) != OF_DT_END)
1019 printk(KERN_WARNING "Weird tag at end of tree: %08x\n", *((u32 *)start));
1020 if (((u32 *)mem)[size / 4] != 0xdeadbeef)
1021 printk(KERN_WARNING "End of tree marker overwritten: %08x\n",
1022 ((u32 *)mem)[size / 4] );
1025 /* Get pointer to OF "/chosen" node for use everywhere */
1026 of_chosen = of_find_node_by_path("/chosen");
1028 /* Retreive command line */
1029 if (of_chosen != NULL) {
1030 p = (char *)get_property(of_chosen, "bootargs", &l);
1031 if (p != NULL && l > 0)
1032 strlcpy(cmd_line, p, min(l, COMMAND_LINE_SIZE));
1034 #ifdef CONFIG_CMDLINE
1035 if (l == 0 || (l == 1 && (*p) == 0))
1036 strlcpy(cmd_line, CONFIG_CMDLINE, COMMAND_LINE_SIZE);
1037 #endif /* CONFIG_CMDLINE */
1039 DBG("Command line is: %s\n", cmd_line);
1041 DBG(" <- unflatten_device_tree()\n");
1045 static int __init early_init_dt_scan_cpus(unsigned long node,
1046 const char *uname, int depth, void *data)
1048 char *type = get_flat_dt_prop(node, "device_type", NULL);
1050 unsigned long size = 0;
1052 /* We are scanning "cpu" nodes only */
1053 if (type == NULL || strcmp(type, "cpu") != 0)
1056 #ifdef CONFIG_PPC_PSERIES
1057 /* On LPAR, look for the first ibm,pft-size property for the hash table size
1059 if (systemcfg->platform == PLATFORM_PSERIES_LPAR && ppc64_pft_size == 0) {
1061 pft_size = get_flat_dt_prop(node, "ibm,pft-size", NULL);
1062 if (pft_size != NULL) {
1063 /* pft_size[0] is the NUMA CEC cookie */
1064 ppc64_pft_size = pft_size[1];
1070 if (initial_boot_params && initial_boot_params->version >= 2) {
1071 /* version 2 of the kexec param format adds the phys cpuid
1074 boot_cpuid_phys = initial_boot_params->boot_cpuid_phys;
1077 /* Check if it's the boot-cpu, set it's hw index in paca now */
1078 if (get_flat_dt_prop(node, "linux,boot-cpu", NULL) != NULL) {
1079 prop = get_flat_dt_prop(node, "reg", NULL);
1080 set_hard_smp_processor_id(0, prop == NULL ? 0 : *prop);
1081 boot_cpuid_phys = get_hard_smp_processor_id(0);
1086 #ifdef CONFIG_ALTIVEC
1087 /* Check if we have a VMX and eventually update CPU features */
1088 prop = (u32 *)get_flat_dt_prop(node, "ibm,vmx", &size);
1089 if (prop && (*prop) > 0) {
1090 cur_cpu_spec->cpu_features |= CPU_FTR_ALTIVEC;
1091 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_ALTIVEC;
1094 /* Same goes for Apple's "altivec" property */
1095 prop = (u32 *)get_flat_dt_prop(node, "altivec", NULL);
1097 cur_cpu_spec->cpu_features |= CPU_FTR_ALTIVEC;
1098 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_ALTIVEC;
1100 #endif /* CONFIG_ALTIVEC */
1102 #ifdef CONFIG_PPC_PSERIES
1104 * Check for an SMT capable CPU and set the CPU feature. We do
1105 * this by looking at the size of the ibm,ppc-interrupt-server#s
1108 prop = (u32 *)get_flat_dt_prop(node, "ibm,ppc-interrupt-server#s",
1110 cur_cpu_spec->cpu_features &= ~CPU_FTR_SMT;
1111 if (prop && ((size / sizeof(u32)) > 1))
1112 cur_cpu_spec->cpu_features |= CPU_FTR_SMT;
1118 static int __init early_init_dt_scan_chosen(unsigned long node,
1119 const char *uname, int depth, void *data)
1122 unsigned long *lprop;
1124 DBG("search \"chosen\", depth: %d, uname: %s\n", depth, uname);
1126 if (depth != 1 || strcmp(uname, "chosen") != 0)
1129 /* get platform type */
1130 prop = (u32 *)get_flat_dt_prop(node, "linux,platform", NULL);
1134 systemcfg->platform = *prop;
1140 /* check if iommu is forced on or off */
1141 if (get_flat_dt_prop(node, "linux,iommu-off", NULL) != NULL)
1143 if (get_flat_dt_prop(node, "linux,iommu-force-on", NULL) != NULL)
1147 lprop = get_flat_dt_prop(node, "linux,memory-limit", NULL);
1149 memory_limit = *lprop;
1152 lprop = get_flat_dt_prop(node, "linux,tce-alloc-start", NULL);
1154 tce_alloc_start = *lprop;
1155 lprop = get_flat_dt_prop(node, "linux,tce-alloc-end", NULL);
1157 tce_alloc_end = *lprop;
1160 #ifdef CONFIG_PPC_RTAS
1161 /* To help early debugging via the front panel, we retreive a minimal
1162 * set of RTAS infos now if available
1165 u64 *basep, *entryp;
1167 basep = get_flat_dt_prop(node, "linux,rtas-base", NULL);
1168 entryp = get_flat_dt_prop(node, "linux,rtas-entry", NULL);
1169 prop = get_flat_dt_prop(node, "linux,rtas-size", NULL);
1170 if (basep && entryp && prop) {
1172 rtas.entry = *entryp;
1176 #endif /* CONFIG_PPC_RTAS */
1182 static int __init early_init_dt_scan_root(unsigned long node,
1183 const char *uname, int depth, void *data)
1190 prop = get_flat_dt_prop(node, "#size-cells", NULL);
1191 dt_root_size_cells = (prop == NULL) ? 1 : *prop;
1192 DBG("dt_root_size_cells = %x\n", dt_root_size_cells);
1194 prop = get_flat_dt_prop(node, "#address-cells", NULL);
1195 dt_root_addr_cells = (prop == NULL) ? 2 : *prop;
1196 DBG("dt_root_addr_cells = %x\n", dt_root_addr_cells);
1202 static unsigned long __init dt_mem_next_cell(int s, cell_t **cellp)
1207 /* Ignore more than 2 cells */
1208 while (s > sizeof(unsigned long) / 4) {
1226 static int __init early_init_dt_scan_memory(unsigned long node,
1227 const char *uname, int depth, void *data)
1229 char *type = get_flat_dt_prop(node, "device_type", NULL);
1233 /* We are scanning "memory" nodes only */
1234 if (type == NULL || strcmp(type, "memory") != 0)
1237 reg = (cell_t *)get_flat_dt_prop(node, "reg", &l);
1241 endp = reg + (l / sizeof(cell_t));
1243 DBG("memory scan node %s ..., reg size %ld, data: %x %x %x %x, ...\n",
1244 uname, l, reg[0], reg[1], reg[2], reg[3]);
1246 while ((endp - reg) >= (dt_root_addr_cells + dt_root_size_cells)) {
1247 unsigned long base, size;
1249 base = dt_mem_next_cell(dt_root_addr_cells, ®);
1250 size = dt_mem_next_cell(dt_root_size_cells, ®);
1254 DBG(" - %lx , %lx\n", base, size);
1257 if (base >= 0x80000000ul)
1259 if ((base + size) > 0x80000000ul)
1260 size = 0x80000000ul - base;
1263 lmb_add(base, size);
1268 static void __init early_reserve_mem(void)
1270 unsigned long base, size;
1271 unsigned long *reserve_map;
1273 reserve_map = (unsigned long *)(((unsigned long)initial_boot_params) +
1274 initial_boot_params->off_mem_rsvmap);
1276 base = *(reserve_map++);
1277 size = *(reserve_map++);
1280 DBG("reserving: %lx -> %lx\n", base, size);
1281 lmb_reserve(base, size);
1285 DBG("memory reserved, lmbs :\n");
1290 void __init early_init_devtree(void *params)
1292 DBG(" -> early_init_devtree()\n");
1294 /* Setup flat device-tree pointer */
1295 initial_boot_params = params;
1297 /* Retrieve various informations from the /chosen node of the
1298 * device-tree, including the platform type, initrd location and
1299 * size, TCE reserve, and more ...
1301 scan_flat_dt(early_init_dt_scan_chosen, NULL);
1303 /* Scan memory nodes and rebuild LMBs */
1305 scan_flat_dt(early_init_dt_scan_root, NULL);
1306 scan_flat_dt(early_init_dt_scan_memory, NULL);
1307 lmb_enforce_memory_limit(memory_limit);
1310 systemcfg->physicalMemorySize = lmb_phys_mem_size();
1312 lmb_reserve(0, __pa(klimit));
1314 DBG("Phys. mem: %lx\n", lmb_phys_mem_size());
1316 /* Reserve LMB regions used by kernel, initrd, dt, etc... */
1317 early_reserve_mem();
1319 DBG("Scanning CPUs ...\n");
1321 /* Retreive hash table size from flattened tree plus other
1322 * CPU related informations (altivec support, boot CPU ID, ...)
1324 scan_flat_dt(early_init_dt_scan_cpus, NULL);
1326 DBG(" <- early_init_devtree()\n");
1332 prom_n_addr_cells(struct device_node* np)
1338 ip = (int *) get_property(np, "#address-cells", NULL);
1341 } while (np->parent);
1342 /* No #address-cells property for the root node, default to 1 */
1347 prom_n_size_cells(struct device_node* np)
1353 ip = (int *) get_property(np, "#size-cells", NULL);
1356 } while (np->parent);
1357 /* No #size-cells property for the root node, default to 1 */
1362 * Work out the sense (active-low level / active-high edge)
1363 * of each interrupt from the device tree.
1365 void __init prom_get_irq_senses(unsigned char *senses, int off, int max)
1367 struct device_node *np;
1370 /* default to level-triggered */
1371 memset(senses, 1, max - off);
1373 for (np = allnodes; np != 0; np = np->allnext) {
1374 for (j = 0; j < np->n_intrs; j++) {
1375 i = np->intrs[j].line;
1376 if (i >= off && i < max)
1377 senses[i-off] = np->intrs[j].sense ?
1378 IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE :
1379 IRQ_SENSE_EDGE | IRQ_POLARITY_POSITIVE;
1385 * Construct and return a list of the device_nodes with a given name.
1387 struct device_node *find_devices(const char *name)
1389 struct device_node *head, **prevp, *np;
1392 for (np = allnodes; np != 0; np = np->allnext) {
1393 if (np->name != 0 && strcasecmp(np->name, name) == 0) {
1401 EXPORT_SYMBOL(find_devices);
1404 * Construct and return a list of the device_nodes with a given type.
1406 struct device_node *find_type_devices(const char *type)
1408 struct device_node *head, **prevp, *np;
1411 for (np = allnodes; np != 0; np = np->allnext) {
1412 if (np->type != 0 && strcasecmp(np->type, type) == 0) {
1420 EXPORT_SYMBOL(find_type_devices);
1423 * Returns all nodes linked together
1425 struct device_node *find_all_nodes(void)
1427 struct device_node *head, **prevp, *np;
1430 for (np = allnodes; np != 0; np = np->allnext) {
1437 EXPORT_SYMBOL(find_all_nodes);
1439 /** Checks if the given "compat" string matches one of the strings in
1440 * the device's "compatible" property
1442 int device_is_compatible(struct device_node *device, const char *compat)
1447 cp = (char *) get_property(device, "compatible", &cplen);
1451 if (strncasecmp(cp, compat, strlen(compat)) == 0)
1460 EXPORT_SYMBOL(device_is_compatible);
1464 * Indicates whether the root node has a given value in its
1465 * compatible property.
1467 int machine_is_compatible(const char *compat)
1469 struct device_node *root;
1472 root = of_find_node_by_path("/");
1474 rc = device_is_compatible(root, compat);
1479 EXPORT_SYMBOL(machine_is_compatible);
1482 * Construct and return a list of the device_nodes with a given type
1483 * and compatible property.
1485 struct device_node *find_compatible_devices(const char *type,
1488 struct device_node *head, **prevp, *np;
1491 for (np = allnodes; np != 0; np = np->allnext) {
1493 && !(np->type != 0 && strcasecmp(np->type, type) == 0))
1495 if (device_is_compatible(np, compat)) {
1503 EXPORT_SYMBOL(find_compatible_devices);
1506 * Find the device_node with a given full_name.
1508 struct device_node *find_path_device(const char *path)
1510 struct device_node *np;
1512 for (np = allnodes; np != 0; np = np->allnext)
1513 if (np->full_name != 0 && strcasecmp(np->full_name, path) == 0)
1517 EXPORT_SYMBOL(find_path_device);
1521 * New implementation of the OF "find" APIs, return a refcounted
1522 * object, call of_node_put() when done. The device tree and list
1523 * are protected by a rw_lock.
1525 * Note that property management will need some locking as well,
1526 * this isn't dealt with yet.
1531 * of_find_node_by_name - Find a node by its "name" property
1532 * @from: The node to start searching from or NULL, the node
1533 * you pass will not be searched, only the next one
1534 * will; typically, you pass what the previous call
1535 * returned. of_node_put() will be called on it
1536 * @name: The name string to match against
1538 * Returns a node pointer with refcount incremented, use
1539 * of_node_put() on it when done.
1541 struct device_node *of_find_node_by_name(struct device_node *from,
1544 struct device_node *np;
1546 read_lock(&devtree_lock);
1547 np = from ? from->allnext : allnodes;
1548 for (; np != 0; np = np->allnext)
1549 if (np->name != 0 && strcasecmp(np->name, name) == 0
1554 read_unlock(&devtree_lock);
1557 EXPORT_SYMBOL(of_find_node_by_name);
1560 * of_find_node_by_type - Find a node by its "device_type" property
1561 * @from: The node to start searching from or NULL, the node
1562 * you pass will not be searched, only the next one
1563 * will; typically, you pass what the previous call
1564 * returned. of_node_put() will be called on it
1565 * @name: The type string to match against
1567 * Returns a node pointer with refcount incremented, use
1568 * of_node_put() on it when done.
1570 struct device_node *of_find_node_by_type(struct device_node *from,
1573 struct device_node *np;
1575 read_lock(&devtree_lock);
1576 np = from ? from->allnext : allnodes;
1577 for (; np != 0; np = np->allnext)
1578 if (np->type != 0 && strcasecmp(np->type, type) == 0
1583 read_unlock(&devtree_lock);
1586 EXPORT_SYMBOL(of_find_node_by_type);
1589 * of_find_compatible_node - Find a node based on type and one of the
1590 * tokens in its "compatible" property
1591 * @from: The node to start searching from or NULL, the node
1592 * you pass will not be searched, only the next one
1593 * will; typically, you pass what the previous call
1594 * returned. of_node_put() will be called on it
1595 * @type: The type string to match "device_type" or NULL to ignore
1596 * @compatible: The string to match to one of the tokens in the device
1597 * "compatible" list.
1599 * Returns a node pointer with refcount incremented, use
1600 * of_node_put() on it when done.
1602 struct device_node *of_find_compatible_node(struct device_node *from,
1603 const char *type, const char *compatible)
1605 struct device_node *np;
1607 read_lock(&devtree_lock);
1608 np = from ? from->allnext : allnodes;
1609 for (; np != 0; np = np->allnext) {
1611 && !(np->type != 0 && strcasecmp(np->type, type) == 0))
1613 if (device_is_compatible(np, compatible) && of_node_get(np))
1618 read_unlock(&devtree_lock);
1621 EXPORT_SYMBOL(of_find_compatible_node);
1624 * of_find_node_by_path - Find a node matching a full OF path
1625 * @path: The full path to match
1627 * Returns a node pointer with refcount incremented, use
1628 * of_node_put() on it when done.
1630 struct device_node *of_find_node_by_path(const char *path)
1632 struct device_node *np = allnodes;
1634 read_lock(&devtree_lock);
1635 for (; np != 0; np = np->allnext) {
1636 if (np->full_name != 0 && strcasecmp(np->full_name, path) == 0
1640 read_unlock(&devtree_lock);
1643 EXPORT_SYMBOL(of_find_node_by_path);
1646 * of_find_node_by_phandle - Find a node given a phandle
1647 * @handle: phandle of the node to find
1649 * Returns a node pointer with refcount incremented, use
1650 * of_node_put() on it when done.
1652 struct device_node *of_find_node_by_phandle(phandle handle)
1654 struct device_node *np;
1656 read_lock(&devtree_lock);
1657 for (np = allnodes; np != 0; np = np->allnext)
1658 if (np->linux_phandle == handle)
1662 read_unlock(&devtree_lock);
1665 EXPORT_SYMBOL(of_find_node_by_phandle);
1668 * of_find_all_nodes - Get next node in global list
1669 * @prev: Previous node or NULL to start iteration
1670 * of_node_put() will be called on it
1672 * Returns a node pointer with refcount incremented, use
1673 * of_node_put() on it when done.
1675 struct device_node *of_find_all_nodes(struct device_node *prev)
1677 struct device_node *np;
1679 read_lock(&devtree_lock);
1680 np = prev ? prev->allnext : allnodes;
1681 for (; np != 0; np = np->allnext)
1682 if (of_node_get(np))
1686 read_unlock(&devtree_lock);
1689 EXPORT_SYMBOL(of_find_all_nodes);
1692 * of_get_parent - Get a node's parent if any
1693 * @node: Node to get parent
1695 * Returns a node pointer with refcount incremented, use
1696 * of_node_put() on it when done.
1698 struct device_node *of_get_parent(const struct device_node *node)
1700 struct device_node *np;
1705 read_lock(&devtree_lock);
1706 np = of_node_get(node->parent);
1707 read_unlock(&devtree_lock);
1710 EXPORT_SYMBOL(of_get_parent);
1713 * of_get_next_child - Iterate a node childs
1714 * @node: parent node
1715 * @prev: previous child of the parent node, or NULL to get first
1717 * Returns a node pointer with refcount incremented, use
1718 * of_node_put() on it when done.
1720 struct device_node *of_get_next_child(const struct device_node *node,
1721 struct device_node *prev)
1723 struct device_node *next;
1725 read_lock(&devtree_lock);
1726 next = prev ? prev->sibling : node->child;
1727 for (; next != 0; next = next->sibling)
1728 if (of_node_get(next))
1732 read_unlock(&devtree_lock);
1735 EXPORT_SYMBOL(of_get_next_child);
1738 * of_node_get - Increment refcount of a node
1739 * @node: Node to inc refcount, NULL is supported to
1740 * simplify writing of callers
1744 struct device_node *of_node_get(struct device_node *node)
1747 kref_get(&node->kref);
1750 EXPORT_SYMBOL(of_node_get);
1752 static inline struct device_node * kref_to_device_node(struct kref *kref)
1754 return container_of(kref, struct device_node, kref);
1758 * of_node_release - release a dynamically allocated node
1759 * @kref: kref element of the node to be released
1761 * In of_node_put() this function is passed to kref_put()
1762 * as the destructor.
1764 static void of_node_release(struct kref *kref)
1766 struct device_node *node = kref_to_device_node(kref);
1767 struct property *prop = node->properties;
1769 if (!OF_IS_DYNAMIC(node))
1772 struct property *next = prop->next;
1780 kfree(node->full_name);
1786 * of_node_put - Decrement refcount of a node
1787 * @node: Node to dec refcount, NULL is supported to
1788 * simplify writing of callers
1791 void of_node_put(struct device_node *node)
1794 kref_put(&node->kref, of_node_release);
1796 EXPORT_SYMBOL(of_node_put);
1799 * Plug a device node into the tree and global list.
1801 void of_attach_node(struct device_node *np)
1803 write_lock(&devtree_lock);
1804 np->sibling = np->parent->child;
1805 np->allnext = allnodes;
1806 np->parent->child = np;
1808 write_unlock(&devtree_lock);
1812 * "Unplug" a node from the device tree. The caller must hold
1813 * a reference to the node. The memory associated with the node
1814 * is not freed until its refcount goes to zero.
1816 void of_detach_node(const struct device_node *np)
1818 struct device_node *parent;
1820 write_lock(&devtree_lock);
1822 parent = np->parent;
1825 allnodes = np->allnext;
1827 struct device_node *prev;
1828 for (prev = allnodes;
1829 prev->allnext != np;
1830 prev = prev->allnext)
1832 prev->allnext = np->allnext;
1835 if (parent->child == np)
1836 parent->child = np->sibling;
1838 struct device_node *prevsib;
1839 for (prevsib = np->parent->child;
1840 prevsib->sibling != np;
1841 prevsib = prevsib->sibling)
1843 prevsib->sibling = np->sibling;
1846 write_unlock(&devtree_lock);
1849 #ifdef CONFIG_PPC_PSERIES
1851 * Fix up the uninitialized fields in a new device node:
1852 * name, type, n_addrs, addrs, n_intrs, intrs, and pci-specific fields
1854 * A lot of boot-time code is duplicated here, because functions such
1855 * as finish_node_interrupts, interpret_pci_props, etc. cannot use the
1858 * This should probably be split up into smaller chunks.
1861 static int of_finish_dynamic_node(struct device_node *node,
1862 unsigned long *unused1, int unused2,
1863 int unused3, int unused4)
1865 struct device_node *parent = of_get_parent(node);
1867 phandle *ibm_phandle;
1869 node->name = get_property(node, "name", NULL);
1870 node->type = get_property(node, "device_type", NULL);
1877 /* We don't support that function on PowerMac, at least
1880 if (systemcfg->platform == PLATFORM_POWERMAC)
1883 /* fix up new node's linux_phandle field */
1884 if ((ibm_phandle = (unsigned int *)get_property(node, "ibm,phandle", NULL)))
1885 node->linux_phandle = *ibm_phandle;
1888 of_node_put(parent);
1892 static int prom_reconfig_notifier(struct notifier_block *nb,
1893 unsigned long action, void *node)
1898 case PSERIES_RECONFIG_ADD:
1899 err = finish_node(node, NULL, of_finish_dynamic_node, 0, 0, 0);
1901 printk(KERN_ERR "finish_node returned %d\n", err);
1912 static struct notifier_block prom_reconfig_nb = {
1913 .notifier_call = prom_reconfig_notifier,
1914 .priority = 10, /* This one needs to run first */
1917 static int __init prom_reconfig_setup(void)
1919 return pSeries_reconfig_notifier_register(&prom_reconfig_nb);
1921 __initcall(prom_reconfig_setup);
1925 * Find a property with a given name for a given node
1926 * and return the value.
1928 unsigned char *get_property(struct device_node *np, const char *name,
1931 struct property *pp;
1933 for (pp = np->properties; pp != 0; pp = pp->next)
1934 if (strcmp(pp->name, name) == 0) {
1941 EXPORT_SYMBOL(get_property);
1944 * Add a property to a node
1946 void prom_add_property(struct device_node* np, struct property* prop)
1948 struct property **next = &np->properties;
1952 next = &(*next)->next;
1956 /* I quickly hacked that one, check against spec ! */
1957 static inline unsigned long
1958 bus_space_to_resource_flags(unsigned int bus_space)
1960 u8 space = (bus_space >> 24) & 0xf;
1964 return IORESOURCE_MEM;
1965 else if (space == 0x01)
1966 return IORESOURCE_IO;
1968 printk(KERN_WARNING "prom.c: bus_space_to_resource_flags(), space: %x\n",
1974 static struct resource *find_parent_pci_resource(struct pci_dev* pdev,
1975 struct address_range *range)
1980 /* Check this one */
1981 mask = bus_space_to_resource_flags(range->space);
1982 for (i=0; i<DEVICE_COUNT_RESOURCE; i++) {
1983 if ((pdev->resource[i].flags & mask) == mask &&
1984 pdev->resource[i].start <= range->address &&
1985 pdev->resource[i].end > range->address) {
1986 if ((range->address + range->size - 1) > pdev->resource[i].end) {
1987 /* Add better message */
1988 printk(KERN_WARNING "PCI/OF resource overlap !\n");
1994 if (i == DEVICE_COUNT_RESOURCE)
1996 return &pdev->resource[i];
2000 * Request an OF device resource. Currently handles child of PCI devices,
2001 * or other nodes attached to the root node. Ultimately, put some
2002 * link to resources in the OF node.
2004 struct resource *request_OF_resource(struct device_node* node, int index,
2005 const char* name_postfix)
2007 struct pci_dev* pcidev;
2008 u8 pci_bus, pci_devfn;
2009 unsigned long iomask;
2010 struct device_node* nd;
2011 struct resource* parent;
2012 struct resource *res = NULL;
2015 if (index >= node->n_addrs)
2018 /* Sanity check on bus space */
2019 iomask = bus_space_to_resource_flags(node->addrs[index].space);
2020 if (iomask & IORESOURCE_MEM)
2021 parent = &iomem_resource;
2022 else if (iomask & IORESOURCE_IO)
2023 parent = &ioport_resource;
2027 /* Find a PCI parent if any */
2031 if (!pci_device_from_OF_node(nd, &pci_bus, &pci_devfn))
2032 pcidev = pci_find_slot(pci_bus, pci_devfn);
2037 parent = find_parent_pci_resource(pcidev, &node->addrs[index]);
2039 printk(KERN_WARNING "request_OF_resource(%s), parent not found\n",
2044 res = __request_region(parent, node->addrs[index].address,
2045 node->addrs[index].size, NULL);
2048 nlen = strlen(node->name);
2049 plen = name_postfix ? strlen(name_postfix) : 0;
2050 res->name = (const char *)kmalloc(nlen+plen+1, GFP_KERNEL);
2052 strcpy((char *)res->name, node->name);
2054 strcpy((char *)res->name+nlen, name_postfix);
2060 EXPORT_SYMBOL(request_OF_resource);
2062 int release_OF_resource(struct device_node *node, int index)
2064 struct pci_dev* pcidev;
2065 u8 pci_bus, pci_devfn;
2066 unsigned long iomask, start, end;
2067 struct device_node* nd;
2068 struct resource* parent;
2069 struct resource *res = NULL;
2071 if (index >= node->n_addrs)
2074 /* Sanity check on bus space */
2075 iomask = bus_space_to_resource_flags(node->addrs[index].space);
2076 if (iomask & IORESOURCE_MEM)
2077 parent = &iomem_resource;
2078 else if (iomask & IORESOURCE_IO)
2079 parent = &ioport_resource;
2083 /* Find a PCI parent if any */
2087 if (!pci_device_from_OF_node(nd, &pci_bus, &pci_devfn))
2088 pcidev = pci_find_slot(pci_bus, pci_devfn);
2093 parent = find_parent_pci_resource(pcidev, &node->addrs[index]);
2095 printk(KERN_WARNING "release_OF_resource(%s), parent not found\n",
2100 /* Find us in the parent and its childs */
2101 res = parent->child;
2102 start = node->addrs[index].address;
2103 end = start + node->addrs[index].size - 1;
2105 if (res->start == start && res->end == end &&
2106 (res->flags & IORESOURCE_BUSY))
2108 if (res->start <= start && res->end >= end)
2120 release_resource(res);
2125 EXPORT_SYMBOL(release_OF_resource);