1 // SPDX-License-Identifier: GPL-2.0+
5 * Based on code written by:
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>
22 #define MAX_LEVEL 32 /* how deeply nested we will go */
23 #define SCRATCHPAD 1024 /* bytes of scratchpad memory */
26 * Global data (for the gd->bd)
28 DECLARE_GLOBAL_DATA_PTR;
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);
35 * The working_fdt points to our working flattened device tree.
37 struct fdt_header *working_fdt;
39 static void set_working_fdt_addr_quiet(ulong addr)
43 buf = map_sysmem(addr, 0);
45 env_set_hex("fdtaddr", addr);
48 void set_working_fdt_addr(ulong addr)
50 printf("Working FDT set to %lx\n", addr);
51 set_working_fdt_addr_quiet(addr);
55 * Get a value from the fdt and format it to be set in the environment
57 static int fdt_value_env_set(const void *nodep, int len,
58 const char *var, int index)
60 if (is_printable_string(nodep, len)) {
61 const char *nodec = (const char *)nodep;
65 * Iterate over all members in stringlist and find the one at
66 * offset $index. If no such index exists, indicate failure.
68 for (i = 0; i < len; ) {
70 i += strlen(nodec) + 1;
71 nodec += strlen(nodec) + 1;
80 } else if (len == 4) {
83 sprintf(buf, "0x%08X", fdt32_to_cpu(*(fdt32_t *)nodep));
85 } else if (len % 4 == 0 && index >= 0) {
86 /* Needed to print integer arrays. */
87 const unsigned int *nodec = (const unsigned int *)nodep;
93 sprintf(buf, "0x%08X", fdt32_to_cpu(*(nodec + index)));
95 } else if (len % 4 == 0 && len <= 20) {
96 /* Needed to print things like sha1 hashes. */
100 for (i = 0; i < len; i += sizeof(unsigned int))
101 sprintf(buf + (i * 2), "%08x",
102 *(unsigned int *)(nodep + i));
105 printf("error: unprintable value\n");
111 static const char * const fdt_member_table[] = {
124 static int fdt_get_header_value(int argc, char *const argv[])
126 fdt32_t *fdtp = (fdt32_t *)working_fdt;
130 if (argv[2][0] != 'g')
131 return CMD_RET_FAILURE;
133 for (i = 0; i < ARRAY_SIZE(fdt_member_table); i++) {
134 if (strcmp(fdt_member_table[i], argv[4]))
137 val = fdt32_to_cpu(fdtp[i]);
138 env_set_hex(argv[3], val);
139 return CMD_RET_SUCCESS;
142 return CMD_RET_FAILURE;
146 * Flattened Device Tree command, see the help for parameter definitions.
148 static int do_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
151 return CMD_RET_USAGE;
153 /* fdt addr: Set the address of the fdt */
154 if (strncmp(argv[1], "ad", 2) == 0) {
158 struct fdt_header *blob;
160 /* Set the address [and length] of the fdt */
163 while (argc > 0 && **argv == '-') {
175 return CMD_RET_USAGE;
183 blob = (struct fdt_header *)gd->fdt_blob;
186 if (!blob || !fdt_valid(&blob))
188 printf("%s fdt: %08lx\n",
189 control ? "Control" : "Working",
190 control ? (ulong)map_to_sysmem(blob) :
191 env_get_hex("fdtaddr", 0));
195 addr = hextoul(argv[0], NULL);
196 blob = map_sysmem(addr, 0);
197 if ((quiet && fdt_check_header(blob)) ||
198 (!quiet && !fdt_valid(&blob)))
204 set_working_fdt_addr_quiet(addr);
206 set_working_fdt_addr(addr);
213 /* Optional new length */
214 len = hextoul(argv[1], NULL);
215 if (len < fdt_totalsize(blob)) {
217 printf("New length %d < existing length %d, ignoring\n",
218 len, fdt_totalsize(blob));
220 /* Open in place with a new length */
221 err = fdt_open_into(blob, blob, len);
222 if (!quiet && err != 0) {
223 printf("libfdt fdt_open_into(): %s\n",
229 return CMD_RET_SUCCESS;
232 * Move the working_fdt
234 } else if (strncmp(argv[1], "mo", 2) == 0) {
235 struct fdt_header *newaddr;
240 return CMD_RET_USAGE;
243 * Set the address and length of the fdt.
245 working_fdt = map_sysmem(hextoul(argv[2], NULL), 0);
246 if (!fdt_valid(&working_fdt))
249 newaddr = map_sysmem(hextoul(argv[3], NULL), 0);
252 * If the user specifies a length, use that. Otherwise use the
256 len = fdt_totalsize(working_fdt);
258 len = hextoul(argv[4], NULL);
259 if (len < fdt_totalsize(working_fdt)) {
260 printf ("New length 0x%X < existing length "
262 len, fdt_totalsize(working_fdt));
268 * Copy to the new location.
270 err = fdt_open_into(working_fdt, newaddr, len);
272 printf ("libfdt fdt_open_into(): %s\n",
276 set_working_fdt_addr(map_to_sysmem(newaddr));
278 return CMD_RET_SUCCESS;
282 puts("No FDT memory address configured. Please configure\n"
283 "the FDT address via \"fdt addr <address>\" command.\n"
285 return CMD_RET_FAILURE;
288 #ifdef CONFIG_OF_SYSTEM_SETUP
289 /* Call the board-specific fixup routine */
290 if (strncmp(argv[1], "sys", 3) == 0) {
291 int err = ft_system_setup(working_fdt, gd->bd);
294 printf("Failed to add system information to FDT: %s\n",
296 return CMD_RET_FAILURE;
299 return CMD_RET_SUCCESS;
305 if (strncmp(argv[1], "mk", 2) == 0) {
306 char *pathp; /* path */
307 char *nodep; /* new node to add */
308 int nodeoffset; /* node offset from libfdt */
312 * Parameters: Node path, new node to be appended to the path.
315 return CMD_RET_USAGE;
320 nodeoffset = fdt_path_offset (working_fdt, pathp);
321 if (nodeoffset < 0) {
323 * Not found or something else bad happened.
325 printf ("libfdt fdt_path_offset() returned %s\n",
326 fdt_strerror(nodeoffset));
329 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
331 printf ("libfdt fdt_add_subnode(): %s\n",
337 * Set the value of a property in the working_fdt.
339 } else if (strncmp(argv[1], "se", 2) == 0) {
340 char *pathp; /* path */
341 char *prop; /* property */
342 int nodeoffset; /* node offset from libfdt */
343 static char data[SCRATCHPAD] __aligned(4);/* property storage */
345 int len; /* new length of the property */
346 int ret; /* return value */
349 * Parameters: Node path, property, optional value.
352 return CMD_RET_USAGE;
357 nodeoffset = fdt_path_offset (working_fdt, pathp);
358 if (nodeoffset < 0) {
360 * Not found or something else bad happened.
362 printf ("libfdt fdt_path_offset() returned %s\n",
363 fdt_strerror(nodeoffset));
370 ptmp = fdt_getprop(working_fdt, nodeoffset, prop, &len);
371 if (len > SCRATCHPAD) {
372 printf("prop (%d) doesn't fit in scratchpad!\n",
377 memcpy(data, ptmp, len);
379 ret = fdt_parse_prop(&argv[4], argc - 4, data, &len);
384 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
386 printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
390 /********************************************************************
391 * Get the value of a property in the working_fdt.
392 ********************************************************************/
393 } else if (argv[1][0] == 'g') {
394 char *subcmd; /* sub-command */
395 char *pathp; /* path */
396 char *prop; /* property */
397 char *var; /* variable to store result */
398 int nodeoffset; /* node offset from libfdt */
399 const void *nodep; /* property node pointer */
400 int len = 0; /* new length of the property */
403 * Parameters: Node path, property, optional value.
406 return CMD_RET_USAGE;
410 if (argc < 6 && subcmd[0] != 's')
411 return CMD_RET_USAGE;
417 nodeoffset = fdt_path_offset(working_fdt, pathp);
418 if (nodeoffset < 0) {
420 * Not found or something else bad happened.
422 printf("libfdt fdt_path_offset() returned %s\n",
423 fdt_strerror(nodeoffset));
427 if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) {
429 int startDepth = fdt_node_depth(
430 working_fdt, nodeoffset);
431 int curDepth = startDepth;
433 int nextNodeOffset = fdt_next_node(
434 working_fdt, nodeoffset, &curDepth);
436 if (subcmd[0] == 'n')
437 req_index = hextoul(argv[5], NULL);
439 while (curDepth > startDepth) {
440 if (curDepth == startDepth + 1)
442 if (subcmd[0] == 'n' &&
443 cur_index == req_index) {
444 const char *node_name;
446 node_name = fdt_get_name(working_fdt,
449 env_set(var, node_name);
452 nextNodeOffset = fdt_next_node(
453 working_fdt, nextNodeOffset, &curDepth);
454 if (nextNodeOffset < 0)
457 if (subcmd[0] == 's') {
458 /* get the num nodes at this level */
459 env_set_ulong(var, cur_index + 1);
461 /* node index not found */
462 printf("libfdt node not found\n");
467 working_fdt, nodeoffset, prop, &len);
468 if (nodep && len >= 0) {
469 if (subcmd[0] == 'v') {
474 /* no property value */
480 index = simple_strtoul(argv[6], NULL, 10);
482 ret = fdt_value_env_set(nodep, len,
486 } else if (subcmd[0] == 'a') {
487 env_set_hex(var, (ulong)map_to_sysmem(nodep));
488 } else if (subcmd[0] == 's') {
489 env_set_hex(var, len);
491 return CMD_RET_USAGE;
494 printf("libfdt fdt_getprop(): %s\n",
501 * Print (recursive) / List (single level)
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] = "/";
511 * list is an alias for print, but limited to 1 level
513 if (argv[1][0] == 'l') {
518 * Get the starting path. The root node is an oddball,
519 * the offset is zero and has no name.
530 ret = fdt_print(pathp, prop, depth);
535 * Remove a property/node
537 } else if (strncmp(argv[1], "rm", 2) == 0) {
538 int nodeoffset; /* node offset from libfdt */
542 * Get the path. The root node is an oddball, the offset
543 * is zero and has no name.
545 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
546 if (nodeoffset < 0) {
548 * Not found or something else bad happened.
550 printf ("libfdt fdt_path_offset() returned %s\n",
551 fdt_strerror(nodeoffset));
555 * Do the delete. A fourth parameter means delete a property,
556 * otherwise delete the node.
559 err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
561 printf("libfdt fdt_delprop(): %s\n",
563 return CMD_RET_FAILURE;
566 err = fdt_del_node(working_fdt, nodeoffset);
568 printf("libfdt fdt_del_node(): %s\n",
570 return CMD_RET_FAILURE;
575 * Display header info
577 } else if (argv[1][0] == 'h') {
579 return fdt_get_header_value(argc, argv);
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));
595 printf("boot_cpuid_phys:\t0x%x\n",
596 fdt_boot_cpuid_phys(working_fdt));
598 printf("size_dt_strings:\t0x%x\n",
599 fdt_size_dt_strings(working_fdt));
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));
610 } else if (strncmp(argv[1], "boo", 3) == 0) {
614 return CMD_RET_USAGE;
616 tmp = hextoul(argv[2], NULL);
617 fdt_set_boot_cpuid_phys(working_fdt, tmp);
622 } else if (strncmp(argv[1], "me", 2) == 0) {
627 return CMD_RET_USAGE;
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);
636 * mem reserve commands
638 } else if (strncmp(argv[1], "rs", 2) == 0) {
639 if (argv[2][0] == 'p') {
641 int total = fdt_num_mem_rsv(working_fdt);
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);
649 printf("libfdt fdt_get_mem_rsv(): %s\n",
653 printf(" %x\t%08x%08x\t%08x%08x\n", j,
655 (u32)(addr & 0xffffffff),
657 (u32)(size & 0xffffffff));
659 } else if (argv[2][0] == 'a') {
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);
667 printf("libfdt fdt_add_mem_rsv(): %s\n",
669 return CMD_RET_FAILURE;
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);
676 printf("libfdt fdt_del_mem_rsv(): %s\n",
678 return CMD_RET_FAILURE;
681 /* Unrecognized command */
682 return CMD_RET_USAGE;
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);
691 printf("Failed to update board information in FDT: %s\n",
693 return CMD_RET_FAILURE;
695 #ifdef CONFIG_ARCH_KEYSTONE
696 ft_board_setup_ex(working_fdt, gd->bd);
700 /* Create a chosen node */
701 else if (strncmp(argv[1], "cho", 3) == 0) {
702 unsigned long initrd_start = 0, initrd_end = 0;
704 if ((argc != 2) && (argc != 4))
705 return CMD_RET_USAGE;
708 initrd_start = hextoul(argv[2], NULL);
709 initrd_end = initrd_start + hextoul(argv[3], NULL) - 1;
712 fdt_chosen(working_fdt);
713 fdt_initrd(working_fdt, initrd_start, initrd_end);
715 #if defined(CONFIG_FIT_SIGNATURE)
716 } else if (strncmp(argv[1], "che", 3) == 0) {
720 struct fdt_header *blob;
723 return CMD_RET_FAILURE;
726 addr = hextoul(argv[2], NULL);
727 blob = map_sysmem(addr, 0);
729 blob = (struct fdt_header *)gd->fdt_blob;
731 if (!fdt_valid(&blob))
735 cfg_noffset = fit_conf_get_node(working_fdt, NULL);
736 if (cfg_noffset < 0) {
737 printf("Could not find configuration node: %s\n",
738 fdt_strerror(cfg_noffset));
739 return CMD_RET_FAILURE;
742 ret = fit_config_verify(working_fdt, cfg_noffset);
744 return CMD_RET_SUCCESS;
746 return CMD_RET_FAILURE;
750 #ifdef CONFIG_OF_LIBFDT_OVERLAY
751 /* apply an overlay */
752 else if (strncmp(argv[1], "ap", 2) == 0) {
754 struct fdt_header *blob;
758 return CMD_RET_USAGE;
761 return CMD_RET_FAILURE;
763 addr = hextoul(argv[2], NULL);
764 blob = map_sysmem(addr, 0);
765 if (!fdt_valid(&blob))
766 return CMD_RET_FAILURE;
768 /* apply method prints messages on error */
769 ret = fdt_overlay_apply_verbose(working_fdt, blob);
771 return CMD_RET_FAILURE;
775 else if (strncmp(argv[1], "re", 2) == 0) {
778 extrasize = hextoul(argv[2], NULL);
781 fdt_shrink_to_minimum(working_fdt, extrasize);
784 /* Unrecognized command */
785 return CMD_RET_USAGE;
791 /****************************************************************************/
794 * Parse the user's input, partially heuristic. Valid formats:
795 * <0x00112233 4 05> - an array of cells. Numbers follow standard
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
807 static int fdt_parse_prop(char * const *newval, int count, char *data, int *len)
809 char *cp; /* temporary char pointer */
810 char *newp; /* temporary newval char pointer */
811 unsigned long tmp; /* holds converted values */
817 /* An array of cells */
820 while ((*newp != '>') && (stridx < count)) {
822 * Keep searching until we find that last ">"
823 * That way users don't have to escape the spaces
826 newp = newval[++stridx];
831 tmp = simple_strtoul(cp, &newp, 0);
833 *(fdt32_t *)data = cpu_to_fdt32(tmp);
840 /* If the ptr didn't advance, something went wrong */
841 if ((newp - cp) <= 0) {
842 printf("Sorry, I could not convert \"%s\"\n",
852 printf("Unexpected character '%c'\n", *newp);
855 } else if (*newp == '[') {
857 * Byte stream. Convert the values.
860 while ((stridx < count) && (*newp != ']')) {
864 newp = newval[++stridx];
867 if (!isxdigit(*newp))
869 tmp = hextoul(newp, &newp);
870 *data++ = tmp & 0xFF;
874 printf("Unexpected character '%c'\n", *newp);
879 * Assume it is one or more strings. Copy it into our
880 * data area for convenience (including the
881 * terminating '\0's).
883 while (stridx < count) {
884 size_t length = strlen(newp) + 1;
888 newp = newval[++stridx];
894 /****************************************************************************/
897 * Heuristic to guess if this is a string or concatenated strings.
900 static int is_printable_string(const void *data, int len)
902 const char *s = data;
905 /* zero length is not */
909 /* must terminate with zero */
910 if (s[len - 1] != '\0')
917 while (s < se && *s && isprint((unsigned char)*s))
920 /* not zero, or not done yet */
921 if (*s != '\0' || s == ss)
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.
935 static void print_data(const void *data, int len)
938 const char *env_max_dump;
939 ulong max_dump = ULONG_MAX;
941 /* no data, don't print */
945 env_max_dump = env_get("fdt_max_dump");
947 max_dump = hextoul(env_max_dump, NULL);
950 * It is a string, but it may have multiple strings (embedded '\0's).
952 if (is_printable_string(data, len)) {
959 j += strlen(data) + 1;
960 data += strlen(data) + 1;
968 printf("* 0x%p [0x%08x]", data, len);
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) ? " " : "");
978 } else { /* anything else... hexdump */
980 printf("* 0x%p [0x%08x]", data, len);
985 for (j = 0, s = data; j < len; j++)
986 printf("%02x%s", s[j], j < len - 1 ? " " : "");
992 /****************************************************************************/
995 * Recursively print (a portion of) the working_fdt. The depth parameter
996 * determines how deeply nested the fdt is printed.
998 static int fdt_print(const char *pathp, char *prop, int depth)
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;
1011 nodeoffset = fdt_path_offset (working_fdt, pathp);
1012 if (nodeoffset < 0) {
1014 * Not found or something else bad happened.
1016 printf ("libfdt fdt_path_offset() returned %s\n",
1017 fdt_strerror(nodeoffset));
1021 * The user passed in a property as well as node path.
1022 * Print only the given property and then return.
1025 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
1027 /* no property value */
1028 printf("%s %s\n", pathp, prop);
1030 } else if (nodep && len > 0) {
1031 printf("%s = ", prop);
1032 print_data (nodep, len);
1036 printf ("libfdt fdt_getprop(): %s\n",
1043 * The user passed in a node path and no property,
1044 * print the node and all subnodes.
1047 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
1049 case FDT_BEGIN_NODE:
1050 pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
1051 if (level <= depth) {
1053 pathp = "/* NULL pointer error */";
1055 pathp = "/"; /* root is nameless */
1057 &tabs[MAX_LEVEL - level], pathp);
1060 if (level >= MAX_LEVEL) {
1061 printf("Nested too deep, aborting.\n");
1068 printf("%s};\n", &tabs[MAX_LEVEL - level]);
1070 level = -1; /* exit the loop */
1074 fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
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;
1081 printf ("libfdt fdt_getprop(): %s\n",
1084 } else if (len == 0) {
1085 /* the property has no value */
1088 &tabs[MAX_LEVEL - level],
1091 if (level <= depth) {
1093 &tabs[MAX_LEVEL - level],
1095 print_data (nodep, len);
1101 printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
1107 printf("Unknown tag 0x%08X\n", tag);
1110 nodeoffset = nextoffset;
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"
1122 #ifdef CONFIG_OF_BOARD_SETUP
1123 "fdt boardsetup - Do board-specific set up\n"
1125 #ifdef CONFIG_OF_SYSTEM_SETUP
1126 "fdt systemsetup - Do system-specific set up\n"
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"
1155 "NOTE: Dereference aliases by omitting the leading '/', "
1156 "e.g. fdt print ethernet0.";
1160 fdt, 255, 0, do_fdt,
1161 "flattened device tree utility commands", fdt_help_text