xref: /openbmc/linux/arch/powerpc/kernel/prom.c (revision 3c607ce2)
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 extern struct device_node *allnodes;	/* temporary while merging */
81 
82 extern rwlock_t devtree_lock;	/* temporary while merging */
83 
84 /* export that to outside world */
85 struct device_node *of_chosen;
86 
87 static inline char *find_flat_dt_string(u32 offset)
88 {
89 	return ((char *)initial_boot_params) +
90 		initial_boot_params->off_dt_strings + offset;
91 }
92 
93 /**
94  * This function is used to scan the flattened device-tree, it is
95  * used to extract the memory informations at boot before we can
96  * unflatten the tree
97  */
98 int __init of_scan_flat_dt(int (*it)(unsigned long node,
99 				     const char *uname, int depth,
100 				     void *data),
101 			   void *data)
102 {
103 	unsigned long p = ((unsigned long)initial_boot_params) +
104 		initial_boot_params->off_dt_struct;
105 	int rc = 0;
106 	int depth = -1;
107 
108 	do {
109 		u32 tag = *((u32 *)p);
110 		char *pathp;
111 
112 		p += 4;
113 		if (tag == OF_DT_END_NODE) {
114 			depth --;
115 			continue;
116 		}
117 		if (tag == OF_DT_NOP)
118 			continue;
119 		if (tag == OF_DT_END)
120 			break;
121 		if (tag == OF_DT_PROP) {
122 			u32 sz = *((u32 *)p);
123 			p += 8;
124 			if (initial_boot_params->version < 0x10)
125 				p = _ALIGN(p, sz >= 8 ? 8 : 4);
126 			p += sz;
127 			p = _ALIGN(p, 4);
128 			continue;
129 		}
130 		if (tag != OF_DT_BEGIN_NODE) {
131 			printk(KERN_WARNING "Invalid tag %x scanning flattened"
132 			       " device tree !\n", tag);
133 			return -EINVAL;
134 		}
135 		depth++;
136 		pathp = (char *)p;
137 		p = _ALIGN(p + strlen(pathp) + 1, 4);
138 		if ((*pathp) == '/') {
139 			char *lp, *np;
140 			for (lp = NULL, np = pathp; *np; np++)
141 				if ((*np) == '/')
142 					lp = np+1;
143 			if (lp != NULL)
144 				pathp = lp;
145 		}
146 		rc = it(p, pathp, depth, data);
147 		if (rc != 0)
148 			break;
149 	} while(1);
150 
151 	return rc;
152 }
153 
154 unsigned long __init of_get_flat_dt_root(void)
155 {
156 	unsigned long p = ((unsigned long)initial_boot_params) +
157 		initial_boot_params->off_dt_struct;
158 
159 	while(*((u32 *)p) == OF_DT_NOP)
160 		p += 4;
161 	BUG_ON (*((u32 *)p) != OF_DT_BEGIN_NODE);
162 	p += 4;
163 	return _ALIGN(p + strlen((char *)p) + 1, 4);
164 }
165 
166 /**
167  * This  function can be used within scan_flattened_dt callback to get
168  * access to properties
169  */
170 void* __init of_get_flat_dt_prop(unsigned long node, const char *name,
171 				 unsigned long *size)
172 {
173 	unsigned long p = node;
174 
175 	do {
176 		u32 tag = *((u32 *)p);
177 		u32 sz, noff;
178 		const char *nstr;
179 
180 		p += 4;
181 		if (tag == OF_DT_NOP)
182 			continue;
183 		if (tag != OF_DT_PROP)
184 			return NULL;
185 
186 		sz = *((u32 *)p);
187 		noff = *((u32 *)(p + 4));
188 		p += 8;
189 		if (initial_boot_params->version < 0x10)
190 			p = _ALIGN(p, sz >= 8 ? 8 : 4);
191 
192 		nstr = find_flat_dt_string(noff);
193 		if (nstr == NULL) {
194 			printk(KERN_WARNING "Can't find property index"
195 			       " name !\n");
196 			return NULL;
197 		}
198 		if (strcmp(name, nstr) == 0) {
199 			if (size)
200 				*size = sz;
201 			return (void *)p;
202 		}
203 		p += sz;
204 		p = _ALIGN(p, 4);
205 	} while(1);
206 }
207 
208 int __init of_flat_dt_is_compatible(unsigned long node, const char *compat)
209 {
210 	const char* cp;
211 	unsigned long cplen, l;
212 
213 	cp = of_get_flat_dt_prop(node, "compatible", &cplen);
214 	if (cp == NULL)
215 		return 0;
216 	while (cplen > 0) {
217 		if (strncasecmp(cp, compat, strlen(compat)) == 0)
218 			return 1;
219 		l = strlen(cp) + 1;
220 		cp += l;
221 		cplen -= l;
222 	}
223 
224 	return 0;
225 }
226 
227 static void *__init unflatten_dt_alloc(unsigned long *mem, unsigned long size,
228 				       unsigned long align)
229 {
230 	void *res;
231 
232 	*mem = _ALIGN(*mem, align);
233 	res = (void *)*mem;
234 	*mem += size;
235 
236 	return res;
237 }
238 
239 static unsigned long __init unflatten_dt_node(unsigned long mem,
240 					      unsigned long *p,
241 					      struct device_node *dad,
242 					      struct device_node ***allnextpp,
243 					      unsigned long fpsize)
244 {
245 	struct device_node *np;
246 	struct property *pp, **prev_pp = NULL;
247 	char *pathp;
248 	u32 tag;
249 	unsigned int l, allocl;
250 	int has_name = 0;
251 	int new_format = 0;
252 
253 	tag = *((u32 *)(*p));
254 	if (tag != OF_DT_BEGIN_NODE) {
255 		printk("Weird tag at start of node: %x\n", tag);
256 		return mem;
257 	}
258 	*p += 4;
259 	pathp = (char *)*p;
260 	l = allocl = strlen(pathp) + 1;
261 	*p = _ALIGN(*p + l, 4);
262 
263 	/* version 0x10 has a more compact unit name here instead of the full
264 	 * path. we accumulate the full path size using "fpsize", we'll rebuild
265 	 * it later. We detect this because the first character of the name is
266 	 * not '/'.
267 	 */
268 	if ((*pathp) != '/') {
269 		new_format = 1;
270 		if (fpsize == 0) {
271 			/* root node: special case. fpsize accounts for path
272 			 * plus terminating zero. root node only has '/', so
273 			 * fpsize should be 2, but we want to avoid the first
274 			 * level nodes to have two '/' so we use fpsize 1 here
275 			 */
276 			fpsize = 1;
277 			allocl = 2;
278 		} else {
279 			/* account for '/' and path size minus terminal 0
280 			 * already in 'l'
281 			 */
282 			fpsize += l;
283 			allocl = fpsize;
284 		}
285 	}
286 
287 
288 	np = unflatten_dt_alloc(&mem, sizeof(struct device_node) + allocl,
289 				__alignof__(struct device_node));
290 	if (allnextpp) {
291 		memset(np, 0, sizeof(*np));
292 		np->full_name = ((char*)np) + sizeof(struct device_node);
293 		if (new_format) {
294 			char *p = np->full_name;
295 			/* rebuild full path for new format */
296 			if (dad && dad->parent) {
297 				strcpy(p, dad->full_name);
298 #ifdef DEBUG
299 				if ((strlen(p) + l + 1) != allocl) {
300 					DBG("%s: p: %d, l: %d, a: %d\n",
301 					    pathp, (int)strlen(p), l, allocl);
302 				}
303 #endif
304 				p += strlen(p);
305 			}
306 			*(p++) = '/';
307 			memcpy(p, pathp, l);
308 		} else
309 			memcpy(np->full_name, pathp, l);
310 		prev_pp = &np->properties;
311 		**allnextpp = np;
312 		*allnextpp = &np->allnext;
313 		if (dad != NULL) {
314 			np->parent = dad;
315 			/* we temporarily use the next field as `last_child'*/
316 			if (dad->next == 0)
317 				dad->child = np;
318 			else
319 				dad->next->sibling = np;
320 			dad->next = np;
321 		}
322 		kref_init(&np->kref);
323 	}
324 	while(1) {
325 		u32 sz, noff;
326 		char *pname;
327 
328 		tag = *((u32 *)(*p));
329 		if (tag == OF_DT_NOP) {
330 			*p += 4;
331 			continue;
332 		}
333 		if (tag != OF_DT_PROP)
334 			break;
335 		*p += 4;
336 		sz = *((u32 *)(*p));
337 		noff = *((u32 *)((*p) + 4));
338 		*p += 8;
339 		if (initial_boot_params->version < 0x10)
340 			*p = _ALIGN(*p, sz >= 8 ? 8 : 4);
341 
342 		pname = find_flat_dt_string(noff);
343 		if (pname == NULL) {
344 			printk("Can't find property name in list !\n");
345 			break;
346 		}
347 		if (strcmp(pname, "name") == 0)
348 			has_name = 1;
349 		l = strlen(pname) + 1;
350 		pp = unflatten_dt_alloc(&mem, sizeof(struct property),
351 					__alignof__(struct property));
352 		if (allnextpp) {
353 			if (strcmp(pname, "linux,phandle") == 0) {
354 				np->node = *((u32 *)*p);
355 				if (np->linux_phandle == 0)
356 					np->linux_phandle = np->node;
357 			}
358 			if (strcmp(pname, "ibm,phandle") == 0)
359 				np->linux_phandle = *((u32 *)*p);
360 			pp->name = pname;
361 			pp->length = sz;
362 			pp->value = (void *)*p;
363 			*prev_pp = pp;
364 			prev_pp = &pp->next;
365 		}
366 		*p = _ALIGN((*p) + sz, 4);
367 	}
368 	/* with version 0x10 we may not have the name property, recreate
369 	 * it here from the unit name if absent
370 	 */
371 	if (!has_name) {
372 		char *p = pathp, *ps = pathp, *pa = NULL;
373 		int sz;
374 
375 		while (*p) {
376 			if ((*p) == '@')
377 				pa = p;
378 			if ((*p) == '/')
379 				ps = p + 1;
380 			p++;
381 		}
382 		if (pa < ps)
383 			pa = p;
384 		sz = (pa - ps) + 1;
385 		pp = unflatten_dt_alloc(&mem, sizeof(struct property) + sz,
386 					__alignof__(struct property));
387 		if (allnextpp) {
388 			pp->name = "name";
389 			pp->length = sz;
390 			pp->value = pp + 1;
391 			*prev_pp = pp;
392 			prev_pp = &pp->next;
393 			memcpy(pp->value, ps, sz - 1);
394 			((char *)pp->value)[sz - 1] = 0;
395 			DBG("fixed up name for %s -> %s\n", pathp,
396 				(char *)pp->value);
397 		}
398 	}
399 	if (allnextpp) {
400 		*prev_pp = NULL;
401 		np->name = of_get_property(np, "name", NULL);
402 		np->type = of_get_property(np, "device_type", NULL);
403 
404 		if (!np->name)
405 			np->name = "<NULL>";
406 		if (!np->type)
407 			np->type = "<NULL>";
408 	}
409 	while (tag == OF_DT_BEGIN_NODE) {
410 		mem = unflatten_dt_node(mem, p, np, allnextpp, fpsize);
411 		tag = *((u32 *)(*p));
412 	}
413 	if (tag != OF_DT_END_NODE) {
414 		printk("Weird tag at end of node: %x\n", tag);
415 		return mem;
416 	}
417 	*p += 4;
418 	return mem;
419 }
420 
421 static int __init early_parse_mem(char *p)
422 {
423 	if (!p)
424 		return 1;
425 
426 	memory_limit = PAGE_ALIGN(memparse(p, &p));
427 	DBG("memory limit = 0x%lx\n", memory_limit);
428 
429 	return 0;
430 }
431 early_param("mem", early_parse_mem);
432 
433 /**
434  * move_device_tree - move tree to an unused area, if needed.
435  *
436  * The device tree may be allocated beyond our memory limit, or inside the
437  * crash kernel region for kdump. If so, move it out of the way.
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 #ifdef CONFIG_BLK_DEV_INITRD
719 static void __init early_init_dt_check_for_initrd(unsigned long node)
720 {
721 	unsigned long l;
722 	u32 *prop;
723 
724 	DBG("Looking for initrd properties... ");
725 
726 	prop = of_get_flat_dt_prop(node, "linux,initrd-start", &l);
727 	if (prop) {
728 		initrd_start = (unsigned long)__va(of_read_ulong(prop, l/4));
729 
730 		prop = of_get_flat_dt_prop(node, "linux,initrd-end", &l);
731 		if (prop) {
732 			initrd_end = (unsigned long)
733 					__va(of_read_ulong(prop, l/4));
734 			initrd_below_start_ok = 1;
735 		} else {
736 			initrd_start = 0;
737 		}
738 	}
739 
740 	DBG("initrd_start=0x%lx  initrd_end=0x%lx\n", initrd_start, initrd_end);
741 }
742 #else
743 static inline void early_init_dt_check_for_initrd(unsigned long node)
744 {
745 }
746 #endif /* CONFIG_BLK_DEV_INITRD */
747 
748 static int __init early_init_dt_scan_chosen(unsigned long node,
749 					    const char *uname, int depth, void *data)
750 {
751 	unsigned long *lprop;
752 	unsigned long l;
753 	char *p;
754 
755 	DBG("search \"chosen\", depth: %d, uname: %s\n", depth, uname);
756 
757 	if (depth != 1 ||
758 	    (strcmp(uname, "chosen") != 0 && strcmp(uname, "chosen@0") != 0))
759 		return 0;
760 
761 #ifdef CONFIG_PPC64
762 	/* check if iommu is forced on or off */
763 	if (of_get_flat_dt_prop(node, "linux,iommu-off", NULL) != NULL)
764 		iommu_is_off = 1;
765 	if (of_get_flat_dt_prop(node, "linux,iommu-force-on", NULL) != NULL)
766 		iommu_force_on = 1;
767 #endif
768 
769 	/* mem=x on the command line is the preferred mechanism */
770  	lprop = of_get_flat_dt_prop(node, "linux,memory-limit", NULL);
771  	if (lprop)
772  		memory_limit = *lprop;
773 
774 #ifdef CONFIG_PPC64
775  	lprop = of_get_flat_dt_prop(node, "linux,tce-alloc-start", NULL);
776  	if (lprop)
777  		tce_alloc_start = *lprop;
778  	lprop = of_get_flat_dt_prop(node, "linux,tce-alloc-end", NULL);
779  	if (lprop)
780  		tce_alloc_end = *lprop;
781 #endif
782 
783 #ifdef CONFIG_KEXEC
784 	lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-base", NULL);
785 	if (lprop)
786 		crashk_res.start = *lprop;
787 
788 	lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-size", NULL);
789 	if (lprop)
790 		crashk_res.end = crashk_res.start + *lprop - 1;
791 #endif
792 
793 	early_init_dt_check_for_initrd(node);
794 
795 	/* Retreive command line */
796  	p = of_get_flat_dt_prop(node, "bootargs", &l);
797 	if (p != NULL && l > 0)
798 		strlcpy(cmd_line, p, min((int)l, COMMAND_LINE_SIZE));
799 
800 #ifdef CONFIG_CMDLINE
801 	if (p == NULL || l == 0 || (l == 1 && (*p) == 0))
802 		strlcpy(cmd_line, CONFIG_CMDLINE, COMMAND_LINE_SIZE);
803 #endif /* CONFIG_CMDLINE */
804 
805 	DBG("Command line is: %s\n", cmd_line);
806 
807 	/* break now */
808 	return 1;
809 }
810 
811 static int __init early_init_dt_scan_root(unsigned long node,
812 					  const char *uname, int depth, void *data)
813 {
814 	u32 *prop;
815 
816 	if (depth != 0)
817 		return 0;
818 
819 	prop = of_get_flat_dt_prop(node, "#size-cells", NULL);
820 	dt_root_size_cells = (prop == NULL) ? 1 : *prop;
821 	DBG("dt_root_size_cells = %x\n", dt_root_size_cells);
822 
823 	prop = of_get_flat_dt_prop(node, "#address-cells", NULL);
824 	dt_root_addr_cells = (prop == NULL) ? 2 : *prop;
825 	DBG("dt_root_addr_cells = %x\n", dt_root_addr_cells);
826 
827 	/* break now */
828 	return 1;
829 }
830 
831 static unsigned long __init dt_mem_next_cell(int s, cell_t **cellp)
832 {
833 	cell_t *p = *cellp;
834 
835 	*cellp = p + s;
836 	return of_read_ulong(p, s);
837 }
838 
839 #ifdef CONFIG_PPC_PSERIES
840 /*
841  * Interpret the ibm,dynamic-memory property in the
842  * /ibm,dynamic-reconfiguration-memory node.
843  * This contains a list of memory blocks along with NUMA affinity
844  * information.
845  */
846 static int __init early_init_dt_scan_drconf_memory(unsigned long node)
847 {
848 	cell_t *dm, *ls;
849 	unsigned long l, n;
850 	unsigned long base, size, lmb_size, flags;
851 
852 	ls = (cell_t *)of_get_flat_dt_prop(node, "ibm,lmb-size", &l);
853 	if (ls == NULL || l < dt_root_size_cells * sizeof(cell_t))
854 		return 0;
855 	lmb_size = dt_mem_next_cell(dt_root_size_cells, &ls);
856 
857 	dm = (cell_t *)of_get_flat_dt_prop(node, "ibm,dynamic-memory", &l);
858 	if (dm == NULL || l < sizeof(cell_t))
859 		return 0;
860 
861 	n = *dm++;	/* number of entries */
862 	if (l < (n * (dt_root_addr_cells + 4) + 1) * sizeof(cell_t))
863 		return 0;
864 
865 	for (; n != 0; --n) {
866 		base = dt_mem_next_cell(dt_root_addr_cells, &dm);
867 		flags = dm[3];
868 		/* skip DRC index, pad, assoc. list index, flags */
869 		dm += 4;
870 		/* skip this block if the reserved bit is set in flags (0x80)
871 		   or if the block is not assigned to this partition (0x8) */
872 		if ((flags & 0x80) || !(flags & 0x8))
873 			continue;
874 		size = lmb_size;
875 		if (iommu_is_off) {
876 			if (base >= 0x80000000ul)
877 				continue;
878 			if ((base + size) > 0x80000000ul)
879 				size = 0x80000000ul - base;
880 		}
881 		lmb_add(base, size);
882 	}
883 	lmb_dump_all();
884 	return 0;
885 }
886 #else
887 #define early_init_dt_scan_drconf_memory(node)	0
888 #endif /* CONFIG_PPC_PSERIES */
889 
890 static int __init early_init_dt_scan_memory(unsigned long node,
891 					    const char *uname, int depth, void *data)
892 {
893 	char *type = of_get_flat_dt_prop(node, "device_type", NULL);
894 	cell_t *reg, *endp;
895 	unsigned long l;
896 
897 	/* Look for the ibm,dynamic-reconfiguration-memory node */
898 	if (depth == 1 &&
899 	    strcmp(uname, "ibm,dynamic-reconfiguration-memory") == 0)
900 		return early_init_dt_scan_drconf_memory(node);
901 
902 	/* We are scanning "memory" nodes only */
903 	if (type == NULL) {
904 		/*
905 		 * The longtrail doesn't have a device_type on the
906 		 * /memory node, so look for the node called /memory@0.
907 		 */
908 		if (depth != 1 || strcmp(uname, "memory@0") != 0)
909 			return 0;
910 	} else if (strcmp(type, "memory") != 0)
911 		return 0;
912 
913 	reg = (cell_t *)of_get_flat_dt_prop(node, "linux,usable-memory", &l);
914 	if (reg == NULL)
915 		reg = (cell_t *)of_get_flat_dt_prop(node, "reg", &l);
916 	if (reg == NULL)
917 		return 0;
918 
919 	endp = reg + (l / sizeof(cell_t));
920 
921 	DBG("memory scan node %s, reg size %ld, data: %x %x %x %x,\n",
922 	    uname, l, reg[0], reg[1], reg[2], reg[3]);
923 
924 	while ((endp - reg) >= (dt_root_addr_cells + dt_root_size_cells)) {
925 		unsigned long base, size;
926 
927 		base = dt_mem_next_cell(dt_root_addr_cells, &reg);
928 		size = dt_mem_next_cell(dt_root_size_cells, &reg);
929 
930 		if (size == 0)
931 			continue;
932 		DBG(" - %lx ,  %lx\n", base, size);
933 #ifdef CONFIG_PPC64
934 		if (iommu_is_off) {
935 			if (base >= 0x80000000ul)
936 				continue;
937 			if ((base + size) > 0x80000000ul)
938 				size = 0x80000000ul - base;
939 		}
940 #endif
941 		lmb_add(base, size);
942 	}
943 	return 0;
944 }
945 
946 static void __init early_reserve_mem(void)
947 {
948 	u64 base, size;
949 	u64 *reserve_map;
950 	unsigned long self_base;
951 	unsigned long self_size;
952 
953 	reserve_map = (u64 *)(((unsigned long)initial_boot_params) +
954 					initial_boot_params->off_mem_rsvmap);
955 
956 	/* before we do anything, lets reserve the dt blob */
957 	self_base = __pa((unsigned long)initial_boot_params);
958 	self_size = initial_boot_params->totalsize;
959 	lmb_reserve(self_base, self_size);
960 
961 #ifdef CONFIG_BLK_DEV_INITRD
962 	/* then reserve the initrd, if any */
963 	if (initrd_start && (initrd_end > initrd_start))
964 		lmb_reserve(__pa(initrd_start), initrd_end - initrd_start);
965 #endif /* CONFIG_BLK_DEV_INITRD */
966 
967 #ifdef CONFIG_PPC32
968 	/*
969 	 * Handle the case where we might be booting from an old kexec
970 	 * image that setup the mem_rsvmap as pairs of 32-bit values
971 	 */
972 	if (*reserve_map > 0xffffffffull) {
973 		u32 base_32, size_32;
974 		u32 *reserve_map_32 = (u32 *)reserve_map;
975 
976 		while (1) {
977 			base_32 = *(reserve_map_32++);
978 			size_32 = *(reserve_map_32++);
979 			if (size_32 == 0)
980 				break;
981 			/* skip if the reservation is for the blob */
982 			if (base_32 == self_base && size_32 == self_size)
983 				continue;
984 			DBG("reserving: %x -> %x\n", base_32, size_32);
985 			lmb_reserve(base_32, size_32);
986 		}
987 		return;
988 	}
989 #endif
990 	while (1) {
991 		base = *(reserve_map++);
992 		size = *(reserve_map++);
993 		if (size == 0)
994 			break;
995 		DBG("reserving: %llx -> %llx\n", base, size);
996 		lmb_reserve(base, size);
997 	}
998 
999 #if 0
1000 	DBG("memory reserved, lmbs :\n");
1001       	lmb_dump_all();
1002 #endif
1003 }
1004 
1005 void __init early_init_devtree(void *params)
1006 {
1007 	DBG(" -> early_init_devtree(%p)\n", params);
1008 
1009 	/* Setup flat device-tree pointer */
1010 	initial_boot_params = params;
1011 
1012 #ifdef CONFIG_PPC_RTAS
1013 	/* Some machines might need RTAS info for debugging, grab it now. */
1014 	of_scan_flat_dt(early_init_dt_scan_rtas, NULL);
1015 #endif
1016 
1017 	/* Retrieve various informations from the /chosen node of the
1018 	 * device-tree, including the platform type, initrd location and
1019 	 * size, TCE reserve, and more ...
1020 	 */
1021 	of_scan_flat_dt(early_init_dt_scan_chosen, NULL);
1022 
1023 	/* Scan memory nodes and rebuild LMBs */
1024 	lmb_init();
1025 	of_scan_flat_dt(early_init_dt_scan_root, NULL);
1026 	of_scan_flat_dt(early_init_dt_scan_memory, NULL);
1027 
1028 	/* Save command line for /proc/cmdline and then parse parameters */
1029 	strlcpy(boot_command_line, cmd_line, COMMAND_LINE_SIZE);
1030 	parse_early_param();
1031 
1032 	/* Reserve LMB regions used by kernel, initrd, dt, etc... */
1033 	lmb_reserve(PHYSICAL_START, __pa(klimit) - PHYSICAL_START);
1034 	reserve_kdump_trampoline();
1035 	reserve_crashkernel();
1036 	early_reserve_mem();
1037 
1038 	lmb_enforce_memory_limit(memory_limit);
1039 	lmb_analyze();
1040 
1041 	DBG("Phys. mem: %lx\n", lmb_phys_mem_size());
1042 
1043 	/* We may need to relocate the flat tree, do it now.
1044 	 * FIXME .. and the initrd too? */
1045 	move_device_tree();
1046 
1047 	DBG("Scanning CPUs ...\n");
1048 
1049 	/* Retreive CPU related informations from the flat tree
1050 	 * (altivec support, boot CPU ID, ...)
1051 	 */
1052 	of_scan_flat_dt(early_init_dt_scan_cpus, NULL);
1053 
1054 	DBG(" <- early_init_devtree()\n");
1055 }
1056 
1057 
1058 /**
1059  * Indicates whether the root node has a given value in its
1060  * compatible property.
1061  */
1062 int machine_is_compatible(const char *compat)
1063 {
1064 	struct device_node *root;
1065 	int rc = 0;
1066 
1067 	root = of_find_node_by_path("/");
1068 	if (root) {
1069 		rc = of_device_is_compatible(root, compat);
1070 		of_node_put(root);
1071 	}
1072 	return rc;
1073 }
1074 EXPORT_SYMBOL(machine_is_compatible);
1075 
1076 /*******
1077  *
1078  * New implementation of the OF "find" APIs, return a refcounted
1079  * object, call of_node_put() when done.  The device tree and list
1080  * are protected by a rw_lock.
1081  *
1082  * Note that property management will need some locking as well,
1083  * this isn't dealt with yet.
1084  *
1085  *******/
1086 
1087 /**
1088  *	of_find_node_by_phandle - Find a node given a phandle
1089  *	@handle:	phandle of the node to find
1090  *
1091  *	Returns a node pointer with refcount incremented, use
1092  *	of_node_put() on it when done.
1093  */
1094 struct device_node *of_find_node_by_phandle(phandle handle)
1095 {
1096 	struct device_node *np;
1097 
1098 	read_lock(&devtree_lock);
1099 	for (np = allnodes; np != 0; np = np->allnext)
1100 		if (np->linux_phandle == handle)
1101 			break;
1102 	of_node_get(np);
1103 	read_unlock(&devtree_lock);
1104 	return np;
1105 }
1106 EXPORT_SYMBOL(of_find_node_by_phandle);
1107 
1108 /**
1109  *	of_find_all_nodes - Get next node in global list
1110  *	@prev:	Previous node or NULL to start iteration
1111  *		of_node_put() will be called on it
1112  *
1113  *	Returns a node pointer with refcount incremented, use
1114  *	of_node_put() on it when done.
1115  */
1116 struct device_node *of_find_all_nodes(struct device_node *prev)
1117 {
1118 	struct device_node *np;
1119 
1120 	read_lock(&devtree_lock);
1121 	np = prev ? prev->allnext : allnodes;
1122 	for (; np != 0; np = np->allnext)
1123 		if (of_node_get(np))
1124 			break;
1125 	of_node_put(prev);
1126 	read_unlock(&devtree_lock);
1127 	return np;
1128 }
1129 EXPORT_SYMBOL(of_find_all_nodes);
1130 
1131 /**
1132  *	of_node_get - Increment refcount of a node
1133  *	@node:	Node to inc refcount, NULL is supported to
1134  *		simplify writing of callers
1135  *
1136  *	Returns node.
1137  */
1138 struct device_node *of_node_get(struct device_node *node)
1139 {
1140 	if (node)
1141 		kref_get(&node->kref);
1142 	return node;
1143 }
1144 EXPORT_SYMBOL(of_node_get);
1145 
1146 static inline struct device_node * kref_to_device_node(struct kref *kref)
1147 {
1148 	return container_of(kref, struct device_node, kref);
1149 }
1150 
1151 /**
1152  *	of_node_release - release a dynamically allocated node
1153  *	@kref:  kref element of the node to be released
1154  *
1155  *	In of_node_put() this function is passed to kref_put()
1156  *	as the destructor.
1157  */
1158 static void of_node_release(struct kref *kref)
1159 {
1160 	struct device_node *node = kref_to_device_node(kref);
1161 	struct property *prop = node->properties;
1162 
1163 	/* We should never be releasing nodes that haven't been detached. */
1164 	if (!of_node_check_flag(node, OF_DETACHED)) {
1165 		printk("WARNING: Bad of_node_put() on %s\n", node->full_name);
1166 		dump_stack();
1167 		kref_init(&node->kref);
1168 		return;
1169 	}
1170 
1171 	if (!of_node_check_flag(node, OF_DYNAMIC))
1172 		return;
1173 
1174 	while (prop) {
1175 		struct property *next = prop->next;
1176 		kfree(prop->name);
1177 		kfree(prop->value);
1178 		kfree(prop);
1179 		prop = next;
1180 
1181 		if (!prop) {
1182 			prop = node->deadprops;
1183 			node->deadprops = NULL;
1184 		}
1185 	}
1186 	kfree(node->full_name);
1187 	kfree(node->data);
1188 	kfree(node);
1189 }
1190 
1191 /**
1192  *	of_node_put - Decrement refcount of a node
1193  *	@node:	Node to dec refcount, NULL is supported to
1194  *		simplify writing of callers
1195  *
1196  */
1197 void of_node_put(struct device_node *node)
1198 {
1199 	if (node)
1200 		kref_put(&node->kref, of_node_release);
1201 }
1202 EXPORT_SYMBOL(of_node_put);
1203 
1204 /*
1205  * Plug a device node into the tree and global list.
1206  */
1207 void of_attach_node(struct device_node *np)
1208 {
1209 	write_lock(&devtree_lock);
1210 	np->sibling = np->parent->child;
1211 	np->allnext = allnodes;
1212 	np->parent->child = np;
1213 	allnodes = np;
1214 	write_unlock(&devtree_lock);
1215 }
1216 
1217 /*
1218  * "Unplug" a node from the device tree.  The caller must hold
1219  * a reference to the node.  The memory associated with the node
1220  * is not freed until its refcount goes to zero.
1221  */
1222 void of_detach_node(struct device_node *np)
1223 {
1224 	struct device_node *parent;
1225 
1226 	write_lock(&devtree_lock);
1227 
1228 	parent = np->parent;
1229 	if (!parent)
1230 		goto out_unlock;
1231 
1232 	if (allnodes == np)
1233 		allnodes = np->allnext;
1234 	else {
1235 		struct device_node *prev;
1236 		for (prev = allnodes;
1237 		     prev->allnext != np;
1238 		     prev = prev->allnext)
1239 			;
1240 		prev->allnext = np->allnext;
1241 	}
1242 
1243 	if (parent->child == np)
1244 		parent->child = np->sibling;
1245 	else {
1246 		struct device_node *prevsib;
1247 		for (prevsib = np->parent->child;
1248 		     prevsib->sibling != np;
1249 		     prevsib = prevsib->sibling)
1250 			;
1251 		prevsib->sibling = np->sibling;
1252 	}
1253 
1254 	of_node_set_flag(np, OF_DETACHED);
1255 
1256 out_unlock:
1257 	write_unlock(&devtree_lock);
1258 }
1259 
1260 #ifdef CONFIG_PPC_PSERIES
1261 /*
1262  * Fix up the uninitialized fields in a new device node:
1263  * name, type and pci-specific fields
1264  */
1265 
1266 static int of_finish_dynamic_node(struct device_node *node)
1267 {
1268 	struct device_node *parent = of_get_parent(node);
1269 	int err = 0;
1270 	const phandle *ibm_phandle;
1271 
1272 	node->name = of_get_property(node, "name", NULL);
1273 	node->type = of_get_property(node, "device_type", NULL);
1274 
1275 	if (!node->name)
1276 		node->name = "<NULL>";
1277 	if (!node->type)
1278 		node->type = "<NULL>";
1279 
1280 	if (!parent) {
1281 		err = -ENODEV;
1282 		goto out;
1283 	}
1284 
1285 	/* We don't support that function on PowerMac, at least
1286 	 * not yet
1287 	 */
1288 	if (machine_is(powermac))
1289 		return -ENODEV;
1290 
1291 	/* fix up new node's linux_phandle field */
1292 	if ((ibm_phandle = of_get_property(node, "ibm,phandle", NULL)))
1293 		node->linux_phandle = *ibm_phandle;
1294 
1295 out:
1296 	of_node_put(parent);
1297 	return err;
1298 }
1299 
1300 static int prom_reconfig_notifier(struct notifier_block *nb,
1301 				  unsigned long action, void *node)
1302 {
1303 	int err;
1304 
1305 	switch (action) {
1306 	case PSERIES_RECONFIG_ADD:
1307 		err = of_finish_dynamic_node(node);
1308 		if (err < 0) {
1309 			printk(KERN_ERR "finish_node returned %d\n", err);
1310 			err = NOTIFY_BAD;
1311 		}
1312 		break;
1313 	default:
1314 		err = NOTIFY_DONE;
1315 		break;
1316 	}
1317 	return err;
1318 }
1319 
1320 static struct notifier_block prom_reconfig_nb = {
1321 	.notifier_call = prom_reconfig_notifier,
1322 	.priority = 10, /* This one needs to run first */
1323 };
1324 
1325 static int __init prom_reconfig_setup(void)
1326 {
1327 	return pSeries_reconfig_notifier_register(&prom_reconfig_nb);
1328 }
1329 __initcall(prom_reconfig_setup);
1330 #endif
1331 
1332 /*
1333  * Add a property to a node
1334  */
1335 int prom_add_property(struct device_node* np, struct property* prop)
1336 {
1337 	struct property **next;
1338 
1339 	prop->next = NULL;
1340 	write_lock(&devtree_lock);
1341 	next = &np->properties;
1342 	while (*next) {
1343 		if (strcmp(prop->name, (*next)->name) == 0) {
1344 			/* duplicate ! don't insert it */
1345 			write_unlock(&devtree_lock);
1346 			return -1;
1347 		}
1348 		next = &(*next)->next;
1349 	}
1350 	*next = prop;
1351 	write_unlock(&devtree_lock);
1352 
1353 #ifdef CONFIG_PROC_DEVICETREE
1354 	/* try to add to proc as well if it was initialized */
1355 	if (np->pde)
1356 		proc_device_tree_add_prop(np->pde, prop);
1357 #endif /* CONFIG_PROC_DEVICETREE */
1358 
1359 	return 0;
1360 }
1361 
1362 /*
1363  * Remove a property from a node.  Note that we don't actually
1364  * remove it, since we have given out who-knows-how-many pointers
1365  * to the data using get-property.  Instead we just move the property
1366  * to the "dead properties" list, so it won't be found any more.
1367  */
1368 int prom_remove_property(struct device_node *np, struct property *prop)
1369 {
1370 	struct property **next;
1371 	int found = 0;
1372 
1373 	write_lock(&devtree_lock);
1374 	next = &np->properties;
1375 	while (*next) {
1376 		if (*next == prop) {
1377 			/* found the node */
1378 			*next = prop->next;
1379 			prop->next = np->deadprops;
1380 			np->deadprops = prop;
1381 			found = 1;
1382 			break;
1383 		}
1384 		next = &(*next)->next;
1385 	}
1386 	write_unlock(&devtree_lock);
1387 
1388 	if (!found)
1389 		return -ENODEV;
1390 
1391 #ifdef CONFIG_PROC_DEVICETREE
1392 	/* try to remove the proc node as well */
1393 	if (np->pde)
1394 		proc_device_tree_remove_prop(np->pde, prop);
1395 #endif /* CONFIG_PROC_DEVICETREE */
1396 
1397 	return 0;
1398 }
1399 
1400 /*
1401  * Update a property in a node.  Note that we don't actually
1402  * remove it, since we have given out who-knows-how-many pointers
1403  * to the data using get-property.  Instead we just move the property
1404  * to the "dead properties" list, and add the new property to the
1405  * property list
1406  */
1407 int prom_update_property(struct device_node *np,
1408 			 struct property *newprop,
1409 			 struct property *oldprop)
1410 {
1411 	struct property **next;
1412 	int found = 0;
1413 
1414 	write_lock(&devtree_lock);
1415 	next = &np->properties;
1416 	while (*next) {
1417 		if (*next == oldprop) {
1418 			/* found the node */
1419 			newprop->next = oldprop->next;
1420 			*next = newprop;
1421 			oldprop->next = np->deadprops;
1422 			np->deadprops = oldprop;
1423 			found = 1;
1424 			break;
1425 		}
1426 		next = &(*next)->next;
1427 	}
1428 	write_unlock(&devtree_lock);
1429 
1430 	if (!found)
1431 		return -ENODEV;
1432 
1433 #ifdef CONFIG_PROC_DEVICETREE
1434 	/* try to add to proc as well if it was initialized */
1435 	if (np->pde)
1436 		proc_device_tree_update_prop(np->pde, newprop, oldprop);
1437 #endif /* CONFIG_PROC_DEVICETREE */
1438 
1439 	return 0;
1440 }
1441 
1442 
1443 /* Find the device node for a given logical cpu number, also returns the cpu
1444  * local thread number (index in ibm,interrupt-server#s) if relevant and
1445  * asked for (non NULL)
1446  */
1447 struct device_node *of_get_cpu_node(int cpu, unsigned int *thread)
1448 {
1449 	int hardid;
1450 	struct device_node *np;
1451 
1452 	hardid = get_hard_smp_processor_id(cpu);
1453 
1454 	for_each_node_by_type(np, "cpu") {
1455 		const u32 *intserv;
1456 		unsigned int plen, t;
1457 
1458 		/* Check for ibm,ppc-interrupt-server#s. If it doesn't exist
1459 		 * fallback to "reg" property and assume no threads
1460 		 */
1461 		intserv = of_get_property(np, "ibm,ppc-interrupt-server#s",
1462 				&plen);
1463 		if (intserv == NULL) {
1464 			const u32 *reg = of_get_property(np, "reg", NULL);
1465 			if (reg == NULL)
1466 				continue;
1467 			if (*reg == hardid) {
1468 				if (thread)
1469 					*thread = 0;
1470 				return np;
1471 			}
1472 		} else {
1473 			plen /= sizeof(u32);
1474 			for (t = 0; t < plen; t++) {
1475 				if (hardid == intserv[t]) {
1476 					if (thread)
1477 						*thread = t;
1478 					return np;
1479 				}
1480 			}
1481 		}
1482 	}
1483 	return NULL;
1484 }
1485 EXPORT_SYMBOL(of_get_cpu_node);
1486 
1487 #if defined(CONFIG_DEBUG_FS) && defined(DEBUG)
1488 static struct debugfs_blob_wrapper flat_dt_blob;
1489 
1490 static int __init export_flat_device_tree(void)
1491 {
1492 	struct dentry *d;
1493 
1494 	flat_dt_blob.data = initial_boot_params;
1495 	flat_dt_blob.size = initial_boot_params->totalsize;
1496 
1497 	d = debugfs_create_blob("flat-device-tree", S_IFREG | S_IRUSR,
1498 				powerpc_debugfs_root, &flat_dt_blob);
1499 	if (!d)
1500 		return 1;
1501 
1502 	return 0;
1503 }
1504 __initcall(export_flat_device_tree);
1505 #endif
1506