blob: 6c2d8836f77dcf9b87c80db13b738449ca1bcdeb [file] [log] [blame]
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001/*
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>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100019#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>
Michael Ellermandcee3032005-12-04 18:39:48 +110031#include <linux/kexec.h>
Michael Ellerman7a4571a2006-06-23 18:16:03 +100032#include <linux/debugfs.h>
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +100033#include <linux/irq.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100034
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>
Michael Ellerman0cc47462005-12-04 18:39:37 +110042#include <asm/kdump.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100043#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>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100053#include <asm/pci-bridge.h>
Michael Ellerman2babf5c2006-05-17 18:00:46 +100054#include <asm/kexec.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100055
56#ifdef DEBUG
57#define DBG(fmt...) printk(KERN_ERR fmt)
58#else
59#define DBG(fmt...)
60#endif
61
Paul Mackerras9b6b5632005-10-06 12:06:20 +100062
Paul Mackerras9b6b5632005-10-06 12:06:20 +100063static int __initdata dt_root_addr_cells;
64static int __initdata dt_root_size_cells;
65
66#ifdef CONFIG_PPC64
Olof Johansson28897732006-04-12 21:52:33 -050067int __initdata iommu_is_off;
Paul Mackerras9b6b5632005-10-06 12:06:20 +100068int __initdata iommu_force_on;
Paul Mackerrascf00a8d2005-10-31 13:07:02 +110069unsigned long tce_alloc_start, tce_alloc_end;
Paul Mackerras9b6b5632005-10-06 12:06:20 +100070#endif
71
72typedef u32 cell_t;
73
74#if 0
75static struct boot_param_header *initial_boot_params __initdata;
76#else
77struct boot_param_header *initial_boot_params;
78#endif
79
Stephen Rothwell1ef4d422007-04-24 17:57:33 +100080extern struct device_node *allnodes; /* temporary while merging */
Paul Mackerras9b6b5632005-10-06 12:06:20 +100081
Stephen Rothwell581b6052007-04-24 16:46:53 +100082extern rwlock_t devtree_lock; /* temporary while merging */
Paul Mackerras9b6b5632005-10-06 12:06:20 +100083
84/* export that to outside world */
85struct device_node *of_chosen;
86
Paul Mackerras9b6b5632005-10-06 12:06:20 +100087static 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 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110098int __init of_scan_flat_dt(int (*it)(unsigned long node,
99 const char *uname, int depth,
100 void *data),
101 void *data)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000102{
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
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100154unsigned 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
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000166/**
167 * This function can be used within scan_flattened_dt callback to get
168 * access to properties
169 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100170void* __init of_get_flat_dt_prop(unsigned long node, const char *name,
171 unsigned long *size)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000172{
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
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100208int __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
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000227static 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
239static 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",
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100301 pathp, (int)strlen(p), l, allocl);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000302 }
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;
Stephen Rothwell1a381472007-04-03 10:58:52 +1000390 pp->value = pp + 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000391 *prev_pp = pp;
392 prev_pp = &pp->next;
393 memcpy(pp->value, ps, sz - 1);
394 ((char *)pp->value)[sz - 1] = 0;
Stephen Rothwell1a381472007-04-03 10:58:52 +1000395 DBG("fixed up name for %s -> %s\n", pathp,
396 (char *)pp->value);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000397 }
398 }
399 if (allnextpp) {
400 *prev_pp = NULL;
Stephen Rothwell0e56efc2007-04-03 10:54:01 +1000401 np->name = of_get_property(np, "name", NULL);
402 np->type = of_get_property(np, "device_type", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000403
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
Michael Ellerman2babf5c2006-05-17 18:00:46 +1000421static 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}
431early_param("mem", early_parse_mem);
432
Linas Vepstas3c607ce2007-09-07 03:47:29 +1000433/**
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.
Michael Ellerman2babf5c2006-05-17 18:00:46 +1000438 */
439static 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}
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000459
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 */
466void __init unflatten_device_tree(void)
467{
468 unsigned long start, mem, size;
469 struct device_node **allnextp = &allnodes;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000470
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));
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000483 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");
Paul Mackerrasa575b802005-10-23 17:23:21 +1000502 if (of_chosen == NULL)
503 of_chosen = of_find_node_by_path("/chosen@0");
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000504
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000505 DBG(" <- unflatten_device_tree()\n");
506}
507
Paul Mackerrasd2058192006-05-03 23:04:37 +1000508/*
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 */
521static 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 {CPU_FTR_CI_LARGE_PAGE, 0, 1, 2, 0},
Paul Mackerras339d76c2006-06-29 17:12:30 +1000535 {CPU_FTR_REAL_LE, PPC_FEATURE_TRUE_LE, 5, 0, 0},
Paul Mackerrasd2058192006-05-03 23:04:37 +1000536};
537
Paul Mackerras974a76f2006-11-10 20:38:53 +1100538static void __init scan_features(unsigned long node, unsigned char *ftrs,
539 unsigned long tablelen,
540 struct ibm_pa_feature *fp,
541 unsigned long ft_size)
Paul Mackerrasd2058192006-05-03 23:04:37 +1000542{
Paul Mackerras974a76f2006-11-10 20:38:53 +1100543 unsigned long i, len, bit;
Paul Mackerrasd2058192006-05-03 23:04:37 +1000544
545 /* find descriptor with type == 0 */
546 for (;;) {
547 if (tablelen < 3)
548 return;
Paul Mackerras974a76f2006-11-10 20:38:53 +1100549 len = 2 + ftrs[0];
Paul Mackerrasd2058192006-05-03 23:04:37 +1000550 if (tablelen < len)
551 return; /* descriptor 0 not found */
Paul Mackerras974a76f2006-11-10 20:38:53 +1100552 if (ftrs[1] == 0)
Paul Mackerrasd2058192006-05-03 23:04:37 +1000553 break;
554 tablelen -= len;
Paul Mackerras974a76f2006-11-10 20:38:53 +1100555 ftrs += len;
Paul Mackerrasd2058192006-05-03 23:04:37 +1000556 }
557
558 /* loop over bits we know about */
Paul Mackerras974a76f2006-11-10 20:38:53 +1100559 for (i = 0; i < ft_size; ++i, ++fp) {
560 if (fp->pabyte >= ftrs[0])
Paul Mackerrasd2058192006-05-03 23:04:37 +1000561 continue;
Paul Mackerras974a76f2006-11-10 20:38:53 +1100562 bit = (ftrs[2 + fp->pabyte] >> (7 - fp->pabit)) & 1;
Paul Mackerrasd2058192006-05-03 23:04:37 +1000563 if (bit ^ fp->invert) {
564 cur_cpu_spec->cpu_features |= fp->cpu_features;
565 cur_cpu_spec->cpu_user_features |= fp->cpu_user_ftrs;
566 } else {
567 cur_cpu_spec->cpu_features &= ~fp->cpu_features;
568 cur_cpu_spec->cpu_user_features &= ~fp->cpu_user_ftrs;
569 }
570 }
571}
572
Paul Mackerras974a76f2006-11-10 20:38:53 +1100573static void __init check_cpu_pa_features(unsigned long node)
574{
575 unsigned char *pa_ftrs;
576 unsigned long tablelen;
577
578 pa_ftrs = of_get_flat_dt_prop(node, "ibm,pa-features", &tablelen);
579 if (pa_ftrs == NULL)
580 return;
581
582 scan_features(node, pa_ftrs, tablelen,
583 ibm_pa_features, ARRAY_SIZE(ibm_pa_features));
584}
585
Michael Neuling584f8b72007-12-06 17:24:48 +1100586#ifdef CONFIG_PPC64
587static void __init check_cpu_slb_size(unsigned long node)
588{
589 u32 *slb_size_ptr;
590
591 slb_size_ptr = of_get_flat_dt_prop(node, "ibm,slb-size", NULL);
592 if (slb_size_ptr != NULL) {
593 mmu_slb_size = *slb_size_ptr;
594 }
595}
596#else
597#define check_cpu_slb_size(node) do { } while(0)
598#endif
599
Paul Mackerras974a76f2006-11-10 20:38:53 +1100600static struct feature_property {
601 const char *name;
602 u32 min_value;
603 unsigned long cpu_feature;
604 unsigned long cpu_user_ftr;
605} feature_properties[] __initdata = {
606#ifdef CONFIG_ALTIVEC
607 {"altivec", 0, CPU_FTR_ALTIVEC, PPC_FEATURE_HAS_ALTIVEC},
608 {"ibm,vmx", 1, CPU_FTR_ALTIVEC, PPC_FEATURE_HAS_ALTIVEC},
609#endif /* CONFIG_ALTIVEC */
610#ifdef CONFIG_PPC64
611 {"ibm,dfp", 1, 0, PPC_FEATURE_HAS_DFP},
612 {"ibm,purr", 1, CPU_FTR_PURR, 0},
613 {"ibm,spurr", 1, CPU_FTR_SPURR, 0},
614#endif /* CONFIG_PPC64 */
615};
616
617static void __init check_cpu_feature_properties(unsigned long node)
618{
619 unsigned long i;
620 struct feature_property *fp = feature_properties;
621 const u32 *prop;
622
623 for (i = 0; i < ARRAY_SIZE(feature_properties); ++i, ++fp) {
624 prop = of_get_flat_dt_prop(node, fp->name, NULL);
625 if (prop && *prop >= fp->min_value) {
626 cur_cpu_spec->cpu_features |= fp->cpu_feature;
627 cur_cpu_spec->cpu_user_features |= fp->cpu_user_ftr;
628 }
629 }
630}
631
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000632static int __init early_init_dt_scan_cpus(unsigned long node,
Anton Blanchard4df20462006-03-25 17:25:17 +1100633 const char *uname, int depth,
634 void *data)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000635{
Anton Blanchard4df20462006-03-25 17:25:17 +1100636 static int logical_cpuid = 0;
637 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
Paul Mackerras974a76f2006-11-10 20:38:53 +1100638 const u32 *prop;
639 const u32 *intserv;
Anton Blanchard4df20462006-03-25 17:25:17 +1100640 int i, nthreads;
641 unsigned long len;
642 int found = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000643
644 /* We are scanning "cpu" nodes only */
645 if (type == NULL || strcmp(type, "cpu") != 0)
646 return 0;
647
Anton Blanchard4df20462006-03-25 17:25:17 +1100648 /* Get physical cpuid */
649 intserv = of_get_flat_dt_prop(node, "ibm,ppc-interrupt-server#s", &len);
650 if (intserv) {
651 nthreads = len / sizeof(int);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000652 } else {
Anton Blanchard4df20462006-03-25 17:25:17 +1100653 intserv = of_get_flat_dt_prop(node, "reg", NULL);
654 nthreads = 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000655 }
Anton Blanchard4df20462006-03-25 17:25:17 +1100656
657 /*
658 * Now see if any of these threads match our boot cpu.
659 * NOTE: This must match the parsing done in smp_setup_cpu_maps.
660 */
661 for (i = 0; i < nthreads; i++) {
662 /*
663 * version 2 of the kexec param format adds the phys cpuid of
664 * booted proc.
665 */
666 if (initial_boot_params && initial_boot_params->version >= 2) {
667 if (intserv[i] ==
668 initial_boot_params->boot_cpuid_phys) {
669 found = 1;
670 break;
671 }
672 } else {
673 /*
674 * Check if it's the boot-cpu, set it's hw index now,
675 * unfortunately this format did not support booting
676 * off secondary threads.
677 */
678 if (of_get_flat_dt_prop(node,
679 "linux,boot-cpu", NULL) != NULL) {
680 found = 1;
681 break;
682 }
683 }
684
685#ifdef CONFIG_SMP
686 /* logical cpu id is always 0 on UP kernels */
687 logical_cpuid++;
688#endif
689 }
690
691 if (found) {
692 DBG("boot cpu: logical %d physical %d\n", logical_cpuid,
693 intserv[i]);
694 boot_cpuid = logical_cpuid;
695 set_hard_smp_processor_id(boot_cpuid, intserv[i]);
Paul Mackerras974a76f2006-11-10 20:38:53 +1100696
697 /*
698 * PAPR defines "logical" PVR values for cpus that
699 * meet various levels of the architecture:
700 * 0x0f000001 Architecture version 2.04
701 * 0x0f000002 Architecture version 2.05
702 * If the cpu-version property in the cpu node contains
703 * such a value, we call identify_cpu again with the
704 * logical PVR value in order to use the cpu feature
705 * bits appropriate for the architecture level.
706 *
707 * A POWER6 partition in "POWER6 architected" mode
708 * uses the 0x0f000002 PVR value; in POWER5+ mode
709 * it uses 0x0f000001.
710 */
711 prop = of_get_flat_dt_prop(node, "cpu-version", NULL);
712 if (prop && (*prop & 0xff000000) == 0x0f000000)
713 identify_cpu(0, *prop);
Valentine Barshakd1dfc352007-10-26 04:16:40 +1000714#if defined(CONFIG_44x) && defined(CONFIG_PPC_FPU)
715 /*
716 * Since 440GR(x)/440EP(x) processors have the same pvr,
717 * we check the node path and set bit 28 in the cur_cpu_spec
718 * pvr for EP(x) processor version. This bit is always 0 in
719 * the "real" pvr. Then we call identify_cpu again with
720 * the new logical pvr to enable FPU support.
721 */
722 if (strstr(uname, "440EP")) {
723 identify_cpu(0, cur_cpu_spec->pvr_value | 0x8);
724 }
725#endif
Anton Blanchard4df20462006-03-25 17:25:17 +1100726 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000727
Paul Mackerras974a76f2006-11-10 20:38:53 +1100728 check_cpu_feature_properties(node);
Paul Mackerrasd2058192006-05-03 23:04:37 +1000729 check_cpu_pa_features(node);
Michael Neuling584f8b72007-12-06 17:24:48 +1100730 check_cpu_slb_size(node);
Paul Mackerrasd2058192006-05-03 23:04:37 +1000731
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000732#ifdef CONFIG_PPC_PSERIES
Anton Blanchard4df20462006-03-25 17:25:17 +1100733 if (nthreads > 1)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000734 cur_cpu_spec->cpu_features |= CPU_FTR_SMT;
Anton Blanchard4df20462006-03-25 17:25:17 +1100735 else
736 cur_cpu_spec->cpu_features &= ~CPU_FTR_SMT;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000737#endif
738
739 return 0;
740}
741
Michael Ellerman40472a52007-05-10 17:06:30 +1000742#ifdef CONFIG_BLK_DEV_INITRD
743static void __init early_init_dt_check_for_initrd(unsigned long node)
744{
745 unsigned long l;
746 u32 *prop;
747
748 DBG("Looking for initrd properties... ");
749
750 prop = of_get_flat_dt_prop(node, "linux,initrd-start", &l);
751 if (prop) {
752 initrd_start = (unsigned long)__va(of_read_ulong(prop, l/4));
753
754 prop = of_get_flat_dt_prop(node, "linux,initrd-end", &l);
755 if (prop) {
756 initrd_end = (unsigned long)
757 __va(of_read_ulong(prop, l/4));
758 initrd_below_start_ok = 1;
759 } else {
760 initrd_start = 0;
761 }
762 }
763
764 DBG("initrd_start=0x%lx initrd_end=0x%lx\n", initrd_start, initrd_end);
765}
766#else
767static inline void early_init_dt_check_for_initrd(unsigned long node)
768{
769}
770#endif /* CONFIG_BLK_DEV_INITRD */
771
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000772static int __init early_init_dt_scan_chosen(unsigned long node,
773 const char *uname, int depth, void *data)
774{
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000775 unsigned long *lprop;
Kumar Gala329dda02006-02-24 10:54:52 -0600776 unsigned long l;
777 char *p;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000778
779 DBG("search \"chosen\", depth: %d, uname: %s\n", depth, uname);
780
Paul Mackerrasa575b802005-10-23 17:23:21 +1000781 if (depth != 1 ||
782 (strcmp(uname, "chosen") != 0 && strcmp(uname, "chosen@0") != 0))
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000783 return 0;
784
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000785#ifdef CONFIG_PPC64
786 /* check if iommu is forced on or off */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100787 if (of_get_flat_dt_prop(node, "linux,iommu-off", NULL) != NULL)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000788 iommu_is_off = 1;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100789 if (of_get_flat_dt_prop(node, "linux,iommu-force-on", NULL) != NULL)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000790 iommu_force_on = 1;
791#endif
792
Michael Ellerman2babf5c2006-05-17 18:00:46 +1000793 /* mem=x on the command line is the preferred mechanism */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100794 lprop = of_get_flat_dt_prop(node, "linux,memory-limit", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000795 if (lprop)
796 memory_limit = *lprop;
797
798#ifdef CONFIG_PPC64
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100799 lprop = of_get_flat_dt_prop(node, "linux,tce-alloc-start", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000800 if (lprop)
801 tce_alloc_start = *lprop;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100802 lprop = of_get_flat_dt_prop(node, "linux,tce-alloc-end", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000803 if (lprop)
804 tce_alloc_end = *lprop;
805#endif
806
Michael Ellermandcee3032005-12-04 18:39:48 +1100807#ifdef CONFIG_KEXEC
Linas Vepstas70c6cc32007-09-07 03:46:15 +1000808 lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-base", NULL);
809 if (lprop)
810 crashk_res.start = *lprop;
Michael Ellermandcee3032005-12-04 18:39:48 +1100811
Linas Vepstas70c6cc32007-09-07 03:46:15 +1000812 lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-size", NULL);
813 if (lprop)
814 crashk_res.end = crashk_res.start + *lprop - 1;
Michael Ellermandcee3032005-12-04 18:39:48 +1100815#endif
816
Michael Ellerman40472a52007-05-10 17:06:30 +1000817 early_init_dt_check_for_initrd(node);
David Gibson30437b32007-02-28 14:12:29 +1100818
Kumar Gala329dda02006-02-24 10:54:52 -0600819 /* Retreive command line */
820 p = of_get_flat_dt_prop(node, "bootargs", &l);
821 if (p != NULL && l > 0)
822 strlcpy(cmd_line, p, min((int)l, COMMAND_LINE_SIZE));
823
824#ifdef CONFIG_CMDLINE
Geoff Levandc1ce4642006-10-05 11:35:16 -0700825 if (p == NULL || l == 0 || (l == 1 && (*p) == 0))
Kumar Gala329dda02006-02-24 10:54:52 -0600826 strlcpy(cmd_line, CONFIG_CMDLINE, COMMAND_LINE_SIZE);
827#endif /* CONFIG_CMDLINE */
828
829 DBG("Command line is: %s\n", cmd_line);
830
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000831 /* break now */
832 return 1;
833}
834
835static int __init early_init_dt_scan_root(unsigned long node,
836 const char *uname, int depth, void *data)
837{
838 u32 *prop;
839
840 if (depth != 0)
841 return 0;
842
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100843 prop = of_get_flat_dt_prop(node, "#size-cells", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000844 dt_root_size_cells = (prop == NULL) ? 1 : *prop;
845 DBG("dt_root_size_cells = %x\n", dt_root_size_cells);
846
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100847 prop = of_get_flat_dt_prop(node, "#address-cells", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000848 dt_root_addr_cells = (prop == NULL) ? 2 : *prop;
849 DBG("dt_root_addr_cells = %x\n", dt_root_addr_cells);
850
851 /* break now */
852 return 1;
853}
854
855static unsigned long __init dt_mem_next_cell(int s, cell_t **cellp)
856{
857 cell_t *p = *cellp;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000858
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000859 *cellp = p + s;
860 return of_read_ulong(p, s);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000861}
862
Paul Mackerras02045682006-11-29 22:27:42 +1100863#ifdef CONFIG_PPC_PSERIES
864/*
865 * Interpret the ibm,dynamic-memory property in the
866 * /ibm,dynamic-reconfiguration-memory node.
867 * This contains a list of memory blocks along with NUMA affinity
868 * information.
869 */
870static int __init early_init_dt_scan_drconf_memory(unsigned long node)
871{
872 cell_t *dm, *ls;
873 unsigned long l, n;
874 unsigned long base, size, lmb_size, flags;
875
876 ls = (cell_t *)of_get_flat_dt_prop(node, "ibm,lmb-size", &l);
877 if (ls == NULL || l < dt_root_size_cells * sizeof(cell_t))
878 return 0;
879 lmb_size = dt_mem_next_cell(dt_root_size_cells, &ls);
880
881 dm = (cell_t *)of_get_flat_dt_prop(node, "ibm,dynamic-memory", &l);
882 if (dm == NULL || l < sizeof(cell_t))
883 return 0;
884
885 n = *dm++; /* number of entries */
886 if (l < (n * (dt_root_addr_cells + 4) + 1) * sizeof(cell_t))
887 return 0;
888
889 for (; n != 0; --n) {
890 base = dt_mem_next_cell(dt_root_addr_cells, &dm);
891 flags = dm[3];
892 /* skip DRC index, pad, assoc. list index, flags */
893 dm += 4;
894 /* skip this block if the reserved bit is set in flags (0x80)
895 or if the block is not assigned to this partition (0x8) */
896 if ((flags & 0x80) || !(flags & 0x8))
897 continue;
898 size = lmb_size;
899 if (iommu_is_off) {
900 if (base >= 0x80000000ul)
901 continue;
902 if ((base + size) > 0x80000000ul)
903 size = 0x80000000ul - base;
904 }
905 lmb_add(base, size);
906 }
907 lmb_dump_all();
908 return 0;
909}
910#else
911#define early_init_dt_scan_drconf_memory(node) 0
912#endif /* CONFIG_PPC_PSERIES */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000913
914static int __init early_init_dt_scan_memory(unsigned long node,
915 const char *uname, int depth, void *data)
916{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100917 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000918 cell_t *reg, *endp;
919 unsigned long l;
920
Paul Mackerras02045682006-11-29 22:27:42 +1100921 /* Look for the ibm,dynamic-reconfiguration-memory node */
922 if (depth == 1 &&
923 strcmp(uname, "ibm,dynamic-reconfiguration-memory") == 0)
924 return early_init_dt_scan_drconf_memory(node);
925
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000926 /* We are scanning "memory" nodes only */
Paul Mackerrasa23414b2005-11-10 12:00:55 +1100927 if (type == NULL) {
928 /*
929 * The longtrail doesn't have a device_type on the
930 * /memory node, so look for the node called /memory@0.
931 */
932 if (depth != 1 || strcmp(uname, "memory@0") != 0)
933 return 0;
934 } else if (strcmp(type, "memory") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000935 return 0;
936
Michael Ellermanba759482005-12-04 18:39:55 +1100937 reg = (cell_t *)of_get_flat_dt_prop(node, "linux,usable-memory", &l);
938 if (reg == NULL)
939 reg = (cell_t *)of_get_flat_dt_prop(node, "reg", &l);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000940 if (reg == NULL)
941 return 0;
942
943 endp = reg + (l / sizeof(cell_t));
944
Michael Ellerman358c86f2005-11-03 15:39:09 +1100945 DBG("memory scan node %s, reg size %ld, data: %x %x %x %x,\n",
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000946 uname, l, reg[0], reg[1], reg[2], reg[3]);
947
948 while ((endp - reg) >= (dt_root_addr_cells + dt_root_size_cells)) {
949 unsigned long base, size;
950
951 base = dt_mem_next_cell(dt_root_addr_cells, &reg);
952 size = dt_mem_next_cell(dt_root_size_cells, &reg);
953
954 if (size == 0)
955 continue;
956 DBG(" - %lx , %lx\n", base, size);
957#ifdef CONFIG_PPC64
958 if (iommu_is_off) {
959 if (base >= 0x80000000ul)
960 continue;
961 if ((base + size) > 0x80000000ul)
962 size = 0x80000000ul - base;
963 }
964#endif
965 lmb_add(base, size);
966 }
967 return 0;
968}
969
970static void __init early_reserve_mem(void)
971{
Kumar Galacbbcf342006-01-11 17:57:13 -0600972 u64 base, size;
973 u64 *reserve_map;
Jon Loeliger8a300882006-06-17 17:51:09 -0500974 unsigned long self_base;
975 unsigned long self_size;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000976
Kumar Galacbbcf342006-01-11 17:57:13 -0600977 reserve_map = (u64 *)(((unsigned long)initial_boot_params) +
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000978 initial_boot_params->off_mem_rsvmap);
Jimi Xenidis4d1f3f22006-05-18 17:03:05 -0500979
980 /* before we do anything, lets reserve the dt blob */
Jon Loeliger8a300882006-06-17 17:51:09 -0500981 self_base = __pa((unsigned long)initial_boot_params);
982 self_size = initial_boot_params->totalsize;
983 lmb_reserve(self_base, self_size);
Jimi Xenidis4d1f3f22006-05-18 17:03:05 -0500984
David Gibson30437b32007-02-28 14:12:29 +1100985#ifdef CONFIG_BLK_DEV_INITRD
986 /* then reserve the initrd, if any */
987 if (initrd_start && (initrd_end > initrd_start))
988 lmb_reserve(__pa(initrd_start), initrd_end - initrd_start);
989#endif /* CONFIG_BLK_DEV_INITRD */
990
Kumar Galacbbcf342006-01-11 17:57:13 -0600991#ifdef CONFIG_PPC32
992 /*
993 * Handle the case where we might be booting from an old kexec
994 * image that setup the mem_rsvmap as pairs of 32-bit values
995 */
996 if (*reserve_map > 0xffffffffull) {
997 u32 base_32, size_32;
998 u32 *reserve_map_32 = (u32 *)reserve_map;
999
1000 while (1) {
1001 base_32 = *(reserve_map_32++);
1002 size_32 = *(reserve_map_32++);
1003 if (size_32 == 0)
1004 break;
Jon Loeliger8a300882006-06-17 17:51:09 -05001005 /* skip if the reservation is for the blob */
1006 if (base_32 == self_base && size_32 == self_size)
1007 continue;
Kumar Gala329dda02006-02-24 10:54:52 -06001008 DBG("reserving: %x -> %x\n", base_32, size_32);
Kumar Galacbbcf342006-01-11 17:57:13 -06001009 lmb_reserve(base_32, size_32);
1010 }
1011 return;
1012 }
1013#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001014 while (1) {
1015 base = *(reserve_map++);
1016 size = *(reserve_map++);
1017 if (size == 0)
1018 break;
Kumar Galacbbcf342006-01-11 17:57:13 -06001019 DBG("reserving: %llx -> %llx\n", base, size);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001020 lmb_reserve(base, size);
1021 }
1022
1023#if 0
1024 DBG("memory reserved, lmbs :\n");
1025 lmb_dump_all();
1026#endif
1027}
1028
1029void __init early_init_devtree(void *params)
1030{
Geoff Levand44348102007-06-16 08:06:14 +10001031 DBG(" -> early_init_devtree(%p)\n", params);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001032
1033 /* Setup flat device-tree pointer */
1034 initial_boot_params = params;
1035
Michael Ellerman458148c2006-06-23 18:20:13 +10001036#ifdef CONFIG_PPC_RTAS
1037 /* Some machines might need RTAS info for debugging, grab it now. */
1038 of_scan_flat_dt(early_init_dt_scan_rtas, NULL);
1039#endif
1040
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001041 /* Retrieve various informations from the /chosen node of the
1042 * device-tree, including the platform type, initrd location and
1043 * size, TCE reserve, and more ...
1044 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001045 of_scan_flat_dt(early_init_dt_scan_chosen, NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001046
1047 /* Scan memory nodes and rebuild LMBs */
1048 lmb_init();
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001049 of_scan_flat_dt(early_init_dt_scan_root, NULL);
1050 of_scan_flat_dt(early_init_dt_scan_memory, NULL);
Michael Ellerman846f77b2006-05-17 18:00:45 +10001051
1052 /* Save command line for /proc/cmdline and then parse parameters */
Alon Bar-Levb8757b22007-02-12 00:54:17 -08001053 strlcpy(boot_command_line, cmd_line, COMMAND_LINE_SIZE);
Michael Ellerman846f77b2006-05-17 18:00:45 +10001054 parse_early_param();
1055
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001056 /* Reserve LMB regions used by kernel, initrd, dt, etc... */
Michael Ellerman0cc47462005-12-04 18:39:37 +11001057 lmb_reserve(PHYSICAL_START, __pa(klimit) - PHYSICAL_START);
Michael Ellerman47310412006-05-17 18:00:49 +10001058 reserve_kdump_trampoline();
Michael Ellerman35dd5432006-05-18 11:16:11 +10001059 reserve_crashkernel();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001060 early_reserve_mem();
1061
Michael Ellerman2babf5c2006-05-17 18:00:46 +10001062 lmb_enforce_memory_limit(memory_limit);
1063 lmb_analyze();
1064
1065 DBG("Phys. mem: %lx\n", lmb_phys_mem_size());
1066
1067 /* We may need to relocate the flat tree, do it now.
1068 * FIXME .. and the initrd too? */
1069 move_device_tree();
1070
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001071 DBG("Scanning CPUs ...\n");
1072
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001073 /* Retreive CPU related informations from the flat tree
1074 * (altivec support, boot CPU ID, ...)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001075 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001076 of_scan_flat_dt(early_init_dt_scan_cpus, NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001077
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001078 DBG(" <- early_init_devtree()\n");
1079}
1080
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001081
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001082/**
1083 * Indicates whether the root node has a given value in its
1084 * compatible property.
1085 */
1086int machine_is_compatible(const char *compat)
1087{
1088 struct device_node *root;
1089 int rc = 0;
1090
1091 root = of_find_node_by_path("/");
1092 if (root) {
Stephen Rothwell7a92f742007-04-03 10:55:39 +10001093 rc = of_device_is_compatible(root, compat);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001094 of_node_put(root);
1095 }
1096 return rc;
1097}
1098EXPORT_SYMBOL(machine_is_compatible);
1099
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001100/*******
1101 *
1102 * New implementation of the OF "find" APIs, return a refcounted
1103 * object, call of_node_put() when done. The device tree and list
1104 * are protected by a rw_lock.
1105 *
1106 * Note that property management will need some locking as well,
1107 * this isn't dealt with yet.
1108 *
1109 *******/
1110
1111/**
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001112 * of_find_node_by_phandle - Find a node given a phandle
1113 * @handle: phandle of the node to find
1114 *
1115 * Returns a node pointer with refcount incremented, use
1116 * of_node_put() on it when done.
1117 */
1118struct device_node *of_find_node_by_phandle(phandle handle)
1119{
1120 struct device_node *np;
1121
1122 read_lock(&devtree_lock);
1123 for (np = allnodes; np != 0; np = np->allnext)
1124 if (np->linux_phandle == handle)
1125 break;
Mariusz Kozlowskib1374052007-01-02 12:31:47 +01001126 of_node_get(np);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001127 read_unlock(&devtree_lock);
1128 return np;
1129}
1130EXPORT_SYMBOL(of_find_node_by_phandle);
1131
1132/**
1133 * of_find_all_nodes - Get next node in global list
1134 * @prev: Previous node or NULL to start iteration
1135 * of_node_put() will be called on it
1136 *
1137 * Returns a node pointer with refcount incremented, use
1138 * of_node_put() on it when done.
1139 */
1140struct device_node *of_find_all_nodes(struct device_node *prev)
1141{
1142 struct device_node *np;
1143
1144 read_lock(&devtree_lock);
1145 np = prev ? prev->allnext : allnodes;
1146 for (; np != 0; np = np->allnext)
1147 if (of_node_get(np))
1148 break;
Mariusz Kozlowskib1374052007-01-02 12:31:47 +01001149 of_node_put(prev);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001150 read_unlock(&devtree_lock);
1151 return np;
1152}
1153EXPORT_SYMBOL(of_find_all_nodes);
1154
1155/**
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001156 * of_node_get - Increment refcount of a node
1157 * @node: Node to inc refcount, NULL is supported to
1158 * simplify writing of callers
1159 *
1160 * Returns node.
1161 */
1162struct device_node *of_node_get(struct device_node *node)
1163{
1164 if (node)
1165 kref_get(&node->kref);
1166 return node;
1167}
1168EXPORT_SYMBOL(of_node_get);
1169
1170static inline struct device_node * kref_to_device_node(struct kref *kref)
1171{
1172 return container_of(kref, struct device_node, kref);
1173}
1174
1175/**
1176 * of_node_release - release a dynamically allocated node
1177 * @kref: kref element of the node to be released
1178 *
1179 * In of_node_put() this function is passed to kref_put()
1180 * as the destructor.
1181 */
1182static void of_node_release(struct kref *kref)
1183{
1184 struct device_node *node = kref_to_device_node(kref);
1185 struct property *prop = node->properties;
1186
Michael Ellerman6a2818562007-06-19 16:08:00 +10001187 /* We should never be releasing nodes that haven't been detached. */
1188 if (!of_node_check_flag(node, OF_DETACHED)) {
1189 printk("WARNING: Bad of_node_put() on %s\n", node->full_name);
1190 dump_stack();
1191 kref_init(&node->kref);
1192 return;
1193 }
1194
Michael Ellermand3b814b2007-06-19 16:07:58 +10001195 if (!of_node_check_flag(node, OF_DYNAMIC))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001196 return;
Michael Ellerman6a2818562007-06-19 16:08:00 +10001197
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001198 while (prop) {
1199 struct property *next = prop->next;
1200 kfree(prop->name);
1201 kfree(prop->value);
1202 kfree(prop);
1203 prop = next;
Dave C Boutcher088186d2006-01-12 16:08:27 -06001204
1205 if (!prop) {
1206 prop = node->deadprops;
1207 node->deadprops = NULL;
1208 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001209 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001210 kfree(node->full_name);
1211 kfree(node->data);
1212 kfree(node);
1213}
1214
1215/**
1216 * of_node_put - Decrement refcount of a node
1217 * @node: Node to dec refcount, NULL is supported to
1218 * simplify writing of callers
1219 *
1220 */
1221void of_node_put(struct device_node *node)
1222{
1223 if (node)
1224 kref_put(&node->kref, of_node_release);
1225}
1226EXPORT_SYMBOL(of_node_put);
1227
1228/*
1229 * Plug a device node into the tree and global list.
1230 */
1231void of_attach_node(struct device_node *np)
1232{
1233 write_lock(&devtree_lock);
1234 np->sibling = np->parent->child;
1235 np->allnext = allnodes;
1236 np->parent->child = np;
1237 allnodes = np;
1238 write_unlock(&devtree_lock);
1239}
1240
1241/*
1242 * "Unplug" a node from the device tree. The caller must hold
1243 * a reference to the node. The memory associated with the node
1244 * is not freed until its refcount goes to zero.
1245 */
Segher Boessenkool34f329d2007-07-20 15:58:38 +10001246void of_detach_node(struct device_node *np)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001247{
1248 struct device_node *parent;
1249
1250 write_lock(&devtree_lock);
1251
1252 parent = np->parent;
Michael Ellerman972d17c2007-06-19 16:07:56 +10001253 if (!parent)
1254 goto out_unlock;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001255
1256 if (allnodes == np)
1257 allnodes = np->allnext;
1258 else {
1259 struct device_node *prev;
1260 for (prev = allnodes;
1261 prev->allnext != np;
1262 prev = prev->allnext)
1263 ;
1264 prev->allnext = np->allnext;
1265 }
1266
1267 if (parent->child == np)
1268 parent->child = np->sibling;
1269 else {
1270 struct device_node *prevsib;
1271 for (prevsib = np->parent->child;
1272 prevsib->sibling != np;
1273 prevsib = prevsib->sibling)
1274 ;
1275 prevsib->sibling = np->sibling;
1276 }
1277
Michael Ellerman6a2818562007-06-19 16:08:00 +10001278 of_node_set_flag(np, OF_DETACHED);
1279
Michael Ellerman972d17c2007-06-19 16:07:56 +10001280out_unlock:
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001281 write_unlock(&devtree_lock);
1282}
1283
1284#ifdef CONFIG_PPC_PSERIES
1285/*
1286 * Fix up the uninitialized fields in a new device node:
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001287 * name, type and pci-specific fields
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001288 */
1289
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001290static int of_finish_dynamic_node(struct device_node *node)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001291{
1292 struct device_node *parent = of_get_parent(node);
1293 int err = 0;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +10001294 const phandle *ibm_phandle;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001295
Stephen Rothwell0e56efc2007-04-03 10:54:01 +10001296 node->name = of_get_property(node, "name", NULL);
1297 node->type = of_get_property(node, "device_type", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001298
Benjamin Herrenschmidt847f5972007-05-16 16:57:24 +10001299 if (!node->name)
1300 node->name = "<NULL>";
1301 if (!node->type)
1302 node->type = "<NULL>";
1303
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001304 if (!parent) {
1305 err = -ENODEV;
1306 goto out;
1307 }
1308
1309 /* We don't support that function on PowerMac, at least
1310 * not yet
1311 */
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001312 if (machine_is(powermac))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001313 return -ENODEV;
1314
1315 /* fix up new node's linux_phandle field */
Stephen Rothwell0e56efc2007-04-03 10:54:01 +10001316 if ((ibm_phandle = of_get_property(node, "ibm,phandle", NULL)))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001317 node->linux_phandle = *ibm_phandle;
1318
1319out:
1320 of_node_put(parent);
1321 return err;
1322}
1323
1324static int prom_reconfig_notifier(struct notifier_block *nb,
1325 unsigned long action, void *node)
1326{
1327 int err;
1328
1329 switch (action) {
1330 case PSERIES_RECONFIG_ADD:
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001331 err = of_finish_dynamic_node(node);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001332 if (err < 0) {
1333 printk(KERN_ERR "finish_node returned %d\n", err);
1334 err = NOTIFY_BAD;
1335 }
1336 break;
1337 default:
1338 err = NOTIFY_DONE;
1339 break;
1340 }
1341 return err;
1342}
1343
1344static struct notifier_block prom_reconfig_nb = {
1345 .notifier_call = prom_reconfig_notifier,
1346 .priority = 10, /* This one needs to run first */
1347};
1348
1349static int __init prom_reconfig_setup(void)
1350{
1351 return pSeries_reconfig_notifier_register(&prom_reconfig_nb);
1352}
1353__initcall(prom_reconfig_setup);
1354#endif
1355
Dave C Boutcherecaa8b02006-01-12 16:09:29 -06001356/*
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001357 * Add a property to a node
1358 */
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001359int prom_add_property(struct device_node* np, struct property* prop)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001360{
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001361 struct property **next;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001362
1363 prop->next = NULL;
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001364 write_lock(&devtree_lock);
1365 next = &np->properties;
1366 while (*next) {
1367 if (strcmp(prop->name, (*next)->name) == 0) {
1368 /* duplicate ! don't insert it */
1369 write_unlock(&devtree_lock);
1370 return -1;
1371 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001372 next = &(*next)->next;
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001373 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001374 *next = prop;
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001375 write_unlock(&devtree_lock);
1376
Paul Mackerras799d6042005-11-10 13:37:51 +11001377#ifdef CONFIG_PROC_DEVICETREE
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001378 /* try to add to proc as well if it was initialized */
1379 if (np->pde)
1380 proc_device_tree_add_prop(np->pde, prop);
Paul Mackerras799d6042005-11-10 13:37:51 +11001381#endif /* CONFIG_PROC_DEVICETREE */
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001382
1383 return 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001384}
1385
Dave C Boutcher088186d2006-01-12 16:08:27 -06001386/*
1387 * Remove a property from a node. Note that we don't actually
1388 * remove it, since we have given out who-knows-how-many pointers
1389 * to the data using get-property. Instead we just move the property
1390 * to the "dead properties" list, so it won't be found any more.
1391 */
1392int prom_remove_property(struct device_node *np, struct property *prop)
1393{
1394 struct property **next;
1395 int found = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001396
Dave C Boutcher088186d2006-01-12 16:08:27 -06001397 write_lock(&devtree_lock);
1398 next = &np->properties;
1399 while (*next) {
1400 if (*next == prop) {
1401 /* found the node */
1402 *next = prop->next;
1403 prop->next = np->deadprops;
1404 np->deadprops = prop;
1405 found = 1;
1406 break;
1407 }
1408 next = &(*next)->next;
1409 }
1410 write_unlock(&devtree_lock);
1411
1412 if (!found)
1413 return -ENODEV;
1414
1415#ifdef CONFIG_PROC_DEVICETREE
1416 /* try to remove the proc node as well */
1417 if (np->pde)
1418 proc_device_tree_remove_prop(np->pde, prop);
1419#endif /* CONFIG_PROC_DEVICETREE */
1420
1421 return 0;
1422}
1423
1424/*
1425 * Update a property in a node. Note that we don't actually
1426 * remove it, since we have given out who-knows-how-many pointers
1427 * to the data using get-property. Instead we just move the property
1428 * to the "dead properties" list, and add the new property to the
1429 * property list
1430 */
1431int prom_update_property(struct device_node *np,
1432 struct property *newprop,
1433 struct property *oldprop)
1434{
1435 struct property **next;
1436 int found = 0;
1437
1438 write_lock(&devtree_lock);
1439 next = &np->properties;
1440 while (*next) {
1441 if (*next == oldprop) {
1442 /* found the node */
1443 newprop->next = oldprop->next;
1444 *next = newprop;
1445 oldprop->next = np->deadprops;
1446 np->deadprops = oldprop;
1447 found = 1;
1448 break;
1449 }
1450 next = &(*next)->next;
1451 }
1452 write_unlock(&devtree_lock);
1453
1454 if (!found)
1455 return -ENODEV;
1456
1457#ifdef CONFIG_PROC_DEVICETREE
1458 /* try to add to proc as well if it was initialized */
1459 if (np->pde)
1460 proc_device_tree_update_prop(np->pde, newprop, oldprop);
1461#endif /* CONFIG_PROC_DEVICETREE */
1462
1463 return 0;
1464}
Michael Ellermanb68239e2006-02-03 19:05:47 +11001465
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +02001466
1467/* Find the device node for a given logical cpu number, also returns the cpu
1468 * local thread number (index in ibm,interrupt-server#s) if relevant and
1469 * asked for (non NULL)
1470 */
1471struct device_node *of_get_cpu_node(int cpu, unsigned int *thread)
1472{
1473 int hardid;
1474 struct device_node *np;
1475
1476 hardid = get_hard_smp_processor_id(cpu);
1477
1478 for_each_node_by_type(np, "cpu") {
Jeremy Kerra7f67bd2006-07-12 15:35:54 +10001479 const u32 *intserv;
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +02001480 unsigned int plen, t;
1481
1482 /* Check for ibm,ppc-interrupt-server#s. If it doesn't exist
1483 * fallback to "reg" property and assume no threads
1484 */
Stephen Rothwell0e56efc2007-04-03 10:54:01 +10001485 intserv = of_get_property(np, "ibm,ppc-interrupt-server#s",
Jeremy Kerra7f67bd2006-07-12 15:35:54 +10001486 &plen);
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +02001487 if (intserv == NULL) {
Stephen Rothwell0e56efc2007-04-03 10:54:01 +10001488 const u32 *reg = of_get_property(np, "reg", NULL);
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +02001489 if (reg == NULL)
1490 continue;
1491 if (*reg == hardid) {
1492 if (thread)
1493 *thread = 0;
1494 return np;
1495 }
1496 } else {
1497 plen /= sizeof(u32);
1498 for (t = 0; t < plen; t++) {
1499 if (hardid == intserv[t]) {
1500 if (thread)
1501 *thread = t;
1502 return np;
1503 }
1504 }
1505 }
1506 }
1507 return NULL;
1508}
Christian Krafft36ca4ba2006-10-24 18:39:45 +02001509EXPORT_SYMBOL(of_get_cpu_node);
Michael Ellerman7a4571a2006-06-23 18:16:03 +10001510
Michael Ellerman94a38072007-06-20 10:54:19 +10001511#if defined(CONFIG_DEBUG_FS) && defined(DEBUG)
Michael Ellerman7a4571a2006-06-23 18:16:03 +10001512static struct debugfs_blob_wrapper flat_dt_blob;
1513
1514static int __init export_flat_device_tree(void)
1515{
1516 struct dentry *d;
1517
Michael Ellerman7a4571a2006-06-23 18:16:03 +10001518 flat_dt_blob.data = initial_boot_params;
1519 flat_dt_blob.size = initial_boot_params->totalsize;
1520
1521 d = debugfs_create_blob("flat-device-tree", S_IFREG | S_IRUSR,
Michael Ellerman94a38072007-06-20 10:54:19 +10001522 powerpc_debugfs_root, &flat_dt_blob);
Michael Ellerman7a4571a2006-06-23 18:16:03 +10001523 if (!d)
1524 return 1;
1525
1526 return 0;
1527}
1528__initcall(export_flat_device_tree);
1529#endif