blob: 1972490bdc2166fb6c758d73311cbd2a9e7d03be [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Gerald Van Baren781e09e2007-03-31 12:22:10 -04002/*
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>
Gerald Van Baren781e09e2007-03-31 12:22:10 -04008 */
9
10#include <common.h>
11#include <command.h>
Simon Glassc7694dd2019-08-01 09:46:46 -060012#include <env.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060013#include <image.h>
Gerald Van Baren781e09e2007-03-31 12:22:10 -040014#include <linux/ctype.h>
15#include <linux/types.h>
Gerald Van Baren781e09e2007-03-31 12:22:10 -040016#include <asm/global_data.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090017#include <linux/libfdt.h>
Gerald Van Baren64dbbd42007-04-06 14:19:43 -040018#include <fdt_support.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050019#include <mapmem.h>
Simon Glassa92fd652013-04-20 08:42:45 +000020#include <asm/io.h>
Gerald Van Baren781e09e2007-03-31 12:22:10 -040021
22#define MAX_LEVEL 32 /* how deeply nested we will go */
Gerald Van Barenfd61e552007-06-25 23:25:28 -040023#define SCRATCHPAD 1024 /* bytes of scratchpad memory */
Gerald Van Baren781e09e2007-03-31 12:22:10 -040024
25/*
26 * Global data (for the gd->bd)
27 */
28DECLARE_GLOBAL_DATA_PTR;
29
Wolfgang Denk54841ab2010-06-28 22:00:46 +020030static int fdt_parse_prop(char *const*newval, int count, char *data, int *len);
Kumar Galadbaf07c2007-11-21 14:07:46 -060031static int fdt_print(const char *pathp, char *prop, int depth);
Joe Hershbergerbc802952012-08-17 10:34:37 +000032static int is_printable_string(const void *data, int len);
Gerald Van Baren781e09e2007-03-31 12:22:10 -040033
Gerald Van Baren781e09e2007-03-31 12:22:10 -040034/*
Gerald Van Barenae9e97f2008-06-10 22:15:58 -040035 * The working_fdt points to our working flattened device tree.
36 */
37struct fdt_header *working_fdt;
38
Joe Hershberger90fbee32015-02-04 21:56:53 -060039void set_working_fdt_addr(ulong addr)
Kumar Gala54f9c862008-08-15 08:24:39 -050040{
Simon Glassa92fd652013-04-20 08:42:45 +000041 void *buf;
42
Simon Glassbaf41412022-10-11 09:47:12 -060043 printf("Working FDT set to %lx\n", addr);
Joe Hershberger90fbee32015-02-04 21:56:53 -060044 buf = map_sysmem(addr, 0);
Simon Glassa92fd652013-04-20 08:42:45 +000045 working_fdt = buf;
Simon Glass018f5302017-08-03 12:22:10 -060046 env_set_hex("fdtaddr", addr);
Kumar Gala54f9c862008-08-15 08:24:39 -050047}
48
Gerald Van Barenae9e97f2008-06-10 22:15:58 -040049/*
Joe Hershbergerbc802952012-08-17 10:34:37 +000050 * Get a value from the fdt and format it to be set in the environment
51 */
Marek Vasut13982ce2022-07-08 23:50:43 +020052static int fdt_value_env_set(const void *nodep, int len,
53 const char *var, int index)
Joe Hershbergerbc802952012-08-17 10:34:37 +000054{
Marek Vasut13982ce2022-07-08 23:50:43 +020055 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 */
Marek Vasut7dfcf2a2022-11-14 22:49:59 +010063 for (i = 0; i < len; ) {
64 if (index-- > 0) {
65 i += strlen(nodec) + 1;
66 nodec += strlen(nodec) + 1;
Marek Vasut13982ce2022-07-08 23:50:43 +020067 continue;
Marek Vasut7dfcf2a2022-11-14 22:49:59 +010068 }
Marek Vasut13982ce2022-07-08 23:50:43 +020069
Marek Vasut7dfcf2a2022-11-14 22:49:59 +010070 env_set(var, nodec);
Marek Vasut13982ce2022-07-08 23:50:43 +020071 return 0;
72 }
73
74 return 1;
75 } else if (len == 4) {
Joe Hershbergerbc802952012-08-17 10:34:37 +000076 char buf[11];
77
Andreas Färberb05bf6c2017-01-09 16:08:02 +010078 sprintf(buf, "0x%08X", fdt32_to_cpu(*(fdt32_t *)nodep));
Simon Glass382bee52017-08-03 12:22:09 -060079 env_set(var, buf);
Joe Hershbergerbc802952012-08-17 10:34:37 +000080 } else if (len%4 == 0 && len <= 20) {
81 /* Needed to print things like sha1 hashes. */
82 char buf[41];
83 int i;
84
85 for (i = 0; i < len; i += sizeof(unsigned int))
86 sprintf(buf + (i * 2), "%08x",
87 *(unsigned int *)(nodep + i));
Simon Glass382bee52017-08-03 12:22:09 -060088 env_set(var, buf);
Joe Hershbergerbc802952012-08-17 10:34:37 +000089 } else {
90 printf("error: unprintable value\n");
91 return 1;
92 }
93 return 0;
94}
95
Heiko Schocher82441272018-11-15 06:06:06 +010096static const char * const fdt_member_table[] = {
97 "magic",
98 "totalsize",
99 "off_dt_struct",
100 "off_dt_strings",
101 "off_mem_rsvmap",
102 "version",
103 "last_comp_version",
104 "boot_cpuid_phys",
105 "size_dt_strings",
106 "size_dt_struct",
107};
108
Simon Glass09140112020-05-10 11:40:03 -0600109static int fdt_get_header_value(int argc, char *const argv[])
Heiko Schocher82441272018-11-15 06:06:06 +0100110{
111 fdt32_t *fdtp = (fdt32_t *)working_fdt;
112 ulong val;
113 int i;
114
115 if (argv[2][0] != 'g')
116 return CMD_RET_FAILURE;
117
118 for (i = 0; i < ARRAY_SIZE(fdt_member_table); i++) {
119 if (strcmp(fdt_member_table[i], argv[4]))
120 continue;
121
122 val = fdt32_to_cpu(fdtp[i]);
123 env_set_hex(argv[3], val);
124 return CMD_RET_SUCCESS;
125 }
126
127 return CMD_RET_FAILURE;
128}
129
Joe Hershbergerbc802952012-08-17 10:34:37 +0000130/*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400131 * Flattened Device Tree command, see the help for parameter definitions.
132 */
Simon Glass09140112020-05-10 11:40:03 -0600133static int do_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400134{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200135 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000136 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400137
Simon Glass0c929632021-07-21 14:55:25 -0600138 /* fdt addr: Set the address of the fdt */
Maxime Ripardf0ed68e2016-07-05 10:26:34 +0200139 if (strncmp(argv[1], "ad", 2) == 0) {
Kumar Gala54f9c862008-08-15 08:24:39 -0500140 unsigned long addr;
Simon Glass4b578652013-04-20 08:42:44 +0000141 int control = 0;
Peter Hoyese9496ec2022-03-31 11:53:22 +0100142 int quiet = 0;
Simon Glass4b578652013-04-20 08:42:44 +0000143 struct fdt_header *blob;
Simon Glass0c929632021-07-21 14:55:25 -0600144
145 /* Set the address [and length] of the fdt */
Simon Glass4b578652013-04-20 08:42:44 +0000146 argc -= 2;
147 argv += 2;
Peter Hoyese9496ec2022-03-31 11:53:22 +0100148 while (argc > 0 && **argv == '-') {
149 char *arg = *argv;
150
151 while (*++arg) {
152 switch (*arg) {
153 case 'c':
154 control = 1;
155 break;
156 case 'q':
157 quiet = 1;
158 break;
159 default:
160 return CMD_RET_USAGE;
161 }
162 }
Simon Glass4b578652013-04-20 08:42:44 +0000163 argc--;
164 argv++;
165 }
Simon Glass4b578652013-04-20 08:42:44 +0000166 if (argc == 0) {
167 if (control)
168 blob = (struct fdt_header *)gd->fdt_blob;
169 else
170 blob = working_fdt;
171 if (!blob || !fdt_valid(&blob))
Kumar Gala7dbc38a2008-08-15 08:24:35 -0500172 return 1;
Simon Glassb29a0db2021-07-21 14:55:26 -0600173 printf("%s fdt: %08lx\n",
174 control ? "Control" : "Working",
Joe Hershbergerc71a0162015-02-04 21:56:54 -0600175 control ? (ulong)map_to_sysmem(blob) :
Simon Glassb29a0db2021-07-21 14:55:26 -0600176 env_get_hex("fdtaddr", 0));
Kumar Gala7dbc38a2008-08-15 08:24:35 -0500177 return 0;
178 }
179
Simon Glass7e5f4602021-07-24 09:03:29 -0600180 addr = hextoul(argv[0], NULL);
Simon Glassa92fd652013-04-20 08:42:45 +0000181 blob = map_sysmem(addr, 0);
Peter Hoyese9496ec2022-03-31 11:53:22 +0100182 if ((quiet && fdt_check_header(blob)) ||
183 (!quiet && !fdt_valid(&blob)))
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400184 return 1;
Simon Glass4b578652013-04-20 08:42:44 +0000185 if (control)
186 gd->fdt_blob = blob;
187 else
Joe Hershberger90fbee32015-02-04 21:56:53 -0600188 set_working_fdt_addr(addr);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400189
Simon Glass4b578652013-04-20 08:42:44 +0000190 if (argc >= 2) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400191 int len;
192 int err;
Simon Glass0c929632021-07-21 14:55:25 -0600193
194 /* Optional new length */
Simon Glass7e5f4602021-07-24 09:03:29 -0600195 len = hextoul(argv[1], NULL);
Simon Glass4b578652013-04-20 08:42:44 +0000196 if (len < fdt_totalsize(blob)) {
Peter Hoyese9496ec2022-03-31 11:53:22 +0100197 if (!quiet)
198 printf("New length %d < existing length %d, ignoring\n",
199 len, fdt_totalsize(blob));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400200 } else {
Simon Glass0c929632021-07-21 14:55:25 -0600201 /* Open in place with a new length */
Simon Glass4b578652013-04-20 08:42:44 +0000202 err = fdt_open_into(blob, blob, len);
Peter Hoyese9496ec2022-03-31 11:53:22 +0100203 if (!quiet && err != 0) {
Simon Glass0c929632021-07-21 14:55:25 -0600204 printf("libfdt fdt_open_into(): %s\n",
205 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400206 }
207 }
208 }
209
Marek Vasute02c9452012-09-05 08:34:44 +0200210 return CMD_RET_SUCCESS;
Marek Vasute02c9452012-09-05 08:34:44 +0200211
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200212 /*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500213 * Move the working_fdt
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200214 */
Andre Przywara4ee85df2023-02-10 11:02:12 +0000215 } else if (strncmp(argv[1], "mo", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400216 struct fdt_header *newaddr;
217 int len;
218 int err;
219
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200220 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000221 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400222
223 /*
224 * Set the address and length of the fdt.
225 */
Andre Przywara64597342023-02-10 11:02:11 +0000226 working_fdt = map_sysmem(hextoul(argv[2], NULL), 0);
Simon Glassd14da912013-04-20 08:42:42 +0000227 if (!fdt_valid(&working_fdt))
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400228 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400229
Andre Przywara64597342023-02-10 11:02:11 +0000230 newaddr = map_sysmem(hextoul(argv[3], NULL), 0);
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400231
232 /*
233 * If the user specifies a length, use that. Otherwise use the
234 * current length.
235 */
236 if (argc <= 4) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500237 len = fdt_totalsize(working_fdt);
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400238 } else {
Simon Glass7e5f4602021-07-24 09:03:29 -0600239 len = hextoul(argv[4], NULL);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500240 if (len < fdt_totalsize(working_fdt)) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400241 printf ("New length 0x%X < existing length "
242 "0x%X, aborting.\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500243 len, fdt_totalsize(working_fdt));
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400244 return 1;
245 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400246 }
247
248 /*
249 * Copy to the new location.
250 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500251 err = fdt_open_into(working_fdt, newaddr, len);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400252 if (err != 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400253 printf ("libfdt fdt_open_into(): %s\n",
254 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400255 return 1;
256 }
Andre Przywara64597342023-02-10 11:02:11 +0000257 set_working_fdt_addr(map_to_sysmem(newaddr));
Andre Przywara4ee85df2023-02-10 11:02:12 +0000258
259 return CMD_RET_SUCCESS;
260 }
261
262 if (!working_fdt) {
263 puts("No FDT memory address configured. Please configure\n"
264 "the FDT address via \"fdt addr <address>\" command.\n"
265 "Aborting!\n");
266 return CMD_RET_FAILURE;
267 }
268
Fabien Parentf7f191e2016-11-24 15:02:18 +0100269#ifdef CONFIG_OF_SYSTEM_SETUP
270 /* Call the board-specific fixup routine */
Andre Przywara4ee85df2023-02-10 11:02:12 +0000271 if (strncmp(argv[1], "sys", 3) == 0) {
Fabien Parentf7f191e2016-11-24 15:02:18 +0100272 int err = ft_system_setup(working_fdt, gd->bd);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400273
Fabien Parentf7f191e2016-11-24 15:02:18 +0100274 if (err) {
275 printf("Failed to add system information to FDT: %s\n",
276 fdt_strerror(err));
277 return CMD_RET_FAILURE;
278 }
Andre Przywara4ee85df2023-02-10 11:02:12 +0000279
280 return CMD_RET_SUCCESS;
281 }
Fabien Parentf7f191e2016-11-24 15:02:18 +0100282#endif
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200283 /*
Gerald Van Baren25114032007-05-12 09:47:25 -0400284 * Make a new node
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200285 */
Andre Przywara4ee85df2023-02-10 11:02:12 +0000286 if (strncmp(argv[1], "mk", 2) == 0) {
Gerald Van Baren25114032007-05-12 09:47:25 -0400287 char *pathp; /* path */
288 char *nodep; /* new node to add */
289 int nodeoffset; /* node offset from libfdt */
290 int err;
291
292 /*
293 * Parameters: Node path, new node to be appended to the path.
294 */
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200295 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000296 return CMD_RET_USAGE;
Gerald Van Baren25114032007-05-12 09:47:25 -0400297
298 pathp = argv[2];
299 nodep = argv[3];
300
Kim Phillipse489b9c2008-06-10 11:06:17 -0500301 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400302 if (nodeoffset < 0) {
303 /*
304 * Not found or something else bad happened.
305 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500306 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400307 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400308 return 1;
309 }
Kim Phillipse489b9c2008-06-10 11:06:17 -0500310 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
Gerald Van Baren25114032007-05-12 09:47:25 -0400311 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400312 printf ("libfdt fdt_add_subnode(): %s\n",
313 fdt_strerror(err));
Gerald Van Baren25114032007-05-12 09:47:25 -0400314 return 1;
315 }
316
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200317 /*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500318 * Set the value of a property in the working_fdt.
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200319 */
Tom Warren0688b752020-03-26 15:20:44 -0700320 } else if (strncmp(argv[1], "se", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400321 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400322 char *prop; /* property */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400323 int nodeoffset; /* node offset from libfdt */
Bernhard Messerklinger6dfd65f2017-09-28 11:29:52 +0200324 static char data[SCRATCHPAD] __aligned(4);/* property storage */
Hannes Schmelzer9620d872017-05-30 15:05:44 +0200325 const void *ptmp;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400326 int len; /* new length of the property */
327 int ret; /* return value */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400328
329 /*
Gerald Van Barenea6d8be2008-01-05 14:52:04 -0500330 * Parameters: Node path, property, optional value.
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400331 */
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200332 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000333 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400334
335 pathp = argv[2];
336 prop = argv[3];
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400337
Kim Phillipse489b9c2008-06-10 11:06:17 -0500338 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400339 if (nodeoffset < 0) {
340 /*
341 * Not found or something else bad happened.
342 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500343 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400344 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400345 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400346 }
Gerald Van Baren25114032007-05-12 09:47:25 -0400347
Hannes Schmelzer9620d872017-05-30 15:05:44 +0200348 if (argc == 4) {
349 len = 0;
350 } else {
351 ptmp = fdt_getprop(working_fdt, nodeoffset, prop, &len);
352 if (len > SCRATCHPAD) {
353 printf("prop (%d) doesn't fit in scratchpad!\n",
354 len);
355 return 1;
356 }
Hannes Schmelzercee8c352017-08-18 14:41:14 +0200357 if (ptmp != NULL)
358 memcpy(data, ptmp, len);
359
Hannes Schmelzer9620d872017-05-30 15:05:44 +0200360 ret = fdt_parse_prop(&argv[4], argc - 4, data, &len);
361 if (ret != 0)
362 return ret;
363 }
364
Kim Phillipse489b9c2008-06-10 11:06:17 -0500365 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
Gerald Van Baren25114032007-05-12 09:47:25 -0400366 if (ret < 0) {
367 printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
368 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400369 }
370
Joe Hershbergerbc802952012-08-17 10:34:37 +0000371 /********************************************************************
372 * Get the value of a property in the working_fdt.
373 ********************************************************************/
374 } else if (argv[1][0] == 'g') {
375 char *subcmd; /* sub-command */
376 char *pathp; /* path */
377 char *prop; /* property */
378 char *var; /* variable to store result */
379 int nodeoffset; /* node offset from libfdt */
380 const void *nodep; /* property node pointer */
381 int len = 0; /* new length of the property */
382
383 /*
384 * Parameters: Node path, property, optional value.
385 */
386 if (argc < 5)
387 return CMD_RET_USAGE;
388
389 subcmd = argv[2];
390
391 if (argc < 6 && subcmd[0] != 's')
392 return CMD_RET_USAGE;
393
394 var = argv[3];
395 pathp = argv[4];
396 prop = argv[5];
397
398 nodeoffset = fdt_path_offset(working_fdt, pathp);
399 if (nodeoffset < 0) {
400 /*
401 * Not found or something else bad happened.
402 */
403 printf("libfdt fdt_path_offset() returned %s\n",
404 fdt_strerror(nodeoffset));
405 return 1;
406 }
407
408 if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600409 int req_index = -1;
Joe Hershbergerbc802952012-08-17 10:34:37 +0000410 int startDepth = fdt_node_depth(
411 working_fdt, nodeoffset);
412 int curDepth = startDepth;
Simon Glass7e5f4602021-07-24 09:03:29 -0600413 int cur_index = -1;
Joe Hershbergerbc802952012-08-17 10:34:37 +0000414 int nextNodeOffset = fdt_next_node(
415 working_fdt, nodeoffset, &curDepth);
416
417 if (subcmd[0] == 'n')
Simon Glass7e5f4602021-07-24 09:03:29 -0600418 req_index = hextoul(argv[5], NULL);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000419
420 while (curDepth > startDepth) {
421 if (curDepth == startDepth + 1)
Simon Glass7e5f4602021-07-24 09:03:29 -0600422 cur_index++;
423 if (subcmd[0] == 'n' &&
424 cur_index == req_index) {
Simon Glass382bee52017-08-03 12:22:09 -0600425 const char *node_name;
Joe Hershbergerbc802952012-08-17 10:34:37 +0000426
Simon Glass382bee52017-08-03 12:22:09 -0600427 node_name = fdt_get_name(working_fdt,
428 nextNodeOffset,
429 NULL);
430 env_set(var, node_name);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000431 return 0;
432 }
433 nextNodeOffset = fdt_next_node(
434 working_fdt, nextNodeOffset, &curDepth);
435 if (nextNodeOffset < 0)
436 break;
437 }
438 if (subcmd[0] == 's') {
439 /* get the num nodes at this level */
Simon Glass7e5f4602021-07-24 09:03:29 -0600440 env_set_ulong(var, cur_index + 1);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000441 } else {
442 /* node index not found */
443 printf("libfdt node not found\n");
444 return 1;
445 }
446 } else {
447 nodep = fdt_getprop(
448 working_fdt, nodeoffset, prop, &len);
449 if (len == 0) {
450 /* no property value */
Simon Glass382bee52017-08-03 12:22:09 -0600451 env_set(var, "");
Joe Hershbergerbc802952012-08-17 10:34:37 +0000452 return 0;
Simon Glass72c98ed2017-06-07 10:28:41 -0600453 } else if (nodep && len > 0) {
Joe Hershbergerbc802952012-08-17 10:34:37 +0000454 if (subcmd[0] == 'v') {
Marek Vasut13982ce2022-07-08 23:50:43 +0200455 int index = 0;
Joe Hershbergerbc802952012-08-17 10:34:37 +0000456 int ret;
457
Marek Vasut13982ce2022-07-08 23:50:43 +0200458 if (argc == 7)
459 index = simple_strtoul(argv[6], NULL, 10);
460
Simon Glass382bee52017-08-03 12:22:09 -0600461 ret = fdt_value_env_set(nodep, len,
Marek Vasut13982ce2022-07-08 23:50:43 +0200462 var, index);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000463 if (ret != 0)
464 return ret;
465 } else if (subcmd[0] == 'a') {
466 /* Get address */
467 char buf[11];
468
Tom Rini085b9c32012-10-29 14:53:18 +0000469 sprintf(buf, "0x%p", nodep);
Simon Glass382bee52017-08-03 12:22:09 -0600470 env_set(var, buf);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000471 } else if (subcmd[0] == 's') {
472 /* Get size */
473 char buf[11];
474
475 sprintf(buf, "0x%08X", len);
Simon Glass382bee52017-08-03 12:22:09 -0600476 env_set(var, buf);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000477 } else
478 return CMD_RET_USAGE;
479 return 0;
480 } else {
481 printf("libfdt fdt_getprop(): %s\n",
482 fdt_strerror(len));
483 return 1;
484 }
485 }
486
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200487 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400488 * Print (recursive) / List (single level)
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200489 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400490 } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400491 int depth = MAX_LEVEL; /* how deep to print */
492 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400493 char *prop; /* property */
494 int ret; /* return value */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500495 static char root[2] = "/";
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400496
497 /*
498 * list is an alias for print, but limited to 1 level
499 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400500 if (argv[1][0] == 'l') {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400501 depth = 1;
502 }
503
504 /*
505 * Get the starting path. The root node is an oddball,
506 * the offset is zero and has no name.
507 */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500508 if (argc == 2)
509 pathp = root;
510 else
511 pathp = argv[2];
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400512 if (argc > 3)
513 prop = argv[3];
514 else
515 prop = NULL;
516
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400517 ret = fdt_print(pathp, prop, depth);
518 if (ret != 0)
519 return ret;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400520
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200521 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400522 * Remove a property/node
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200523 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400524 } else if (strncmp(argv[1], "rm", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400525 int nodeoffset; /* node offset from libfdt */
526 int err;
527
528 /*
529 * Get the path. The root node is an oddball, the offset
530 * is zero and has no name.
531 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500532 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
Gerald Van Baren25114032007-05-12 09:47:25 -0400533 if (nodeoffset < 0) {
534 /*
535 * Not found or something else bad happened.
536 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500537 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400538 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400539 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400540 }
541 /*
542 * Do the delete. A fourth parameter means delete a property,
543 * otherwise delete the node.
544 */
545 if (argc > 3) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500546 err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400547 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400548 printf("libfdt fdt_delprop(): %s\n",
549 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400550 return err;
551 }
552 } else {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500553 err = fdt_del_node(working_fdt, nodeoffset);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400554 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400555 printf("libfdt fdt_del_node(): %s\n",
556 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400557 return err;
558 }
559 }
Kumar Gala804887e2008-02-15 03:34:36 -0600560
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200561 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600562 * Display header info
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200563 */
Kumar Gala804887e2008-02-15 03:34:36 -0600564 } else if (argv[1][0] == 'h') {
Heiko Schocher82441272018-11-15 06:06:06 +0100565 if (argc == 5)
566 return fdt_get_header_value(argc, argv);
567
Kim Phillipse489b9c2008-06-10 11:06:17 -0500568 u32 version = fdt_version(working_fdt);
569 printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt));
570 printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt),
571 fdt_totalsize(working_fdt));
572 printf("off_dt_struct:\t\t0x%x\n",
573 fdt_off_dt_struct(working_fdt));
574 printf("off_dt_strings:\t\t0x%x\n",
575 fdt_off_dt_strings(working_fdt));
576 printf("off_mem_rsvmap:\t\t0x%x\n",
577 fdt_off_mem_rsvmap(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600578 printf("version:\t\t%d\n", version);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500579 printf("last_comp_version:\t%d\n",
580 fdt_last_comp_version(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600581 if (version >= 2)
582 printf("boot_cpuid_phys:\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500583 fdt_boot_cpuid_phys(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600584 if (version >= 3)
585 printf("size_dt_strings:\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500586 fdt_size_dt_strings(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600587 if (version >= 17)
588 printf("size_dt_struct:\t\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500589 fdt_size_dt_struct(working_fdt));
590 printf("number mem_rsv:\t\t0x%x\n",
591 fdt_num_mem_rsv(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600592 printf("\n");
593
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200594 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600595 * Set boot cpu id
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200596 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400597 } else if (strncmp(argv[1], "boo", 3) == 0) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600598 unsigned long tmp = hextoul(argv[2], NULL);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500599 fdt_set_boot_cpuid_phys(working_fdt, tmp);
Kumar Gala804887e2008-02-15 03:34:36 -0600600
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200601 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600602 * memory command
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200603 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400604 } else if (strncmp(argv[1], "me", 2) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600605 uint64_t addr, size;
606 int err;
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100607 addr = simple_strtoull(argv[2], NULL, 16);
608 size = simple_strtoull(argv[3], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500609 err = fdt_fixup_memory(working_fdt, addr, size);
Kumar Gala804887e2008-02-15 03:34:36 -0600610 if (err < 0)
611 return err;
612
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200613 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600614 * mem reserve commands
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200615 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400616 } else if (strncmp(argv[1], "rs", 2) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600617 if (argv[2][0] == 'p') {
618 uint64_t addr, size;
Kim Phillipse489b9c2008-06-10 11:06:17 -0500619 int total = fdt_num_mem_rsv(working_fdt);
Kumar Gala804887e2008-02-15 03:34:36 -0600620 int j, err;
621 printf("index\t\t start\t\t size\n");
622 printf("-------------------------------"
623 "-----------------\n");
624 for (j = 0; j < total; j++) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500625 err = fdt_get_mem_rsv(working_fdt, j, &addr, &size);
Kumar Gala804887e2008-02-15 03:34:36 -0600626 if (err < 0) {
627 printf("libfdt fdt_get_mem_rsv(): %s\n",
628 fdt_strerror(err));
629 return err;
630 }
631 printf(" %x\t%08x%08x\t%08x%08x\n", j,
632 (u32)(addr >> 32),
633 (u32)(addr & 0xffffffff),
634 (u32)(size >> 32),
635 (u32)(size & 0xffffffff));
636 }
637 } else if (argv[2][0] == 'a') {
638 uint64_t addr, size;
639 int err;
Kumar Gala804887e2008-02-15 03:34:36 -0600640 addr = simple_strtoull(argv[3], NULL, 16);
641 size = simple_strtoull(argv[4], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500642 err = fdt_add_mem_rsv(working_fdt, addr, size);
Kumar Gala804887e2008-02-15 03:34:36 -0600643
644 if (err < 0) {
645 printf("libfdt fdt_add_mem_rsv(): %s\n",
646 fdt_strerror(err));
647 return err;
648 }
649 } else if (argv[2][0] == 'd') {
Simon Glass7e5f4602021-07-24 09:03:29 -0600650 unsigned long idx = hextoul(argv[3], NULL);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500651 int err = fdt_del_mem_rsv(working_fdt, idx);
Kumar Gala804887e2008-02-15 03:34:36 -0600652
653 if (err < 0) {
654 printf("libfdt fdt_del_mem_rsv(): %s\n",
655 fdt_strerror(err));
656 return err;
657 }
658 } else {
659 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000660 return CMD_RET_USAGE;
Kumar Gala804887e2008-02-15 03:34:36 -0600661 }
Kim Phillips99dffca2007-07-17 13:57:04 -0500662 }
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400663#ifdef CONFIG_OF_BOARD_SETUP
Kim Phillips99dffca2007-07-17 13:57:04 -0500664 /* Call the board-specific fixup routine */
Simon Glass4ba98dc2014-10-23 18:58:48 -0600665 else if (strncmp(argv[1], "boa", 3) == 0) {
666 int err = ft_board_setup(working_fdt, gd->bd);
667
668 if (err) {
669 printf("Failed to update board information in FDT: %s\n",
670 fdt_strerror(err));
671 return CMD_RET_FAILURE;
672 }
Tom Rinif899cc12021-09-12 20:32:32 -0400673#ifdef CONFIG_ARCH_KEYSTONE
Nicholas Faustini2c76d312018-10-03 12:58:48 +0200674 ft_board_setup_ex(working_fdt, gd->bd);
675#endif
Simon Glass4ba98dc2014-10-23 18:58:48 -0600676 }
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400677#endif
Kim Phillips99dffca2007-07-17 13:57:04 -0500678 /* Create a chosen node */
Heiko Schocher097dd3e2014-03-03 12:19:24 +0100679 else if (strncmp(argv[1], "cho", 3) == 0) {
Kumar Galaf953d992008-08-15 08:24:34 -0500680 unsigned long initrd_start = 0, initrd_end = 0;
681
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200682 if ((argc != 2) && (argc != 4))
Simon Glass4c12eeb2011-12-10 08:44:01 +0000683 return CMD_RET_USAGE;
Kumar Galaf953d992008-08-15 08:24:34 -0500684
685 if (argc == 4) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600686 initrd_start = hextoul(argv[2], NULL);
Sean Andersondbf6f7c2022-03-22 16:59:21 -0400687 initrd_end = initrd_start + hextoul(argv[3], NULL) - 1;
Kumar Galaf953d992008-08-15 08:24:34 -0500688 }
689
Masahiro Yamadabc6ed0f2014-04-18 17:41:00 +0900690 fdt_chosen(working_fdt);
Masahiro Yamadadbe963a2014-04-18 17:40:59 +0900691 fdt_initrd(working_fdt, initrd_start, initrd_end);
Heiko Schocher097dd3e2014-03-03 12:19:24 +0100692
693#if defined(CONFIG_FIT_SIGNATURE)
694 } else if (strncmp(argv[1], "che", 3) == 0) {
695 int cfg_noffset;
696 int ret;
697 unsigned long addr;
698 struct fdt_header *blob;
699
700 if (!working_fdt)
701 return CMD_RET_FAILURE;
702
703 if (argc > 2) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600704 addr = hextoul(argv[2], NULL);
Heiko Schocher097dd3e2014-03-03 12:19:24 +0100705 blob = map_sysmem(addr, 0);
706 } else {
707 blob = (struct fdt_header *)gd->fdt_blob;
708 }
709 if (!fdt_valid(&blob))
710 return 1;
711
712 gd->fdt_blob = blob;
713 cfg_noffset = fit_conf_get_node(working_fdt, NULL);
714 if (!cfg_noffset) {
715 printf("Could not find configuration node: %s\n",
716 fdt_strerror(cfg_noffset));
717 return CMD_RET_FAILURE;
718 }
719
720 ret = fit_config_verify(working_fdt, cfg_noffset);
Simon Glass12df2ab2014-06-12 07:24:45 -0600721 if (ret == 0)
Heiko Schocher097dd3e2014-03-03 12:19:24 +0100722 return CMD_RET_SUCCESS;
723 else
724 return CMD_RET_FAILURE;
725#endif
726
Kumar Gala40afac22008-08-15 08:24:44 -0500727 }
Maxime Riparde6628ad2016-07-05 10:26:45 +0200728#ifdef CONFIG_OF_LIBFDT_OVERLAY
729 /* apply an overlay */
730 else if (strncmp(argv[1], "ap", 2) == 0) {
731 unsigned long addr;
732 struct fdt_header *blob;
Stefan Agner082b1412016-12-20 15:58:45 +0100733 int ret;
Maxime Riparde6628ad2016-07-05 10:26:45 +0200734
735 if (argc != 3)
736 return CMD_RET_USAGE;
737
738 if (!working_fdt)
739 return CMD_RET_FAILURE;
740
Simon Glass7e5f4602021-07-24 09:03:29 -0600741 addr = hextoul(argv[2], NULL);
Maxime Riparde6628ad2016-07-05 10:26:45 +0200742 blob = map_sysmem(addr, 0);
743 if (!fdt_valid(&blob))
744 return CMD_RET_FAILURE;
745
Pantelis Antoniou81ecc5d2017-09-04 23:12:12 +0300746 /* apply method prints messages on error */
747 ret = fdt_overlay_apply_verbose(working_fdt, blob);
748 if (ret)
Maxime Riparde6628ad2016-07-05 10:26:45 +0200749 return CMD_RET_FAILURE;
750 }
751#endif
Kumar Gala40afac22008-08-15 08:24:44 -0500752 /* resize the fdt */
753 else if (strncmp(argv[1], "re", 2) == 0) {
Hannes Schmelzeref476832016-09-20 18:10:43 +0200754 uint extrasize;
755 if (argc > 2)
Simon Glass7e5f4602021-07-24 09:03:29 -0600756 extrasize = hextoul(argv[2], NULL);
Hannes Schmelzeref476832016-09-20 18:10:43 +0200757 else
758 extrasize = 0;
759 fdt_shrink_to_minimum(working_fdt, extrasize);
Kumar Gala40afac22008-08-15 08:24:44 -0500760 }
761 else {
Kim Phillips99dffca2007-07-17 13:57:04 -0500762 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000763 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400764 }
765
766 return 0;
767}
768
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400769/****************************************************************************/
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400770
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400771/*
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400772 * Parse the user's input, partially heuristic. Valid formats:
Andy Fleming4abd8442008-03-31 20:45:56 -0500773 * <0x00112233 4 05> - an array of cells. Numbers follow standard
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200774 * C conventions.
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400775 * [00 11 22 .. nn] - byte stream
776 * "string" - If the the value doesn't start with "<" or "[", it is
777 * treated as a string. Note that the quotes are
778 * stripped by the parser before we get the string.
Andy Fleming4abd8442008-03-31 20:45:56 -0500779 * newval: An array of strings containing the new property as specified
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200780 * on the command line
Andy Fleming4abd8442008-03-31 20:45:56 -0500781 * count: The number of strings in the array
782 * data: A bytestream to be placed in the property
783 * len: The length of the resulting bytestream
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400784 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200785static int fdt_parse_prop(char * const *newval, int count, char *data, int *len)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400786{
787 char *cp; /* temporary char pointer */
Andy Fleming4abd8442008-03-31 20:45:56 -0500788 char *newp; /* temporary newval char pointer */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400789 unsigned long tmp; /* holds converted values */
Andy Fleming4abd8442008-03-31 20:45:56 -0500790 int stridx = 0;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400791
Andy Fleming4abd8442008-03-31 20:45:56 -0500792 *len = 0;
793 newp = newval[0];
794
795 /* An array of cells */
796 if (*newp == '<') {
797 newp++;
798 while ((*newp != '>') && (stridx < count)) {
799 /*
800 * Keep searching until we find that last ">"
801 * That way users don't have to escape the spaces
802 */
803 if (*newp == '\0') {
804 newp = newval[++stridx];
805 continue;
806 }
807
808 cp = newp;
809 tmp = simple_strtoul(cp, &newp, 0);
Hannes Schmelzer9620d872017-05-30 15:05:44 +0200810 if (*cp != '?')
811 *(fdt32_t *)data = cpu_to_fdt32(tmp);
812 else
813 newp++;
814
Andy Fleming4abd8442008-03-31 20:45:56 -0500815 data += 4;
816 *len += 4;
817
818 /* If the ptr didn't advance, something went wrong */
819 if ((newp - cp) <= 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400820 printf("Sorry, I could not convert \"%s\"\n",
821 cp);
822 return 1;
823 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500824
825 while (*newp == ' ')
826 newp++;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400827 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500828
829 if (*newp != '>') {
830 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400831 return 1;
832 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500833 } else if (*newp == '[') {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400834 /*
835 * Byte stream. Convert the values.
836 */
Andy Fleming4abd8442008-03-31 20:45:56 -0500837 newp++;
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500838 while ((stridx < count) && (*newp != ']')) {
839 while (*newp == ' ')
840 newp++;
841 if (*newp == '\0') {
842 newp = newval[++stridx];
843 continue;
844 }
845 if (!isxdigit(*newp))
846 break;
Simon Glass7e5f4602021-07-24 09:03:29 -0600847 tmp = hextoul(newp, &newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400848 *data++ = tmp & 0xFF;
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400849 *len = *len + 1;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400850 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500851 if (*newp != ']') {
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700852 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400853 return 1;
854 }
855 } else {
856 /*
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500857 * Assume it is one or more strings. Copy it into our
858 * data area for convenience (including the
859 * terminating '\0's).
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400860 */
Andy Fleming4abd8442008-03-31 20:45:56 -0500861 while (stridx < count) {
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500862 size_t length = strlen(newp) + 1;
Andy Fleming4abd8442008-03-31 20:45:56 -0500863 strcpy(data, newp);
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500864 data += length;
865 *len += length;
Andy Fleming4abd8442008-03-31 20:45:56 -0500866 newp = newval[++stridx];
867 }
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400868 }
869 return 0;
870}
871
872/****************************************************************************/
873
874/*
875 * Heuristic to guess if this is a string or concatenated strings.
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400876 */
877
878static int is_printable_string(const void *data, int len)
879{
880 const char *s = data;
881
882 /* zero length is not */
883 if (len == 0)
884 return 0;
885
Joe Hershberger8805bee2012-08-17 10:34:38 +0000886 /* must terminate with zero or '\n' */
887 if (s[len - 1] != '\0' && s[len - 1] != '\n')
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400888 return 0;
889
890 /* printable or a null byte (concatenated strings) */
Joe Hershberger8805bee2012-08-17 10:34:38 +0000891 while (((*s == '\0') || isprint(*s) || isspace(*s)) && (len > 0)) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400892 /*
893 * If we see a null, there are three possibilities:
894 * 1) If len == 1, it is the end of the string, printable
895 * 2) Next character also a null, not printable.
896 * 3) Next character not a null, continue to check.
897 */
898 if (s[0] == '\0') {
899 if (len == 1)
900 return 1;
901 if (s[1] == '\0')
902 return 0;
903 }
904 s++;
905 len--;
906 }
907
908 /* Not the null termination, or not done yet: not printable */
909 if (*s != '\0' || (len != 0))
910 return 0;
911
912 return 1;
913}
914
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400915
916/*
917 * Print the property in the best format, a heuristic guess. Print as
918 * a string, concatenated strings, a byte, word, double word, or (if all
919 * else fails) it is printed as a stream of bytes.
920 */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400921static void print_data(const void *data, int len)
922{
923 int j;
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200924 const char *env_max_dump;
925 ulong max_dump = ULONG_MAX;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400926
927 /* no data, don't print */
928 if (len == 0)
929 return;
930
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200931 env_max_dump = env_get("fdt_max_dump");
932 if (env_max_dump)
Simon Glass7e5f4602021-07-24 09:03:29 -0600933 max_dump = hextoul(env_max_dump, NULL);
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200934
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400935 /*
936 * It is a string, but it may have multiple strings (embedded '\0's).
937 */
938 if (is_printable_string(data, len)) {
939 puts("\"");
940 j = 0;
941 while (j < len) {
942 if (j > 0)
943 puts("\", \"");
944 puts(data);
945 j += strlen(data) + 1;
946 data += strlen(data) + 1;
947 }
948 puts("\"");
949 return;
950 }
951
Andy Fleming4abd8442008-03-31 20:45:56 -0500952 if ((len %4) == 0) {
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200953 if (len > max_dump)
Tom Rini085b9c32012-10-29 14:53:18 +0000954 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000955 else {
Kim Phillips088f1b12012-10-29 13:34:31 +0000956 const __be32 *p;
Andy Fleming4abd8442008-03-31 20:45:56 -0500957
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000958 printf("<");
959 for (j = 0, p = data; j < len/4; j++)
960 printf("0x%08x%s", fdt32_to_cpu(p[j]),
961 j < (len/4 - 1) ? " " : "");
962 printf(">");
963 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500964 } else { /* anything else... hexdump */
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200965 if (len > max_dump)
Tom Rini085b9c32012-10-29 14:53:18 +0000966 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000967 else {
968 const u8 *s;
Andy Fleming4abd8442008-03-31 20:45:56 -0500969
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000970 printf("[");
971 for (j = 0, s = data; j < len; j++)
972 printf("%02x%s", s[j], j < len - 1 ? " " : "");
973 printf("]");
974 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400975 }
976}
977
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400978/****************************************************************************/
979
980/*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500981 * Recursively print (a portion of) the working_fdt. The depth parameter
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400982 * determines how deeply nested the fdt is printed.
983 */
Kumar Galadbaf07c2007-11-21 14:07:46 -0600984static int fdt_print(const char *pathp, char *prop, int depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400985{
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400986 static char tabs[MAX_LEVEL+1] =
987 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
988 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
Kumar Galadbaf07c2007-11-21 14:07:46 -0600989 const void *nodep; /* property node pointer */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400990 int nodeoffset; /* node offset from libfdt */
991 int nextoffset; /* next node offset from libfdt */
992 uint32_t tag; /* tag */
993 int len; /* length of the property */
994 int level = 0; /* keep track of nesting level */
Gerald Van Baren91623522007-11-22 17:23:23 -0500995 const struct fdt_property *fdt_prop;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400996
Kim Phillipse489b9c2008-06-10 11:06:17 -0500997 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400998 if (nodeoffset < 0) {
999 /*
1000 * Not found or something else bad happened.
1001 */
Kumar Gala8d04f022007-10-24 11:04:22 -05001002 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -04001003 fdt_strerror(nodeoffset));
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001004 return 1;
1005 }
1006 /*
1007 * The user passed in a property as well as node path.
1008 * Print only the given property and then return.
1009 */
1010 if (prop) {
Kim Phillipse489b9c2008-06-10 11:06:17 -05001011 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001012 if (len == 0) {
1013 /* no property value */
1014 printf("%s %s\n", pathp, prop);
1015 return 0;
Simon Glass9f952672017-06-07 10:28:42 -06001016 } else if (nodep && len > 0) {
Gerald Van Baren28f384b2007-11-23 19:43:20 -05001017 printf("%s = ", prop);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001018 print_data (nodep, len);
1019 printf("\n");
1020 return 0;
1021 } else {
1022 printf ("libfdt fdt_getprop(): %s\n",
1023 fdt_strerror(len));
1024 return 1;
1025 }
1026 }
1027
1028 /*
1029 * The user passed in a node path and no property,
1030 * print the node and all subnodes.
1031 */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001032 while(level >= 0) {
Kim Phillipse489b9c2008-06-10 11:06:17 -05001033 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001034 switch(tag) {
1035 case FDT_BEGIN_NODE:
Kim Phillipse489b9c2008-06-10 11:06:17 -05001036 pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
Gerald Van Baren91623522007-11-22 17:23:23 -05001037 if (level <= depth) {
1038 if (pathp == NULL)
1039 pathp = "/* NULL pointer error */";
1040 if (*pathp == '\0')
1041 pathp = "/"; /* root is nameless */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001042 printf("%s%s {\n",
1043 &tabs[MAX_LEVEL - level], pathp);
Gerald Van Baren91623522007-11-22 17:23:23 -05001044 }
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001045 level++;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001046 if (level >= MAX_LEVEL) {
Gerald Van Baren91623522007-11-22 17:23:23 -05001047 printf("Nested too deep, aborting.\n");
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001048 return 1;
1049 }
1050 break;
1051 case FDT_END_NODE:
1052 level--;
Gerald Van Baren91623522007-11-22 17:23:23 -05001053 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001054 printf("%s};\n", &tabs[MAX_LEVEL - level]);
1055 if (level == 0) {
1056 level = -1; /* exit the loop */
1057 }
1058 break;
1059 case FDT_PROP:
Kim Phillipse489b9c2008-06-10 11:06:17 -05001060 fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
Gerald Van Baren91623522007-11-22 17:23:23 -05001061 sizeof(*fdt_prop));
Kim Phillipse489b9c2008-06-10 11:06:17 -05001062 pathp = fdt_string(working_fdt,
Gerald Van Baren91623522007-11-22 17:23:23 -05001063 fdt32_to_cpu(fdt_prop->nameoff));
1064 len = fdt32_to_cpu(fdt_prop->len);
1065 nodep = fdt_prop->data;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001066 if (len < 0) {
1067 printf ("libfdt fdt_getprop(): %s\n",
1068 fdt_strerror(len));
1069 return 1;
1070 } else if (len == 0) {
1071 /* the property has no value */
Gerald Van Baren91623522007-11-22 17:23:23 -05001072 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001073 printf("%s%s;\n",
1074 &tabs[MAX_LEVEL - level],
1075 pathp);
1076 } else {
Gerald Van Baren91623522007-11-22 17:23:23 -05001077 if (level <= depth) {
Gerald Van Baren28f384b2007-11-23 19:43:20 -05001078 printf("%s%s = ",
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001079 &tabs[MAX_LEVEL - level],
1080 pathp);
1081 print_data (nodep, len);
1082 printf(";\n");
1083 }
1084 }
1085 break;
1086 case FDT_NOP:
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -07001087 printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001088 break;
1089 case FDT_END:
1090 return 1;
1091 default:
Gerald Van Baren91623522007-11-22 17:23:23 -05001092 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001093 printf("Unknown tag 0x%08X\n", tag);
1094 return 1;
1095 }
1096 nodeoffset = nextoffset;
1097 }
1098 return 0;
1099}
1100
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001101/********************************************************************/
Kim Phillips088f1b12012-10-29 13:34:31 +00001102#ifdef CONFIG_SYS_LONGHELP
1103static char fdt_help_text[] =
Heinrich Schuchardte4269632022-04-25 18:35:05 +02001104 "addr [-c] [-q] <addr> [<size>] - Set the [control] fdt location to <addr>\n"
Maxime Riparde6628ad2016-07-05 10:26:45 +02001105#ifdef CONFIG_OF_LIBFDT_OVERLAY
1106 "fdt apply <addr> - Apply overlay to the DT\n"
1107#endif
Gerald Van Barenfd61e552007-06-25 23:25:28 -04001108#ifdef CONFIG_OF_BOARD_SETUP
1109 "fdt boardsetup - Do board-specific set up\n"
1110#endif
Simon Glassc654b512014-10-23 18:58:54 -06001111#ifdef CONFIG_OF_SYSTEM_SETUP
1112 "fdt systemsetup - Do system-specific set up\n"
1113#endif
Gerald Van Baren238cb7a2008-01-05 15:33:29 -05001114 "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n"
Hannes Schmelzeref476832016-09-20 18:10:43 +02001115 "fdt resize [<extrasize>] - Resize fdt to size + padding to 4k addr + some optional <extrasize> if needed\n"
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001116 "fdt print <path> [<prop>] - Recursive print starting at <path>\n"
1117 "fdt list <path> [<prop>] - Print one level starting at <path>\n"
Marek Vasut13982ce2022-07-08 23:50:43 +02001118 "fdt get value <var> <path> <prop> [<index>] - Get <property> and store in <var>\n"
1119 " In case of stringlist property, use optional <index>\n"
1120 " to select string within the stringlist. Default is 0.\n"
Joe Hershbergerbc802952012-08-17 10:34:37 +00001121 "fdt get name <var> <path> <index> - Get name of node <index> and store in <var>\n"
1122 "fdt get addr <var> <path> <prop> - Get start address of <property> and store in <var>\n"
1123 "fdt get size <var> <path> [<prop>] - Get size of [<property>] or num nodes and store in <var>\n"
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001124 "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n"
1125 "fdt mknode <path> <node> - Create a new node after <path>\n"
1126 "fdt rm <path> [<prop>] - Delete the node or <property>\n"
Heiko Schocher82441272018-11-15 06:06:06 +01001127 "fdt header [get <var> <member>] - Display header info\n"
1128 " get - get header member <member> and store it in <var>\n"
Kumar Gala804887e2008-02-15 03:34:36 -06001129 "fdt bootcpu <id> - Set boot cpuid\n"
1130 "fdt memory <addr> <size> - Add/Update memory node\n"
1131 "fdt rsvmem print - Show current mem reserves\n"
1132 "fdt rsvmem add <addr> <size> - Add a mem reserve\n"
1133 "fdt rsvmem delete <index> - Delete a mem reserves\n"
Sean Andersondbf6f7c2022-03-22 16:59:21 -04001134 "fdt chosen [<start> <size>] - Add/update the /chosen branch in the tree\n"
1135 " <start>/<size> - initrd start addr/size\n"
Heiko Schocher097dd3e2014-03-03 12:19:24 +01001136#if defined(CONFIG_FIT_SIGNATURE)
1137 "fdt checksign [<addr>] - check FIT signature\n"
1138 " <start> - addr of key blob\n"
1139 " default gd->fdt_blob\n"
1140#endif
Robert P. J. Day1cc0a9f2016-05-04 04:47:31 -04001141 "NOTE: Dereference aliases by omitting the leading '/', "
Kim Phillips088f1b12012-10-29 13:34:31 +00001142 "e.g. fdt print ethernet0.";
1143#endif
1144
1145U_BOOT_CMD(
1146 fdt, 255, 0, do_fdt,
1147 "flattened device tree utility commands", fdt_help_text
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001148);