1 // SPDX-License-Identifier: GPL-2.0+
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>
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 void set_working_fdt_addr(ulong addr)
43 buf = map_sysmem(addr, 0);
45 env_set_hex("fdtaddr", addr);
49 * Get a value from the fdt and format it to be set in the environment
51 static int fdt_value_env_set(const void *nodep, int len, const char *var)
53 if (is_printable_string(nodep, len))
54 env_set(var, (void *)nodep);
58 sprintf(buf, "0x%08X", fdt32_to_cpu(*(fdt32_t *)nodep));
60 } else if (len%4 == 0 && len <= 20) {
61 /* Needed to print things like sha1 hashes. */
65 for (i = 0; i < len; i += sizeof(unsigned int))
66 sprintf(buf + (i * 2), "%08x",
67 *(unsigned int *)(nodep + i));
70 printf("error: unprintable value\n");
76 static const char * const fdt_member_table[] = {
89 static int fdt_get_header_value(int argc, char *const argv[])
91 fdt32_t *fdtp = (fdt32_t *)working_fdt;
95 if (argv[2][0] != 'g')
96 return CMD_RET_FAILURE;
98 for (i = 0; i < ARRAY_SIZE(fdt_member_table); i++) {
99 if (strcmp(fdt_member_table[i], argv[4]))
102 val = fdt32_to_cpu(fdtp[i]);
103 env_set_hex(argv[3], val);
104 return CMD_RET_SUCCESS;
107 return CMD_RET_FAILURE;
111 * Flattened Device Tree command, see the help for parameter definitions.
113 static int do_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
116 return CMD_RET_USAGE;
118 /* fdt addr: Set the address of the fdt */
119 if (strncmp(argv[1], "ad", 2) == 0) {
123 struct fdt_header *blob;
125 /* Set the address [and length] of the fdt */
128 while (argc > 0 && **argv == '-') {
140 return CMD_RET_USAGE;
148 blob = (struct fdt_header *)gd->fdt_blob;
151 if (!blob || !fdt_valid(&blob))
153 printf("%s fdt: %08lx\n",
154 control ? "Control" : "Working",
155 control ? (ulong)map_to_sysmem(blob) :
156 env_get_hex("fdtaddr", 0));
160 addr = hextoul(argv[0], NULL);
161 blob = map_sysmem(addr, 0);
162 if ((quiet && fdt_check_header(blob)) ||
163 (!quiet && !fdt_valid(&blob)))
168 set_working_fdt_addr(addr);
174 /* Optional new length */
175 len = hextoul(argv[1], NULL);
176 if (len < fdt_totalsize(blob)) {
178 printf("New length %d < existing length %d, ignoring\n",
179 len, fdt_totalsize(blob));
181 /* Open in place with a new length */
182 err = fdt_open_into(blob, blob, len);
183 if (!quiet && err != 0) {
184 printf("libfdt fdt_open_into(): %s\n",
190 return CMD_RET_SUCCESS;
194 puts("No FDT memory address configured. Please configure\n"
195 "the FDT address via \"fdt addr <address>\" command.\n"
197 return CMD_RET_FAILURE;
201 * Move the working_fdt
203 if (strncmp(argv[1], "mo", 2) == 0) {
204 struct fdt_header *newaddr;
209 return CMD_RET_USAGE;
212 * Set the address and length of the fdt.
214 working_fdt = (struct fdt_header *)hextoul(argv[2], NULL);
215 if (!fdt_valid(&working_fdt))
218 newaddr = (struct fdt_header *)hextoul(argv[3], NULL);
221 * If the user specifies a length, use that. Otherwise use the
225 len = fdt_totalsize(working_fdt);
227 len = hextoul(argv[4], NULL);
228 if (len < fdt_totalsize(working_fdt)) {
229 printf ("New length 0x%X < existing length "
231 len, fdt_totalsize(working_fdt));
237 * Copy to the new location.
239 err = fdt_open_into(working_fdt, newaddr, len);
241 printf ("libfdt fdt_open_into(): %s\n",
245 set_working_fdt_addr((ulong)newaddr);
246 #ifdef CONFIG_OF_SYSTEM_SETUP
247 /* Call the board-specific fixup routine */
248 } else if (strncmp(argv[1], "sys", 3) == 0) {
249 int err = ft_system_setup(working_fdt, gd->bd);
252 printf("Failed to add system information to FDT: %s\n",
254 return CMD_RET_FAILURE;
260 } else if (strncmp(argv[1], "mk", 2) == 0) {
261 char *pathp; /* path */
262 char *nodep; /* new node to add */
263 int nodeoffset; /* node offset from libfdt */
267 * Parameters: Node path, new node to be appended to the path.
270 return CMD_RET_USAGE;
275 nodeoffset = fdt_path_offset (working_fdt, pathp);
276 if (nodeoffset < 0) {
278 * Not found or something else bad happened.
280 printf ("libfdt fdt_path_offset() returned %s\n",
281 fdt_strerror(nodeoffset));
284 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
286 printf ("libfdt fdt_add_subnode(): %s\n",
292 * Set the value of a property in the working_fdt.
294 } else if (strncmp(argv[1], "se", 2) == 0) {
295 char *pathp; /* path */
296 char *prop; /* property */
297 int nodeoffset; /* node offset from libfdt */
298 static char data[SCRATCHPAD] __aligned(4);/* property storage */
300 int len; /* new length of the property */
301 int ret; /* return value */
304 * Parameters: Node path, property, optional value.
307 return CMD_RET_USAGE;
312 nodeoffset = fdt_path_offset (working_fdt, pathp);
313 if (nodeoffset < 0) {
315 * Not found or something else bad happened.
317 printf ("libfdt fdt_path_offset() returned %s\n",
318 fdt_strerror(nodeoffset));
325 ptmp = fdt_getprop(working_fdt, nodeoffset, prop, &len);
326 if (len > SCRATCHPAD) {
327 printf("prop (%d) doesn't fit in scratchpad!\n",
332 memcpy(data, ptmp, len);
334 ret = fdt_parse_prop(&argv[4], argc - 4, data, &len);
339 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
341 printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
345 /********************************************************************
346 * Get the value of a property in the working_fdt.
347 ********************************************************************/
348 } else if (argv[1][0] == 'g') {
349 char *subcmd; /* sub-command */
350 char *pathp; /* path */
351 char *prop; /* property */
352 char *var; /* variable to store result */
353 int nodeoffset; /* node offset from libfdt */
354 const void *nodep; /* property node pointer */
355 int len = 0; /* new length of the property */
358 * Parameters: Node path, property, optional value.
361 return CMD_RET_USAGE;
365 if (argc < 6 && subcmd[0] != 's')
366 return CMD_RET_USAGE;
372 nodeoffset = fdt_path_offset(working_fdt, pathp);
373 if (nodeoffset < 0) {
375 * Not found or something else bad happened.
377 printf("libfdt fdt_path_offset() returned %s\n",
378 fdt_strerror(nodeoffset));
382 if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) {
384 int startDepth = fdt_node_depth(
385 working_fdt, nodeoffset);
386 int curDepth = startDepth;
388 int nextNodeOffset = fdt_next_node(
389 working_fdt, nodeoffset, &curDepth);
391 if (subcmd[0] == 'n')
392 req_index = hextoul(argv[5], NULL);
394 while (curDepth > startDepth) {
395 if (curDepth == startDepth + 1)
397 if (subcmd[0] == 'n' &&
398 cur_index == req_index) {
399 const char *node_name;
401 node_name = fdt_get_name(working_fdt,
404 env_set(var, node_name);
407 nextNodeOffset = fdt_next_node(
408 working_fdt, nextNodeOffset, &curDepth);
409 if (nextNodeOffset < 0)
412 if (subcmd[0] == 's') {
413 /* get the num nodes at this level */
414 env_set_ulong(var, cur_index + 1);
416 /* node index not found */
417 printf("libfdt node not found\n");
422 working_fdt, nodeoffset, prop, &len);
424 /* no property value */
427 } else if (nodep && len > 0) {
428 if (subcmd[0] == 'v') {
431 ret = fdt_value_env_set(nodep, len,
435 } else if (subcmd[0] == 'a') {
439 sprintf(buf, "0x%p", nodep);
441 } else if (subcmd[0] == 's') {
445 sprintf(buf, "0x%08X", len);
448 return CMD_RET_USAGE;
451 printf("libfdt fdt_getprop(): %s\n",
458 * Print (recursive) / List (single level)
460 } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
461 int depth = MAX_LEVEL; /* how deep to print */
462 char *pathp; /* path */
463 char *prop; /* property */
464 int ret; /* return value */
465 static char root[2] = "/";
468 * list is an alias for print, but limited to 1 level
470 if (argv[1][0] == 'l') {
475 * Get the starting path. The root node is an oddball,
476 * the offset is zero and has no name.
487 ret = fdt_print(pathp, prop, depth);
492 * Remove a property/node
494 } else if (strncmp(argv[1], "rm", 2) == 0) {
495 int nodeoffset; /* node offset from libfdt */
499 * Get the path. The root node is an oddball, the offset
500 * is zero and has no name.
502 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
503 if (nodeoffset < 0) {
505 * Not found or something else bad happened.
507 printf ("libfdt fdt_path_offset() returned %s\n",
508 fdt_strerror(nodeoffset));
512 * Do the delete. A fourth parameter means delete a property,
513 * otherwise delete the node.
516 err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
518 printf("libfdt fdt_delprop(): %s\n",
523 err = fdt_del_node(working_fdt, nodeoffset);
525 printf("libfdt fdt_del_node(): %s\n",
532 * Display header info
534 } else if (argv[1][0] == 'h') {
536 return fdt_get_header_value(argc, argv);
538 u32 version = fdt_version(working_fdt);
539 printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt));
540 printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt),
541 fdt_totalsize(working_fdt));
542 printf("off_dt_struct:\t\t0x%x\n",
543 fdt_off_dt_struct(working_fdt));
544 printf("off_dt_strings:\t\t0x%x\n",
545 fdt_off_dt_strings(working_fdt));
546 printf("off_mem_rsvmap:\t\t0x%x\n",
547 fdt_off_mem_rsvmap(working_fdt));
548 printf("version:\t\t%d\n", version);
549 printf("last_comp_version:\t%d\n",
550 fdt_last_comp_version(working_fdt));
552 printf("boot_cpuid_phys:\t0x%x\n",
553 fdt_boot_cpuid_phys(working_fdt));
555 printf("size_dt_strings:\t0x%x\n",
556 fdt_size_dt_strings(working_fdt));
558 printf("size_dt_struct:\t\t0x%x\n",
559 fdt_size_dt_struct(working_fdt));
560 printf("number mem_rsv:\t\t0x%x\n",
561 fdt_num_mem_rsv(working_fdt));
567 } else if (strncmp(argv[1], "boo", 3) == 0) {
568 unsigned long tmp = hextoul(argv[2], NULL);
569 fdt_set_boot_cpuid_phys(working_fdt, tmp);
574 } else if (strncmp(argv[1], "me", 2) == 0) {
577 addr = simple_strtoull(argv[2], NULL, 16);
578 size = simple_strtoull(argv[3], NULL, 16);
579 err = fdt_fixup_memory(working_fdt, addr, size);
584 * mem reserve commands
586 } else if (strncmp(argv[1], "rs", 2) == 0) {
587 if (argv[2][0] == 'p') {
589 int total = fdt_num_mem_rsv(working_fdt);
591 printf("index\t\t start\t\t size\n");
592 printf("-------------------------------"
593 "-----------------\n");
594 for (j = 0; j < total; j++) {
595 err = fdt_get_mem_rsv(working_fdt, j, &addr, &size);
597 printf("libfdt fdt_get_mem_rsv(): %s\n",
601 printf(" %x\t%08x%08x\t%08x%08x\n", j,
603 (u32)(addr & 0xffffffff),
605 (u32)(size & 0xffffffff));
607 } else if (argv[2][0] == 'a') {
610 addr = simple_strtoull(argv[3], NULL, 16);
611 size = simple_strtoull(argv[4], NULL, 16);
612 err = fdt_add_mem_rsv(working_fdt, addr, size);
615 printf("libfdt fdt_add_mem_rsv(): %s\n",
619 } else if (argv[2][0] == 'd') {
620 unsigned long idx = hextoul(argv[3], NULL);
621 int err = fdt_del_mem_rsv(working_fdt, idx);
624 printf("libfdt fdt_del_mem_rsv(): %s\n",
629 /* Unrecognized command */
630 return CMD_RET_USAGE;
633 #ifdef CONFIG_OF_BOARD_SETUP
634 /* Call the board-specific fixup routine */
635 else if (strncmp(argv[1], "boa", 3) == 0) {
636 int err = ft_board_setup(working_fdt, gd->bd);
639 printf("Failed to update board information in FDT: %s\n",
641 return CMD_RET_FAILURE;
643 #ifdef CONFIG_ARCH_KEYSTONE
644 ft_board_setup_ex(working_fdt, gd->bd);
648 /* Create a chosen node */
649 else if (strncmp(argv[1], "cho", 3) == 0) {
650 unsigned long initrd_start = 0, initrd_end = 0;
652 if ((argc != 2) && (argc != 4))
653 return CMD_RET_USAGE;
656 initrd_start = hextoul(argv[2], NULL);
657 initrd_end = initrd_start + hextoul(argv[3], NULL) - 1;
660 fdt_chosen(working_fdt);
661 fdt_initrd(working_fdt, initrd_start, initrd_end);
663 #if defined(CONFIG_FIT_SIGNATURE)
664 } else if (strncmp(argv[1], "che", 3) == 0) {
668 struct fdt_header *blob;
671 return CMD_RET_FAILURE;
674 addr = hextoul(argv[2], NULL);
675 blob = map_sysmem(addr, 0);
677 blob = (struct fdt_header *)gd->fdt_blob;
679 if (!fdt_valid(&blob))
683 cfg_noffset = fit_conf_get_node(working_fdt, NULL);
685 printf("Could not find configuration node: %s\n",
686 fdt_strerror(cfg_noffset));
687 return CMD_RET_FAILURE;
690 ret = fit_config_verify(working_fdt, cfg_noffset);
692 return CMD_RET_SUCCESS;
694 return CMD_RET_FAILURE;
698 #ifdef CONFIG_OF_LIBFDT_OVERLAY
699 /* apply an overlay */
700 else if (strncmp(argv[1], "ap", 2) == 0) {
702 struct fdt_header *blob;
706 return CMD_RET_USAGE;
709 return CMD_RET_FAILURE;
711 addr = hextoul(argv[2], NULL);
712 blob = map_sysmem(addr, 0);
713 if (!fdt_valid(&blob))
714 return CMD_RET_FAILURE;
716 /* apply method prints messages on error */
717 ret = fdt_overlay_apply_verbose(working_fdt, blob);
719 return CMD_RET_FAILURE;
723 else if (strncmp(argv[1], "re", 2) == 0) {
726 extrasize = hextoul(argv[2], NULL);
729 fdt_shrink_to_minimum(working_fdt, extrasize);
732 /* Unrecognized command */
733 return CMD_RET_USAGE;
739 /****************************************************************************/
742 * Parse the user's input, partially heuristic. Valid formats:
743 * <0x00112233 4 05> - an array of cells. Numbers follow standard
745 * [00 11 22 .. nn] - byte stream
746 * "string" - If the the value doesn't start with "<" or "[", it is
747 * treated as a string. Note that the quotes are
748 * stripped by the parser before we get the string.
749 * newval: An array of strings containing the new property as specified
750 * on the command line
751 * count: The number of strings in the array
752 * data: A bytestream to be placed in the property
753 * len: The length of the resulting bytestream
755 static int fdt_parse_prop(char * const *newval, int count, char *data, int *len)
757 char *cp; /* temporary char pointer */
758 char *newp; /* temporary newval char pointer */
759 unsigned long tmp; /* holds converted values */
765 /* An array of cells */
768 while ((*newp != '>') && (stridx < count)) {
770 * Keep searching until we find that last ">"
771 * That way users don't have to escape the spaces
774 newp = newval[++stridx];
779 tmp = simple_strtoul(cp, &newp, 0);
781 *(fdt32_t *)data = cpu_to_fdt32(tmp);
788 /* If the ptr didn't advance, something went wrong */
789 if ((newp - cp) <= 0) {
790 printf("Sorry, I could not convert \"%s\"\n",
800 printf("Unexpected character '%c'\n", *newp);
803 } else if (*newp == '[') {
805 * Byte stream. Convert the values.
808 while ((stridx < count) && (*newp != ']')) {
812 newp = newval[++stridx];
815 if (!isxdigit(*newp))
817 tmp = hextoul(newp, &newp);
818 *data++ = tmp & 0xFF;
822 printf("Unexpected character '%c'\n", *newp);
827 * Assume it is one or more strings. Copy it into our
828 * data area for convenience (including the
829 * terminating '\0's).
831 while (stridx < count) {
832 size_t length = strlen(newp) + 1;
836 newp = newval[++stridx];
842 /****************************************************************************/
845 * Heuristic to guess if this is a string or concatenated strings.
848 static int is_printable_string(const void *data, int len)
850 const char *s = data;
852 /* zero length is not */
856 /* must terminate with zero or '\n' */
857 if (s[len - 1] != '\0' && s[len - 1] != '\n')
860 /* printable or a null byte (concatenated strings) */
861 while (((*s == '\0') || isprint(*s) || isspace(*s)) && (len > 0)) {
863 * If we see a null, there are three possibilities:
864 * 1) If len == 1, it is the end of the string, printable
865 * 2) Next character also a null, not printable.
866 * 3) Next character not a null, continue to check.
878 /* Not the null termination, or not done yet: not printable */
879 if (*s != '\0' || (len != 0))
887 * Print the property in the best format, a heuristic guess. Print as
888 * a string, concatenated strings, a byte, word, double word, or (if all
889 * else fails) it is printed as a stream of bytes.
891 static void print_data(const void *data, int len)
894 const char *env_max_dump;
895 ulong max_dump = ULONG_MAX;
897 /* no data, don't print */
901 env_max_dump = env_get("fdt_max_dump");
903 max_dump = hextoul(env_max_dump, NULL);
906 * It is a string, but it may have multiple strings (embedded '\0's).
908 if (is_printable_string(data, len)) {
915 j += strlen(data) + 1;
916 data += strlen(data) + 1;
924 printf("* 0x%p [0x%08x]", data, len);
929 for (j = 0, p = data; j < len/4; j++)
930 printf("0x%08x%s", fdt32_to_cpu(p[j]),
931 j < (len/4 - 1) ? " " : "");
934 } else { /* anything else... hexdump */
936 printf("* 0x%p [0x%08x]", data, len);
941 for (j = 0, s = data; j < len; j++)
942 printf("%02x%s", s[j], j < len - 1 ? " " : "");
948 /****************************************************************************/
951 * Recursively print (a portion of) the working_fdt. The depth parameter
952 * determines how deeply nested the fdt is printed.
954 static int fdt_print(const char *pathp, char *prop, int depth)
956 static char tabs[MAX_LEVEL+1] =
957 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
958 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
959 const void *nodep; /* property node pointer */
960 int nodeoffset; /* node offset from libfdt */
961 int nextoffset; /* next node offset from libfdt */
962 uint32_t tag; /* tag */
963 int len; /* length of the property */
964 int level = 0; /* keep track of nesting level */
965 const struct fdt_property *fdt_prop;
967 nodeoffset = fdt_path_offset (working_fdt, pathp);
968 if (nodeoffset < 0) {
970 * Not found or something else bad happened.
972 printf ("libfdt fdt_path_offset() returned %s\n",
973 fdt_strerror(nodeoffset));
977 * The user passed in a property as well as node path.
978 * Print only the given property and then return.
981 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
983 /* no property value */
984 printf("%s %s\n", pathp, prop);
986 } else if (nodep && len > 0) {
987 printf("%s = ", prop);
988 print_data (nodep, len);
992 printf ("libfdt fdt_getprop(): %s\n",
999 * The user passed in a node path and no property,
1000 * print the node and all subnodes.
1003 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
1005 case FDT_BEGIN_NODE:
1006 pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
1007 if (level <= depth) {
1009 pathp = "/* NULL pointer error */";
1011 pathp = "/"; /* root is nameless */
1013 &tabs[MAX_LEVEL - level], pathp);
1016 if (level >= MAX_LEVEL) {
1017 printf("Nested too deep, aborting.\n");
1024 printf("%s};\n", &tabs[MAX_LEVEL - level]);
1026 level = -1; /* exit the loop */
1030 fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
1032 pathp = fdt_string(working_fdt,
1033 fdt32_to_cpu(fdt_prop->nameoff));
1034 len = fdt32_to_cpu(fdt_prop->len);
1035 nodep = fdt_prop->data;
1037 printf ("libfdt fdt_getprop(): %s\n",
1040 } else if (len == 0) {
1041 /* the property has no value */
1044 &tabs[MAX_LEVEL - level],
1047 if (level <= depth) {
1049 &tabs[MAX_LEVEL - level],
1051 print_data (nodep, len);
1057 printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
1063 printf("Unknown tag 0x%08X\n", tag);
1066 nodeoffset = nextoffset;
1071 /********************************************************************/
1072 #ifdef CONFIG_SYS_LONGHELP
1073 static char fdt_help_text[] =
1074 "addr [-c] [-q] <addr> [<size>] - Set the [control] fdt location to <addr>\n"
1075 #ifdef CONFIG_OF_LIBFDT_OVERLAY
1076 "fdt apply <addr> - Apply overlay to the DT\n"
1078 #ifdef CONFIG_OF_BOARD_SETUP
1079 "fdt boardsetup - Do board-specific set up\n"
1081 #ifdef CONFIG_OF_SYSTEM_SETUP
1082 "fdt systemsetup - Do system-specific set up\n"
1084 "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n"
1085 "fdt resize [<extrasize>] - Resize fdt to size + padding to 4k addr + some optional <extrasize> if needed\n"
1086 "fdt print <path> [<prop>] - Recursive print starting at <path>\n"
1087 "fdt list <path> [<prop>] - Print one level starting at <path>\n"
1088 "fdt get value <var> <path> <prop> - Get <property> and store in <var>\n"
1089 "fdt get name <var> <path> <index> - Get name of node <index> and store in <var>\n"
1090 "fdt get addr <var> <path> <prop> - Get start address of <property> and store in <var>\n"
1091 "fdt get size <var> <path> [<prop>] - Get size of [<property>] or num nodes and store in <var>\n"
1092 "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n"
1093 "fdt mknode <path> <node> - Create a new node after <path>\n"
1094 "fdt rm <path> [<prop>] - Delete the node or <property>\n"
1095 "fdt header [get <var> <member>] - Display header info\n"
1096 " get - get header member <member> and store it in <var>\n"
1097 "fdt bootcpu <id> - Set boot cpuid\n"
1098 "fdt memory <addr> <size> - Add/Update memory node\n"
1099 "fdt rsvmem print - Show current mem reserves\n"
1100 "fdt rsvmem add <addr> <size> - Add a mem reserve\n"
1101 "fdt rsvmem delete <index> - Delete a mem reserves\n"
1102 "fdt chosen [<start> <size>] - Add/update the /chosen branch in the tree\n"
1103 " <start>/<size> - initrd start addr/size\n"
1104 #if defined(CONFIG_FIT_SIGNATURE)
1105 "fdt checksign [<addr>] - check FIT signature\n"
1106 " <start> - addr of key blob\n"
1107 " default gd->fdt_blob\n"
1109 "NOTE: Dereference aliases by omitting the leading '/', "
1110 "e.g. fdt print ethernet0.";
1114 fdt, 255, 0, do_fdt,
1115 "flattened device tree utility commands", fdt_help_text