blob: f2576ab4b388e294b11fbef3193beed3f2fa9df4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Gerald Van Barenade8ef42007-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 Barenade8ef42007-03-31 12:22:10 -04008 */
9
10#include <common.h>
11#include <command.h>
Simon Glass313112a2019-08-01 09:46:46 -060012#include <env.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060013#include <image.h>
Gerald Van Barenade8ef42007-03-31 12:22:10 -040014#include <linux/ctype.h>
15#include <linux/types.h>
Gerald Van Barenade8ef42007-03-31 12:22:10 -040016#include <asm/global_data.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090017#include <linux/libfdt.h>
Gerald Van Barenc4a57ea2007-04-06 14:19:43 -040018#include <fdt_support.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050019#include <mapmem.h>
Simon Glassb7fc7102013-04-20 08:42:45 +000020#include <asm/io.h>
Gerald Van Barenade8ef42007-03-31 12:22:10 -040021
22#define MAX_LEVEL 32 /* how deeply nested we will go */
Gerald Van Baren5606a362007-06-25 23:25:28 -040023#define SCRATCHPAD 1024 /* bytes of scratchpad memory */
Gerald Van Barenade8ef42007-03-31 12:22:10 -040024
25/*
26 * Global data (for the gd->bd)
27 */
28DECLARE_GLOBAL_DATA_PTR;
29
Wolfgang Denk6262d0212010-06-28 22:00:46 +020030static int fdt_parse_prop(char *const*newval, int count, char *data, int *len);
Kumar Gala1e386af2007-11-21 14:07:46 -060031static int fdt_print(const char *pathp, char *prop, int depth);
Joe Hershbergerfc5abf02012-08-17 10:34:37 +000032static int is_printable_string(const void *data, int len);
Gerald Van Barenade8ef42007-03-31 12:22:10 -040033
Gerald Van Barenade8ef42007-03-31 12:22:10 -040034/*
Gerald Van Barene81ce612008-06-10 22:15:58 -040035 * The working_fdt points to our working flattened device tree.
36 */
37struct fdt_header *working_fdt;
38
Joe Hershberger3d4ea4c2015-02-04 21:56:53 -060039void set_working_fdt_addr(ulong addr)
Kumar Gala9f4e7e42008-08-15 08:24:39 -050040{
Simon Glassb7fc7102013-04-20 08:42:45 +000041 void *buf;
42
Simon Glass84328cf2022-10-11 09:47:12 -060043 printf("Working FDT set to %lx\n", addr);
Joe Hershberger3d4ea4c2015-02-04 21:56:53 -060044 buf = map_sysmem(addr, 0);
Simon Glassb7fc7102013-04-20 08:42:45 +000045 working_fdt = buf;
Simon Glass4d949a22017-08-03 12:22:10 -060046 env_set_hex("fdtaddr", addr);
Kumar Gala9f4e7e42008-08-15 08:24:39 -050047}
48
Gerald Van Barene81ce612008-06-10 22:15:58 -040049/*
Joe Hershbergerfc5abf02012-08-17 10:34:37 +000050 * Get a value from the fdt and format it to be set in the environment
51 */
Marek Vasut0282f9f2022-07-08 23:50:43 +020052static int fdt_value_env_set(const void *nodep, int len,
53 const char *var, int index)
Joe Hershbergerfc5abf02012-08-17 10:34:37 +000054{
Marek Vasut0282f9f2022-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 Vasut0b425492022-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 Vasut0282f9f2022-07-08 23:50:43 +020067 continue;
Marek Vasut0b425492022-11-14 22:49:59 +010068 }
Marek Vasut0282f9f2022-07-08 23:50:43 +020069
Marek Vasut0b425492022-11-14 22:49:59 +010070 env_set(var, nodec);
Marek Vasut0282f9f2022-07-08 23:50:43 +020071 return 0;
72 }
73
74 return 1;
75 } else if (len == 4) {
Joe Hershbergerfc5abf02012-08-17 10:34:37 +000076 char buf[11];
77
Andreas Färber1a09cd22017-01-09 16:08:02 +010078 sprintf(buf, "0x%08X", fdt32_to_cpu(*(fdt32_t *)nodep));
Simon Glass6a38e412017-08-03 12:22:09 -060079 env_set(var, buf);
Joe Hershbergerfc5abf02012-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 Glass6a38e412017-08-03 12:22:09 -060088 env_set(var, buf);
Joe Hershbergerfc5abf02012-08-17 10:34:37 +000089 } else {
90 printf("error: unprintable value\n");
91 return 1;
92 }
93 return 0;
94}
95
Heiko Schocherfefc7ee2018-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 Glassed38aef2020-05-10 11:40:03 -0600109static int fdt_get_header_value(int argc, char *const argv[])
Heiko Schocherfefc7ee2018-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 Hershbergerfc5abf02012-08-17 10:34:37 +0000130/*
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400131 * Flattened Device Tree command, see the help for parameter definitions.
132 */
Simon Glassed38aef2020-05-10 11:40:03 -0600133static int do_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400134{
Wolfgang Denk3b683112010-07-17 01:06:04 +0200135 if (argc < 2)
Simon Glassa06dfc72011-12-10 08:44:01 +0000136 return CMD_RET_USAGE;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400137
Simon Glasse4647a12021-07-21 14:55:25 -0600138 /* fdt addr: Set the address of the fdt */
Maxime Ripard09caa012016-07-05 10:26:34 +0200139 if (strncmp(argv[1], "ad", 2) == 0) {
Kumar Gala9f4e7e42008-08-15 08:24:39 -0500140 unsigned long addr;
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000141 int control = 0;
Peter Hoyesfbbaa592022-03-31 11:53:22 +0100142 int quiet = 0;
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000143 struct fdt_header *blob;
Simon Glasse4647a12021-07-21 14:55:25 -0600144
145 /* Set the address [and length] of the fdt */
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000146 argc -= 2;
147 argv += 2;
Peter Hoyesfbbaa592022-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 Glass0bfc4cc2013-04-20 08:42:44 +0000163 argc--;
164 argv++;
165 }
Simon Glass0bfc4cc2013-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 Gala708a18b2008-08-15 08:24:35 -0500172 return 1;
Simon Glasseedc9222021-07-21 14:55:26 -0600173 printf("%s fdt: %08lx\n",
174 control ? "Control" : "Working",
Joe Hershberger6256dcc2015-02-04 21:56:54 -0600175 control ? (ulong)map_to_sysmem(blob) :
Simon Glasseedc9222021-07-21 14:55:26 -0600176 env_get_hex("fdtaddr", 0));
Kumar Gala708a18b2008-08-15 08:24:35 -0500177 return 0;
178 }
179
Simon Glass3ff49ec2021-07-24 09:03:29 -0600180 addr = hextoul(argv[0], NULL);
Simon Glassb7fc7102013-04-20 08:42:45 +0000181 blob = map_sysmem(addr, 0);
Peter Hoyesfbbaa592022-03-31 11:53:22 +0100182 if ((quiet && fdt_check_header(blob)) ||
183 (!quiet && !fdt_valid(&blob)))
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400184 return 1;
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000185 if (control)
186 gd->fdt_blob = blob;
187 else
Joe Hershberger3d4ea4c2015-02-04 21:56:53 -0600188 set_working_fdt_addr(addr);
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400189
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000190 if (argc >= 2) {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400191 int len;
192 int err;
Simon Glasse4647a12021-07-21 14:55:25 -0600193
194 /* Optional new length */
Simon Glass3ff49ec2021-07-24 09:03:29 -0600195 len = hextoul(argv[1], NULL);
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000196 if (len < fdt_totalsize(blob)) {
Peter Hoyesfbbaa592022-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 Barenade8ef42007-03-31 12:22:10 -0400200 } else {
Simon Glasse4647a12021-07-21 14:55:25 -0600201 /* Open in place with a new length */
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000202 err = fdt_open_into(blob, blob, len);
Peter Hoyesfbbaa592022-03-31 11:53:22 +0100203 if (!quiet && err != 0) {
Simon Glasse4647a12021-07-21 14:55:25 -0600204 printf("libfdt fdt_open_into(): %s\n",
205 fdt_strerror(err));
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400206 }
207 }
208 }
209
Marek Vasutaeccfee2012-09-05 08:34:44 +0200210 return CMD_RET_SUCCESS;
Marek Vasutaeccfee2012-09-05 08:34:44 +0200211
Wolfgang Denk3b683112010-07-17 01:06:04 +0200212 /*
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500213 * Move the working_fdt
Wolfgang Denk3b683112010-07-17 01:06:04 +0200214 */
Andre Przywarae9049942023-02-10 11:02:12 +0000215 } else if (strncmp(argv[1], "mo", 2) == 0) {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400216 struct fdt_header *newaddr;
217 int len;
218 int err;
219
Wolfgang Denk3b683112010-07-17 01:06:04 +0200220 if (argc < 4)
Simon Glassa06dfc72011-12-10 08:44:01 +0000221 return CMD_RET_USAGE;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400222
223 /*
224 * Set the address and length of the fdt.
225 */
Andre Przywaraa906f872023-02-10 11:02:11 +0000226 working_fdt = map_sysmem(hextoul(argv[2], NULL), 0);
Simon Glass546b9a32013-04-20 08:42:42 +0000227 if (!fdt_valid(&working_fdt))
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400228 return 1;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400229
Andre Przywaraa906f872023-02-10 11:02:11 +0000230 newaddr = map_sysmem(hextoul(argv[3], NULL), 0);
Gerald Van Baren4d223922007-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 Phillipsf3a42e22008-06-10 11:06:17 -0500237 len = fdt_totalsize(working_fdt);
Gerald Van Baren4d223922007-04-25 22:47:15 -0400238 } else {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600239 len = hextoul(argv[4], NULL);
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500240 if (len < fdt_totalsize(working_fdt)) {
Gerald Van Barene596a162007-05-16 22:39:59 -0400241 printf ("New length 0x%X < existing length "
242 "0x%X, aborting.\n",
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500243 len, fdt_totalsize(working_fdt));
Gerald Van Baren4d223922007-04-25 22:47:15 -0400244 return 1;
245 }
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400246 }
247
248 /*
249 * Copy to the new location.
250 */
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500251 err = fdt_open_into(working_fdt, newaddr, len);
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400252 if (err != 0) {
Gerald Van Barene596a162007-05-16 22:39:59 -0400253 printf ("libfdt fdt_open_into(): %s\n",
254 fdt_strerror(err));
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400255 return 1;
256 }
Andre Przywaraa906f872023-02-10 11:02:11 +0000257 set_working_fdt_addr(map_to_sysmem(newaddr));
Andre Przywarae9049942023-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 Parenta0559ac2016-11-24 15:02:18 +0100269#ifdef CONFIG_OF_SYSTEM_SETUP
270 /* Call the board-specific fixup routine */
Andre Przywarae9049942023-02-10 11:02:12 +0000271 if (strncmp(argv[1], "sys", 3) == 0) {
Fabien Parenta0559ac2016-11-24 15:02:18 +0100272 int err = ft_system_setup(working_fdt, gd->bd);
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400273
Fabien Parenta0559ac2016-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 Przywarae9049942023-02-10 11:02:12 +0000279
280 return CMD_RET_SUCCESS;
281 }
Fabien Parenta0559ac2016-11-24 15:02:18 +0100282#endif
Wolfgang Denk3b683112010-07-17 01:06:04 +0200283 /*
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400284 * Make a new node
Wolfgang Denk3b683112010-07-17 01:06:04 +0200285 */
Andre Przywarae9049942023-02-10 11:02:12 +0000286 if (strncmp(argv[1], "mk", 2) == 0) {
Gerald Van Baren0ea55d22007-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 Denk3b683112010-07-17 01:06:04 +0200295 if (argc < 4)
Simon Glassa06dfc72011-12-10 08:44:01 +0000296 return CMD_RET_USAGE;
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400297
298 pathp = argv[2];
299 nodep = argv[3];
300
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500301 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400302 if (nodeoffset < 0) {
303 /*
304 * Not found or something else bad happened.
305 */
Kumar Galac8ab7052007-10-24 11:04:22 -0500306 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren1178d6a2007-05-21 23:27:16 -0400307 fdt_strerror(nodeoffset));
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400308 return 1;
309 }
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500310 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400311 if (err < 0) {
Gerald Van Barene596a162007-05-16 22:39:59 -0400312 printf ("libfdt fdt_add_subnode(): %s\n",
313 fdt_strerror(err));
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400314 return 1;
315 }
316
Wolfgang Denk3b683112010-07-17 01:06:04 +0200317 /*
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500318 * Set the value of a property in the working_fdt.
Wolfgang Denk3b683112010-07-17 01:06:04 +0200319 */
Tom Warrend2c6dc82020-03-26 15:20:44 -0700320 } else if (strncmp(argv[1], "se", 2) == 0) {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400321 char *pathp; /* path */
Gerald Van Barene596a162007-05-16 22:39:59 -0400322 char *prop; /* property */
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400323 int nodeoffset; /* node offset from libfdt */
Bernhard Messerklinger9b2664f2017-09-28 11:29:52 +0200324 static char data[SCRATCHPAD] __aligned(4);/* property storage */
Hannes Schmelzer98788612017-05-30 15:05:44 +0200325 const void *ptmp;
Gerald Van Barene596a162007-05-16 22:39:59 -0400326 int len; /* new length of the property */
327 int ret; /* return value */
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400328
329 /*
Gerald Van Barend91383a2008-01-05 14:52:04 -0500330 * Parameters: Node path, property, optional value.
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400331 */
Wolfgang Denk3b683112010-07-17 01:06:04 +0200332 if (argc < 4)
Simon Glassa06dfc72011-12-10 08:44:01 +0000333 return CMD_RET_USAGE;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400334
335 pathp = argv[2];
336 prop = argv[3];
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400337
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500338 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400339 if (nodeoffset < 0) {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400340 /*
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400341 * Not found or something else bad happened.
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400342 */
Kumar Galac8ab7052007-10-24 11:04:22 -0500343 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren1178d6a2007-05-21 23:27:16 -0400344 fdt_strerror(nodeoffset));
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400345 return 1;
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400346 }
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400347
Hannes Schmelzer98788612017-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 Schmelzera99c0522017-08-18 14:41:14 +0200357 if (ptmp != NULL)
358 memcpy(data, ptmp, len);
359
Hannes Schmelzer98788612017-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 Phillipsf3a42e22008-06-10 11:06:17 -0500365 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400366 if (ret < 0) {
367 printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
368 return 1;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400369 }
370
Joe Hershbergerfc5abf02012-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 Glass3ff49ec2021-07-24 09:03:29 -0600409 int req_index = -1;
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000410 int startDepth = fdt_node_depth(
411 working_fdt, nodeoffset);
412 int curDepth = startDepth;
Simon Glass3ff49ec2021-07-24 09:03:29 -0600413 int cur_index = -1;
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000414 int nextNodeOffset = fdt_next_node(
415 working_fdt, nodeoffset, &curDepth);
416
417 if (subcmd[0] == 'n')
Simon Glass3ff49ec2021-07-24 09:03:29 -0600418 req_index = hextoul(argv[5], NULL);
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000419
420 while (curDepth > startDepth) {
421 if (curDepth == startDepth + 1)
Simon Glass3ff49ec2021-07-24 09:03:29 -0600422 cur_index++;
423 if (subcmd[0] == 'n' &&
424 cur_index == req_index) {
Simon Glass6a38e412017-08-03 12:22:09 -0600425 const char *node_name;
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000426
Simon Glass6a38e412017-08-03 12:22:09 -0600427 node_name = fdt_get_name(working_fdt,
428 nextNodeOffset,
429 NULL);
430 env_set(var, node_name);
Joe Hershbergerfc5abf02012-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 Glass3ff49ec2021-07-24 09:03:29 -0600440 env_set_ulong(var, cur_index + 1);
Joe Hershbergerfc5abf02012-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);
Marek Vasutdec66a52023-03-02 04:08:15 +0100449 if (nodep && len >= 0) {
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000450 if (subcmd[0] == 'v') {
Marek Vasut0282f9f2022-07-08 23:50:43 +0200451 int index = 0;
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000452 int ret;
453
Marek Vasutdec66a52023-03-02 04:08:15 +0100454 if (len == 0) {
455 /* no property value */
456 env_set(var, "");
457 return 0;
458 }
459
Marek Vasut0282f9f2022-07-08 23:50:43 +0200460 if (argc == 7)
461 index = simple_strtoul(argv[6], NULL, 10);
462
Simon Glass6a38e412017-08-03 12:22:09 -0600463 ret = fdt_value_env_set(nodep, len,
Marek Vasut0282f9f2022-07-08 23:50:43 +0200464 var, index);
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000465 if (ret != 0)
466 return ret;
467 } else if (subcmd[0] == 'a') {
468 /* Get address */
Marek Vasut18bddca2023-03-02 04:08:21 +0100469 char buf[19];
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000470
Marek Vasut6ce8fab2023-03-02 04:08:22 +0100471 snprintf(buf, sizeof(buf), "0x%lx",
472 (ulong)map_to_sysmem(nodep));
Simon Glass6a38e412017-08-03 12:22:09 -0600473 env_set(var, buf);
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000474 } else if (subcmd[0] == 's') {
475 /* Get size */
476 char buf[11];
477
478 sprintf(buf, "0x%08X", len);
Simon Glass6a38e412017-08-03 12:22:09 -0600479 env_set(var, buf);
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000480 } else
481 return CMD_RET_USAGE;
482 return 0;
483 } else {
484 printf("libfdt fdt_getprop(): %s\n",
485 fdt_strerror(len));
486 return 1;
487 }
488 }
489
Wolfgang Denk3b683112010-07-17 01:06:04 +0200490 /*
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400491 * Print (recursive) / List (single level)
Wolfgang Denk3b683112010-07-17 01:06:04 +0200492 */
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400493 } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400494 int depth = MAX_LEVEL; /* how deep to print */
495 char *pathp; /* path */
Gerald Van Barene596a162007-05-16 22:39:59 -0400496 char *prop; /* property */
497 int ret; /* return value */
Kumar Gala51ab7f92007-10-25 16:15:07 -0500498 static char root[2] = "/";
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400499
500 /*
501 * list is an alias for print, but limited to 1 level
502 */
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400503 if (argv[1][0] == 'l') {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400504 depth = 1;
505 }
506
507 /*
508 * Get the starting path. The root node is an oddball,
509 * the offset is zero and has no name.
510 */
Kumar Gala51ab7f92007-10-25 16:15:07 -0500511 if (argc == 2)
512 pathp = root;
513 else
514 pathp = argv[2];
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400515 if (argc > 3)
516 prop = argv[3];
517 else
518 prop = NULL;
519
Gerald Van Barene596a162007-05-16 22:39:59 -0400520 ret = fdt_print(pathp, prop, depth);
521 if (ret != 0)
522 return ret;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400523
Wolfgang Denk3b683112010-07-17 01:06:04 +0200524 /*
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400525 * Remove a property/node
Wolfgang Denk3b683112010-07-17 01:06:04 +0200526 */
Gerald Van Baren3b9d6292008-06-09 21:02:17 -0400527 } else if (strncmp(argv[1], "rm", 2) == 0) {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400528 int nodeoffset; /* node offset from libfdt */
529 int err;
530
531 /*
532 * Get the path. The root node is an oddball, the offset
533 * is zero and has no name.
534 */
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500535 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400536 if (nodeoffset < 0) {
537 /*
538 * Not found or something else bad happened.
539 */
Kumar Galac8ab7052007-10-24 11:04:22 -0500540 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren1178d6a2007-05-21 23:27:16 -0400541 fdt_strerror(nodeoffset));
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400542 return 1;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400543 }
544 /*
545 * Do the delete. A fourth parameter means delete a property,
546 * otherwise delete the node.
547 */
548 if (argc > 3) {
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500549 err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400550 if (err < 0) {
Marek Vasut62e41812023-03-02 04:08:16 +0100551 printf("libfdt fdt_delprop(): %s\n",
Gerald Van Barene596a162007-05-16 22:39:59 -0400552 fdt_strerror(err));
Marek Vasut62e41812023-03-02 04:08:16 +0100553 return CMD_RET_FAILURE;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400554 }
555 } else {
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500556 err = fdt_del_node(working_fdt, nodeoffset);
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400557 if (err < 0) {
Marek Vasut62e41812023-03-02 04:08:16 +0100558 printf("libfdt fdt_del_node(): %s\n",
Gerald Van Barene596a162007-05-16 22:39:59 -0400559 fdt_strerror(err));
Marek Vasut62e41812023-03-02 04:08:16 +0100560 return CMD_RET_FAILURE;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400561 }
562 }
Kumar Galab79da7b2008-02-15 03:34:36 -0600563
Wolfgang Denk3b683112010-07-17 01:06:04 +0200564 /*
Kumar Galab79da7b2008-02-15 03:34:36 -0600565 * Display header info
Wolfgang Denk3b683112010-07-17 01:06:04 +0200566 */
Kumar Galab79da7b2008-02-15 03:34:36 -0600567 } else if (argv[1][0] == 'h') {
Heiko Schocherfefc7ee2018-11-15 06:06:06 +0100568 if (argc == 5)
569 return fdt_get_header_value(argc, argv);
570
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500571 u32 version = fdt_version(working_fdt);
572 printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt));
573 printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt),
574 fdt_totalsize(working_fdt));
575 printf("off_dt_struct:\t\t0x%x\n",
576 fdt_off_dt_struct(working_fdt));
577 printf("off_dt_strings:\t\t0x%x\n",
578 fdt_off_dt_strings(working_fdt));
579 printf("off_mem_rsvmap:\t\t0x%x\n",
580 fdt_off_mem_rsvmap(working_fdt));
Kumar Galab79da7b2008-02-15 03:34:36 -0600581 printf("version:\t\t%d\n", version);
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500582 printf("last_comp_version:\t%d\n",
583 fdt_last_comp_version(working_fdt));
Kumar Galab79da7b2008-02-15 03:34:36 -0600584 if (version >= 2)
585 printf("boot_cpuid_phys:\t0x%x\n",
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500586 fdt_boot_cpuid_phys(working_fdt));
Kumar Galab79da7b2008-02-15 03:34:36 -0600587 if (version >= 3)
588 printf("size_dt_strings:\t0x%x\n",
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500589 fdt_size_dt_strings(working_fdt));
Kumar Galab79da7b2008-02-15 03:34:36 -0600590 if (version >= 17)
591 printf("size_dt_struct:\t\t0x%x\n",
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500592 fdt_size_dt_struct(working_fdt));
593 printf("number mem_rsv:\t\t0x%x\n",
594 fdt_num_mem_rsv(working_fdt));
Kumar Galab79da7b2008-02-15 03:34:36 -0600595 printf("\n");
596
Wolfgang Denk3b683112010-07-17 01:06:04 +0200597 /*
Kumar Galab79da7b2008-02-15 03:34:36 -0600598 * Set boot cpu id
Wolfgang Denk3b683112010-07-17 01:06:04 +0200599 */
Gerald Van Baren3b9d6292008-06-09 21:02:17 -0400600 } else if (strncmp(argv[1], "boo", 3) == 0) {
Marek Vasut817484e2023-03-02 04:08:18 +0100601 unsigned long tmp;
602
603 if (argc != 3)
604 return CMD_RET_USAGE;
605
606 tmp = hextoul(argv[2], NULL);
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500607 fdt_set_boot_cpuid_phys(working_fdt, tmp);
Kumar Galab79da7b2008-02-15 03:34:36 -0600608
Wolfgang Denk3b683112010-07-17 01:06:04 +0200609 /*
Kumar Galab79da7b2008-02-15 03:34:36 -0600610 * memory command
Wolfgang Denk3b683112010-07-17 01:06:04 +0200611 */
Gerald Van Baren3b9d6292008-06-09 21:02:17 -0400612 } else if (strncmp(argv[1], "me", 2) == 0) {
Kumar Galab79da7b2008-02-15 03:34:36 -0600613 uint64_t addr, size;
614 int err;
Marek Vasutc35a0df2023-03-02 04:08:19 +0100615
616 if (argc != 4)
617 return CMD_RET_USAGE;
618
Heiko Schocher0f602e12009-12-03 11:21:21 +0100619 addr = simple_strtoull(argv[2], NULL, 16);
620 size = simple_strtoull(argv[3], NULL, 16);
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500621 err = fdt_fixup_memory(working_fdt, addr, size);
Kumar Galab79da7b2008-02-15 03:34:36 -0600622 if (err < 0)
623 return err;
624
Wolfgang Denk3b683112010-07-17 01:06:04 +0200625 /*
Kumar Galab79da7b2008-02-15 03:34:36 -0600626 * mem reserve commands
Wolfgang Denk3b683112010-07-17 01:06:04 +0200627 */
Gerald Van Baren3b9d6292008-06-09 21:02:17 -0400628 } else if (strncmp(argv[1], "rs", 2) == 0) {
Kumar Galab79da7b2008-02-15 03:34:36 -0600629 if (argv[2][0] == 'p') {
630 uint64_t addr, size;
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500631 int total = fdt_num_mem_rsv(working_fdt);
Kumar Galab79da7b2008-02-15 03:34:36 -0600632 int j, err;
633 printf("index\t\t start\t\t size\n");
634 printf("-------------------------------"
635 "-----------------\n");
636 for (j = 0; j < total; j++) {
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500637 err = fdt_get_mem_rsv(working_fdt, j, &addr, &size);
Kumar Galab79da7b2008-02-15 03:34:36 -0600638 if (err < 0) {
639 printf("libfdt fdt_get_mem_rsv(): %s\n",
640 fdt_strerror(err));
641 return err;
642 }
643 printf(" %x\t%08x%08x\t%08x%08x\n", j,
644 (u32)(addr >> 32),
645 (u32)(addr & 0xffffffff),
646 (u32)(size >> 32),
647 (u32)(size & 0xffffffff));
648 }
649 } else if (argv[2][0] == 'a') {
650 uint64_t addr, size;
651 int err;
Kumar Galab79da7b2008-02-15 03:34:36 -0600652 addr = simple_strtoull(argv[3], NULL, 16);
653 size = simple_strtoull(argv[4], NULL, 16);
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500654 err = fdt_add_mem_rsv(working_fdt, addr, size);
Kumar Galab79da7b2008-02-15 03:34:36 -0600655
656 if (err < 0) {
Marek Vasut62167cc2023-03-02 04:08:17 +0100657 printf("libfdt fdt_add_mem_rsv(): %s\n",
Kumar Galab79da7b2008-02-15 03:34:36 -0600658 fdt_strerror(err));
Marek Vasut62167cc2023-03-02 04:08:17 +0100659 return CMD_RET_FAILURE;
Kumar Galab79da7b2008-02-15 03:34:36 -0600660 }
661 } else if (argv[2][0] == 'd') {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600662 unsigned long idx = hextoul(argv[3], NULL);
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500663 int err = fdt_del_mem_rsv(working_fdt, idx);
Kumar Galab79da7b2008-02-15 03:34:36 -0600664
665 if (err < 0) {
Marek Vasut62167cc2023-03-02 04:08:17 +0100666 printf("libfdt fdt_del_mem_rsv(): %s\n",
Kumar Galab79da7b2008-02-15 03:34:36 -0600667 fdt_strerror(err));
Marek Vasut62167cc2023-03-02 04:08:17 +0100668 return CMD_RET_FAILURE;
Kumar Galab79da7b2008-02-15 03:34:36 -0600669 }
670 } else {
671 /* Unrecognized command */
Simon Glassa06dfc72011-12-10 08:44:01 +0000672 return CMD_RET_USAGE;
Kumar Galab79da7b2008-02-15 03:34:36 -0600673 }
Kim Phillipsbd9d1152007-07-17 13:57:04 -0500674 }
Gerald Van Baren5606a362007-06-25 23:25:28 -0400675#ifdef CONFIG_OF_BOARD_SETUP
Kim Phillipsbd9d1152007-07-17 13:57:04 -0500676 /* Call the board-specific fixup routine */
Simon Glass406ba622014-10-23 18:58:48 -0600677 else if (strncmp(argv[1], "boa", 3) == 0) {
678 int err = ft_board_setup(working_fdt, gd->bd);
679
680 if (err) {
681 printf("Failed to update board information in FDT: %s\n",
682 fdt_strerror(err));
683 return CMD_RET_FAILURE;
684 }
Tom Rini84c0f692021-09-12 20:32:32 -0400685#ifdef CONFIG_ARCH_KEYSTONE
Nicholas Faustinie5fb7862018-10-03 12:58:48 +0200686 ft_board_setup_ex(working_fdt, gd->bd);
687#endif
Simon Glass406ba622014-10-23 18:58:48 -0600688 }
Gerald Van Baren5606a362007-06-25 23:25:28 -0400689#endif
Kim Phillipsbd9d1152007-07-17 13:57:04 -0500690 /* Create a chosen node */
Heiko Schocherfce16b92014-03-03 12:19:24 +0100691 else if (strncmp(argv[1], "cho", 3) == 0) {
Kumar Galafb5dcd52008-08-15 08:24:34 -0500692 unsigned long initrd_start = 0, initrd_end = 0;
693
Wolfgang Denk3b683112010-07-17 01:06:04 +0200694 if ((argc != 2) && (argc != 4))
Simon Glassa06dfc72011-12-10 08:44:01 +0000695 return CMD_RET_USAGE;
Kumar Galafb5dcd52008-08-15 08:24:34 -0500696
697 if (argc == 4) {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600698 initrd_start = hextoul(argv[2], NULL);
Sean Anderson86b6f472022-03-22 16:59:21 -0400699 initrd_end = initrd_start + hextoul(argv[3], NULL) - 1;
Kumar Galafb5dcd52008-08-15 08:24:34 -0500700 }
701
Masahiro Yamada451c2042014-04-18 17:41:00 +0900702 fdt_chosen(working_fdt);
Masahiro Yamada5b114892014-04-18 17:40:59 +0900703 fdt_initrd(working_fdt, initrd_start, initrd_end);
Heiko Schocherfce16b92014-03-03 12:19:24 +0100704
705#if defined(CONFIG_FIT_SIGNATURE)
706 } else if (strncmp(argv[1], "che", 3) == 0) {
707 int cfg_noffset;
708 int ret;
709 unsigned long addr;
710 struct fdt_header *blob;
711
712 if (!working_fdt)
713 return CMD_RET_FAILURE;
714
715 if (argc > 2) {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600716 addr = hextoul(argv[2], NULL);
Heiko Schocherfce16b92014-03-03 12:19:24 +0100717 blob = map_sysmem(addr, 0);
718 } else {
719 blob = (struct fdt_header *)gd->fdt_blob;
720 }
721 if (!fdt_valid(&blob))
722 return 1;
723
724 gd->fdt_blob = blob;
725 cfg_noffset = fit_conf_get_node(working_fdt, NULL);
726 if (!cfg_noffset) {
727 printf("Could not find configuration node: %s\n",
728 fdt_strerror(cfg_noffset));
729 return CMD_RET_FAILURE;
730 }
731
732 ret = fit_config_verify(working_fdt, cfg_noffset);
Simon Glass5da42d92014-06-12 07:24:45 -0600733 if (ret == 0)
Heiko Schocherfce16b92014-03-03 12:19:24 +0100734 return CMD_RET_SUCCESS;
735 else
736 return CMD_RET_FAILURE;
737#endif
738
Kumar Gala58911df2008-08-15 08:24:44 -0500739 }
Maxime Ripard5a680aa2016-07-05 10:26:45 +0200740#ifdef CONFIG_OF_LIBFDT_OVERLAY
741 /* apply an overlay */
742 else if (strncmp(argv[1], "ap", 2) == 0) {
743 unsigned long addr;
744 struct fdt_header *blob;
Stefan Agnerfed14d02016-12-20 15:58:45 +0100745 int ret;
Maxime Ripard5a680aa2016-07-05 10:26:45 +0200746
747 if (argc != 3)
748 return CMD_RET_USAGE;
749
750 if (!working_fdt)
751 return CMD_RET_FAILURE;
752
Simon Glass3ff49ec2021-07-24 09:03:29 -0600753 addr = hextoul(argv[2], NULL);
Maxime Ripard5a680aa2016-07-05 10:26:45 +0200754 blob = map_sysmem(addr, 0);
755 if (!fdt_valid(&blob))
756 return CMD_RET_FAILURE;
757
Pantelis Antonioud9456a42017-09-04 23:12:12 +0300758 /* apply method prints messages on error */
759 ret = fdt_overlay_apply_verbose(working_fdt, blob);
760 if (ret)
Maxime Ripard5a680aa2016-07-05 10:26:45 +0200761 return CMD_RET_FAILURE;
762 }
763#endif
Kumar Gala58911df2008-08-15 08:24:44 -0500764 /* resize the fdt */
765 else if (strncmp(argv[1], "re", 2) == 0) {
Hannes Schmelzerd3dbac82016-09-20 18:10:43 +0200766 uint extrasize;
767 if (argc > 2)
Simon Glass3ff49ec2021-07-24 09:03:29 -0600768 extrasize = hextoul(argv[2], NULL);
Hannes Schmelzerd3dbac82016-09-20 18:10:43 +0200769 else
770 extrasize = 0;
771 fdt_shrink_to_minimum(working_fdt, extrasize);
Kumar Gala58911df2008-08-15 08:24:44 -0500772 }
773 else {
Kim Phillipsbd9d1152007-07-17 13:57:04 -0500774 /* Unrecognized command */
Simon Glassa06dfc72011-12-10 08:44:01 +0000775 return CMD_RET_USAGE;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400776 }
777
778 return 0;
779}
780
Gerald Van Barene596a162007-05-16 22:39:59 -0400781/****************************************************************************/
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400782
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400783/*
Gerald Van Barene596a162007-05-16 22:39:59 -0400784 * Parse the user's input, partially heuristic. Valid formats:
Andy Fleming46891472008-03-31 20:45:56 -0500785 * <0x00112233 4 05> - an array of cells. Numbers follow standard
Wolfgang Denka1be4762008-05-20 16:00:29 +0200786 * C conventions.
Gerald Van Barene596a162007-05-16 22:39:59 -0400787 * [00 11 22 .. nn] - byte stream
788 * "string" - If the the value doesn't start with "<" or "[", it is
789 * treated as a string. Note that the quotes are
790 * stripped by the parser before we get the string.
Andy Fleming46891472008-03-31 20:45:56 -0500791 * newval: An array of strings containing the new property as specified
Wolfgang Denka1be4762008-05-20 16:00:29 +0200792 * on the command line
Andy Fleming46891472008-03-31 20:45:56 -0500793 * count: The number of strings in the array
794 * data: A bytestream to be placed in the property
795 * len: The length of the resulting bytestream
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400796 */
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200797static int fdt_parse_prop(char * const *newval, int count, char *data, int *len)
Gerald Van Barene596a162007-05-16 22:39:59 -0400798{
799 char *cp; /* temporary char pointer */
Andy Fleming46891472008-03-31 20:45:56 -0500800 char *newp; /* temporary newval char pointer */
Gerald Van Barene596a162007-05-16 22:39:59 -0400801 unsigned long tmp; /* holds converted values */
Andy Fleming46891472008-03-31 20:45:56 -0500802 int stridx = 0;
Gerald Van Barene596a162007-05-16 22:39:59 -0400803
Andy Fleming46891472008-03-31 20:45:56 -0500804 *len = 0;
805 newp = newval[0];
806
807 /* An array of cells */
808 if (*newp == '<') {
809 newp++;
810 while ((*newp != '>') && (stridx < count)) {
811 /*
812 * Keep searching until we find that last ">"
813 * That way users don't have to escape the spaces
814 */
815 if (*newp == '\0') {
816 newp = newval[++stridx];
817 continue;
818 }
819
820 cp = newp;
821 tmp = simple_strtoul(cp, &newp, 0);
Hannes Schmelzer98788612017-05-30 15:05:44 +0200822 if (*cp != '?')
823 *(fdt32_t *)data = cpu_to_fdt32(tmp);
824 else
825 newp++;
826
Andy Fleming46891472008-03-31 20:45:56 -0500827 data += 4;
828 *len += 4;
829
830 /* If the ptr didn't advance, something went wrong */
831 if ((newp - cp) <= 0) {
Gerald Van Barene596a162007-05-16 22:39:59 -0400832 printf("Sorry, I could not convert \"%s\"\n",
833 cp);
834 return 1;
835 }
Andy Fleming46891472008-03-31 20:45:56 -0500836
837 while (*newp == ' ')
838 newp++;
Gerald Van Barene596a162007-05-16 22:39:59 -0400839 }
Andy Fleming46891472008-03-31 20:45:56 -0500840
841 if (*newp != '>') {
842 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barene596a162007-05-16 22:39:59 -0400843 return 1;
844 }
Andy Fleming46891472008-03-31 20:45:56 -0500845 } else if (*newp == '[') {
Gerald Van Barene596a162007-05-16 22:39:59 -0400846 /*
847 * Byte stream. Convert the values.
848 */
Andy Fleming46891472008-03-31 20:45:56 -0500849 newp++;
Ken MacLeodd028afa2009-09-11 15:16:18 -0500850 while ((stridx < count) && (*newp != ']')) {
Andy Fleming46891472008-03-31 20:45:56 -0500851 while (*newp == ' ')
852 newp++;
Ken MacLeodd028afa2009-09-11 15:16:18 -0500853 if (*newp == '\0') {
Andy Fleming46891472008-03-31 20:45:56 -0500854 newp = newval[++stridx];
Ken MacLeodd028afa2009-09-11 15:16:18 -0500855 continue;
856 }
857 if (!isxdigit(*newp))
858 break;
Simon Glass3ff49ec2021-07-24 09:03:29 -0600859 tmp = hextoul(newp, &newp);
Ken MacLeodd028afa2009-09-11 15:16:18 -0500860 *data++ = tmp & 0xFF;
861 *len = *len + 1;
Gerald Van Barene596a162007-05-16 22:39:59 -0400862 }
Andy Fleming46891472008-03-31 20:45:56 -0500863 if (*newp != ']') {
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700864 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barene596a162007-05-16 22:39:59 -0400865 return 1;
866 }
867 } else {
868 /*
Ken MacLeodd028afa2009-09-11 15:16:18 -0500869 * Assume it is one or more strings. Copy it into our
870 * data area for convenience (including the
871 * terminating '\0's).
Gerald Van Barene596a162007-05-16 22:39:59 -0400872 */
Andy Fleming46891472008-03-31 20:45:56 -0500873 while (stridx < count) {
Ken MacLeodd028afa2009-09-11 15:16:18 -0500874 size_t length = strlen(newp) + 1;
Andy Fleming46891472008-03-31 20:45:56 -0500875 strcpy(data, newp);
Ken MacLeodd028afa2009-09-11 15:16:18 -0500876 data += length;
877 *len += length;
Andy Fleming46891472008-03-31 20:45:56 -0500878 newp = newval[++stridx];
879 }
Gerald Van Barene596a162007-05-16 22:39:59 -0400880 }
881 return 0;
882}
883
884/****************************************************************************/
885
886/*
887 * Heuristic to guess if this is a string or concatenated strings.
888 */
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400889
890static int is_printable_string(const void *data, int len)
891{
892 const char *s = data;
Marek Vasut4edae852023-03-02 04:08:14 +0100893 const char *ss, *se;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400894
895 /* zero length is not */
896 if (len == 0)
897 return 0;
898
Marek Vasut4edae852023-03-02 04:08:14 +0100899 /* must terminate with zero */
900 if (s[len - 1] != '\0')
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400901 return 0;
902
Marek Vasut4edae852023-03-02 04:08:14 +0100903 se = s + len;
904
905 while (s < se) {
906 ss = s;
907 while (s < se && *s && isprint((unsigned char)*s))
908 s++;
909
910 /* not zero, or not done yet */
911 if (*s != '\0' || s == ss)
912 return 0;
913
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400914 s++;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400915 }
916
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400917 return 1;
918}
919
Gerald Van Barene596a162007-05-16 22:39:59 -0400920/*
921 * Print the property in the best format, a heuristic guess. Print as
922 * a string, concatenated strings, a byte, word, double word, or (if all
923 * else fails) it is printed as a stream of bytes.
924 */
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400925static void print_data(const void *data, int len)
926{
927 int j;
Heinrich Schuchardt1a5f58d2020-06-19 19:45:55 +0200928 const char *env_max_dump;
929 ulong max_dump = ULONG_MAX;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400930
931 /* no data, don't print */
932 if (len == 0)
933 return;
934
Heinrich Schuchardt1a5f58d2020-06-19 19:45:55 +0200935 env_max_dump = env_get("fdt_max_dump");
936 if (env_max_dump)
Simon Glass3ff49ec2021-07-24 09:03:29 -0600937 max_dump = hextoul(env_max_dump, NULL);
Heinrich Schuchardt1a5f58d2020-06-19 19:45:55 +0200938
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400939 /*
940 * It is a string, but it may have multiple strings (embedded '\0's).
941 */
942 if (is_printable_string(data, len)) {
943 puts("\"");
944 j = 0;
945 while (j < len) {
946 if (j > 0)
947 puts("\", \"");
948 puts(data);
949 j += strlen(data) + 1;
950 data += strlen(data) + 1;
951 }
952 puts("\"");
953 return;
954 }
955
Andy Fleming46891472008-03-31 20:45:56 -0500956 if ((len %4) == 0) {
Heinrich Schuchardt1a5f58d2020-06-19 19:45:55 +0200957 if (len > max_dump)
Tom Rini1db8b532012-10-29 14:53:18 +0000958 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf72c6922012-08-17 10:34:36 +0000959 else {
Kim Phillipsdc00a682012-10-29 13:34:31 +0000960 const __be32 *p;
Andy Fleming46891472008-03-31 20:45:56 -0500961
Joe Hershbergerf72c6922012-08-17 10:34:36 +0000962 printf("<");
963 for (j = 0, p = data; j < len/4; j++)
964 printf("0x%08x%s", fdt32_to_cpu(p[j]),
965 j < (len/4 - 1) ? " " : "");
966 printf(">");
967 }
Andy Fleming46891472008-03-31 20:45:56 -0500968 } else { /* anything else... hexdump */
Heinrich Schuchardt1a5f58d2020-06-19 19:45:55 +0200969 if (len > max_dump)
Tom Rini1db8b532012-10-29 14:53:18 +0000970 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf72c6922012-08-17 10:34:36 +0000971 else {
972 const u8 *s;
Andy Fleming46891472008-03-31 20:45:56 -0500973
Joe Hershbergerf72c6922012-08-17 10:34:36 +0000974 printf("[");
975 for (j = 0, s = data; j < len; j++)
976 printf("%02x%s", s[j], j < len - 1 ? " " : "");
977 printf("]");
978 }
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400979 }
Gerald Van Barene596a162007-05-16 22:39:59 -0400980}
981
982/****************************************************************************/
983
984/*
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500985 * Recursively print (a portion of) the working_fdt. The depth parameter
Gerald Van Barene596a162007-05-16 22:39:59 -0400986 * determines how deeply nested the fdt is printed.
987 */
Kumar Gala1e386af2007-11-21 14:07:46 -0600988static int fdt_print(const char *pathp, char *prop, int depth)
Gerald Van Barene596a162007-05-16 22:39:59 -0400989{
Gerald Van Barene596a162007-05-16 22:39:59 -0400990 static char tabs[MAX_LEVEL+1] =
991 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
992 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
Kumar Gala1e386af2007-11-21 14:07:46 -0600993 const void *nodep; /* property node pointer */
Gerald Van Barene596a162007-05-16 22:39:59 -0400994 int nodeoffset; /* node offset from libfdt */
995 int nextoffset; /* next node offset from libfdt */
996 uint32_t tag; /* tag */
997 int len; /* length of the property */
998 int level = 0; /* keep track of nesting level */
Gerald Van Bareneb999ee2007-11-22 17:23:23 -0500999 const struct fdt_property *fdt_prop;
Gerald Van Barene596a162007-05-16 22:39:59 -04001000
Kim Phillipsf3a42e22008-06-10 11:06:17 -05001001 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Barene596a162007-05-16 22:39:59 -04001002 if (nodeoffset < 0) {
1003 /*
1004 * Not found or something else bad happened.
1005 */
Kumar Galac8ab7052007-10-24 11:04:22 -05001006 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren1178d6a2007-05-21 23:27:16 -04001007 fdt_strerror(nodeoffset));
Gerald Van Barene596a162007-05-16 22:39:59 -04001008 return 1;
1009 }
1010 /*
1011 * The user passed in a property as well as node path.
1012 * Print only the given property and then return.
1013 */
1014 if (prop) {
Kim Phillipsf3a42e22008-06-10 11:06:17 -05001015 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
Gerald Van Barene596a162007-05-16 22:39:59 -04001016 if (len == 0) {
1017 /* no property value */
1018 printf("%s %s\n", pathp, prop);
1019 return 0;
Simon Glass4bc73ef2017-06-07 10:28:42 -06001020 } else if (nodep && len > 0) {
Gerald Van Barenfc1a1092007-11-23 19:43:20 -05001021 printf("%s = ", prop);
Gerald Van Barene596a162007-05-16 22:39:59 -04001022 print_data (nodep, len);
1023 printf("\n");
1024 return 0;
1025 } else {
1026 printf ("libfdt fdt_getprop(): %s\n",
1027 fdt_strerror(len));
1028 return 1;
1029 }
1030 }
1031
1032 /*
1033 * The user passed in a node path and no property,
1034 * print the node and all subnodes.
1035 */
Gerald Van Barene596a162007-05-16 22:39:59 -04001036 while(level >= 0) {
Kim Phillipsf3a42e22008-06-10 11:06:17 -05001037 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
Gerald Van Barene596a162007-05-16 22:39:59 -04001038 switch(tag) {
1039 case FDT_BEGIN_NODE:
Kim Phillipsf3a42e22008-06-10 11:06:17 -05001040 pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001041 if (level <= depth) {
1042 if (pathp == NULL)
1043 pathp = "/* NULL pointer error */";
1044 if (*pathp == '\0')
1045 pathp = "/"; /* root is nameless */
Gerald Van Barene596a162007-05-16 22:39:59 -04001046 printf("%s%s {\n",
1047 &tabs[MAX_LEVEL - level], pathp);
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001048 }
Gerald Van Barene596a162007-05-16 22:39:59 -04001049 level++;
Gerald Van Barene596a162007-05-16 22:39:59 -04001050 if (level >= MAX_LEVEL) {
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001051 printf("Nested too deep, aborting.\n");
Gerald Van Barene596a162007-05-16 22:39:59 -04001052 return 1;
1053 }
1054 break;
1055 case FDT_END_NODE:
1056 level--;
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001057 if (level <= depth)
Gerald Van Barene596a162007-05-16 22:39:59 -04001058 printf("%s};\n", &tabs[MAX_LEVEL - level]);
1059 if (level == 0) {
1060 level = -1; /* exit the loop */
1061 }
1062 break;
1063 case FDT_PROP:
Kim Phillipsf3a42e22008-06-10 11:06:17 -05001064 fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001065 sizeof(*fdt_prop));
Kim Phillipsf3a42e22008-06-10 11:06:17 -05001066 pathp = fdt_string(working_fdt,
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001067 fdt32_to_cpu(fdt_prop->nameoff));
1068 len = fdt32_to_cpu(fdt_prop->len);
1069 nodep = fdt_prop->data;
Gerald Van Barene596a162007-05-16 22:39:59 -04001070 if (len < 0) {
1071 printf ("libfdt fdt_getprop(): %s\n",
1072 fdt_strerror(len));
1073 return 1;
1074 } else if (len == 0) {
1075 /* the property has no value */
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001076 if (level <= depth)
Gerald Van Barene596a162007-05-16 22:39:59 -04001077 printf("%s%s;\n",
1078 &tabs[MAX_LEVEL - level],
1079 pathp);
1080 } else {
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001081 if (level <= depth) {
Gerald Van Barenfc1a1092007-11-23 19:43:20 -05001082 printf("%s%s = ",
Gerald Van Barene596a162007-05-16 22:39:59 -04001083 &tabs[MAX_LEVEL - level],
1084 pathp);
1085 print_data (nodep, len);
1086 printf(";\n");
1087 }
1088 }
1089 break;
1090 case FDT_NOP:
Andrew Klossnere4ad4542008-07-07 06:41:14 -07001091 printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
Gerald Van Barene596a162007-05-16 22:39:59 -04001092 break;
1093 case FDT_END:
1094 return 1;
1095 default:
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001096 if (level <= depth)
Gerald Van Barene596a162007-05-16 22:39:59 -04001097 printf("Unknown tag 0x%08X\n", tag);
1098 return 1;
1099 }
1100 nodeoffset = nextoffset;
1101 }
1102 return 0;
Gerald Van Barenade8ef42007-03-31 12:22:10 -04001103}
Gerald Van Barenade8ef42007-03-31 12:22:10 -04001104
1105/********************************************************************/
Kim Phillipsdc00a682012-10-29 13:34:31 +00001106#ifdef CONFIG_SYS_LONGHELP
1107static char fdt_help_text[] =
Heinrich Schuchardt9696dbb2022-04-25 18:35:05 +02001108 "addr [-c] [-q] <addr> [<size>] - Set the [control] fdt location to <addr>\n"
Maxime Ripard5a680aa2016-07-05 10:26:45 +02001109#ifdef CONFIG_OF_LIBFDT_OVERLAY
1110 "fdt apply <addr> - Apply overlay to the DT\n"
1111#endif
Gerald Van Baren5606a362007-06-25 23:25:28 -04001112#ifdef CONFIG_OF_BOARD_SETUP
1113 "fdt boardsetup - Do board-specific set up\n"
1114#endif
Simon Glass6c0be912014-10-23 18:58:54 -06001115#ifdef CONFIG_OF_SYSTEM_SETUP
1116 "fdt systemsetup - Do system-specific set up\n"
1117#endif
Gerald Van Baren7655c092008-01-05 15:33:29 -05001118 "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n"
Hannes Schmelzerd3dbac82016-09-20 18:10:43 +02001119 "fdt resize [<extrasize>] - Resize fdt to size + padding to 4k addr + some optional <extrasize> if needed\n"
Gerald Van Barenade8ef42007-03-31 12:22:10 -04001120 "fdt print <path> [<prop>] - Recursive print starting at <path>\n"
1121 "fdt list <path> [<prop>] - Print one level starting at <path>\n"
Marek Vasut0282f9f2022-07-08 23:50:43 +02001122 "fdt get value <var> <path> <prop> [<index>] - Get <property> and store in <var>\n"
1123 " In case of stringlist property, use optional <index>\n"
1124 " to select string within the stringlist. Default is 0.\n"
Joe Hershbergerfc5abf02012-08-17 10:34:37 +00001125 "fdt get name <var> <path> <index> - Get name of node <index> and store in <var>\n"
1126 "fdt get addr <var> <path> <prop> - Get start address of <property> and store in <var>\n"
1127 "fdt get size <var> <path> [<prop>] - Get size of [<property>] or num nodes and store in <var>\n"
Gerald Van Barenade8ef42007-03-31 12:22:10 -04001128 "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n"
1129 "fdt mknode <path> <node> - Create a new node after <path>\n"
1130 "fdt rm <path> [<prop>] - Delete the node or <property>\n"
Heiko Schocherfefc7ee2018-11-15 06:06:06 +01001131 "fdt header [get <var> <member>] - Display header info\n"
1132 " get - get header member <member> and store it in <var>\n"
Kumar Galab79da7b2008-02-15 03:34:36 -06001133 "fdt bootcpu <id> - Set boot cpuid\n"
1134 "fdt memory <addr> <size> - Add/Update memory node\n"
1135 "fdt rsvmem print - Show current mem reserves\n"
1136 "fdt rsvmem add <addr> <size> - Add a mem reserve\n"
1137 "fdt rsvmem delete <index> - Delete a mem reserves\n"
Sean Anderson86b6f472022-03-22 16:59:21 -04001138 "fdt chosen [<start> <size>] - Add/update the /chosen branch in the tree\n"
1139 " <start>/<size> - initrd start addr/size\n"
Heiko Schocherfce16b92014-03-03 12:19:24 +01001140#if defined(CONFIG_FIT_SIGNATURE)
1141 "fdt checksign [<addr>] - check FIT signature\n"
Marek Vasut5370e242023-03-02 04:08:20 +01001142 " <addr> - address of key blob\n"
1143 " default gd->fdt_blob\n"
Heiko Schocherfce16b92014-03-03 12:19:24 +01001144#endif
Robert P. J. Day8c60f922016-05-04 04:47:31 -04001145 "NOTE: Dereference aliases by omitting the leading '/', "
Kim Phillipsdc00a682012-10-29 13:34:31 +00001146 "e.g. fdt print ethernet0.";
1147#endif
1148
1149U_BOOT_CMD(
1150 fdt, 255, 0, do_fdt,
1151 "flattened device tree utility commands", fdt_help_text
Gerald Van Barenade8ef42007-03-31 12:22:10 -04001152);