blob: 87d9a38507577fcd2214316b544af7cbcb295005 [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);
Marek Vasuteeaae332023-03-02 04:08:23 +010080 } else if (len % 4 == 0 && index >= 0) {
81 /* Needed to print integer arrays. */
82 const unsigned int *nodec = (const unsigned int *)nodep;
83 char buf[11];
84
85 if (index * 4 >= len)
86 return 1;
87
88 sprintf(buf, "0x%08X", fdt32_to_cpu(*(nodec + index)));
89 env_set(var, buf);
90 } else if (len % 4 == 0 && len <= 20) {
Joe Hershbergerfc5abf02012-08-17 10:34:37 +000091 /* Needed to print things like sha1 hashes. */
92 char buf[41];
93 int i;
94
95 for (i = 0; i < len; i += sizeof(unsigned int))
96 sprintf(buf + (i * 2), "%08x",
97 *(unsigned int *)(nodep + i));
Simon Glass6a38e412017-08-03 12:22:09 -060098 env_set(var, buf);
Joe Hershbergerfc5abf02012-08-17 10:34:37 +000099 } else {
100 printf("error: unprintable value\n");
101 return 1;
102 }
103 return 0;
104}
105
Heiko Schocherfefc7ee2018-11-15 06:06:06 +0100106static const char * const fdt_member_table[] = {
107 "magic",
108 "totalsize",
109 "off_dt_struct",
110 "off_dt_strings",
111 "off_mem_rsvmap",
112 "version",
113 "last_comp_version",
114 "boot_cpuid_phys",
115 "size_dt_strings",
116 "size_dt_struct",
117};
118
Simon Glassed38aef2020-05-10 11:40:03 -0600119static int fdt_get_header_value(int argc, char *const argv[])
Heiko Schocherfefc7ee2018-11-15 06:06:06 +0100120{
121 fdt32_t *fdtp = (fdt32_t *)working_fdt;
122 ulong val;
123 int i;
124
125 if (argv[2][0] != 'g')
126 return CMD_RET_FAILURE;
127
128 for (i = 0; i < ARRAY_SIZE(fdt_member_table); i++) {
129 if (strcmp(fdt_member_table[i], argv[4]))
130 continue;
131
132 val = fdt32_to_cpu(fdtp[i]);
133 env_set_hex(argv[3], val);
134 return CMD_RET_SUCCESS;
135 }
136
137 return CMD_RET_FAILURE;
138}
139
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000140/*
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400141 * Flattened Device Tree command, see the help for parameter definitions.
142 */
Simon Glassed38aef2020-05-10 11:40:03 -0600143static int do_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400144{
Wolfgang Denk3b683112010-07-17 01:06:04 +0200145 if (argc < 2)
Simon Glassa06dfc72011-12-10 08:44:01 +0000146 return CMD_RET_USAGE;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400147
Simon Glasse4647a12021-07-21 14:55:25 -0600148 /* fdt addr: Set the address of the fdt */
Maxime Ripard09caa012016-07-05 10:26:34 +0200149 if (strncmp(argv[1], "ad", 2) == 0) {
Kumar Gala9f4e7e42008-08-15 08:24:39 -0500150 unsigned long addr;
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000151 int control = 0;
Peter Hoyesfbbaa592022-03-31 11:53:22 +0100152 int quiet = 0;
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000153 struct fdt_header *blob;
Simon Glasse4647a12021-07-21 14:55:25 -0600154
155 /* Set the address [and length] of the fdt */
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000156 argc -= 2;
157 argv += 2;
Peter Hoyesfbbaa592022-03-31 11:53:22 +0100158 while (argc > 0 && **argv == '-') {
159 char *arg = *argv;
160
161 while (*++arg) {
162 switch (*arg) {
163 case 'c':
164 control = 1;
165 break;
166 case 'q':
167 quiet = 1;
168 break;
169 default:
170 return CMD_RET_USAGE;
171 }
172 }
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000173 argc--;
174 argv++;
175 }
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000176 if (argc == 0) {
177 if (control)
178 blob = (struct fdt_header *)gd->fdt_blob;
179 else
180 blob = working_fdt;
181 if (!blob || !fdt_valid(&blob))
Kumar Gala708a18b2008-08-15 08:24:35 -0500182 return 1;
Simon Glasseedc9222021-07-21 14:55:26 -0600183 printf("%s fdt: %08lx\n",
184 control ? "Control" : "Working",
Joe Hershberger6256dcc2015-02-04 21:56:54 -0600185 control ? (ulong)map_to_sysmem(blob) :
Simon Glasseedc9222021-07-21 14:55:26 -0600186 env_get_hex("fdtaddr", 0));
Kumar Gala708a18b2008-08-15 08:24:35 -0500187 return 0;
188 }
189
Simon Glass3ff49ec2021-07-24 09:03:29 -0600190 addr = hextoul(argv[0], NULL);
Simon Glassb7fc7102013-04-20 08:42:45 +0000191 blob = map_sysmem(addr, 0);
Peter Hoyesfbbaa592022-03-31 11:53:22 +0100192 if ((quiet && fdt_check_header(blob)) ||
193 (!quiet && !fdt_valid(&blob)))
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400194 return 1;
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000195 if (control)
196 gd->fdt_blob = blob;
197 else
Joe Hershberger3d4ea4c2015-02-04 21:56:53 -0600198 set_working_fdt_addr(addr);
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400199
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000200 if (argc >= 2) {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400201 int len;
202 int err;
Simon Glasse4647a12021-07-21 14:55:25 -0600203
204 /* Optional new length */
Simon Glass3ff49ec2021-07-24 09:03:29 -0600205 len = hextoul(argv[1], NULL);
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000206 if (len < fdt_totalsize(blob)) {
Peter Hoyesfbbaa592022-03-31 11:53:22 +0100207 if (!quiet)
208 printf("New length %d < existing length %d, ignoring\n",
209 len, fdt_totalsize(blob));
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400210 } else {
Simon Glasse4647a12021-07-21 14:55:25 -0600211 /* Open in place with a new length */
Simon Glass0bfc4cc2013-04-20 08:42:44 +0000212 err = fdt_open_into(blob, blob, len);
Peter Hoyesfbbaa592022-03-31 11:53:22 +0100213 if (!quiet && err != 0) {
Simon Glasse4647a12021-07-21 14:55:25 -0600214 printf("libfdt fdt_open_into(): %s\n",
215 fdt_strerror(err));
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400216 }
217 }
218 }
219
Marek Vasutaeccfee2012-09-05 08:34:44 +0200220 return CMD_RET_SUCCESS;
Marek Vasutaeccfee2012-09-05 08:34:44 +0200221
Wolfgang Denk3b683112010-07-17 01:06:04 +0200222 /*
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500223 * Move the working_fdt
Wolfgang Denk3b683112010-07-17 01:06:04 +0200224 */
Andre Przywarae9049942023-02-10 11:02:12 +0000225 } else if (strncmp(argv[1], "mo", 2) == 0) {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400226 struct fdt_header *newaddr;
227 int len;
228 int err;
229
Wolfgang Denk3b683112010-07-17 01:06:04 +0200230 if (argc < 4)
Simon Glassa06dfc72011-12-10 08:44:01 +0000231 return CMD_RET_USAGE;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400232
233 /*
234 * Set the address and length of the fdt.
235 */
Andre Przywaraa906f872023-02-10 11:02:11 +0000236 working_fdt = map_sysmem(hextoul(argv[2], NULL), 0);
Simon Glass546b9a32013-04-20 08:42:42 +0000237 if (!fdt_valid(&working_fdt))
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400238 return 1;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400239
Andre Przywaraa906f872023-02-10 11:02:11 +0000240 newaddr = map_sysmem(hextoul(argv[3], NULL), 0);
Gerald Van Baren4d223922007-04-25 22:47:15 -0400241
242 /*
243 * If the user specifies a length, use that. Otherwise use the
244 * current length.
245 */
246 if (argc <= 4) {
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500247 len = fdt_totalsize(working_fdt);
Gerald Van Baren4d223922007-04-25 22:47:15 -0400248 } else {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600249 len = hextoul(argv[4], NULL);
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500250 if (len < fdt_totalsize(working_fdt)) {
Gerald Van Barene596a162007-05-16 22:39:59 -0400251 printf ("New length 0x%X < existing length "
252 "0x%X, aborting.\n",
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500253 len, fdt_totalsize(working_fdt));
Gerald Van Baren4d223922007-04-25 22:47:15 -0400254 return 1;
255 }
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400256 }
257
258 /*
259 * Copy to the new location.
260 */
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500261 err = fdt_open_into(working_fdt, newaddr, len);
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400262 if (err != 0) {
Gerald Van Barene596a162007-05-16 22:39:59 -0400263 printf ("libfdt fdt_open_into(): %s\n",
264 fdt_strerror(err));
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400265 return 1;
266 }
Andre Przywaraa906f872023-02-10 11:02:11 +0000267 set_working_fdt_addr(map_to_sysmem(newaddr));
Andre Przywarae9049942023-02-10 11:02:12 +0000268
269 return CMD_RET_SUCCESS;
270 }
271
272 if (!working_fdt) {
273 puts("No FDT memory address configured. Please configure\n"
274 "the FDT address via \"fdt addr <address>\" command.\n"
275 "Aborting!\n");
276 return CMD_RET_FAILURE;
277 }
278
Fabien Parenta0559ac2016-11-24 15:02:18 +0100279#ifdef CONFIG_OF_SYSTEM_SETUP
280 /* Call the board-specific fixup routine */
Andre Przywarae9049942023-02-10 11:02:12 +0000281 if (strncmp(argv[1], "sys", 3) == 0) {
Fabien Parenta0559ac2016-11-24 15:02:18 +0100282 int err = ft_system_setup(working_fdt, gd->bd);
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400283
Fabien Parenta0559ac2016-11-24 15:02:18 +0100284 if (err) {
285 printf("Failed to add system information to FDT: %s\n",
286 fdt_strerror(err));
287 return CMD_RET_FAILURE;
288 }
Andre Przywarae9049942023-02-10 11:02:12 +0000289
290 return CMD_RET_SUCCESS;
291 }
Fabien Parenta0559ac2016-11-24 15:02:18 +0100292#endif
Wolfgang Denk3b683112010-07-17 01:06:04 +0200293 /*
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400294 * Make a new node
Wolfgang Denk3b683112010-07-17 01:06:04 +0200295 */
Andre Przywarae9049942023-02-10 11:02:12 +0000296 if (strncmp(argv[1], "mk", 2) == 0) {
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400297 char *pathp; /* path */
298 char *nodep; /* new node to add */
299 int nodeoffset; /* node offset from libfdt */
300 int err;
301
302 /*
303 * Parameters: Node path, new node to be appended to the path.
304 */
Wolfgang Denk3b683112010-07-17 01:06:04 +0200305 if (argc < 4)
Simon Glassa06dfc72011-12-10 08:44:01 +0000306 return CMD_RET_USAGE;
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400307
308 pathp = argv[2];
309 nodep = argv[3];
310
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500311 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400312 if (nodeoffset < 0) {
313 /*
314 * Not found or something else bad happened.
315 */
Kumar Galac8ab7052007-10-24 11:04:22 -0500316 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren1178d6a2007-05-21 23:27:16 -0400317 fdt_strerror(nodeoffset));
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400318 return 1;
319 }
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500320 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400321 if (err < 0) {
Gerald Van Barene596a162007-05-16 22:39:59 -0400322 printf ("libfdt fdt_add_subnode(): %s\n",
323 fdt_strerror(err));
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400324 return 1;
325 }
326
Wolfgang Denk3b683112010-07-17 01:06:04 +0200327 /*
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500328 * Set the value of a property in the working_fdt.
Wolfgang Denk3b683112010-07-17 01:06:04 +0200329 */
Tom Warrend2c6dc82020-03-26 15:20:44 -0700330 } else if (strncmp(argv[1], "se", 2) == 0) {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400331 char *pathp; /* path */
Gerald Van Barene596a162007-05-16 22:39:59 -0400332 char *prop; /* property */
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400333 int nodeoffset; /* node offset from libfdt */
Bernhard Messerklinger9b2664f2017-09-28 11:29:52 +0200334 static char data[SCRATCHPAD] __aligned(4);/* property storage */
Hannes Schmelzer98788612017-05-30 15:05:44 +0200335 const void *ptmp;
Gerald Van Barene596a162007-05-16 22:39:59 -0400336 int len; /* new length of the property */
337 int ret; /* return value */
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400338
339 /*
Gerald Van Barend91383a2008-01-05 14:52:04 -0500340 * Parameters: Node path, property, optional value.
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400341 */
Wolfgang Denk3b683112010-07-17 01:06:04 +0200342 if (argc < 4)
Simon Glassa06dfc72011-12-10 08:44:01 +0000343 return CMD_RET_USAGE;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400344
345 pathp = argv[2];
346 prop = argv[3];
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400347
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500348 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400349 if (nodeoffset < 0) {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400350 /*
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400351 * Not found or something else bad happened.
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400352 */
Kumar Galac8ab7052007-10-24 11:04:22 -0500353 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren1178d6a2007-05-21 23:27:16 -0400354 fdt_strerror(nodeoffset));
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400355 return 1;
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400356 }
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400357
Hannes Schmelzer98788612017-05-30 15:05:44 +0200358 if (argc == 4) {
359 len = 0;
360 } else {
361 ptmp = fdt_getprop(working_fdt, nodeoffset, prop, &len);
362 if (len > SCRATCHPAD) {
363 printf("prop (%d) doesn't fit in scratchpad!\n",
364 len);
365 return 1;
366 }
Hannes Schmelzera99c0522017-08-18 14:41:14 +0200367 if (ptmp != NULL)
368 memcpy(data, ptmp, len);
369
Hannes Schmelzer98788612017-05-30 15:05:44 +0200370 ret = fdt_parse_prop(&argv[4], argc - 4, data, &len);
371 if (ret != 0)
372 return ret;
373 }
374
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500375 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400376 if (ret < 0) {
377 printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
378 return 1;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400379 }
380
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000381 /********************************************************************
382 * Get the value of a property in the working_fdt.
383 ********************************************************************/
384 } else if (argv[1][0] == 'g') {
385 char *subcmd; /* sub-command */
386 char *pathp; /* path */
387 char *prop; /* property */
388 char *var; /* variable to store result */
389 int nodeoffset; /* node offset from libfdt */
390 const void *nodep; /* property node pointer */
391 int len = 0; /* new length of the property */
392
393 /*
394 * Parameters: Node path, property, optional value.
395 */
396 if (argc < 5)
397 return CMD_RET_USAGE;
398
399 subcmd = argv[2];
400
401 if (argc < 6 && subcmd[0] != 's')
402 return CMD_RET_USAGE;
403
404 var = argv[3];
405 pathp = argv[4];
406 prop = argv[5];
407
408 nodeoffset = fdt_path_offset(working_fdt, pathp);
409 if (nodeoffset < 0) {
410 /*
411 * Not found or something else bad happened.
412 */
413 printf("libfdt fdt_path_offset() returned %s\n",
414 fdt_strerror(nodeoffset));
415 return 1;
416 }
417
418 if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600419 int req_index = -1;
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000420 int startDepth = fdt_node_depth(
421 working_fdt, nodeoffset);
422 int curDepth = startDepth;
Simon Glass3ff49ec2021-07-24 09:03:29 -0600423 int cur_index = -1;
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000424 int nextNodeOffset = fdt_next_node(
425 working_fdt, nodeoffset, &curDepth);
426
427 if (subcmd[0] == 'n')
Simon Glass3ff49ec2021-07-24 09:03:29 -0600428 req_index = hextoul(argv[5], NULL);
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000429
430 while (curDepth > startDepth) {
431 if (curDepth == startDepth + 1)
Simon Glass3ff49ec2021-07-24 09:03:29 -0600432 cur_index++;
433 if (subcmd[0] == 'n' &&
434 cur_index == req_index) {
Simon Glass6a38e412017-08-03 12:22:09 -0600435 const char *node_name;
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000436
Simon Glass6a38e412017-08-03 12:22:09 -0600437 node_name = fdt_get_name(working_fdt,
438 nextNodeOffset,
439 NULL);
440 env_set(var, node_name);
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000441 return 0;
442 }
443 nextNodeOffset = fdt_next_node(
444 working_fdt, nextNodeOffset, &curDepth);
445 if (nextNodeOffset < 0)
446 break;
447 }
448 if (subcmd[0] == 's') {
449 /* get the num nodes at this level */
Simon Glass3ff49ec2021-07-24 09:03:29 -0600450 env_set_ulong(var, cur_index + 1);
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000451 } else {
452 /* node index not found */
453 printf("libfdt node not found\n");
454 return 1;
455 }
456 } else {
457 nodep = fdt_getprop(
458 working_fdt, nodeoffset, prop, &len);
Marek Vasut5c385f82023-03-02 04:08:15 +0100459 if (nodep && len >= 0) {
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000460 if (subcmd[0] == 'v') {
Marek Vasuteeaae332023-03-02 04:08:23 +0100461 int index = -1;
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000462 int ret;
463
Marek Vasut5c385f82023-03-02 04:08:15 +0100464 if (len == 0) {
465 /* no property value */
466 env_set(var, "");
467 return 0;
468 }
469
Marek Vasut0282f9f2022-07-08 23:50:43 +0200470 if (argc == 7)
471 index = simple_strtoul(argv[6], NULL, 10);
472
Simon Glass6a38e412017-08-03 12:22:09 -0600473 ret = fdt_value_env_set(nodep, len,
Marek Vasut0282f9f2022-07-08 23:50:43 +0200474 var, index);
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000475 if (ret != 0)
476 return ret;
477 } else if (subcmd[0] == 'a') {
Marek Vasutf7039672023-03-11 17:29:21 +0100478 env_set_hex(var, (ulong)map_to_sysmem(nodep));
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000479 } else if (subcmd[0] == 's') {
Marek Vasutf7039672023-03-11 17:29:21 +0100480 env_set_hex(var, len);
Joe Hershbergerfc5abf02012-08-17 10:34:37 +0000481 } else
482 return CMD_RET_USAGE;
483 return 0;
484 } else {
485 printf("libfdt fdt_getprop(): %s\n",
486 fdt_strerror(len));
487 return 1;
488 }
489 }
490
Wolfgang Denk3b683112010-07-17 01:06:04 +0200491 /*
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400492 * Print (recursive) / List (single level)
Wolfgang Denk3b683112010-07-17 01:06:04 +0200493 */
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400494 } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400495 int depth = MAX_LEVEL; /* how deep to print */
496 char *pathp; /* path */
Gerald Van Barene596a162007-05-16 22:39:59 -0400497 char *prop; /* property */
498 int ret; /* return value */
Kumar Gala51ab7f92007-10-25 16:15:07 -0500499 static char root[2] = "/";
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400500
501 /*
502 * list is an alias for print, but limited to 1 level
503 */
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400504 if (argv[1][0] == 'l') {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400505 depth = 1;
506 }
507
508 /*
509 * Get the starting path. The root node is an oddball,
510 * the offset is zero and has no name.
511 */
Kumar Gala51ab7f92007-10-25 16:15:07 -0500512 if (argc == 2)
513 pathp = root;
514 else
515 pathp = argv[2];
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400516 if (argc > 3)
517 prop = argv[3];
518 else
519 prop = NULL;
520
Gerald Van Barene596a162007-05-16 22:39:59 -0400521 ret = fdt_print(pathp, prop, depth);
522 if (ret != 0)
523 return ret;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400524
Wolfgang Denk3b683112010-07-17 01:06:04 +0200525 /*
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400526 * Remove a property/node
Wolfgang Denk3b683112010-07-17 01:06:04 +0200527 */
Gerald Van Baren3b9d6292008-06-09 21:02:17 -0400528 } else if (strncmp(argv[1], "rm", 2) == 0) {
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400529 int nodeoffset; /* node offset from libfdt */
530 int err;
531
532 /*
533 * Get the path. The root node is an oddball, the offset
534 * is zero and has no name.
535 */
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500536 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400537 if (nodeoffset < 0) {
538 /*
539 * Not found or something else bad happened.
540 */
Kumar Galac8ab7052007-10-24 11:04:22 -0500541 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren1178d6a2007-05-21 23:27:16 -0400542 fdt_strerror(nodeoffset));
Gerald Van Baren0ea55d22007-05-12 09:47:25 -0400543 return 1;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400544 }
545 /*
546 * Do the delete. A fourth parameter means delete a property,
547 * otherwise delete the node.
548 */
549 if (argc > 3) {
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500550 err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400551 if (err < 0) {
Marek Vasuta7a58872023-03-02 04:08:16 +0100552 printf("libfdt fdt_delprop(): %s\n",
Gerald Van Barene596a162007-05-16 22:39:59 -0400553 fdt_strerror(err));
Marek Vasuta7a58872023-03-02 04:08:16 +0100554 return CMD_RET_FAILURE;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400555 }
556 } else {
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500557 err = fdt_del_node(working_fdt, nodeoffset);
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400558 if (err < 0) {
Marek Vasuta7a58872023-03-02 04:08:16 +0100559 printf("libfdt fdt_del_node(): %s\n",
Gerald Van Barene596a162007-05-16 22:39:59 -0400560 fdt_strerror(err));
Marek Vasuta7a58872023-03-02 04:08:16 +0100561 return CMD_RET_FAILURE;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400562 }
563 }
Kumar Galab79da7b2008-02-15 03:34:36 -0600564
Wolfgang Denk3b683112010-07-17 01:06:04 +0200565 /*
Kumar Galab79da7b2008-02-15 03:34:36 -0600566 * Display header info
Wolfgang Denk3b683112010-07-17 01:06:04 +0200567 */
Kumar Galab79da7b2008-02-15 03:34:36 -0600568 } else if (argv[1][0] == 'h') {
Heiko Schocherfefc7ee2018-11-15 06:06:06 +0100569 if (argc == 5)
570 return fdt_get_header_value(argc, argv);
571
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500572 u32 version = fdt_version(working_fdt);
573 printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt));
574 printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt),
575 fdt_totalsize(working_fdt));
576 printf("off_dt_struct:\t\t0x%x\n",
577 fdt_off_dt_struct(working_fdt));
578 printf("off_dt_strings:\t\t0x%x\n",
579 fdt_off_dt_strings(working_fdt));
580 printf("off_mem_rsvmap:\t\t0x%x\n",
581 fdt_off_mem_rsvmap(working_fdt));
Kumar Galab79da7b2008-02-15 03:34:36 -0600582 printf("version:\t\t%d\n", version);
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500583 printf("last_comp_version:\t%d\n",
584 fdt_last_comp_version(working_fdt));
Kumar Galab79da7b2008-02-15 03:34:36 -0600585 if (version >= 2)
586 printf("boot_cpuid_phys:\t0x%x\n",
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500587 fdt_boot_cpuid_phys(working_fdt));
Kumar Galab79da7b2008-02-15 03:34:36 -0600588 if (version >= 3)
589 printf("size_dt_strings:\t0x%x\n",
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500590 fdt_size_dt_strings(working_fdt));
Kumar Galab79da7b2008-02-15 03:34:36 -0600591 if (version >= 17)
592 printf("size_dt_struct:\t\t0x%x\n",
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500593 fdt_size_dt_struct(working_fdt));
594 printf("number mem_rsv:\t\t0x%x\n",
595 fdt_num_mem_rsv(working_fdt));
Kumar Galab79da7b2008-02-15 03:34:36 -0600596 printf("\n");
597
Wolfgang Denk3b683112010-07-17 01:06:04 +0200598 /*
Kumar Galab79da7b2008-02-15 03:34:36 -0600599 * Set boot cpu id
Wolfgang Denk3b683112010-07-17 01:06:04 +0200600 */
Gerald Van Baren3b9d6292008-06-09 21:02:17 -0400601 } else if (strncmp(argv[1], "boo", 3) == 0) {
Marek Vasut48d7a772023-03-02 04:08:18 +0100602 unsigned long tmp;
603
604 if (argc != 3)
605 return CMD_RET_USAGE;
606
607 tmp = hextoul(argv[2], NULL);
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500608 fdt_set_boot_cpuid_phys(working_fdt, tmp);
Kumar Galab79da7b2008-02-15 03:34:36 -0600609
Wolfgang Denk3b683112010-07-17 01:06:04 +0200610 /*
Kumar Galab79da7b2008-02-15 03:34:36 -0600611 * memory command
Wolfgang Denk3b683112010-07-17 01:06:04 +0200612 */
Gerald Van Baren3b9d6292008-06-09 21:02:17 -0400613 } else if (strncmp(argv[1], "me", 2) == 0) {
Kumar Galab79da7b2008-02-15 03:34:36 -0600614 uint64_t addr, size;
615 int err;
Marek Vasutc9dfd022023-03-02 04:08:19 +0100616
617 if (argc != 4)
618 return CMD_RET_USAGE;
619
Heiko Schocher0f602e12009-12-03 11:21:21 +0100620 addr = simple_strtoull(argv[2], NULL, 16);
621 size = simple_strtoull(argv[3], NULL, 16);
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500622 err = fdt_fixup_memory(working_fdt, addr, size);
Kumar Galab79da7b2008-02-15 03:34:36 -0600623 if (err < 0)
624 return err;
625
Wolfgang Denk3b683112010-07-17 01:06:04 +0200626 /*
Kumar Galab79da7b2008-02-15 03:34:36 -0600627 * mem reserve commands
Wolfgang Denk3b683112010-07-17 01:06:04 +0200628 */
Gerald Van Baren3b9d6292008-06-09 21:02:17 -0400629 } else if (strncmp(argv[1], "rs", 2) == 0) {
Kumar Galab79da7b2008-02-15 03:34:36 -0600630 if (argv[2][0] == 'p') {
631 uint64_t addr, size;
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500632 int total = fdt_num_mem_rsv(working_fdt);
Kumar Galab79da7b2008-02-15 03:34:36 -0600633 int j, err;
634 printf("index\t\t start\t\t size\n");
635 printf("-------------------------------"
636 "-----------------\n");
637 for (j = 0; j < total; j++) {
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500638 err = fdt_get_mem_rsv(working_fdt, j, &addr, &size);
Kumar Galab79da7b2008-02-15 03:34:36 -0600639 if (err < 0) {
640 printf("libfdt fdt_get_mem_rsv(): %s\n",
641 fdt_strerror(err));
642 return err;
643 }
644 printf(" %x\t%08x%08x\t%08x%08x\n", j,
645 (u32)(addr >> 32),
646 (u32)(addr & 0xffffffff),
647 (u32)(size >> 32),
648 (u32)(size & 0xffffffff));
649 }
650 } else if (argv[2][0] == 'a') {
651 uint64_t addr, size;
652 int err;
Kumar Galab79da7b2008-02-15 03:34:36 -0600653 addr = simple_strtoull(argv[3], NULL, 16);
654 size = simple_strtoull(argv[4], NULL, 16);
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500655 err = fdt_add_mem_rsv(working_fdt, addr, size);
Kumar Galab79da7b2008-02-15 03:34:36 -0600656
657 if (err < 0) {
Marek Vasut794c8e62023-03-02 04:08:17 +0100658 printf("libfdt fdt_add_mem_rsv(): %s\n",
Kumar Galab79da7b2008-02-15 03:34:36 -0600659 fdt_strerror(err));
Marek Vasut794c8e62023-03-02 04:08:17 +0100660 return CMD_RET_FAILURE;
Kumar Galab79da7b2008-02-15 03:34:36 -0600661 }
662 } else if (argv[2][0] == 'd') {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600663 unsigned long idx = hextoul(argv[3], NULL);
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500664 int err = fdt_del_mem_rsv(working_fdt, idx);
Kumar Galab79da7b2008-02-15 03:34:36 -0600665
666 if (err < 0) {
Marek Vasut794c8e62023-03-02 04:08:17 +0100667 printf("libfdt fdt_del_mem_rsv(): %s\n",
Kumar Galab79da7b2008-02-15 03:34:36 -0600668 fdt_strerror(err));
Marek Vasut794c8e62023-03-02 04:08:17 +0100669 return CMD_RET_FAILURE;
Kumar Galab79da7b2008-02-15 03:34:36 -0600670 }
671 } else {
672 /* Unrecognized command */
Simon Glassa06dfc72011-12-10 08:44:01 +0000673 return CMD_RET_USAGE;
Kumar Galab79da7b2008-02-15 03:34:36 -0600674 }
Kim Phillipsbd9d1152007-07-17 13:57:04 -0500675 }
Gerald Van Baren5606a362007-06-25 23:25:28 -0400676#ifdef CONFIG_OF_BOARD_SETUP
Kim Phillipsbd9d1152007-07-17 13:57:04 -0500677 /* Call the board-specific fixup routine */
Simon Glass406ba622014-10-23 18:58:48 -0600678 else if (strncmp(argv[1], "boa", 3) == 0) {
679 int err = ft_board_setup(working_fdt, gd->bd);
680
681 if (err) {
682 printf("Failed to update board information in FDT: %s\n",
683 fdt_strerror(err));
684 return CMD_RET_FAILURE;
685 }
Tom Rini84c0f692021-09-12 20:32:32 -0400686#ifdef CONFIG_ARCH_KEYSTONE
Nicholas Faustinie5fb7862018-10-03 12:58:48 +0200687 ft_board_setup_ex(working_fdt, gd->bd);
688#endif
Simon Glass406ba622014-10-23 18:58:48 -0600689 }
Gerald Van Baren5606a362007-06-25 23:25:28 -0400690#endif
Kim Phillipsbd9d1152007-07-17 13:57:04 -0500691 /* Create a chosen node */
Heiko Schocherfce16b92014-03-03 12:19:24 +0100692 else if (strncmp(argv[1], "cho", 3) == 0) {
Kumar Galafb5dcd52008-08-15 08:24:34 -0500693 unsigned long initrd_start = 0, initrd_end = 0;
694
Wolfgang Denk3b683112010-07-17 01:06:04 +0200695 if ((argc != 2) && (argc != 4))
Simon Glassa06dfc72011-12-10 08:44:01 +0000696 return CMD_RET_USAGE;
Kumar Galafb5dcd52008-08-15 08:24:34 -0500697
698 if (argc == 4) {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600699 initrd_start = hextoul(argv[2], NULL);
Sean Anderson86b6f472022-03-22 16:59:21 -0400700 initrd_end = initrd_start + hextoul(argv[3], NULL) - 1;
Kumar Galafb5dcd52008-08-15 08:24:34 -0500701 }
702
Masahiro Yamada451c2042014-04-18 17:41:00 +0900703 fdt_chosen(working_fdt);
Masahiro Yamada5b114892014-04-18 17:40:59 +0900704 fdt_initrd(working_fdt, initrd_start, initrd_end);
Heiko Schocherfce16b92014-03-03 12:19:24 +0100705
706#if defined(CONFIG_FIT_SIGNATURE)
707 } else if (strncmp(argv[1], "che", 3) == 0) {
708 int cfg_noffset;
709 int ret;
710 unsigned long addr;
711 struct fdt_header *blob;
712
713 if (!working_fdt)
714 return CMD_RET_FAILURE;
715
716 if (argc > 2) {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600717 addr = hextoul(argv[2], NULL);
Heiko Schocherfce16b92014-03-03 12:19:24 +0100718 blob = map_sysmem(addr, 0);
719 } else {
720 blob = (struct fdt_header *)gd->fdt_blob;
721 }
722 if (!fdt_valid(&blob))
723 return 1;
724
725 gd->fdt_blob = blob;
726 cfg_noffset = fit_conf_get_node(working_fdt, NULL);
727 if (!cfg_noffset) {
728 printf("Could not find configuration node: %s\n",
729 fdt_strerror(cfg_noffset));
730 return CMD_RET_FAILURE;
731 }
732
733 ret = fit_config_verify(working_fdt, cfg_noffset);
Simon Glass5da42d92014-06-12 07:24:45 -0600734 if (ret == 0)
Heiko Schocherfce16b92014-03-03 12:19:24 +0100735 return CMD_RET_SUCCESS;
736 else
737 return CMD_RET_FAILURE;
738#endif
739
Kumar Gala58911df2008-08-15 08:24:44 -0500740 }
Maxime Ripard5a680aa2016-07-05 10:26:45 +0200741#ifdef CONFIG_OF_LIBFDT_OVERLAY
742 /* apply an overlay */
743 else if (strncmp(argv[1], "ap", 2) == 0) {
744 unsigned long addr;
745 struct fdt_header *blob;
Stefan Agnerfed14d02016-12-20 15:58:45 +0100746 int ret;
Maxime Ripard5a680aa2016-07-05 10:26:45 +0200747
748 if (argc != 3)
749 return CMD_RET_USAGE;
750
751 if (!working_fdt)
752 return CMD_RET_FAILURE;
753
Simon Glass3ff49ec2021-07-24 09:03:29 -0600754 addr = hextoul(argv[2], NULL);
Maxime Ripard5a680aa2016-07-05 10:26:45 +0200755 blob = map_sysmem(addr, 0);
756 if (!fdt_valid(&blob))
757 return CMD_RET_FAILURE;
758
Pantelis Antonioud9456a42017-09-04 23:12:12 +0300759 /* apply method prints messages on error */
760 ret = fdt_overlay_apply_verbose(working_fdt, blob);
761 if (ret)
Maxime Ripard5a680aa2016-07-05 10:26:45 +0200762 return CMD_RET_FAILURE;
763 }
764#endif
Kumar Gala58911df2008-08-15 08:24:44 -0500765 /* resize the fdt */
766 else if (strncmp(argv[1], "re", 2) == 0) {
Hannes Schmelzerd3dbac82016-09-20 18:10:43 +0200767 uint extrasize;
768 if (argc > 2)
Simon Glass3ff49ec2021-07-24 09:03:29 -0600769 extrasize = hextoul(argv[2], NULL);
Hannes Schmelzerd3dbac82016-09-20 18:10:43 +0200770 else
771 extrasize = 0;
772 fdt_shrink_to_minimum(working_fdt, extrasize);
Kumar Gala58911df2008-08-15 08:24:44 -0500773 }
774 else {
Kim Phillipsbd9d1152007-07-17 13:57:04 -0500775 /* Unrecognized command */
Simon Glassa06dfc72011-12-10 08:44:01 +0000776 return CMD_RET_USAGE;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400777 }
778
779 return 0;
780}
781
Gerald Van Barene596a162007-05-16 22:39:59 -0400782/****************************************************************************/
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400783
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400784/*
Gerald Van Barene596a162007-05-16 22:39:59 -0400785 * Parse the user's input, partially heuristic. Valid formats:
Andy Fleming46891472008-03-31 20:45:56 -0500786 * <0x00112233 4 05> - an array of cells. Numbers follow standard
Wolfgang Denka1be4762008-05-20 16:00:29 +0200787 * C conventions.
Gerald Van Barene596a162007-05-16 22:39:59 -0400788 * [00 11 22 .. nn] - byte stream
789 * "string" - If the the value doesn't start with "<" or "[", it is
790 * treated as a string. Note that the quotes are
791 * stripped by the parser before we get the string.
Andy Fleming46891472008-03-31 20:45:56 -0500792 * newval: An array of strings containing the new property as specified
Wolfgang Denka1be4762008-05-20 16:00:29 +0200793 * on the command line
Andy Fleming46891472008-03-31 20:45:56 -0500794 * count: The number of strings in the array
795 * data: A bytestream to be placed in the property
796 * len: The length of the resulting bytestream
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400797 */
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200798static int fdt_parse_prop(char * const *newval, int count, char *data, int *len)
Gerald Van Barene596a162007-05-16 22:39:59 -0400799{
800 char *cp; /* temporary char pointer */
Andy Fleming46891472008-03-31 20:45:56 -0500801 char *newp; /* temporary newval char pointer */
Gerald Van Barene596a162007-05-16 22:39:59 -0400802 unsigned long tmp; /* holds converted values */
Andy Fleming46891472008-03-31 20:45:56 -0500803 int stridx = 0;
Gerald Van Barene596a162007-05-16 22:39:59 -0400804
Andy Fleming46891472008-03-31 20:45:56 -0500805 *len = 0;
806 newp = newval[0];
807
808 /* An array of cells */
809 if (*newp == '<') {
810 newp++;
811 while ((*newp != '>') && (stridx < count)) {
812 /*
813 * Keep searching until we find that last ">"
814 * That way users don't have to escape the spaces
815 */
816 if (*newp == '\0') {
817 newp = newval[++stridx];
818 continue;
819 }
820
821 cp = newp;
822 tmp = simple_strtoul(cp, &newp, 0);
Hannes Schmelzer98788612017-05-30 15:05:44 +0200823 if (*cp != '?')
824 *(fdt32_t *)data = cpu_to_fdt32(tmp);
825 else
826 newp++;
827
Andy Fleming46891472008-03-31 20:45:56 -0500828 data += 4;
829 *len += 4;
830
831 /* If the ptr didn't advance, something went wrong */
832 if ((newp - cp) <= 0) {
Gerald Van Barene596a162007-05-16 22:39:59 -0400833 printf("Sorry, I could not convert \"%s\"\n",
834 cp);
835 return 1;
836 }
Andy Fleming46891472008-03-31 20:45:56 -0500837
838 while (*newp == ' ')
839 newp++;
Gerald Van Barene596a162007-05-16 22:39:59 -0400840 }
Andy Fleming46891472008-03-31 20:45:56 -0500841
842 if (*newp != '>') {
843 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barene596a162007-05-16 22:39:59 -0400844 return 1;
845 }
Andy Fleming46891472008-03-31 20:45:56 -0500846 } else if (*newp == '[') {
Gerald Van Barene596a162007-05-16 22:39:59 -0400847 /*
848 * Byte stream. Convert the values.
849 */
Andy Fleming46891472008-03-31 20:45:56 -0500850 newp++;
Ken MacLeodd028afa2009-09-11 15:16:18 -0500851 while ((stridx < count) && (*newp != ']')) {
Andy Fleming46891472008-03-31 20:45:56 -0500852 while (*newp == ' ')
853 newp++;
Ken MacLeodd028afa2009-09-11 15:16:18 -0500854 if (*newp == '\0') {
Andy Fleming46891472008-03-31 20:45:56 -0500855 newp = newval[++stridx];
Ken MacLeodd028afa2009-09-11 15:16:18 -0500856 continue;
857 }
858 if (!isxdigit(*newp))
859 break;
Simon Glass3ff49ec2021-07-24 09:03:29 -0600860 tmp = hextoul(newp, &newp);
Ken MacLeodd028afa2009-09-11 15:16:18 -0500861 *data++ = tmp & 0xFF;
862 *len = *len + 1;
Gerald Van Barene596a162007-05-16 22:39:59 -0400863 }
Andy Fleming46891472008-03-31 20:45:56 -0500864 if (*newp != ']') {
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700865 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barene596a162007-05-16 22:39:59 -0400866 return 1;
867 }
868 } else {
869 /*
Ken MacLeodd028afa2009-09-11 15:16:18 -0500870 * Assume it is one or more strings. Copy it into our
871 * data area for convenience (including the
872 * terminating '\0's).
Gerald Van Barene596a162007-05-16 22:39:59 -0400873 */
Andy Fleming46891472008-03-31 20:45:56 -0500874 while (stridx < count) {
Ken MacLeodd028afa2009-09-11 15:16:18 -0500875 size_t length = strlen(newp) + 1;
Andy Fleming46891472008-03-31 20:45:56 -0500876 strcpy(data, newp);
Ken MacLeodd028afa2009-09-11 15:16:18 -0500877 data += length;
878 *len += length;
Andy Fleming46891472008-03-31 20:45:56 -0500879 newp = newval[++stridx];
880 }
Gerald Van Barene596a162007-05-16 22:39:59 -0400881 }
882 return 0;
883}
884
885/****************************************************************************/
886
887/*
888 * Heuristic to guess if this is a string or concatenated strings.
889 */
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400890
891static int is_printable_string(const void *data, int len)
892{
893 const char *s = data;
Marek Vasutfdc794a2023-03-02 04:08:14 +0100894 const char *ss, *se;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400895
896 /* zero length is not */
897 if (len == 0)
898 return 0;
899
Marek Vasutfdc794a2023-03-02 04:08:14 +0100900 /* must terminate with zero */
901 if (s[len - 1] != '\0')
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400902 return 0;
903
Marek Vasutfdc794a2023-03-02 04:08:14 +0100904 se = s + len;
905
906 while (s < se) {
907 ss = s;
908 while (s < se && *s && isprint((unsigned char)*s))
909 s++;
910
911 /* not zero, or not done yet */
912 if (*s != '\0' || s == ss)
913 return 0;
914
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400915 s++;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400916 }
917
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400918 return 1;
919}
920
Gerald Van Barene596a162007-05-16 22:39:59 -0400921/*
922 * Print the property in the best format, a heuristic guess. Print as
923 * a string, concatenated strings, a byte, word, double word, or (if all
924 * else fails) it is printed as a stream of bytes.
925 */
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400926static void print_data(const void *data, int len)
927{
928 int j;
Heinrich Schuchardt1a5f58d2020-06-19 19:45:55 +0200929 const char *env_max_dump;
930 ulong max_dump = ULONG_MAX;
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400931
932 /* no data, don't print */
933 if (len == 0)
934 return;
935
Heinrich Schuchardt1a5f58d2020-06-19 19:45:55 +0200936 env_max_dump = env_get("fdt_max_dump");
937 if (env_max_dump)
Simon Glass3ff49ec2021-07-24 09:03:29 -0600938 max_dump = hextoul(env_max_dump, NULL);
Heinrich Schuchardt1a5f58d2020-06-19 19:45:55 +0200939
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400940 /*
941 * It is a string, but it may have multiple strings (embedded '\0's).
942 */
943 if (is_printable_string(data, len)) {
944 puts("\"");
945 j = 0;
946 while (j < len) {
947 if (j > 0)
948 puts("\", \"");
949 puts(data);
950 j += strlen(data) + 1;
951 data += strlen(data) + 1;
952 }
953 puts("\"");
954 return;
955 }
956
Andy Fleming46891472008-03-31 20:45:56 -0500957 if ((len %4) == 0) {
Heinrich Schuchardt1a5f58d2020-06-19 19:45:55 +0200958 if (len > max_dump)
Tom Rini1db8b532012-10-29 14:53:18 +0000959 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf72c6922012-08-17 10:34:36 +0000960 else {
Kim Phillipsdc00a682012-10-29 13:34:31 +0000961 const __be32 *p;
Andy Fleming46891472008-03-31 20:45:56 -0500962
Joe Hershbergerf72c6922012-08-17 10:34:36 +0000963 printf("<");
964 for (j = 0, p = data; j < len/4; j++)
965 printf("0x%08x%s", fdt32_to_cpu(p[j]),
966 j < (len/4 - 1) ? " " : "");
967 printf(">");
968 }
Andy Fleming46891472008-03-31 20:45:56 -0500969 } else { /* anything else... hexdump */
Heinrich Schuchardt1a5f58d2020-06-19 19:45:55 +0200970 if (len > max_dump)
Tom Rini1db8b532012-10-29 14:53:18 +0000971 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf72c6922012-08-17 10:34:36 +0000972 else {
973 const u8 *s;
Andy Fleming46891472008-03-31 20:45:56 -0500974
Joe Hershbergerf72c6922012-08-17 10:34:36 +0000975 printf("[");
976 for (j = 0, s = data; j < len; j++)
977 printf("%02x%s", s[j], j < len - 1 ? " " : "");
978 printf("]");
979 }
Gerald Van Barenade8ef42007-03-31 12:22:10 -0400980 }
Gerald Van Barene596a162007-05-16 22:39:59 -0400981}
982
983/****************************************************************************/
984
985/*
Kim Phillipsf3a42e22008-06-10 11:06:17 -0500986 * Recursively print (a portion of) the working_fdt. The depth parameter
Gerald Van Barene596a162007-05-16 22:39:59 -0400987 * determines how deeply nested the fdt is printed.
988 */
Kumar Gala1e386af2007-11-21 14:07:46 -0600989static int fdt_print(const char *pathp, char *prop, int depth)
Gerald Van Barene596a162007-05-16 22:39:59 -0400990{
Gerald Van Barene596a162007-05-16 22:39:59 -0400991 static char tabs[MAX_LEVEL+1] =
992 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
993 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
Kumar Gala1e386af2007-11-21 14:07:46 -0600994 const void *nodep; /* property node pointer */
Gerald Van Barene596a162007-05-16 22:39:59 -0400995 int nodeoffset; /* node offset from libfdt */
996 int nextoffset; /* next node offset from libfdt */
997 uint32_t tag; /* tag */
998 int len; /* length of the property */
999 int level = 0; /* keep track of nesting level */
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001000 const struct fdt_property *fdt_prop;
Gerald Van Barene596a162007-05-16 22:39:59 -04001001
Kim Phillipsf3a42e22008-06-10 11:06:17 -05001002 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Barene596a162007-05-16 22:39:59 -04001003 if (nodeoffset < 0) {
1004 /*
1005 * Not found or something else bad happened.
1006 */
Kumar Galac8ab7052007-10-24 11:04:22 -05001007 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren1178d6a2007-05-21 23:27:16 -04001008 fdt_strerror(nodeoffset));
Gerald Van Barene596a162007-05-16 22:39:59 -04001009 return 1;
1010 }
1011 /*
1012 * The user passed in a property as well as node path.
1013 * Print only the given property and then return.
1014 */
1015 if (prop) {
Kim Phillipsf3a42e22008-06-10 11:06:17 -05001016 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
Gerald Van Barene596a162007-05-16 22:39:59 -04001017 if (len == 0) {
1018 /* no property value */
1019 printf("%s %s\n", pathp, prop);
1020 return 0;
Simon Glass4bc73ef2017-06-07 10:28:42 -06001021 } else if (nodep && len > 0) {
Gerald Van Barenfc1a1092007-11-23 19:43:20 -05001022 printf("%s = ", prop);
Gerald Van Barene596a162007-05-16 22:39:59 -04001023 print_data (nodep, len);
1024 printf("\n");
1025 return 0;
1026 } else {
1027 printf ("libfdt fdt_getprop(): %s\n",
1028 fdt_strerror(len));
1029 return 1;
1030 }
1031 }
1032
1033 /*
1034 * The user passed in a node path and no property,
1035 * print the node and all subnodes.
1036 */
Gerald Van Barene596a162007-05-16 22:39:59 -04001037 while(level >= 0) {
Kim Phillipsf3a42e22008-06-10 11:06:17 -05001038 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
Gerald Van Barene596a162007-05-16 22:39:59 -04001039 switch(tag) {
1040 case FDT_BEGIN_NODE:
Kim Phillipsf3a42e22008-06-10 11:06:17 -05001041 pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001042 if (level <= depth) {
1043 if (pathp == NULL)
1044 pathp = "/* NULL pointer error */";
1045 if (*pathp == '\0')
1046 pathp = "/"; /* root is nameless */
Gerald Van Barene596a162007-05-16 22:39:59 -04001047 printf("%s%s {\n",
1048 &tabs[MAX_LEVEL - level], pathp);
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001049 }
Gerald Van Barene596a162007-05-16 22:39:59 -04001050 level++;
Gerald Van Barene596a162007-05-16 22:39:59 -04001051 if (level >= MAX_LEVEL) {
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001052 printf("Nested too deep, aborting.\n");
Gerald Van Barene596a162007-05-16 22:39:59 -04001053 return 1;
1054 }
1055 break;
1056 case FDT_END_NODE:
1057 level--;
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001058 if (level <= depth)
Gerald Van Barene596a162007-05-16 22:39:59 -04001059 printf("%s};\n", &tabs[MAX_LEVEL - level]);
1060 if (level == 0) {
1061 level = -1; /* exit the loop */
1062 }
1063 break;
1064 case FDT_PROP:
Kim Phillipsf3a42e22008-06-10 11:06:17 -05001065 fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001066 sizeof(*fdt_prop));
Kim Phillipsf3a42e22008-06-10 11:06:17 -05001067 pathp = fdt_string(working_fdt,
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001068 fdt32_to_cpu(fdt_prop->nameoff));
1069 len = fdt32_to_cpu(fdt_prop->len);
1070 nodep = fdt_prop->data;
Gerald Van Barene596a162007-05-16 22:39:59 -04001071 if (len < 0) {
1072 printf ("libfdt fdt_getprop(): %s\n",
1073 fdt_strerror(len));
1074 return 1;
1075 } else if (len == 0) {
1076 /* the property has no value */
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001077 if (level <= depth)
Gerald Van Barene596a162007-05-16 22:39:59 -04001078 printf("%s%s;\n",
1079 &tabs[MAX_LEVEL - level],
1080 pathp);
1081 } else {
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001082 if (level <= depth) {
Gerald Van Barenfc1a1092007-11-23 19:43:20 -05001083 printf("%s%s = ",
Gerald Van Barene596a162007-05-16 22:39:59 -04001084 &tabs[MAX_LEVEL - level],
1085 pathp);
1086 print_data (nodep, len);
1087 printf(";\n");
1088 }
1089 }
1090 break;
1091 case FDT_NOP:
Andrew Klossnere4ad4542008-07-07 06:41:14 -07001092 printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
Gerald Van Barene596a162007-05-16 22:39:59 -04001093 break;
1094 case FDT_END:
1095 return 1;
1096 default:
Gerald Van Bareneb999ee2007-11-22 17:23:23 -05001097 if (level <= depth)
Gerald Van Barene596a162007-05-16 22:39:59 -04001098 printf("Unknown tag 0x%08X\n", tag);
1099 return 1;
1100 }
1101 nodeoffset = nextoffset;
1102 }
1103 return 0;
Gerald Van Barenade8ef42007-03-31 12:22:10 -04001104}
Gerald Van Barenade8ef42007-03-31 12:22:10 -04001105
1106/********************************************************************/
Kim Phillipsdc00a682012-10-29 13:34:31 +00001107#ifdef CONFIG_SYS_LONGHELP
1108static char fdt_help_text[] =
Heinrich Schuchardt9696dbb2022-04-25 18:35:05 +02001109 "addr [-c] [-q] <addr> [<size>] - Set the [control] fdt location to <addr>\n"
Maxime Ripard5a680aa2016-07-05 10:26:45 +02001110#ifdef CONFIG_OF_LIBFDT_OVERLAY
1111 "fdt apply <addr> - Apply overlay to the DT\n"
1112#endif
Gerald Van Baren5606a362007-06-25 23:25:28 -04001113#ifdef CONFIG_OF_BOARD_SETUP
1114 "fdt boardsetup - Do board-specific set up\n"
1115#endif
Simon Glass6c0be912014-10-23 18:58:54 -06001116#ifdef CONFIG_OF_SYSTEM_SETUP
1117 "fdt systemsetup - Do system-specific set up\n"
1118#endif
Gerald Van Baren7655c092008-01-05 15:33:29 -05001119 "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n"
Hannes Schmelzerd3dbac82016-09-20 18:10:43 +02001120 "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 -04001121 "fdt print <path> [<prop>] - Recursive print starting at <path>\n"
1122 "fdt list <path> [<prop>] - Print one level starting at <path>\n"
Marek Vasut0282f9f2022-07-08 23:50:43 +02001123 "fdt get value <var> <path> <prop> [<index>] - Get <property> and store in <var>\n"
1124 " In case of stringlist property, use optional <index>\n"
1125 " to select string within the stringlist. Default is 0.\n"
Joe Hershbergerfc5abf02012-08-17 10:34:37 +00001126 "fdt get name <var> <path> <index> - Get name of node <index> and store in <var>\n"
1127 "fdt get addr <var> <path> <prop> - Get start address of <property> and store in <var>\n"
1128 "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 -04001129 "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n"
1130 "fdt mknode <path> <node> - Create a new node after <path>\n"
1131 "fdt rm <path> [<prop>] - Delete the node or <property>\n"
Heiko Schocherfefc7ee2018-11-15 06:06:06 +01001132 "fdt header [get <var> <member>] - Display header info\n"
1133 " get - get header member <member> and store it in <var>\n"
Kumar Galab79da7b2008-02-15 03:34:36 -06001134 "fdt bootcpu <id> - Set boot cpuid\n"
1135 "fdt memory <addr> <size> - Add/Update memory node\n"
1136 "fdt rsvmem print - Show current mem reserves\n"
1137 "fdt rsvmem add <addr> <size> - Add a mem reserve\n"
1138 "fdt rsvmem delete <index> - Delete a mem reserves\n"
Sean Anderson86b6f472022-03-22 16:59:21 -04001139 "fdt chosen [<start> <size>] - Add/update the /chosen branch in the tree\n"
1140 " <start>/<size> - initrd start addr/size\n"
Heiko Schocherfce16b92014-03-03 12:19:24 +01001141#if defined(CONFIG_FIT_SIGNATURE)
1142 "fdt checksign [<addr>] - check FIT signature\n"
Marek Vasute71c9ee2023-03-02 04:08:20 +01001143 " <addr> - address of key blob\n"
1144 " default gd->fdt_blob\n"
Heiko Schocherfce16b92014-03-03 12:19:24 +01001145#endif
Robert P. J. Day8c60f922016-05-04 04:47:31 -04001146 "NOTE: Dereference aliases by omitting the leading '/', "
Kim Phillipsdc00a682012-10-29 13:34:31 +00001147 "e.g. fdt print ethernet0.";
1148#endif
1149
1150U_BOOT_CMD(
1151 fdt, 255, 0, do_fdt,
1152 "flattened device tree utility commands", fdt_help_text
Gerald Van Barenade8ef42007-03-31 12:22:10 -04001153);