Merge branch 'intx' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/misc-2.6
[pandora-kernel.git] / arch / powerpc / kernel / prom.c
1 /*
2  * Procedures for creating, accessing and interpreting the device tree.
3  *
4  * Paul Mackerras       August 1996.
5  * Copyright (C) 1996-2005 Paul Mackerras.
6  * 
7  *  Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
8  *    {engebret|bergner}@us.ibm.com 
9  *
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.
14  */
15
16 #undef DEBUG
17
18 #include <stdarg.h>
19 #include <linux/kernel.h>
20 #include <linux/string.h>
21 #include <linux/init.h>
22 #include <linux/threads.h>
23 #include <linux/spinlock.h>
24 #include <linux/types.h>
25 #include <linux/pci.h>
26 #include <linux/stringify.h>
27 #include <linux/delay.h>
28 #include <linux/initrd.h>
29 #include <linux/bitops.h>
30 #include <linux/module.h>
31 #include <linux/kexec.h>
32 #include <linux/debugfs.h>
33 #include <linux/irq.h>
34
35 #include <asm/prom.h>
36 #include <asm/rtas.h>
37 #include <asm/lmb.h>
38 #include <asm/page.h>
39 #include <asm/processor.h>
40 #include <asm/irq.h>
41 #include <asm/io.h>
42 #include <asm/kdump.h>
43 #include <asm/smp.h>
44 #include <asm/system.h>
45 #include <asm/mmu.h>
46 #include <asm/pgtable.h>
47 #include <asm/pci.h>
48 #include <asm/iommu.h>
49 #include <asm/btext.h>
50 #include <asm/sections.h>
51 #include <asm/machdep.h>
52 #include <asm/pSeries_reconfig.h>
53 #include <asm/pci-bridge.h>
54 #include <asm/kexec.h>
55
56 #ifdef DEBUG
57 #define DBG(fmt...) printk(KERN_ERR fmt)
58 #else
59 #define DBG(fmt...)
60 #endif
61
62
63 static int __initdata dt_root_addr_cells;
64 static int __initdata dt_root_size_cells;
65
66 #ifdef CONFIG_PPC64
67 int __initdata iommu_is_off;
68 int __initdata iommu_force_on;
69 unsigned long tce_alloc_start, tce_alloc_end;
70 #endif
71
72 typedef u32 cell_t;
73
74 #if 0
75 static struct boot_param_header *initial_boot_params __initdata;
76 #else
77 struct boot_param_header *initial_boot_params;
78 #endif
79
80 static struct device_node *allnodes = NULL;
81
82 /* use when traversing tree through the allnext, child, sibling,
83  * or parent members of struct device_node.
84  */
85 static DEFINE_RWLOCK(devtree_lock);
86
87 /* export that to outside world */
88 struct device_node *of_chosen;
89
90 static inline char *find_flat_dt_string(u32 offset)
91 {
92         return ((char *)initial_boot_params) +
93                 initial_boot_params->off_dt_strings + offset;
94 }
95
96 /**
97  * This function is used to scan the flattened device-tree, it is
98  * used to extract the memory informations at boot before we can
99  * unflatten the tree
100  */
101 int __init of_scan_flat_dt(int (*it)(unsigned long node,
102                                      const char *uname, int depth,
103                                      void *data),
104                            void *data)
105 {
106         unsigned long p = ((unsigned long)initial_boot_params) +
107                 initial_boot_params->off_dt_struct;
108         int rc = 0;
109         int depth = -1;
110
111         do {
112                 u32 tag = *((u32 *)p);
113                 char *pathp;
114                 
115                 p += 4;
116                 if (tag == OF_DT_END_NODE) {
117                         depth --;
118                         continue;
119                 }
120                 if (tag == OF_DT_NOP)
121                         continue;
122                 if (tag == OF_DT_END)
123                         break;
124                 if (tag == OF_DT_PROP) {
125                         u32 sz = *((u32 *)p);
126                         p += 8;
127                         if (initial_boot_params->version < 0x10)
128                                 p = _ALIGN(p, sz >= 8 ? 8 : 4);
129                         p += sz;
130                         p = _ALIGN(p, 4);
131                         continue;
132                 }
133                 if (tag != OF_DT_BEGIN_NODE) {
134                         printk(KERN_WARNING "Invalid tag %x scanning flattened"
135                                " device tree !\n", tag);
136                         return -EINVAL;
137                 }
138                 depth++;
139                 pathp = (char *)p;
140                 p = _ALIGN(p + strlen(pathp) + 1, 4);
141                 if ((*pathp) == '/') {
142                         char *lp, *np;
143                         for (lp = NULL, np = pathp; *np; np++)
144                                 if ((*np) == '/')
145                                         lp = np+1;
146                         if (lp != NULL)
147                                 pathp = lp;
148                 }
149                 rc = it(p, pathp, depth, data);
150                 if (rc != 0)
151                         break;          
152         } while(1);
153
154         return rc;
155 }
156
157 unsigned long __init of_get_flat_dt_root(void)
158 {
159         unsigned long p = ((unsigned long)initial_boot_params) +
160                 initial_boot_params->off_dt_struct;
161
162         while(*((u32 *)p) == OF_DT_NOP)
163                 p += 4;
164         BUG_ON (*((u32 *)p) != OF_DT_BEGIN_NODE);
165         p += 4;
166         return _ALIGN(p + strlen((char *)p) + 1, 4);
167 }
168
169 /**
170  * This  function can be used within scan_flattened_dt callback to get
171  * access to properties
172  */
173 void* __init of_get_flat_dt_prop(unsigned long node, const char *name,
174                                  unsigned long *size)
175 {
176         unsigned long p = node;
177
178         do {
179                 u32 tag = *((u32 *)p);
180                 u32 sz, noff;
181                 const char *nstr;
182
183                 p += 4;
184                 if (tag == OF_DT_NOP)
185                         continue;
186                 if (tag != OF_DT_PROP)
187                         return NULL;
188
189                 sz = *((u32 *)p);
190                 noff = *((u32 *)(p + 4));
191                 p += 8;
192                 if (initial_boot_params->version < 0x10)
193                         p = _ALIGN(p, sz >= 8 ? 8 : 4);
194
195                 nstr = find_flat_dt_string(noff);
196                 if (nstr == NULL) {
197                         printk(KERN_WARNING "Can't find property index"
198                                " name !\n");
199                         return NULL;
200                 }
201                 if (strcmp(name, nstr) == 0) {
202                         if (size)
203                                 *size = sz;
204                         return (void *)p;
205                 }
206                 p += sz;
207                 p = _ALIGN(p, 4);
208         } while(1);
209 }
210
211 int __init of_flat_dt_is_compatible(unsigned long node, const char *compat)
212 {
213         const char* cp;
214         unsigned long cplen, l;
215
216         cp = of_get_flat_dt_prop(node, "compatible", &cplen);
217         if (cp == NULL)
218                 return 0;
219         while (cplen > 0) {
220                 if (strncasecmp(cp, compat, strlen(compat)) == 0)
221                         return 1;
222                 l = strlen(cp) + 1;
223                 cp += l;
224                 cplen -= l;
225         }
226
227         return 0;
228 }
229
230 static void *__init unflatten_dt_alloc(unsigned long *mem, unsigned long size,
231                                        unsigned long align)
232 {
233         void *res;
234
235         *mem = _ALIGN(*mem, align);
236         res = (void *)*mem;
237         *mem += size;
238
239         return res;
240 }
241
242 static unsigned long __init unflatten_dt_node(unsigned long mem,
243                                               unsigned long *p,
244                                               struct device_node *dad,
245                                               struct device_node ***allnextpp,
246                                               unsigned long fpsize)
247 {
248         struct device_node *np;
249         struct property *pp, **prev_pp = NULL;
250         char *pathp;
251         u32 tag;
252         unsigned int l, allocl;
253         int has_name = 0;
254         int new_format = 0;
255
256         tag = *((u32 *)(*p));
257         if (tag != OF_DT_BEGIN_NODE) {
258                 printk("Weird tag at start of node: %x\n", tag);
259                 return mem;
260         }
261         *p += 4;
262         pathp = (char *)*p;
263         l = allocl = strlen(pathp) + 1;
264         *p = _ALIGN(*p + l, 4);
265
266         /* version 0x10 has a more compact unit name here instead of the full
267          * path. we accumulate the full path size using "fpsize", we'll rebuild
268          * it later. We detect this because the first character of the name is
269          * not '/'.
270          */
271         if ((*pathp) != '/') {
272                 new_format = 1;
273                 if (fpsize == 0) {
274                         /* root node: special case. fpsize accounts for path
275                          * plus terminating zero. root node only has '/', so
276                          * fpsize should be 2, but we want to avoid the first
277                          * level nodes to have two '/' so we use fpsize 1 here
278                          */
279                         fpsize = 1;
280                         allocl = 2;
281                 } else {
282                         /* account for '/' and path size minus terminal 0
283                          * already in 'l'
284                          */
285                         fpsize += l;
286                         allocl = fpsize;
287                 }
288         }
289
290
291         np = unflatten_dt_alloc(&mem, sizeof(struct device_node) + allocl,
292                                 __alignof__(struct device_node));
293         if (allnextpp) {
294                 memset(np, 0, sizeof(*np));
295                 np->full_name = ((char*)np) + sizeof(struct device_node);
296                 if (new_format) {
297                         char *p = np->full_name;
298                         /* rebuild full path for new format */
299                         if (dad && dad->parent) {
300                                 strcpy(p, dad->full_name);
301 #ifdef DEBUG
302                                 if ((strlen(p) + l + 1) != allocl) {
303                                         DBG("%s: p: %d, l: %d, a: %d\n",
304                                             pathp, (int)strlen(p), l, allocl);
305                                 }
306 #endif
307                                 p += strlen(p);
308                         }
309                         *(p++) = '/';
310                         memcpy(p, pathp, l);
311                 } else
312                         memcpy(np->full_name, pathp, l);
313                 prev_pp = &np->properties;
314                 **allnextpp = np;
315                 *allnextpp = &np->allnext;
316                 if (dad != NULL) {
317                         np->parent = dad;
318                         /* we temporarily use the next field as `last_child'*/
319                         if (dad->next == 0)
320                                 dad->child = np;
321                         else
322                                 dad->next->sibling = np;
323                         dad->next = np;
324                 }
325                 kref_init(&np->kref);
326         }
327         while(1) {
328                 u32 sz, noff;
329                 char *pname;
330
331                 tag = *((u32 *)(*p));
332                 if (tag == OF_DT_NOP) {
333                         *p += 4;
334                         continue;
335                 }
336                 if (tag != OF_DT_PROP)
337                         break;
338                 *p += 4;
339                 sz = *((u32 *)(*p));
340                 noff = *((u32 *)((*p) + 4));
341                 *p += 8;
342                 if (initial_boot_params->version < 0x10)
343                         *p = _ALIGN(*p, sz >= 8 ? 8 : 4);
344
345                 pname = find_flat_dt_string(noff);
346                 if (pname == NULL) {
347                         printk("Can't find property name in list !\n");
348                         break;
349                 }
350                 if (strcmp(pname, "name") == 0)
351                         has_name = 1;
352                 l = strlen(pname) + 1;
353                 pp = unflatten_dt_alloc(&mem, sizeof(struct property),
354                                         __alignof__(struct property));
355                 if (allnextpp) {
356                         if (strcmp(pname, "linux,phandle") == 0) {
357                                 np->node = *((u32 *)*p);
358                                 if (np->linux_phandle == 0)
359                                         np->linux_phandle = np->node;
360                         }
361                         if (strcmp(pname, "ibm,phandle") == 0)
362                                 np->linux_phandle = *((u32 *)*p);
363                         pp->name = pname;
364                         pp->length = sz;
365                         pp->value = (void *)*p;
366                         *prev_pp = pp;
367                         prev_pp = &pp->next;
368                 }
369                 *p = _ALIGN((*p) + sz, 4);
370         }
371         /* with version 0x10 we may not have the name property, recreate
372          * it here from the unit name if absent
373          */
374         if (!has_name) {
375                 char *p = pathp, *ps = pathp, *pa = NULL;
376                 int sz;
377
378                 while (*p) {
379                         if ((*p) == '@')
380                                 pa = p;
381                         if ((*p) == '/')
382                                 ps = p + 1;
383                         p++;
384                 }
385                 if (pa < ps)
386                         pa = p;
387                 sz = (pa - ps) + 1;
388                 pp = unflatten_dt_alloc(&mem, sizeof(struct property) + sz,
389                                         __alignof__(struct property));
390                 if (allnextpp) {
391                         pp->name = "name";
392                         pp->length = sz;
393                         pp->value = (unsigned char *)(pp + 1);
394                         *prev_pp = pp;
395                         prev_pp = &pp->next;
396                         memcpy(pp->value, ps, sz - 1);
397                         ((char *)pp->value)[sz - 1] = 0;
398                         DBG("fixed up name for %s -> %s\n", pathp, pp->value);
399                 }
400         }
401         if (allnextpp) {
402                 *prev_pp = NULL;
403                 np->name = get_property(np, "name", NULL);
404                 np->type = get_property(np, "device_type", NULL);
405
406                 if (!np->name)
407                         np->name = "<NULL>";
408                 if (!np->type)
409                         np->type = "<NULL>";
410         }
411         while (tag == OF_DT_BEGIN_NODE) {
412                 mem = unflatten_dt_node(mem, p, np, allnextpp, fpsize);
413                 tag = *((u32 *)(*p));
414         }
415         if (tag != OF_DT_END_NODE) {
416                 printk("Weird tag at end of node: %x\n", tag);
417                 return mem;
418         }
419         *p += 4;
420         return mem;
421 }
422
423 static int __init early_parse_mem(char *p)
424 {
425         if (!p)
426                 return 1;
427
428         memory_limit = PAGE_ALIGN(memparse(p, &p));
429         DBG("memory limit = 0x%lx\n", memory_limit);
430
431         return 0;
432 }
433 early_param("mem", early_parse_mem);
434
435 /*
436  * The device tree may be allocated below our memory limit, or inside the
437  * crash kernel region for kdump. If so, move it out now.
438  */
439 static void move_device_tree(void)
440 {
441         unsigned long start, size;
442         void *p;
443
444         DBG("-> move_device_tree\n");
445
446         start = __pa(initial_boot_params);
447         size = initial_boot_params->totalsize;
448
449         if ((memory_limit && (start + size) > memory_limit) ||
450                         overlaps_crashkernel(start, size)) {
451                 p = __va(lmb_alloc_base(size, PAGE_SIZE, lmb.rmo_size));
452                 memcpy(p, initial_boot_params, size);
453                 initial_boot_params = (struct boot_param_header *)p;
454                 DBG("Moved device tree to 0x%p\n", p);
455         }
456
457         DBG("<- move_device_tree\n");
458 }
459
460 /**
461  * unflattens the device-tree passed by the firmware, creating the
462  * tree of struct device_node. It also fills the "name" and "type"
463  * pointers of the nodes so the normal device-tree walking functions
464  * can be used (this used to be done by finish_device_tree)
465  */
466 void __init unflatten_device_tree(void)
467 {
468         unsigned long start, mem, size;
469         struct device_node **allnextp = &allnodes;
470
471         DBG(" -> unflatten_device_tree()\n");
472
473         /* First pass, scan for size */
474         start = ((unsigned long)initial_boot_params) +
475                 initial_boot_params->off_dt_struct;
476         size = unflatten_dt_node(0, &start, NULL, NULL, 0);
477         size = (size | 3) + 1;
478
479         DBG("  size is %lx, allocating...\n", size);
480
481         /* Allocate memory for the expanded device tree */
482         mem = lmb_alloc(size + 4, __alignof__(struct device_node));
483         mem = (unsigned long) __va(mem);
484
485         ((u32 *)mem)[size / 4] = 0xdeadbeef;
486
487         DBG("  unflattening %lx...\n", mem);
488
489         /* Second pass, do actual unflattening */
490         start = ((unsigned long)initial_boot_params) +
491                 initial_boot_params->off_dt_struct;
492         unflatten_dt_node(mem, &start, NULL, &allnextp, 0);
493         if (*((u32 *)start) != OF_DT_END)
494                 printk(KERN_WARNING "Weird tag at end of tree: %08x\n", *((u32 *)start));
495         if (((u32 *)mem)[size / 4] != 0xdeadbeef)
496                 printk(KERN_WARNING "End of tree marker overwritten: %08x\n",
497                        ((u32 *)mem)[size / 4] );
498         *allnextp = NULL;
499
500         /* Get pointer to OF "/chosen" node for use everywhere */
501         of_chosen = of_find_node_by_path("/chosen");
502         if (of_chosen == NULL)
503                 of_chosen = of_find_node_by_path("/chosen@0");
504
505         DBG(" <- unflatten_device_tree()\n");
506 }
507
508 /*
509  * ibm,pa-features is a per-cpu property that contains a string of
510  * attribute descriptors, each of which has a 2 byte header plus up
511  * to 254 bytes worth of processor attribute bits.  First header
512  * byte specifies the number of bytes following the header.
513  * Second header byte is an "attribute-specifier" type, of which
514  * zero is the only currently-defined value.
515  * Implementation:  Pass in the byte and bit offset for the feature
516  * that we are interested in.  The function will return -1 if the
517  * pa-features property is missing, or a 1/0 to indicate if the feature
518  * is supported/not supported.  Note that the bit numbers are
519  * big-endian to match the definition in PAPR.
520  */
521 static struct ibm_pa_feature {
522         unsigned long   cpu_features;   /* CPU_FTR_xxx bit */
523         unsigned int    cpu_user_ftrs;  /* PPC_FEATURE_xxx bit */
524         unsigned char   pabyte;         /* byte number in ibm,pa-features */
525         unsigned char   pabit;          /* bit number (big-endian) */
526         unsigned char   invert;         /* if 1, pa bit set => clear feature */
527 } ibm_pa_features[] __initdata = {
528         {0, PPC_FEATURE_HAS_MMU,        0, 0, 0},
529         {0, PPC_FEATURE_HAS_FPU,        0, 1, 0},
530         {CPU_FTR_SLB, 0,                0, 2, 0},
531         {CPU_FTR_CTRL, 0,               0, 3, 0},
532         {CPU_FTR_NOEXECUTE, 0,          0, 6, 0},
533         {CPU_FTR_NODSISRALIGN, 0,       1, 1, 1},
534 #if 0
535         /* put this back once we know how to test if firmware does 64k IO */
536         {CPU_FTR_CI_LARGE_PAGE, 0,      1, 2, 0},
537 #endif
538         {CPU_FTR_REAL_LE, PPC_FEATURE_TRUE_LE, 5, 0, 0},
539 };
540
541 static void __init scan_features(unsigned long node, unsigned char *ftrs,
542                                  unsigned long tablelen,
543                                  struct ibm_pa_feature *fp,
544                                  unsigned long ft_size)
545 {
546         unsigned long i, len, bit;
547
548         /* find descriptor with type == 0 */
549         for (;;) {
550                 if (tablelen < 3)
551                         return;
552                 len = 2 + ftrs[0];
553                 if (tablelen < len)
554                         return;         /* descriptor 0 not found */
555                 if (ftrs[1] == 0)
556                         break;
557                 tablelen -= len;
558                 ftrs += len;
559         }
560
561         /* loop over bits we know about */
562         for (i = 0; i < ft_size; ++i, ++fp) {
563                 if (fp->pabyte >= ftrs[0])
564                         continue;
565                 bit = (ftrs[2 + fp->pabyte] >> (7 - fp->pabit)) & 1;
566                 if (bit ^ fp->invert) {
567                         cur_cpu_spec->cpu_features |= fp->cpu_features;
568                         cur_cpu_spec->cpu_user_features |= fp->cpu_user_ftrs;
569                 } else {
570                         cur_cpu_spec->cpu_features &= ~fp->cpu_features;
571                         cur_cpu_spec->cpu_user_features &= ~fp->cpu_user_ftrs;
572                 }
573         }
574 }
575
576 static void __init check_cpu_pa_features(unsigned long node)
577 {
578         unsigned char *pa_ftrs;
579         unsigned long tablelen;
580
581         pa_ftrs = of_get_flat_dt_prop(node, "ibm,pa-features", &tablelen);
582         if (pa_ftrs == NULL)
583                 return;
584
585         scan_features(node, pa_ftrs, tablelen,
586                       ibm_pa_features, ARRAY_SIZE(ibm_pa_features));
587 }
588
589 static struct feature_property {
590         const char *name;
591         u32 min_value;
592         unsigned long cpu_feature;
593         unsigned long cpu_user_ftr;
594 } feature_properties[] __initdata = {
595 #ifdef CONFIG_ALTIVEC
596         {"altivec", 0, CPU_FTR_ALTIVEC, PPC_FEATURE_HAS_ALTIVEC},
597         {"ibm,vmx", 1, CPU_FTR_ALTIVEC, PPC_FEATURE_HAS_ALTIVEC},
598 #endif /* CONFIG_ALTIVEC */
599 #ifdef CONFIG_PPC64
600         {"ibm,dfp", 1, 0, PPC_FEATURE_HAS_DFP},
601         {"ibm,purr", 1, CPU_FTR_PURR, 0},
602         {"ibm,spurr", 1, CPU_FTR_SPURR, 0},
603 #endif /* CONFIG_PPC64 */
604 };
605
606 static void __init check_cpu_feature_properties(unsigned long node)
607 {
608         unsigned long i;
609         struct feature_property *fp = feature_properties;
610         const u32 *prop;
611
612         for (i = 0; i < ARRAY_SIZE(feature_properties); ++i, ++fp) {
613                 prop = of_get_flat_dt_prop(node, fp->name, NULL);
614                 if (prop && *prop >= fp->min_value) {
615                         cur_cpu_spec->cpu_features |= fp->cpu_feature;
616                         cur_cpu_spec->cpu_user_features |= fp->cpu_user_ftr;
617                 }
618         }
619 }
620
621 static int __init early_init_dt_scan_cpus(unsigned long node,
622                                           const char *uname, int depth,
623                                           void *data)
624 {
625         static int logical_cpuid = 0;
626         char *type = of_get_flat_dt_prop(node, "device_type", NULL);
627         const u32 *prop;
628         const u32 *intserv;
629         int i, nthreads;
630         unsigned long len;
631         int found = 0;
632
633         /* We are scanning "cpu" nodes only */
634         if (type == NULL || strcmp(type, "cpu") != 0)
635                 return 0;
636
637         /* Get physical cpuid */
638         intserv = of_get_flat_dt_prop(node, "ibm,ppc-interrupt-server#s", &len);
639         if (intserv) {
640                 nthreads = len / sizeof(int);
641         } else {
642                 intserv = of_get_flat_dt_prop(node, "reg", NULL);
643                 nthreads = 1;
644         }
645
646         /*
647          * Now see if any of these threads match our boot cpu.
648          * NOTE: This must match the parsing done in smp_setup_cpu_maps.
649          */
650         for (i = 0; i < nthreads; i++) {
651                 /*
652                  * version 2 of the kexec param format adds the phys cpuid of
653                  * booted proc.
654                  */
655                 if (initial_boot_params && initial_boot_params->version >= 2) {
656                         if (intserv[i] ==
657                                         initial_boot_params->boot_cpuid_phys) {
658                                 found = 1;
659                                 break;
660                         }
661                 } else {
662                         /*
663                          * Check if it's the boot-cpu, set it's hw index now,
664                          * unfortunately this format did not support booting
665                          * off secondary threads.
666                          */
667                         if (of_get_flat_dt_prop(node,
668                                         "linux,boot-cpu", NULL) != NULL) {
669                                 found = 1;
670                                 break;
671                         }
672                 }
673
674 #ifdef CONFIG_SMP
675                 /* logical cpu id is always 0 on UP kernels */
676                 logical_cpuid++;
677 #endif
678         }
679
680         if (found) {
681                 DBG("boot cpu: logical %d physical %d\n", logical_cpuid,
682                         intserv[i]);
683                 boot_cpuid = logical_cpuid;
684                 set_hard_smp_processor_id(boot_cpuid, intserv[i]);
685
686                 /*
687                  * PAPR defines "logical" PVR values for cpus that
688                  * meet various levels of the architecture:
689                  * 0x0f000001   Architecture version 2.04
690                  * 0x0f000002   Architecture version 2.05
691                  * If the cpu-version property in the cpu node contains
692                  * such a value, we call identify_cpu again with the
693                  * logical PVR value in order to use the cpu feature
694                  * bits appropriate for the architecture level.
695                  *
696                  * A POWER6 partition in "POWER6 architected" mode
697                  * uses the 0x0f000002 PVR value; in POWER5+ mode
698                  * it uses 0x0f000001.
699                  */
700                 prop = of_get_flat_dt_prop(node, "cpu-version", NULL);
701                 if (prop && (*prop & 0xff000000) == 0x0f000000)
702                         identify_cpu(0, *prop);
703         }
704
705         check_cpu_feature_properties(node);
706         check_cpu_pa_features(node);
707
708 #ifdef CONFIG_PPC_PSERIES
709         if (nthreads > 1)
710                 cur_cpu_spec->cpu_features |= CPU_FTR_SMT;
711         else
712                 cur_cpu_spec->cpu_features &= ~CPU_FTR_SMT;
713 #endif
714
715         return 0;
716 }
717
718 static int __init early_init_dt_scan_chosen(unsigned long node,
719                                             const char *uname, int depth, void *data)
720 {
721         unsigned long *lprop;
722         unsigned long l;
723         char *p;
724
725         DBG("search \"chosen\", depth: %d, uname: %s\n", depth, uname);
726
727         if (depth != 1 ||
728             (strcmp(uname, "chosen") != 0 && strcmp(uname, "chosen@0") != 0))
729                 return 0;
730
731 #ifdef CONFIG_PPC64
732         /* check if iommu is forced on or off */
733         if (of_get_flat_dt_prop(node, "linux,iommu-off", NULL) != NULL)
734                 iommu_is_off = 1;
735         if (of_get_flat_dt_prop(node, "linux,iommu-force-on", NULL) != NULL)
736                 iommu_force_on = 1;
737 #endif
738
739         /* mem=x on the command line is the preferred mechanism */
740         lprop = of_get_flat_dt_prop(node, "linux,memory-limit", NULL);
741         if (lprop)
742                 memory_limit = *lprop;
743
744 #ifdef CONFIG_PPC64
745         lprop = of_get_flat_dt_prop(node, "linux,tce-alloc-start", NULL);
746         if (lprop)
747                 tce_alloc_start = *lprop;
748         lprop = of_get_flat_dt_prop(node, "linux,tce-alloc-end", NULL);
749         if (lprop)
750                 tce_alloc_end = *lprop;
751 #endif
752
753 #ifdef CONFIG_KEXEC
754        lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-base", NULL);
755        if (lprop)
756                crashk_res.start = *lprop;
757
758        lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-size", NULL);
759        if (lprop)
760                crashk_res.end = crashk_res.start + *lprop - 1;
761 #endif
762
763         /* Retreive command line */
764         p = of_get_flat_dt_prop(node, "bootargs", &l);
765         if (p != NULL && l > 0)
766                 strlcpy(cmd_line, p, min((int)l, COMMAND_LINE_SIZE));
767
768 #ifdef CONFIG_CMDLINE
769         if (p == NULL || l == 0 || (l == 1 && (*p) == 0))
770                 strlcpy(cmd_line, CONFIG_CMDLINE, COMMAND_LINE_SIZE);
771 #endif /* CONFIG_CMDLINE */
772
773         DBG("Command line is: %s\n", cmd_line);
774
775         /* break now */
776         return 1;
777 }
778
779 static int __init early_init_dt_scan_root(unsigned long node,
780                                           const char *uname, int depth, void *data)
781 {
782         u32 *prop;
783
784         if (depth != 0)
785                 return 0;
786
787         prop = of_get_flat_dt_prop(node, "#size-cells", NULL);
788         dt_root_size_cells = (prop == NULL) ? 1 : *prop;
789         DBG("dt_root_size_cells = %x\n", dt_root_size_cells);
790
791         prop = of_get_flat_dt_prop(node, "#address-cells", NULL);
792         dt_root_addr_cells = (prop == NULL) ? 2 : *prop;
793         DBG("dt_root_addr_cells = %x\n", dt_root_addr_cells);
794         
795         /* break now */
796         return 1;
797 }
798
799 static unsigned long __init dt_mem_next_cell(int s, cell_t **cellp)
800 {
801         cell_t *p = *cellp;
802
803         *cellp = p + s;
804         return of_read_ulong(p, s);
805 }
806
807
808 static int __init early_init_dt_scan_memory(unsigned long node,
809                                             const char *uname, int depth, void *data)
810 {
811         char *type = of_get_flat_dt_prop(node, "device_type", NULL);
812         cell_t *reg, *endp;
813         unsigned long l;
814
815         /* We are scanning "memory" nodes only */
816         if (type == NULL) {
817                 /*
818                  * The longtrail doesn't have a device_type on the
819                  * /memory node, so look for the node called /memory@0.
820                  */
821                 if (depth != 1 || strcmp(uname, "memory@0") != 0)
822                         return 0;
823         } else if (strcmp(type, "memory") != 0)
824                 return 0;
825
826         reg = (cell_t *)of_get_flat_dt_prop(node, "linux,usable-memory", &l);
827         if (reg == NULL)
828                 reg = (cell_t *)of_get_flat_dt_prop(node, "reg", &l);
829         if (reg == NULL)
830                 return 0;
831
832         endp = reg + (l / sizeof(cell_t));
833
834         DBG("memory scan node %s, reg size %ld, data: %x %x %x %x,\n",
835             uname, l, reg[0], reg[1], reg[2], reg[3]);
836
837         while ((endp - reg) >= (dt_root_addr_cells + dt_root_size_cells)) {
838                 unsigned long base, size;
839
840                 base = dt_mem_next_cell(dt_root_addr_cells, &reg);
841                 size = dt_mem_next_cell(dt_root_size_cells, &reg);
842
843                 if (size == 0)
844                         continue;
845                 DBG(" - %lx ,  %lx\n", base, size);
846 #ifdef CONFIG_PPC64
847                 if (iommu_is_off) {
848                         if (base >= 0x80000000ul)
849                                 continue;
850                         if ((base + size) > 0x80000000ul)
851                                 size = 0x80000000ul - base;
852                 }
853 #endif
854                 lmb_add(base, size);
855         }
856         return 0;
857 }
858
859 static void __init early_reserve_mem(void)
860 {
861         u64 base, size;
862         u64 *reserve_map;
863         unsigned long self_base;
864         unsigned long self_size;
865
866         reserve_map = (u64 *)(((unsigned long)initial_boot_params) +
867                                         initial_boot_params->off_mem_rsvmap);
868
869         /* before we do anything, lets reserve the dt blob */
870         self_base = __pa((unsigned long)initial_boot_params);
871         self_size = initial_boot_params->totalsize;
872         lmb_reserve(self_base, self_size);
873
874 #ifdef CONFIG_PPC32
875         /* 
876          * Handle the case where we might be booting from an old kexec
877          * image that setup the mem_rsvmap as pairs of 32-bit values
878          */
879         if (*reserve_map > 0xffffffffull) {
880                 u32 base_32, size_32;
881                 u32 *reserve_map_32 = (u32 *)reserve_map;
882
883                 while (1) {
884                         base_32 = *(reserve_map_32++);
885                         size_32 = *(reserve_map_32++);
886                         if (size_32 == 0)
887                                 break;
888                         /* skip if the reservation is for the blob */
889                         if (base_32 == self_base && size_32 == self_size)
890                                 continue;
891                         DBG("reserving: %x -> %x\n", base_32, size_32);
892                         lmb_reserve(base_32, size_32);
893                 }
894                 return;
895         }
896 #endif
897         while (1) {
898                 base = *(reserve_map++);
899                 size = *(reserve_map++);
900                 if (size == 0)
901                         break;
902                 /* skip if the reservation is for the blob */
903                 if (base == self_base && size == self_size)
904                         continue;
905                 DBG("reserving: %llx -> %llx\n", base, size);
906                 lmb_reserve(base, size);
907         }
908
909 #if 0
910         DBG("memory reserved, lmbs :\n");
911         lmb_dump_all();
912 #endif
913 }
914
915 void __init early_init_devtree(void *params)
916 {
917         DBG(" -> early_init_devtree()\n");
918
919         /* Setup flat device-tree pointer */
920         initial_boot_params = params;
921
922 #ifdef CONFIG_PPC_RTAS
923         /* Some machines might need RTAS info for debugging, grab it now. */
924         of_scan_flat_dt(early_init_dt_scan_rtas, NULL);
925 #endif
926
927         /* Retrieve various informations from the /chosen node of the
928          * device-tree, including the platform type, initrd location and
929          * size, TCE reserve, and more ...
930          */
931         of_scan_flat_dt(early_init_dt_scan_chosen, NULL);
932
933         /* Scan memory nodes and rebuild LMBs */
934         lmb_init();
935         of_scan_flat_dt(early_init_dt_scan_root, NULL);
936         of_scan_flat_dt(early_init_dt_scan_memory, NULL);
937
938         /* Save command line for /proc/cmdline and then parse parameters */
939         strlcpy(saved_command_line, cmd_line, COMMAND_LINE_SIZE);
940         parse_early_param();
941
942         /* Reserve LMB regions used by kernel, initrd, dt, etc... */
943         lmb_reserve(PHYSICAL_START, __pa(klimit) - PHYSICAL_START);
944         reserve_kdump_trampoline();
945         reserve_crashkernel();
946         early_reserve_mem();
947
948         lmb_enforce_memory_limit(memory_limit);
949         lmb_analyze();
950
951         DBG("Phys. mem: %lx\n", lmb_phys_mem_size());
952
953         /* We may need to relocate the flat tree, do it now.
954          * FIXME .. and the initrd too? */
955         move_device_tree();
956
957         DBG("Scanning CPUs ...\n");
958
959         /* Retreive CPU related informations from the flat tree
960          * (altivec support, boot CPU ID, ...)
961          */
962         of_scan_flat_dt(early_init_dt_scan_cpus, NULL);
963
964         DBG(" <- early_init_devtree()\n");
965 }
966
967 #undef printk
968
969 int
970 prom_n_addr_cells(struct device_node* np)
971 {
972         const int *ip;
973         do {
974                 if (np->parent)
975                         np = np->parent;
976                 ip = get_property(np, "#address-cells", NULL);
977                 if (ip != NULL)
978                         return *ip;
979         } while (np->parent);
980         /* No #address-cells property for the root node, default to 1 */
981         return 1;
982 }
983 EXPORT_SYMBOL(prom_n_addr_cells);
984
985 int
986 prom_n_size_cells(struct device_node* np)
987 {
988         const int* ip;
989         do {
990                 if (np->parent)
991                         np = np->parent;
992                 ip = get_property(np, "#size-cells", NULL);
993                 if (ip != NULL)
994                         return *ip;
995         } while (np->parent);
996         /* No #size-cells property for the root node, default to 1 */
997         return 1;
998 }
999 EXPORT_SYMBOL(prom_n_size_cells);
1000
1001 /**
1002  * Construct and return a list of the device_nodes with a given name.
1003  */
1004 struct device_node *find_devices(const char *name)
1005 {
1006         struct device_node *head, **prevp, *np;
1007
1008         prevp = &head;
1009         for (np = allnodes; np != 0; np = np->allnext) {
1010                 if (np->name != 0 && strcasecmp(np->name, name) == 0) {
1011                         *prevp = np;
1012                         prevp = &np->next;
1013                 }
1014         }
1015         *prevp = NULL;
1016         return head;
1017 }
1018 EXPORT_SYMBOL(find_devices);
1019
1020 /**
1021  * Construct and return a list of the device_nodes with a given type.
1022  */
1023 struct device_node *find_type_devices(const char *type)
1024 {
1025         struct device_node *head, **prevp, *np;
1026
1027         prevp = &head;
1028         for (np = allnodes; np != 0; np = np->allnext) {
1029                 if (np->type != 0 && strcasecmp(np->type, type) == 0) {
1030                         *prevp = np;
1031                         prevp = &np->next;
1032                 }
1033         }
1034         *prevp = NULL;
1035         return head;
1036 }
1037 EXPORT_SYMBOL(find_type_devices);
1038
1039 /**
1040  * Returns all nodes linked together
1041  */
1042 struct device_node *find_all_nodes(void)
1043 {
1044         struct device_node *head, **prevp, *np;
1045
1046         prevp = &head;
1047         for (np = allnodes; np != 0; np = np->allnext) {
1048                 *prevp = np;
1049                 prevp = &np->next;
1050         }
1051         *prevp = NULL;
1052         return head;
1053 }
1054 EXPORT_SYMBOL(find_all_nodes);
1055
1056 /** Checks if the given "compat" string matches one of the strings in
1057  * the device's "compatible" property
1058  */
1059 int device_is_compatible(const struct device_node *device, const char *compat)
1060 {
1061         const char* cp;
1062         int cplen, l;
1063
1064         cp = get_property(device, "compatible", &cplen);
1065         if (cp == NULL)
1066                 return 0;
1067         while (cplen > 0) {
1068                 if (strncasecmp(cp, compat, strlen(compat)) == 0)
1069                         return 1;
1070                 l = strlen(cp) + 1;
1071                 cp += l;
1072                 cplen -= l;
1073         }
1074
1075         return 0;
1076 }
1077 EXPORT_SYMBOL(device_is_compatible);
1078
1079
1080 /**
1081  * Indicates whether the root node has a given value in its
1082  * compatible property.
1083  */
1084 int machine_is_compatible(const char *compat)
1085 {
1086         struct device_node *root;
1087         int rc = 0;
1088
1089         root = of_find_node_by_path("/");
1090         if (root) {
1091                 rc = device_is_compatible(root, compat);
1092                 of_node_put(root);
1093         }
1094         return rc;
1095 }
1096 EXPORT_SYMBOL(machine_is_compatible);
1097
1098 /**
1099  * Construct and return a list of the device_nodes with a given type
1100  * and compatible property.
1101  */
1102 struct device_node *find_compatible_devices(const char *type,
1103                                             const char *compat)
1104 {
1105         struct device_node *head, **prevp, *np;
1106
1107         prevp = &head;
1108         for (np = allnodes; np != 0; np = np->allnext) {
1109                 if (type != NULL
1110                     && !(np->type != 0 && strcasecmp(np->type, type) == 0))
1111                         continue;
1112                 if (device_is_compatible(np, compat)) {
1113                         *prevp = np;
1114                         prevp = &np->next;
1115                 }
1116         }
1117         *prevp = NULL;
1118         return head;
1119 }
1120 EXPORT_SYMBOL(find_compatible_devices);
1121
1122 /**
1123  * Find the device_node with a given full_name.
1124  */
1125 struct device_node *find_path_device(const char *path)
1126 {
1127         struct device_node *np;
1128
1129         for (np = allnodes; np != 0; np = np->allnext)
1130                 if (np->full_name != 0 && strcasecmp(np->full_name, path) == 0)
1131                         return np;
1132         return NULL;
1133 }
1134 EXPORT_SYMBOL(find_path_device);
1135
1136 /*******
1137  *
1138  * New implementation of the OF "find" APIs, return a refcounted
1139  * object, call of_node_put() when done.  The device tree and list
1140  * are protected by a rw_lock.
1141  *
1142  * Note that property management will need some locking as well,
1143  * this isn't dealt with yet.
1144  *
1145  *******/
1146
1147 /**
1148  *      of_find_node_by_name - Find a node by its "name" property
1149  *      @from:  The node to start searching from or NULL, the node
1150  *              you pass will not be searched, only the next one
1151  *              will; typically, you pass what the previous call
1152  *              returned. of_node_put() will be called on it
1153  *      @name:  The name string to match against
1154  *
1155  *      Returns a node pointer with refcount incremented, use
1156  *      of_node_put() on it when done.
1157  */
1158 struct device_node *of_find_node_by_name(struct device_node *from,
1159         const char *name)
1160 {
1161         struct device_node *np;
1162
1163         read_lock(&devtree_lock);
1164         np = from ? from->allnext : allnodes;
1165         for (; np != NULL; np = np->allnext)
1166                 if (np->name != NULL && strcasecmp(np->name, name) == 0
1167                     && of_node_get(np))
1168                         break;
1169         if (from)
1170                 of_node_put(from);
1171         read_unlock(&devtree_lock);
1172         return np;
1173 }
1174 EXPORT_SYMBOL(of_find_node_by_name);
1175
1176 /**
1177  *      of_find_node_by_type - Find a node by its "device_type" property
1178  *      @from:  The node to start searching from or NULL, the node
1179  *              you pass will not be searched, only the next one
1180  *              will; typically, you pass what the previous call
1181  *              returned. of_node_put() will be called on it
1182  *      @name:  The type string to match against
1183  *
1184  *      Returns a node pointer with refcount incremented, use
1185  *      of_node_put() on it when done.
1186  */
1187 struct device_node *of_find_node_by_type(struct device_node *from,
1188         const char *type)
1189 {
1190         struct device_node *np;
1191
1192         read_lock(&devtree_lock);
1193         np = from ? from->allnext : allnodes;
1194         for (; np != 0; np = np->allnext)
1195                 if (np->type != 0 && strcasecmp(np->type, type) == 0
1196                     && of_node_get(np))
1197                         break;
1198         if (from)
1199                 of_node_put(from);
1200         read_unlock(&devtree_lock);
1201         return np;
1202 }
1203 EXPORT_SYMBOL(of_find_node_by_type);
1204
1205 /**
1206  *      of_find_compatible_node - Find a node based on type and one of the
1207  *                                tokens in its "compatible" property
1208  *      @from:          The node to start searching from or NULL, the node
1209  *                      you pass will not be searched, only the next one
1210  *                      will; typically, you pass what the previous call
1211  *                      returned. of_node_put() will be called on it
1212  *      @type:          The type string to match "device_type" or NULL to ignore
1213  *      @compatible:    The string to match to one of the tokens in the device
1214  *                      "compatible" list.
1215  *
1216  *      Returns a node pointer with refcount incremented, use
1217  *      of_node_put() on it when done.
1218  */
1219 struct device_node *of_find_compatible_node(struct device_node *from,
1220         const char *type, const char *compatible)
1221 {
1222         struct device_node *np;
1223
1224         read_lock(&devtree_lock);
1225         np = from ? from->allnext : allnodes;
1226         for (; np != 0; np = np->allnext) {
1227                 if (type != NULL
1228                     && !(np->type != 0 && strcasecmp(np->type, type) == 0))
1229                         continue;
1230                 if (device_is_compatible(np, compatible) && of_node_get(np))
1231                         break;
1232         }
1233         if (from)
1234                 of_node_put(from);
1235         read_unlock(&devtree_lock);
1236         return np;
1237 }
1238 EXPORT_SYMBOL(of_find_compatible_node);
1239
1240 /**
1241  *      of_find_node_by_path - Find a node matching a full OF path
1242  *      @path:  The full path to match
1243  *
1244  *      Returns a node pointer with refcount incremented, use
1245  *      of_node_put() on it when done.
1246  */
1247 struct device_node *of_find_node_by_path(const char *path)
1248 {
1249         struct device_node *np = allnodes;
1250
1251         read_lock(&devtree_lock);
1252         for (; np != 0; np = np->allnext) {
1253                 if (np->full_name != 0 && strcasecmp(np->full_name, path) == 0
1254                     && of_node_get(np))
1255                         break;
1256         }
1257         read_unlock(&devtree_lock);
1258         return np;
1259 }
1260 EXPORT_SYMBOL(of_find_node_by_path);
1261
1262 /**
1263  *      of_find_node_by_phandle - Find a node given a phandle
1264  *      @handle:        phandle of the node to find
1265  *
1266  *      Returns a node pointer with refcount incremented, use
1267  *      of_node_put() on it when done.
1268  */
1269 struct device_node *of_find_node_by_phandle(phandle handle)
1270 {
1271         struct device_node *np;
1272
1273         read_lock(&devtree_lock);
1274         for (np = allnodes; np != 0; np = np->allnext)
1275                 if (np->linux_phandle == handle)
1276                         break;
1277         if (np)
1278                 of_node_get(np);
1279         read_unlock(&devtree_lock);
1280         return np;
1281 }
1282 EXPORT_SYMBOL(of_find_node_by_phandle);
1283
1284 /**
1285  *      of_find_all_nodes - Get next node in global list
1286  *      @prev:  Previous node or NULL to start iteration
1287  *              of_node_put() will be called on it
1288  *
1289  *      Returns a node pointer with refcount incremented, use
1290  *      of_node_put() on it when done.
1291  */
1292 struct device_node *of_find_all_nodes(struct device_node *prev)
1293 {
1294         struct device_node *np;
1295
1296         read_lock(&devtree_lock);
1297         np = prev ? prev->allnext : allnodes;
1298         for (; np != 0; np = np->allnext)
1299                 if (of_node_get(np))
1300                         break;
1301         if (prev)
1302                 of_node_put(prev);
1303         read_unlock(&devtree_lock);
1304         return np;
1305 }
1306 EXPORT_SYMBOL(of_find_all_nodes);
1307
1308 /**
1309  *      of_get_parent - Get a node's parent if any
1310  *      @node:  Node to get parent
1311  *
1312  *      Returns a node pointer with refcount incremented, use
1313  *      of_node_put() on it when done.
1314  */
1315 struct device_node *of_get_parent(const struct device_node *node)
1316 {
1317         struct device_node *np;
1318
1319         if (!node)
1320                 return NULL;
1321
1322         read_lock(&devtree_lock);
1323         np = of_node_get(node->parent);
1324         read_unlock(&devtree_lock);
1325         return np;
1326 }
1327 EXPORT_SYMBOL(of_get_parent);
1328
1329 /**
1330  *      of_get_next_child - Iterate a node childs
1331  *      @node:  parent node
1332  *      @prev:  previous child of the parent node, or NULL to get first
1333  *
1334  *      Returns a node pointer with refcount incremented, use
1335  *      of_node_put() on it when done.
1336  */
1337 struct device_node *of_get_next_child(const struct device_node *node,
1338         struct device_node *prev)
1339 {
1340         struct device_node *next;
1341
1342         read_lock(&devtree_lock);
1343         next = prev ? prev->sibling : node->child;
1344         for (; next != 0; next = next->sibling)
1345                 if (of_node_get(next))
1346                         break;
1347         if (prev)
1348                 of_node_put(prev);
1349         read_unlock(&devtree_lock);
1350         return next;
1351 }
1352 EXPORT_SYMBOL(of_get_next_child);
1353
1354 /**
1355  *      of_node_get - Increment refcount of a node
1356  *      @node:  Node to inc refcount, NULL is supported to
1357  *              simplify writing of callers
1358  *
1359  *      Returns node.
1360  */
1361 struct device_node *of_node_get(struct device_node *node)
1362 {
1363         if (node)
1364                 kref_get(&node->kref);
1365         return node;
1366 }
1367 EXPORT_SYMBOL(of_node_get);
1368
1369 static inline struct device_node * kref_to_device_node(struct kref *kref)
1370 {
1371         return container_of(kref, struct device_node, kref);
1372 }
1373
1374 /**
1375  *      of_node_release - release a dynamically allocated node
1376  *      @kref:  kref element of the node to be released
1377  *
1378  *      In of_node_put() this function is passed to kref_put()
1379  *      as the destructor.
1380  */
1381 static void of_node_release(struct kref *kref)
1382 {
1383         struct device_node *node = kref_to_device_node(kref);
1384         struct property *prop = node->properties;
1385
1386         if (!OF_IS_DYNAMIC(node))
1387                 return;
1388         while (prop) {
1389                 struct property *next = prop->next;
1390                 kfree(prop->name);
1391                 kfree(prop->value);
1392                 kfree(prop);
1393                 prop = next;
1394
1395                 if (!prop) {
1396                         prop = node->deadprops;
1397                         node->deadprops = NULL;
1398                 }
1399         }
1400         kfree(node->full_name);
1401         kfree(node->data);
1402         kfree(node);
1403 }
1404
1405 /**
1406  *      of_node_put - Decrement refcount of a node
1407  *      @node:  Node to dec refcount, NULL is supported to
1408  *              simplify writing of callers
1409  *
1410  */
1411 void of_node_put(struct device_node *node)
1412 {
1413         if (node)
1414                 kref_put(&node->kref, of_node_release);
1415 }
1416 EXPORT_SYMBOL(of_node_put);
1417
1418 /*
1419  * Plug a device node into the tree and global list.
1420  */
1421 void of_attach_node(struct device_node *np)
1422 {
1423         write_lock(&devtree_lock);
1424         np->sibling = np->parent->child;
1425         np->allnext = allnodes;
1426         np->parent->child = np;
1427         allnodes = np;
1428         write_unlock(&devtree_lock);
1429 }
1430
1431 /*
1432  * "Unplug" a node from the device tree.  The caller must hold
1433  * a reference to the node.  The memory associated with the node
1434  * is not freed until its refcount goes to zero.
1435  */
1436 void of_detach_node(const struct device_node *np)
1437 {
1438         struct device_node *parent;
1439
1440         write_lock(&devtree_lock);
1441
1442         parent = np->parent;
1443
1444         if (allnodes == np)
1445                 allnodes = np->allnext;
1446         else {
1447                 struct device_node *prev;
1448                 for (prev = allnodes;
1449                      prev->allnext != np;
1450                      prev = prev->allnext)
1451                         ;
1452                 prev->allnext = np->allnext;
1453         }
1454
1455         if (parent->child == np)
1456                 parent->child = np->sibling;
1457         else {
1458                 struct device_node *prevsib;
1459                 for (prevsib = np->parent->child;
1460                      prevsib->sibling != np;
1461                      prevsib = prevsib->sibling)
1462                         ;
1463                 prevsib->sibling = np->sibling;
1464         }
1465
1466         write_unlock(&devtree_lock);
1467 }
1468
1469 #ifdef CONFIG_PPC_PSERIES
1470 /*
1471  * Fix up the uninitialized fields in a new device node:
1472  * name, type and pci-specific fields
1473  */
1474
1475 static int of_finish_dynamic_node(struct device_node *node)
1476 {
1477         struct device_node *parent = of_get_parent(node);
1478         int err = 0;
1479         const phandle *ibm_phandle;
1480
1481         node->name = get_property(node, "name", NULL);
1482         node->type = get_property(node, "device_type", NULL);
1483
1484         if (!parent) {
1485                 err = -ENODEV;
1486                 goto out;
1487         }
1488
1489         /* We don't support that function on PowerMac, at least
1490          * not yet
1491          */
1492         if (machine_is(powermac))
1493                 return -ENODEV;
1494
1495         /* fix up new node's linux_phandle field */
1496         if ((ibm_phandle = get_property(node, "ibm,phandle", NULL)))
1497                 node->linux_phandle = *ibm_phandle;
1498
1499 out:
1500         of_node_put(parent);
1501         return err;
1502 }
1503
1504 static int prom_reconfig_notifier(struct notifier_block *nb,
1505                                   unsigned long action, void *node)
1506 {
1507         int err;
1508
1509         switch (action) {
1510         case PSERIES_RECONFIG_ADD:
1511                 err = of_finish_dynamic_node(node);
1512                 if (err < 0) {
1513                         printk(KERN_ERR "finish_node returned %d\n", err);
1514                         err = NOTIFY_BAD;
1515                 }
1516                 break;
1517         default:
1518                 err = NOTIFY_DONE;
1519                 break;
1520         }
1521         return err;
1522 }
1523
1524 static struct notifier_block prom_reconfig_nb = {
1525         .notifier_call = prom_reconfig_notifier,
1526         .priority = 10, /* This one needs to run first */
1527 };
1528
1529 static int __init prom_reconfig_setup(void)
1530 {
1531         return pSeries_reconfig_notifier_register(&prom_reconfig_nb);
1532 }
1533 __initcall(prom_reconfig_setup);
1534 #endif
1535
1536 struct property *of_find_property(const struct device_node *np,
1537                                   const char *name,
1538                                   int *lenp)
1539 {
1540         struct property *pp;
1541
1542         read_lock(&devtree_lock);
1543         for (pp = np->properties; pp != 0; pp = pp->next)
1544                 if (strcmp(pp->name, name) == 0) {
1545                         if (lenp != 0)
1546                                 *lenp = pp->length;
1547                         break;
1548                 }
1549         read_unlock(&devtree_lock);
1550
1551         return pp;
1552 }
1553
1554 /*
1555  * Find a property with a given name for a given node
1556  * and return the value.
1557  */
1558 const void *get_property(const struct device_node *np, const char *name,
1559                          int *lenp)
1560 {
1561         struct property *pp = of_find_property(np,name,lenp);
1562         return pp ? pp->value : NULL;
1563 }
1564 EXPORT_SYMBOL(get_property);
1565
1566 /*
1567  * Add a property to a node
1568  */
1569 int prom_add_property(struct device_node* np, struct property* prop)
1570 {
1571         struct property **next;
1572
1573         prop->next = NULL;      
1574         write_lock(&devtree_lock);
1575         next = &np->properties;
1576         while (*next) {
1577                 if (strcmp(prop->name, (*next)->name) == 0) {
1578                         /* duplicate ! don't insert it */
1579                         write_unlock(&devtree_lock);
1580                         return -1;
1581                 }
1582                 next = &(*next)->next;
1583         }
1584         *next = prop;
1585         write_unlock(&devtree_lock);
1586
1587 #ifdef CONFIG_PROC_DEVICETREE
1588         /* try to add to proc as well if it was initialized */
1589         if (np->pde)
1590                 proc_device_tree_add_prop(np->pde, prop);
1591 #endif /* CONFIG_PROC_DEVICETREE */
1592
1593         return 0;
1594 }
1595
1596 /*
1597  * Remove a property from a node.  Note that we don't actually
1598  * remove it, since we have given out who-knows-how-many pointers
1599  * to the data using get-property.  Instead we just move the property
1600  * to the "dead properties" list, so it won't be found any more.
1601  */
1602 int prom_remove_property(struct device_node *np, struct property *prop)
1603 {
1604         struct property **next;
1605         int found = 0;
1606
1607         write_lock(&devtree_lock);
1608         next = &np->properties;
1609         while (*next) {
1610                 if (*next == prop) {
1611                         /* found the node */
1612                         *next = prop->next;
1613                         prop->next = np->deadprops;
1614                         np->deadprops = prop;
1615                         found = 1;
1616                         break;
1617                 }
1618                 next = &(*next)->next;
1619         }
1620         write_unlock(&devtree_lock);
1621
1622         if (!found)
1623                 return -ENODEV;
1624
1625 #ifdef CONFIG_PROC_DEVICETREE
1626         /* try to remove the proc node as well */
1627         if (np->pde)
1628                 proc_device_tree_remove_prop(np->pde, prop);
1629 #endif /* CONFIG_PROC_DEVICETREE */
1630
1631         return 0;
1632 }
1633
1634 /*
1635  * Update a property in a node.  Note that we don't actually
1636  * remove it, since we have given out who-knows-how-many pointers
1637  * to the data using get-property.  Instead we just move the property
1638  * to the "dead properties" list, and add the new property to the
1639  * property list
1640  */
1641 int prom_update_property(struct device_node *np,
1642                          struct property *newprop,
1643                          struct property *oldprop)
1644 {
1645         struct property **next;
1646         int found = 0;
1647
1648         write_lock(&devtree_lock);
1649         next = &np->properties;
1650         while (*next) {
1651                 if (*next == oldprop) {
1652                         /* found the node */
1653                         newprop->next = oldprop->next;
1654                         *next = newprop;
1655                         oldprop->next = np->deadprops;
1656                         np->deadprops = oldprop;
1657                         found = 1;
1658                         break;
1659                 }
1660                 next = &(*next)->next;
1661         }
1662         write_unlock(&devtree_lock);
1663
1664         if (!found)
1665                 return -ENODEV;
1666
1667 #ifdef CONFIG_PROC_DEVICETREE
1668         /* try to add to proc as well if it was initialized */
1669         if (np->pde)
1670                 proc_device_tree_update_prop(np->pde, newprop, oldprop);
1671 #endif /* CONFIG_PROC_DEVICETREE */
1672
1673         return 0;
1674 }
1675
1676
1677 /* Find the device node for a given logical cpu number, also returns the cpu
1678  * local thread number (index in ibm,interrupt-server#s) if relevant and
1679  * asked for (non NULL)
1680  */
1681 struct device_node *of_get_cpu_node(int cpu, unsigned int *thread)
1682 {
1683         int hardid;
1684         struct device_node *np;
1685
1686         hardid = get_hard_smp_processor_id(cpu);
1687
1688         for_each_node_by_type(np, "cpu") {
1689                 const u32 *intserv;
1690                 unsigned int plen, t;
1691
1692                 /* Check for ibm,ppc-interrupt-server#s. If it doesn't exist
1693                  * fallback to "reg" property and assume no threads
1694                  */
1695                 intserv = get_property(np, "ibm,ppc-interrupt-server#s",
1696                                 &plen);
1697                 if (intserv == NULL) {
1698                         const u32 *reg = get_property(np, "reg", NULL);
1699                         if (reg == NULL)
1700                                 continue;
1701                         if (*reg == hardid) {
1702                                 if (thread)
1703                                         *thread = 0;
1704                                 return np;
1705                         }
1706                 } else {
1707                         plen /= sizeof(u32);
1708                         for (t = 0; t < plen; t++) {
1709                                 if (hardid == intserv[t]) {
1710                                         if (thread)
1711                                                 *thread = t;
1712                                         return np;
1713                                 }
1714                         }
1715                 }
1716         }
1717         return NULL;
1718 }
1719 EXPORT_SYMBOL(of_get_cpu_node);
1720
1721 #ifdef DEBUG
1722 static struct debugfs_blob_wrapper flat_dt_blob;
1723
1724 static int __init export_flat_device_tree(void)
1725 {
1726         struct dentry *d;
1727
1728         d = debugfs_create_dir("powerpc", NULL);
1729         if (!d)
1730                 return 1;
1731
1732         flat_dt_blob.data = initial_boot_params;
1733         flat_dt_blob.size = initial_boot_params->totalsize;
1734
1735         d = debugfs_create_blob("flat-device-tree", S_IFREG | S_IRUSR,
1736                                 d, &flat_dt_blob);
1737         if (!d)
1738                 return 1;
1739
1740         return 0;
1741 }
1742 __initcall(export_flat_device_tree);
1743 #endif