blob: 842e6cb634be97c38478a545790b9c847f201fdc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Gerald Van Baren781e09e2007-03-31 12:22:10 -04002/*
3 * (C) Copyright 2007
4 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com
5 * Based on code written by:
6 * Pantelis Antoniou <pantelis.antoniou@gmail.com> and
7 * Matthew McClintock <msm@freescale.com>
Gerald Van Baren781e09e2007-03-31 12:22:10 -04008 */
9
10#include <common.h>
11#include <command.h>
Simon Glassc7694dd2019-08-01 09:46:46 -060012#include <env.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060013#include <image.h>
Gerald Van Baren781e09e2007-03-31 12:22:10 -040014#include <linux/ctype.h>
15#include <linux/types.h>
Gerald Van Baren781e09e2007-03-31 12:22:10 -040016#include <asm/global_data.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090017#include <linux/libfdt.h>
Gerald Van Baren64dbbd42007-04-06 14:19:43 -040018#include <fdt_support.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050019#include <mapmem.h>
Simon Glassa92fd652013-04-20 08:42:45 +000020#include <asm/io.h>
Gerald Van Baren781e09e2007-03-31 12:22:10 -040021
22#define MAX_LEVEL 32 /* how deeply nested we will go */
Gerald Van Barenfd61e552007-06-25 23:25:28 -040023#define SCRATCHPAD 1024 /* bytes of scratchpad memory */
Gerald Van Baren781e09e2007-03-31 12:22:10 -040024
25/*
26 * Global data (for the gd->bd)
27 */
28DECLARE_GLOBAL_DATA_PTR;
29
Wolfgang Denk54841ab2010-06-28 22:00:46 +020030static int fdt_parse_prop(char *const*newval, int count, char *data, int *len);
Kumar Galadbaf07c2007-11-21 14:07:46 -060031static int fdt_print(const char *pathp, char *prop, int depth);
Joe Hershbergerbc802952012-08-17 10:34:37 +000032static int is_printable_string(const void *data, int len);
Gerald Van Baren781e09e2007-03-31 12:22:10 -040033
Gerald Van Baren781e09e2007-03-31 12:22:10 -040034/*
Gerald Van Barenae9e97f2008-06-10 22:15:58 -040035 * The working_fdt points to our working flattened device tree.
36 */
37struct fdt_header *working_fdt;
38
Joe Hershberger90fbee32015-02-04 21:56:53 -060039void set_working_fdt_addr(ulong addr)
Kumar Gala54f9c862008-08-15 08:24:39 -050040{
Simon Glassa92fd652013-04-20 08:42:45 +000041 void *buf;
42
Joe Hershberger90fbee32015-02-04 21:56:53 -060043 buf = map_sysmem(addr, 0);
Simon Glassa92fd652013-04-20 08:42:45 +000044 working_fdt = buf;
Simon Glass018f5302017-08-03 12:22:10 -060045 env_set_hex("fdtaddr", addr);
Kumar Gala54f9c862008-08-15 08:24:39 -050046}
47
Gerald Van Barenae9e97f2008-06-10 22:15:58 -040048/*
Joe Hershbergerbc802952012-08-17 10:34:37 +000049 * Get a value from the fdt and format it to be set in the environment
50 */
Simon Glass382bee52017-08-03 12:22:09 -060051static int fdt_value_env_set(const void *nodep, int len, const char *var)
Joe Hershbergerbc802952012-08-17 10:34:37 +000052{
53 if (is_printable_string(nodep, len))
Simon Glass382bee52017-08-03 12:22:09 -060054 env_set(var, (void *)nodep);
Joe Hershbergerbc802952012-08-17 10:34:37 +000055 else if (len == 4) {
56 char buf[11];
57
Andreas Färberb05bf6c2017-01-09 16:08:02 +010058 sprintf(buf, "0x%08X", fdt32_to_cpu(*(fdt32_t *)nodep));
Simon Glass382bee52017-08-03 12:22:09 -060059 env_set(var, buf);
Joe Hershbergerbc802952012-08-17 10:34:37 +000060 } else if (len%4 == 0 && len <= 20) {
61 /* Needed to print things like sha1 hashes. */
62 char buf[41];
63 int i;
64
65 for (i = 0; i < len; i += sizeof(unsigned int))
66 sprintf(buf + (i * 2), "%08x",
67 *(unsigned int *)(nodep + i));
Simon Glass382bee52017-08-03 12:22:09 -060068 env_set(var, buf);
Joe Hershbergerbc802952012-08-17 10:34:37 +000069 } else {
70 printf("error: unprintable value\n");
71 return 1;
72 }
73 return 0;
74}
75
Heiko Schocher82441272018-11-15 06:06:06 +010076static const char * const fdt_member_table[] = {
77 "magic",
78 "totalsize",
79 "off_dt_struct",
80 "off_dt_strings",
81 "off_mem_rsvmap",
82 "version",
83 "last_comp_version",
84 "boot_cpuid_phys",
85 "size_dt_strings",
86 "size_dt_struct",
87};
88
Simon Glass09140112020-05-10 11:40:03 -060089static int fdt_get_header_value(int argc, char *const argv[])
Heiko Schocher82441272018-11-15 06:06:06 +010090{
91 fdt32_t *fdtp = (fdt32_t *)working_fdt;
92 ulong val;
93 int i;
94
95 if (argv[2][0] != 'g')
96 return CMD_RET_FAILURE;
97
98 for (i = 0; i < ARRAY_SIZE(fdt_member_table); i++) {
99 if (strcmp(fdt_member_table[i], argv[4]))
100 continue;
101
102 val = fdt32_to_cpu(fdtp[i]);
103 env_set_hex(argv[3], val);
104 return CMD_RET_SUCCESS;
105 }
106
107 return CMD_RET_FAILURE;
108}
109
Joe Hershbergerbc802952012-08-17 10:34:37 +0000110/*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400111 * Flattened Device Tree command, see the help for parameter definitions.
112 */
Simon Glass09140112020-05-10 11:40:03 -0600113static int do_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400114{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200115 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000116 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400117
Simon Glass0c929632021-07-21 14:55:25 -0600118 /* fdt addr: Set the address of the fdt */
Maxime Ripardf0ed68e2016-07-05 10:26:34 +0200119 if (strncmp(argv[1], "ad", 2) == 0) {
Kumar Gala54f9c862008-08-15 08:24:39 -0500120 unsigned long addr;
Simon Glass4b578652013-04-20 08:42:44 +0000121 int control = 0;
Peter Hoyese9496ec2022-03-31 11:53:22 +0100122 int quiet = 0;
Simon Glass4b578652013-04-20 08:42:44 +0000123 struct fdt_header *blob;
Simon Glass0c929632021-07-21 14:55:25 -0600124
125 /* Set the address [and length] of the fdt */
Simon Glass4b578652013-04-20 08:42:44 +0000126 argc -= 2;
127 argv += 2;
Peter Hoyese9496ec2022-03-31 11:53:22 +0100128 while (argc > 0 && **argv == '-') {
129 char *arg = *argv;
130
131 while (*++arg) {
132 switch (*arg) {
133 case 'c':
134 control = 1;
135 break;
136 case 'q':
137 quiet = 1;
138 break;
139 default:
140 return CMD_RET_USAGE;
141 }
142 }
Simon Glass4b578652013-04-20 08:42:44 +0000143 argc--;
144 argv++;
145 }
Simon Glass4b578652013-04-20 08:42:44 +0000146 if (argc == 0) {
147 if (control)
148 blob = (struct fdt_header *)gd->fdt_blob;
149 else
150 blob = working_fdt;
151 if (!blob || !fdt_valid(&blob))
Kumar Gala7dbc38a2008-08-15 08:24:35 -0500152 return 1;
Simon Glassb29a0db2021-07-21 14:55:26 -0600153 printf("%s fdt: %08lx\n",
154 control ? "Control" : "Working",
Joe Hershbergerc71a0162015-02-04 21:56:54 -0600155 control ? (ulong)map_to_sysmem(blob) :
Simon Glassb29a0db2021-07-21 14:55:26 -0600156 env_get_hex("fdtaddr", 0));
Kumar Gala7dbc38a2008-08-15 08:24:35 -0500157 return 0;
158 }
159
Simon Glass7e5f4602021-07-24 09:03:29 -0600160 addr = hextoul(argv[0], NULL);
Simon Glassa92fd652013-04-20 08:42:45 +0000161 blob = map_sysmem(addr, 0);
Peter Hoyese9496ec2022-03-31 11:53:22 +0100162 if ((quiet && fdt_check_header(blob)) ||
163 (!quiet && !fdt_valid(&blob)))
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400164 return 1;
Simon Glass4b578652013-04-20 08:42:44 +0000165 if (control)
166 gd->fdt_blob = blob;
167 else
Joe Hershberger90fbee32015-02-04 21:56:53 -0600168 set_working_fdt_addr(addr);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400169
Simon Glass4b578652013-04-20 08:42:44 +0000170 if (argc >= 2) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400171 int len;
172 int err;
Simon Glass0c929632021-07-21 14:55:25 -0600173
174 /* Optional new length */
Simon Glass7e5f4602021-07-24 09:03:29 -0600175 len = hextoul(argv[1], NULL);
Simon Glass4b578652013-04-20 08:42:44 +0000176 if (len < fdt_totalsize(blob)) {
Peter Hoyese9496ec2022-03-31 11:53:22 +0100177 if (!quiet)
178 printf("New length %d < existing length %d, ignoring\n",
179 len, fdt_totalsize(blob));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400180 } else {
Simon Glass0c929632021-07-21 14:55:25 -0600181 /* Open in place with a new length */
Simon Glass4b578652013-04-20 08:42:44 +0000182 err = fdt_open_into(blob, blob, len);
Peter Hoyese9496ec2022-03-31 11:53:22 +0100183 if (!quiet && err != 0) {
Simon Glass0c929632021-07-21 14:55:25 -0600184 printf("libfdt fdt_open_into(): %s\n",
185 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400186 }
187 }
188 }
189
Marek Vasute02c9452012-09-05 08:34:44 +0200190 return CMD_RET_SUCCESS;
191 }
192
193 if (!working_fdt) {
Simon Glass0c929632021-07-21 14:55:25 -0600194 puts("No FDT memory address configured. Please configure\n"
195 "the FDT address via \"fdt addr <address>\" command.\n"
196 "Aborting!\n");
Marek Vasute02c9452012-09-05 08:34:44 +0200197 return CMD_RET_FAILURE;
198 }
199
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200200 /*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500201 * Move the working_fdt
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200202 */
Marek Vasute02c9452012-09-05 08:34:44 +0200203 if (strncmp(argv[1], "mo", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400204 struct fdt_header *newaddr;
205 int len;
206 int err;
207
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200208 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000209 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400210
211 /*
212 * Set the address and length of the fdt.
213 */
Simon Glass7e5f4602021-07-24 09:03:29 -0600214 working_fdt = (struct fdt_header *)hextoul(argv[2], NULL);
Simon Glassd14da912013-04-20 08:42:42 +0000215 if (!fdt_valid(&working_fdt))
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400216 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400217
Simon Glass7e5f4602021-07-24 09:03:29 -0600218 newaddr = (struct fdt_header *)hextoul(argv[3], NULL);
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400219
220 /*
221 * If the user specifies a length, use that. Otherwise use the
222 * current length.
223 */
224 if (argc <= 4) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500225 len = fdt_totalsize(working_fdt);
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400226 } else {
Simon Glass7e5f4602021-07-24 09:03:29 -0600227 len = hextoul(argv[4], NULL);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500228 if (len < fdt_totalsize(working_fdt)) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400229 printf ("New length 0x%X < existing length "
230 "0x%X, aborting.\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500231 len, fdt_totalsize(working_fdt));
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400232 return 1;
233 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400234 }
235
236 /*
237 * Copy to the new location.
238 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500239 err = fdt_open_into(working_fdt, newaddr, len);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400240 if (err != 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400241 printf ("libfdt fdt_open_into(): %s\n",
242 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400243 return 1;
244 }
Hiroyuki Yokoyamab1a7e792018-10-18 20:43:54 +0200245 set_working_fdt_addr((ulong)newaddr);
Fabien Parentf7f191e2016-11-24 15:02:18 +0100246#ifdef CONFIG_OF_SYSTEM_SETUP
247 /* Call the board-specific fixup routine */
248 } else if (strncmp(argv[1], "sys", 3) == 0) {
249 int err = ft_system_setup(working_fdt, gd->bd);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400250
Fabien Parentf7f191e2016-11-24 15:02:18 +0100251 if (err) {
252 printf("Failed to add system information to FDT: %s\n",
253 fdt_strerror(err));
254 return CMD_RET_FAILURE;
255 }
256#endif
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200257 /*
Gerald Van Baren25114032007-05-12 09:47:25 -0400258 * Make a new node
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200259 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400260 } else if (strncmp(argv[1], "mk", 2) == 0) {
Gerald Van Baren25114032007-05-12 09:47:25 -0400261 char *pathp; /* path */
262 char *nodep; /* new node to add */
263 int nodeoffset; /* node offset from libfdt */
264 int err;
265
266 /*
267 * Parameters: Node path, new node to be appended to the path.
268 */
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200269 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000270 return CMD_RET_USAGE;
Gerald Van Baren25114032007-05-12 09:47:25 -0400271
272 pathp = argv[2];
273 nodep = argv[3];
274
Kim Phillipse489b9c2008-06-10 11:06:17 -0500275 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400276 if (nodeoffset < 0) {
277 /*
278 * Not found or something else bad happened.
279 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500280 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400281 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400282 return 1;
283 }
Kim Phillipse489b9c2008-06-10 11:06:17 -0500284 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
Gerald Van Baren25114032007-05-12 09:47:25 -0400285 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400286 printf ("libfdt fdt_add_subnode(): %s\n",
287 fdt_strerror(err));
Gerald Van Baren25114032007-05-12 09:47:25 -0400288 return 1;
289 }
290
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200291 /*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500292 * Set the value of a property in the working_fdt.
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200293 */
Tom Warren0688b752020-03-26 15:20:44 -0700294 } else if (strncmp(argv[1], "se", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400295 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400296 char *prop; /* property */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400297 int nodeoffset; /* node offset from libfdt */
Bernhard Messerklinger6dfd65f2017-09-28 11:29:52 +0200298 static char data[SCRATCHPAD] __aligned(4);/* property storage */
Hannes Schmelzer9620d872017-05-30 15:05:44 +0200299 const void *ptmp;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400300 int len; /* new length of the property */
301 int ret; /* return value */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400302
303 /*
Gerald Van Barenea6d8be2008-01-05 14:52:04 -0500304 * Parameters: Node path, property, optional value.
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400305 */
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200306 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000307 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400308
309 pathp = argv[2];
310 prop = argv[3];
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400311
Kim Phillipse489b9c2008-06-10 11:06:17 -0500312 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400313 if (nodeoffset < 0) {
314 /*
315 * Not found or something else bad happened.
316 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500317 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400318 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400319 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400320 }
Gerald Van Baren25114032007-05-12 09:47:25 -0400321
Hannes Schmelzer9620d872017-05-30 15:05:44 +0200322 if (argc == 4) {
323 len = 0;
324 } else {
325 ptmp = fdt_getprop(working_fdt, nodeoffset, prop, &len);
326 if (len > SCRATCHPAD) {
327 printf("prop (%d) doesn't fit in scratchpad!\n",
328 len);
329 return 1;
330 }
Hannes Schmelzercee8c352017-08-18 14:41:14 +0200331 if (ptmp != NULL)
332 memcpy(data, ptmp, len);
333
Hannes Schmelzer9620d872017-05-30 15:05:44 +0200334 ret = fdt_parse_prop(&argv[4], argc - 4, data, &len);
335 if (ret != 0)
336 return ret;
337 }
338
Kim Phillipse489b9c2008-06-10 11:06:17 -0500339 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
Gerald Van Baren25114032007-05-12 09:47:25 -0400340 if (ret < 0) {
341 printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
342 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400343 }
344
Joe Hershbergerbc802952012-08-17 10:34:37 +0000345 /********************************************************************
346 * Get the value of a property in the working_fdt.
347 ********************************************************************/
348 } else if (argv[1][0] == 'g') {
349 char *subcmd; /* sub-command */
350 char *pathp; /* path */
351 char *prop; /* property */
352 char *var; /* variable to store result */
353 int nodeoffset; /* node offset from libfdt */
354 const void *nodep; /* property node pointer */
355 int len = 0; /* new length of the property */
356
357 /*
358 * Parameters: Node path, property, optional value.
359 */
360 if (argc < 5)
361 return CMD_RET_USAGE;
362
363 subcmd = argv[2];
364
365 if (argc < 6 && subcmd[0] != 's')
366 return CMD_RET_USAGE;
367
368 var = argv[3];
369 pathp = argv[4];
370 prop = argv[5];
371
372 nodeoffset = fdt_path_offset(working_fdt, pathp);
373 if (nodeoffset < 0) {
374 /*
375 * Not found or something else bad happened.
376 */
377 printf("libfdt fdt_path_offset() returned %s\n",
378 fdt_strerror(nodeoffset));
379 return 1;
380 }
381
382 if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600383 int req_index = -1;
Joe Hershbergerbc802952012-08-17 10:34:37 +0000384 int startDepth = fdt_node_depth(
385 working_fdt, nodeoffset);
386 int curDepth = startDepth;
Simon Glass7e5f4602021-07-24 09:03:29 -0600387 int cur_index = -1;
Joe Hershbergerbc802952012-08-17 10:34:37 +0000388 int nextNodeOffset = fdt_next_node(
389 working_fdt, nodeoffset, &curDepth);
390
391 if (subcmd[0] == 'n')
Simon Glass7e5f4602021-07-24 09:03:29 -0600392 req_index = hextoul(argv[5], NULL);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000393
394 while (curDepth > startDepth) {
395 if (curDepth == startDepth + 1)
Simon Glass7e5f4602021-07-24 09:03:29 -0600396 cur_index++;
397 if (subcmd[0] == 'n' &&
398 cur_index == req_index) {
Simon Glass382bee52017-08-03 12:22:09 -0600399 const char *node_name;
Joe Hershbergerbc802952012-08-17 10:34:37 +0000400
Simon Glass382bee52017-08-03 12:22:09 -0600401 node_name = fdt_get_name(working_fdt,
402 nextNodeOffset,
403 NULL);
404 env_set(var, node_name);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000405 return 0;
406 }
407 nextNodeOffset = fdt_next_node(
408 working_fdt, nextNodeOffset, &curDepth);
409 if (nextNodeOffset < 0)
410 break;
411 }
412 if (subcmd[0] == 's') {
413 /* get the num nodes at this level */
Simon Glass7e5f4602021-07-24 09:03:29 -0600414 env_set_ulong(var, cur_index + 1);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000415 } else {
416 /* node index not found */
417 printf("libfdt node not found\n");
418 return 1;
419 }
420 } else {
421 nodep = fdt_getprop(
422 working_fdt, nodeoffset, prop, &len);
423 if (len == 0) {
424 /* no property value */
Simon Glass382bee52017-08-03 12:22:09 -0600425 env_set(var, "");
Joe Hershbergerbc802952012-08-17 10:34:37 +0000426 return 0;
Simon Glass72c98ed2017-06-07 10:28:41 -0600427 } else if (nodep && len > 0) {
Joe Hershbergerbc802952012-08-17 10:34:37 +0000428 if (subcmd[0] == 'v') {
429 int ret;
430
Simon Glass382bee52017-08-03 12:22:09 -0600431 ret = fdt_value_env_set(nodep, len,
432 var);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000433 if (ret != 0)
434 return ret;
435 } else if (subcmd[0] == 'a') {
436 /* Get address */
437 char buf[11];
438
Tom Rini085b9c32012-10-29 14:53:18 +0000439 sprintf(buf, "0x%p", nodep);
Simon Glass382bee52017-08-03 12:22:09 -0600440 env_set(var, buf);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000441 } else if (subcmd[0] == 's') {
442 /* Get size */
443 char buf[11];
444
445 sprintf(buf, "0x%08X", len);
Simon Glass382bee52017-08-03 12:22:09 -0600446 env_set(var, buf);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000447 } else
448 return CMD_RET_USAGE;
449 return 0;
450 } else {
451 printf("libfdt fdt_getprop(): %s\n",
452 fdt_strerror(len));
453 return 1;
454 }
455 }
456
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200457 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400458 * Print (recursive) / List (single level)
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200459 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400460 } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400461 int depth = MAX_LEVEL; /* how deep to print */
462 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400463 char *prop; /* property */
464 int ret; /* return value */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500465 static char root[2] = "/";
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400466
467 /*
468 * list is an alias for print, but limited to 1 level
469 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400470 if (argv[1][0] == 'l') {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400471 depth = 1;
472 }
473
474 /*
475 * Get the starting path. The root node is an oddball,
476 * the offset is zero and has no name.
477 */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500478 if (argc == 2)
479 pathp = root;
480 else
481 pathp = argv[2];
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400482 if (argc > 3)
483 prop = argv[3];
484 else
485 prop = NULL;
486
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400487 ret = fdt_print(pathp, prop, depth);
488 if (ret != 0)
489 return ret;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400490
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200491 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400492 * Remove a property/node
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200493 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400494 } else if (strncmp(argv[1], "rm", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400495 int nodeoffset; /* node offset from libfdt */
496 int err;
497
498 /*
499 * Get the path. The root node is an oddball, the offset
500 * is zero and has no name.
501 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500502 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
Gerald Van Baren25114032007-05-12 09:47:25 -0400503 if (nodeoffset < 0) {
504 /*
505 * Not found or something else bad happened.
506 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500507 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400508 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400509 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400510 }
511 /*
512 * Do the delete. A fourth parameter means delete a property,
513 * otherwise delete the node.
514 */
515 if (argc > 3) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500516 err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400517 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400518 printf("libfdt fdt_delprop(): %s\n",
519 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400520 return err;
521 }
522 } else {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500523 err = fdt_del_node(working_fdt, nodeoffset);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400524 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400525 printf("libfdt fdt_del_node(): %s\n",
526 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400527 return err;
528 }
529 }
Kumar Gala804887e2008-02-15 03:34:36 -0600530
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200531 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600532 * Display header info
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200533 */
Kumar Gala804887e2008-02-15 03:34:36 -0600534 } else if (argv[1][0] == 'h') {
Heiko Schocher82441272018-11-15 06:06:06 +0100535 if (argc == 5)
536 return fdt_get_header_value(argc, argv);
537
Kim Phillipse489b9c2008-06-10 11:06:17 -0500538 u32 version = fdt_version(working_fdt);
539 printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt));
540 printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt),
541 fdt_totalsize(working_fdt));
542 printf("off_dt_struct:\t\t0x%x\n",
543 fdt_off_dt_struct(working_fdt));
544 printf("off_dt_strings:\t\t0x%x\n",
545 fdt_off_dt_strings(working_fdt));
546 printf("off_mem_rsvmap:\t\t0x%x\n",
547 fdt_off_mem_rsvmap(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600548 printf("version:\t\t%d\n", version);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500549 printf("last_comp_version:\t%d\n",
550 fdt_last_comp_version(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600551 if (version >= 2)
552 printf("boot_cpuid_phys:\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500553 fdt_boot_cpuid_phys(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600554 if (version >= 3)
555 printf("size_dt_strings:\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500556 fdt_size_dt_strings(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600557 if (version >= 17)
558 printf("size_dt_struct:\t\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500559 fdt_size_dt_struct(working_fdt));
560 printf("number mem_rsv:\t\t0x%x\n",
561 fdt_num_mem_rsv(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600562 printf("\n");
563
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200564 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600565 * Set boot cpu id
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200566 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400567 } else if (strncmp(argv[1], "boo", 3) == 0) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600568 unsigned long tmp = hextoul(argv[2], NULL);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500569 fdt_set_boot_cpuid_phys(working_fdt, tmp);
Kumar Gala804887e2008-02-15 03:34:36 -0600570
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200571 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600572 * memory command
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200573 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400574 } else if (strncmp(argv[1], "me", 2) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600575 uint64_t addr, size;
576 int err;
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100577 addr = simple_strtoull(argv[2], NULL, 16);
578 size = simple_strtoull(argv[3], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500579 err = fdt_fixup_memory(working_fdt, addr, size);
Kumar Gala804887e2008-02-15 03:34:36 -0600580 if (err < 0)
581 return err;
582
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200583 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600584 * mem reserve commands
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200585 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400586 } else if (strncmp(argv[1], "rs", 2) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600587 if (argv[2][0] == 'p') {
588 uint64_t addr, size;
Kim Phillipse489b9c2008-06-10 11:06:17 -0500589 int total = fdt_num_mem_rsv(working_fdt);
Kumar Gala804887e2008-02-15 03:34:36 -0600590 int j, err;
591 printf("index\t\t start\t\t size\n");
592 printf("-------------------------------"
593 "-----------------\n");
594 for (j = 0; j < total; j++) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500595 err = fdt_get_mem_rsv(working_fdt, j, &addr, &size);
Kumar Gala804887e2008-02-15 03:34:36 -0600596 if (err < 0) {
597 printf("libfdt fdt_get_mem_rsv(): %s\n",
598 fdt_strerror(err));
599 return err;
600 }
601 printf(" %x\t%08x%08x\t%08x%08x\n", j,
602 (u32)(addr >> 32),
603 (u32)(addr & 0xffffffff),
604 (u32)(size >> 32),
605 (u32)(size & 0xffffffff));
606 }
607 } else if (argv[2][0] == 'a') {
608 uint64_t addr, size;
609 int err;
Kumar Gala804887e2008-02-15 03:34:36 -0600610 addr = simple_strtoull(argv[3], NULL, 16);
611 size = simple_strtoull(argv[4], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500612 err = fdt_add_mem_rsv(working_fdt, addr, size);
Kumar Gala804887e2008-02-15 03:34:36 -0600613
614 if (err < 0) {
615 printf("libfdt fdt_add_mem_rsv(): %s\n",
616 fdt_strerror(err));
617 return err;
618 }
619 } else if (argv[2][0] == 'd') {
Simon Glass7e5f4602021-07-24 09:03:29 -0600620 unsigned long idx = hextoul(argv[3], NULL);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500621 int err = fdt_del_mem_rsv(working_fdt, idx);
Kumar Gala804887e2008-02-15 03:34:36 -0600622
623 if (err < 0) {
624 printf("libfdt fdt_del_mem_rsv(): %s\n",
625 fdt_strerror(err));
626 return err;
627 }
628 } else {
629 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000630 return CMD_RET_USAGE;
Kumar Gala804887e2008-02-15 03:34:36 -0600631 }
Kim Phillips99dffca2007-07-17 13:57:04 -0500632 }
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400633#ifdef CONFIG_OF_BOARD_SETUP
Kim Phillips99dffca2007-07-17 13:57:04 -0500634 /* Call the board-specific fixup routine */
Simon Glass4ba98dc2014-10-23 18:58:48 -0600635 else if (strncmp(argv[1], "boa", 3) == 0) {
636 int err = ft_board_setup(working_fdt, gd->bd);
637
638 if (err) {
639 printf("Failed to update board information in FDT: %s\n",
640 fdt_strerror(err));
641 return CMD_RET_FAILURE;
642 }
Tom Rinif899cc12021-09-12 20:32:32 -0400643#ifdef CONFIG_ARCH_KEYSTONE
Nicholas Faustini2c76d312018-10-03 12:58:48 +0200644 ft_board_setup_ex(working_fdt, gd->bd);
645#endif
Simon Glass4ba98dc2014-10-23 18:58:48 -0600646 }
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400647#endif
Kim Phillips99dffca2007-07-17 13:57:04 -0500648 /* Create a chosen node */
Heiko Schocher097dd3e2014-03-03 12:19:24 +0100649 else if (strncmp(argv[1], "cho", 3) == 0) {
Kumar Galaf953d992008-08-15 08:24:34 -0500650 unsigned long initrd_start = 0, initrd_end = 0;
651
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200652 if ((argc != 2) && (argc != 4))
Simon Glass4c12eeb2011-12-10 08:44:01 +0000653 return CMD_RET_USAGE;
Kumar Galaf953d992008-08-15 08:24:34 -0500654
655 if (argc == 4) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600656 initrd_start = hextoul(argv[2], NULL);
Sean Andersondbf6f7c2022-03-22 16:59:21 -0400657 initrd_end = initrd_start + hextoul(argv[3], NULL) - 1;
Kumar Galaf953d992008-08-15 08:24:34 -0500658 }
659
Masahiro Yamadabc6ed0f2014-04-18 17:41:00 +0900660 fdt_chosen(working_fdt);
Masahiro Yamadadbe963a2014-04-18 17:40:59 +0900661 fdt_initrd(working_fdt, initrd_start, initrd_end);
Heiko Schocher097dd3e2014-03-03 12:19:24 +0100662
663#if defined(CONFIG_FIT_SIGNATURE)
664 } else if (strncmp(argv[1], "che", 3) == 0) {
665 int cfg_noffset;
666 int ret;
667 unsigned long addr;
668 struct fdt_header *blob;
669
670 if (!working_fdt)
671 return CMD_RET_FAILURE;
672
673 if (argc > 2) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600674 addr = hextoul(argv[2], NULL);
Heiko Schocher097dd3e2014-03-03 12:19:24 +0100675 blob = map_sysmem(addr, 0);
676 } else {
677 blob = (struct fdt_header *)gd->fdt_blob;
678 }
679 if (!fdt_valid(&blob))
680 return 1;
681
682 gd->fdt_blob = blob;
683 cfg_noffset = fit_conf_get_node(working_fdt, NULL);
684 if (!cfg_noffset) {
685 printf("Could not find configuration node: %s\n",
686 fdt_strerror(cfg_noffset));
687 return CMD_RET_FAILURE;
688 }
689
690 ret = fit_config_verify(working_fdt, cfg_noffset);
Simon Glass12df2ab2014-06-12 07:24:45 -0600691 if (ret == 0)
Heiko Schocher097dd3e2014-03-03 12:19:24 +0100692 return CMD_RET_SUCCESS;
693 else
694 return CMD_RET_FAILURE;
695#endif
696
Kumar Gala40afac22008-08-15 08:24:44 -0500697 }
Maxime Riparde6628ad2016-07-05 10:26:45 +0200698#ifdef CONFIG_OF_LIBFDT_OVERLAY
699 /* apply an overlay */
700 else if (strncmp(argv[1], "ap", 2) == 0) {
701 unsigned long addr;
702 struct fdt_header *blob;
Stefan Agner082b1412016-12-20 15:58:45 +0100703 int ret;
Maxime Riparde6628ad2016-07-05 10:26:45 +0200704
705 if (argc != 3)
706 return CMD_RET_USAGE;
707
708 if (!working_fdt)
709 return CMD_RET_FAILURE;
710
Simon Glass7e5f4602021-07-24 09:03:29 -0600711 addr = hextoul(argv[2], NULL);
Maxime Riparde6628ad2016-07-05 10:26:45 +0200712 blob = map_sysmem(addr, 0);
713 if (!fdt_valid(&blob))
714 return CMD_RET_FAILURE;
715
Pantelis Antoniou81ecc5d2017-09-04 23:12:12 +0300716 /* apply method prints messages on error */
717 ret = fdt_overlay_apply_verbose(working_fdt, blob);
718 if (ret)
Maxime Riparde6628ad2016-07-05 10:26:45 +0200719 return CMD_RET_FAILURE;
720 }
721#endif
Kumar Gala40afac22008-08-15 08:24:44 -0500722 /* resize the fdt */
723 else if (strncmp(argv[1], "re", 2) == 0) {
Hannes Schmelzeref476832016-09-20 18:10:43 +0200724 uint extrasize;
725 if (argc > 2)
Simon Glass7e5f4602021-07-24 09:03:29 -0600726 extrasize = hextoul(argv[2], NULL);
Hannes Schmelzeref476832016-09-20 18:10:43 +0200727 else
728 extrasize = 0;
729 fdt_shrink_to_minimum(working_fdt, extrasize);
Kumar Gala40afac22008-08-15 08:24:44 -0500730 }
731 else {
Kim Phillips99dffca2007-07-17 13:57:04 -0500732 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000733 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400734 }
735
736 return 0;
737}
738
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400739/****************************************************************************/
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400740
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400741/*
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400742 * Parse the user's input, partially heuristic. Valid formats:
Andy Fleming4abd8442008-03-31 20:45:56 -0500743 * <0x00112233 4 05> - an array of cells. Numbers follow standard
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200744 * C conventions.
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400745 * [00 11 22 .. nn] - byte stream
746 * "string" - If the the value doesn't start with "<" or "[", it is
747 * treated as a string. Note that the quotes are
748 * stripped by the parser before we get the string.
Andy Fleming4abd8442008-03-31 20:45:56 -0500749 * newval: An array of strings containing the new property as specified
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200750 * on the command line
Andy Fleming4abd8442008-03-31 20:45:56 -0500751 * count: The number of strings in the array
752 * data: A bytestream to be placed in the property
753 * len: The length of the resulting bytestream
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400754 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200755static int fdt_parse_prop(char * const *newval, int count, char *data, int *len)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400756{
757 char *cp; /* temporary char pointer */
Andy Fleming4abd8442008-03-31 20:45:56 -0500758 char *newp; /* temporary newval char pointer */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400759 unsigned long tmp; /* holds converted values */
Andy Fleming4abd8442008-03-31 20:45:56 -0500760 int stridx = 0;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400761
Andy Fleming4abd8442008-03-31 20:45:56 -0500762 *len = 0;
763 newp = newval[0];
764
765 /* An array of cells */
766 if (*newp == '<') {
767 newp++;
768 while ((*newp != '>') && (stridx < count)) {
769 /*
770 * Keep searching until we find that last ">"
771 * That way users don't have to escape the spaces
772 */
773 if (*newp == '\0') {
774 newp = newval[++stridx];
775 continue;
776 }
777
778 cp = newp;
779 tmp = simple_strtoul(cp, &newp, 0);
Hannes Schmelzer9620d872017-05-30 15:05:44 +0200780 if (*cp != '?')
781 *(fdt32_t *)data = cpu_to_fdt32(tmp);
782 else
783 newp++;
784
Andy Fleming4abd8442008-03-31 20:45:56 -0500785 data += 4;
786 *len += 4;
787
788 /* If the ptr didn't advance, something went wrong */
789 if ((newp - cp) <= 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400790 printf("Sorry, I could not convert \"%s\"\n",
791 cp);
792 return 1;
793 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500794
795 while (*newp == ' ')
796 newp++;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400797 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500798
799 if (*newp != '>') {
800 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400801 return 1;
802 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500803 } else if (*newp == '[') {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400804 /*
805 * Byte stream. Convert the values.
806 */
Andy Fleming4abd8442008-03-31 20:45:56 -0500807 newp++;
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500808 while ((stridx < count) && (*newp != ']')) {
809 while (*newp == ' ')
810 newp++;
811 if (*newp == '\0') {
812 newp = newval[++stridx];
813 continue;
814 }
815 if (!isxdigit(*newp))
816 break;
Simon Glass7e5f4602021-07-24 09:03:29 -0600817 tmp = hextoul(newp, &newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400818 *data++ = tmp & 0xFF;
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400819 *len = *len + 1;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400820 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500821 if (*newp != ']') {
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700822 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400823 return 1;
824 }
825 } else {
826 /*
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500827 * Assume it is one or more strings. Copy it into our
828 * data area for convenience (including the
829 * terminating '\0's).
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400830 */
Andy Fleming4abd8442008-03-31 20:45:56 -0500831 while (stridx < count) {
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500832 size_t length = strlen(newp) + 1;
Andy Fleming4abd8442008-03-31 20:45:56 -0500833 strcpy(data, newp);
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500834 data += length;
835 *len += length;
Andy Fleming4abd8442008-03-31 20:45:56 -0500836 newp = newval[++stridx];
837 }
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400838 }
839 return 0;
840}
841
842/****************************************************************************/
843
844/*
845 * Heuristic to guess if this is a string or concatenated strings.
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400846 */
847
848static int is_printable_string(const void *data, int len)
849{
850 const char *s = data;
851
852 /* zero length is not */
853 if (len == 0)
854 return 0;
855
Joe Hershberger8805bee2012-08-17 10:34:38 +0000856 /* must terminate with zero or '\n' */
857 if (s[len - 1] != '\0' && s[len - 1] != '\n')
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400858 return 0;
859
860 /* printable or a null byte (concatenated strings) */
Joe Hershberger8805bee2012-08-17 10:34:38 +0000861 while (((*s == '\0') || isprint(*s) || isspace(*s)) && (len > 0)) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400862 /*
863 * If we see a null, there are three possibilities:
864 * 1) If len == 1, it is the end of the string, printable
865 * 2) Next character also a null, not printable.
866 * 3) Next character not a null, continue to check.
867 */
868 if (s[0] == '\0') {
869 if (len == 1)
870 return 1;
871 if (s[1] == '\0')
872 return 0;
873 }
874 s++;
875 len--;
876 }
877
878 /* Not the null termination, or not done yet: not printable */
879 if (*s != '\0' || (len != 0))
880 return 0;
881
882 return 1;
883}
884
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400885
886/*
887 * Print the property in the best format, a heuristic guess. Print as
888 * a string, concatenated strings, a byte, word, double word, or (if all
889 * else fails) it is printed as a stream of bytes.
890 */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400891static void print_data(const void *data, int len)
892{
893 int j;
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200894 const char *env_max_dump;
895 ulong max_dump = ULONG_MAX;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400896
897 /* no data, don't print */
898 if (len == 0)
899 return;
900
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200901 env_max_dump = env_get("fdt_max_dump");
902 if (env_max_dump)
Simon Glass7e5f4602021-07-24 09:03:29 -0600903 max_dump = hextoul(env_max_dump, NULL);
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200904
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400905 /*
906 * It is a string, but it may have multiple strings (embedded '\0's).
907 */
908 if (is_printable_string(data, len)) {
909 puts("\"");
910 j = 0;
911 while (j < len) {
912 if (j > 0)
913 puts("\", \"");
914 puts(data);
915 j += strlen(data) + 1;
916 data += strlen(data) + 1;
917 }
918 puts("\"");
919 return;
920 }
921
Andy Fleming4abd8442008-03-31 20:45:56 -0500922 if ((len %4) == 0) {
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200923 if (len > max_dump)
Tom Rini085b9c32012-10-29 14:53:18 +0000924 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000925 else {
Kim Phillips088f1b12012-10-29 13:34:31 +0000926 const __be32 *p;
Andy Fleming4abd8442008-03-31 20:45:56 -0500927
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000928 printf("<");
929 for (j = 0, p = data; j < len/4; j++)
930 printf("0x%08x%s", fdt32_to_cpu(p[j]),
931 j < (len/4 - 1) ? " " : "");
932 printf(">");
933 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500934 } else { /* anything else... hexdump */
Heinrich Schuchardt43913f02020-06-19 19:45:55 +0200935 if (len > max_dump)
Tom Rini085b9c32012-10-29 14:53:18 +0000936 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000937 else {
938 const u8 *s;
Andy Fleming4abd8442008-03-31 20:45:56 -0500939
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000940 printf("[");
941 for (j = 0, s = data; j < len; j++)
942 printf("%02x%s", s[j], j < len - 1 ? " " : "");
943 printf("]");
944 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400945 }
946}
947
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400948/****************************************************************************/
949
950/*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500951 * Recursively print (a portion of) the working_fdt. The depth parameter
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400952 * determines how deeply nested the fdt is printed.
953 */
Kumar Galadbaf07c2007-11-21 14:07:46 -0600954static int fdt_print(const char *pathp, char *prop, int depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400955{
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400956 static char tabs[MAX_LEVEL+1] =
957 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
958 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
Kumar Galadbaf07c2007-11-21 14:07:46 -0600959 const void *nodep; /* property node pointer */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400960 int nodeoffset; /* node offset from libfdt */
961 int nextoffset; /* next node offset from libfdt */
962 uint32_t tag; /* tag */
963 int len; /* length of the property */
964 int level = 0; /* keep track of nesting level */
Gerald Van Baren91623522007-11-22 17:23:23 -0500965 const struct fdt_property *fdt_prop;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400966
Kim Phillipse489b9c2008-06-10 11:06:17 -0500967 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400968 if (nodeoffset < 0) {
969 /*
970 * Not found or something else bad happened.
971 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500972 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400973 fdt_strerror(nodeoffset));
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400974 return 1;
975 }
976 /*
977 * The user passed in a property as well as node path.
978 * Print only the given property and then return.
979 */
980 if (prop) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500981 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400982 if (len == 0) {
983 /* no property value */
984 printf("%s %s\n", pathp, prop);
985 return 0;
Simon Glass9f952672017-06-07 10:28:42 -0600986 } else if (nodep && len > 0) {
Gerald Van Baren28f384b2007-11-23 19:43:20 -0500987 printf("%s = ", prop);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400988 print_data (nodep, len);
989 printf("\n");
990 return 0;
991 } else {
992 printf ("libfdt fdt_getprop(): %s\n",
993 fdt_strerror(len));
994 return 1;
995 }
996 }
997
998 /*
999 * The user passed in a node path and no property,
1000 * print the node and all subnodes.
1001 */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001002 while(level >= 0) {
Kim Phillipse489b9c2008-06-10 11:06:17 -05001003 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001004 switch(tag) {
1005 case FDT_BEGIN_NODE:
Kim Phillipse489b9c2008-06-10 11:06:17 -05001006 pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
Gerald Van Baren91623522007-11-22 17:23:23 -05001007 if (level <= depth) {
1008 if (pathp == NULL)
1009 pathp = "/* NULL pointer error */";
1010 if (*pathp == '\0')
1011 pathp = "/"; /* root is nameless */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001012 printf("%s%s {\n",
1013 &tabs[MAX_LEVEL - level], pathp);
Gerald Van Baren91623522007-11-22 17:23:23 -05001014 }
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001015 level++;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001016 if (level >= MAX_LEVEL) {
Gerald Van Baren91623522007-11-22 17:23:23 -05001017 printf("Nested too deep, aborting.\n");
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001018 return 1;
1019 }
1020 break;
1021 case FDT_END_NODE:
1022 level--;
Gerald Van Baren91623522007-11-22 17:23:23 -05001023 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001024 printf("%s};\n", &tabs[MAX_LEVEL - level]);
1025 if (level == 0) {
1026 level = -1; /* exit the loop */
1027 }
1028 break;
1029 case FDT_PROP:
Kim Phillipse489b9c2008-06-10 11:06:17 -05001030 fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
Gerald Van Baren91623522007-11-22 17:23:23 -05001031 sizeof(*fdt_prop));
Kim Phillipse489b9c2008-06-10 11:06:17 -05001032 pathp = fdt_string(working_fdt,
Gerald Van Baren91623522007-11-22 17:23:23 -05001033 fdt32_to_cpu(fdt_prop->nameoff));
1034 len = fdt32_to_cpu(fdt_prop->len);
1035 nodep = fdt_prop->data;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001036 if (len < 0) {
1037 printf ("libfdt fdt_getprop(): %s\n",
1038 fdt_strerror(len));
1039 return 1;
1040 } else if (len == 0) {
1041 /* the property has no value */
Gerald Van Baren91623522007-11-22 17:23:23 -05001042 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001043 printf("%s%s;\n",
1044 &tabs[MAX_LEVEL - level],
1045 pathp);
1046 } else {
Gerald Van Baren91623522007-11-22 17:23:23 -05001047 if (level <= depth) {
Gerald Van Baren28f384b2007-11-23 19:43:20 -05001048 printf("%s%s = ",
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001049 &tabs[MAX_LEVEL - level],
1050 pathp);
1051 print_data (nodep, len);
1052 printf(";\n");
1053 }
1054 }
1055 break;
1056 case FDT_NOP:
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -07001057 printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001058 break;
1059 case FDT_END:
1060 return 1;
1061 default:
Gerald Van Baren91623522007-11-22 17:23:23 -05001062 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -04001063 printf("Unknown tag 0x%08X\n", tag);
1064 return 1;
1065 }
1066 nodeoffset = nextoffset;
1067 }
1068 return 0;
1069}
1070
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001071/********************************************************************/
Kim Phillips088f1b12012-10-29 13:34:31 +00001072#ifdef CONFIG_SYS_LONGHELP
1073static char fdt_help_text[] =
Heinrich Schuchardte4269632022-04-25 18:35:05 +02001074 "addr [-c] [-q] <addr> [<size>] - Set the [control] fdt location to <addr>\n"
Maxime Riparde6628ad2016-07-05 10:26:45 +02001075#ifdef CONFIG_OF_LIBFDT_OVERLAY
1076 "fdt apply <addr> - Apply overlay to the DT\n"
1077#endif
Gerald Van Barenfd61e552007-06-25 23:25:28 -04001078#ifdef CONFIG_OF_BOARD_SETUP
1079 "fdt boardsetup - Do board-specific set up\n"
1080#endif
Simon Glassc654b512014-10-23 18:58:54 -06001081#ifdef CONFIG_OF_SYSTEM_SETUP
1082 "fdt systemsetup - Do system-specific set up\n"
1083#endif
Gerald Van Baren238cb7a2008-01-05 15:33:29 -05001084 "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n"
Hannes Schmelzeref476832016-09-20 18:10:43 +02001085 "fdt resize [<extrasize>] - Resize fdt to size + padding to 4k addr + some optional <extrasize> if needed\n"
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001086 "fdt print <path> [<prop>] - Recursive print starting at <path>\n"
1087 "fdt list <path> [<prop>] - Print one level starting at <path>\n"
Joe Hershbergerbc802952012-08-17 10:34:37 +00001088 "fdt get value <var> <path> <prop> - Get <property> and store in <var>\n"
1089 "fdt get name <var> <path> <index> - Get name of node <index> and store in <var>\n"
1090 "fdt get addr <var> <path> <prop> - Get start address of <property> and store in <var>\n"
1091 "fdt get size <var> <path> [<prop>] - Get size of [<property>] or num nodes and store in <var>\n"
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001092 "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n"
1093 "fdt mknode <path> <node> - Create a new node after <path>\n"
1094 "fdt rm <path> [<prop>] - Delete the node or <property>\n"
Heiko Schocher82441272018-11-15 06:06:06 +01001095 "fdt header [get <var> <member>] - Display header info\n"
1096 " get - get header member <member> and store it in <var>\n"
Kumar Gala804887e2008-02-15 03:34:36 -06001097 "fdt bootcpu <id> - Set boot cpuid\n"
1098 "fdt memory <addr> <size> - Add/Update memory node\n"
1099 "fdt rsvmem print - Show current mem reserves\n"
1100 "fdt rsvmem add <addr> <size> - Add a mem reserve\n"
1101 "fdt rsvmem delete <index> - Delete a mem reserves\n"
Sean Andersondbf6f7c2022-03-22 16:59:21 -04001102 "fdt chosen [<start> <size>] - Add/update the /chosen branch in the tree\n"
1103 " <start>/<size> - initrd start addr/size\n"
Heiko Schocher097dd3e2014-03-03 12:19:24 +01001104#if defined(CONFIG_FIT_SIGNATURE)
1105 "fdt checksign [<addr>] - check FIT signature\n"
1106 " <start> - addr of key blob\n"
1107 " default gd->fdt_blob\n"
1108#endif
Robert P. J. Day1cc0a9f2016-05-04 04:47:31 -04001109 "NOTE: Dereference aliases by omitting the leading '/', "
Kim Phillips088f1b12012-10-29 13:34:31 +00001110 "e.g. fdt print ethernet0.";
1111#endif
1112
1113U_BOOT_CMD(
1114 fdt, 255, 0, do_fdt,
1115 "flattened device tree utility commands", fdt_help_text
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001116);