blob: aae3278526c4a34efac461834687d36e55712327 [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
Peter Hoyesb4fae892023-03-21 13:01:16 +000039static void set_working_fdt_addr_quiet(ulong addr)
Kumar Gala54f9c862008-08-15 08:24:39 -050040{
Simon Glassa92fd652013-04-20 08:42:45 +000041 void *buf;
42
Joe Hershberger90fbee32015-02-04 21:56:53 -060043 buf = map_sysmem(addr, 0);
Simon Glassa92fd652013-04-20 08:42:45 +000044 working_fdt = buf;
Simon Glass018f5302017-08-03 12:22:10 -060045 env_set_hex("fdtaddr", addr);
Kumar Gala54f9c862008-08-15 08:24:39 -050046}
47
Peter Hoyesb4fae892023-03-21 13:01:16 +000048void set_working_fdt_addr(ulong addr)
49{
50 printf("Working FDT set to %lx\n", addr);
51 set_working_fdt_addr_quiet(addr);
52}
53
Gerald Van Barenae9e97f2008-06-10 22:15:58 -040054/*
Joe Hershbergerbc802952012-08-17 10:34:37 +000055 * Get a value from the fdt and format it to be set in the environment
56 */
Marek Vasut13982ce2022-07-08 23:50:43 +020057static int fdt_value_env_set(const void *nodep, int len,
58 const char *var, int index)
Joe Hershbergerbc802952012-08-17 10:34:37 +000059{
Marek Vasut13982ce2022-07-08 23:50:43 +020060 if (is_printable_string(nodep, len)) {
61 const char *nodec = (const char *)nodep;
62 int i;
63
64 /*
65 * Iterate over all members in stringlist and find the one at
66 * offset $index. If no such index exists, indicate failure.
67 */
Marek Vasut7dfcf2a2022-11-14 22:49:59 +010068 for (i = 0; i < len; ) {
69 if (index-- > 0) {
70 i += strlen(nodec) + 1;
71 nodec += strlen(nodec) + 1;
Marek Vasut13982ce2022-07-08 23:50:43 +020072 continue;
Marek Vasut7dfcf2a2022-11-14 22:49:59 +010073 }
Marek Vasut13982ce2022-07-08 23:50:43 +020074
Marek Vasut7dfcf2a2022-11-14 22:49:59 +010075 env_set(var, nodec);
Marek Vasut13982ce2022-07-08 23:50:43 +020076 return 0;
77 }
78
79 return 1;
80 } else if (len == 4) {
Joe Hershbergerbc802952012-08-17 10:34:37 +000081 char buf[11];
82
Andreas Färberb05bf6c2017-01-09 16:08:02 +010083 sprintf(buf, "0x%08X", fdt32_to_cpu(*(fdt32_t *)nodep));
Simon Glass382bee52017-08-03 12:22:09 -060084 env_set(var, buf);
Marek Vasut95d85d02023-03-02 04:08:23 +010085 } else if (len % 4 == 0 && index >= 0) {
86 /* Needed to print integer arrays. */
87 const unsigned int *nodec = (const unsigned int *)nodep;
88 char buf[11];
89
90 if (index * 4 >= len)
91 return 1;
92
93 sprintf(buf, "0x%08X", fdt32_to_cpu(*(nodec + index)));
94 env_set(var, buf);
95 } else if (len % 4 == 0 && len <= 20) {
Joe Hershbergerbc802952012-08-17 10:34:37 +000096 /* Needed to print things like sha1 hashes. */
97 char buf[41];
98 int i;
99
100 for (i = 0; i < len; i += sizeof(unsigned int))
101 sprintf(buf + (i * 2), "%08x",
102 *(unsigned int *)(nodep + i));
Simon Glass382bee52017-08-03 12:22:09 -0600103 env_set(var, buf);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000104 } else {
105 printf("error: unprintable value\n");
106 return 1;
107 }
108 return 0;
109}
110
Heiko Schocher82441272018-11-15 06:06:06 +0100111static const char * const fdt_member_table[] = {
112 "magic",
113 "totalsize",
114 "off_dt_struct",
115 "off_dt_strings",
116 "off_mem_rsvmap",
117 "version",
118 "last_comp_version",
119 "boot_cpuid_phys",
120 "size_dt_strings",
121 "size_dt_struct",
122};
123
Simon Glass09140112020-05-10 11:40:03 -0600124static int fdt_get_header_value(int argc, char *const argv[])
Heiko Schocher82441272018-11-15 06:06:06 +0100125{
126 fdt32_t *fdtp = (fdt32_t *)working_fdt;
127 ulong val;
128 int i;
129
130 if (argv[2][0] != 'g')
131 return CMD_RET_FAILURE;
132
133 for (i = 0; i < ARRAY_SIZE(fdt_member_table); i++) {
134 if (strcmp(fdt_member_table[i], argv[4]))
135 continue;
136
137 val = fdt32_to_cpu(fdtp[i]);
138 env_set_hex(argv[3], val);
139 return CMD_RET_SUCCESS;
140 }
141
142 return CMD_RET_FAILURE;
143}
144
Joe Hershbergerbc802952012-08-17 10:34:37 +0000145/*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400146 * Flattened Device Tree command, see the help for parameter definitions.
147 */
Simon Glass09140112020-05-10 11:40:03 -0600148static int do_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400149{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200150 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000151 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400152
Simon Glass0c929632021-07-21 14:55:25 -0600153 /* fdt addr: Set the address of the fdt */
Maxime Ripardf0ed68e2016-07-05 10:26:34 +0200154 if (strncmp(argv[1], "ad", 2) == 0) {
Kumar Gala54f9c862008-08-15 08:24:39 -0500155 unsigned long addr;
Simon Glass4b578652013-04-20 08:42:44 +0000156 int control = 0;
Peter Hoyese9496ec2022-03-31 11:53:22 +0100157 int quiet = 0;
Simon Glass4b578652013-04-20 08:42:44 +0000158 struct fdt_header *blob;
Simon Glass0c929632021-07-21 14:55:25 -0600159
160 /* Set the address [and length] of the fdt */
Simon Glass4b578652013-04-20 08:42:44 +0000161 argc -= 2;
162 argv += 2;
Peter Hoyese9496ec2022-03-31 11:53:22 +0100163 while (argc > 0 && **argv == '-') {
164 char *arg = *argv;
165
166 while (*++arg) {
167 switch (*arg) {
168 case 'c':
169 control = 1;
170 break;
171 case 'q':
172 quiet = 1;
173 break;
174 default:
175 return CMD_RET_USAGE;
176 }
177 }
Simon Glass4b578652013-04-20 08:42:44 +0000178 argc--;
179 argv++;
180 }
Simon Glass4b578652013-04-20 08:42:44 +0000181 if (argc == 0) {
182 if (control)
183 blob = (struct fdt_header *)gd->fdt_blob;
184 else
185 blob = working_fdt;
186 if (!blob || !fdt_valid(&blob))
Kumar Gala7dbc38a2008-08-15 08:24:35 -0500187 return 1;
Simon Glassb29a0db2021-07-21 14:55:26 -0600188 printf("%s fdt: %08lx\n",
189 control ? "Control" : "Working",
Joe Hershbergerc71a0162015-02-04 21:56:54 -0600190 control ? (ulong)map_to_sysmem(blob) :
Simon Glassb29a0db2021-07-21 14:55:26 -0600191 env_get_hex("fdtaddr", 0));
Kumar Gala7dbc38a2008-08-15 08:24:35 -0500192 return 0;
193 }
194
Simon Glass7e5f4602021-07-24 09:03:29 -0600195 addr = hextoul(argv[0], NULL);
Simon Glassa92fd652013-04-20 08:42:45 +0000196 blob = map_sysmem(addr, 0);
Peter Hoyese9496ec2022-03-31 11:53:22 +0100197 if ((quiet && fdt_check_header(blob)) ||
198 (!quiet && !fdt_valid(&blob)))
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400199 return 1;
Peter Hoyesb4fae892023-03-21 13:01:16 +0000200 if (control) {
Simon Glass4b578652013-04-20 08:42:44 +0000201 gd->fdt_blob = blob;
Peter Hoyesb4fae892023-03-21 13:01:16 +0000202 } else {
203 if (quiet)
204 set_working_fdt_addr_quiet(addr);
205 else
206 set_working_fdt_addr(addr);
207 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400208
Simon Glass4b578652013-04-20 08:42:44 +0000209 if (argc >= 2) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400210 int len;
211 int err;
Simon Glass0c929632021-07-21 14:55:25 -0600212
213 /* Optional new length */
Simon Glass7e5f4602021-07-24 09:03:29 -0600214 len = hextoul(argv[1], NULL);
Simon Glass4b578652013-04-20 08:42:44 +0000215 if (len < fdt_totalsize(blob)) {
Peter Hoyese9496ec2022-03-31 11:53:22 +0100216 if (!quiet)
217 printf("New length %d < existing length %d, ignoring\n",
218 len, fdt_totalsize(blob));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400219 } else {
Simon Glass0c929632021-07-21 14:55:25 -0600220 /* Open in place with a new length */
Simon Glass4b578652013-04-20 08:42:44 +0000221 err = fdt_open_into(blob, blob, len);
Peter Hoyese9496ec2022-03-31 11:53:22 +0100222 if (!quiet && err != 0) {
Simon Glass0c929632021-07-21 14:55:25 -0600223 printf("libfdt fdt_open_into(): %s\n",
224 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400225 }
226 }
227 }
228
Marek Vasute02c9452012-09-05 08:34:44 +0200229 return CMD_RET_SUCCESS;
Marek Vasute02c9452012-09-05 08:34:44 +0200230
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200231 /*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500232 * Move the working_fdt
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200233 */
Andre Przywara4ee85df2023-02-10 11:02:12 +0000234 } else if (strncmp(argv[1], "mo", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400235 struct fdt_header *newaddr;
236 int len;
237 int err;
238
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200239 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000240 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400241
242 /*
243 * Set the address and length of the fdt.
244 */
Andre Przywara64597342023-02-10 11:02:11 +0000245 working_fdt = map_sysmem(hextoul(argv[2], NULL), 0);
Simon Glassd14da912013-04-20 08:42:42 +0000246 if (!fdt_valid(&working_fdt))
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400247 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400248
Andre Przywara64597342023-02-10 11:02:11 +0000249 newaddr = map_sysmem(hextoul(argv[3], NULL), 0);
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400250
251 /*
252 * If the user specifies a length, use that. Otherwise use the
253 * current length.
254 */
255 if (argc <= 4) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500256 len = fdt_totalsize(working_fdt);
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400257 } else {
Simon Glass7e5f4602021-07-24 09:03:29 -0600258 len = hextoul(argv[4], NULL);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500259 if (len < fdt_totalsize(working_fdt)) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400260 printf ("New length 0x%X < existing length "
261 "0x%X, aborting.\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500262 len, fdt_totalsize(working_fdt));
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400263 return 1;
264 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400265 }
266
267 /*
268 * Copy to the new location.
269 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500270 err = fdt_open_into(working_fdt, newaddr, len);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400271 if (err != 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400272 printf ("libfdt fdt_open_into(): %s\n",
273 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400274 return 1;
275 }
Andre Przywara64597342023-02-10 11:02:11 +0000276 set_working_fdt_addr(map_to_sysmem(newaddr));
Andre Przywara4ee85df2023-02-10 11:02:12 +0000277
278 return CMD_RET_SUCCESS;
279 }
280
281 if (!working_fdt) {
282 puts("No FDT memory address configured. Please configure\n"
283 "the FDT address via \"fdt addr <address>\" command.\n"
284 "Aborting!\n");
285 return CMD_RET_FAILURE;
286 }
287
Fabien Parentf7f191e2016-11-24 15:02:18 +0100288#ifdef CONFIG_OF_SYSTEM_SETUP
289 /* Call the board-specific fixup routine */
Andre Przywara4ee85df2023-02-10 11:02:12 +0000290 if (strncmp(argv[1], "sys", 3) == 0) {
Fabien Parentf7f191e2016-11-24 15:02:18 +0100291 int err = ft_system_setup(working_fdt, gd->bd);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400292
Fabien Parentf7f191e2016-11-24 15:02:18 +0100293 if (err) {
294 printf("Failed to add system information to FDT: %s\n",
295 fdt_strerror(err));
296 return CMD_RET_FAILURE;
297 }
Andre Przywara4ee85df2023-02-10 11:02:12 +0000298
299 return CMD_RET_SUCCESS;
300 }
Fabien Parentf7f191e2016-11-24 15:02:18 +0100301#endif
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200302 /*
Gerald Van Baren25114032007-05-12 09:47:25 -0400303 * Make a new node
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200304 */
Andre Przywara4ee85df2023-02-10 11:02:12 +0000305 if (strncmp(argv[1], "mk", 2) == 0) {
Gerald Van Baren25114032007-05-12 09:47:25 -0400306 char *pathp; /* path */
307 char *nodep; /* new node to add */
308 int nodeoffset; /* node offset from libfdt */
309 int err;
310
311 /*
312 * Parameters: Node path, new node to be appended to the path.
313 */
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200314 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000315 return CMD_RET_USAGE;
Gerald Van Baren25114032007-05-12 09:47:25 -0400316
317 pathp = argv[2];
318 nodep = argv[3];
319
Kim Phillipse489b9c2008-06-10 11:06:17 -0500320 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400321 if (nodeoffset < 0) {
322 /*
323 * Not found or something else bad happened.
324 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500325 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400326 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400327 return 1;
328 }
Kim Phillipse489b9c2008-06-10 11:06:17 -0500329 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
Gerald Van Baren25114032007-05-12 09:47:25 -0400330 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400331 printf ("libfdt fdt_add_subnode(): %s\n",
332 fdt_strerror(err));
Gerald Van Baren25114032007-05-12 09:47:25 -0400333 return 1;
334 }
335
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200336 /*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500337 * Set the value of a property in the working_fdt.
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200338 */
Tom Warren0688b752020-03-26 15:20:44 -0700339 } else if (strncmp(argv[1], "se", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400340 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400341 char *prop; /* property */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400342 int nodeoffset; /* node offset from libfdt */
Bernhard Messerklinger6dfd65f2017-09-28 11:29:52 +0200343 static char data[SCRATCHPAD] __aligned(4);/* property storage */
Hannes Schmelzer9620d872017-05-30 15:05:44 +0200344 const void *ptmp;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400345 int len; /* new length of the property */
346 int ret; /* return value */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400347
348 /*
Gerald Van Barenea6d8be2008-01-05 14:52:04 -0500349 * Parameters: Node path, property, optional value.
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400350 */
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200351 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000352 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400353
354 pathp = argv[2];
355 prop = argv[3];
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400356
Kim Phillipse489b9c2008-06-10 11:06:17 -0500357 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400358 if (nodeoffset < 0) {
359 /*
360 * Not found or something else bad happened.
361 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500362 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400363 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400364 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400365 }
Gerald Van Baren25114032007-05-12 09:47:25 -0400366
Hannes Schmelzer9620d872017-05-30 15:05:44 +0200367 if (argc == 4) {
368 len = 0;
369 } else {
370 ptmp = fdt_getprop(working_fdt, nodeoffset, prop, &len);
371 if (len > SCRATCHPAD) {
372 printf("prop (%d) doesn't fit in scratchpad!\n",
373 len);
374 return 1;
375 }
Hannes Schmelzercee8c352017-08-18 14:41:14 +0200376 if (ptmp != NULL)
377 memcpy(data, ptmp, len);
378
Hannes Schmelzer9620d872017-05-30 15:05:44 +0200379 ret = fdt_parse_prop(&argv[4], argc - 4, data, &len);
380 if (ret != 0)
381 return ret;
382 }
383
Kim Phillipse489b9c2008-06-10 11:06:17 -0500384 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
Gerald Van Baren25114032007-05-12 09:47:25 -0400385 if (ret < 0) {
386 printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
387 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400388 }
389
Joe Hershbergerbc802952012-08-17 10:34:37 +0000390 /********************************************************************
391 * Get the value of a property in the working_fdt.
392 ********************************************************************/
393 } else if (argv[1][0] == 'g') {
394 char *subcmd; /* sub-command */
395 char *pathp; /* path */
396 char *prop; /* property */
397 char *var; /* variable to store result */
398 int nodeoffset; /* node offset from libfdt */
399 const void *nodep; /* property node pointer */
400 int len = 0; /* new length of the property */
401
402 /*
403 * Parameters: Node path, property, optional value.
404 */
405 if (argc < 5)
406 return CMD_RET_USAGE;
407
408 subcmd = argv[2];
409
410 if (argc < 6 && subcmd[0] != 's')
411 return CMD_RET_USAGE;
412
413 var = argv[3];
414 pathp = argv[4];
415 prop = argv[5];
416
417 nodeoffset = fdt_path_offset(working_fdt, pathp);
418 if (nodeoffset < 0) {
419 /*
420 * Not found or something else bad happened.
421 */
422 printf("libfdt fdt_path_offset() returned %s\n",
423 fdt_strerror(nodeoffset));
424 return 1;
425 }
426
427 if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600428 int req_index = -1;
Joe Hershbergerbc802952012-08-17 10:34:37 +0000429 int startDepth = fdt_node_depth(
430 working_fdt, nodeoffset);
431 int curDepth = startDepth;
Simon Glass7e5f4602021-07-24 09:03:29 -0600432 int cur_index = -1;
Joe Hershbergerbc802952012-08-17 10:34:37 +0000433 int nextNodeOffset = fdt_next_node(
434 working_fdt, nodeoffset, &curDepth);
435
436 if (subcmd[0] == 'n')
Simon Glass7e5f4602021-07-24 09:03:29 -0600437 req_index = hextoul(argv[5], NULL);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000438
439 while (curDepth > startDepth) {
440 if (curDepth == startDepth + 1)
Simon Glass7e5f4602021-07-24 09:03:29 -0600441 cur_index++;
442 if (subcmd[0] == 'n' &&
443 cur_index == req_index) {
Simon Glass382bee52017-08-03 12:22:09 -0600444 const char *node_name;
Joe Hershbergerbc802952012-08-17 10:34:37 +0000445
Simon Glass382bee52017-08-03 12:22:09 -0600446 node_name = fdt_get_name(working_fdt,
447 nextNodeOffset,
448 NULL);
449 env_set(var, node_name);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000450 return 0;
451 }
452 nextNodeOffset = fdt_next_node(
453 working_fdt, nextNodeOffset, &curDepth);
454 if (nextNodeOffset < 0)
455 break;
456 }
457 if (subcmd[0] == 's') {
458 /* get the num nodes at this level */
Simon Glass7e5f4602021-07-24 09:03:29 -0600459 env_set_ulong(var, cur_index + 1);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000460 } else {
461 /* node index not found */
462 printf("libfdt node not found\n");
463 return 1;
464 }
465 } else {
466 nodep = fdt_getprop(
467 working_fdt, nodeoffset, prop, &len);
Marek Vasut45d20f52023-03-02 04:08:15 +0100468 if (nodep && len >= 0) {
Joe Hershbergerbc802952012-08-17 10:34:37 +0000469 if (subcmd[0] == 'v') {
Marek Vasut95d85d02023-03-02 04:08:23 +0100470 int index = -1;
Joe Hershbergerbc802952012-08-17 10:34:37 +0000471 int ret;
472
Marek Vasut45d20f52023-03-02 04:08:15 +0100473 if (len == 0) {
474 /* no property value */
475 env_set(var, "");
476 return 0;
477 }
478
Marek Vasut13982ce2022-07-08 23:50:43 +0200479 if (argc == 7)
480 index = simple_strtoul(argv[6], NULL, 10);
481
Simon Glass382bee52017-08-03 12:22:09 -0600482 ret = fdt_value_env_set(nodep, len,
Marek Vasut13982ce2022-07-08 23:50:43 +0200483 var, index);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000484 if (ret != 0)
485 return ret;
486 } else if (subcmd[0] == 'a') {
Marek Vasut2fb74a12023-03-11 17:29:21 +0100487 env_set_hex(var, (ulong)map_to_sysmem(nodep));
Joe Hershbergerbc802952012-08-17 10:34:37 +0000488 } else if (subcmd[0] == 's') {
Marek Vasut2fb74a12023-03-11 17:29:21 +0100489 env_set_hex(var, len);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000490 } else
491 return CMD_RET_USAGE;
492 return 0;
493 } else {
494 printf("libfdt fdt_getprop(): %s\n",
495 fdt_strerror(len));
496 return 1;
497 }
498 }
499
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200500 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400501 * Print (recursive) / List (single level)
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200502 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400503 } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400504 int depth = MAX_LEVEL; /* how deep to print */
505 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400506 char *prop; /* property */
507 int ret; /* return value */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500508 static char root[2] = "/";
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400509
510 /*
511 * list is an alias for print, but limited to 1 level
512 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400513 if (argv[1][0] == 'l') {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400514 depth = 1;
515 }
516
517 /*
518 * Get the starting path. The root node is an oddball,
519 * the offset is zero and has no name.
520 */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500521 if (argc == 2)
522 pathp = root;
523 else
524 pathp = argv[2];
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400525 if (argc > 3)
526 prop = argv[3];
527 else
528 prop = NULL;
529
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400530 ret = fdt_print(pathp, prop, depth);
531 if (ret != 0)
532 return ret;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400533
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200534 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400535 * Remove a property/node
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200536 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400537 } else if (strncmp(argv[1], "rm", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400538 int nodeoffset; /* node offset from libfdt */
539 int err;
540
541 /*
542 * Get the path. The root node is an oddball, the offset
543 * is zero and has no name.
544 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500545 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
Gerald Van Baren25114032007-05-12 09:47:25 -0400546 if (nodeoffset < 0) {
547 /*
548 * Not found or something else bad happened.
549 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500550 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400551 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400552 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400553 }
554 /*
555 * Do the delete. A fourth parameter means delete a property,
556 * otherwise delete the node.
557 */
558 if (argc > 3) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500559 err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400560 if (err < 0) {
Marek Vasut95976372023-03-02 04:08:16 +0100561 printf("libfdt fdt_delprop(): %s\n",
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400562 fdt_strerror(err));
Marek Vasut95976372023-03-02 04:08:16 +0100563 return CMD_RET_FAILURE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400564 }
565 } else {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500566 err = fdt_del_node(working_fdt, nodeoffset);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400567 if (err < 0) {
Marek Vasut95976372023-03-02 04:08:16 +0100568 printf("libfdt fdt_del_node(): %s\n",
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400569 fdt_strerror(err));
Marek Vasut95976372023-03-02 04:08:16 +0100570 return CMD_RET_FAILURE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400571 }
572 }
Kumar Gala804887e2008-02-15 03:34:36 -0600573
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200574 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600575 * Display header info
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200576 */
Kumar Gala804887e2008-02-15 03:34:36 -0600577 } else if (argv[1][0] == 'h') {
Heiko Schocher82441272018-11-15 06:06:06 +0100578 if (argc == 5)
579 return fdt_get_header_value(argc, argv);
580
Kim Phillipse489b9c2008-06-10 11:06:17 -0500581 u32 version = fdt_version(working_fdt);
582 printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt));
583 printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt),
584 fdt_totalsize(working_fdt));
585 printf("off_dt_struct:\t\t0x%x\n",
586 fdt_off_dt_struct(working_fdt));
587 printf("off_dt_strings:\t\t0x%x\n",
588 fdt_off_dt_strings(working_fdt));
589 printf("off_mem_rsvmap:\t\t0x%x\n",
590 fdt_off_mem_rsvmap(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600591 printf("version:\t\t%d\n", version);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500592 printf("last_comp_version:\t%d\n",
593 fdt_last_comp_version(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600594 if (version >= 2)
595 printf("boot_cpuid_phys:\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500596 fdt_boot_cpuid_phys(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600597 if (version >= 3)
598 printf("size_dt_strings:\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500599 fdt_size_dt_strings(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600600 if (version >= 17)
601 printf("size_dt_struct:\t\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500602 fdt_size_dt_struct(working_fdt));
603 printf("number mem_rsv:\t\t0x%x\n",
604 fdt_num_mem_rsv(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600605 printf("\n");
606
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200607 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600608 * Set boot cpu id
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200609 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400610 } else if (strncmp(argv[1], "boo", 3) == 0) {
Marek Vasut9d019f52023-03-02 04:08:18 +0100611 unsigned long tmp;
612
613 if (argc != 3)
614 return CMD_RET_USAGE;
615
616 tmp = hextoul(argv[2], NULL);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500617 fdt_set_boot_cpuid_phys(working_fdt, tmp);
Kumar Gala804887e2008-02-15 03:34:36 -0600618
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200619 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600620 * memory command
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200621 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400622 } else if (strncmp(argv[1], "me", 2) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600623 uint64_t addr, size;
624 int err;
Marek Vasute023b862023-03-02 04:08:19 +0100625
626 if (argc != 4)
627 return CMD_RET_USAGE;
628
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100629 addr = simple_strtoull(argv[2], NULL, 16);
630 size = simple_strtoull(argv[3], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500631 err = fdt_fixup_memory(working_fdt, addr, size);
Kumar Gala804887e2008-02-15 03:34:36 -0600632 if (err < 0)
633 return err;
634
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200635 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600636 * mem reserve commands
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200637 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400638 } else if (strncmp(argv[1], "rs", 2) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600639 if (argv[2][0] == 'p') {
640 uint64_t addr, size;
Kim Phillipse489b9c2008-06-10 11:06:17 -0500641 int total = fdt_num_mem_rsv(working_fdt);
Kumar Gala804887e2008-02-15 03:34:36 -0600642 int j, err;
643 printf("index\t\t start\t\t size\n");
644 printf("-------------------------------"
645 "-----------------\n");
646 for (j = 0; j < total; j++) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500647 err = fdt_get_mem_rsv(working_fdt, j, &addr, &size);
Kumar Gala804887e2008-02-15 03:34:36 -0600648 if (err < 0) {
649 printf("libfdt fdt_get_mem_rsv(): %s\n",
650 fdt_strerror(err));
651 return err;
652 }
653 printf(" %x\t%08x%08x\t%08x%08x\n", j,
654 (u32)(addr >> 32),
655 (u32)(addr & 0xffffffff),
656 (u32)(size >> 32),
657 (u32)(size & 0xffffffff));
658 }
659 } else if (argv[2][0] == 'a') {
660 uint64_t addr, size;
661 int err;
Kumar Gala804887e2008-02-15 03:34:36 -0600662 addr = simple_strtoull(argv[3], NULL, 16);
663 size = simple_strtoull(argv[4], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500664 err = fdt_add_mem_rsv(working_fdt, addr, size);
Kumar Gala804887e2008-02-15 03:34:36 -0600665
666 if (err < 0) {
Marek Vasut778c7ab2023-03-02 04:08:17 +0100667 printf("libfdt fdt_add_mem_rsv(): %s\n",
Kumar Gala804887e2008-02-15 03:34:36 -0600668 fdt_strerror(err));
Marek Vasut778c7ab2023-03-02 04:08:17 +0100669 return CMD_RET_FAILURE;
Kumar Gala804887e2008-02-15 03:34:36 -0600670 }
671 } else if (argv[2][0] == 'd') {
Simon Glass7e5f4602021-07-24 09:03:29 -0600672 unsigned long idx = hextoul(argv[3], NULL);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500673 int err = fdt_del_mem_rsv(working_fdt, idx);
Kumar Gala804887e2008-02-15 03:34:36 -0600674
675 if (err < 0) {
Marek Vasut778c7ab2023-03-02 04:08:17 +0100676 printf("libfdt fdt_del_mem_rsv(): %s\n",
Kumar Gala804887e2008-02-15 03:34:36 -0600677 fdt_strerror(err));
Marek Vasut778c7ab2023-03-02 04:08:17 +0100678 return CMD_RET_FAILURE;
Kumar Gala804887e2008-02-15 03:34:36 -0600679 }
680 } else {
681 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000682 return CMD_RET_USAGE;
Kumar Gala804887e2008-02-15 03:34:36 -0600683 }
Kim Phillips99dffca2007-07-17 13:57:04 -0500684 }
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400685#ifdef CONFIG_OF_BOARD_SETUP
Kim Phillips99dffca2007-07-17 13:57:04 -0500686 /* Call the board-specific fixup routine */
Simon Glass4ba98dc2014-10-23 18:58:48 -0600687 else if (strncmp(argv[1], "boa", 3) == 0) {
688 int err = ft_board_setup(working_fdt, gd->bd);
689
690 if (err) {
691 printf("Failed to update board information in FDT: %s\n",
692 fdt_strerror(err));
693 return CMD_RET_FAILURE;
694 }
Tom Rinif899cc12021-09-12 20:32:32 -0400695#ifdef CONFIG_ARCH_KEYSTONE
Nicholas Faustini2c76d312018-10-03 12:58:48 +0200696 ft_board_setup_ex(working_fdt, gd->bd);
697#endif
Simon Glass4ba98dc2014-10-23 18:58:48 -0600698 }
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400699#endif
Kim Phillips99dffca2007-07-17 13:57:04 -0500700 /* Create a chosen node */
Heiko Schocher097dd3e2014-03-03 12:19:24 +0100701 else if (strncmp(argv[1], "cho", 3) == 0) {
Kumar Galaf953d992008-08-15 08:24:34 -0500702 unsigned long initrd_start = 0, initrd_end = 0;
703
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200704 if ((argc != 2) && (argc != 4))
Simon Glass4c12eeb2011-12-10 08:44:01 +0000705 return CMD_RET_USAGE;
Kumar Galaf953d992008-08-15 08:24:34 -0500706
707 if (argc == 4) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600708 initrd_start = hextoul(argv[2], NULL);
Sean Andersondbf6f7c2022-03-22 16:59:21 -0400709 initrd_end = initrd_start + hextoul(argv[3], NULL) - 1;
Kumar Galaf953d992008-08-15 08:24:34 -0500710 }
711
Masahiro Yamadabc6ed0f2014-04-18 17:41:00 +0900712 fdt_chosen(working_fdt);
Masahiro Yamadadbe963a2014-04-18 17:40:59 +0900713 fdt_initrd(working_fdt, initrd_start, initrd_end);
Heiko Schocher097dd3e2014-03-03 12:19:24 +0100714
715#if defined(CONFIG_FIT_SIGNATURE)
716 } else if (strncmp(argv[1], "che", 3) == 0) {
717 int cfg_noffset;
718 int ret;
719 unsigned long addr;
720 struct fdt_header *blob;
721
722 if (!working_fdt)
723 return CMD_RET_FAILURE;
724
725 if (argc > 2) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600726 addr = hextoul(argv[2], NULL);
Heiko Schocher097dd3e2014-03-03 12:19:24 +0100727 blob = map_sysmem(addr, 0);
728 } else {
729 blob = (struct fdt_header *)gd->fdt_blob;
730 }
731 if (!fdt_valid(&blob))
732 return 1;
733
734 gd->fdt_blob = blob;
735 cfg_noffset = fit_conf_get_node(working_fdt, NULL);
736 if (!cfg_noffset) {
737 printf("Could not find configuration node: %s\n",
738 fdt_strerror(cfg_noffset));
739 return CMD_RET_FAILURE;
740 }
741
742 ret = fit_config_verify(working_fdt, cfg_noffset);
Simon Glass12df2ab2014-06-12 07:24:45 -0600743 if (ret == 0)
Heiko Schocher097dd3e2014-03-03 12:19:24 +0100744 return CMD_RET_SUCCESS;
745 else
746 return CMD_RET_FAILURE;
747#endif
748
Kumar Gala40afac22008-08-15 08:24:44 -0500749 }
Maxime Riparde6628ad2016-07-05 10:26:45 +0200750#ifdef CONFIG_OF_LIBFDT_OVERLAY
751 /* apply an overlay */
752 else if (strncmp(argv[1], "ap", 2) == 0) {
753 unsigned long addr;
754 struct fdt_header *blob;
Stefan Agner082b1412016-12-20 15:58:45 +0100755 int ret;
Maxime Riparde6628ad2016-07-05 10:26:45 +0200756
757 if (argc != 3)
758 return CMD_RET_USAGE;
759
760 if (!working_fdt)
761 return CMD_RET_FAILURE;
762
Simon Glass7e5f4602021-07-24 09:03:29 -0600763 addr = hextoul(argv[2], NULL);
Maxime Riparde6628ad2016-07-05 10:26:45 +0200764 blob = map_sysmem(addr, 0);
765 if (!fdt_valid(&blob))
766 return CMD_RET_FAILURE;
767
Pantelis Antoniou81ecc5d2017-09-04 23:12:12 +0300768 /* apply method prints messages on error */
769 ret = fdt_overlay_apply_verbose(working_fdt, blob);
770 if (ret)
Maxime Riparde6628ad2016-07-05 10:26:45 +0200771 return CMD_RET_FAILURE;
772 }
773#endif
Kumar Gala40afac22008-08-15 08:24:44 -0500774 /* resize the fdt */
775 else if (strncmp(argv[1], "re", 2) == 0) {
Hannes Schmelzeref476832016-09-20 18:10:43 +0200776 uint extrasize;
777 if (argc > 2)
Simon Glass7e5f4602021-07-24 09:03:29 -0600778 extrasize = hextoul(argv[2], NULL);
Hannes Schmelzeref476832016-09-20 18:10:43 +0200779 else
780 extrasize = 0;
781 fdt_shrink_to_minimum(working_fdt, extrasize);
Kumar Gala40afac22008-08-15 08:24:44 -0500782 }
783 else {
Kim Phillips99dffca2007-07-17 13:57:04 -0500784 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000785 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400786 }
787
788 return 0;
789}
790
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400791/****************************************************************************/
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400792
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400793/*
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400794 * Parse the user's input, partially heuristic. Valid formats:
Andy Fleming4abd8442008-03-31 20:45:56 -0500795 * <0x00112233 4 05> - an array of cells. Numbers follow standard
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200796 * C conventions.
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400797 * [00 11 22 .. nn] - byte stream
798 * "string" - If the the value doesn't start with "<" or "[", it is
799 * treated as a string. Note that the quotes are
800 * stripped by the parser before we get the string.
Andy Fleming4abd8442008-03-31 20:45:56 -0500801 * newval: An array of strings containing the new property as specified
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200802 * on the command line
Andy Fleming4abd8442008-03-31 20:45:56 -0500803 * count: The number of strings in the array
804 * data: A bytestream to be placed in the property
805 * len: The length of the resulting bytestream
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400806 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200807static int fdt_parse_prop(char * const *newval, int count, char *data, int *len)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400808{
809 char *cp; /* temporary char pointer */
Andy Fleming4abd8442008-03-31 20:45:56 -0500810 char *newp; /* temporary newval char pointer */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400811 unsigned long tmp; /* holds converted values */
Andy Fleming4abd8442008-03-31 20:45:56 -0500812 int stridx = 0;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400813
Andy Fleming4abd8442008-03-31 20:45:56 -0500814 *len = 0;
815 newp = newval[0];
816
817 /* An array of cells */
818 if (*newp == '<') {
819 newp++;
820 while ((*newp != '>') && (stridx < count)) {
821 /*
822 * Keep searching until we find that last ">"
823 * That way users don't have to escape the spaces
824 */
825 if (*newp == '\0') {
826 newp = newval[++stridx];
827 continue;
828 }
829
830 cp = newp;
831 tmp = simple_strtoul(cp, &newp, 0);
Hannes Schmelzer9620d872017-05-30 15:05:44 +0200832 if (*cp != '?')
833 *(fdt32_t *)data = cpu_to_fdt32(tmp);
834 else
835 newp++;
836
Andy Fleming4abd8442008-03-31 20:45:56 -0500837 data += 4;
838 *len += 4;
839
840 /* If the ptr didn't advance, something went wrong */
841 if ((newp - cp) <= 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400842 printf("Sorry, I could not convert \"%s\"\n",
843 cp);
844 return 1;
845 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500846
847 while (*newp == ' ')
848 newp++;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400849 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500850
851 if (*newp != '>') {
852 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400853 return 1;
854 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500855 } else if (*newp == '[') {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400856 /*
857 * Byte stream. Convert the values.
858 */
Andy Fleming4abd8442008-03-31 20:45:56 -0500859 newp++;
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500860 while ((stridx < count) && (*newp != ']')) {
861 while (*newp == ' ')
862 newp++;
863 if (*newp == '\0') {
864 newp = newval[++stridx];
865 continue;
866 }
867 if (!isxdigit(*newp))
868 break;
Simon Glass7e5f4602021-07-24 09:03:29 -0600869 tmp = hextoul(newp, &newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400870 *data++ = tmp & 0xFF;
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400871 *len = *len + 1;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400872 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500873 if (*newp != ']') {
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700874 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400875 return 1;
876 }
877 } else {
878 /*
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500879 * Assume it is one or more strings. Copy it into our
880 * data area for convenience (including the
881 * terminating '\0's).
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400882 */
Andy Fleming4abd8442008-03-31 20:45:56 -0500883 while (stridx < count) {
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500884 size_t length = strlen(newp) + 1;
Andy Fleming4abd8442008-03-31 20:45:56 -0500885 strcpy(data, newp);
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500886 data += length;
887 *len += length;
Andy Fleming4abd8442008-03-31 20:45:56 -0500888 newp = newval[++stridx];
889 }
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400890 }
891 return 0;
892}
893
894/****************************************************************************/
895
896/*
897 * Heuristic to guess if this is a string or concatenated strings.
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400898 */
899
900static int is_printable_string(const void *data, int len)
901{
902 const char *s = data;
Marek Vasut56915fa2023-03-02 04:08:14 +0100903 const char *ss, *se;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400904
905 /* zero length is not */
906 if (len == 0)
907 return 0;
908
Marek Vasut56915fa2023-03-02 04:08:14 +0100909 /* must terminate with zero */
910 if (s[len - 1] != '\0')
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400911 return 0;
912
Marek Vasut56915fa2023-03-02 04:08:14 +0100913 se = s + len;
914
915 while (s < se) {
916 ss = s;
917 while (s < se && *s && isprint((unsigned char)*s))
918 s++;
919
920 /* not zero, or not done yet */
921 if (*s != '\0' || s == ss)
922 return 0;
923
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400924 s++;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400925 }
926
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400927 return 1;
928}
929
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400930/*
931 * Print the property in the best format, a heuristic guess. Print as
932 * a string, concatenated strings, a byte, word, double word, or (if all
933 * else fails) it is printed as a stream of bytes.
934 */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400935static void print_data(const void *data, int len)
936{
937 int j;
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200938 const char *env_max_dump;
939 ulong max_dump = ULONG_MAX;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400940
941 /* no data, don't print */
942 if (len == 0)
943 return;
944
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200945 env_max_dump = env_get("fdt_max_dump");
946 if (env_max_dump)
Simon Glass7e5f4602021-07-24 09:03:29 -0600947 max_dump = hextoul(env_max_dump, NULL);
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200948
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400949 /*
950 * It is a string, but it may have multiple strings (embedded '\0's).
951 */
952 if (is_printable_string(data, len)) {
953 puts("\"");
954 j = 0;
955 while (j < len) {
956 if (j > 0)
957 puts("\", \"");
958 puts(data);
959 j += strlen(data) + 1;
960 data += strlen(data) + 1;
961 }
962 puts("\"");
963 return;
964 }
965
Andy Fleming4abd8442008-03-31 20:45:56 -0500966 if ((len %4) == 0) {
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200967 if (len > max_dump)
Tom Rini085b9c32012-10-29 14:53:18 +0000968 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000969 else {
Kim Phillips088f1b12012-10-29 13:34:31 +0000970 const __be32 *p;
Andy Fleming4abd8442008-03-31 20:45:56 -0500971
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000972 printf("<");
973 for (j = 0, p = data; j < len/4; j++)
974 printf("0x%08x%s", fdt32_to_cpu(p[j]),
975 j < (len/4 - 1) ? " " : "");
976 printf(">");
977 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500978 } else { /* anything else... hexdump */
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200979 if (len > max_dump)
Tom Rini085b9c32012-10-29 14:53:18 +0000980 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000981 else {
982 const u8 *s;
Andy Fleming4abd8442008-03-31 20:45:56 -0500983
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000984 printf("[");
985 for (j = 0, s = data; j < len; j++)
986 printf("%02x%s", s[j], j < len - 1 ? " " : "");
987 printf("]");
988 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400989 }
990}
991
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400992/****************************************************************************/
993
994/*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500995 * Recursively print (a portion of) the working_fdt. The depth parameter
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400996 * determines how deeply nested the fdt is printed.
997 */
Kumar Galadbaf07c2007-11-21 14:07:46 -0600998static int fdt_print(const char *pathp, char *prop, int depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400999{
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001000 static char tabs[MAX_LEVEL+1] =
1001 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
1002 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
Kumar Galadbaf07c2007-11-21 14:07:46 -06001003 const void *nodep; /* property node pointer */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001004 int nodeoffset; /* node offset from libfdt */
1005 int nextoffset; /* next node offset from libfdt */
1006 uint32_t tag; /* tag */
1007 int len; /* length of the property */
1008 int level = 0; /* keep track of nesting level */
Gerald Van Baren91623522007-11-22 17:23:23 -05001009 const struct fdt_property *fdt_prop;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001010
Kim Phillipse489b9c2008-06-10 11:06:17 -05001011 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001012 if (nodeoffset < 0) {
1013 /*
1014 * Not found or something else bad happened.
1015 */
Kumar Gala8d04f022007-10-24 11:04:22 -05001016 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -04001017 fdt_strerror(nodeoffset));
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001018 return 1;
1019 }
1020 /*
1021 * The user passed in a property as well as node path.
1022 * Print only the given property and then return.
1023 */
1024 if (prop) {
Kim Phillipse489b9c2008-06-10 11:06:17 -05001025 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001026 if (len == 0) {
1027 /* no property value */
1028 printf("%s %s\n", pathp, prop);
1029 return 0;
Simon Glass9f952672017-06-07 10:28:42 -06001030 } else if (nodep && len > 0) {
Gerald Van Baren28f384b2007-11-23 19:43:20 -05001031 printf("%s = ", prop);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001032 print_data (nodep, len);
1033 printf("\n");
1034 return 0;
1035 } else {
1036 printf ("libfdt fdt_getprop(): %s\n",
1037 fdt_strerror(len));
1038 return 1;
1039 }
1040 }
1041
1042 /*
1043 * The user passed in a node path and no property,
1044 * print the node and all subnodes.
1045 */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001046 while(level >= 0) {
Kim Phillipse489b9c2008-06-10 11:06:17 -05001047 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001048 switch(tag) {
1049 case FDT_BEGIN_NODE:
Kim Phillipse489b9c2008-06-10 11:06:17 -05001050 pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
Gerald Van Baren91623522007-11-22 17:23:23 -05001051 if (level <= depth) {
1052 if (pathp == NULL)
1053 pathp = "/* NULL pointer error */";
1054 if (*pathp == '\0')
1055 pathp = "/"; /* root is nameless */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001056 printf("%s%s {\n",
1057 &tabs[MAX_LEVEL - level], pathp);
Gerald Van Baren91623522007-11-22 17:23:23 -05001058 }
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001059 level++;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001060 if (level >= MAX_LEVEL) {
Gerald Van Baren91623522007-11-22 17:23:23 -05001061 printf("Nested too deep, aborting.\n");
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001062 return 1;
1063 }
1064 break;
1065 case FDT_END_NODE:
1066 level--;
Gerald Van Baren91623522007-11-22 17:23:23 -05001067 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001068 printf("%s};\n", &tabs[MAX_LEVEL - level]);
1069 if (level == 0) {
1070 level = -1; /* exit the loop */
1071 }
1072 break;
1073 case FDT_PROP:
Kim Phillipse489b9c2008-06-10 11:06:17 -05001074 fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
Gerald Van Baren91623522007-11-22 17:23:23 -05001075 sizeof(*fdt_prop));
Kim Phillipse489b9c2008-06-10 11:06:17 -05001076 pathp = fdt_string(working_fdt,
Gerald Van Baren91623522007-11-22 17:23:23 -05001077 fdt32_to_cpu(fdt_prop->nameoff));
1078 len = fdt32_to_cpu(fdt_prop->len);
1079 nodep = fdt_prop->data;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001080 if (len < 0) {
1081 printf ("libfdt fdt_getprop(): %s\n",
1082 fdt_strerror(len));
1083 return 1;
1084 } else if (len == 0) {
1085 /* the property has no value */
Gerald Van Baren91623522007-11-22 17:23:23 -05001086 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001087 printf("%s%s;\n",
1088 &tabs[MAX_LEVEL - level],
1089 pathp);
1090 } else {
Gerald Van Baren91623522007-11-22 17:23:23 -05001091 if (level <= depth) {
Gerald Van Baren28f384b2007-11-23 19:43:20 -05001092 printf("%s%s = ",
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001093 &tabs[MAX_LEVEL - level],
1094 pathp);
1095 print_data (nodep, len);
1096 printf(";\n");
1097 }
1098 }
1099 break;
1100 case FDT_NOP:
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -07001101 printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001102 break;
1103 case FDT_END:
1104 return 1;
1105 default:
Gerald Van Baren91623522007-11-22 17:23:23 -05001106 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001107 printf("Unknown tag 0x%08X\n", tag);
1108 return 1;
1109 }
1110 nodeoffset = nextoffset;
1111 }
1112 return 0;
1113}
1114
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001115/********************************************************************/
Kim Phillips088f1b12012-10-29 13:34:31 +00001116#ifdef CONFIG_SYS_LONGHELP
1117static char fdt_help_text[] =
Heinrich Schuchardte4269632022-04-25 18:35:05 +02001118 "addr [-c] [-q] <addr> [<size>] - Set the [control] fdt location to <addr>\n"
Maxime Riparde6628ad2016-07-05 10:26:45 +02001119#ifdef CONFIG_OF_LIBFDT_OVERLAY
1120 "fdt apply <addr> - Apply overlay to the DT\n"
1121#endif
Gerald Van Barenfd61e552007-06-25 23:25:28 -04001122#ifdef CONFIG_OF_BOARD_SETUP
1123 "fdt boardsetup - Do board-specific set up\n"
1124#endif
Simon Glassc654b512014-10-23 18:58:54 -06001125#ifdef CONFIG_OF_SYSTEM_SETUP
1126 "fdt systemsetup - Do system-specific set up\n"
1127#endif
Gerald Van Baren238cb7a2008-01-05 15:33:29 -05001128 "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n"
Hannes Schmelzeref476832016-09-20 18:10:43 +02001129 "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 -04001130 "fdt print <path> [<prop>] - Recursive print starting at <path>\n"
1131 "fdt list <path> [<prop>] - Print one level starting at <path>\n"
Marek Vasut13982ce2022-07-08 23:50:43 +02001132 "fdt get value <var> <path> <prop> [<index>] - Get <property> and store in <var>\n"
1133 " In case of stringlist property, use optional <index>\n"
1134 " to select string within the stringlist. Default is 0.\n"
Joe Hershbergerbc802952012-08-17 10:34:37 +00001135 "fdt get name <var> <path> <index> - Get name of node <index> and store in <var>\n"
1136 "fdt get addr <var> <path> <prop> - Get start address of <property> and store in <var>\n"
1137 "fdt get size <var> <path> [<prop>] - Get size of [<property>] or num nodes and store in <var>\n"
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001138 "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n"
1139 "fdt mknode <path> <node> - Create a new node after <path>\n"
1140 "fdt rm <path> [<prop>] - Delete the node or <property>\n"
Heiko Schocher82441272018-11-15 06:06:06 +01001141 "fdt header [get <var> <member>] - Display header info\n"
1142 " get - get header member <member> and store it in <var>\n"
Kumar Gala804887e2008-02-15 03:34:36 -06001143 "fdt bootcpu <id> - Set boot cpuid\n"
1144 "fdt memory <addr> <size> - Add/Update memory node\n"
1145 "fdt rsvmem print - Show current mem reserves\n"
1146 "fdt rsvmem add <addr> <size> - Add a mem reserve\n"
1147 "fdt rsvmem delete <index> - Delete a mem reserves\n"
Sean Andersondbf6f7c2022-03-22 16:59:21 -04001148 "fdt chosen [<start> <size>] - Add/update the /chosen branch in the tree\n"
1149 " <start>/<size> - initrd start addr/size\n"
Heiko Schocher097dd3e2014-03-03 12:19:24 +01001150#if defined(CONFIG_FIT_SIGNATURE)
1151 "fdt checksign [<addr>] - check FIT signature\n"
Marek Vasut3300a602023-03-02 04:08:20 +01001152 " <addr> - address of key blob\n"
1153 " default gd->fdt_blob\n"
Heiko Schocher097dd3e2014-03-03 12:19:24 +01001154#endif
Robert P. J. Day1cc0a9f2016-05-04 04:47:31 -04001155 "NOTE: Dereference aliases by omitting the leading '/', "
Kim Phillips088f1b12012-10-29 13:34:31 +00001156 "e.g. fdt print ethernet0.";
1157#endif
1158
1159U_BOOT_CMD(
1160 fdt, 255, 0, do_fdt,
1161 "flattened device tree utility commands", fdt_help_text
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001162);