]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_fdt.c
bootm: Set working fdt address as part of the bootm flow
[karo-tx-uboot.git] / common / cmd_fdt.c
1 /*
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>
31 #include <asm/global_data.h>
32 #include <fdt.h>
33 #include <libfdt.h>
34 #include <fdt_support.h>
35
36 #define MAX_LEVEL       32              /* how deeply nested we will go */
37 #define SCRATCHPAD      1024            /* bytes of scratchpad memory */
38
39 /*
40  * Global data (for the gd->bd)
41  */
42 DECLARE_GLOBAL_DATA_PTR;
43
44 static int fdt_valid(void);
45 static int fdt_parse_prop(char **newval, int count, char *data, int *len);
46 static int fdt_print(const char *pathp, char *prop, int depth);
47
48 /*
49  * The working_fdt points to our working flattened device tree.
50  */
51 struct fdt_header *working_fdt;
52
53 void set_working_fdt_addr(void *addr)
54 {
55         char buf[17];
56
57         working_fdt = addr;
58
59         sprintf(buf, "%lx", (unsigned long)addr);
60         setenv("fdtaddr", buf);
61 }
62
63 /*
64  * Flattened Device Tree command, see the help for parameter definitions.
65  */
66 int do_fdt (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
67 {
68         if (argc < 2) {
69                 printf ("Usage:\n%s\n", cmdtp->usage);
70                 return 1;
71         }
72
73         /********************************************************************
74          * Set the address of the fdt
75          ********************************************************************/
76         if (argv[1][0] == 'a') {
77                 unsigned long addr;
78                 /*
79                  * Set the address [and length] of the fdt.
80                  */
81                 if (argc == 2) {
82                         if (!fdt_valid()) {
83                                 return 1;
84                         }
85                         printf("The address of the fdt is %p\n", working_fdt);
86                         return 0;
87                 }
88
89                 addr = simple_strtoul(argv[2], NULL, 16);
90                 set_working_fdt_addr((void *)addr);
91
92                 if (!fdt_valid()) {
93                         return 1;
94                 }
95
96                 if (argc >= 4) {
97                         int  len;
98                         int  err;
99                         /*
100                          * Optional new length
101                          */
102                         len = simple_strtoul(argv[3], NULL, 16);
103                         if (len < fdt_totalsize(working_fdt)) {
104                                 printf ("New length %d < existing length %d, "
105                                         "ignoring.\n",
106                                         len, fdt_totalsize(working_fdt));
107                         } else {
108                                 /*
109                                  * Open in place with a new length.
110                                  */
111                                 err = fdt_open_into(working_fdt, working_fdt, len);
112                                 if (err != 0) {
113                                         printf ("libfdt fdt_open_into(): %s\n",
114                                                 fdt_strerror(err));
115                                 }
116                         }
117                 }
118
119         /********************************************************************
120          * Move the working_fdt
121          ********************************************************************/
122         } else if (strncmp(argv[1], "mo", 2) == 0) {
123                 struct fdt_header *newaddr;
124                 int  len;
125                 int  err;
126
127                 if (argc < 4) {
128                         printf ("Usage:\n%s\n", cmdtp->usage);
129                         return 1;
130                 }
131
132                 /*
133                  * Set the address and length of the fdt.
134                  */
135                 working_fdt = (struct fdt_header *)simple_strtoul(argv[2], NULL, 16);
136                 if (!fdt_valid()) {
137                         return 1;
138                 }
139
140                 newaddr = (struct fdt_header *)simple_strtoul(argv[3],NULL,16);
141
142                 /*
143                  * If the user specifies a length, use that.  Otherwise use the
144                  * current length.
145                  */
146                 if (argc <= 4) {
147                         len = fdt_totalsize(working_fdt);
148                 } else {
149                         len = simple_strtoul(argv[4], NULL, 16);
150                         if (len < fdt_totalsize(working_fdt)) {
151                                 printf ("New length 0x%X < existing length "
152                                         "0x%X, aborting.\n",
153                                         len, fdt_totalsize(working_fdt));
154                                 return 1;
155                         }
156                 }
157
158                 /*
159                  * Copy to the new location.
160                  */
161                 err = fdt_open_into(working_fdt, newaddr, len);
162                 if (err != 0) {
163                         printf ("libfdt fdt_open_into(): %s\n",
164                                 fdt_strerror(err));
165                         return 1;
166                 }
167                 working_fdt = newaddr;
168
169         /********************************************************************
170          * Make a new node
171          ********************************************************************/
172         } else if (strncmp(argv[1], "mk", 2) == 0) {
173                 char *pathp;            /* path */
174                 char *nodep;            /* new node to add */
175                 int  nodeoffset;        /* node offset from libfdt */
176                 int  err;
177
178                 /*
179                  * Parameters: Node path, new node to be appended to the path.
180                  */
181                 if (argc < 4) {
182                         printf ("Usage:\n%s\n", cmdtp->usage);
183                         return 1;
184                 }
185
186                 pathp = argv[2];
187                 nodep = argv[3];
188
189                 nodeoffset = fdt_path_offset (working_fdt, pathp);
190                 if (nodeoffset < 0) {
191                         /*
192                          * Not found or something else bad happened.
193                          */
194                         printf ("libfdt fdt_path_offset() returned %s\n",
195                                 fdt_strerror(nodeoffset));
196                         return 1;
197                 }
198                 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
199                 if (err < 0) {
200                         printf ("libfdt fdt_add_subnode(): %s\n",
201                                 fdt_strerror(err));
202                         return 1;
203                 }
204
205         /********************************************************************
206          * Set the value of a property in the working_fdt.
207          ********************************************************************/
208         } else if (argv[1][0] == 's') {
209                 char *pathp;            /* path */
210                 char *prop;             /* property */
211                 int  nodeoffset;        /* node offset from libfdt */
212                 static char data[SCRATCHPAD];   /* storage for the property */
213                 int  len;               /* new length of the property */
214                 int  ret;               /* return value */
215
216                 /*
217                  * Parameters: Node path, property, optional value.
218                  */
219                 if (argc < 4) {
220                         printf ("Usage:\n%s\n", cmdtp->usage);
221                         return 1;
222                 }
223
224                 pathp  = argv[2];
225                 prop   = argv[3];
226                 if (argc == 4) {
227                         len = 0;
228                 } else {
229                         ret = fdt_parse_prop(&argv[4], argc - 4, data, &len);
230                         if (ret != 0)
231                                 return ret;
232                 }
233
234                 nodeoffset = fdt_path_offset (working_fdt, pathp);
235                 if (nodeoffset < 0) {
236                         /*
237                          * Not found or something else bad happened.
238                          */
239                         printf ("libfdt fdt_path_offset() returned %s\n",
240                                 fdt_strerror(nodeoffset));
241                         return 1;
242                 }
243
244                 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
245                 if (ret < 0) {
246                         printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
247                         return 1;
248                 }
249
250         /********************************************************************
251          * Print (recursive) / List (single level)
252          ********************************************************************/
253         } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
254                 int depth = MAX_LEVEL;  /* how deep to print */
255                 char *pathp;            /* path */
256                 char *prop;             /* property */
257                 int  ret;               /* return value */
258                 static char root[2] = "/";
259
260                 /*
261                  * list is an alias for print, but limited to 1 level
262                  */
263                 if (argv[1][0] == 'l') {
264                         depth = 1;
265                 }
266
267                 /*
268                  * Get the starting path.  The root node is an oddball,
269                  * the offset is zero and has no name.
270                  */
271                 if (argc == 2)
272                         pathp = root;
273                 else
274                         pathp = argv[2];
275                 if (argc > 3)
276                         prop = argv[3];
277                 else
278                         prop = NULL;
279
280                 ret = fdt_print(pathp, prop, depth);
281                 if (ret != 0)
282                         return ret;
283
284         /********************************************************************
285          * Remove a property/node
286          ********************************************************************/
287         } else if (strncmp(argv[1], "rm", 2) == 0) {
288                 int  nodeoffset;        /* node offset from libfdt */
289                 int  err;
290
291                 /*
292                  * Get the path.  The root node is an oddball, the offset
293                  * is zero and has no name.
294                  */
295                 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
296                 if (nodeoffset < 0) {
297                         /*
298                          * Not found or something else bad happened.
299                          */
300                         printf ("libfdt fdt_path_offset() returned %s\n",
301                                 fdt_strerror(nodeoffset));
302                         return 1;
303                 }
304                 /*
305                  * Do the delete.  A fourth parameter means delete a property,
306                  * otherwise delete the node.
307                  */
308                 if (argc > 3) {
309                         err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
310                         if (err < 0) {
311                                 printf("libfdt fdt_delprop():  %s\n",
312                                         fdt_strerror(err));
313                                 return err;
314                         }
315                 } else {
316                         err = fdt_del_node(working_fdt, nodeoffset);
317                         if (err < 0) {
318                                 printf("libfdt fdt_del_node():  %s\n",
319                                         fdt_strerror(err));
320                                 return err;
321                         }
322                 }
323
324         /********************************************************************
325          * Display header info
326          ********************************************************************/
327         } else if (argv[1][0] == 'h') {
328                 u32 version = fdt_version(working_fdt);
329                 printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt));
330                 printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt),
331                        fdt_totalsize(working_fdt));
332                 printf("off_dt_struct:\t\t0x%x\n",
333                        fdt_off_dt_struct(working_fdt));
334                 printf("off_dt_strings:\t\t0x%x\n",
335                        fdt_off_dt_strings(working_fdt));
336                 printf("off_mem_rsvmap:\t\t0x%x\n",
337                        fdt_off_mem_rsvmap(working_fdt));
338                 printf("version:\t\t%d\n", version);
339                 printf("last_comp_version:\t%d\n",
340                        fdt_last_comp_version(working_fdt));
341                 if (version >= 2)
342                         printf("boot_cpuid_phys:\t0x%x\n",
343                                 fdt_boot_cpuid_phys(working_fdt));
344                 if (version >= 3)
345                         printf("size_dt_strings:\t0x%x\n",
346                                 fdt_size_dt_strings(working_fdt));
347                 if (version >= 17)
348                         printf("size_dt_struct:\t\t0x%x\n",
349                                 fdt_size_dt_struct(working_fdt));
350                 printf("number mem_rsv:\t\t0x%x\n",
351                        fdt_num_mem_rsv(working_fdt));
352                 printf("\n");
353
354         /********************************************************************
355          * Set boot cpu id
356          ********************************************************************/
357         } else if (strncmp(argv[1], "boo", 3) == 0) {
358                 unsigned long tmp = simple_strtoul(argv[2], NULL, 16);
359                 fdt_set_boot_cpuid_phys(working_fdt, tmp);
360
361         /********************************************************************
362          * memory command
363          ********************************************************************/
364         } else if (strncmp(argv[1], "me", 2) == 0) {
365                 uint64_t addr, size;
366                 int err;
367 #ifdef CFG_64BIT_STRTOUL
368                         addr = simple_strtoull(argv[2], NULL, 16);
369                         size = simple_strtoull(argv[3], NULL, 16);
370 #else
371                         addr = simple_strtoul(argv[2], NULL, 16);
372                         size = simple_strtoul(argv[3], NULL, 16);
373 #endif
374                 err = fdt_fixup_memory(working_fdt, addr, size);
375                 if (err < 0)
376                         return err;
377
378         /********************************************************************
379          * mem reserve commands
380          ********************************************************************/
381         } else if (strncmp(argv[1], "rs", 2) == 0) {
382                 if (argv[2][0] == 'p') {
383                         uint64_t addr, size;
384                         int total = fdt_num_mem_rsv(working_fdt);
385                         int j, err;
386                         printf("index\t\t   start\t\t    size\n");
387                         printf("-------------------------------"
388                                 "-----------------\n");
389                         for (j = 0; j < total; j++) {
390                                 err = fdt_get_mem_rsv(working_fdt, j, &addr, &size);
391                                 if (err < 0) {
392                                         printf("libfdt fdt_get_mem_rsv():  %s\n",
393                                                         fdt_strerror(err));
394                                         return err;
395                                 }
396                                 printf("    %x\t%08x%08x\t%08x%08x\n", j,
397                                         (u32)(addr >> 32),
398                                         (u32)(addr & 0xffffffff),
399                                         (u32)(size >> 32),
400                                         (u32)(size & 0xffffffff));
401                         }
402                 } else if (argv[2][0] == 'a') {
403                         uint64_t addr, size;
404                         int err;
405 #ifdef CFG_64BIT_STRTOUL
406                         addr = simple_strtoull(argv[3], NULL, 16);
407                         size = simple_strtoull(argv[4], NULL, 16);
408 #else
409                         addr = simple_strtoul(argv[3], NULL, 16);
410                         size = simple_strtoul(argv[4], NULL, 16);
411 #endif
412                         err = fdt_add_mem_rsv(working_fdt, addr, size);
413
414                         if (err < 0) {
415                                 printf("libfdt fdt_add_mem_rsv():  %s\n",
416                                         fdt_strerror(err));
417                                 return err;
418                         }
419                 } else if (argv[2][0] == 'd') {
420                         unsigned long idx = simple_strtoul(argv[3], NULL, 16);
421                         int err = fdt_del_mem_rsv(working_fdt, idx);
422
423                         if (err < 0) {
424                                 printf("libfdt fdt_del_mem_rsv():  %s\n",
425                                         fdt_strerror(err));
426                                 return err;
427                         }
428                 } else {
429                         /* Unrecognized command */
430                         printf ("Usage:\n%s\n", cmdtp->usage);
431                         return 1;
432                 }
433         }
434 #ifdef CONFIG_OF_BOARD_SETUP
435         /* Call the board-specific fixup routine */
436         else if (strncmp(argv[1], "boa", 3) == 0)
437                 ft_board_setup(working_fdt, gd->bd);
438 #endif
439         /* Create a chosen node */
440         else if (argv[1][0] == 'c') {
441                 unsigned long initrd_start = 0, initrd_end = 0;
442
443                 if ((argc != 2) && (argc != 4)) {
444                         printf ("Usage:\n%s\n", cmdtp->usage);
445                         return 1;
446                 }
447
448                 if (argc == 4) {
449                         initrd_start = simple_strtoul(argv[2], NULL, 16);
450                         initrd_end = simple_strtoul(argv[3], NULL, 16);
451                 }
452
453                 fdt_chosen(working_fdt, initrd_start, initrd_end, 1);
454         } else {
455                 /* Unrecognized command */
456                 printf ("Usage:\n%s\n", cmdtp->usage);
457                 return 1;
458         }
459
460         return 0;
461 }
462
463 /****************************************************************************/
464
465 static int fdt_valid(void)
466 {
467         int  err;
468
469         if (working_fdt == NULL) {
470                 printf ("The address of the fdt is invalid (NULL).\n");
471                 return 0;
472         }
473
474         err = fdt_check_header(working_fdt);
475         if (err == 0)
476                 return 1;       /* valid */
477
478         if (err < 0) {
479                 printf("libfdt fdt_check_header(): %s", fdt_strerror(err));
480                 /*
481                  * Be more informative on bad version.
482                  */
483                 if (err == -FDT_ERR_BADVERSION) {
484                         if (fdt_version(working_fdt) <
485                             FDT_FIRST_SUPPORTED_VERSION) {
486                                 printf (" - too old, fdt %d < %d",
487                                         fdt_version(working_fdt),
488                                         FDT_FIRST_SUPPORTED_VERSION);
489                                 working_fdt = NULL;
490                         }
491                         if (fdt_last_comp_version(working_fdt) >
492                             FDT_LAST_SUPPORTED_VERSION) {
493                                 printf (" - too new, fdt %d > %d",
494                                         fdt_version(working_fdt),
495                                         FDT_LAST_SUPPORTED_VERSION);
496                                 working_fdt = NULL;
497                         }
498                         return 0;
499                 }
500                 printf("\n");
501                 return 0;
502         }
503         return 1;
504 }
505
506 /****************************************************************************/
507
508 /*
509  * Parse the user's input, partially heuristic.  Valid formats:
510  * <0x00112233 4 05>    - an array of cells.  Numbers follow standard
511  *                      C conventions.
512  * [00 11 22 .. nn] - byte stream
513  * "string"     - If the the value doesn't start with "<" or "[", it is
514  *                      treated as a string.  Note that the quotes are
515  *                      stripped by the parser before we get the string.
516  * newval: An array of strings containing the new property as specified
517  *      on the command line
518  * count: The number of strings in the array
519  * data: A bytestream to be placed in the property
520  * len: The length of the resulting bytestream
521  */
522 static int fdt_parse_prop(char **newval, int count, char *data, int *len)
523 {
524         char *cp;               /* temporary char pointer */
525         char *newp;             /* temporary newval char pointer */
526         unsigned long tmp;      /* holds converted values */
527         int stridx = 0;
528
529         *len = 0;
530         newp = newval[0];
531
532         /* An array of cells */
533         if (*newp == '<') {
534                 newp++;
535                 while ((*newp != '>') && (stridx < count)) {
536                         /*
537                          * Keep searching until we find that last ">"
538                          * That way users don't have to escape the spaces
539                          */
540                         if (*newp == '\0') {
541                                 newp = newval[++stridx];
542                                 continue;
543                         }
544
545                         cp = newp;
546                         tmp = simple_strtoul(cp, &newp, 0);
547                         *(uint32_t *)data = __cpu_to_be32(tmp);
548                         data  += 4;
549                         *len += 4;
550
551                         /* If the ptr didn't advance, something went wrong */
552                         if ((newp - cp) <= 0) {
553                                 printf("Sorry, I could not convert \"%s\"\n",
554                                         cp);
555                                 return 1;
556                         }
557
558                         while (*newp == ' ')
559                                 newp++;
560                 }
561
562                 if (*newp != '>') {
563                         printf("Unexpected character '%c'\n", *newp);
564                         return 1;
565                 }
566         } else if (*newp == '[') {
567                 /*
568                  * Byte stream.  Convert the values.
569                  */
570                 newp++;
571                 while ((*newp != ']') && (stridx < count)) {
572                         tmp = simple_strtoul(newp, &newp, 16);
573                         *data++ = tmp & 0xFF;
574                         *len    = *len + 1;
575                         while (*newp == ' ')
576                                 newp++;
577                         if (*newp != '\0')
578                                 newp = newval[++stridx];
579                 }
580                 if (*newp != ']') {
581                         printf("Unexpected character '%c'\n", *newp);
582                         return 1;
583                 }
584         } else {
585                 /*
586                  * Assume it is a string.  Copy it into our data area for
587                  * convenience (including the terminating '\0').
588                  */
589                 while (stridx < count) {
590                         *len = strlen(newp) + 1;
591                         strcpy(data, newp);
592                         newp = newval[++stridx];
593                 }
594         }
595         return 0;
596 }
597
598 /****************************************************************************/
599
600 /*
601  * Heuristic to guess if this is a string or concatenated strings.
602  */
603
604 static int is_printable_string(const void *data, int len)
605 {
606         const char *s = data;
607
608         /* zero length is not */
609         if (len == 0)
610                 return 0;
611
612         /* must terminate with zero */
613         if (s[len - 1] != '\0')
614                 return 0;
615
616         /* printable or a null byte (concatenated strings) */
617         while (((*s == '\0') || isprint(*s)) && (len > 0)) {
618                 /*
619                  * If we see a null, there are three possibilities:
620                  * 1) If len == 1, it is the end of the string, printable
621                  * 2) Next character also a null, not printable.
622                  * 3) Next character not a null, continue to check.
623                  */
624                 if (s[0] == '\0') {
625                         if (len == 1)
626                                 return 1;
627                         if (s[1] == '\0')
628                                 return 0;
629                 }
630                 s++;
631                 len--;
632         }
633
634         /* Not the null termination, or not done yet: not printable */
635         if (*s != '\0' || (len != 0))
636                 return 0;
637
638         return 1;
639 }
640
641
642 /*
643  * Print the property in the best format, a heuristic guess.  Print as
644  * a string, concatenated strings, a byte, word, double word, or (if all
645  * else fails) it is printed as a stream of bytes.
646  */
647 static void print_data(const void *data, int len)
648 {
649         int j;
650
651         /* no data, don't print */
652         if (len == 0)
653                 return;
654
655         /*
656          * It is a string, but it may have multiple strings (embedded '\0's).
657          */
658         if (is_printable_string(data, len)) {
659                 puts("\"");
660                 j = 0;
661                 while (j < len) {
662                         if (j > 0)
663                                 puts("\", \"");
664                         puts(data);
665                         j    += strlen(data) + 1;
666                         data += strlen(data) + 1;
667                 }
668                 puts("\"");
669                 return;
670         }
671
672         if ((len %4) == 0) {
673                 const u32 *p;
674
675                 printf("<");
676                 for (j = 0, p = data; j < len/4; j ++)
677                         printf("0x%x%s", p[j], j < (len/4 - 1) ? " " : "");
678                 printf(">");
679         } else { /* anything else... hexdump */
680                 const u8 *s;
681
682                 printf("[");
683                 for (j = 0, s = data; j < len; j++)
684                         printf("%02x%s", s[j], j < len - 1 ? " " : "");
685                 printf("]");
686         }
687 }
688
689 /****************************************************************************/
690
691 /*
692  * Recursively print (a portion of) the working_fdt.  The depth parameter
693  * determines how deeply nested the fdt is printed.
694  */
695 static int fdt_print(const char *pathp, char *prop, int depth)
696 {
697         static char tabs[MAX_LEVEL+1] =
698                 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
699                 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
700         const void *nodep;      /* property node pointer */
701         int  nodeoffset;        /* node offset from libfdt */
702         int  nextoffset;        /* next node offset from libfdt */
703         uint32_t tag;           /* tag */
704         int  len;               /* length of the property */
705         int  level = 0;         /* keep track of nesting level */
706         const struct fdt_property *fdt_prop;
707
708         nodeoffset = fdt_path_offset (working_fdt, pathp);
709         if (nodeoffset < 0) {
710                 /*
711                  * Not found or something else bad happened.
712                  */
713                 printf ("libfdt fdt_path_offset() returned %s\n",
714                         fdt_strerror(nodeoffset));
715                 return 1;
716         }
717         /*
718          * The user passed in a property as well as node path.
719          * Print only the given property and then return.
720          */
721         if (prop) {
722                 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
723                 if (len == 0) {
724                         /* no property value */
725                         printf("%s %s\n", pathp, prop);
726                         return 0;
727                 } else if (len > 0) {
728                         printf("%s = ", prop);
729                         print_data (nodep, len);
730                         printf("\n");
731                         return 0;
732                 } else {
733                         printf ("libfdt fdt_getprop(): %s\n",
734                                 fdt_strerror(len));
735                         return 1;
736                 }
737         }
738
739         /*
740          * The user passed in a node path and no property,
741          * print the node and all subnodes.
742          */
743         while(level >= 0) {
744                 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
745                 switch(tag) {
746                 case FDT_BEGIN_NODE:
747                         pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
748                         if (level <= depth) {
749                                 if (pathp == NULL)
750                                         pathp = "/* NULL pointer error */";
751                                 if (*pathp == '\0')
752                                         pathp = "/";    /* root is nameless */
753                                 printf("%s%s {\n",
754                                         &tabs[MAX_LEVEL - level], pathp);
755                         }
756                         level++;
757                         if (level >= MAX_LEVEL) {
758                                 printf("Nested too deep, aborting.\n");
759                                 return 1;
760                         }
761                         break;
762                 case FDT_END_NODE:
763                         level--;
764                         if (level <= depth)
765                                 printf("%s};\n", &tabs[MAX_LEVEL - level]);
766                         if (level == 0) {
767                                 level = -1;             /* exit the loop */
768                         }
769                         break;
770                 case FDT_PROP:
771                         fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
772                                         sizeof(*fdt_prop));
773                         pathp    = fdt_string(working_fdt,
774                                         fdt32_to_cpu(fdt_prop->nameoff));
775                         len      = fdt32_to_cpu(fdt_prop->len);
776                         nodep    = fdt_prop->data;
777                         if (len < 0) {
778                                 printf ("libfdt fdt_getprop(): %s\n",
779                                         fdt_strerror(len));
780                                 return 1;
781                         } else if (len == 0) {
782                                 /* the property has no value */
783                                 if (level <= depth)
784                                         printf("%s%s;\n",
785                                                 &tabs[MAX_LEVEL - level],
786                                                 pathp);
787                         } else {
788                                 if (level <= depth) {
789                                         printf("%s%s = ",
790                                                 &tabs[MAX_LEVEL - level],
791                                                 pathp);
792                                         print_data (nodep, len);
793                                         printf(";\n");
794                                 }
795                         }
796                         break;
797                 case FDT_NOP:
798                         printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
799                         break;
800                 case FDT_END:
801                         return 1;
802                 default:
803                         if (level <= depth)
804                                 printf("Unknown tag 0x%08X\n", tag);
805                         return 1;
806                 }
807                 nodeoffset = nextoffset;
808         }
809         return 0;
810 }
811
812 /********************************************************************/
813
814 U_BOOT_CMD(
815         fdt,    255,    0,      do_fdt,
816         "fdt     - flattened device tree utility commands\n",
817             "addr   <addr> [<length>]        - Set the fdt location to <addr>\n"
818 #ifdef CONFIG_OF_BOARD_SETUP
819         "fdt boardsetup                      - Do board-specific set up\n"
820 #endif
821         "fdt move   <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n"
822         "fdt print  <path> [<prop>]          - Recursive print starting at <path>\n"
823         "fdt list   <path> [<prop>]          - Print one level starting at <path>\n"
824         "fdt set    <path> <prop> [<val>]    - Set <property> [to <val>]\n"
825         "fdt mknode <path> <node>            - Create a new node after <path>\n"
826         "fdt rm     <path> [<prop>]          - Delete the node or <property>\n"
827         "fdt header                          - Display header info\n"
828         "fdt bootcpu <id>                    - Set boot cpuid\n"
829         "fdt memory <addr> <size>            - Add/Update memory node\n"
830         "fdt rsvmem print                    - Show current mem reserves\n"
831         "fdt rsvmem add <addr> <size>        - Add a mem reserve\n"
832         "fdt rsvmem delete <index>           - Delete a mem reserves\n"
833         "fdt chosen [<start> <end>]          - Add/update the /chosen branch in the tree\n"
834         "                                        <start>/<end> - initrd start/end addr\n"
835         "NOTE: Dereference aliases by omiting the leading '/', "
836                 "e.g. fdt print ethernet0.\n"
837 );