1 // SPDX-License-Identifier: GPL-2.0+
5 * Based on code written by:
13 #include <linux/ctype.h>
14 #include <linux/types.h>
15 #include <asm/global_data.h>
16 #include <linux/libfdt.h>
17 #include <fdt_support.h>
21 #define MAX_LEVEL 32 /* how deeply nested we will go */
22 #define SCRATCHPAD 1024 /* bytes of scratchpad memory */
25 * Global data (for the gd->bd)
27 DECLARE_GLOBAL_DATA_PTR;
29 static int fdt_parse_prop(char *const*newval, int count, char *data, int *len);
30 static int fdt_print(const char *pathp, char *prop, int depth);
31 static int is_printable_string(const void *data, int len);
34 * The working_fdt points to our working flattened device tree.
36 struct fdt_header *working_fdt;
38 static void set_working_fdt_addr_quiet(ulong addr)
42 buf = map_sysmem(addr, 0);
44 env_set_hex("fdtaddr", addr);
47 void set_working_fdt_addr(ulong addr)
49 printf("Working FDT set to %lx\n", addr);
50 set_working_fdt_addr_quiet(addr);
54 * Get a value from the fdt and format it to be set in the environment
56 static int fdt_value_env_set(const void *nodep, int len,
57 const char *var, int index)
59 if (is_printable_string(nodep, len)) {
60 const char *nodec = (const char *)nodep;
64 * Iterate over all members in stringlist and find the one at
65 * offset $index. If no such index exists, indicate failure.
67 for (i = 0; i < len; ) {
69 i += strlen(nodec) + 1;
70 nodec += strlen(nodec) + 1;
79 } else if (len == 4) {
82 sprintf(buf, "0x%08X", fdt32_to_cpu(*(fdt32_t *)nodep));
84 } else if (len % 4 == 0 && index >= 0) {
85 /* Needed to print integer arrays. */
86 const unsigned int *nodec = (const unsigned int *)nodep;
92 sprintf(buf, "0x%08X", fdt32_to_cpu(*(nodec + index)));
94 } else if (len % 4 == 0 && len <= 20) {
95 /* Needed to print things like sha1 hashes. */
99 for (i = 0; i < len; i += sizeof(unsigned int))
100 sprintf(buf + (i * 2), "%08x",
101 *(unsigned int *)(nodep + i));
104 printf("error: unprintable value\n");
110 static const char * const fdt_member_table[] = {
123 static int fdt_get_header_value(int argc, char *const argv[])
125 fdt32_t *fdtp = (fdt32_t *)working_fdt;
129 if (argv[2][0] != 'g')
130 return CMD_RET_FAILURE;
132 for (i = 0; i < ARRAY_SIZE(fdt_member_table); i++) {
133 if (strcmp(fdt_member_table[i], argv[4]))
136 val = fdt32_to_cpu(fdtp[i]);
137 env_set_hex(argv[3], val);
138 return CMD_RET_SUCCESS;
141 return CMD_RET_FAILURE;
145 * Flattened Device Tree command, see the help for parameter definitions.
147 static int do_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
150 return CMD_RET_USAGE;
152 /* fdt addr: Set the address of the fdt */
153 if (strncmp(argv[1], "ad", 2) == 0) {
157 struct fdt_header *blob;
159 /* Set the address [and length] of the fdt */
162 while (argc > 0 && **argv == '-') {
174 return CMD_RET_USAGE;
182 blob = (struct fdt_header *)gd->fdt_blob;
185 if (!blob || !fdt_valid(&blob))
187 printf("%s fdt: %08lx\n",
188 control ? "Control" : "Working",
189 control ? (ulong)map_to_sysmem(blob) :
190 env_get_hex("fdtaddr", 0));
194 addr = hextoul(argv[0], NULL);
195 blob = map_sysmem(addr, 0);
196 if ((quiet && fdt_check_header(blob)) ||
197 (!quiet && !fdt_valid(&blob)))
203 set_working_fdt_addr_quiet(addr);
205 set_working_fdt_addr(addr);
212 /* Optional new length */
213 len = hextoul(argv[1], NULL);
214 if (len < fdt_totalsize(blob)) {
216 printf("New length %d < existing length %d, ignoring\n",
217 len, fdt_totalsize(blob));
219 /* Open in place with a new length */
220 err = fdt_open_into(blob, blob, len);
221 if (!quiet && err != 0) {
222 printf("libfdt fdt_open_into(): %s\n",
228 return CMD_RET_SUCCESS;
231 * Move the working_fdt
233 } else if (strncmp(argv[1], "mo", 2) == 0) {
234 struct fdt_header *newaddr;
239 return CMD_RET_USAGE;
242 * Set the address and length of the fdt.
244 working_fdt = map_sysmem(hextoul(argv[2], NULL), 0);
245 if (!fdt_valid(&working_fdt))
248 newaddr = map_sysmem(hextoul(argv[3], NULL), 0);
251 * If the user specifies a length, use that. Otherwise use the
255 len = fdt_totalsize(working_fdt);
257 len = hextoul(argv[4], NULL);
258 if (len < fdt_totalsize(working_fdt)) {
259 printf ("New length 0x%X < existing length "
261 len, fdt_totalsize(working_fdt));
267 * Copy to the new location.
269 err = fdt_open_into(working_fdt, newaddr, len);
271 printf ("libfdt fdt_open_into(): %s\n",
275 set_working_fdt_addr(map_to_sysmem(newaddr));
277 return CMD_RET_SUCCESS;
281 puts("No FDT memory address configured. Please configure\n"
282 "the FDT address via \"fdt addr <address>\" command.\n"
284 return CMD_RET_FAILURE;
287 #ifdef CONFIG_OF_SYSTEM_SETUP
288 /* Call the board-specific fixup routine */
289 if (strncmp(argv[1], "sys", 3) == 0) {
290 int err = ft_system_setup(working_fdt, gd->bd);
293 printf("Failed to add system information to FDT: %s\n",
295 return CMD_RET_FAILURE;
298 return CMD_RET_SUCCESS;
304 if (strncmp(argv[1], "mk", 2) == 0) {
305 char *pathp; /* path */
306 char *nodep; /* new node to add */
307 int nodeoffset; /* node offset from libfdt */
311 * Parameters: Node path, new node to be appended to the path.
314 return CMD_RET_USAGE;
319 nodeoffset = fdt_path_offset (working_fdt, pathp);
320 if (nodeoffset < 0) {
322 * Not found or something else bad happened.
324 printf ("libfdt fdt_path_offset() returned %s\n",
325 fdt_strerror(nodeoffset));
328 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
330 printf ("libfdt fdt_add_subnode(): %s\n",
336 * Set the value of a property in the working_fdt.
338 } else if (strncmp(argv[1], "se", 2) == 0) {
339 char *pathp; /* path */
340 char *prop; /* property */
341 int nodeoffset; /* node offset from libfdt */
342 static char data[SCRATCHPAD] __aligned(4);/* property storage */
344 int len; /* new length of the property */
345 int ret; /* return value */
348 * Parameters: Node path, property, optional value.
351 return CMD_RET_USAGE;
356 nodeoffset = fdt_path_offset (working_fdt, pathp);
357 if (nodeoffset < 0) {
359 * Not found or something else bad happened.
361 printf ("libfdt fdt_path_offset() returned %s\n",
362 fdt_strerror(nodeoffset));
369 ptmp = fdt_getprop(working_fdt, nodeoffset, prop, &len);
370 if (len > SCRATCHPAD) {
371 printf("prop (%d) doesn't fit in scratchpad!\n",
376 memcpy(data, ptmp, len);
378 ret = fdt_parse_prop(&argv[4], argc - 4, data, &len);
383 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
385 printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
389 /********************************************************************
390 * Get the value of a property in the working_fdt.
391 ********************************************************************/
392 } else if (argv[1][0] == 'g') {
393 char *subcmd; /* sub-command */
394 char *pathp; /* path */
395 char *prop; /* property */
396 char *var; /* variable to store result */
397 int nodeoffset; /* node offset from libfdt */
398 const void *nodep; /* property node pointer */
399 int len = 0; /* new length of the property */
402 * Parameters: Node path, property, optional value.
405 return CMD_RET_USAGE;
409 if (argc < 6 && subcmd[0] != 's')
410 return CMD_RET_USAGE;
416 nodeoffset = fdt_path_offset(working_fdt, pathp);
417 if (nodeoffset < 0) {
419 * Not found or something else bad happened.
421 printf("libfdt fdt_path_offset() returned %s\n",
422 fdt_strerror(nodeoffset));
426 if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) {
428 int startDepth = fdt_node_depth(
429 working_fdt, nodeoffset);
430 int curDepth = startDepth;
432 int nextNodeOffset = fdt_next_node(
433 working_fdt, nodeoffset, &curDepth);
435 if (subcmd[0] == 'n')
436 req_index = hextoul(argv[5], NULL);
438 while (curDepth > startDepth) {
439 if (curDepth == startDepth + 1)
441 if (subcmd[0] == 'n' &&
442 cur_index == req_index) {
443 const char *node_name;
445 node_name = fdt_get_name(working_fdt,
448 env_set(var, node_name);
451 nextNodeOffset = fdt_next_node(
452 working_fdt, nextNodeOffset, &curDepth);
453 if (nextNodeOffset < 0)
456 if (subcmd[0] == 's') {
457 /* get the num nodes at this level */
458 env_set_ulong(var, cur_index + 1);
460 /* node index not found */
461 printf("libfdt node not found\n");
466 working_fdt, nodeoffset, prop, &len);
467 if (nodep && len >= 0) {
468 if (subcmd[0] == 'v') {
473 /* no property value */
479 index = simple_strtoul(argv[6], NULL, 10);
481 ret = fdt_value_env_set(nodep, len,
485 } else if (subcmd[0] == 'a') {
486 env_set_hex(var, (ulong)map_to_sysmem(nodep));
487 } else if (subcmd[0] == 's') {
488 env_set_hex(var, len);
490 return CMD_RET_USAGE;
493 printf("libfdt fdt_getprop(): %s\n",
500 * Print (recursive) / List (single level)
502 } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
503 int depth = MAX_LEVEL; /* how deep to print */
504 char *pathp; /* path */
505 char *prop; /* property */
506 int ret; /* return value */
507 static char root[2] = "/";
510 * list is an alias for print, but limited to 1 level
512 if (argv[1][0] == 'l') {
517 * Get the starting path. The root node is an oddball,
518 * the offset is zero and has no name.
529 ret = fdt_print(pathp, prop, depth);
534 * Remove a property/node
536 } else if (strncmp(argv[1], "rm", 2) == 0) {
537 int nodeoffset; /* node offset from libfdt */
541 * Get the path. The root node is an oddball, the offset
542 * is zero and has no name.
544 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
545 if (nodeoffset < 0) {
547 * Not found or something else bad happened.
549 printf ("libfdt fdt_path_offset() returned %s\n",
550 fdt_strerror(nodeoffset));
554 * Do the delete. A fourth parameter means delete a property,
555 * otherwise delete the node.
558 err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
560 printf("libfdt fdt_delprop(): %s\n",
562 return CMD_RET_FAILURE;
565 err = fdt_del_node(working_fdt, nodeoffset);
567 printf("libfdt fdt_del_node(): %s\n",
569 return CMD_RET_FAILURE;
574 * Display header info
576 } else if (argv[1][0] == 'h') {
578 return fdt_get_header_value(argc, argv);
580 u32 version = fdt_version(working_fdt);
581 printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt));
582 printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt),
583 fdt_totalsize(working_fdt));
584 printf("off_dt_struct:\t\t0x%x\n",
585 fdt_off_dt_struct(working_fdt));
586 printf("off_dt_strings:\t\t0x%x\n",
587 fdt_off_dt_strings(working_fdt));
588 printf("off_mem_rsvmap:\t\t0x%x\n",
589 fdt_off_mem_rsvmap(working_fdt));
590 printf("version:\t\t%d\n", version);
591 printf("last_comp_version:\t%d\n",
592 fdt_last_comp_version(working_fdt));
594 printf("boot_cpuid_phys:\t0x%x\n",
595 fdt_boot_cpuid_phys(working_fdt));
597 printf("size_dt_strings:\t0x%x\n",
598 fdt_size_dt_strings(working_fdt));
600 printf("size_dt_struct:\t\t0x%x\n",
601 fdt_size_dt_struct(working_fdt));
602 printf("number mem_rsv:\t\t0x%x\n",
603 fdt_num_mem_rsv(working_fdt));
609 } else if (strncmp(argv[1], "boo", 3) == 0) {
613 return CMD_RET_USAGE;
615 tmp = hextoul(argv[2], NULL);
616 fdt_set_boot_cpuid_phys(working_fdt, tmp);
621 } else if (strncmp(argv[1], "me", 2) == 0) {
626 return CMD_RET_USAGE;
628 addr = simple_strtoull(argv[2], NULL, 16);
629 size = simple_strtoull(argv[3], NULL, 16);
630 err = fdt_fixup_memory(working_fdt, addr, size);
635 * mem reserve commands
637 } else if (strncmp(argv[1], "rs", 2) == 0) {
638 if (argv[2][0] == 'p') {
640 int total = fdt_num_mem_rsv(working_fdt);
642 printf("index\t\t start\t\t size\n");
643 printf("-------------------------------"
644 "-----------------\n");
645 for (j = 0; j < total; j++) {
646 err = fdt_get_mem_rsv(working_fdt, j, &addr, &size);
648 printf("libfdt fdt_get_mem_rsv(): %s\n",
652 printf(" %x\t%08x%08x\t%08x%08x\n", j,
654 (u32)(addr & 0xffffffff),
656 (u32)(size & 0xffffffff));
658 } else if (argv[2][0] == 'a') {
661 addr = simple_strtoull(argv[3], NULL, 16);
662 size = simple_strtoull(argv[4], NULL, 16);
663 err = fdt_add_mem_rsv(working_fdt, addr, size);
666 printf("libfdt fdt_add_mem_rsv(): %s\n",
668 return CMD_RET_FAILURE;
670 } else if (argv[2][0] == 'd') {
671 unsigned long idx = hextoul(argv[3], NULL);
672 int err = fdt_del_mem_rsv(working_fdt, idx);
675 printf("libfdt fdt_del_mem_rsv(): %s\n",
677 return CMD_RET_FAILURE;
680 /* Unrecognized command */
681 return CMD_RET_USAGE;
684 #ifdef CONFIG_OF_BOARD_SETUP
685 /* Call the board-specific fixup routine */
686 else if (strncmp(argv[1], "boa", 3) == 0) {
687 int err = ft_board_setup(working_fdt, gd->bd);
690 printf("Failed to update board information in FDT: %s\n",
692 return CMD_RET_FAILURE;
694 #ifdef CONFIG_ARCH_KEYSTONE
695 ft_board_setup_ex(working_fdt, gd->bd);
699 /* Create a chosen node */
700 else if (strncmp(argv[1], "cho", 3) == 0) {
701 unsigned long initrd_start = 0, initrd_end = 0;
703 if ((argc != 2) && (argc != 4))
704 return CMD_RET_USAGE;
707 initrd_start = hextoul(argv[2], NULL);
708 initrd_end = initrd_start + hextoul(argv[3], NULL) - 1;
711 fdt_chosen(working_fdt);
712 fdt_initrd(working_fdt, initrd_start, initrd_end);
714 #if defined(CONFIG_FIT_SIGNATURE)
715 } else if (strncmp(argv[1], "che", 3) == 0) {
719 struct fdt_header *blob;
722 return CMD_RET_FAILURE;
725 addr = hextoul(argv[2], NULL);
726 blob = map_sysmem(addr, 0);
728 blob = (struct fdt_header *)gd->fdt_blob;
730 if (!fdt_valid(&blob))
734 cfg_noffset = fit_conf_get_node(working_fdt, NULL);
735 if (cfg_noffset < 0) {
736 printf("Could not find configuration node: %s\n",
737 fdt_strerror(cfg_noffset));
738 return CMD_RET_FAILURE;
741 ret = fit_config_verify(working_fdt, cfg_noffset);
743 return CMD_RET_SUCCESS;
745 return CMD_RET_FAILURE;
749 #ifdef CONFIG_OF_LIBFDT_OVERLAY
750 /* apply an overlay */
751 else if (strncmp(argv[1], "ap", 2) == 0) {
753 struct fdt_header *blob;
757 return CMD_RET_USAGE;
760 return CMD_RET_FAILURE;
762 addr = hextoul(argv[2], NULL);
763 blob = map_sysmem(addr, 0);
764 if (!fdt_valid(&blob))
765 return CMD_RET_FAILURE;
767 /* apply method prints messages on error */
768 ret = fdt_overlay_apply_verbose(working_fdt, blob);
770 return CMD_RET_FAILURE;
774 else if (strncmp(argv[1], "re", 2) == 0) {
777 extrasize = hextoul(argv[2], NULL);
780 fdt_shrink_to_minimum(working_fdt, extrasize);
783 /* Unrecognized command */
784 return CMD_RET_USAGE;
790 /****************************************************************************/
793 * Parse the user's input, partially heuristic. Valid formats:
794 * <0x00112233 4 05> - an array of cells. Numbers follow standard
796 * [00 11 22 .. nn] - byte stream
797 * "string" - If the the value doesn't start with "<" or "[", it is
798 * treated as a string. Note that the quotes are
799 * stripped by the parser before we get the string.
800 * newval: An array of strings containing the new property as specified
801 * on the command line
802 * count: The number of strings in the array
803 * data: A bytestream to be placed in the property
804 * len: The length of the resulting bytestream
806 static int fdt_parse_prop(char * const *newval, int count, char *data, int *len)
808 char *cp; /* temporary char pointer */
809 char *newp; /* temporary newval char pointer */
810 unsigned long tmp; /* holds converted values */
816 /* An array of cells */
819 while ((*newp != '>') && (stridx < count)) {
821 * Keep searching until we find that last ">"
822 * That way users don't have to escape the spaces
825 newp = newval[++stridx];
830 tmp = simple_strtoul(cp, &newp, 0);
832 *(fdt32_t *)data = cpu_to_fdt32(tmp);
839 /* If the ptr didn't advance, something went wrong */
840 if ((newp - cp) <= 0) {
841 printf("Sorry, I could not convert \"%s\"\n",
851 printf("Unexpected character '%c'\n", *newp);
854 } else if (*newp == '[') {
856 * Byte stream. Convert the values.
859 while ((stridx < count) && (*newp != ']')) {
863 newp = newval[++stridx];
866 if (!isxdigit(*newp))
868 tmp = hextoul(newp, &newp);
869 *data++ = tmp & 0xFF;
873 printf("Unexpected character '%c'\n", *newp);
878 * Assume it is one or more strings. Copy it into our
879 * data area for convenience (including the
880 * terminating '\0's).
882 while (stridx < count) {
883 size_t length = strlen(newp) + 1;
887 newp = newval[++stridx];
893 /****************************************************************************/
896 * Heuristic to guess if this is a string or concatenated strings.
899 static int is_printable_string(const void *data, int len)
901 const char *s = data;
904 /* zero length is not */
908 /* must terminate with zero */
909 if (s[len - 1] != '\0')
916 while (s < se && *s && isprint((unsigned char)*s))
919 /* not zero, or not done yet */
920 if (*s != '\0' || s == ss)
930 * Print the property in the best format, a heuristic guess. Print as
931 * a string, concatenated strings, a byte, word, double word, or (if all
932 * else fails) it is printed as a stream of bytes.
934 static void print_data(const void *data, int len)
937 const char *env_max_dump;
938 ulong max_dump = ULONG_MAX;
940 /* no data, don't print */
944 env_max_dump = env_get("fdt_max_dump");
946 max_dump = hextoul(env_max_dump, NULL);
949 * It is a string, but it may have multiple strings (embedded '\0's).
951 if (is_printable_string(data, len)) {
958 j += strlen(data) + 1;
959 data += strlen(data) + 1;
967 printf("* 0x%p [0x%08x]", data, len);
972 for (j = 0, p = data; j < len/4; j++)
973 printf("0x%08x%s", fdt32_to_cpu(p[j]),
974 j < (len/4 - 1) ? " " : "");
977 } else { /* anything else... hexdump */
979 printf("* 0x%p [0x%08x]", data, len);
984 for (j = 0, s = data; j < len; j++)
985 printf("%02x%s", s[j], j < len - 1 ? " " : "");
991 /****************************************************************************/
994 * Recursively print (a portion of) the working_fdt. The depth parameter
995 * determines how deeply nested the fdt is printed.
997 static int fdt_print(const char *pathp, char *prop, int depth)
999 static char tabs[MAX_LEVEL+1] =
1000 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
1001 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
1002 const void *nodep; /* property node pointer */
1003 int nodeoffset; /* node offset from libfdt */
1004 int nextoffset; /* next node offset from libfdt */
1005 uint32_t tag; /* tag */
1006 int len; /* length of the property */
1007 int level = 0; /* keep track of nesting level */
1008 const struct fdt_property *fdt_prop;
1010 nodeoffset = fdt_path_offset (working_fdt, pathp);
1011 if (nodeoffset < 0) {
1013 * Not found or something else bad happened.
1015 printf ("libfdt fdt_path_offset() returned %s\n",
1016 fdt_strerror(nodeoffset));
1020 * The user passed in a property as well as node path.
1021 * Print only the given property and then return.
1024 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
1026 /* no property value */
1027 printf("%s %s\n", pathp, prop);
1029 } else if (nodep && len > 0) {
1030 printf("%s = ", prop);
1031 print_data (nodep, len);
1035 printf ("libfdt fdt_getprop(): %s\n",
1042 * The user passed in a node path and no property,
1043 * print the node and all subnodes.
1046 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
1048 case FDT_BEGIN_NODE:
1049 pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
1050 if (level <= depth) {
1052 pathp = "/* NULL pointer error */";
1054 pathp = "/"; /* root is nameless */
1056 &tabs[MAX_LEVEL - level], pathp);
1059 if (level >= MAX_LEVEL) {
1060 printf("Nested too deep, aborting.\n");
1067 printf("%s};\n", &tabs[MAX_LEVEL - level]);
1069 level = -1; /* exit the loop */
1073 fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
1075 pathp = fdt_string(working_fdt,
1076 fdt32_to_cpu(fdt_prop->nameoff));
1077 len = fdt32_to_cpu(fdt_prop->len);
1078 nodep = fdt_prop->data;
1080 printf ("libfdt fdt_getprop(): %s\n",
1083 } else if (len == 0) {
1084 /* the property has no value */
1087 &tabs[MAX_LEVEL - level],
1090 if (level <= depth) {
1092 &tabs[MAX_LEVEL - level],
1094 print_data (nodep, len);
1100 printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
1106 printf("Unknown tag 0x%08X\n", tag);
1109 nodeoffset = nextoffset;
1114 /********************************************************************/
1115 U_BOOT_LONGHELP(fdt,
1116 "addr [-c] [-q] <addr> [<size>] - Set the [control] fdt location to <addr>\n"
1117 #ifdef CONFIG_OF_LIBFDT_OVERLAY
1118 "fdt apply <addr> - Apply overlay to the DT\n"
1120 #ifdef CONFIG_OF_BOARD_SETUP
1121 "fdt boardsetup - Do board-specific set up\n"
1123 #ifdef CONFIG_OF_SYSTEM_SETUP
1124 "fdt systemsetup - Do system-specific set up\n"
1126 "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n"
1127 "fdt resize [<extrasize>] - Resize fdt to size + padding to 4k addr + some optional <extrasize> if needed\n"
1128 "fdt print <path> [<prop>] - Recursive print starting at <path>\n"
1129 "fdt list <path> [<prop>] - Print one level starting at <path>\n"
1130 "fdt get value <var> <path> <prop> [<index>] - Get <property> and store in <var>\n"
1131 " In case of stringlist property, use optional <index>\n"
1132 " to select string within the stringlist. Default is 0.\n"
1133 "fdt get name <var> <path> <index> - Get name of node <index> and store in <var>\n"
1134 "fdt get addr <var> <path> <prop> - Get start address of <property> and store in <var>\n"
1135 "fdt get size <var> <path> [<prop>] - Get size of [<property>] or num nodes and store in <var>\n"
1136 "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n"
1137 "fdt mknode <path> <node> - Create a new node after <path>\n"
1138 "fdt rm <path> [<prop>] - Delete the node or <property>\n"
1139 "fdt header [get <var> <member>] - Display header info\n"
1140 " get - get header member <member> and store it in <var>\n"
1141 "fdt bootcpu <id> - Set boot cpuid\n"
1142 "fdt memory <addr> <size> - Add/Update memory node\n"
1143 "fdt rsvmem print - Show current mem reserves\n"
1144 "fdt rsvmem add <addr> <size> - Add a mem reserve\n"
1145 "fdt rsvmem delete <index> - Delete a mem reserves\n"
1146 "fdt chosen [<start> <size>] - Add/update the /chosen branch in the tree\n"
1147 " <start>/<size> - initrd start addr/size\n"
1148 #if defined(CONFIG_FIT_SIGNATURE)
1149 "fdt checksign [<addr>] - check FIT signature\n"
1150 " <addr> - address of key blob\n"
1151 " default gd->fdt_blob\n"
1153 "NOTE: Dereference aliases by omitting the leading '/', "
1154 "e.g. fdt print ethernet0.");
1157 fdt, 255, 0, do_fdt,
1158 "flattened device tree utility commands", fdt_help_text