blob: a2bc433f36100f3d136447fb819263d510cdc0f2 [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>
19#include <linux/config.h>
20#include <linux/kernel.h>
21#include <linux/string.h>
22#include <linux/init.h>
23#include <linux/threads.h>
24#include <linux/spinlock.h>
25#include <linux/types.h>
26#include <linux/pci.h>
27#include <linux/stringify.h>
28#include <linux/delay.h>
29#include <linux/initrd.h>
30#include <linux/bitops.h>
31#include <linux/module.h>
Michael Ellermandcee3032005-12-04 18:39:48 +110032#include <linux/kexec.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100033
34#include <asm/prom.h>
35#include <asm/rtas.h>
36#include <asm/lmb.h>
37#include <asm/page.h>
38#include <asm/processor.h>
39#include <asm/irq.h>
40#include <asm/io.h>
Michael Ellerman0cc47462005-12-04 18:39:37 +110041#include <asm/kdump.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100042#include <asm/smp.h>
43#include <asm/system.h>
44#include <asm/mmu.h>
45#include <asm/pgtable.h>
46#include <asm/pci.h>
47#include <asm/iommu.h>
48#include <asm/btext.h>
49#include <asm/sections.h>
50#include <asm/machdep.h>
51#include <asm/pSeries_reconfig.h>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100052#include <asm/pci-bridge.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100053
54#ifdef DEBUG
55#define DBG(fmt...) printk(KERN_ERR fmt)
56#else
57#define DBG(fmt...)
58#endif
59
Paul Mackerras9b6b5632005-10-06 12:06:20 +100060
Paul Mackerras9b6b5632005-10-06 12:06:20 +100061static int __initdata dt_root_addr_cells;
62static int __initdata dt_root_size_cells;
63
64#ifdef CONFIG_PPC64
65static int __initdata iommu_is_off;
66int __initdata iommu_force_on;
Paul Mackerrascf00a8d2005-10-31 13:07:02 +110067unsigned long tce_alloc_start, tce_alloc_end;
Paul Mackerras9b6b5632005-10-06 12:06:20 +100068#endif
69
70typedef u32 cell_t;
71
72#if 0
73static struct boot_param_header *initial_boot_params __initdata;
74#else
75struct boot_param_header *initial_boot_params;
76#endif
77
78static struct device_node *allnodes = NULL;
79
80/* use when traversing tree through the allnext, child, sibling,
81 * or parent members of struct device_node.
82 */
83static DEFINE_RWLOCK(devtree_lock);
84
85/* export that to outside world */
86struct device_node *of_chosen;
87
88struct device_node *dflt_interrupt_controller;
89int num_interrupt_controllers;
90
Paul Mackerras9b6b5632005-10-06 12:06:20 +100091/*
92 * Wrapper for allocating memory for various data that needs to be
93 * attached to device nodes as they are processed at boot or when
94 * added to the device tree later (e.g. DLPAR). At boot there is
95 * already a region reserved so we just increment *mem_start by size;
96 * otherwise we call kmalloc.
97 */
98static void * prom_alloc(unsigned long size, unsigned long *mem_start)
99{
100 unsigned long tmp;
101
102 if (!mem_start)
103 return kmalloc(size, GFP_KERNEL);
104
105 tmp = *mem_start;
106 *mem_start += size;
107 return (void *)tmp;
108}
109
110/*
111 * Find the device_node with a given phandle.
112 */
113static struct device_node * find_phandle(phandle ph)
114{
115 struct device_node *np;
116
117 for (np = allnodes; np != 0; np = np->allnext)
118 if (np->linux_phandle == ph)
119 return np;
120 return NULL;
121}
122
123/*
124 * Find the interrupt parent of a node.
125 */
126static struct device_node * __devinit intr_parent(struct device_node *p)
127{
128 phandle *parp;
129
130 parp = (phandle *) get_property(p, "interrupt-parent", NULL);
131 if (parp == NULL)
132 return p->parent;
133 p = find_phandle(*parp);
134 if (p != NULL)
135 return p;
136 /*
137 * On a powermac booted with BootX, we don't get to know the
138 * phandles for any nodes, so find_phandle will return NULL.
139 * Fortunately these machines only have one interrupt controller
140 * so there isn't in fact any ambiguity. -- paulus
141 */
142 if (num_interrupt_controllers == 1)
143 p = dflt_interrupt_controller;
144 return p;
145}
146
147/*
148 * Find out the size of each entry of the interrupts property
149 * for a node.
150 */
151int __devinit prom_n_intr_cells(struct device_node *np)
152{
153 struct device_node *p;
154 unsigned int *icp;
155
156 for (p = np; (p = intr_parent(p)) != NULL; ) {
157 icp = (unsigned int *)
158 get_property(p, "#interrupt-cells", NULL);
159 if (icp != NULL)
160 return *icp;
161 if (get_property(p, "interrupt-controller", NULL) != NULL
162 || get_property(p, "interrupt-map", NULL) != NULL) {
163 printk("oops, node %s doesn't have #interrupt-cells\n",
164 p->full_name);
165 return 1;
166 }
167 }
168#ifdef DEBUG_IRQ
169 printk("prom_n_intr_cells failed for %s\n", np->full_name);
170#endif
171 return 1;
172}
173
174/*
175 * Map an interrupt from a device up to the platform interrupt
176 * descriptor.
177 */
178static int __devinit map_interrupt(unsigned int **irq, struct device_node **ictrler,
179 struct device_node *np, unsigned int *ints,
180 int nintrc)
181{
182 struct device_node *p, *ipar;
183 unsigned int *imap, *imask, *ip;
184 int i, imaplen, match;
185 int newintrc = 0, newaddrc = 0;
186 unsigned int *reg;
187 int naddrc;
188
189 reg = (unsigned int *) get_property(np, "reg", NULL);
190 naddrc = prom_n_addr_cells(np);
191 p = intr_parent(np);
192 while (p != NULL) {
193 if (get_property(p, "interrupt-controller", NULL) != NULL)
194 /* this node is an interrupt controller, stop here */
195 break;
196 imap = (unsigned int *)
197 get_property(p, "interrupt-map", &imaplen);
198 if (imap == NULL) {
199 p = intr_parent(p);
200 continue;
201 }
202 imask = (unsigned int *)
203 get_property(p, "interrupt-map-mask", NULL);
204 if (imask == NULL) {
205 printk("oops, %s has interrupt-map but no mask\n",
206 p->full_name);
207 return 0;
208 }
209 imaplen /= sizeof(unsigned int);
210 match = 0;
211 ipar = NULL;
212 while (imaplen > 0 && !match) {
213 /* check the child-interrupt field */
214 match = 1;
215 for (i = 0; i < naddrc && match; ++i)
216 match = ((reg[i] ^ imap[i]) & imask[i]) == 0;
217 for (; i < naddrc + nintrc && match; ++i)
218 match = ((ints[i-naddrc] ^ imap[i]) & imask[i]) == 0;
219 imap += naddrc + nintrc;
220 imaplen -= naddrc + nintrc;
221 /* grab the interrupt parent */
222 ipar = find_phandle((phandle) *imap++);
223 --imaplen;
224 if (ipar == NULL && num_interrupt_controllers == 1)
225 /* cope with BootX not giving us phandles */
226 ipar = dflt_interrupt_controller;
227 if (ipar == NULL) {
228 printk("oops, no int parent %x in map of %s\n",
229 imap[-1], p->full_name);
230 return 0;
231 }
232 /* find the parent's # addr and intr cells */
233 ip = (unsigned int *)
234 get_property(ipar, "#interrupt-cells", NULL);
235 if (ip == NULL) {
236 printk("oops, no #interrupt-cells on %s\n",
237 ipar->full_name);
238 return 0;
239 }
240 newintrc = *ip;
241 ip = (unsigned int *)
242 get_property(ipar, "#address-cells", NULL);
243 newaddrc = (ip == NULL)? 0: *ip;
244 imap += newaddrc + newintrc;
245 imaplen -= newaddrc + newintrc;
246 }
247 if (imaplen < 0) {
248 printk("oops, error decoding int-map on %s, len=%d\n",
249 p->full_name, imaplen);
250 return 0;
251 }
252 if (!match) {
253#ifdef DEBUG_IRQ
254 printk("oops, no match in %s int-map for %s\n",
255 p->full_name, np->full_name);
256#endif
257 return 0;
258 }
259 p = ipar;
260 naddrc = newaddrc;
261 nintrc = newintrc;
262 ints = imap - nintrc;
263 reg = ints - naddrc;
264 }
265 if (p == NULL) {
266#ifdef DEBUG_IRQ
267 printk("hmmm, int tree for %s doesn't have ctrler\n",
268 np->full_name);
269#endif
270 return 0;
271 }
272 *irq = ints;
273 *ictrler = p;
274 return nintrc;
275}
276
Paul Mackerras6d0124f2005-10-26 17:19:06 +1000277static unsigned char map_isa_senses[4] = {
278 IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE,
279 IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE,
280 IRQ_SENSE_EDGE | IRQ_POLARITY_NEGATIVE,
281 IRQ_SENSE_EDGE | IRQ_POLARITY_POSITIVE
282};
283
284static unsigned char map_mpic_senses[4] = {
285 IRQ_SENSE_EDGE | IRQ_POLARITY_POSITIVE,
286 IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE,
287 /* 2 seems to be used for the 8259 cascade... */
288 IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE,
289 IRQ_SENSE_EDGE | IRQ_POLARITY_NEGATIVE,
290};
291
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000292static int __devinit finish_node_interrupts(struct device_node *np,
293 unsigned long *mem_start,
294 int measure_only)
295{
296 unsigned int *ints;
297 int intlen, intrcells, intrcount;
Paul Mackerras6d0124f2005-10-26 17:19:06 +1000298 int i, j, n, sense;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000299 unsigned int *irq, virq;
300 struct device_node *ic;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100301 int trace = 0;
302
303 //#define TRACE(fmt...) do { if (trace) { printk(fmt); mdelay(1000); } } while(0)
304#define TRACE(fmt...)
305
306 if (!strcmp(np->name, "smu-doorbell"))
307 trace = 1;
308
309 TRACE("Finishing SMU doorbell ! num_interrupt_controllers = %d\n",
310 num_interrupt_controllers);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000311
Paul Mackerrasa575b802005-10-23 17:23:21 +1000312 if (num_interrupt_controllers == 0) {
313 /*
314 * Old machines just have a list of interrupt numbers
315 * and no interrupt-controller nodes.
316 */
317 ints = (unsigned int *) get_property(np, "AAPL,interrupts",
318 &intlen);
319 /* XXX old interpret_pci_props looked in parent too */
320 /* XXX old interpret_macio_props looked for interrupts
321 before AAPL,interrupts */
322 if (ints == NULL)
323 ints = (unsigned int *) get_property(np, "interrupts",
324 &intlen);
325 if (ints == NULL)
326 return 0;
327
328 np->n_intrs = intlen / sizeof(unsigned int);
329 np->intrs = prom_alloc(np->n_intrs * sizeof(np->intrs[0]),
330 mem_start);
331 if (!np->intrs)
332 return -ENOMEM;
333 if (measure_only)
334 return 0;
335
336 for (i = 0; i < np->n_intrs; ++i) {
337 np->intrs[i].line = *ints++;
Paul Mackerras6d0124f2005-10-26 17:19:06 +1000338 np->intrs[i].sense = IRQ_SENSE_LEVEL
339 | IRQ_POLARITY_NEGATIVE;
Paul Mackerrasa575b802005-10-23 17:23:21 +1000340 }
341 return 0;
342 }
343
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000344 ints = (unsigned int *) get_property(np, "interrupts", &intlen);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100345 TRACE("ints=%p, intlen=%d\n", ints, intlen);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000346 if (ints == NULL)
347 return 0;
348 intrcells = prom_n_intr_cells(np);
349 intlen /= intrcells * sizeof(unsigned int);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100350 TRACE("intrcells=%d, new intlen=%d\n", intrcells, intlen);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000351 np->intrs = prom_alloc(intlen * sizeof(*(np->intrs)), mem_start);
352 if (!np->intrs)
353 return -ENOMEM;
354
355 if (measure_only)
356 return 0;
357
358 intrcount = 0;
359 for (i = 0; i < intlen; ++i, ints += intrcells) {
360 n = map_interrupt(&irq, &ic, np, ints, intrcells);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100361 TRACE("map, irq=%d, ic=%p, n=%d\n", irq, ic, n);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000362 if (n <= 0)
363 continue;
364
365 /* don't map IRQ numbers under a cascaded 8259 controller */
366 if (ic && device_is_compatible(ic, "chrp,iic")) {
367 np->intrs[intrcount].line = irq[0];
Paul Mackerras6d0124f2005-10-26 17:19:06 +1000368 sense = (n > 1)? (irq[1] & 3): 3;
369 np->intrs[intrcount].sense = map_isa_senses[sense];
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000370 } else {
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000371 virq = virt_irq_create_mapping(irq[0]);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100372 TRACE("virq=%d\n", virq);
Paul Mackerras6d0124f2005-10-26 17:19:06 +1000373#ifdef CONFIG_PPC64
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000374 if (virq == NO_IRQ) {
375 printk(KERN_CRIT "Could not allocate interrupt"
376 " number for %s\n", np->full_name);
377 continue;
378 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000379#endif
Paul Mackerras6d0124f2005-10-26 17:19:06 +1000380 np->intrs[intrcount].line = irq_offset_up(virq);
381 sense = (n > 1)? (irq[1] & 3): 1;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100382
383 /* Apple uses bits in there in a different way, let's
384 * only keep the real sense bit on macs
385 */
386 if (_machine == PLATFORM_POWERMAC)
387 sense &= 0x1;
Paul Mackerras6d0124f2005-10-26 17:19:06 +1000388 np->intrs[intrcount].sense = map_mpic_senses[sense];
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000389 }
390
391#ifdef CONFIG_PPC64
392 /* We offset irq numbers for the u3 MPIC by 128 in PowerMac */
Paul Mackerras799d6042005-11-10 13:37:51 +1100393 if (_machine == PLATFORM_POWERMAC && ic && ic->parent) {
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000394 char *name = get_property(ic->parent, "name", NULL);
395 if (name && !strcmp(name, "u3"))
396 np->intrs[intrcount].line += 128;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100397 else if (!(name && (!strcmp(name, "mac-io") ||
398 !strcmp(name, "u4"))))
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000399 /* ignore other cascaded controllers, such as
400 the k2-sata-root */
401 break;
402 }
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100403#endif /* CONFIG_PPC64 */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000404 if (n > 2) {
405 printk("hmmm, got %d intr cells for %s:", n,
406 np->full_name);
407 for (j = 0; j < n; ++j)
408 printk(" %d", irq[j]);
409 printk("\n");
410 }
411 ++intrcount;
412 }
413 np->n_intrs = intrcount;
414
415 return 0;
416}
417
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000418static int __devinit finish_node(struct device_node *np,
419 unsigned long *mem_start,
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000420 int measure_only)
421{
422 struct device_node *child;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100423 int rc = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000424
425 rc = finish_node_interrupts(np, mem_start, measure_only);
426 if (rc)
427 goto out;
428
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000429 for (child = np->child; child != NULL; child = child->sibling) {
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100430 rc = finish_node(child, mem_start, measure_only);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000431 if (rc)
432 goto out;
433 }
434out:
435 return rc;
436}
437
438static void __init scan_interrupt_controllers(void)
439{
440 struct device_node *np;
441 int n = 0;
442 char *name, *ic;
443 int iclen;
444
445 for (np = allnodes; np != NULL; np = np->allnext) {
446 ic = get_property(np, "interrupt-controller", &iclen);
447 name = get_property(np, "name", NULL);
448 /* checking iclen makes sure we don't get a false
449 match on /chosen.interrupt_controller */
450 if ((name != NULL
451 && strcmp(name, "interrupt-controller") == 0)
452 || (ic != NULL && iclen == 0
453 && strcmp(name, "AppleKiwi"))) {
454 if (n == 0)
455 dflt_interrupt_controller = np;
456 ++n;
457 }
458 }
459 num_interrupt_controllers = n;
460}
461
462/**
463 * finish_device_tree is called once things are running normally
464 * (i.e. with text and data mapped to the address they were linked at).
465 * It traverses the device tree and fills in some of the additional,
466 * fields in each node like {n_}addrs and {n_}intrs, the virt interrupt
467 * mapping is also initialized at this point.
468 */
469void __init finish_device_tree(void)
470{
471 unsigned long start, end, size = 0;
472
473 DBG(" -> finish_device_tree\n");
474
475#ifdef CONFIG_PPC64
476 /* Initialize virtual IRQ map */
477 virt_irq_init();
478#endif
479 scan_interrupt_controllers();
480
481 /*
482 * Finish device-tree (pre-parsing some properties etc...)
483 * We do this in 2 passes. One with "measure_only" set, which
484 * will only measure the amount of memory needed, then we can
485 * allocate that memory, and call finish_node again. However,
486 * we must be careful as most routines will fail nowadays when
487 * prom_alloc() returns 0, so we must make sure our first pass
488 * doesn't start at 0. We pre-initialize size to 16 for that
489 * reason and then remove those additional 16 bytes
490 */
491 size = 16;
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100492 finish_node(allnodes, &size, 1);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000493 size -= 16;
Michael Ellermanfa938952006-01-25 21:31:25 +1300494
495 if (0 == size)
496 end = start = 0;
497 else
498 end = start = (unsigned long)__va(lmb_alloc(size, 128));
499
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100500 finish_node(allnodes, &end, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000501 BUG_ON(end != start + size);
502
503 DBG(" <- finish_device_tree\n");
504}
505
506static inline char *find_flat_dt_string(u32 offset)
507{
508 return ((char *)initial_boot_params) +
509 initial_boot_params->off_dt_strings + offset;
510}
511
512/**
513 * This function is used to scan the flattened device-tree, it is
514 * used to extract the memory informations at boot before we can
515 * unflatten the tree
516 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100517int __init of_scan_flat_dt(int (*it)(unsigned long node,
518 const char *uname, int depth,
519 void *data),
520 void *data)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000521{
522 unsigned long p = ((unsigned long)initial_boot_params) +
523 initial_boot_params->off_dt_struct;
524 int rc = 0;
525 int depth = -1;
526
527 do {
528 u32 tag = *((u32 *)p);
529 char *pathp;
530
531 p += 4;
532 if (tag == OF_DT_END_NODE) {
533 depth --;
534 continue;
535 }
536 if (tag == OF_DT_NOP)
537 continue;
538 if (tag == OF_DT_END)
539 break;
540 if (tag == OF_DT_PROP) {
541 u32 sz = *((u32 *)p);
542 p += 8;
543 if (initial_boot_params->version < 0x10)
544 p = _ALIGN(p, sz >= 8 ? 8 : 4);
545 p += sz;
546 p = _ALIGN(p, 4);
547 continue;
548 }
549 if (tag != OF_DT_BEGIN_NODE) {
550 printk(KERN_WARNING "Invalid tag %x scanning flattened"
551 " device tree !\n", tag);
552 return -EINVAL;
553 }
554 depth++;
555 pathp = (char *)p;
556 p = _ALIGN(p + strlen(pathp) + 1, 4);
557 if ((*pathp) == '/') {
558 char *lp, *np;
559 for (lp = NULL, np = pathp; *np; np++)
560 if ((*np) == '/')
561 lp = np+1;
562 if (lp != NULL)
563 pathp = lp;
564 }
565 rc = it(p, pathp, depth, data);
566 if (rc != 0)
567 break;
568 } while(1);
569
570 return rc;
571}
572
573/**
574 * This function can be used within scan_flattened_dt callback to get
575 * access to properties
576 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100577void* __init of_get_flat_dt_prop(unsigned long node, const char *name,
578 unsigned long *size)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000579{
580 unsigned long p = node;
581
582 do {
583 u32 tag = *((u32 *)p);
584 u32 sz, noff;
585 const char *nstr;
586
587 p += 4;
588 if (tag == OF_DT_NOP)
589 continue;
590 if (tag != OF_DT_PROP)
591 return NULL;
592
593 sz = *((u32 *)p);
594 noff = *((u32 *)(p + 4));
595 p += 8;
596 if (initial_boot_params->version < 0x10)
597 p = _ALIGN(p, sz >= 8 ? 8 : 4);
598
599 nstr = find_flat_dt_string(noff);
600 if (nstr == NULL) {
601 printk(KERN_WARNING "Can't find property index"
602 " name !\n");
603 return NULL;
604 }
605 if (strcmp(name, nstr) == 0) {
606 if (size)
607 *size = sz;
608 return (void *)p;
609 }
610 p += sz;
611 p = _ALIGN(p, 4);
612 } while(1);
613}
614
615static void *__init unflatten_dt_alloc(unsigned long *mem, unsigned long size,
616 unsigned long align)
617{
618 void *res;
619
620 *mem = _ALIGN(*mem, align);
621 res = (void *)*mem;
622 *mem += size;
623
624 return res;
625}
626
627static unsigned long __init unflatten_dt_node(unsigned long mem,
628 unsigned long *p,
629 struct device_node *dad,
630 struct device_node ***allnextpp,
631 unsigned long fpsize)
632{
633 struct device_node *np;
634 struct property *pp, **prev_pp = NULL;
635 char *pathp;
636 u32 tag;
637 unsigned int l, allocl;
638 int has_name = 0;
639 int new_format = 0;
640
641 tag = *((u32 *)(*p));
642 if (tag != OF_DT_BEGIN_NODE) {
643 printk("Weird tag at start of node: %x\n", tag);
644 return mem;
645 }
646 *p += 4;
647 pathp = (char *)*p;
648 l = allocl = strlen(pathp) + 1;
649 *p = _ALIGN(*p + l, 4);
650
651 /* version 0x10 has a more compact unit name here instead of the full
652 * path. we accumulate the full path size using "fpsize", we'll rebuild
653 * it later. We detect this because the first character of the name is
654 * not '/'.
655 */
656 if ((*pathp) != '/') {
657 new_format = 1;
658 if (fpsize == 0) {
659 /* root node: special case. fpsize accounts for path
660 * plus terminating zero. root node only has '/', so
661 * fpsize should be 2, but we want to avoid the first
662 * level nodes to have two '/' so we use fpsize 1 here
663 */
664 fpsize = 1;
665 allocl = 2;
666 } else {
667 /* account for '/' and path size minus terminal 0
668 * already in 'l'
669 */
670 fpsize += l;
671 allocl = fpsize;
672 }
673 }
674
675
676 np = unflatten_dt_alloc(&mem, sizeof(struct device_node) + allocl,
677 __alignof__(struct device_node));
678 if (allnextpp) {
679 memset(np, 0, sizeof(*np));
680 np->full_name = ((char*)np) + sizeof(struct device_node);
681 if (new_format) {
682 char *p = np->full_name;
683 /* rebuild full path for new format */
684 if (dad && dad->parent) {
685 strcpy(p, dad->full_name);
686#ifdef DEBUG
687 if ((strlen(p) + l + 1) != allocl) {
688 DBG("%s: p: %d, l: %d, a: %d\n",
689 pathp, strlen(p), l, allocl);
690 }
691#endif
692 p += strlen(p);
693 }
694 *(p++) = '/';
695 memcpy(p, pathp, l);
696 } else
697 memcpy(np->full_name, pathp, l);
698 prev_pp = &np->properties;
699 **allnextpp = np;
700 *allnextpp = &np->allnext;
701 if (dad != NULL) {
702 np->parent = dad;
703 /* we temporarily use the next field as `last_child'*/
704 if (dad->next == 0)
705 dad->child = np;
706 else
707 dad->next->sibling = np;
708 dad->next = np;
709 }
710 kref_init(&np->kref);
711 }
712 while(1) {
713 u32 sz, noff;
714 char *pname;
715
716 tag = *((u32 *)(*p));
717 if (tag == OF_DT_NOP) {
718 *p += 4;
719 continue;
720 }
721 if (tag != OF_DT_PROP)
722 break;
723 *p += 4;
724 sz = *((u32 *)(*p));
725 noff = *((u32 *)((*p) + 4));
726 *p += 8;
727 if (initial_boot_params->version < 0x10)
728 *p = _ALIGN(*p, sz >= 8 ? 8 : 4);
729
730 pname = find_flat_dt_string(noff);
731 if (pname == NULL) {
732 printk("Can't find property name in list !\n");
733 break;
734 }
735 if (strcmp(pname, "name") == 0)
736 has_name = 1;
737 l = strlen(pname) + 1;
738 pp = unflatten_dt_alloc(&mem, sizeof(struct property),
739 __alignof__(struct property));
740 if (allnextpp) {
741 if (strcmp(pname, "linux,phandle") == 0) {
742 np->node = *((u32 *)*p);
743 if (np->linux_phandle == 0)
744 np->linux_phandle = np->node;
745 }
746 if (strcmp(pname, "ibm,phandle") == 0)
747 np->linux_phandle = *((u32 *)*p);
748 pp->name = pname;
749 pp->length = sz;
750 pp->value = (void *)*p;
751 *prev_pp = pp;
752 prev_pp = &pp->next;
753 }
754 *p = _ALIGN((*p) + sz, 4);
755 }
756 /* with version 0x10 we may not have the name property, recreate
757 * it here from the unit name if absent
758 */
759 if (!has_name) {
760 char *p = pathp, *ps = pathp, *pa = NULL;
761 int sz;
762
763 while (*p) {
764 if ((*p) == '@')
765 pa = p;
766 if ((*p) == '/')
767 ps = p + 1;
768 p++;
769 }
770 if (pa < ps)
771 pa = p;
772 sz = (pa - ps) + 1;
773 pp = unflatten_dt_alloc(&mem, sizeof(struct property) + sz,
774 __alignof__(struct property));
775 if (allnextpp) {
776 pp->name = "name";
777 pp->length = sz;
778 pp->value = (unsigned char *)(pp + 1);
779 *prev_pp = pp;
780 prev_pp = &pp->next;
781 memcpy(pp->value, ps, sz - 1);
782 ((char *)pp->value)[sz - 1] = 0;
783 DBG("fixed up name for %s -> %s\n", pathp, pp->value);
784 }
785 }
786 if (allnextpp) {
787 *prev_pp = NULL;
788 np->name = get_property(np, "name", NULL);
789 np->type = get_property(np, "device_type", NULL);
790
791 if (!np->name)
792 np->name = "<NULL>";
793 if (!np->type)
794 np->type = "<NULL>";
795 }
796 while (tag == OF_DT_BEGIN_NODE) {
797 mem = unflatten_dt_node(mem, p, np, allnextpp, fpsize);
798 tag = *((u32 *)(*p));
799 }
800 if (tag != OF_DT_END_NODE) {
801 printk("Weird tag at end of node: %x\n", tag);
802 return mem;
803 }
804 *p += 4;
805 return mem;
806}
807
808
809/**
810 * unflattens the device-tree passed by the firmware, creating the
811 * tree of struct device_node. It also fills the "name" and "type"
812 * pointers of the nodes so the normal device-tree walking functions
813 * can be used (this used to be done by finish_device_tree)
814 */
815void __init unflatten_device_tree(void)
816{
817 unsigned long start, mem, size;
818 struct device_node **allnextp = &allnodes;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000819
820 DBG(" -> unflatten_device_tree()\n");
821
822 /* First pass, scan for size */
823 start = ((unsigned long)initial_boot_params) +
824 initial_boot_params->off_dt_struct;
825 size = unflatten_dt_node(0, &start, NULL, NULL, 0);
826 size = (size | 3) + 1;
827
828 DBG(" size is %lx, allocating...\n", size);
829
830 /* Allocate memory for the expanded device tree */
831 mem = lmb_alloc(size + 4, __alignof__(struct device_node));
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000832 mem = (unsigned long) __va(mem);
833
834 ((u32 *)mem)[size / 4] = 0xdeadbeef;
835
836 DBG(" unflattening %lx...\n", mem);
837
838 /* Second pass, do actual unflattening */
839 start = ((unsigned long)initial_boot_params) +
840 initial_boot_params->off_dt_struct;
841 unflatten_dt_node(mem, &start, NULL, &allnextp, 0);
842 if (*((u32 *)start) != OF_DT_END)
843 printk(KERN_WARNING "Weird tag at end of tree: %08x\n", *((u32 *)start));
844 if (((u32 *)mem)[size / 4] != 0xdeadbeef)
845 printk(KERN_WARNING "End of tree marker overwritten: %08x\n",
846 ((u32 *)mem)[size / 4] );
847 *allnextp = NULL;
848
849 /* Get pointer to OF "/chosen" node for use everywhere */
850 of_chosen = of_find_node_by_path("/chosen");
Paul Mackerrasa575b802005-10-23 17:23:21 +1000851 if (of_chosen == NULL)
852 of_chosen = of_find_node_by_path("/chosen@0");
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000853
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000854 DBG(" <- unflatten_device_tree()\n");
855}
856
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000857static int __init early_init_dt_scan_cpus(unsigned long node,
Anton Blanchard4df20462006-03-25 17:25:17 +1100858 const char *uname, int depth,
859 void *data)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000860{
Anton Blanchard4df20462006-03-25 17:25:17 +1100861 static int logical_cpuid = 0;
862 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
Stephen Rothwell4d177fb2006-03-28 17:14:44 +1100863#ifdef CONFIG_ALTIVEC
864 u32 *prop;
865#endif
866 u32 *intserv;
Anton Blanchard4df20462006-03-25 17:25:17 +1100867 int i, nthreads;
868 unsigned long len;
869 int found = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000870
871 /* We are scanning "cpu" nodes only */
872 if (type == NULL || strcmp(type, "cpu") != 0)
873 return 0;
874
Anton Blanchard4df20462006-03-25 17:25:17 +1100875 /* Get physical cpuid */
876 intserv = of_get_flat_dt_prop(node, "ibm,ppc-interrupt-server#s", &len);
877 if (intserv) {
878 nthreads = len / sizeof(int);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000879 } else {
Anton Blanchard4df20462006-03-25 17:25:17 +1100880 intserv = of_get_flat_dt_prop(node, "reg", NULL);
881 nthreads = 1;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000882 }
Anton Blanchard4df20462006-03-25 17:25:17 +1100883
884 /*
885 * Now see if any of these threads match our boot cpu.
886 * NOTE: This must match the parsing done in smp_setup_cpu_maps.
887 */
888 for (i = 0; i < nthreads; i++) {
889 /*
890 * version 2 of the kexec param format adds the phys cpuid of
891 * booted proc.
892 */
893 if (initial_boot_params && initial_boot_params->version >= 2) {
894 if (intserv[i] ==
895 initial_boot_params->boot_cpuid_phys) {
896 found = 1;
897 break;
898 }
899 } else {
900 /*
901 * Check if it's the boot-cpu, set it's hw index now,
902 * unfortunately this format did not support booting
903 * off secondary threads.
904 */
905 if (of_get_flat_dt_prop(node,
906 "linux,boot-cpu", NULL) != NULL) {
907 found = 1;
908 break;
909 }
910 }
911
912#ifdef CONFIG_SMP
913 /* logical cpu id is always 0 on UP kernels */
914 logical_cpuid++;
915#endif
916 }
917
918 if (found) {
919 DBG("boot cpu: logical %d physical %d\n", logical_cpuid,
920 intserv[i]);
921 boot_cpuid = logical_cpuid;
922 set_hard_smp_processor_id(boot_cpuid, intserv[i]);
923 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000924
925#ifdef CONFIG_ALTIVEC
926 /* Check if we have a VMX and eventually update CPU features */
Stephen Rothwell676e2492005-11-10 14:16:21 +1100927 prop = (u32 *)of_get_flat_dt_prop(node, "ibm,vmx", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000928 if (prop && (*prop) > 0) {
929 cur_cpu_spec->cpu_features |= CPU_FTR_ALTIVEC;
930 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_ALTIVEC;
931 }
932
933 /* Same goes for Apple's "altivec" property */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100934 prop = (u32 *)of_get_flat_dt_prop(node, "altivec", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000935 if (prop) {
936 cur_cpu_spec->cpu_features |= CPU_FTR_ALTIVEC;
937 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_ALTIVEC;
938 }
939#endif /* CONFIG_ALTIVEC */
940
941#ifdef CONFIG_PPC_PSERIES
Anton Blanchard4df20462006-03-25 17:25:17 +1100942 if (nthreads > 1)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000943 cur_cpu_spec->cpu_features |= CPU_FTR_SMT;
Anton Blanchard4df20462006-03-25 17:25:17 +1100944 else
945 cur_cpu_spec->cpu_features &= ~CPU_FTR_SMT;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000946#endif
947
948 return 0;
949}
950
951static int __init early_init_dt_scan_chosen(unsigned long node,
952 const char *uname, int depth, void *data)
953{
954 u32 *prop;
955 unsigned long *lprop;
Kumar Gala329dda02006-02-24 10:54:52 -0600956 unsigned long l;
957 char *p;
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000958
959 DBG("search \"chosen\", depth: %d, uname: %s\n", depth, uname);
960
Paul Mackerrasa575b802005-10-23 17:23:21 +1000961 if (depth != 1 ||
962 (strcmp(uname, "chosen") != 0 && strcmp(uname, "chosen@0") != 0))
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000963 return 0;
964
965 /* get platform type */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100966 prop = (u32 *)of_get_flat_dt_prop(node, "linux,platform", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000967 if (prop == NULL)
968 return 0;
Kumar Gala60dda252005-10-20 11:44:03 -0500969#ifdef CONFIG_PPC_MULTIPLATFORM
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000970 _machine = *prop;
971#endif
972
973#ifdef CONFIG_PPC64
974 /* check if iommu is forced on or off */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100975 if (of_get_flat_dt_prop(node, "linux,iommu-off", NULL) != NULL)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000976 iommu_is_off = 1;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100977 if (of_get_flat_dt_prop(node, "linux,iommu-force-on", NULL) != NULL)
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000978 iommu_force_on = 1;
979#endif
980
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100981 lprop = of_get_flat_dt_prop(node, "linux,memory-limit", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000982 if (lprop)
983 memory_limit = *lprop;
984
985#ifdef CONFIG_PPC64
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100986 lprop = of_get_flat_dt_prop(node, "linux,tce-alloc-start", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000987 if (lprop)
988 tce_alloc_start = *lprop;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100989 lprop = of_get_flat_dt_prop(node, "linux,tce-alloc-end", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000990 if (lprop)
991 tce_alloc_end = *lprop;
992#endif
993
994#ifdef CONFIG_PPC_RTAS
Adrian Bunk943ffb52006-01-10 00:10:13 +0100995 /* To help early debugging via the front panel, we retrieve a minimal
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000996 * set of RTAS infos now if available
997 */
998 {
999 u64 *basep, *entryp;
1000
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001001 basep = of_get_flat_dt_prop(node, "linux,rtas-base", NULL);
1002 entryp = of_get_flat_dt_prop(node, "linux,rtas-entry", NULL);
1003 prop = of_get_flat_dt_prop(node, "linux,rtas-size", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001004 if (basep && entryp && prop) {
1005 rtas.base = *basep;
1006 rtas.entry = *entryp;
1007 rtas.size = *prop;
1008 }
1009 }
1010#endif /* CONFIG_PPC_RTAS */
1011
Michael Ellermandcee3032005-12-04 18:39:48 +11001012#ifdef CONFIG_KEXEC
1013 lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-base", NULL);
1014 if (lprop)
1015 crashk_res.start = *lprop;
1016
1017 lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-size", NULL);
1018 if (lprop)
1019 crashk_res.end = crashk_res.start + *lprop - 1;
1020#endif
1021
Kumar Gala329dda02006-02-24 10:54:52 -06001022 /* Retreive command line */
1023 p = of_get_flat_dt_prop(node, "bootargs", &l);
1024 if (p != NULL && l > 0)
1025 strlcpy(cmd_line, p, min((int)l, COMMAND_LINE_SIZE));
1026
1027#ifdef CONFIG_CMDLINE
1028 if (l == 0 || (l == 1 && (*p) == 0))
1029 strlcpy(cmd_line, CONFIG_CMDLINE, COMMAND_LINE_SIZE);
1030#endif /* CONFIG_CMDLINE */
1031
1032 DBG("Command line is: %s\n", cmd_line);
1033
1034 if (strstr(cmd_line, "mem=")) {
1035 char *p, *q;
Kumar Gala329dda02006-02-24 10:54:52 -06001036
1037 for (q = cmd_line; (p = strstr(q, "mem=")) != 0; ) {
1038 q = p + 4;
1039 if (p > cmd_line && p[-1] != ' ')
1040 continue;
Kumar Gala10d713a2006-03-27 18:26:42 -06001041 memory_limit = memparse(q, &q);
Kumar Gala329dda02006-02-24 10:54:52 -06001042 }
Kumar Gala329dda02006-02-24 10:54:52 -06001043 }
1044
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001045 /* break now */
1046 return 1;
1047}
1048
1049static int __init early_init_dt_scan_root(unsigned long node,
1050 const char *uname, int depth, void *data)
1051{
1052 u32 *prop;
1053
1054 if (depth != 0)
1055 return 0;
1056
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001057 prop = of_get_flat_dt_prop(node, "#size-cells", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001058 dt_root_size_cells = (prop == NULL) ? 1 : *prop;
1059 DBG("dt_root_size_cells = %x\n", dt_root_size_cells);
1060
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001061 prop = of_get_flat_dt_prop(node, "#address-cells", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001062 dt_root_addr_cells = (prop == NULL) ? 2 : *prop;
1063 DBG("dt_root_addr_cells = %x\n", dt_root_addr_cells);
1064
1065 /* break now */
1066 return 1;
1067}
1068
1069static unsigned long __init dt_mem_next_cell(int s, cell_t **cellp)
1070{
1071 cell_t *p = *cellp;
1072 unsigned long r;
1073
1074 /* Ignore more than 2 cells */
1075 while (s > sizeof(unsigned long) / 4) {
1076 p++;
1077 s--;
1078 }
1079 r = *p++;
1080#ifdef CONFIG_PPC64
1081 if (s > 1) {
1082 r <<= 32;
1083 r |= *(p++);
1084 s--;
1085 }
1086#endif
1087
1088 *cellp = p;
1089 return r;
1090}
1091
1092
1093static int __init early_init_dt_scan_memory(unsigned long node,
1094 const char *uname, int depth, void *data)
1095{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001096 char *type = of_get_flat_dt_prop(node, "device_type", NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001097 cell_t *reg, *endp;
1098 unsigned long l;
1099
1100 /* We are scanning "memory" nodes only */
Paul Mackerrasa23414b2005-11-10 12:00:55 +11001101 if (type == NULL) {
1102 /*
1103 * The longtrail doesn't have a device_type on the
1104 * /memory node, so look for the node called /memory@0.
1105 */
1106 if (depth != 1 || strcmp(uname, "memory@0") != 0)
1107 return 0;
1108 } else if (strcmp(type, "memory") != 0)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001109 return 0;
1110
Michael Ellermanba759482005-12-04 18:39:55 +11001111 reg = (cell_t *)of_get_flat_dt_prop(node, "linux,usable-memory", &l);
1112 if (reg == NULL)
1113 reg = (cell_t *)of_get_flat_dt_prop(node, "reg", &l);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001114 if (reg == NULL)
1115 return 0;
1116
1117 endp = reg + (l / sizeof(cell_t));
1118
Michael Ellerman358c86f2005-11-03 15:39:09 +11001119 DBG("memory scan node %s, reg size %ld, data: %x %x %x %x,\n",
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001120 uname, l, reg[0], reg[1], reg[2], reg[3]);
1121
1122 while ((endp - reg) >= (dt_root_addr_cells + dt_root_size_cells)) {
1123 unsigned long base, size;
1124
1125 base = dt_mem_next_cell(dt_root_addr_cells, &reg);
1126 size = dt_mem_next_cell(dt_root_size_cells, &reg);
1127
1128 if (size == 0)
1129 continue;
1130 DBG(" - %lx , %lx\n", base, size);
1131#ifdef CONFIG_PPC64
1132 if (iommu_is_off) {
1133 if (base >= 0x80000000ul)
1134 continue;
1135 if ((base + size) > 0x80000000ul)
1136 size = 0x80000000ul - base;
1137 }
1138#endif
1139 lmb_add(base, size);
1140 }
1141 return 0;
1142}
1143
1144static void __init early_reserve_mem(void)
1145{
Kumar Galacbbcf342006-01-11 17:57:13 -06001146 u64 base, size;
1147 u64 *reserve_map;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001148
Kumar Galacbbcf342006-01-11 17:57:13 -06001149 reserve_map = (u64 *)(((unsigned long)initial_boot_params) +
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001150 initial_boot_params->off_mem_rsvmap);
Kumar Galacbbcf342006-01-11 17:57:13 -06001151#ifdef CONFIG_PPC32
1152 /*
1153 * Handle the case where we might be booting from an old kexec
1154 * image that setup the mem_rsvmap as pairs of 32-bit values
1155 */
1156 if (*reserve_map > 0xffffffffull) {
1157 u32 base_32, size_32;
1158 u32 *reserve_map_32 = (u32 *)reserve_map;
1159
1160 while (1) {
1161 base_32 = *(reserve_map_32++);
1162 size_32 = *(reserve_map_32++);
1163 if (size_32 == 0)
1164 break;
Kumar Gala329dda02006-02-24 10:54:52 -06001165 DBG("reserving: %x -> %x\n", base_32, size_32);
Kumar Galacbbcf342006-01-11 17:57:13 -06001166 lmb_reserve(base_32, size_32);
1167 }
1168 return;
1169 }
1170#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001171 while (1) {
1172 base = *(reserve_map++);
1173 size = *(reserve_map++);
1174 if (size == 0)
1175 break;
Kumar Galacbbcf342006-01-11 17:57:13 -06001176 DBG("reserving: %llx -> %llx\n", base, size);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001177 lmb_reserve(base, size);
1178 }
1179
1180#if 0
1181 DBG("memory reserved, lmbs :\n");
1182 lmb_dump_all();
1183#endif
1184}
1185
1186void __init early_init_devtree(void *params)
1187{
1188 DBG(" -> early_init_devtree()\n");
1189
1190 /* Setup flat device-tree pointer */
1191 initial_boot_params = params;
1192
1193 /* Retrieve various informations from the /chosen node of the
1194 * device-tree, including the platform type, initrd location and
1195 * size, TCE reserve, and more ...
1196 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001197 of_scan_flat_dt(early_init_dt_scan_chosen, NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001198
1199 /* Scan memory nodes and rebuild LMBs */
1200 lmb_init();
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001201 of_scan_flat_dt(early_init_dt_scan_root, NULL);
1202 of_scan_flat_dt(early_init_dt_scan_memory, NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001203 lmb_enforce_memory_limit(memory_limit);
1204 lmb_analyze();
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001205
1206 DBG("Phys. mem: %lx\n", lmb_phys_mem_size());
1207
1208 /* Reserve LMB regions used by kernel, initrd, dt, etc... */
Michael Ellerman0cc47462005-12-04 18:39:37 +11001209 lmb_reserve(PHYSICAL_START, __pa(klimit) - PHYSICAL_START);
1210#ifdef CONFIG_CRASH_DUMP
1211 lmb_reserve(0, KDUMP_RESERVE_LIMIT);
1212#endif
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001213 early_reserve_mem();
1214
1215 DBG("Scanning CPUs ...\n");
1216
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001217 /* Retreive CPU related informations from the flat tree
1218 * (altivec support, boot CPU ID, ...)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001219 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001220 of_scan_flat_dt(early_init_dt_scan_cpus, NULL);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001221
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001222 DBG(" <- early_init_devtree()\n");
1223}
1224
1225#undef printk
1226
1227int
1228prom_n_addr_cells(struct device_node* np)
1229{
1230 int* ip;
1231 do {
1232 if (np->parent)
1233 np = np->parent;
1234 ip = (int *) get_property(np, "#address-cells", NULL);
1235 if (ip != NULL)
1236 return *ip;
1237 } while (np->parent);
1238 /* No #address-cells property for the root node, default to 1 */
1239 return 1;
1240}
Paul Mackerras1dfc6772005-11-14 17:30:40 +11001241EXPORT_SYMBOL(prom_n_addr_cells);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001242
1243int
1244prom_n_size_cells(struct device_node* np)
1245{
1246 int* ip;
1247 do {
1248 if (np->parent)
1249 np = np->parent;
1250 ip = (int *) get_property(np, "#size-cells", NULL);
1251 if (ip != NULL)
1252 return *ip;
1253 } while (np->parent);
1254 /* No #size-cells property for the root node, default to 1 */
1255 return 1;
1256}
Paul Mackerras1dfc6772005-11-14 17:30:40 +11001257EXPORT_SYMBOL(prom_n_size_cells);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001258
1259/**
1260 * Work out the sense (active-low level / active-high edge)
1261 * of each interrupt from the device tree.
1262 */
1263void __init prom_get_irq_senses(unsigned char *senses, int off, int max)
1264{
1265 struct device_node *np;
1266 int i, j;
1267
1268 /* default to level-triggered */
Paul Mackerras6d0124f2005-10-26 17:19:06 +10001269 memset(senses, IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE, max - off);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001270
1271 for (np = allnodes; np != 0; np = np->allnext) {
1272 for (j = 0; j < np->n_intrs; j++) {
1273 i = np->intrs[j].line;
1274 if (i >= off && i < max)
Paul Mackerras6d0124f2005-10-26 17:19:06 +10001275 senses[i-off] = np->intrs[j].sense;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001276 }
1277 }
1278}
1279
1280/**
1281 * Construct and return a list of the device_nodes with a given name.
1282 */
1283struct device_node *find_devices(const char *name)
1284{
1285 struct device_node *head, **prevp, *np;
1286
1287 prevp = &head;
1288 for (np = allnodes; np != 0; np = np->allnext) {
1289 if (np->name != 0 && strcasecmp(np->name, name) == 0) {
1290 *prevp = np;
1291 prevp = &np->next;
1292 }
1293 }
1294 *prevp = NULL;
1295 return head;
1296}
1297EXPORT_SYMBOL(find_devices);
1298
1299/**
1300 * Construct and return a list of the device_nodes with a given type.
1301 */
1302struct device_node *find_type_devices(const char *type)
1303{
1304 struct device_node *head, **prevp, *np;
1305
1306 prevp = &head;
1307 for (np = allnodes; np != 0; np = np->allnext) {
1308 if (np->type != 0 && strcasecmp(np->type, type) == 0) {
1309 *prevp = np;
1310 prevp = &np->next;
1311 }
1312 }
1313 *prevp = NULL;
1314 return head;
1315}
1316EXPORT_SYMBOL(find_type_devices);
1317
1318/**
1319 * Returns all nodes linked together
1320 */
1321struct device_node *find_all_nodes(void)
1322{
1323 struct device_node *head, **prevp, *np;
1324
1325 prevp = &head;
1326 for (np = allnodes; np != 0; np = np->allnext) {
1327 *prevp = np;
1328 prevp = &np->next;
1329 }
1330 *prevp = NULL;
1331 return head;
1332}
1333EXPORT_SYMBOL(find_all_nodes);
1334
1335/** Checks if the given "compat" string matches one of the strings in
1336 * the device's "compatible" property
1337 */
1338int device_is_compatible(struct device_node *device, const char *compat)
1339{
1340 const char* cp;
1341 int cplen, l;
1342
1343 cp = (char *) get_property(device, "compatible", &cplen);
1344 if (cp == NULL)
1345 return 0;
1346 while (cplen > 0) {
1347 if (strncasecmp(cp, compat, strlen(compat)) == 0)
1348 return 1;
1349 l = strlen(cp) + 1;
1350 cp += l;
1351 cplen -= l;
1352 }
1353
1354 return 0;
1355}
1356EXPORT_SYMBOL(device_is_compatible);
1357
1358
1359/**
1360 * Indicates whether the root node has a given value in its
1361 * compatible property.
1362 */
1363int machine_is_compatible(const char *compat)
1364{
1365 struct device_node *root;
1366 int rc = 0;
1367
1368 root = of_find_node_by_path("/");
1369 if (root) {
1370 rc = device_is_compatible(root, compat);
1371 of_node_put(root);
1372 }
1373 return rc;
1374}
1375EXPORT_SYMBOL(machine_is_compatible);
1376
1377/**
1378 * Construct and return a list of the device_nodes with a given type
1379 * and compatible property.
1380 */
1381struct device_node *find_compatible_devices(const char *type,
1382 const char *compat)
1383{
1384 struct device_node *head, **prevp, *np;
1385
1386 prevp = &head;
1387 for (np = allnodes; np != 0; np = np->allnext) {
1388 if (type != NULL
1389 && !(np->type != 0 && strcasecmp(np->type, type) == 0))
1390 continue;
1391 if (device_is_compatible(np, compat)) {
1392 *prevp = np;
1393 prevp = &np->next;
1394 }
1395 }
1396 *prevp = NULL;
1397 return head;
1398}
1399EXPORT_SYMBOL(find_compatible_devices);
1400
1401/**
1402 * Find the device_node with a given full_name.
1403 */
1404struct device_node *find_path_device(const char *path)
1405{
1406 struct device_node *np;
1407
1408 for (np = allnodes; np != 0; np = np->allnext)
1409 if (np->full_name != 0 && strcasecmp(np->full_name, path) == 0)
1410 return np;
1411 return NULL;
1412}
1413EXPORT_SYMBOL(find_path_device);
1414
1415/*******
1416 *
1417 * New implementation of the OF "find" APIs, return a refcounted
1418 * object, call of_node_put() when done. The device tree and list
1419 * are protected by a rw_lock.
1420 *
1421 * Note that property management will need some locking as well,
1422 * this isn't dealt with yet.
1423 *
1424 *******/
1425
1426/**
1427 * of_find_node_by_name - Find a node by its "name" property
1428 * @from: The node to start searching from or NULL, the node
1429 * you pass will not be searched, only the next one
1430 * will; typically, you pass what the previous call
1431 * returned. of_node_put() will be called on it
1432 * @name: The name string to match against
1433 *
1434 * Returns a node pointer with refcount incremented, use
1435 * of_node_put() on it when done.
1436 */
1437struct device_node *of_find_node_by_name(struct device_node *from,
1438 const char *name)
1439{
1440 struct device_node *np;
1441
1442 read_lock(&devtree_lock);
1443 np = from ? from->allnext : allnodes;
Olaf Hering090db7c2006-02-04 12:44:56 +01001444 for (; np != NULL; np = np->allnext)
1445 if (np->name != NULL && strcasecmp(np->name, name) == 0
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001446 && of_node_get(np))
1447 break;
1448 if (from)
1449 of_node_put(from);
1450 read_unlock(&devtree_lock);
1451 return np;
1452}
1453EXPORT_SYMBOL(of_find_node_by_name);
1454
1455/**
1456 * of_find_node_by_type - Find a node by its "device_type" property
1457 * @from: The node to start searching from or NULL, the node
1458 * you pass will not be searched, only the next one
1459 * will; typically, you pass what the previous call
1460 * returned. of_node_put() will be called on it
1461 * @name: The type string to match against
1462 *
1463 * Returns a node pointer with refcount incremented, use
1464 * of_node_put() on it when done.
1465 */
1466struct device_node *of_find_node_by_type(struct device_node *from,
1467 const char *type)
1468{
1469 struct device_node *np;
1470
1471 read_lock(&devtree_lock);
1472 np = from ? from->allnext : allnodes;
1473 for (; np != 0; np = np->allnext)
1474 if (np->type != 0 && strcasecmp(np->type, type) == 0
1475 && of_node_get(np))
1476 break;
1477 if (from)
1478 of_node_put(from);
1479 read_unlock(&devtree_lock);
1480 return np;
1481}
1482EXPORT_SYMBOL(of_find_node_by_type);
1483
1484/**
1485 * of_find_compatible_node - Find a node based on type and one of the
1486 * tokens in its "compatible" property
1487 * @from: The node to start searching from or NULL, the node
1488 * you pass will not be searched, only the next one
1489 * will; typically, you pass what the previous call
1490 * returned. of_node_put() will be called on it
1491 * @type: The type string to match "device_type" or NULL to ignore
1492 * @compatible: The string to match to one of the tokens in the device
1493 * "compatible" list.
1494 *
1495 * Returns a node pointer with refcount incremented, use
1496 * of_node_put() on it when done.
1497 */
1498struct device_node *of_find_compatible_node(struct device_node *from,
1499 const char *type, const char *compatible)
1500{
1501 struct device_node *np;
1502
1503 read_lock(&devtree_lock);
1504 np = from ? from->allnext : allnodes;
1505 for (; np != 0; np = np->allnext) {
1506 if (type != NULL
1507 && !(np->type != 0 && strcasecmp(np->type, type) == 0))
1508 continue;
1509 if (device_is_compatible(np, compatible) && of_node_get(np))
1510 break;
1511 }
1512 if (from)
1513 of_node_put(from);
1514 read_unlock(&devtree_lock);
1515 return np;
1516}
1517EXPORT_SYMBOL(of_find_compatible_node);
1518
1519/**
1520 * of_find_node_by_path - Find a node matching a full OF path
1521 * @path: The full path to match
1522 *
1523 * Returns a node pointer with refcount incremented, use
1524 * of_node_put() on it when done.
1525 */
1526struct device_node *of_find_node_by_path(const char *path)
1527{
1528 struct device_node *np = allnodes;
1529
1530 read_lock(&devtree_lock);
1531 for (; np != 0; np = np->allnext) {
1532 if (np->full_name != 0 && strcasecmp(np->full_name, path) == 0
1533 && of_node_get(np))
1534 break;
1535 }
1536 read_unlock(&devtree_lock);
1537 return np;
1538}
1539EXPORT_SYMBOL(of_find_node_by_path);
1540
1541/**
1542 * of_find_node_by_phandle - Find a node given a phandle
1543 * @handle: phandle of the node to find
1544 *
1545 * Returns a node pointer with refcount incremented, use
1546 * of_node_put() on it when done.
1547 */
1548struct device_node *of_find_node_by_phandle(phandle handle)
1549{
1550 struct device_node *np;
1551
1552 read_lock(&devtree_lock);
1553 for (np = allnodes; np != 0; np = np->allnext)
1554 if (np->linux_phandle == handle)
1555 break;
1556 if (np)
1557 of_node_get(np);
1558 read_unlock(&devtree_lock);
1559 return np;
1560}
1561EXPORT_SYMBOL(of_find_node_by_phandle);
1562
1563/**
1564 * of_find_all_nodes - Get next node in global list
1565 * @prev: Previous node or NULL to start iteration
1566 * of_node_put() will be called on it
1567 *
1568 * Returns a node pointer with refcount incremented, use
1569 * of_node_put() on it when done.
1570 */
1571struct device_node *of_find_all_nodes(struct device_node *prev)
1572{
1573 struct device_node *np;
1574
1575 read_lock(&devtree_lock);
1576 np = prev ? prev->allnext : allnodes;
1577 for (; np != 0; np = np->allnext)
1578 if (of_node_get(np))
1579 break;
1580 if (prev)
1581 of_node_put(prev);
1582 read_unlock(&devtree_lock);
1583 return np;
1584}
1585EXPORT_SYMBOL(of_find_all_nodes);
1586
1587/**
1588 * of_get_parent - Get a node's parent if any
1589 * @node: Node to get parent
1590 *
1591 * Returns a node pointer with refcount incremented, use
1592 * of_node_put() on it when done.
1593 */
1594struct device_node *of_get_parent(const struct device_node *node)
1595{
1596 struct device_node *np;
1597
1598 if (!node)
1599 return NULL;
1600
1601 read_lock(&devtree_lock);
1602 np = of_node_get(node->parent);
1603 read_unlock(&devtree_lock);
1604 return np;
1605}
1606EXPORT_SYMBOL(of_get_parent);
1607
1608/**
1609 * of_get_next_child - Iterate a node childs
1610 * @node: parent node
1611 * @prev: previous child of the parent node, or NULL to get first
1612 *
1613 * Returns a node pointer with refcount incremented, use
1614 * of_node_put() on it when done.
1615 */
1616struct device_node *of_get_next_child(const struct device_node *node,
1617 struct device_node *prev)
1618{
1619 struct device_node *next;
1620
1621 read_lock(&devtree_lock);
1622 next = prev ? prev->sibling : node->child;
1623 for (; next != 0; next = next->sibling)
1624 if (of_node_get(next))
1625 break;
1626 if (prev)
1627 of_node_put(prev);
1628 read_unlock(&devtree_lock);
1629 return next;
1630}
1631EXPORT_SYMBOL(of_get_next_child);
1632
1633/**
1634 * of_node_get - Increment refcount of a node
1635 * @node: Node to inc refcount, NULL is supported to
1636 * simplify writing of callers
1637 *
1638 * Returns node.
1639 */
1640struct device_node *of_node_get(struct device_node *node)
1641{
1642 if (node)
1643 kref_get(&node->kref);
1644 return node;
1645}
1646EXPORT_SYMBOL(of_node_get);
1647
1648static inline struct device_node * kref_to_device_node(struct kref *kref)
1649{
1650 return container_of(kref, struct device_node, kref);
1651}
1652
1653/**
1654 * of_node_release - release a dynamically allocated node
1655 * @kref: kref element of the node to be released
1656 *
1657 * In of_node_put() this function is passed to kref_put()
1658 * as the destructor.
1659 */
1660static void of_node_release(struct kref *kref)
1661{
1662 struct device_node *node = kref_to_device_node(kref);
1663 struct property *prop = node->properties;
1664
1665 if (!OF_IS_DYNAMIC(node))
1666 return;
1667 while (prop) {
1668 struct property *next = prop->next;
1669 kfree(prop->name);
1670 kfree(prop->value);
1671 kfree(prop);
1672 prop = next;
Dave C Boutcher088186d2006-01-12 16:08:27 -06001673
1674 if (!prop) {
1675 prop = node->deadprops;
1676 node->deadprops = NULL;
1677 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001678 }
1679 kfree(node->intrs);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001680 kfree(node->full_name);
1681 kfree(node->data);
1682 kfree(node);
1683}
1684
1685/**
1686 * of_node_put - Decrement refcount of a node
1687 * @node: Node to dec refcount, NULL is supported to
1688 * simplify writing of callers
1689 *
1690 */
1691void of_node_put(struct device_node *node)
1692{
1693 if (node)
1694 kref_put(&node->kref, of_node_release);
1695}
1696EXPORT_SYMBOL(of_node_put);
1697
1698/*
1699 * Plug a device node into the tree and global list.
1700 */
1701void of_attach_node(struct device_node *np)
1702{
1703 write_lock(&devtree_lock);
1704 np->sibling = np->parent->child;
1705 np->allnext = allnodes;
1706 np->parent->child = np;
1707 allnodes = np;
1708 write_unlock(&devtree_lock);
1709}
1710
1711/*
1712 * "Unplug" a node from the device tree. The caller must hold
1713 * a reference to the node. The memory associated with the node
1714 * is not freed until its refcount goes to zero.
1715 */
1716void of_detach_node(const struct device_node *np)
1717{
1718 struct device_node *parent;
1719
1720 write_lock(&devtree_lock);
1721
1722 parent = np->parent;
1723
1724 if (allnodes == np)
1725 allnodes = np->allnext;
1726 else {
1727 struct device_node *prev;
1728 for (prev = allnodes;
1729 prev->allnext != np;
1730 prev = prev->allnext)
1731 ;
1732 prev->allnext = np->allnext;
1733 }
1734
1735 if (parent->child == np)
1736 parent->child = np->sibling;
1737 else {
1738 struct device_node *prevsib;
1739 for (prevsib = np->parent->child;
1740 prevsib->sibling != np;
1741 prevsib = prevsib->sibling)
1742 ;
1743 prevsib->sibling = np->sibling;
1744 }
1745
1746 write_unlock(&devtree_lock);
1747}
1748
1749#ifdef CONFIG_PPC_PSERIES
1750/*
1751 * Fix up the uninitialized fields in a new device node:
1752 * name, type, n_addrs, addrs, n_intrs, intrs, and pci-specific fields
1753 *
1754 * A lot of boot-time code is duplicated here, because functions such
1755 * as finish_node_interrupts, interpret_pci_props, etc. cannot use the
1756 * slab allocator.
1757 *
1758 * This should probably be split up into smaller chunks.
1759 */
1760
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001761static int of_finish_dynamic_node(struct device_node *node)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001762{
1763 struct device_node *parent = of_get_parent(node);
1764 int err = 0;
1765 phandle *ibm_phandle;
1766
1767 node->name = get_property(node, "name", NULL);
1768 node->type = get_property(node, "device_type", NULL);
1769
1770 if (!parent) {
1771 err = -ENODEV;
1772 goto out;
1773 }
1774
1775 /* We don't support that function on PowerMac, at least
1776 * not yet
1777 */
Paul Mackerras799d6042005-11-10 13:37:51 +11001778 if (_machine == PLATFORM_POWERMAC)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001779 return -ENODEV;
1780
1781 /* fix up new node's linux_phandle field */
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001782 if ((ibm_phandle = (unsigned int *)get_property(node,
1783 "ibm,phandle", NULL)))
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001784 node->linux_phandle = *ibm_phandle;
1785
1786out:
1787 of_node_put(parent);
1788 return err;
1789}
1790
1791static int prom_reconfig_notifier(struct notifier_block *nb,
1792 unsigned long action, void *node)
1793{
1794 int err;
1795
1796 switch (action) {
1797 case PSERIES_RECONFIG_ADD:
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001798 err = of_finish_dynamic_node(node);
1799 if (!err)
1800 finish_node(node, NULL, 0);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001801 if (err < 0) {
1802 printk(KERN_ERR "finish_node returned %d\n", err);
1803 err = NOTIFY_BAD;
1804 }
1805 break;
1806 default:
1807 err = NOTIFY_DONE;
1808 break;
1809 }
1810 return err;
1811}
1812
1813static struct notifier_block prom_reconfig_nb = {
1814 .notifier_call = prom_reconfig_notifier,
1815 .priority = 10, /* This one needs to run first */
1816};
1817
1818static int __init prom_reconfig_setup(void)
1819{
1820 return pSeries_reconfig_notifier_register(&prom_reconfig_nb);
1821}
1822__initcall(prom_reconfig_setup);
1823#endif
1824
Dave C Boutcherecaa8b02006-01-12 16:09:29 -06001825struct property *of_find_property(struct device_node *np, const char *name,
1826 int *lenp)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001827{
1828 struct property *pp;
1829
Dave C Boutcher088186d2006-01-12 16:08:27 -06001830 read_lock(&devtree_lock);
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001831 for (pp = np->properties; pp != 0; pp = pp->next)
1832 if (strcmp(pp->name, name) == 0) {
1833 if (lenp != 0)
1834 *lenp = pp->length;
Dave C Boutcher088186d2006-01-12 16:08:27 -06001835 break;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001836 }
Dave C Boutcher088186d2006-01-12 16:08:27 -06001837 read_unlock(&devtree_lock);
1838
Dave C Boutcherecaa8b02006-01-12 16:09:29 -06001839 return pp;
1840}
1841
1842/*
1843 * Find a property with a given name for a given node
1844 * and return the value.
1845 */
1846unsigned char *get_property(struct device_node *np, const char *name,
1847 int *lenp)
1848{
1849 struct property *pp = of_find_property(np,name,lenp);
Dave C Boutcher088186d2006-01-12 16:08:27 -06001850 return pp ? pp->value : NULL;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001851}
1852EXPORT_SYMBOL(get_property);
1853
1854/*
1855 * Add a property to a node
1856 */
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001857int prom_add_property(struct device_node* np, struct property* prop)
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001858{
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001859 struct property **next;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001860
1861 prop->next = NULL;
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001862 write_lock(&devtree_lock);
1863 next = &np->properties;
1864 while (*next) {
1865 if (strcmp(prop->name, (*next)->name) == 0) {
1866 /* duplicate ! don't insert it */
1867 write_unlock(&devtree_lock);
1868 return -1;
1869 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001870 next = &(*next)->next;
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001871 }
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001872 *next = prop;
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001873 write_unlock(&devtree_lock);
1874
Paul Mackerras799d6042005-11-10 13:37:51 +11001875#ifdef CONFIG_PROC_DEVICETREE
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001876 /* try to add to proc as well if it was initialized */
1877 if (np->pde)
1878 proc_device_tree_add_prop(np->pde, prop);
Paul Mackerras799d6042005-11-10 13:37:51 +11001879#endif /* CONFIG_PROC_DEVICETREE */
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +11001880
1881 return 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001882}
1883
Dave C Boutcher088186d2006-01-12 16:08:27 -06001884/*
1885 * Remove a property from a node. Note that we don't actually
1886 * remove it, since we have given out who-knows-how-many pointers
1887 * to the data using get-property. Instead we just move the property
1888 * to the "dead properties" list, so it won't be found any more.
1889 */
1890int prom_remove_property(struct device_node *np, struct property *prop)
1891{
1892 struct property **next;
1893 int found = 0;
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001894
Dave C Boutcher088186d2006-01-12 16:08:27 -06001895 write_lock(&devtree_lock);
1896 next = &np->properties;
1897 while (*next) {
1898 if (*next == prop) {
1899 /* found the node */
1900 *next = prop->next;
1901 prop->next = np->deadprops;
1902 np->deadprops = prop;
1903 found = 1;
1904 break;
1905 }
1906 next = &(*next)->next;
1907 }
1908 write_unlock(&devtree_lock);
1909
1910 if (!found)
1911 return -ENODEV;
1912
1913#ifdef CONFIG_PROC_DEVICETREE
1914 /* try to remove the proc node as well */
1915 if (np->pde)
1916 proc_device_tree_remove_prop(np->pde, prop);
1917#endif /* CONFIG_PROC_DEVICETREE */
1918
1919 return 0;
1920}
1921
1922/*
1923 * Update a property in a node. Note that we don't actually
1924 * remove it, since we have given out who-knows-how-many pointers
1925 * to the data using get-property. Instead we just move the property
1926 * to the "dead properties" list, and add the new property to the
1927 * property list
1928 */
1929int prom_update_property(struct device_node *np,
1930 struct property *newprop,
1931 struct property *oldprop)
1932{
1933 struct property **next;
1934 int found = 0;
1935
1936 write_lock(&devtree_lock);
1937 next = &np->properties;
1938 while (*next) {
1939 if (*next == oldprop) {
1940 /* found the node */
1941 newprop->next = oldprop->next;
1942 *next = newprop;
1943 oldprop->next = np->deadprops;
1944 np->deadprops = oldprop;
1945 found = 1;
1946 break;
1947 }
1948 next = &(*next)->next;
1949 }
1950 write_unlock(&devtree_lock);
1951
1952 if (!found)
1953 return -ENODEV;
1954
1955#ifdef CONFIG_PROC_DEVICETREE
1956 /* try to add to proc as well if it was initialized */
1957 if (np->pde)
1958 proc_device_tree_update_prop(np->pde, newprop, oldprop);
1959#endif /* CONFIG_PROC_DEVICETREE */
1960
1961 return 0;
1962}
Michael Ellermanb68239e2006-02-03 19:05:47 +11001963
1964#ifdef CONFIG_KEXEC
1965/* We may have allocated the flat device tree inside the crash kernel region
1966 * in prom_init. If so we need to move it out into regular memory. */
1967void kdump_move_device_tree(void)
1968{
1969 unsigned long start, end;
1970 struct boot_param_header *new;
1971
1972 start = __pa((unsigned long)initial_boot_params);
1973 end = start + initial_boot_params->totalsize;
1974
1975 if (end < crashk_res.start || start > crashk_res.end)
1976 return;
1977
1978 new = (struct boot_param_header*)
1979 __va(lmb_alloc(initial_boot_params->totalsize, PAGE_SIZE));
1980
1981 memcpy(new, initial_boot_params, initial_boot_params->totalsize);
1982
1983 initial_boot_params = new;
1984
1985 DBG("Flat device tree blob moved to %p\n", initial_boot_params);
1986
1987 /* XXX should we unreserve the old DT? */
1988}
1989#endif /* CONFIG_KEXEC */