cmd: bootefi: allocate device-tree copy from high memory
[platform/kernel/u-boot.git] / cmd / fdt.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2007
4  * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com
5  * Based on code written by:
6  *   Pantelis Antoniou <pantelis.antoniou@gmail.com> and
7  *   Matthew McClintock <msm@freescale.com>
8  */
9
10 #include <common.h>
11 #include <command.h>
12 #include <env.h>
13 #include <image.h>
14 #include <linux/ctype.h>
15 #include <linux/types.h>
16 #include <asm/global_data.h>
17 #include <linux/libfdt.h>
18 #include <fdt_support.h>
19 #include <mapmem.h>
20 #include <asm/io.h>
21
22 #define MAX_LEVEL       32              /* how deeply nested we will go */
23 #define SCRATCHPAD      1024            /* bytes of scratchpad memory */
24
25 /*
26  * Global data (for the gd->bd)
27  */
28 DECLARE_GLOBAL_DATA_PTR;
29
30 static int fdt_parse_prop(char *const*newval, int count, char *data, int *len);
31 static int fdt_print(const char *pathp, char *prop, int depth);
32 static int is_printable_string(const void *data, int len);
33
34 /*
35  * The working_fdt points to our working flattened device tree.
36  */
37 struct fdt_header *working_fdt;
38
39 void set_working_fdt_addr(ulong addr)
40 {
41         void *buf;
42
43         printf("Working FDT set to %lx\n", addr);
44         buf = map_sysmem(addr, 0);
45         working_fdt = buf;
46         env_set_hex("fdtaddr", addr);
47 }
48
49 /*
50  * Get a value from the fdt and format it to be set in the environment
51  */
52 static int fdt_value_env_set(const void *nodep, int len,
53                              const char *var, int index)
54 {
55         if (is_printable_string(nodep, len)) {
56                 const char *nodec = (const char *)nodep;
57                 int i;
58
59                 /*
60                  * Iterate over all members in stringlist and find the one at
61                  * offset $index. If no such index exists, indicate failure.
62                  */
63                 for (i = 0; i < len; ) {
64                         if (index-- > 0) {
65                                 i += strlen(nodec) + 1;
66                                 nodec += strlen(nodec) + 1;
67                                 continue;
68                         }
69
70                         env_set(var, nodec);
71                         return 0;
72                 }
73
74                 return 1;
75         } else if (len == 4) {
76                 char buf[11];
77
78                 sprintf(buf, "0x%08X", fdt32_to_cpu(*(fdt32_t *)nodep));
79                 env_set(var, buf);
80         } else if (len % 4 == 0 && index >= 0) {
81                 /* Needed to print integer arrays. */
82                 const unsigned int *nodec = (const unsigned int *)nodep;
83                 char buf[11];
84
85                 if (index * 4 >= len)
86                         return 1;
87
88                 sprintf(buf, "0x%08X", fdt32_to_cpu(*(nodec + index)));
89                 env_set(var, buf);
90         } else if (len % 4 == 0 && len <= 20) {
91                 /* Needed to print things like sha1 hashes. */
92                 char buf[41];
93                 int i;
94
95                 for (i = 0; i < len; i += sizeof(unsigned int))
96                         sprintf(buf + (i * 2), "%08x",
97                                 *(unsigned int *)(nodep + i));
98                 env_set(var, buf);
99         } else {
100                 printf("error: unprintable value\n");
101                 return 1;
102         }
103         return 0;
104 }
105
106 static const char * const fdt_member_table[] = {
107         "magic",
108         "totalsize",
109         "off_dt_struct",
110         "off_dt_strings",
111         "off_mem_rsvmap",
112         "version",
113         "last_comp_version",
114         "boot_cpuid_phys",
115         "size_dt_strings",
116         "size_dt_struct",
117 };
118
119 static int fdt_get_header_value(int argc, char *const argv[])
120 {
121         fdt32_t *fdtp = (fdt32_t *)working_fdt;
122         ulong val;
123         int i;
124
125         if (argv[2][0] != 'g')
126                 return CMD_RET_FAILURE;
127
128         for (i = 0; i < ARRAY_SIZE(fdt_member_table); i++) {
129                 if (strcmp(fdt_member_table[i], argv[4]))
130                         continue;
131
132                 val = fdt32_to_cpu(fdtp[i]);
133                 env_set_hex(argv[3], val);
134                 return CMD_RET_SUCCESS;
135         }
136
137         return CMD_RET_FAILURE;
138 }
139
140 /*
141  * Flattened Device Tree command, see the help for parameter definitions.
142  */
143 static int do_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
144 {
145         if (argc < 2)
146                 return CMD_RET_USAGE;
147
148         /* fdt addr: Set the address of the fdt */
149         if (strncmp(argv[1], "ad", 2) == 0) {
150                 unsigned long addr;
151                 int control = 0;
152                 int quiet = 0;
153                 struct fdt_header *blob;
154
155                 /* Set the address [and length] of the fdt */
156                 argc -= 2;
157                 argv += 2;
158                 while (argc > 0 && **argv == '-') {
159                         char *arg = *argv;
160
161                         while (*++arg) {
162                                 switch (*arg) {
163                                 case 'c':
164                                         control = 1;
165                                         break;
166                                 case 'q':
167                                         quiet = 1;
168                                         break;
169                                 default:
170                                         return CMD_RET_USAGE;
171                                 }
172                         }
173                         argc--;
174                         argv++;
175                 }
176                 if (argc == 0) {
177                         if (control)
178                                 blob = (struct fdt_header *)gd->fdt_blob;
179                         else
180                                 blob = working_fdt;
181                         if (!blob || !fdt_valid(&blob))
182                                 return 1;
183                         printf("%s fdt: %08lx\n",
184                                control ? "Control" : "Working",
185                                control ? (ulong)map_to_sysmem(blob) :
186                                env_get_hex("fdtaddr", 0));
187                         return 0;
188                 }
189
190                 addr = hextoul(argv[0], NULL);
191                 blob = map_sysmem(addr, 0);
192                 if ((quiet && fdt_check_header(blob)) ||
193                     (!quiet && !fdt_valid(&blob)))
194                         return 1;
195                 if (control)
196                         gd->fdt_blob = blob;
197                 else
198                         set_working_fdt_addr(addr);
199
200                 if (argc >= 2) {
201                         int  len;
202                         int  err;
203
204                         /* Optional new length */
205                         len = hextoul(argv[1], NULL);
206                         if (len < fdt_totalsize(blob)) {
207                                 if (!quiet)
208                                         printf("New length %d < existing length %d, ignoring\n",
209                                                len, fdt_totalsize(blob));
210                         } else {
211                                 /* Open in place with a new length */
212                                 err = fdt_open_into(blob, blob, len);
213                                 if (!quiet && err != 0) {
214                                         printf("libfdt fdt_open_into(): %s\n",
215                                                fdt_strerror(err));
216                                 }
217                         }
218                 }
219
220                 return CMD_RET_SUCCESS;
221
222         /*
223          * Move the working_fdt
224          */
225         } else if (strncmp(argv[1], "mo", 2) == 0) {
226                 struct fdt_header *newaddr;
227                 int  len;
228                 int  err;
229
230                 if (argc < 4)
231                         return CMD_RET_USAGE;
232
233                 /*
234                  * Set the address and length of the fdt.
235                  */
236                 working_fdt = map_sysmem(hextoul(argv[2], NULL), 0);
237                 if (!fdt_valid(&working_fdt))
238                         return 1;
239
240                 newaddr = map_sysmem(hextoul(argv[3], NULL), 0);
241
242                 /*
243                  * If the user specifies a length, use that.  Otherwise use the
244                  * current length.
245                  */
246                 if (argc <= 4) {
247                         len = fdt_totalsize(working_fdt);
248                 } else {
249                         len = hextoul(argv[4], NULL);
250                         if (len < fdt_totalsize(working_fdt)) {
251                                 printf ("New length 0x%X < existing length "
252                                         "0x%X, aborting.\n",
253                                         len, fdt_totalsize(working_fdt));
254                                 return 1;
255                         }
256                 }
257
258                 /*
259                  * Copy to the new location.
260                  */
261                 err = fdt_open_into(working_fdt, newaddr, len);
262                 if (err != 0) {
263                         printf ("libfdt fdt_open_into(): %s\n",
264                                 fdt_strerror(err));
265                         return 1;
266                 }
267                 set_working_fdt_addr(map_to_sysmem(newaddr));
268
269                 return CMD_RET_SUCCESS;
270         }
271
272         if (!working_fdt) {
273                 puts("No FDT memory address configured. Please configure\n"
274                      "the FDT address via \"fdt addr <address>\" command.\n"
275                      "Aborting!\n");
276                 return CMD_RET_FAILURE;
277         }
278
279 #ifdef CONFIG_OF_SYSTEM_SETUP
280         /* Call the board-specific fixup routine */
281         if (strncmp(argv[1], "sys", 3) == 0) {
282                 int err = ft_system_setup(working_fdt, gd->bd);
283
284                 if (err) {
285                         printf("Failed to add system information to FDT: %s\n",
286                                fdt_strerror(err));
287                         return CMD_RET_FAILURE;
288                 }
289
290                 return CMD_RET_SUCCESS;
291         }
292 #endif
293         /*
294          * Make a new node
295          */
296         if (strncmp(argv[1], "mk", 2) == 0) {
297                 char *pathp;            /* path */
298                 char *nodep;            /* new node to add */
299                 int  nodeoffset;        /* node offset from libfdt */
300                 int  err;
301
302                 /*
303                  * Parameters: Node path, new node to be appended to the path.
304                  */
305                 if (argc < 4)
306                         return CMD_RET_USAGE;
307
308                 pathp = argv[2];
309                 nodep = argv[3];
310
311                 nodeoffset = fdt_path_offset (working_fdt, pathp);
312                 if (nodeoffset < 0) {
313                         /*
314                          * Not found or something else bad happened.
315                          */
316                         printf ("libfdt fdt_path_offset() returned %s\n",
317                                 fdt_strerror(nodeoffset));
318                         return 1;
319                 }
320                 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
321                 if (err < 0) {
322                         printf ("libfdt fdt_add_subnode(): %s\n",
323                                 fdt_strerror(err));
324                         return 1;
325                 }
326
327         /*
328          * Set the value of a property in the working_fdt.
329          */
330         } else if (strncmp(argv[1], "se", 2) == 0) {
331                 char *pathp;            /* path */
332                 char *prop;             /* property */
333                 int  nodeoffset;        /* node offset from libfdt */
334                 static char data[SCRATCHPAD] __aligned(4);/* property storage */
335                 const void *ptmp;
336                 int  len;               /* new length of the property */
337                 int  ret;               /* return value */
338
339                 /*
340                  * Parameters: Node path, property, optional value.
341                  */
342                 if (argc < 4)
343                         return CMD_RET_USAGE;
344
345                 pathp  = argv[2];
346                 prop   = argv[3];
347
348                 nodeoffset = fdt_path_offset (working_fdt, pathp);
349                 if (nodeoffset < 0) {
350                         /*
351                          * Not found or something else bad happened.
352                          */
353                         printf ("libfdt fdt_path_offset() returned %s\n",
354                                 fdt_strerror(nodeoffset));
355                         return 1;
356                 }
357
358                 if (argc == 4) {
359                         len = 0;
360                 } else {
361                         ptmp = fdt_getprop(working_fdt, nodeoffset, prop, &len);
362                         if (len > SCRATCHPAD) {
363                                 printf("prop (%d) doesn't fit in scratchpad!\n",
364                                        len);
365                                 return 1;
366                         }
367                         if (ptmp != NULL)
368                                 memcpy(data, ptmp, len);
369
370                         ret = fdt_parse_prop(&argv[4], argc - 4, data, &len);
371                         if (ret != 0)
372                                 return ret;
373                 }
374
375                 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
376                 if (ret < 0) {
377                         printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
378                         return 1;
379                 }
380
381         /********************************************************************
382          * Get the value of a property in the working_fdt.
383          ********************************************************************/
384         } else if (argv[1][0] == 'g') {
385                 char *subcmd;           /* sub-command */
386                 char *pathp;            /* path */
387                 char *prop;             /* property */
388                 char *var;              /* variable to store result */
389                 int  nodeoffset;        /* node offset from libfdt */
390                 const void *nodep;      /* property node pointer */
391                 int  len = 0;           /* new length of the property */
392
393                 /*
394                  * Parameters: Node path, property, optional value.
395                  */
396                 if (argc < 5)
397                         return CMD_RET_USAGE;
398
399                 subcmd = argv[2];
400
401                 if (argc < 6 && subcmd[0] != 's')
402                         return CMD_RET_USAGE;
403
404                 var    = argv[3];
405                 pathp  = argv[4];
406                 prop   = argv[5];
407
408                 nodeoffset = fdt_path_offset(working_fdt, pathp);
409                 if (nodeoffset < 0) {
410                         /*
411                          * Not found or something else bad happened.
412                          */
413                         printf("libfdt fdt_path_offset() returned %s\n",
414                                 fdt_strerror(nodeoffset));
415                         return 1;
416                 }
417
418                 if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) {
419                         int req_index = -1;
420                         int startDepth = fdt_node_depth(
421                                 working_fdt, nodeoffset);
422                         int curDepth = startDepth;
423                         int cur_index = -1;
424                         int nextNodeOffset = fdt_next_node(
425                                 working_fdt, nodeoffset, &curDepth);
426
427                         if (subcmd[0] == 'n')
428                                 req_index = hextoul(argv[5], NULL);
429
430                         while (curDepth > startDepth) {
431                                 if (curDepth == startDepth + 1)
432                                         cur_index++;
433                                 if (subcmd[0] == 'n' &&
434                                     cur_index == req_index) {
435                                         const char *node_name;
436
437                                         node_name = fdt_get_name(working_fdt,
438                                                                  nextNodeOffset,
439                                                                  NULL);
440                                         env_set(var, node_name);
441                                         return 0;
442                                 }
443                                 nextNodeOffset = fdt_next_node(
444                                         working_fdt, nextNodeOffset, &curDepth);
445                                 if (nextNodeOffset < 0)
446                                         break;
447                         }
448                         if (subcmd[0] == 's') {
449                                 /* get the num nodes at this level */
450                                 env_set_ulong(var, cur_index + 1);
451                         } else {
452                                 /* node index not found */
453                                 printf("libfdt node not found\n");
454                                 return 1;
455                         }
456                 } else {
457                         nodep = fdt_getprop(
458                                 working_fdt, nodeoffset, prop, &len);
459                         if (nodep && len >= 0) {
460                                 if (subcmd[0] == 'v') {
461                                         int index = -1;
462                                         int ret;
463
464                                         if (len == 0) {
465                                                 /* no property value */
466                                                 env_set(var, "");
467                                                 return 0;
468                                         }
469
470                                         if (argc == 7)
471                                                 index = simple_strtoul(argv[6], NULL, 10);
472
473                                         ret = fdt_value_env_set(nodep, len,
474                                                                 var, index);
475                                         if (ret != 0)
476                                                 return ret;
477                                 } else if (subcmd[0] == 'a') {
478                                         /* Get address */
479                                         char buf[19];
480
481                                         snprintf(buf, sizeof(buf), "%lx",
482                                                  (ulong)map_to_sysmem(nodep));
483                                         env_set(var, buf);
484                                 } else if (subcmd[0] == 's') {
485                                         /* Get size */
486                                         char buf[11];
487
488                                         sprintf(buf, "0x%08X", len);
489                                         env_set(var, buf);
490                                 } else
491                                         return CMD_RET_USAGE;
492                                 return 0;
493                         } else {
494                                 printf("libfdt fdt_getprop(): %s\n",
495                                         fdt_strerror(len));
496                                 return 1;
497                         }
498                 }
499
500         /*
501          * Print (recursive) / List (single level)
502          */
503         } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
504                 int depth = MAX_LEVEL;  /* how deep to print */
505                 char *pathp;            /* path */
506                 char *prop;             /* property */
507                 int  ret;               /* return value */
508                 static char root[2] = "/";
509
510                 /*
511                  * list is an alias for print, but limited to 1 level
512                  */
513                 if (argv[1][0] == 'l') {
514                         depth = 1;
515                 }
516
517                 /*
518                  * Get the starting path.  The root node is an oddball,
519                  * the offset is zero and has no name.
520                  */
521                 if (argc == 2)
522                         pathp = root;
523                 else
524                         pathp = argv[2];
525                 if (argc > 3)
526                         prop = argv[3];
527                 else
528                         prop = NULL;
529
530                 ret = fdt_print(pathp, prop, depth);
531                 if (ret != 0)
532                         return ret;
533
534         /*
535          * Remove a property/node
536          */
537         } else if (strncmp(argv[1], "rm", 2) == 0) {
538                 int  nodeoffset;        /* node offset from libfdt */
539                 int  err;
540
541                 /*
542                  * Get the path.  The root node is an oddball, the offset
543                  * is zero and has no name.
544                  */
545                 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
546                 if (nodeoffset < 0) {
547                         /*
548                          * Not found or something else bad happened.
549                          */
550                         printf ("libfdt fdt_path_offset() returned %s\n",
551                                 fdt_strerror(nodeoffset));
552                         return 1;
553                 }
554                 /*
555                  * Do the delete.  A fourth parameter means delete a property,
556                  * otherwise delete the node.
557                  */
558                 if (argc > 3) {
559                         err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
560                         if (err < 0) {
561                                 printf("libfdt fdt_delprop(): %s\n",
562                                         fdt_strerror(err));
563                                 return CMD_RET_FAILURE;
564                         }
565                 } else {
566                         err = fdt_del_node(working_fdt, nodeoffset);
567                         if (err < 0) {
568                                 printf("libfdt fdt_del_node(): %s\n",
569                                         fdt_strerror(err));
570                                 return CMD_RET_FAILURE;
571                         }
572                 }
573
574         /*
575          * Display header info
576          */
577         } else if (argv[1][0] == 'h') {
578                 if (argc == 5)
579                         return fdt_get_header_value(argc, argv);
580
581                 u32 version = fdt_version(working_fdt);
582                 printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt));
583                 printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt),
584                        fdt_totalsize(working_fdt));
585                 printf("off_dt_struct:\t\t0x%x\n",
586                        fdt_off_dt_struct(working_fdt));
587                 printf("off_dt_strings:\t\t0x%x\n",
588                        fdt_off_dt_strings(working_fdt));
589                 printf("off_mem_rsvmap:\t\t0x%x\n",
590                        fdt_off_mem_rsvmap(working_fdt));
591                 printf("version:\t\t%d\n", version);
592                 printf("last_comp_version:\t%d\n",
593                        fdt_last_comp_version(working_fdt));
594                 if (version >= 2)
595                         printf("boot_cpuid_phys:\t0x%x\n",
596                                 fdt_boot_cpuid_phys(working_fdt));
597                 if (version >= 3)
598                         printf("size_dt_strings:\t0x%x\n",
599                                 fdt_size_dt_strings(working_fdt));
600                 if (version >= 17)
601                         printf("size_dt_struct:\t\t0x%x\n",
602                                 fdt_size_dt_struct(working_fdt));
603                 printf("number mem_rsv:\t\t0x%x\n",
604                        fdt_num_mem_rsv(working_fdt));
605                 printf("\n");
606
607         /*
608          * Set boot cpu id
609          */
610         } else if (strncmp(argv[1], "boo", 3) == 0) {
611                 unsigned long tmp;
612
613                 if (argc != 3)
614                         return CMD_RET_USAGE;
615
616                 tmp = hextoul(argv[2], NULL);
617                 fdt_set_boot_cpuid_phys(working_fdt, tmp);
618
619         /*
620          * memory command
621          */
622         } else if (strncmp(argv[1], "me", 2) == 0) {
623                 uint64_t addr, size;
624                 int err;
625
626                 if (argc != 4)
627                         return CMD_RET_USAGE;
628
629                 addr = simple_strtoull(argv[2], NULL, 16);
630                 size = simple_strtoull(argv[3], NULL, 16);
631                 err = fdt_fixup_memory(working_fdt, addr, size);
632                 if (err < 0)
633                         return err;
634
635         /*
636          * mem reserve commands
637          */
638         } else if (strncmp(argv[1], "rs", 2) == 0) {
639                 if (argv[2][0] == 'p') {
640                         uint64_t addr, size;
641                         int total = fdt_num_mem_rsv(working_fdt);
642                         int j, err;
643                         printf("index\t\t   start\t\t    size\n");
644                         printf("-------------------------------"
645                                 "-----------------\n");
646                         for (j = 0; j < total; j++) {
647                                 err = fdt_get_mem_rsv(working_fdt, j, &addr, &size);
648                                 if (err < 0) {
649                                         printf("libfdt fdt_get_mem_rsv():  %s\n",
650                                                         fdt_strerror(err));
651                                         return err;
652                                 }
653                                 printf("    %x\t%08x%08x\t%08x%08x\n", j,
654                                         (u32)(addr >> 32),
655                                         (u32)(addr & 0xffffffff),
656                                         (u32)(size >> 32),
657                                         (u32)(size & 0xffffffff));
658                         }
659                 } else if (argv[2][0] == 'a') {
660                         uint64_t addr, size;
661                         int err;
662                         addr = simple_strtoull(argv[3], NULL, 16);
663                         size = simple_strtoull(argv[4], NULL, 16);
664                         err = fdt_add_mem_rsv(working_fdt, addr, size);
665
666                         if (err < 0) {
667                                 printf("libfdt fdt_add_mem_rsv(): %s\n",
668                                         fdt_strerror(err));
669                                 return CMD_RET_FAILURE;
670                         }
671                 } else if (argv[2][0] == 'd') {
672                         unsigned long idx = hextoul(argv[3], NULL);
673                         int err = fdt_del_mem_rsv(working_fdt, idx);
674
675                         if (err < 0) {
676                                 printf("libfdt fdt_del_mem_rsv(): %s\n",
677                                         fdt_strerror(err));
678                                 return CMD_RET_FAILURE;
679                         }
680                 } else {
681                         /* Unrecognized command */
682                         return CMD_RET_USAGE;
683                 }
684         }
685 #ifdef CONFIG_OF_BOARD_SETUP
686         /* Call the board-specific fixup routine */
687         else if (strncmp(argv[1], "boa", 3) == 0) {
688                 int err = ft_board_setup(working_fdt, gd->bd);
689
690                 if (err) {
691                         printf("Failed to update board information in FDT: %s\n",
692                                fdt_strerror(err));
693                         return CMD_RET_FAILURE;
694                 }
695 #ifdef CONFIG_ARCH_KEYSTONE
696                 ft_board_setup_ex(working_fdt, gd->bd);
697 #endif
698         }
699 #endif
700         /* Create a chosen node */
701         else if (strncmp(argv[1], "cho", 3) == 0) {
702                 unsigned long initrd_start = 0, initrd_end = 0;
703
704                 if ((argc != 2) && (argc != 4))
705                         return CMD_RET_USAGE;
706
707                 if (argc == 4) {
708                         initrd_start = hextoul(argv[2], NULL);
709                         initrd_end = initrd_start + hextoul(argv[3], NULL) - 1;
710                 }
711
712                 fdt_chosen(working_fdt);
713                 fdt_initrd(working_fdt, initrd_start, initrd_end);
714
715 #if defined(CONFIG_FIT_SIGNATURE)
716         } else if (strncmp(argv[1], "che", 3) == 0) {
717                 int cfg_noffset;
718                 int ret;
719                 unsigned long addr;
720                 struct fdt_header *blob;
721
722                 if (!working_fdt)
723                         return CMD_RET_FAILURE;
724
725                 if (argc > 2) {
726                         addr = hextoul(argv[2], NULL);
727                         blob = map_sysmem(addr, 0);
728                 } else {
729                         blob = (struct fdt_header *)gd->fdt_blob;
730                 }
731                 if (!fdt_valid(&blob))
732                         return 1;
733
734                 gd->fdt_blob = blob;
735                 cfg_noffset = fit_conf_get_node(working_fdt, NULL);
736                 if (!cfg_noffset) {
737                         printf("Could not find configuration node: %s\n",
738                                fdt_strerror(cfg_noffset));
739                         return CMD_RET_FAILURE;
740                 }
741
742                 ret = fit_config_verify(working_fdt, cfg_noffset);
743                 if (ret == 0)
744                         return CMD_RET_SUCCESS;
745                 else
746                         return CMD_RET_FAILURE;
747 #endif
748
749         }
750 #ifdef CONFIG_OF_LIBFDT_OVERLAY
751         /* apply an overlay */
752         else if (strncmp(argv[1], "ap", 2) == 0) {
753                 unsigned long addr;
754                 struct fdt_header *blob;
755                 int ret;
756
757                 if (argc != 3)
758                         return CMD_RET_USAGE;
759
760                 if (!working_fdt)
761                         return CMD_RET_FAILURE;
762
763                 addr = hextoul(argv[2], NULL);
764                 blob = map_sysmem(addr, 0);
765                 if (!fdt_valid(&blob))
766                         return CMD_RET_FAILURE;
767
768                 /* apply method prints messages on error */
769                 ret = fdt_overlay_apply_verbose(working_fdt, blob);
770                 if (ret)
771                         return CMD_RET_FAILURE;
772         }
773 #endif
774         /* resize the fdt */
775         else if (strncmp(argv[1], "re", 2) == 0) {
776                 uint extrasize;
777                 if (argc > 2)
778                         extrasize = hextoul(argv[2], NULL);
779                 else
780                         extrasize = 0;
781                 fdt_shrink_to_minimum(working_fdt, extrasize);
782         }
783         else {
784                 /* Unrecognized command */
785                 return CMD_RET_USAGE;
786         }
787
788         return 0;
789 }
790
791 /****************************************************************************/
792
793 /*
794  * Parse the user's input, partially heuristic.  Valid formats:
795  * <0x00112233 4 05>    - an array of cells.  Numbers follow standard
796  *                      C conventions.
797  * [00 11 22 .. nn] - byte stream
798  * "string"     - If the the value doesn't start with "<" or "[", it is
799  *                      treated as a string.  Note that the quotes are
800  *                      stripped by the parser before we get the string.
801  * newval: An array of strings containing the new property as specified
802  *      on the command line
803  * count: The number of strings in the array
804  * data: A bytestream to be placed in the property
805  * len: The length of the resulting bytestream
806  */
807 static int fdt_parse_prop(char * const *newval, int count, char *data, int *len)
808 {
809         char *cp;               /* temporary char pointer */
810         char *newp;             /* temporary newval char pointer */
811         unsigned long tmp;      /* holds converted values */
812         int stridx = 0;
813
814         *len = 0;
815         newp = newval[0];
816
817         /* An array of cells */
818         if (*newp == '<') {
819                 newp++;
820                 while ((*newp != '>') && (stridx < count)) {
821                         /*
822                          * Keep searching until we find that last ">"
823                          * That way users don't have to escape the spaces
824                          */
825                         if (*newp == '\0') {
826                                 newp = newval[++stridx];
827                                 continue;
828                         }
829
830                         cp = newp;
831                         tmp = simple_strtoul(cp, &newp, 0);
832                         if (*cp != '?')
833                                 *(fdt32_t *)data = cpu_to_fdt32(tmp);
834                         else
835                                 newp++;
836
837                         data  += 4;
838                         *len += 4;
839
840                         /* If the ptr didn't advance, something went wrong */
841                         if ((newp - cp) <= 0) {
842                                 printf("Sorry, I could not convert \"%s\"\n",
843                                         cp);
844                                 return 1;
845                         }
846
847                         while (*newp == ' ')
848                                 newp++;
849                 }
850
851                 if (*newp != '>') {
852                         printf("Unexpected character '%c'\n", *newp);
853                         return 1;
854                 }
855         } else if (*newp == '[') {
856                 /*
857                  * Byte stream.  Convert the values.
858                  */
859                 newp++;
860                 while ((stridx < count) && (*newp != ']')) {
861                         while (*newp == ' ')
862                                 newp++;
863                         if (*newp == '\0') {
864                                 newp = newval[++stridx];
865                                 continue;
866                         }
867                         if (!isxdigit(*newp))
868                                 break;
869                         tmp = hextoul(newp, &newp);
870                         *data++ = tmp & 0xFF;
871                         *len    = *len + 1;
872                 }
873                 if (*newp != ']') {
874                         printf("Unexpected character '%c'\n", *newp);
875                         return 1;
876                 }
877         } else {
878                 /*
879                  * Assume it is one or more strings.  Copy it into our
880                  * data area for convenience (including the
881                  * terminating '\0's).
882                  */
883                 while (stridx < count) {
884                         size_t length = strlen(newp) + 1;
885                         strcpy(data, newp);
886                         data += length;
887                         *len += length;
888                         newp = newval[++stridx];
889                 }
890         }
891         return 0;
892 }
893
894 /****************************************************************************/
895
896 /*
897  * Heuristic to guess if this is a string or concatenated strings.
898  */
899
900 static int is_printable_string(const void *data, int len)
901 {
902         const char *s = data;
903         const char *ss, *se;
904
905         /* zero length is not */
906         if (len == 0)
907                 return 0;
908
909         /* must terminate with zero */
910         if (s[len - 1] != '\0')
911                 return 0;
912
913         se = s + len;
914
915         while (s < se) {
916                 ss = s;
917                 while (s < se && *s && isprint((unsigned char)*s))
918                         s++;
919
920                 /* not zero, or not done yet */
921                 if (*s != '\0' || s == ss)
922                         return 0;
923
924                 s++;
925         }
926
927         return 1;
928 }
929
930 /*
931  * Print the property in the best format, a heuristic guess.  Print as
932  * a string, concatenated strings, a byte, word, double word, or (if all
933  * else fails) it is printed as a stream of bytes.
934  */
935 static void print_data(const void *data, int len)
936 {
937         int j;
938         const char *env_max_dump;
939         ulong max_dump = ULONG_MAX;
940
941         /* no data, don't print */
942         if (len == 0)
943                 return;
944
945         env_max_dump = env_get("fdt_max_dump");
946         if (env_max_dump)
947                 max_dump = hextoul(env_max_dump, NULL);
948
949         /*
950          * It is a string, but it may have multiple strings (embedded '\0's).
951          */
952         if (is_printable_string(data, len)) {
953                 puts("\"");
954                 j = 0;
955                 while (j < len) {
956                         if (j > 0)
957                                 puts("\", \"");
958                         puts(data);
959                         j    += strlen(data) + 1;
960                         data += strlen(data) + 1;
961                 }
962                 puts("\"");
963                 return;
964         }
965
966         if ((len %4) == 0) {
967                 if (len > max_dump)
968                         printf("* 0x%p [0x%08x]", data, len);
969                 else {
970                         const __be32 *p;
971
972                         printf("<");
973                         for (j = 0, p = data; j < len/4; j++)
974                                 printf("0x%08x%s", fdt32_to_cpu(p[j]),
975                                         j < (len/4 - 1) ? " " : "");
976                         printf(">");
977                 }
978         } else { /* anything else... hexdump */
979                 if (len > max_dump)
980                         printf("* 0x%p [0x%08x]", data, len);
981                 else {
982                         const u8 *s;
983
984                         printf("[");
985                         for (j = 0, s = data; j < len; j++)
986                                 printf("%02x%s", s[j], j < len - 1 ? " " : "");
987                         printf("]");
988                 }
989         }
990 }
991
992 /****************************************************************************/
993
994 /*
995  * Recursively print (a portion of) the working_fdt.  The depth parameter
996  * determines how deeply nested the fdt is printed.
997  */
998 static int fdt_print(const char *pathp, char *prop, int depth)
999 {
1000         static char tabs[MAX_LEVEL+1] =
1001                 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
1002                 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
1003         const void *nodep;      /* property node pointer */
1004         int  nodeoffset;        /* node offset from libfdt */
1005         int  nextoffset;        /* next node offset from libfdt */
1006         uint32_t tag;           /* tag */
1007         int  len;               /* length of the property */
1008         int  level = 0;         /* keep track of nesting level */
1009         const struct fdt_property *fdt_prop;
1010
1011         nodeoffset = fdt_path_offset (working_fdt, pathp);
1012         if (nodeoffset < 0) {
1013                 /*
1014                  * Not found or something else bad happened.
1015                  */
1016                 printf ("libfdt fdt_path_offset() returned %s\n",
1017                         fdt_strerror(nodeoffset));
1018                 return 1;
1019         }
1020         /*
1021          * The user passed in a property as well as node path.
1022          * Print only the given property and then return.
1023          */
1024         if (prop) {
1025                 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
1026                 if (len == 0) {
1027                         /* no property value */
1028                         printf("%s %s\n", pathp, prop);
1029                         return 0;
1030                 } else if (nodep && len > 0) {
1031                         printf("%s = ", prop);
1032                         print_data (nodep, len);
1033                         printf("\n");
1034                         return 0;
1035                 } else {
1036                         printf ("libfdt fdt_getprop(): %s\n",
1037                                 fdt_strerror(len));
1038                         return 1;
1039                 }
1040         }
1041
1042         /*
1043          * The user passed in a node path and no property,
1044          * print the node and all subnodes.
1045          */
1046         while(level >= 0) {
1047                 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
1048                 switch(tag) {
1049                 case FDT_BEGIN_NODE:
1050                         pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
1051                         if (level <= depth) {
1052                                 if (pathp == NULL)
1053                                         pathp = "/* NULL pointer error */";
1054                                 if (*pathp == '\0')
1055                                         pathp = "/";    /* root is nameless */
1056                                 printf("%s%s {\n",
1057                                         &tabs[MAX_LEVEL - level], pathp);
1058                         }
1059                         level++;
1060                         if (level >= MAX_LEVEL) {
1061                                 printf("Nested too deep, aborting.\n");
1062                                 return 1;
1063                         }
1064                         break;
1065                 case FDT_END_NODE:
1066                         level--;
1067                         if (level <= depth)
1068                                 printf("%s};\n", &tabs[MAX_LEVEL - level]);
1069                         if (level == 0) {
1070                                 level = -1;             /* exit the loop */
1071                         }
1072                         break;
1073                 case FDT_PROP:
1074                         fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
1075                                         sizeof(*fdt_prop));
1076                         pathp    = fdt_string(working_fdt,
1077                                         fdt32_to_cpu(fdt_prop->nameoff));
1078                         len      = fdt32_to_cpu(fdt_prop->len);
1079                         nodep    = fdt_prop->data;
1080                         if (len < 0) {
1081                                 printf ("libfdt fdt_getprop(): %s\n",
1082                                         fdt_strerror(len));
1083                                 return 1;
1084                         } else if (len == 0) {
1085                                 /* the property has no value */
1086                                 if (level <= depth)
1087                                         printf("%s%s;\n",
1088                                                 &tabs[MAX_LEVEL - level],
1089                                                 pathp);
1090                         } else {
1091                                 if (level <= depth) {
1092                                         printf("%s%s = ",
1093                                                 &tabs[MAX_LEVEL - level],
1094                                                 pathp);
1095                                         print_data (nodep, len);
1096                                         printf(";\n");
1097                                 }
1098                         }
1099                         break;
1100                 case FDT_NOP:
1101                         printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
1102                         break;
1103                 case FDT_END:
1104                         return 1;
1105                 default:
1106                         if (level <= depth)
1107                                 printf("Unknown tag 0x%08X\n", tag);
1108                         return 1;
1109                 }
1110                 nodeoffset = nextoffset;
1111         }
1112         return 0;
1113 }
1114
1115 /********************************************************************/
1116 #ifdef CONFIG_SYS_LONGHELP
1117 static char fdt_help_text[] =
1118         "addr [-c] [-q] <addr> [<size>]  - Set the [control] fdt location to <addr>\n"
1119 #ifdef CONFIG_OF_LIBFDT_OVERLAY
1120         "fdt apply <addr>                    - Apply overlay to the DT\n"
1121 #endif
1122 #ifdef CONFIG_OF_BOARD_SETUP
1123         "fdt boardsetup                      - Do board-specific set up\n"
1124 #endif
1125 #ifdef CONFIG_OF_SYSTEM_SETUP
1126         "fdt systemsetup                     - Do system-specific set up\n"
1127 #endif
1128         "fdt move   <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n"
1129         "fdt resize [<extrasize>]            - Resize fdt to size + padding to 4k addr + some optional <extrasize> if needed\n"
1130         "fdt print  <path> [<prop>]          - Recursive print starting at <path>\n"
1131         "fdt list   <path> [<prop>]          - Print one level starting at <path>\n"
1132         "fdt get value <var> <path> <prop> [<index>] - Get <property> and store in <var>\n"
1133         "                                      In case of stringlist property, use optional <index>\n"
1134         "                                      to select string within the stringlist. Default is 0.\n"
1135         "fdt get name <var> <path> <index>   - Get name of node <index> and store in <var>\n"
1136         "fdt get addr <var> <path> <prop>    - Get start address of <property> and store in <var>\n"
1137         "fdt get size <var> <path> [<prop>]  - Get size of [<property>] or num nodes and store in <var>\n"
1138         "fdt set    <path> <prop> [<val>]    - Set <property> [to <val>]\n"
1139         "fdt mknode <path> <node>            - Create a new node after <path>\n"
1140         "fdt rm     <path> [<prop>]          - Delete the node or <property>\n"
1141         "fdt header [get <var> <member>]     - Display header info\n"
1142         "                                      get - get header member <member> and store it in <var>\n"
1143         "fdt bootcpu <id>                    - Set boot cpuid\n"
1144         "fdt memory <addr> <size>            - Add/Update memory node\n"
1145         "fdt rsvmem print                    - Show current mem reserves\n"
1146         "fdt rsvmem add <addr> <size>        - Add a mem reserve\n"
1147         "fdt rsvmem delete <index>           - Delete a mem reserves\n"
1148         "fdt chosen [<start> <size>]         - Add/update the /chosen branch in the tree\n"
1149         "                                        <start>/<size> - initrd start addr/size\n"
1150 #if defined(CONFIG_FIT_SIGNATURE)
1151         "fdt checksign [<addr>]              - check FIT signature\n"
1152         "                                      <addr> - address of key blob\n"
1153         "                                               default gd->fdt_blob\n"
1154 #endif
1155         "NOTE: Dereference aliases by omitting the leading '/', "
1156                 "e.g. fdt print ethernet0.";
1157 #endif
1158
1159 U_BOOT_CMD(
1160         fdt,    255,    0,      do_fdt,
1161         "flattened device tree utility commands", fdt_help_text
1162 );