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) {
122 struct fdt_header *blob;
124 /* Set the address [and length] of the fdt */
127 if (argc && !strcmp(*argv, "-c")) {
134 blob = (struct fdt_header *)gd->fdt_blob;
137 if (!blob || !fdt_valid(&blob))
139 printf("The address of the fdt is %#08lx\n",
140 control ? (ulong)map_to_sysmem(blob) :
141 env_get_hex("fdtaddr", 0));
145 addr = simple_strtoul(argv[0], NULL, 16);
146 blob = map_sysmem(addr, 0);
147 if (!fdt_valid(&blob))
152 set_working_fdt_addr(addr);
158 /* Optional new length */
159 len = simple_strtoul(argv[1], NULL, 16);
160 if (len < fdt_totalsize(blob)) {
161 printf("New length %d < existing length %d, ignoring\n",
162 len, fdt_totalsize(blob));
164 /* Open in place with a new length */
165 err = fdt_open_into(blob, blob, len);
167 printf("libfdt fdt_open_into(): %s\n",
173 return CMD_RET_SUCCESS;
177 puts("No FDT memory address configured. Please configure\n"
178 "the FDT address via \"fdt addr <address>\" command.\n"
180 return CMD_RET_FAILURE;
184 * Move the working_fdt
186 if (strncmp(argv[1], "mo", 2) == 0) {
187 struct fdt_header *newaddr;
192 return CMD_RET_USAGE;
195 * Set the address and length of the fdt.
197 working_fdt = (struct fdt_header *)simple_strtoul(argv[2], NULL, 16);
198 if (!fdt_valid(&working_fdt))
201 newaddr = (struct fdt_header *)simple_strtoul(argv[3],NULL,16);
204 * If the user specifies a length, use that. Otherwise use the
208 len = fdt_totalsize(working_fdt);
210 len = simple_strtoul(argv[4], NULL, 16);
211 if (len < fdt_totalsize(working_fdt)) {
212 printf ("New length 0x%X < existing length "
214 len, fdt_totalsize(working_fdt));
220 * Copy to the new location.
222 err = fdt_open_into(working_fdt, newaddr, len);
224 printf ("libfdt fdt_open_into(): %s\n",
228 set_working_fdt_addr((ulong)newaddr);
229 #ifdef CONFIG_OF_SYSTEM_SETUP
230 /* Call the board-specific fixup routine */
231 } else if (strncmp(argv[1], "sys", 3) == 0) {
232 int err = ft_system_setup(working_fdt, gd->bd);
235 printf("Failed to add system information to FDT: %s\n",
237 return CMD_RET_FAILURE;
243 } else if (strncmp(argv[1], "mk", 2) == 0) {
244 char *pathp; /* path */
245 char *nodep; /* new node to add */
246 int nodeoffset; /* node offset from libfdt */
250 * Parameters: Node path, new node to be appended to the path.
253 return CMD_RET_USAGE;
258 nodeoffset = fdt_path_offset (working_fdt, pathp);
259 if (nodeoffset < 0) {
261 * Not found or something else bad happened.
263 printf ("libfdt fdt_path_offset() returned %s\n",
264 fdt_strerror(nodeoffset));
267 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
269 printf ("libfdt fdt_add_subnode(): %s\n",
275 * Set the value of a property in the working_fdt.
277 } else if (strncmp(argv[1], "se", 2) == 0) {
278 char *pathp; /* path */
279 char *prop; /* property */
280 int nodeoffset; /* node offset from libfdt */
281 static char data[SCRATCHPAD] __aligned(4);/* property storage */
283 int len; /* new length of the property */
284 int ret; /* return value */
287 * Parameters: Node path, property, optional value.
290 return CMD_RET_USAGE;
295 nodeoffset = fdt_path_offset (working_fdt, pathp);
296 if (nodeoffset < 0) {
298 * Not found or something else bad happened.
300 printf ("libfdt fdt_path_offset() returned %s\n",
301 fdt_strerror(nodeoffset));
308 ptmp = fdt_getprop(working_fdt, nodeoffset, prop, &len);
309 if (len > SCRATCHPAD) {
310 printf("prop (%d) doesn't fit in scratchpad!\n",
315 memcpy(data, ptmp, len);
317 ret = fdt_parse_prop(&argv[4], argc - 4, data, &len);
322 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
324 printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
328 /********************************************************************
329 * Get the value of a property in the working_fdt.
330 ********************************************************************/
331 } else if (argv[1][0] == 'g') {
332 char *subcmd; /* sub-command */
333 char *pathp; /* path */
334 char *prop; /* property */
335 char *var; /* variable to store result */
336 int nodeoffset; /* node offset from libfdt */
337 const void *nodep; /* property node pointer */
338 int len = 0; /* new length of the property */
341 * Parameters: Node path, property, optional value.
344 return CMD_RET_USAGE;
348 if (argc < 6 && subcmd[0] != 's')
349 return CMD_RET_USAGE;
355 nodeoffset = fdt_path_offset(working_fdt, pathp);
356 if (nodeoffset < 0) {
358 * Not found or something else bad happened.
360 printf("libfdt fdt_path_offset() returned %s\n",
361 fdt_strerror(nodeoffset));
365 if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) {
367 int startDepth = fdt_node_depth(
368 working_fdt, nodeoffset);
369 int curDepth = startDepth;
371 int nextNodeOffset = fdt_next_node(
372 working_fdt, nodeoffset, &curDepth);
374 if (subcmd[0] == 'n')
375 reqIndex = simple_strtoul(argv[5], NULL, 16);
377 while (curDepth > startDepth) {
378 if (curDepth == startDepth + 1)
380 if (subcmd[0] == 'n' && curIndex == reqIndex) {
381 const char *node_name;
383 node_name = fdt_get_name(working_fdt,
386 env_set(var, node_name);
389 nextNodeOffset = fdt_next_node(
390 working_fdt, nextNodeOffset, &curDepth);
391 if (nextNodeOffset < 0)
394 if (subcmd[0] == 's') {
395 /* get the num nodes at this level */
396 env_set_ulong(var, curIndex + 1);
398 /* node index not found */
399 printf("libfdt node not found\n");
404 working_fdt, nodeoffset, prop, &len);
406 /* no property value */
409 } else if (nodep && len > 0) {
410 if (subcmd[0] == 'v') {
413 ret = fdt_value_env_set(nodep, len,
417 } else if (subcmd[0] == 'a') {
421 sprintf(buf, "0x%p", nodep);
423 } else if (subcmd[0] == 's') {
427 sprintf(buf, "0x%08X", len);
430 return CMD_RET_USAGE;
433 printf("libfdt fdt_getprop(): %s\n",
440 * Print (recursive) / List (single level)
442 } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
443 int depth = MAX_LEVEL; /* how deep to print */
444 char *pathp; /* path */
445 char *prop; /* property */
446 int ret; /* return value */
447 static char root[2] = "/";
450 * list is an alias for print, but limited to 1 level
452 if (argv[1][0] == 'l') {
457 * Get the starting path. The root node is an oddball,
458 * the offset is zero and has no name.
469 ret = fdt_print(pathp, prop, depth);
474 * Remove a property/node
476 } else if (strncmp(argv[1], "rm", 2) == 0) {
477 int nodeoffset; /* node offset from libfdt */
481 * Get the path. The root node is an oddball, the offset
482 * is zero and has no name.
484 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
485 if (nodeoffset < 0) {
487 * Not found or something else bad happened.
489 printf ("libfdt fdt_path_offset() returned %s\n",
490 fdt_strerror(nodeoffset));
494 * Do the delete. A fourth parameter means delete a property,
495 * otherwise delete the node.
498 err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
500 printf("libfdt fdt_delprop(): %s\n",
505 err = fdt_del_node(working_fdt, nodeoffset);
507 printf("libfdt fdt_del_node(): %s\n",
514 * Display header info
516 } else if (argv[1][0] == 'h') {
518 return fdt_get_header_value(argc, argv);
520 u32 version = fdt_version(working_fdt);
521 printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt));
522 printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt),
523 fdt_totalsize(working_fdt));
524 printf("off_dt_struct:\t\t0x%x\n",
525 fdt_off_dt_struct(working_fdt));
526 printf("off_dt_strings:\t\t0x%x\n",
527 fdt_off_dt_strings(working_fdt));
528 printf("off_mem_rsvmap:\t\t0x%x\n",
529 fdt_off_mem_rsvmap(working_fdt));
530 printf("version:\t\t%d\n", version);
531 printf("last_comp_version:\t%d\n",
532 fdt_last_comp_version(working_fdt));
534 printf("boot_cpuid_phys:\t0x%x\n",
535 fdt_boot_cpuid_phys(working_fdt));
537 printf("size_dt_strings:\t0x%x\n",
538 fdt_size_dt_strings(working_fdt));
540 printf("size_dt_struct:\t\t0x%x\n",
541 fdt_size_dt_struct(working_fdt));
542 printf("number mem_rsv:\t\t0x%x\n",
543 fdt_num_mem_rsv(working_fdt));
549 } else if (strncmp(argv[1], "boo", 3) == 0) {
550 unsigned long tmp = simple_strtoul(argv[2], NULL, 16);
551 fdt_set_boot_cpuid_phys(working_fdt, tmp);
556 } else if (strncmp(argv[1], "me", 2) == 0) {
559 addr = simple_strtoull(argv[2], NULL, 16);
560 size = simple_strtoull(argv[3], NULL, 16);
561 err = fdt_fixup_memory(working_fdt, addr, size);
566 * mem reserve commands
568 } else if (strncmp(argv[1], "rs", 2) == 0) {
569 if (argv[2][0] == 'p') {
571 int total = fdt_num_mem_rsv(working_fdt);
573 printf("index\t\t start\t\t size\n");
574 printf("-------------------------------"
575 "-----------------\n");
576 for (j = 0; j < total; j++) {
577 err = fdt_get_mem_rsv(working_fdt, j, &addr, &size);
579 printf("libfdt fdt_get_mem_rsv(): %s\n",
583 printf(" %x\t%08x%08x\t%08x%08x\n", j,
585 (u32)(addr & 0xffffffff),
587 (u32)(size & 0xffffffff));
589 } else if (argv[2][0] == 'a') {
592 addr = simple_strtoull(argv[3], NULL, 16);
593 size = simple_strtoull(argv[4], NULL, 16);
594 err = fdt_add_mem_rsv(working_fdt, addr, size);
597 printf("libfdt fdt_add_mem_rsv(): %s\n",
601 } else if (argv[2][0] == 'd') {
602 unsigned long idx = simple_strtoul(argv[3], NULL, 16);
603 int err = fdt_del_mem_rsv(working_fdt, idx);
606 printf("libfdt fdt_del_mem_rsv(): %s\n",
611 /* Unrecognized command */
612 return CMD_RET_USAGE;
615 #ifdef CONFIG_OF_BOARD_SETUP
616 /* Call the board-specific fixup routine */
617 else if (strncmp(argv[1], "boa", 3) == 0) {
618 int err = ft_board_setup(working_fdt, gd->bd);
621 printf("Failed to update board information in FDT: %s\n",
623 return CMD_RET_FAILURE;
625 #ifdef CONFIG_SOC_KEYSTONE
626 ft_board_setup_ex(working_fdt, gd->bd);
630 /* Create a chosen node */
631 else if (strncmp(argv[1], "cho", 3) == 0) {
632 unsigned long initrd_start = 0, initrd_end = 0;
634 if ((argc != 2) && (argc != 4))
635 return CMD_RET_USAGE;
638 initrd_start = simple_strtoul(argv[2], NULL, 16);
639 initrd_end = simple_strtoul(argv[3], NULL, 16);
642 fdt_chosen(working_fdt);
643 fdt_initrd(working_fdt, initrd_start, initrd_end);
645 #if defined(CONFIG_FIT_SIGNATURE)
646 } else if (strncmp(argv[1], "che", 3) == 0) {
650 struct fdt_header *blob;
653 return CMD_RET_FAILURE;
656 addr = simple_strtoul(argv[2], NULL, 16);
657 blob = map_sysmem(addr, 0);
659 blob = (struct fdt_header *)gd->fdt_blob;
661 if (!fdt_valid(&blob))
665 cfg_noffset = fit_conf_get_node(working_fdt, NULL);
667 printf("Could not find configuration node: %s\n",
668 fdt_strerror(cfg_noffset));
669 return CMD_RET_FAILURE;
672 ret = fit_config_verify(working_fdt, cfg_noffset);
674 return CMD_RET_SUCCESS;
676 return CMD_RET_FAILURE;
680 #ifdef CONFIG_OF_LIBFDT_OVERLAY
681 /* apply an overlay */
682 else if (strncmp(argv[1], "ap", 2) == 0) {
684 struct fdt_header *blob;
688 return CMD_RET_USAGE;
691 return CMD_RET_FAILURE;
693 addr = simple_strtoul(argv[2], NULL, 16);
694 blob = map_sysmem(addr, 0);
695 if (!fdt_valid(&blob))
696 return CMD_RET_FAILURE;
698 /* apply method prints messages on error */
699 ret = fdt_overlay_apply_verbose(working_fdt, blob);
701 return CMD_RET_FAILURE;
705 else if (strncmp(argv[1], "re", 2) == 0) {
708 extrasize = simple_strtoul(argv[2], NULL, 16);
711 fdt_shrink_to_minimum(working_fdt, extrasize);
714 /* Unrecognized command */
715 return CMD_RET_USAGE;
721 /****************************************************************************/
724 * Parse the user's input, partially heuristic. Valid formats:
725 * <0x00112233 4 05> - an array of cells. Numbers follow standard
727 * [00 11 22 .. nn] - byte stream
728 * "string" - If the the value doesn't start with "<" or "[", it is
729 * treated as a string. Note that the quotes are
730 * stripped by the parser before we get the string.
731 * newval: An array of strings containing the new property as specified
732 * on the command line
733 * count: The number of strings in the array
734 * data: A bytestream to be placed in the property
735 * len: The length of the resulting bytestream
737 static int fdt_parse_prop(char * const *newval, int count, char *data, int *len)
739 char *cp; /* temporary char pointer */
740 char *newp; /* temporary newval char pointer */
741 unsigned long tmp; /* holds converted values */
747 /* An array of cells */
750 while ((*newp != '>') && (stridx < count)) {
752 * Keep searching until we find that last ">"
753 * That way users don't have to escape the spaces
756 newp = newval[++stridx];
761 tmp = simple_strtoul(cp, &newp, 0);
763 *(fdt32_t *)data = cpu_to_fdt32(tmp);
770 /* If the ptr didn't advance, something went wrong */
771 if ((newp - cp) <= 0) {
772 printf("Sorry, I could not convert \"%s\"\n",
782 printf("Unexpected character '%c'\n", *newp);
785 } else if (*newp == '[') {
787 * Byte stream. Convert the values.
790 while ((stridx < count) && (*newp != ']')) {
794 newp = newval[++stridx];
797 if (!isxdigit(*newp))
799 tmp = simple_strtoul(newp, &newp, 16);
800 *data++ = tmp & 0xFF;
804 printf("Unexpected character '%c'\n", *newp);
809 * Assume it is one or more strings. Copy it into our
810 * data area for convenience (including the
811 * terminating '\0's).
813 while (stridx < count) {
814 size_t length = strlen(newp) + 1;
818 newp = newval[++stridx];
824 /****************************************************************************/
827 * Heuristic to guess if this is a string or concatenated strings.
830 static int is_printable_string(const void *data, int len)
832 const char *s = data;
834 /* zero length is not */
838 /* must terminate with zero or '\n' */
839 if (s[len - 1] != '\0' && s[len - 1] != '\n')
842 /* printable or a null byte (concatenated strings) */
843 while (((*s == '\0') || isprint(*s) || isspace(*s)) && (len > 0)) {
845 * If we see a null, there are three possibilities:
846 * 1) If len == 1, it is the end of the string, printable
847 * 2) Next character also a null, not printable.
848 * 3) Next character not a null, continue to check.
860 /* Not the null termination, or not done yet: not printable */
861 if (*s != '\0' || (len != 0))
869 * Print the property in the best format, a heuristic guess. Print as
870 * a string, concatenated strings, a byte, word, double word, or (if all
871 * else fails) it is printed as a stream of bytes.
873 static void print_data(const void *data, int len)
876 const char *env_max_dump;
877 ulong max_dump = ULONG_MAX;
879 /* no data, don't print */
883 env_max_dump = env_get("fdt_max_dump");
885 max_dump = simple_strtoul(env_max_dump, NULL, 16);
888 * It is a string, but it may have multiple strings (embedded '\0's).
890 if (is_printable_string(data, len)) {
897 j += strlen(data) + 1;
898 data += strlen(data) + 1;
906 printf("* 0x%p [0x%08x]", data, len);
911 for (j = 0, p = data; j < len/4; j++)
912 printf("0x%08x%s", fdt32_to_cpu(p[j]),
913 j < (len/4 - 1) ? " " : "");
916 } else { /* anything else... hexdump */
918 printf("* 0x%p [0x%08x]", data, len);
923 for (j = 0, s = data; j < len; j++)
924 printf("%02x%s", s[j], j < len - 1 ? " " : "");
930 /****************************************************************************/
933 * Recursively print (a portion of) the working_fdt. The depth parameter
934 * determines how deeply nested the fdt is printed.
936 static int fdt_print(const char *pathp, char *prop, int depth)
938 static char tabs[MAX_LEVEL+1] =
939 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
940 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
941 const void *nodep; /* property node pointer */
942 int nodeoffset; /* node offset from libfdt */
943 int nextoffset; /* next node offset from libfdt */
944 uint32_t tag; /* tag */
945 int len; /* length of the property */
946 int level = 0; /* keep track of nesting level */
947 const struct fdt_property *fdt_prop;
949 nodeoffset = fdt_path_offset (working_fdt, pathp);
950 if (nodeoffset < 0) {
952 * Not found or something else bad happened.
954 printf ("libfdt fdt_path_offset() returned %s\n",
955 fdt_strerror(nodeoffset));
959 * The user passed in a property as well as node path.
960 * Print only the given property and then return.
963 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
965 /* no property value */
966 printf("%s %s\n", pathp, prop);
968 } else if (nodep && len > 0) {
969 printf("%s = ", prop);
970 print_data (nodep, len);
974 printf ("libfdt fdt_getprop(): %s\n",
981 * The user passed in a node path and no property,
982 * print the node and all subnodes.
985 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
988 pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
989 if (level <= depth) {
991 pathp = "/* NULL pointer error */";
993 pathp = "/"; /* root is nameless */
995 &tabs[MAX_LEVEL - level], pathp);
998 if (level >= MAX_LEVEL) {
999 printf("Nested too deep, aborting.\n");
1006 printf("%s};\n", &tabs[MAX_LEVEL - level]);
1008 level = -1; /* exit the loop */
1012 fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
1014 pathp = fdt_string(working_fdt,
1015 fdt32_to_cpu(fdt_prop->nameoff));
1016 len = fdt32_to_cpu(fdt_prop->len);
1017 nodep = fdt_prop->data;
1019 printf ("libfdt fdt_getprop(): %s\n",
1022 } else if (len == 0) {
1023 /* the property has no value */
1026 &tabs[MAX_LEVEL - level],
1029 if (level <= depth) {
1031 &tabs[MAX_LEVEL - level],
1033 print_data (nodep, len);
1039 printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
1045 printf("Unknown tag 0x%08X\n", tag);
1048 nodeoffset = nextoffset;
1053 /********************************************************************/
1054 #ifdef CONFIG_SYS_LONGHELP
1055 static char fdt_help_text[] =
1056 "addr [-c] <addr> [<length>] - Set the [control] fdt location to <addr>\n"
1057 #ifdef CONFIG_OF_LIBFDT_OVERLAY
1058 "fdt apply <addr> - Apply overlay to the DT\n"
1060 #ifdef CONFIG_OF_BOARD_SETUP
1061 "fdt boardsetup - Do board-specific set up\n"
1063 #ifdef CONFIG_OF_SYSTEM_SETUP
1064 "fdt systemsetup - Do system-specific set up\n"
1066 "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n"
1067 "fdt resize [<extrasize>] - Resize fdt to size + padding to 4k addr + some optional <extrasize> if needed\n"
1068 "fdt print <path> [<prop>] - Recursive print starting at <path>\n"
1069 "fdt list <path> [<prop>] - Print one level starting at <path>\n"
1070 "fdt get value <var> <path> <prop> - Get <property> and store in <var>\n"
1071 "fdt get name <var> <path> <index> - Get name of node <index> and store in <var>\n"
1072 "fdt get addr <var> <path> <prop> - Get start address of <property> and store in <var>\n"
1073 "fdt get size <var> <path> [<prop>] - Get size of [<property>] or num nodes and store in <var>\n"
1074 "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n"
1075 "fdt mknode <path> <node> - Create a new node after <path>\n"
1076 "fdt rm <path> [<prop>] - Delete the node or <property>\n"
1077 "fdt header [get <var> <member>] - Display header info\n"
1078 " get - get header member <member> and store it in <var>\n"
1079 "fdt bootcpu <id> - Set boot cpuid\n"
1080 "fdt memory <addr> <size> - Add/Update memory node\n"
1081 "fdt rsvmem print - Show current mem reserves\n"
1082 "fdt rsvmem add <addr> <size> - Add a mem reserve\n"
1083 "fdt rsvmem delete <index> - Delete a mem reserves\n"
1084 "fdt chosen [<start> <end>] - Add/update the /chosen branch in the tree\n"
1085 " <start>/<end> - initrd start/end addr\n"
1086 #if defined(CONFIG_FIT_SIGNATURE)
1087 "fdt checksign [<addr>] - check FIT signature\n"
1088 " <start> - addr of key blob\n"
1089 " default gd->fdt_blob\n"
1091 "NOTE: Dereference aliases by omitting the leading '/', "
1092 "e.g. fdt print ethernet0.";
1096 fdt, 255, 0, do_fdt,
1097 "flattened device tree utility commands", fdt_help_text