blob: edefd77733177f23068e775af45d9e02c6aef4e2 [file] [log] [blame]
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001/*
2 * (C) Copyright 2007
3 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com
4 * Based on code written by:
5 * Pantelis Antoniou <pantelis.antoniou@gmail.com> and
6 * Matthew McClintock <msm@freescale.com>
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27#include <common.h>
28#include <command.h>
29#include <linux/ctype.h>
30#include <linux/types.h>
Gerald Van Baren781e09e2007-03-31 12:22:10 -040031#include <asm/global_data.h>
Gerald Van Baren781e09e2007-03-31 12:22:10 -040032#include <libfdt.h>
Gerald Van Baren64dbbd42007-04-06 14:19:43 -040033#include <fdt_support.h>
Simon Glassa92fd652013-04-20 08:42:45 +000034#include <asm/io.h>
Gerald Van Baren781e09e2007-03-31 12:22:10 -040035
36#define MAX_LEVEL 32 /* how deeply nested we will go */
Gerald Van Barenfd61e552007-06-25 23:25:28 -040037#define SCRATCHPAD 1024 /* bytes of scratchpad memory */
Joe Hershbergerf0a29d42012-08-17 10:34:36 +000038#ifndef CONFIG_CMD_FDT_MAX_DUMP
39#define CONFIG_CMD_FDT_MAX_DUMP 64
40#endif
Gerald Van Baren781e09e2007-03-31 12:22:10 -040041
42/*
43 * Global data (for the gd->bd)
44 */
45DECLARE_GLOBAL_DATA_PTR;
46
Simon Glassd14da912013-04-20 08:42:42 +000047static int fdt_valid(struct fdt_header **blobp);
Wolfgang Denk54841ab2010-06-28 22:00:46 +020048static int fdt_parse_prop(char *const*newval, int count, char *data, int *len);
Kumar Galadbaf07c2007-11-21 14:07:46 -060049static int fdt_print(const char *pathp, char *prop, int depth);
Joe Hershbergerbc802952012-08-17 10:34:37 +000050static int is_printable_string(const void *data, int len);
Gerald Van Baren781e09e2007-03-31 12:22:10 -040051
Gerald Van Baren781e09e2007-03-31 12:22:10 -040052/*
Gerald Van Barenae9e97f2008-06-10 22:15:58 -040053 * The working_fdt points to our working flattened device tree.
54 */
55struct fdt_header *working_fdt;
56
Kumar Gala54f9c862008-08-15 08:24:39 -050057void set_working_fdt_addr(void *addr)
58{
Simon Glassa92fd652013-04-20 08:42:45 +000059 void *buf;
60
61 buf = map_sysmem((ulong)addr, 0);
62 working_fdt = buf;
Simon Glassbfc59962013-02-24 17:33:21 +000063 setenv_addr("fdtaddr", addr);
Kumar Gala54f9c862008-08-15 08:24:39 -050064}
65
Gerald Van Barenae9e97f2008-06-10 22:15:58 -040066/*
Joe Hershbergerbc802952012-08-17 10:34:37 +000067 * Get a value from the fdt and format it to be set in the environment
68 */
69static int fdt_value_setenv(const void *nodep, int len, const char *var)
70{
71 if (is_printable_string(nodep, len))
72 setenv(var, (void *)nodep);
73 else if (len == 4) {
74 char buf[11];
75
76 sprintf(buf, "0x%08X", *(uint32_t *)nodep);
77 setenv(var, buf);
78 } else if (len%4 == 0 && len <= 20) {
79 /* Needed to print things like sha1 hashes. */
80 char buf[41];
81 int i;
82
83 for (i = 0; i < len; i += sizeof(unsigned int))
84 sprintf(buf + (i * 2), "%08x",
85 *(unsigned int *)(nodep + i));
86 setenv(var, buf);
87 } else {
88 printf("error: unprintable value\n");
89 return 1;
90 }
91 return 0;
92}
93
94/*
Gerald Van Baren781e09e2007-03-31 12:22:10 -040095 * Flattened Device Tree command, see the help for parameter definitions.
96 */
Kim Phillips088f1b12012-10-29 13:34:31 +000097static int do_fdt(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Gerald Van Baren781e09e2007-03-31 12:22:10 -040098{
Wolfgang Denk47e26b12010-07-17 01:06:04 +020099 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000100 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400101
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200102 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400103 * Set the address of the fdt
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200104 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400105 if (argv[1][0] == 'a') {
Kumar Gala54f9c862008-08-15 08:24:39 -0500106 unsigned long addr;
Simon Glass4b578652013-04-20 08:42:44 +0000107 int control = 0;
108 struct fdt_header *blob;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400109 /*
110 * Set the address [and length] of the fdt.
111 */
Simon Glass4b578652013-04-20 08:42:44 +0000112 argc -= 2;
113 argv += 2;
114/* Temporary #ifdef - some archs don't have fdt_blob yet */
115#ifdef CONFIG_OF_CONTROL
116 if (argc && !strcmp(*argv, "-c")) {
117 control = 1;
118 argc--;
119 argv++;
120 }
121#endif
122 if (argc == 0) {
123 if (control)
124 blob = (struct fdt_header *)gd->fdt_blob;
125 else
126 blob = working_fdt;
127 if (!blob || !fdt_valid(&blob))
Kumar Gala7dbc38a2008-08-15 08:24:35 -0500128 return 1;
Simon Glass4b578652013-04-20 08:42:44 +0000129 printf("The address of the fdt is %#08lx\n",
130 control ? (ulong)blob :
131 getenv_hex("fdtaddr", 0));
Kumar Gala7dbc38a2008-08-15 08:24:35 -0500132 return 0;
133 }
134
Simon Glass4b578652013-04-20 08:42:44 +0000135 addr = simple_strtoul(argv[0], NULL, 16);
Simon Glassa92fd652013-04-20 08:42:45 +0000136 blob = map_sysmem(addr, 0);
Simon Glass4b578652013-04-20 08:42:44 +0000137 if (!fdt_valid(&blob))
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400138 return 1;
Simon Glass4b578652013-04-20 08:42:44 +0000139 if (control)
140 gd->fdt_blob = blob;
141 else
Simon Glassa92fd652013-04-20 08:42:45 +0000142 set_working_fdt_addr(blob);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400143
Simon Glass4b578652013-04-20 08:42:44 +0000144 if (argc >= 2) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400145 int len;
146 int err;
147 /*
148 * Optional new length
149 */
Simon Glass4b578652013-04-20 08:42:44 +0000150 len = simple_strtoul(argv[1], NULL, 16);
151 if (len < fdt_totalsize(blob)) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400152 printf ("New length %d < existing length %d, "
153 "ignoring.\n",
Simon Glass4b578652013-04-20 08:42:44 +0000154 len, fdt_totalsize(blob));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400155 } else {
156 /*
157 * Open in place with a new length.
158 */
Simon Glass4b578652013-04-20 08:42:44 +0000159 err = fdt_open_into(blob, blob, len);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400160 if (err != 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400161 printf ("libfdt fdt_open_into(): %s\n",
162 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400163 }
164 }
165 }
166
Marek Vasute02c9452012-09-05 08:34:44 +0200167 return CMD_RET_SUCCESS;
168 }
169
170 if (!working_fdt) {
171 puts(
172 "No FDT memory address configured. Please configure\n"
173 "the FDT address via \"fdt addr <address>\" command.\n"
174 "Aborting!\n");
175 return CMD_RET_FAILURE;
176 }
177
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200178 /*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500179 * Move the working_fdt
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200180 */
Marek Vasute02c9452012-09-05 08:34:44 +0200181 if (strncmp(argv[1], "mo", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400182 struct fdt_header *newaddr;
183 int len;
184 int err;
185
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200186 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000187 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400188
189 /*
190 * Set the address and length of the fdt.
191 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500192 working_fdt = (struct fdt_header *)simple_strtoul(argv[2], NULL, 16);
Simon Glassd14da912013-04-20 08:42:42 +0000193 if (!fdt_valid(&working_fdt))
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400194 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400195
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400196 newaddr = (struct fdt_header *)simple_strtoul(argv[3],NULL,16);
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400197
198 /*
199 * If the user specifies a length, use that. Otherwise use the
200 * current length.
201 */
202 if (argc <= 4) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500203 len = fdt_totalsize(working_fdt);
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400204 } else {
205 len = simple_strtoul(argv[4], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500206 if (len < fdt_totalsize(working_fdt)) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400207 printf ("New length 0x%X < existing length "
208 "0x%X, aborting.\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500209 len, fdt_totalsize(working_fdt));
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400210 return 1;
211 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400212 }
213
214 /*
215 * Copy to the new location.
216 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500217 err = fdt_open_into(working_fdt, newaddr, len);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400218 if (err != 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400219 printf ("libfdt fdt_open_into(): %s\n",
220 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400221 return 1;
222 }
Kim Phillipse489b9c2008-06-10 11:06:17 -0500223 working_fdt = newaddr;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400224
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200225 /*
Gerald Van Baren25114032007-05-12 09:47:25 -0400226 * Make a new node
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200227 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400228 } else if (strncmp(argv[1], "mk", 2) == 0) {
Gerald Van Baren25114032007-05-12 09:47:25 -0400229 char *pathp; /* path */
230 char *nodep; /* new node to add */
231 int nodeoffset; /* node offset from libfdt */
232 int err;
233
234 /*
235 * Parameters: Node path, new node to be appended to the path.
236 */
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200237 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000238 return CMD_RET_USAGE;
Gerald Van Baren25114032007-05-12 09:47:25 -0400239
240 pathp = argv[2];
241 nodep = argv[3];
242
Kim Phillipse489b9c2008-06-10 11:06:17 -0500243 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400244 if (nodeoffset < 0) {
245 /*
246 * Not found or something else bad happened.
247 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500248 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400249 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400250 return 1;
251 }
Kim Phillipse489b9c2008-06-10 11:06:17 -0500252 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
Gerald Van Baren25114032007-05-12 09:47:25 -0400253 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400254 printf ("libfdt fdt_add_subnode(): %s\n",
255 fdt_strerror(err));
Gerald Van Baren25114032007-05-12 09:47:25 -0400256 return 1;
257 }
258
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200259 /*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500260 * Set the value of a property in the working_fdt.
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200261 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400262 } else if (argv[1][0] == 's') {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400263 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400264 char *prop; /* property */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400265 int nodeoffset; /* node offset from libfdt */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400266 static char data[SCRATCHPAD]; /* storage for the property */
267 int len; /* new length of the property */
268 int ret; /* return value */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400269
270 /*
Gerald Van Barenea6d8be2008-01-05 14:52:04 -0500271 * Parameters: Node path, property, optional value.
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400272 */
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200273 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000274 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400275
276 pathp = argv[2];
277 prop = argv[3];
Gerald Van Barenea6d8be2008-01-05 14:52:04 -0500278 if (argc == 4) {
279 len = 0;
280 } else {
Andy Fleming4abd8442008-03-31 20:45:56 -0500281 ret = fdt_parse_prop(&argv[4], argc - 4, data, &len);
Gerald Van Barenea6d8be2008-01-05 14:52:04 -0500282 if (ret != 0)
283 return ret;
284 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400285
Kim Phillipse489b9c2008-06-10 11:06:17 -0500286 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400287 if (nodeoffset < 0) {
288 /*
289 * Not found or something else bad happened.
290 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500291 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400292 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400293 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400294 }
Gerald Van Baren25114032007-05-12 09:47:25 -0400295
Kim Phillipse489b9c2008-06-10 11:06:17 -0500296 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
Gerald Van Baren25114032007-05-12 09:47:25 -0400297 if (ret < 0) {
298 printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
299 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400300 }
301
Joe Hershbergerbc802952012-08-17 10:34:37 +0000302 /********************************************************************
303 * Get the value of a property in the working_fdt.
304 ********************************************************************/
305 } else if (argv[1][0] == 'g') {
306 char *subcmd; /* sub-command */
307 char *pathp; /* path */
308 char *prop; /* property */
309 char *var; /* variable to store result */
310 int nodeoffset; /* node offset from libfdt */
311 const void *nodep; /* property node pointer */
312 int len = 0; /* new length of the property */
313
314 /*
315 * Parameters: Node path, property, optional value.
316 */
317 if (argc < 5)
318 return CMD_RET_USAGE;
319
320 subcmd = argv[2];
321
322 if (argc < 6 && subcmd[0] != 's')
323 return CMD_RET_USAGE;
324
325 var = argv[3];
326 pathp = argv[4];
327 prop = argv[5];
328
329 nodeoffset = fdt_path_offset(working_fdt, pathp);
330 if (nodeoffset < 0) {
331 /*
332 * Not found or something else bad happened.
333 */
334 printf("libfdt fdt_path_offset() returned %s\n",
335 fdt_strerror(nodeoffset));
336 return 1;
337 }
338
339 if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) {
340 int reqIndex = -1;
341 int startDepth = fdt_node_depth(
342 working_fdt, nodeoffset);
343 int curDepth = startDepth;
344 int curIndex = -1;
345 int nextNodeOffset = fdt_next_node(
346 working_fdt, nodeoffset, &curDepth);
347
348 if (subcmd[0] == 'n')
349 reqIndex = simple_strtoul(argv[5], NULL, 16);
350
351 while (curDepth > startDepth) {
352 if (curDepth == startDepth + 1)
353 curIndex++;
354 if (subcmd[0] == 'n' && curIndex == reqIndex) {
355 const char *nodeName = fdt_get_name(
356 working_fdt, nextNodeOffset, NULL);
357
358 setenv(var, (char *)nodeName);
359 return 0;
360 }
361 nextNodeOffset = fdt_next_node(
362 working_fdt, nextNodeOffset, &curDepth);
363 if (nextNodeOffset < 0)
364 break;
365 }
366 if (subcmd[0] == 's') {
367 /* get the num nodes at this level */
Simon Glassbfc59962013-02-24 17:33:21 +0000368 setenv_ulong(var, curIndex + 1);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000369 } else {
370 /* node index not found */
371 printf("libfdt node not found\n");
372 return 1;
373 }
374 } else {
375 nodep = fdt_getprop(
376 working_fdt, nodeoffset, prop, &len);
377 if (len == 0) {
378 /* no property value */
379 setenv(var, "");
380 return 0;
381 } else if (len > 0) {
382 if (subcmd[0] == 'v') {
383 int ret;
384
385 ret = fdt_value_setenv(nodep, len, var);
386 if (ret != 0)
387 return ret;
388 } else if (subcmd[0] == 'a') {
389 /* Get address */
390 char buf[11];
391
Tom Rini085b9c32012-10-29 14:53:18 +0000392 sprintf(buf, "0x%p", nodep);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000393 setenv(var, buf);
394 } else if (subcmd[0] == 's') {
395 /* Get size */
396 char buf[11];
397
398 sprintf(buf, "0x%08X", len);
399 setenv(var, buf);
400 } else
401 return CMD_RET_USAGE;
402 return 0;
403 } else {
404 printf("libfdt fdt_getprop(): %s\n",
405 fdt_strerror(len));
406 return 1;
407 }
408 }
409
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200410 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400411 * Print (recursive) / List (single level)
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200412 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400413 } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400414 int depth = MAX_LEVEL; /* how deep to print */
415 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400416 char *prop; /* property */
417 int ret; /* return value */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500418 static char root[2] = "/";
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400419
420 /*
421 * list is an alias for print, but limited to 1 level
422 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400423 if (argv[1][0] == 'l') {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400424 depth = 1;
425 }
426
427 /*
428 * Get the starting path. The root node is an oddball,
429 * the offset is zero and has no name.
430 */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500431 if (argc == 2)
432 pathp = root;
433 else
434 pathp = argv[2];
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400435 if (argc > 3)
436 prop = argv[3];
437 else
438 prop = NULL;
439
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400440 ret = fdt_print(pathp, prop, depth);
441 if (ret != 0)
442 return ret;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400443
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200444 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400445 * Remove a property/node
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200446 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400447 } else if (strncmp(argv[1], "rm", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400448 int nodeoffset; /* node offset from libfdt */
449 int err;
450
451 /*
452 * Get the path. The root node is an oddball, the offset
453 * is zero and has no name.
454 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500455 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
Gerald Van Baren25114032007-05-12 09:47:25 -0400456 if (nodeoffset < 0) {
457 /*
458 * Not found or something else bad happened.
459 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500460 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400461 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400462 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400463 }
464 /*
465 * Do the delete. A fourth parameter means delete a property,
466 * otherwise delete the node.
467 */
468 if (argc > 3) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500469 err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400470 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400471 printf("libfdt fdt_delprop(): %s\n",
472 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400473 return err;
474 }
475 } else {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500476 err = fdt_del_node(working_fdt, nodeoffset);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400477 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400478 printf("libfdt fdt_del_node(): %s\n",
479 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400480 return err;
481 }
482 }
Kumar Gala804887e2008-02-15 03:34:36 -0600483
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200484 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600485 * Display header info
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200486 */
Kumar Gala804887e2008-02-15 03:34:36 -0600487 } else if (argv[1][0] == 'h') {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500488 u32 version = fdt_version(working_fdt);
489 printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt));
490 printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt),
491 fdt_totalsize(working_fdt));
492 printf("off_dt_struct:\t\t0x%x\n",
493 fdt_off_dt_struct(working_fdt));
494 printf("off_dt_strings:\t\t0x%x\n",
495 fdt_off_dt_strings(working_fdt));
496 printf("off_mem_rsvmap:\t\t0x%x\n",
497 fdt_off_mem_rsvmap(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600498 printf("version:\t\t%d\n", version);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500499 printf("last_comp_version:\t%d\n",
500 fdt_last_comp_version(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600501 if (version >= 2)
502 printf("boot_cpuid_phys:\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500503 fdt_boot_cpuid_phys(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600504 if (version >= 3)
505 printf("size_dt_strings:\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500506 fdt_size_dt_strings(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600507 if (version >= 17)
508 printf("size_dt_struct:\t\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500509 fdt_size_dt_struct(working_fdt));
510 printf("number mem_rsv:\t\t0x%x\n",
511 fdt_num_mem_rsv(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600512 printf("\n");
513
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200514 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600515 * Set boot cpu id
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200516 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400517 } else if (strncmp(argv[1], "boo", 3) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600518 unsigned long tmp = simple_strtoul(argv[2], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500519 fdt_set_boot_cpuid_phys(working_fdt, tmp);
Kumar Gala804887e2008-02-15 03:34:36 -0600520
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200521 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600522 * memory command
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200523 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400524 } else if (strncmp(argv[1], "me", 2) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600525 uint64_t addr, size;
526 int err;
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100527 addr = simple_strtoull(argv[2], NULL, 16);
528 size = simple_strtoull(argv[3], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500529 err = fdt_fixup_memory(working_fdt, addr, size);
Kumar Gala804887e2008-02-15 03:34:36 -0600530 if (err < 0)
531 return err;
532
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200533 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600534 * mem reserve commands
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200535 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400536 } else if (strncmp(argv[1], "rs", 2) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600537 if (argv[2][0] == 'p') {
538 uint64_t addr, size;
Kim Phillipse489b9c2008-06-10 11:06:17 -0500539 int total = fdt_num_mem_rsv(working_fdt);
Kumar Gala804887e2008-02-15 03:34:36 -0600540 int j, err;
541 printf("index\t\t start\t\t size\n");
542 printf("-------------------------------"
543 "-----------------\n");
544 for (j = 0; j < total; j++) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500545 err = fdt_get_mem_rsv(working_fdt, j, &addr, &size);
Kumar Gala804887e2008-02-15 03:34:36 -0600546 if (err < 0) {
547 printf("libfdt fdt_get_mem_rsv(): %s\n",
548 fdt_strerror(err));
549 return err;
550 }
551 printf(" %x\t%08x%08x\t%08x%08x\n", j,
552 (u32)(addr >> 32),
553 (u32)(addr & 0xffffffff),
554 (u32)(size >> 32),
555 (u32)(size & 0xffffffff));
556 }
557 } else if (argv[2][0] == 'a') {
558 uint64_t addr, size;
559 int err;
Kumar Gala804887e2008-02-15 03:34:36 -0600560 addr = simple_strtoull(argv[3], NULL, 16);
561 size = simple_strtoull(argv[4], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500562 err = fdt_add_mem_rsv(working_fdt, addr, size);
Kumar Gala804887e2008-02-15 03:34:36 -0600563
564 if (err < 0) {
565 printf("libfdt fdt_add_mem_rsv(): %s\n",
566 fdt_strerror(err));
567 return err;
568 }
569 } else if (argv[2][0] == 'd') {
570 unsigned long idx = simple_strtoul(argv[3], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500571 int err = fdt_del_mem_rsv(working_fdt, idx);
Kumar Gala804887e2008-02-15 03:34:36 -0600572
573 if (err < 0) {
574 printf("libfdt fdt_del_mem_rsv(): %s\n",
575 fdt_strerror(err));
576 return err;
577 }
578 } else {
579 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000580 return CMD_RET_USAGE;
Kumar Gala804887e2008-02-15 03:34:36 -0600581 }
Kim Phillips99dffca2007-07-17 13:57:04 -0500582 }
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400583#ifdef CONFIG_OF_BOARD_SETUP
Kim Phillips99dffca2007-07-17 13:57:04 -0500584 /* Call the board-specific fixup routine */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400585 else if (strncmp(argv[1], "boa", 3) == 0)
Kim Phillipse489b9c2008-06-10 11:06:17 -0500586 ft_board_setup(working_fdt, gd->bd);
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400587#endif
Kim Phillips99dffca2007-07-17 13:57:04 -0500588 /* Create a chosen node */
Kumar Galaf953d992008-08-15 08:24:34 -0500589 else if (argv[1][0] == 'c') {
590 unsigned long initrd_start = 0, initrd_end = 0;
591
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200592 if ((argc != 2) && (argc != 4))
Simon Glass4c12eeb2011-12-10 08:44:01 +0000593 return CMD_RET_USAGE;
Kumar Galaf953d992008-08-15 08:24:34 -0500594
595 if (argc == 4) {
596 initrd_start = simple_strtoul(argv[2], NULL, 16);
597 initrd_end = simple_strtoul(argv[3], NULL, 16);
598 }
599
Heiko Schocher56844a22008-09-11 08:11:23 +0200600 fdt_chosen(working_fdt, 1);
601 fdt_initrd(working_fdt, initrd_start, initrd_end, 1);
Kumar Gala40afac22008-08-15 08:24:44 -0500602 }
603 /* resize the fdt */
604 else if (strncmp(argv[1], "re", 2) == 0) {
605 fdt_resize(working_fdt);
606 }
607 else {
Kim Phillips99dffca2007-07-17 13:57:04 -0500608 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000609 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400610 }
611
612 return 0;
613}
614
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400615/****************************************************************************/
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400616
Simon Glassd14da912013-04-20 08:42:42 +0000617/**
618 * fdt_valid() - Check if an FDT is valid. If not, change it to NULL
619 *
620 * @blobp: Pointer to FDT pointer
621 * @return 1 if OK, 0 if bad (in which case *blobp is set to NULL)
622 */
623static int fdt_valid(struct fdt_header **blobp)
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400624{
Simon Glassd14da912013-04-20 08:42:42 +0000625 const void *blob = *blobp;
626 int err;
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400627
Simon Glassd14da912013-04-20 08:42:42 +0000628 if (blob == NULL) {
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400629 printf ("The address of the fdt is invalid (NULL).\n");
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400630 return 0;
631 }
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400632
Simon Glassd14da912013-04-20 08:42:42 +0000633 err = fdt_check_header(blob);
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400634 if (err == 0)
635 return 1; /* valid */
636
637 if (err < 0) {
Gerald Van Baren25114032007-05-12 09:47:25 -0400638 printf("libfdt fdt_check_header(): %s", fdt_strerror(err));
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400639 /*
640 * Be more informative on bad version.
641 */
642 if (err == -FDT_ERR_BADVERSION) {
Simon Glassd14da912013-04-20 08:42:42 +0000643 if (fdt_version(blob) <
Kim Phillipse489b9c2008-06-10 11:06:17 -0500644 FDT_FIRST_SUPPORTED_VERSION) {
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700645 printf (" - too old, fdt %d < %d",
Simon Glassd14da912013-04-20 08:42:42 +0000646 fdt_version(blob),
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400647 FDT_FIRST_SUPPORTED_VERSION);
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400648 }
Simon Glassd14da912013-04-20 08:42:42 +0000649 if (fdt_last_comp_version(blob) >
Kim Phillipse489b9c2008-06-10 11:06:17 -0500650 FDT_LAST_SUPPORTED_VERSION) {
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700651 printf (" - too new, fdt %d > %d",
Simon Glassd14da912013-04-20 08:42:42 +0000652 fdt_version(blob),
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400653 FDT_LAST_SUPPORTED_VERSION);
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400654 }
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400655 }
656 printf("\n");
Simon Glassd14da912013-04-20 08:42:42 +0000657 *blobp = NULL;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400658 return 0;
659 }
660 return 1;
661}
662
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400663/****************************************************************************/
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400664
665/*
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400666 * Parse the user's input, partially heuristic. Valid formats:
Andy Fleming4abd8442008-03-31 20:45:56 -0500667 * <0x00112233 4 05> - an array of cells. Numbers follow standard
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200668 * C conventions.
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400669 * [00 11 22 .. nn] - byte stream
670 * "string" - If the the value doesn't start with "<" or "[", it is
671 * treated as a string. Note that the quotes are
672 * stripped by the parser before we get the string.
Andy Fleming4abd8442008-03-31 20:45:56 -0500673 * newval: An array of strings containing the new property as specified
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200674 * on the command line
Andy Fleming4abd8442008-03-31 20:45:56 -0500675 * count: The number of strings in the array
676 * data: A bytestream to be placed in the property
677 * len: The length of the resulting bytestream
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400678 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200679static int fdt_parse_prop(char * const *newval, int count, char *data, int *len)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400680{
681 char *cp; /* temporary char pointer */
Andy Fleming4abd8442008-03-31 20:45:56 -0500682 char *newp; /* temporary newval char pointer */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400683 unsigned long tmp; /* holds converted values */
Andy Fleming4abd8442008-03-31 20:45:56 -0500684 int stridx = 0;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400685
Andy Fleming4abd8442008-03-31 20:45:56 -0500686 *len = 0;
687 newp = newval[0];
688
689 /* An array of cells */
690 if (*newp == '<') {
691 newp++;
692 while ((*newp != '>') && (stridx < count)) {
693 /*
694 * Keep searching until we find that last ">"
695 * That way users don't have to escape the spaces
696 */
697 if (*newp == '\0') {
698 newp = newval[++stridx];
699 continue;
700 }
701
702 cp = newp;
703 tmp = simple_strtoul(cp, &newp, 0);
Kim Phillips088f1b12012-10-29 13:34:31 +0000704 *(__be32 *)data = __cpu_to_be32(tmp);
Andy Fleming4abd8442008-03-31 20:45:56 -0500705 data += 4;
706 *len += 4;
707
708 /* If the ptr didn't advance, something went wrong */
709 if ((newp - cp) <= 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400710 printf("Sorry, I could not convert \"%s\"\n",
711 cp);
712 return 1;
713 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500714
715 while (*newp == ' ')
716 newp++;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400717 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500718
719 if (*newp != '>') {
720 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400721 return 1;
722 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500723 } else if (*newp == '[') {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400724 /*
725 * Byte stream. Convert the values.
726 */
Andy Fleming4abd8442008-03-31 20:45:56 -0500727 newp++;
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500728 while ((stridx < count) && (*newp != ']')) {
729 while (*newp == ' ')
730 newp++;
731 if (*newp == '\0') {
732 newp = newval[++stridx];
733 continue;
734 }
735 if (!isxdigit(*newp))
736 break;
Andy Fleming4abd8442008-03-31 20:45:56 -0500737 tmp = simple_strtoul(newp, &newp, 16);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400738 *data++ = tmp & 0xFF;
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400739 *len = *len + 1;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400740 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500741 if (*newp != ']') {
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700742 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400743 return 1;
744 }
745 } else {
746 /*
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500747 * Assume it is one or more strings. Copy it into our
748 * data area for convenience (including the
749 * terminating '\0's).
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400750 */
Andy Fleming4abd8442008-03-31 20:45:56 -0500751 while (stridx < count) {
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500752 size_t length = strlen(newp) + 1;
Andy Fleming4abd8442008-03-31 20:45:56 -0500753 strcpy(data, newp);
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500754 data += length;
755 *len += length;
Andy Fleming4abd8442008-03-31 20:45:56 -0500756 newp = newval[++stridx];
757 }
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400758 }
759 return 0;
760}
761
762/****************************************************************************/
763
764/*
765 * Heuristic to guess if this is a string or concatenated strings.
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400766 */
767
768static int is_printable_string(const void *data, int len)
769{
770 const char *s = data;
771
772 /* zero length is not */
773 if (len == 0)
774 return 0;
775
Joe Hershberger8805bee2012-08-17 10:34:38 +0000776 /* must terminate with zero or '\n' */
777 if (s[len - 1] != '\0' && s[len - 1] != '\n')
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400778 return 0;
779
780 /* printable or a null byte (concatenated strings) */
Joe Hershberger8805bee2012-08-17 10:34:38 +0000781 while (((*s == '\0') || isprint(*s) || isspace(*s)) && (len > 0)) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400782 /*
783 * If we see a null, there are three possibilities:
784 * 1) If len == 1, it is the end of the string, printable
785 * 2) Next character also a null, not printable.
786 * 3) Next character not a null, continue to check.
787 */
788 if (s[0] == '\0') {
789 if (len == 1)
790 return 1;
791 if (s[1] == '\0')
792 return 0;
793 }
794 s++;
795 len--;
796 }
797
798 /* Not the null termination, or not done yet: not printable */
799 if (*s != '\0' || (len != 0))
800 return 0;
801
802 return 1;
803}
804
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400805
806/*
807 * Print the property in the best format, a heuristic guess. Print as
808 * a string, concatenated strings, a byte, word, double word, or (if all
809 * else fails) it is printed as a stream of bytes.
810 */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400811static void print_data(const void *data, int len)
812{
813 int j;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400814
815 /* no data, don't print */
816 if (len == 0)
817 return;
818
819 /*
820 * It is a string, but it may have multiple strings (embedded '\0's).
821 */
822 if (is_printable_string(data, len)) {
823 puts("\"");
824 j = 0;
825 while (j < len) {
826 if (j > 0)
827 puts("\", \"");
828 puts(data);
829 j += strlen(data) + 1;
830 data += strlen(data) + 1;
831 }
832 puts("\"");
833 return;
834 }
835
Andy Fleming4abd8442008-03-31 20:45:56 -0500836 if ((len %4) == 0) {
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000837 if (len > CONFIG_CMD_FDT_MAX_DUMP)
Tom Rini085b9c32012-10-29 14:53:18 +0000838 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000839 else {
Kim Phillips088f1b12012-10-29 13:34:31 +0000840 const __be32 *p;
Andy Fleming4abd8442008-03-31 20:45:56 -0500841
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000842 printf("<");
843 for (j = 0, p = data; j < len/4; j++)
844 printf("0x%08x%s", fdt32_to_cpu(p[j]),
845 j < (len/4 - 1) ? " " : "");
846 printf(">");
847 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500848 } else { /* anything else... hexdump */
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000849 if (len > CONFIG_CMD_FDT_MAX_DUMP)
Tom Rini085b9c32012-10-29 14:53:18 +0000850 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000851 else {
852 const u8 *s;
Andy Fleming4abd8442008-03-31 20:45:56 -0500853
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000854 printf("[");
855 for (j = 0, s = data; j < len; j++)
856 printf("%02x%s", s[j], j < len - 1 ? " " : "");
857 printf("]");
858 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400859 }
860}
861
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400862/****************************************************************************/
863
864/*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500865 * Recursively print (a portion of) the working_fdt. The depth parameter
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400866 * determines how deeply nested the fdt is printed.
867 */
Kumar Galadbaf07c2007-11-21 14:07:46 -0600868static int fdt_print(const char *pathp, char *prop, int depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400869{
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400870 static char tabs[MAX_LEVEL+1] =
871 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
872 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
Kumar Galadbaf07c2007-11-21 14:07:46 -0600873 const void *nodep; /* property node pointer */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400874 int nodeoffset; /* node offset from libfdt */
875 int nextoffset; /* next node offset from libfdt */
876 uint32_t tag; /* tag */
877 int len; /* length of the property */
878 int level = 0; /* keep track of nesting level */
Gerald Van Baren91623522007-11-22 17:23:23 -0500879 const struct fdt_property *fdt_prop;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400880
Kim Phillipse489b9c2008-06-10 11:06:17 -0500881 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400882 if (nodeoffset < 0) {
883 /*
884 * Not found or something else bad happened.
885 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500886 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400887 fdt_strerror(nodeoffset));
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400888 return 1;
889 }
890 /*
891 * The user passed in a property as well as node path.
892 * Print only the given property and then return.
893 */
894 if (prop) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500895 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400896 if (len == 0) {
897 /* no property value */
898 printf("%s %s\n", pathp, prop);
899 return 0;
900 } else if (len > 0) {
Gerald Van Baren28f384b2007-11-23 19:43:20 -0500901 printf("%s = ", prop);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400902 print_data (nodep, len);
903 printf("\n");
904 return 0;
905 } else {
906 printf ("libfdt fdt_getprop(): %s\n",
907 fdt_strerror(len));
908 return 1;
909 }
910 }
911
912 /*
913 * The user passed in a node path and no property,
914 * print the node and all subnodes.
915 */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400916 while(level >= 0) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500917 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400918 switch(tag) {
919 case FDT_BEGIN_NODE:
Kim Phillipse489b9c2008-06-10 11:06:17 -0500920 pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
Gerald Van Baren91623522007-11-22 17:23:23 -0500921 if (level <= depth) {
922 if (pathp == NULL)
923 pathp = "/* NULL pointer error */";
924 if (*pathp == '\0')
925 pathp = "/"; /* root is nameless */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400926 printf("%s%s {\n",
927 &tabs[MAX_LEVEL - level], pathp);
Gerald Van Baren91623522007-11-22 17:23:23 -0500928 }
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400929 level++;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400930 if (level >= MAX_LEVEL) {
Gerald Van Baren91623522007-11-22 17:23:23 -0500931 printf("Nested too deep, aborting.\n");
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400932 return 1;
933 }
934 break;
935 case FDT_END_NODE:
936 level--;
Gerald Van Baren91623522007-11-22 17:23:23 -0500937 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400938 printf("%s};\n", &tabs[MAX_LEVEL - level]);
939 if (level == 0) {
940 level = -1; /* exit the loop */
941 }
942 break;
943 case FDT_PROP:
Kim Phillipse489b9c2008-06-10 11:06:17 -0500944 fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
Gerald Van Baren91623522007-11-22 17:23:23 -0500945 sizeof(*fdt_prop));
Kim Phillipse489b9c2008-06-10 11:06:17 -0500946 pathp = fdt_string(working_fdt,
Gerald Van Baren91623522007-11-22 17:23:23 -0500947 fdt32_to_cpu(fdt_prop->nameoff));
948 len = fdt32_to_cpu(fdt_prop->len);
949 nodep = fdt_prop->data;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400950 if (len < 0) {
951 printf ("libfdt fdt_getprop(): %s\n",
952 fdt_strerror(len));
953 return 1;
954 } else if (len == 0) {
955 /* the property has no value */
Gerald Van Baren91623522007-11-22 17:23:23 -0500956 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400957 printf("%s%s;\n",
958 &tabs[MAX_LEVEL - level],
959 pathp);
960 } else {
Gerald Van Baren91623522007-11-22 17:23:23 -0500961 if (level <= depth) {
Gerald Van Baren28f384b2007-11-23 19:43:20 -0500962 printf("%s%s = ",
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400963 &tabs[MAX_LEVEL - level],
964 pathp);
965 print_data (nodep, len);
966 printf(";\n");
967 }
968 }
969 break;
970 case FDT_NOP:
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700971 printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400972 break;
973 case FDT_END:
974 return 1;
975 default:
Gerald Van Baren91623522007-11-22 17:23:23 -0500976 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400977 printf("Unknown tag 0x%08X\n", tag);
978 return 1;
979 }
980 nodeoffset = nextoffset;
981 }
982 return 0;
983}
984
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400985/********************************************************************/
Kim Phillips088f1b12012-10-29 13:34:31 +0000986#ifdef CONFIG_SYS_LONGHELP
987static char fdt_help_text[] =
Simon Glass4b578652013-04-20 08:42:44 +0000988 "addr [-c] <addr> [<length>] - Set the [control] fdt location to <addr>\n"
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400989#ifdef CONFIG_OF_BOARD_SETUP
990 "fdt boardsetup - Do board-specific set up\n"
991#endif
Gerald Van Baren238cb7a2008-01-05 15:33:29 -0500992 "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n"
Kumar Gala40afac22008-08-15 08:24:44 -0500993 "fdt resize - Resize fdt to size + padding to 4k addr\n"
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400994 "fdt print <path> [<prop>] - Recursive print starting at <path>\n"
995 "fdt list <path> [<prop>] - Print one level starting at <path>\n"
Joe Hershbergerbc802952012-08-17 10:34:37 +0000996 "fdt get value <var> <path> <prop> - Get <property> and store in <var>\n"
997 "fdt get name <var> <path> <index> - Get name of node <index> and store in <var>\n"
998 "fdt get addr <var> <path> <prop> - Get start address of <property> and store in <var>\n"
999 "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 -04001000 "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n"
1001 "fdt mknode <path> <node> - Create a new node after <path>\n"
1002 "fdt rm <path> [<prop>] - Delete the node or <property>\n"
Kumar Gala804887e2008-02-15 03:34:36 -06001003 "fdt header - Display header info\n"
1004 "fdt bootcpu <id> - Set boot cpuid\n"
1005 "fdt memory <addr> <size> - Add/Update memory node\n"
1006 "fdt rsvmem print - Show current mem reserves\n"
1007 "fdt rsvmem add <addr> <size> - Add a mem reserve\n"
1008 "fdt rsvmem delete <index> - Delete a mem reserves\n"
Kumar Galaf953d992008-08-15 08:24:34 -05001009 "fdt chosen [<start> <end>] - Add/update the /chosen branch in the tree\n"
1010 " <start>/<end> - initrd start/end addr\n"
Gerald Van Baren109c30f2008-08-22 14:37:05 -04001011 "NOTE: Dereference aliases by omiting the leading '/', "
Kim Phillips088f1b12012-10-29 13:34:31 +00001012 "e.g. fdt print ethernet0.";
1013#endif
1014
1015U_BOOT_CMD(
1016 fdt, 255, 0, do_fdt,
1017 "flattened device tree utility commands", fdt_help_text
Gerald Van Baren781e09e2007-03-31 12:22:10 -04001018);