blob: b665bd6c6addcdf647dbf75a74c9bdaf4a50a430 [file] [log] [blame]
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001/*
2 * (C) Copyright 2007
3 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com
4 * Based on code written by:
5 * Pantelis Antoniou <pantelis.antoniou@gmail.com> and
6 * Matthew McClintock <msm@freescale.com>
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27#include <common.h>
28#include <command.h>
29#include <linux/ctype.h>
30#include <linux/types.h>
Gerald Van Baren781e09e2007-03-31 12:22:10 -040031#include <asm/global_data.h>
32#include <fdt.h>
33#include <libfdt.h>
Gerald Van Baren64dbbd42007-04-06 14:19:43 -040034#include <fdt_support.h>
Gerald Van Baren781e09e2007-03-31 12:22:10 -040035
36#define MAX_LEVEL 32 /* how deeply nested we will go */
Gerald Van Barenfd61e552007-06-25 23:25:28 -040037#define SCRATCHPAD 1024 /* bytes of scratchpad memory */
Gerald Van Baren781e09e2007-03-31 12:22:10 -040038
39/*
40 * Global data (for the gd->bd)
41 */
42DECLARE_GLOBAL_DATA_PTR;
43
Gerald Van Baren781e09e2007-03-31 12:22:10 -040044static int fdt_valid(void);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -040045static int fdt_parse_prop(char *pathp, char *prop, char *newval,
46 char *data, int *len);
47static int fdt_print(char *pathp, char *prop, int depth);
Gerald Van Baren781e09e2007-03-31 12:22:10 -040048
Gerald Van Baren781e09e2007-03-31 12:22:10 -040049/*
50 * Flattened Device Tree command, see the help for parameter definitions.
51 */
52int do_fdt (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
53{
Gerald Van Baren781e09e2007-03-31 12:22:10 -040054 if (argc < 2) {
55 printf ("Usage:\n%s\n", cmdtp->usage);
56 return 1;
57 }
58
Gerald Van Baren781e09e2007-03-31 12:22:10 -040059 /********************************************************************
60 * Set the address of the fdt
61 ********************************************************************/
Gerald Van Baren25114032007-05-12 09:47:25 -040062 if (argv[1][0] == 'a') {
Gerald Van Baren781e09e2007-03-31 12:22:10 -040063 /*
64 * Set the address [and length] of the fdt.
65 */
66 fdt = (struct fdt_header *)simple_strtoul(argv[2], NULL, 16);
67
68 if (!fdt_valid()) {
69 return 1;
70 }
71
72 if (argc >= 4) {
73 int len;
74 int err;
75 /*
76 * Optional new length
77 */
78 len = simple_strtoul(argv[3], NULL, 16);
79 if (len < fdt_totalsize(fdt)) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -040080 printf ("New length %d < existing length %d, "
81 "ignoring.\n",
Gerald Van Baren781e09e2007-03-31 12:22:10 -040082 len, fdt_totalsize(fdt));
83 } else {
84 /*
85 * Open in place with a new length.
86 */
87 err = fdt_open_into(fdt, fdt, len);
88 if (err != 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -040089 printf ("libfdt fdt_open_into(): %s\n",
90 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -040091 }
92 }
93 }
94
95 /********************************************************************
96 * Move the fdt
97 ********************************************************************/
Gerald Van Baren25114032007-05-12 09:47:25 -040098 } else if ((argv[1][0] == 'm') && (argv[1][1] == 'o')) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -040099 struct fdt_header *newaddr;
100 int len;
101 int err;
102
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400103 if (argc < 4) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400104 printf ("Usage:\n%s\n", cmdtp->usage);
105 return 1;
106 }
107
108 /*
109 * Set the address and length of the fdt.
110 */
111 fdt = (struct fdt_header *)simple_strtoul(argv[2], NULL, 16);
112 if (!fdt_valid()) {
113 return 1;
114 }
115
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400116 newaddr = (struct fdt_header *)simple_strtoul(argv[3],NULL,16);
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400117
118 /*
119 * If the user specifies a length, use that. Otherwise use the
120 * current length.
121 */
122 if (argc <= 4) {
123 len = fdt_totalsize(fdt);
124 } else {
125 len = simple_strtoul(argv[4], NULL, 16);
126 if (len < fdt_totalsize(fdt)) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400127 printf ("New length 0x%X < existing length "
128 "0x%X, aborting.\n",
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400129 len, fdt_totalsize(fdt));
130 return 1;
131 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400132 }
133
134 /*
135 * Copy to the new location.
136 */
137 err = fdt_open_into(fdt, newaddr, len);
138 if (err != 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400139 printf ("libfdt fdt_open_into(): %s\n",
140 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400141 return 1;
142 }
143 fdt = newaddr;
144
145 /********************************************************************
Gerald Van Baren25114032007-05-12 09:47:25 -0400146 * Make a new node
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400147 ********************************************************************/
Gerald Van Baren25114032007-05-12 09:47:25 -0400148 } else if ((argv[1][0] == 'm') && (argv[1][1] == 'k')) {
149 char *pathp; /* path */
150 char *nodep; /* new node to add */
151 int nodeoffset; /* node offset from libfdt */
152 int err;
153
154 /*
155 * Parameters: Node path, new node to be appended to the path.
156 */
157 if (argc < 4) {
158 printf ("Usage:\n%s\n", cmdtp->usage);
159 return 1;
160 }
161
162 pathp = argv[2];
163 nodep = argv[3];
164
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400165 nodeoffset = fdt_find_node_by_path (fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400166 if (nodeoffset < 0) {
167 /*
168 * Not found or something else bad happened.
169 */
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400170 printf ("libfdt fdt_find_node_by_path() returned %s\n",
171 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400172 return 1;
173 }
174 err = fdt_add_subnode(fdt, nodeoffset, nodep);
175 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400176 printf ("libfdt fdt_add_subnode(): %s\n",
177 fdt_strerror(err));
Gerald Van Baren25114032007-05-12 09:47:25 -0400178 return 1;
179 }
180
181 /********************************************************************
182 * Set the value of a property in the fdt.
183 ********************************************************************/
184 } else if (argv[1][0] == 's') {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400185 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400186 char *prop; /* property */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400187 char *newval; /* value from the user (as a string) */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400188 int nodeoffset; /* node offset from libfdt */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400189 static char data[SCRATCHPAD]; /* storage for the property */
190 int len; /* new length of the property */
191 int ret; /* return value */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400192
193 /*
194 * Parameters: Node path, property, value.
195 */
196 if (argc < 5) {
197 printf ("Usage:\n%s\n", cmdtp->usage);
198 return 1;
199 }
200
201 pathp = argv[2];
202 prop = argv[3];
203 newval = argv[4];
204
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400205 nodeoffset = fdt_find_node_by_path (fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400206 if (nodeoffset < 0) {
207 /*
208 * Not found or something else bad happened.
209 */
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400210 printf ("libfdt fdt_find_node_by_path() returned %s\n",
211 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400212 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400213 }
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400214 ret = fdt_parse_prop(pathp, prop, newval, data, &len);
215 if (ret != 0)
216 return ret;
Gerald Van Baren25114032007-05-12 09:47:25 -0400217
218 ret = fdt_setprop(fdt, nodeoffset, prop, data, len);
219 if (ret < 0) {
220 printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
221 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400222 }
223
224 /********************************************************************
225 * Print (recursive) / List (single level)
226 ********************************************************************/
Gerald Van Baren25114032007-05-12 09:47:25 -0400227 } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400228 int depth = MAX_LEVEL; /* how deep to print */
229 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400230 char *prop; /* property */
231 int ret; /* return value */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500232 static char root[2] = "/";
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400233
234 /*
235 * list is an alias for print, but limited to 1 level
236 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400237 if (argv[1][0] == 'l') {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400238 depth = 1;
239 }
240
241 /*
242 * Get the starting path. The root node is an oddball,
243 * the offset is zero and has no name.
244 */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500245 if (argc == 2)
246 pathp = root;
247 else
248 pathp = argv[2];
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400249 if (argc > 3)
250 prop = argv[3];
251 else
252 prop = NULL;
253
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400254 ret = fdt_print(pathp, prop, depth);
255 if (ret != 0)
256 return ret;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400257
258 /********************************************************************
259 * Remove a property/node
260 ********************************************************************/
Gerald Van Baren25114032007-05-12 09:47:25 -0400261 } else if (argv[1][0] == 'r') {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400262 int nodeoffset; /* node offset from libfdt */
263 int err;
264
265 /*
266 * Get the path. The root node is an oddball, the offset
267 * is zero and has no name.
268 */
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400269 nodeoffset = fdt_find_node_by_path (fdt, argv[2]);
Gerald Van Baren25114032007-05-12 09:47:25 -0400270 if (nodeoffset < 0) {
271 /*
272 * Not found or something else bad happened.
273 */
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400274 printf ("libfdt fdt_find_node_by_path() returned %s\n",
275 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400276 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400277 }
278 /*
279 * Do the delete. A fourth parameter means delete a property,
280 * otherwise delete the node.
281 */
282 if (argc > 3) {
283 err = fdt_delprop(fdt, nodeoffset, argv[3]);
284 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400285 printf("libfdt fdt_delprop(): %s\n",
286 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400287 return err;
288 }
289 } else {
290 err = fdt_del_node(fdt, nodeoffset);
291 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400292 printf("libfdt fdt_del_node(): %s\n",
293 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400294 return err;
295 }
296 }
Kim Phillips99dffca2007-07-17 13:57:04 -0500297 }
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400298#ifdef CONFIG_OF_BOARD_SETUP
Kim Phillips99dffca2007-07-17 13:57:04 -0500299 /* Call the board-specific fixup routine */
300 else if (argv[1][0] == 'b')
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400301 ft_board_setup(fdt, gd->bd);
302#endif
Kim Phillips99dffca2007-07-17 13:57:04 -0500303 /* Create a chosen node */
304 else if (argv[1][0] == 'c')
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400305 fdt_chosen(fdt, 0, 0, 1);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400306
Kim Phillips99dffca2007-07-17 13:57:04 -0500307#ifdef CONFIG_OF_HAS_UBOOT_ENV
308 /* Create a u-boot-env node */
309 else if (argv[1][0] == 'e')
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400310 fdt_env(fdt);
Kim Phillips99dffca2007-07-17 13:57:04 -0500311#endif
312#ifdef CONFIG_OF_HAS_BD_T
313 /* Create a bd_t node */
314 else if (argv[1][0] == 'b')
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400315 fdt_bd_t(fdt);
Kim Phillips99dffca2007-07-17 13:57:04 -0500316#endif
317 else {
318 /* Unrecognized command */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400319 printf ("Usage:\n%s\n", cmdtp->usage);
320 return 1;
321 }
322
323 return 0;
324}
325
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400326/****************************************************************************/
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400327
328static int fdt_valid(void)
329{
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400330 int err;
331
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400332 if (fdt == NULL) {
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400333 printf ("The address of the fdt is invalid (NULL).\n");
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400334 return 0;
335 }
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400336
337 err = fdt_check_header(fdt);
338 if (err == 0)
339 return 1; /* valid */
340
341 if (err < 0) {
Gerald Van Baren25114032007-05-12 09:47:25 -0400342 printf("libfdt fdt_check_header(): %s", fdt_strerror(err));
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400343 /*
344 * Be more informative on bad version.
345 */
346 if (err == -FDT_ERR_BADVERSION) {
347 if (fdt_version(fdt) < FDT_FIRST_SUPPORTED_VERSION) {
348 printf (" - too old, fdt $d < %d",
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400349 fdt_version(fdt),
350 FDT_FIRST_SUPPORTED_VERSION);
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400351 fdt = NULL;
352 }
353 if (fdt_last_comp_version(fdt) > FDT_LAST_SUPPORTED_VERSION) {
354 printf (" - too new, fdt $d > %d",
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400355 fdt_version(fdt),
356 FDT_LAST_SUPPORTED_VERSION);
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400357 fdt = NULL;
358 }
359 return 0;
360 }
361 printf("\n");
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400362 return 0;
363 }
364 return 1;
365}
366
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400367/****************************************************************************/
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400368
369/*
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400370 * Parse the user's input, partially heuristic. Valid formats:
371 * <00> - hex byte
372 * <0011> - hex half word (16 bits)
373 * <00112233> - hex word (32 bits)
374 * - hex double words (64 bits) are not supported, must use
375 * a byte stream instead.
376 * [00 11 22 .. nn] - byte stream
377 * "string" - If the the value doesn't start with "<" or "[", it is
378 * treated as a string. Note that the quotes are
379 * stripped by the parser before we get the string.
380 */
381static int fdt_parse_prop(char *pathp, char *prop, char *newval,
382 char *data, int *len)
383{
384 char *cp; /* temporary char pointer */
385 unsigned long tmp; /* holds converted values */
386
387 if (*newval == '<') {
388 /*
389 * Bigger values than bytes.
390 */
391 *len = 0;
392 newval++;
393 while ((*newval != '>') && (*newval != '\0')) {
394 cp = newval;
395 tmp = simple_strtoul(cp, &newval, 16);
396 if ((newval - cp) <= 2) {
397 *data = tmp & 0xFF;
398 data += 1;
399 *len += 1;
400 } else if ((newval - cp) <= 4) {
401 *(uint16_t *)data = __cpu_to_be16(tmp);
402 data += 2;
403 *len += 2;
404 } else if ((newval - cp) <= 8) {
405 *(uint32_t *)data = __cpu_to_be32(tmp);
406 data += 4;
407 *len += 4;
408 } else {
409 printf("Sorry, I could not convert \"%s\"\n",
410 cp);
411 return 1;
412 }
413 while (*newval == ' ')
414 newval++;
415 }
416 if (*newval != '>') {
417 printf("Unexpected character '%c'\n", *newval);
418 return 1;
419 }
420 } else if (*newval == '[') {
421 /*
422 * Byte stream. Convert the values.
423 */
424 *len = 0;
425 newval++;
426 while ((*newval != ']') && (*newval != '\0')) {
427 tmp = simple_strtoul(newval, &newval, 16);
428 *data++ = tmp & 0xFF;
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400429 *len = *len + 1;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400430 while (*newval == ' ')
431 newval++;
432 }
433 if (*newval != ']') {
434 printf("Unexpected character '%c'\n", *newval);
435 return 1;
436 }
437 } else {
438 /*
439 * Assume it is a string. Copy it into our data area for
440 * convenience (including the terminating '\0').
441 */
442 *len = strlen(newval) + 1;
443 strcpy(data, newval);
444 }
445 return 0;
446}
447
448/****************************************************************************/
449
450/*
451 * Heuristic to guess if this is a string or concatenated strings.
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400452 */
453
454static int is_printable_string(const void *data, int len)
455{
456 const char *s = data;
457
458 /* zero length is not */
459 if (len == 0)
460 return 0;
461
462 /* must terminate with zero */
463 if (s[len - 1] != '\0')
464 return 0;
465
466 /* printable or a null byte (concatenated strings) */
467 while (((*s == '\0') || isprint(*s)) && (len > 0)) {
468 /*
469 * If we see a null, there are three possibilities:
470 * 1) If len == 1, it is the end of the string, printable
471 * 2) Next character also a null, not printable.
472 * 3) Next character not a null, continue to check.
473 */
474 if (s[0] == '\0') {
475 if (len == 1)
476 return 1;
477 if (s[1] == '\0')
478 return 0;
479 }
480 s++;
481 len--;
482 }
483
484 /* Not the null termination, or not done yet: not printable */
485 if (*s != '\0' || (len != 0))
486 return 0;
487
488 return 1;
489}
490
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400491
492/*
493 * Print the property in the best format, a heuristic guess. Print as
494 * a string, concatenated strings, a byte, word, double word, or (if all
495 * else fails) it is printed as a stream of bytes.
496 */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400497static void print_data(const void *data, int len)
498{
499 int j;
500 const u8 *s;
501
502 /* no data, don't print */
503 if (len == 0)
504 return;
505
506 /*
507 * It is a string, but it may have multiple strings (embedded '\0's).
508 */
509 if (is_printable_string(data, len)) {
510 puts("\"");
511 j = 0;
512 while (j < len) {
513 if (j > 0)
514 puts("\", \"");
515 puts(data);
516 j += strlen(data) + 1;
517 data += strlen(data) + 1;
518 }
519 puts("\"");
520 return;
521 }
522
523 switch (len) {
524 case 1: /* byte */
525 printf("<%02x>", (*(u8 *) data) & 0xff);
526 break;
527 case 2: /* half-word */
528 printf("<%04x>", be16_to_cpu(*(u16 *) data) & 0xffff);
529 break;
530 case 4: /* word */
531 printf("<%08x>", be32_to_cpu(*(u32 *) data) & 0xffffffffU);
532 break;
533 case 8: /* double-word */
534#if __WORDSIZE == 64
535 printf("<%016llx>", be64_to_cpu(*(uint64_t *) data));
536#else
537 printf("<%08x ", be32_to_cpu(*(u32 *) data) & 0xffffffffU);
538 data += 4;
539 printf("%08x>", be32_to_cpu(*(u32 *) data) & 0xffffffffU);
540#endif
541 break;
542 default: /* anything else... hexdump */
543 printf("[");
544 for (j = 0, s = data; j < len; j++)
545 printf("%02x%s", s[j], j < len - 1 ? " " : "");
546 printf("]");
547
548 break;
549 }
550}
551
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400552/****************************************************************************/
553
554/*
555 * Recursively print (a portion of) the fdt. The depth parameter
556 * determines how deeply nested the fdt is printed.
557 */
558static int fdt_print(char *pathp, char *prop, int depth)
559{
560 static int offstack[MAX_LEVEL];
561 static char tabs[MAX_LEVEL+1] =
562 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
563 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
564 void *nodep; /* property node pointer */
565 int nodeoffset; /* node offset from libfdt */
566 int nextoffset; /* next node offset from libfdt */
567 uint32_t tag; /* tag */
568 int len; /* length of the property */
569 int level = 0; /* keep track of nesting level */
570
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400571 nodeoffset = fdt_find_node_by_path (fdt, pathp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400572 if (nodeoffset < 0) {
573 /*
574 * Not found or something else bad happened.
575 */
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400576 printf ("libfdt fdt_find_node_by_path() returned %s\n",
577 fdt_strerror(nodeoffset));
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400578 return 1;
579 }
580 /*
581 * The user passed in a property as well as node path.
582 * Print only the given property and then return.
583 */
584 if (prop) {
585 nodep = fdt_getprop (fdt, nodeoffset, prop, &len);
586 if (len == 0) {
587 /* no property value */
588 printf("%s %s\n", pathp, prop);
589 return 0;
590 } else if (len > 0) {
591 printf("%s=", prop);
592 print_data (nodep, len);
593 printf("\n");
594 return 0;
595 } else {
596 printf ("libfdt fdt_getprop(): %s\n",
597 fdt_strerror(len));
598 return 1;
599 }
600 }
601
602 /*
603 * The user passed in a node path and no property,
604 * print the node and all subnodes.
605 */
606 offstack[0] = nodeoffset;
607
608 while(level >= 0) {
609 tag = fdt_next_tag(fdt, nodeoffset, &nextoffset, &pathp);
610 switch(tag) {
611 case FDT_BEGIN_NODE:
612 if(level <= depth)
613 printf("%s%s {\n",
614 &tabs[MAX_LEVEL - level], pathp);
615 level++;
616 offstack[level] = nodeoffset;
617 if (level >= MAX_LEVEL) {
618 printf("Aaaiii <splat> nested too deep. "
619 "Aborting.\n");
620 return 1;
621 }
622 break;
623 case FDT_END_NODE:
624 level--;
625 if(level <= depth)
626 printf("%s};\n", &tabs[MAX_LEVEL - level]);
627 if (level == 0) {
628 level = -1; /* exit the loop */
629 }
630 break;
631 case FDT_PROP:
632 nodep = fdt_getprop (fdt, offstack[level], pathp, &len);
633 if (len < 0) {
634 printf ("libfdt fdt_getprop(): %s\n",
635 fdt_strerror(len));
636 return 1;
637 } else if (len == 0) {
638 /* the property has no value */
639 if(level <= depth)
640 printf("%s%s;\n",
641 &tabs[MAX_LEVEL - level],
642 pathp);
643 } else {
644 if(level <= depth) {
645 printf("%s%s=",
646 &tabs[MAX_LEVEL - level],
647 pathp);
648 print_data (nodep, len);
649 printf(";\n");
650 }
651 }
652 break;
653 case FDT_NOP:
654 break;
655 case FDT_END:
656 return 1;
657 default:
658 if(level <= depth)
659 printf("Unknown tag 0x%08X\n", tag);
660 return 1;
661 }
662 nodeoffset = nextoffset;
663 }
664 return 0;
665}
666
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400667/********************************************************************/
668
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400669U_BOOT_CMD(
670 fdt, 5, 0, do_fdt,
671 "fdt - flattened device tree utility commands\n",
672 "addr <addr> [<length>] - Set the fdt location to <addr>\n"
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400673#ifdef CONFIG_OF_BOARD_SETUP
674 "fdt boardsetup - Do board-specific set up\n"
675#endif
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400676 "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr>\n"
677 "fdt print <path> [<prop>] - Recursive print starting at <path>\n"
678 "fdt list <path> [<prop>] - Print one level starting at <path>\n"
679 "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n"
680 "fdt mknode <path> <node> - Create a new node after <path>\n"
681 "fdt rm <path> [<prop>] - Delete the node or <property>\n"
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400682 "fdt chosen - Add/update the /chosen branch in the tree\n"
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400683#ifdef CONFIG_OF_HAS_UBOOT_ENV
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400684 "fdt env - Add/replace the /u-boot-env branch in the tree\n"
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400685#endif
686#ifdef CONFIG_OF_HAS_BD_T
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400687 "fdt bd_t - Add/replace the /bd_t branch in the tree\n"
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400688#endif
689 "Hints:\n"
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400690 " If the property you are setting/printing has a '#' character or spaces,\n"
691 " you MUST escape it with a \\ character or quote it with \".\n"
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400692 "Examples: fdt print / # print the whole tree\n"
693 " fdt print /cpus \"#address-cells\"\n"
694 " fdt set /cpus \"#address-cells\" \"[00 00 00 01]\"\n"
695);