blob: ac77a08b77d41cbb8c3753570c04bc45d407989c [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>
Gerald Van Baren781e09e2007-03-31 12:22:10 -040034
35#define MAX_LEVEL 32 /* how deeply nested we will go */
Gerald Van Barenfd61e552007-06-25 23:25:28 -040036#define SCRATCHPAD 1024 /* bytes of scratchpad memory */
Joe Hershbergerf0a29d42012-08-17 10:34:36 +000037#ifndef CONFIG_CMD_FDT_MAX_DUMP
38#define CONFIG_CMD_FDT_MAX_DUMP 64
39#endif
Gerald Van Baren781e09e2007-03-31 12:22:10 -040040
41/*
42 * Global data (for the gd->bd)
43 */
44DECLARE_GLOBAL_DATA_PTR;
45
Gerald Van Baren781e09e2007-03-31 12:22:10 -040046static int fdt_valid(void);
Wolfgang Denk54841ab2010-06-28 22:00:46 +020047static int fdt_parse_prop(char *const*newval, int count, char *data, int *len);
Kumar Galadbaf07c2007-11-21 14:07:46 -060048static int fdt_print(const char *pathp, char *prop, int depth);
Joe Hershbergerbc802952012-08-17 10:34:37 +000049static int is_printable_string(const void *data, int len);
Gerald Van Baren781e09e2007-03-31 12:22:10 -040050
Gerald Van Baren781e09e2007-03-31 12:22:10 -040051/*
Gerald Van Barenae9e97f2008-06-10 22:15:58 -040052 * The working_fdt points to our working flattened device tree.
53 */
54struct fdt_header *working_fdt;
55
Kumar Gala54f9c862008-08-15 08:24:39 -050056void set_working_fdt_addr(void *addr)
57{
Kumar Gala54f9c862008-08-15 08:24:39 -050058 working_fdt = addr;
Simon Glassbfc59962013-02-24 17:33:21 +000059 setenv_addr("fdtaddr", addr);
Kumar Gala54f9c862008-08-15 08:24:39 -050060}
61
Gerald Van Barenae9e97f2008-06-10 22:15:58 -040062/*
Joe Hershbergerbc802952012-08-17 10:34:37 +000063 * Get a value from the fdt and format it to be set in the environment
64 */
65static int fdt_value_setenv(const void *nodep, int len, const char *var)
66{
67 if (is_printable_string(nodep, len))
68 setenv(var, (void *)nodep);
69 else if (len == 4) {
70 char buf[11];
71
72 sprintf(buf, "0x%08X", *(uint32_t *)nodep);
73 setenv(var, buf);
74 } else if (len%4 == 0 && len <= 20) {
75 /* Needed to print things like sha1 hashes. */
76 char buf[41];
77 int i;
78
79 for (i = 0; i < len; i += sizeof(unsigned int))
80 sprintf(buf + (i * 2), "%08x",
81 *(unsigned int *)(nodep + i));
82 setenv(var, buf);
83 } else {
84 printf("error: unprintable value\n");
85 return 1;
86 }
87 return 0;
88}
89
90/*
Gerald Van Baren781e09e2007-03-31 12:22:10 -040091 * Flattened Device Tree command, see the help for parameter definitions.
92 */
Kim Phillips088f1b12012-10-29 13:34:31 +000093static int do_fdt(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Gerald Van Baren781e09e2007-03-31 12:22:10 -040094{
Wolfgang Denk47e26b12010-07-17 01:06:04 +020095 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +000096 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -040097
Wolfgang Denk47e26b12010-07-17 01:06:04 +020098 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -040099 * Set the address of the fdt
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200100 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400101 if (argv[1][0] == 'a') {
Kumar Gala54f9c862008-08-15 08:24:39 -0500102 unsigned long addr;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400103 /*
104 * Set the address [and length] of the fdt.
105 */
Kumar Gala7dbc38a2008-08-15 08:24:35 -0500106 if (argc == 2) {
107 if (!fdt_valid()) {
108 return 1;
109 }
110 printf("The address of the fdt is %p\n", working_fdt);
111 return 0;
112 }
113
Kumar Gala54f9c862008-08-15 08:24:39 -0500114 addr = simple_strtoul(argv[2], NULL, 16);
115 set_working_fdt_addr((void *)addr);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400116
117 if (!fdt_valid()) {
118 return 1;
119 }
120
121 if (argc >= 4) {
122 int len;
123 int err;
124 /*
125 * Optional new length
126 */
Gerald Van Baren91623522007-11-22 17:23:23 -0500127 len = simple_strtoul(argv[3], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500128 if (len < fdt_totalsize(working_fdt)) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400129 printf ("New length %d < existing length %d, "
130 "ignoring.\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500131 len, fdt_totalsize(working_fdt));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400132 } else {
133 /*
134 * Open in place with a new length.
135 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500136 err = fdt_open_into(working_fdt, working_fdt, len);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400137 if (err != 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400138 printf ("libfdt fdt_open_into(): %s\n",
139 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400140 }
141 }
142 }
143
Marek Vasute02c9452012-09-05 08:34:44 +0200144 return CMD_RET_SUCCESS;
145 }
146
147 if (!working_fdt) {
148 puts(
149 "No FDT memory address configured. Please configure\n"
150 "the FDT address via \"fdt addr <address>\" command.\n"
151 "Aborting!\n");
152 return CMD_RET_FAILURE;
153 }
154
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200155 /*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500156 * Move the working_fdt
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200157 */
Marek Vasute02c9452012-09-05 08:34:44 +0200158 if (strncmp(argv[1], "mo", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400159 struct fdt_header *newaddr;
160 int len;
161 int err;
162
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200163 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000164 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400165
166 /*
167 * Set the address and length of the fdt.
168 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500169 working_fdt = (struct fdt_header *)simple_strtoul(argv[2], NULL, 16);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400170 if (!fdt_valid()) {
171 return 1;
172 }
173
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400174 newaddr = (struct fdt_header *)simple_strtoul(argv[3],NULL,16);
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400175
176 /*
177 * If the user specifies a length, use that. Otherwise use the
178 * current length.
179 */
180 if (argc <= 4) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500181 len = fdt_totalsize(working_fdt);
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400182 } else {
183 len = simple_strtoul(argv[4], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500184 if (len < fdt_totalsize(working_fdt)) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400185 printf ("New length 0x%X < existing length "
186 "0x%X, aborting.\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500187 len, fdt_totalsize(working_fdt));
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400188 return 1;
189 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400190 }
191
192 /*
193 * Copy to the new location.
194 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500195 err = fdt_open_into(working_fdt, newaddr, len);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400196 if (err != 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400197 printf ("libfdt fdt_open_into(): %s\n",
198 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400199 return 1;
200 }
Kim Phillipse489b9c2008-06-10 11:06:17 -0500201 working_fdt = newaddr;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400202
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200203 /*
Gerald Van Baren25114032007-05-12 09:47:25 -0400204 * Make a new node
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200205 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400206 } else if (strncmp(argv[1], "mk", 2) == 0) {
Gerald Van Baren25114032007-05-12 09:47:25 -0400207 char *pathp; /* path */
208 char *nodep; /* new node to add */
209 int nodeoffset; /* node offset from libfdt */
210 int err;
211
212 /*
213 * Parameters: Node path, new node to be appended to the path.
214 */
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200215 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000216 return CMD_RET_USAGE;
Gerald Van Baren25114032007-05-12 09:47:25 -0400217
218 pathp = argv[2];
219 nodep = argv[3];
220
Kim Phillipse489b9c2008-06-10 11:06:17 -0500221 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400222 if (nodeoffset < 0) {
223 /*
224 * Not found or something else bad happened.
225 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500226 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400227 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400228 return 1;
229 }
Kim Phillipse489b9c2008-06-10 11:06:17 -0500230 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
Gerald Van Baren25114032007-05-12 09:47:25 -0400231 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400232 printf ("libfdt fdt_add_subnode(): %s\n",
233 fdt_strerror(err));
Gerald Van Baren25114032007-05-12 09:47:25 -0400234 return 1;
235 }
236
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200237 /*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500238 * Set the value of a property in the working_fdt.
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200239 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400240 } else if (argv[1][0] == 's') {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400241 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400242 char *prop; /* property */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400243 int nodeoffset; /* node offset from libfdt */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400244 static char data[SCRATCHPAD]; /* storage for the property */
245 int len; /* new length of the property */
246 int ret; /* return value */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400247
248 /*
Gerald Van Barenea6d8be2008-01-05 14:52:04 -0500249 * Parameters: Node path, property, optional value.
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400250 */
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200251 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000252 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400253
254 pathp = argv[2];
255 prop = argv[3];
Gerald Van Barenea6d8be2008-01-05 14:52:04 -0500256 if (argc == 4) {
257 len = 0;
258 } else {
Andy Fleming4abd8442008-03-31 20:45:56 -0500259 ret = fdt_parse_prop(&argv[4], argc - 4, data, &len);
Gerald Van Barenea6d8be2008-01-05 14:52:04 -0500260 if (ret != 0)
261 return ret;
262 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400263
Kim Phillipse489b9c2008-06-10 11:06:17 -0500264 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400265 if (nodeoffset < 0) {
266 /*
267 * Not found or something else bad happened.
268 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500269 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400270 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400271 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400272 }
Gerald Van Baren25114032007-05-12 09:47:25 -0400273
Kim Phillipse489b9c2008-06-10 11:06:17 -0500274 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
Gerald Van Baren25114032007-05-12 09:47:25 -0400275 if (ret < 0) {
276 printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
277 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400278 }
279
Joe Hershbergerbc802952012-08-17 10:34:37 +0000280 /********************************************************************
281 * Get the value of a property in the working_fdt.
282 ********************************************************************/
283 } else if (argv[1][0] == 'g') {
284 char *subcmd; /* sub-command */
285 char *pathp; /* path */
286 char *prop; /* property */
287 char *var; /* variable to store result */
288 int nodeoffset; /* node offset from libfdt */
289 const void *nodep; /* property node pointer */
290 int len = 0; /* new length of the property */
291
292 /*
293 * Parameters: Node path, property, optional value.
294 */
295 if (argc < 5)
296 return CMD_RET_USAGE;
297
298 subcmd = argv[2];
299
300 if (argc < 6 && subcmd[0] != 's')
301 return CMD_RET_USAGE;
302
303 var = argv[3];
304 pathp = argv[4];
305 prop = argv[5];
306
307 nodeoffset = fdt_path_offset(working_fdt, pathp);
308 if (nodeoffset < 0) {
309 /*
310 * Not found or something else bad happened.
311 */
312 printf("libfdt fdt_path_offset() returned %s\n",
313 fdt_strerror(nodeoffset));
314 return 1;
315 }
316
317 if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) {
318 int reqIndex = -1;
319 int startDepth = fdt_node_depth(
320 working_fdt, nodeoffset);
321 int curDepth = startDepth;
322 int curIndex = -1;
323 int nextNodeOffset = fdt_next_node(
324 working_fdt, nodeoffset, &curDepth);
325
326 if (subcmd[0] == 'n')
327 reqIndex = simple_strtoul(argv[5], NULL, 16);
328
329 while (curDepth > startDepth) {
330 if (curDepth == startDepth + 1)
331 curIndex++;
332 if (subcmd[0] == 'n' && curIndex == reqIndex) {
333 const char *nodeName = fdt_get_name(
334 working_fdt, nextNodeOffset, NULL);
335
336 setenv(var, (char *)nodeName);
337 return 0;
338 }
339 nextNodeOffset = fdt_next_node(
340 working_fdt, nextNodeOffset, &curDepth);
341 if (nextNodeOffset < 0)
342 break;
343 }
344 if (subcmd[0] == 's') {
345 /* get the num nodes at this level */
Simon Glassbfc59962013-02-24 17:33:21 +0000346 setenv_ulong(var, curIndex + 1);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000347 } else {
348 /* node index not found */
349 printf("libfdt node not found\n");
350 return 1;
351 }
352 } else {
353 nodep = fdt_getprop(
354 working_fdt, nodeoffset, prop, &len);
355 if (len == 0) {
356 /* no property value */
357 setenv(var, "");
358 return 0;
359 } else if (len > 0) {
360 if (subcmd[0] == 'v') {
361 int ret;
362
363 ret = fdt_value_setenv(nodep, len, var);
364 if (ret != 0)
365 return ret;
366 } else if (subcmd[0] == 'a') {
367 /* Get address */
368 char buf[11];
369
Tom Rini085b9c32012-10-29 14:53:18 +0000370 sprintf(buf, "0x%p", nodep);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000371 setenv(var, buf);
372 } else if (subcmd[0] == 's') {
373 /* Get size */
374 char buf[11];
375
376 sprintf(buf, "0x%08X", len);
377 setenv(var, buf);
378 } else
379 return CMD_RET_USAGE;
380 return 0;
381 } else {
382 printf("libfdt fdt_getprop(): %s\n",
383 fdt_strerror(len));
384 return 1;
385 }
386 }
387
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200388 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400389 * Print (recursive) / List (single level)
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200390 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400391 } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400392 int depth = MAX_LEVEL; /* how deep to print */
393 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400394 char *prop; /* property */
395 int ret; /* return value */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500396 static char root[2] = "/";
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400397
398 /*
399 * list is an alias for print, but limited to 1 level
400 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400401 if (argv[1][0] == 'l') {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400402 depth = 1;
403 }
404
405 /*
406 * Get the starting path. The root node is an oddball,
407 * the offset is zero and has no name.
408 */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500409 if (argc == 2)
410 pathp = root;
411 else
412 pathp = argv[2];
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400413 if (argc > 3)
414 prop = argv[3];
415 else
416 prop = NULL;
417
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400418 ret = fdt_print(pathp, prop, depth);
419 if (ret != 0)
420 return ret;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400421
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200422 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400423 * Remove a property/node
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200424 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400425 } else if (strncmp(argv[1], "rm", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400426 int nodeoffset; /* node offset from libfdt */
427 int err;
428
429 /*
430 * Get the path. The root node is an oddball, the offset
431 * is zero and has no name.
432 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500433 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
Gerald Van Baren25114032007-05-12 09:47:25 -0400434 if (nodeoffset < 0) {
435 /*
436 * Not found or something else bad happened.
437 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500438 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400439 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400440 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400441 }
442 /*
443 * Do the delete. A fourth parameter means delete a property,
444 * otherwise delete the node.
445 */
446 if (argc > 3) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500447 err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400448 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400449 printf("libfdt fdt_delprop(): %s\n",
450 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400451 return err;
452 }
453 } else {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500454 err = fdt_del_node(working_fdt, nodeoffset);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400455 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400456 printf("libfdt fdt_del_node(): %s\n",
457 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400458 return err;
459 }
460 }
Kumar Gala804887e2008-02-15 03:34:36 -0600461
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200462 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600463 * Display header info
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200464 */
Kumar Gala804887e2008-02-15 03:34:36 -0600465 } else if (argv[1][0] == 'h') {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500466 u32 version = fdt_version(working_fdt);
467 printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt));
468 printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt),
469 fdt_totalsize(working_fdt));
470 printf("off_dt_struct:\t\t0x%x\n",
471 fdt_off_dt_struct(working_fdt));
472 printf("off_dt_strings:\t\t0x%x\n",
473 fdt_off_dt_strings(working_fdt));
474 printf("off_mem_rsvmap:\t\t0x%x\n",
475 fdt_off_mem_rsvmap(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600476 printf("version:\t\t%d\n", version);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500477 printf("last_comp_version:\t%d\n",
478 fdt_last_comp_version(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600479 if (version >= 2)
480 printf("boot_cpuid_phys:\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500481 fdt_boot_cpuid_phys(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600482 if (version >= 3)
483 printf("size_dt_strings:\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500484 fdt_size_dt_strings(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600485 if (version >= 17)
486 printf("size_dt_struct:\t\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500487 fdt_size_dt_struct(working_fdt));
488 printf("number mem_rsv:\t\t0x%x\n",
489 fdt_num_mem_rsv(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600490 printf("\n");
491
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200492 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600493 * Set boot cpu id
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200494 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400495 } else if (strncmp(argv[1], "boo", 3) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600496 unsigned long tmp = simple_strtoul(argv[2], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500497 fdt_set_boot_cpuid_phys(working_fdt, tmp);
Kumar Gala804887e2008-02-15 03:34:36 -0600498
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200499 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600500 * memory command
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200501 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400502 } else if (strncmp(argv[1], "me", 2) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600503 uint64_t addr, size;
504 int err;
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100505 addr = simple_strtoull(argv[2], NULL, 16);
506 size = simple_strtoull(argv[3], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500507 err = fdt_fixup_memory(working_fdt, addr, size);
Kumar Gala804887e2008-02-15 03:34:36 -0600508 if (err < 0)
509 return err;
510
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200511 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600512 * mem reserve commands
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200513 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400514 } else if (strncmp(argv[1], "rs", 2) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600515 if (argv[2][0] == 'p') {
516 uint64_t addr, size;
Kim Phillipse489b9c2008-06-10 11:06:17 -0500517 int total = fdt_num_mem_rsv(working_fdt);
Kumar Gala804887e2008-02-15 03:34:36 -0600518 int j, err;
519 printf("index\t\t start\t\t size\n");
520 printf("-------------------------------"
521 "-----------------\n");
522 for (j = 0; j < total; j++) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500523 err = fdt_get_mem_rsv(working_fdt, j, &addr, &size);
Kumar Gala804887e2008-02-15 03:34:36 -0600524 if (err < 0) {
525 printf("libfdt fdt_get_mem_rsv(): %s\n",
526 fdt_strerror(err));
527 return err;
528 }
529 printf(" %x\t%08x%08x\t%08x%08x\n", j,
530 (u32)(addr >> 32),
531 (u32)(addr & 0xffffffff),
532 (u32)(size >> 32),
533 (u32)(size & 0xffffffff));
534 }
535 } else if (argv[2][0] == 'a') {
536 uint64_t addr, size;
537 int err;
Kumar Gala804887e2008-02-15 03:34:36 -0600538 addr = simple_strtoull(argv[3], NULL, 16);
539 size = simple_strtoull(argv[4], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500540 err = fdt_add_mem_rsv(working_fdt, addr, size);
Kumar Gala804887e2008-02-15 03:34:36 -0600541
542 if (err < 0) {
543 printf("libfdt fdt_add_mem_rsv(): %s\n",
544 fdt_strerror(err));
545 return err;
546 }
547 } else if (argv[2][0] == 'd') {
548 unsigned long idx = simple_strtoul(argv[3], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500549 int err = fdt_del_mem_rsv(working_fdt, idx);
Kumar Gala804887e2008-02-15 03:34:36 -0600550
551 if (err < 0) {
552 printf("libfdt fdt_del_mem_rsv(): %s\n",
553 fdt_strerror(err));
554 return err;
555 }
556 } else {
557 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000558 return CMD_RET_USAGE;
Kumar Gala804887e2008-02-15 03:34:36 -0600559 }
Kim Phillips99dffca2007-07-17 13:57:04 -0500560 }
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400561#ifdef CONFIG_OF_BOARD_SETUP
Kim Phillips99dffca2007-07-17 13:57:04 -0500562 /* Call the board-specific fixup routine */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400563 else if (strncmp(argv[1], "boa", 3) == 0)
Kim Phillipse489b9c2008-06-10 11:06:17 -0500564 ft_board_setup(working_fdt, gd->bd);
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400565#endif
Kim Phillips99dffca2007-07-17 13:57:04 -0500566 /* Create a chosen node */
Kumar Galaf953d992008-08-15 08:24:34 -0500567 else if (argv[1][0] == 'c') {
568 unsigned long initrd_start = 0, initrd_end = 0;
569
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200570 if ((argc != 2) && (argc != 4))
Simon Glass4c12eeb2011-12-10 08:44:01 +0000571 return CMD_RET_USAGE;
Kumar Galaf953d992008-08-15 08:24:34 -0500572
573 if (argc == 4) {
574 initrd_start = simple_strtoul(argv[2], NULL, 16);
575 initrd_end = simple_strtoul(argv[3], NULL, 16);
576 }
577
Heiko Schocher56844a22008-09-11 08:11:23 +0200578 fdt_chosen(working_fdt, 1);
579 fdt_initrd(working_fdt, initrd_start, initrd_end, 1);
Kumar Gala40afac22008-08-15 08:24:44 -0500580 }
581 /* resize the fdt */
582 else if (strncmp(argv[1], "re", 2) == 0) {
583 fdt_resize(working_fdt);
584 }
585 else {
Kim Phillips99dffca2007-07-17 13:57:04 -0500586 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000587 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400588 }
589
590 return 0;
591}
592
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400593/****************************************************************************/
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400594
595static int fdt_valid(void)
596{
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400597 int err;
598
Kim Phillipse489b9c2008-06-10 11:06:17 -0500599 if (working_fdt == NULL) {
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400600 printf ("The address of the fdt is invalid (NULL).\n");
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400601 return 0;
602 }
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400603
Kim Phillipse489b9c2008-06-10 11:06:17 -0500604 err = fdt_check_header(working_fdt);
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400605 if (err == 0)
606 return 1; /* valid */
607
608 if (err < 0) {
Gerald Van Baren25114032007-05-12 09:47:25 -0400609 printf("libfdt fdt_check_header(): %s", fdt_strerror(err));
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400610 /*
611 * Be more informative on bad version.
612 */
613 if (err == -FDT_ERR_BADVERSION) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500614 if (fdt_version(working_fdt) <
615 FDT_FIRST_SUPPORTED_VERSION) {
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700616 printf (" - too old, fdt %d < %d",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500617 fdt_version(working_fdt),
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400618 FDT_FIRST_SUPPORTED_VERSION);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500619 working_fdt = NULL;
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400620 }
Kim Phillipse489b9c2008-06-10 11:06:17 -0500621 if (fdt_last_comp_version(working_fdt) >
622 FDT_LAST_SUPPORTED_VERSION) {
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700623 printf (" - too new, fdt %d > %d",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500624 fdt_version(working_fdt),
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400625 FDT_LAST_SUPPORTED_VERSION);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500626 working_fdt = NULL;
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400627 }
628 return 0;
629 }
630 printf("\n");
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400631 return 0;
632 }
633 return 1;
634}
635
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400636/****************************************************************************/
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400637
638/*
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400639 * Parse the user's input, partially heuristic. Valid formats:
Andy Fleming4abd8442008-03-31 20:45:56 -0500640 * <0x00112233 4 05> - an array of cells. Numbers follow standard
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200641 * C conventions.
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400642 * [00 11 22 .. nn] - byte stream
643 * "string" - If the the value doesn't start with "<" or "[", it is
644 * treated as a string. Note that the quotes are
645 * stripped by the parser before we get the string.
Andy Fleming4abd8442008-03-31 20:45:56 -0500646 * newval: An array of strings containing the new property as specified
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200647 * on the command line
Andy Fleming4abd8442008-03-31 20:45:56 -0500648 * count: The number of strings in the array
649 * data: A bytestream to be placed in the property
650 * len: The length of the resulting bytestream
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400651 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200652static int fdt_parse_prop(char * const *newval, int count, char *data, int *len)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400653{
654 char *cp; /* temporary char pointer */
Andy Fleming4abd8442008-03-31 20:45:56 -0500655 char *newp; /* temporary newval char pointer */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400656 unsigned long tmp; /* holds converted values */
Andy Fleming4abd8442008-03-31 20:45:56 -0500657 int stridx = 0;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400658
Andy Fleming4abd8442008-03-31 20:45:56 -0500659 *len = 0;
660 newp = newval[0];
661
662 /* An array of cells */
663 if (*newp == '<') {
664 newp++;
665 while ((*newp != '>') && (stridx < count)) {
666 /*
667 * Keep searching until we find that last ">"
668 * That way users don't have to escape the spaces
669 */
670 if (*newp == '\0') {
671 newp = newval[++stridx];
672 continue;
673 }
674
675 cp = newp;
676 tmp = simple_strtoul(cp, &newp, 0);
Kim Phillips088f1b12012-10-29 13:34:31 +0000677 *(__be32 *)data = __cpu_to_be32(tmp);
Andy Fleming4abd8442008-03-31 20:45:56 -0500678 data += 4;
679 *len += 4;
680
681 /* If the ptr didn't advance, something went wrong */
682 if ((newp - cp) <= 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400683 printf("Sorry, I could not convert \"%s\"\n",
684 cp);
685 return 1;
686 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500687
688 while (*newp == ' ')
689 newp++;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400690 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500691
692 if (*newp != '>') {
693 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400694 return 1;
695 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500696 } else if (*newp == '[') {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400697 /*
698 * Byte stream. Convert the values.
699 */
Andy Fleming4abd8442008-03-31 20:45:56 -0500700 newp++;
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500701 while ((stridx < count) && (*newp != ']')) {
702 while (*newp == ' ')
703 newp++;
704 if (*newp == '\0') {
705 newp = newval[++stridx];
706 continue;
707 }
708 if (!isxdigit(*newp))
709 break;
Andy Fleming4abd8442008-03-31 20:45:56 -0500710 tmp = simple_strtoul(newp, &newp, 16);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400711 *data++ = tmp & 0xFF;
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400712 *len = *len + 1;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400713 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500714 if (*newp != ']') {
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700715 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400716 return 1;
717 }
718 } else {
719 /*
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500720 * Assume it is one or more strings. Copy it into our
721 * data area for convenience (including the
722 * terminating '\0's).
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400723 */
Andy Fleming4abd8442008-03-31 20:45:56 -0500724 while (stridx < count) {
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500725 size_t length = strlen(newp) + 1;
Andy Fleming4abd8442008-03-31 20:45:56 -0500726 strcpy(data, newp);
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500727 data += length;
728 *len += length;
Andy Fleming4abd8442008-03-31 20:45:56 -0500729 newp = newval[++stridx];
730 }
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400731 }
732 return 0;
733}
734
735/****************************************************************************/
736
737/*
738 * Heuristic to guess if this is a string or concatenated strings.
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400739 */
740
741static int is_printable_string(const void *data, int len)
742{
743 const char *s = data;
744
745 /* zero length is not */
746 if (len == 0)
747 return 0;
748
Joe Hershberger8805bee2012-08-17 10:34:38 +0000749 /* must terminate with zero or '\n' */
750 if (s[len - 1] != '\0' && s[len - 1] != '\n')
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400751 return 0;
752
753 /* printable or a null byte (concatenated strings) */
Joe Hershberger8805bee2012-08-17 10:34:38 +0000754 while (((*s == '\0') || isprint(*s) || isspace(*s)) && (len > 0)) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400755 /*
756 * If we see a null, there are three possibilities:
757 * 1) If len == 1, it is the end of the string, printable
758 * 2) Next character also a null, not printable.
759 * 3) Next character not a null, continue to check.
760 */
761 if (s[0] == '\0') {
762 if (len == 1)
763 return 1;
764 if (s[1] == '\0')
765 return 0;
766 }
767 s++;
768 len--;
769 }
770
771 /* Not the null termination, or not done yet: not printable */
772 if (*s != '\0' || (len != 0))
773 return 0;
774
775 return 1;
776}
777
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400778
779/*
780 * Print the property in the best format, a heuristic guess. Print as
781 * a string, concatenated strings, a byte, word, double word, or (if all
782 * else fails) it is printed as a stream of bytes.
783 */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400784static void print_data(const void *data, int len)
785{
786 int j;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400787
788 /* no data, don't print */
789 if (len == 0)
790 return;
791
792 /*
793 * It is a string, but it may have multiple strings (embedded '\0's).
794 */
795 if (is_printable_string(data, len)) {
796 puts("\"");
797 j = 0;
798 while (j < len) {
799 if (j > 0)
800 puts("\", \"");
801 puts(data);
802 j += strlen(data) + 1;
803 data += strlen(data) + 1;
804 }
805 puts("\"");
806 return;
807 }
808
Andy Fleming4abd8442008-03-31 20:45:56 -0500809 if ((len %4) == 0) {
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000810 if (len > CONFIG_CMD_FDT_MAX_DUMP)
Tom Rini085b9c32012-10-29 14:53:18 +0000811 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000812 else {
Kim Phillips088f1b12012-10-29 13:34:31 +0000813 const __be32 *p;
Andy Fleming4abd8442008-03-31 20:45:56 -0500814
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000815 printf("<");
816 for (j = 0, p = data; j < len/4; j++)
817 printf("0x%08x%s", fdt32_to_cpu(p[j]),
818 j < (len/4 - 1) ? " " : "");
819 printf(">");
820 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500821 } else { /* anything else... hexdump */
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000822 if (len > CONFIG_CMD_FDT_MAX_DUMP)
Tom Rini085b9c32012-10-29 14:53:18 +0000823 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000824 else {
825 const u8 *s;
Andy Fleming4abd8442008-03-31 20:45:56 -0500826
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000827 printf("[");
828 for (j = 0, s = data; j < len; j++)
829 printf("%02x%s", s[j], j < len - 1 ? " " : "");
830 printf("]");
831 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400832 }
833}
834
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400835/****************************************************************************/
836
837/*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500838 * Recursively print (a portion of) the working_fdt. The depth parameter
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400839 * determines how deeply nested the fdt is printed.
840 */
Kumar Galadbaf07c2007-11-21 14:07:46 -0600841static int fdt_print(const char *pathp, char *prop, int depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400842{
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400843 static char tabs[MAX_LEVEL+1] =
844 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
845 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
Kumar Galadbaf07c2007-11-21 14:07:46 -0600846 const void *nodep; /* property node pointer */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400847 int nodeoffset; /* node offset from libfdt */
848 int nextoffset; /* next node offset from libfdt */
849 uint32_t tag; /* tag */
850 int len; /* length of the property */
851 int level = 0; /* keep track of nesting level */
Gerald Van Baren91623522007-11-22 17:23:23 -0500852 const struct fdt_property *fdt_prop;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400853
Kim Phillipse489b9c2008-06-10 11:06:17 -0500854 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400855 if (nodeoffset < 0) {
856 /*
857 * Not found or something else bad happened.
858 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500859 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400860 fdt_strerror(nodeoffset));
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400861 return 1;
862 }
863 /*
864 * The user passed in a property as well as node path.
865 * Print only the given property and then return.
866 */
867 if (prop) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500868 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400869 if (len == 0) {
870 /* no property value */
871 printf("%s %s\n", pathp, prop);
872 return 0;
873 } else if (len > 0) {
Gerald Van Baren28f384b2007-11-23 19:43:20 -0500874 printf("%s = ", prop);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400875 print_data (nodep, len);
876 printf("\n");
877 return 0;
878 } else {
879 printf ("libfdt fdt_getprop(): %s\n",
880 fdt_strerror(len));
881 return 1;
882 }
883 }
884
885 /*
886 * The user passed in a node path and no property,
887 * print the node and all subnodes.
888 */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400889 while(level >= 0) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500890 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400891 switch(tag) {
892 case FDT_BEGIN_NODE:
Kim Phillipse489b9c2008-06-10 11:06:17 -0500893 pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
Gerald Van Baren91623522007-11-22 17:23:23 -0500894 if (level <= depth) {
895 if (pathp == NULL)
896 pathp = "/* NULL pointer error */";
897 if (*pathp == '\0')
898 pathp = "/"; /* root is nameless */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400899 printf("%s%s {\n",
900 &tabs[MAX_LEVEL - level], pathp);
Gerald Van Baren91623522007-11-22 17:23:23 -0500901 }
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400902 level++;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400903 if (level >= MAX_LEVEL) {
Gerald Van Baren91623522007-11-22 17:23:23 -0500904 printf("Nested too deep, aborting.\n");
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400905 return 1;
906 }
907 break;
908 case FDT_END_NODE:
909 level--;
Gerald Van Baren91623522007-11-22 17:23:23 -0500910 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400911 printf("%s};\n", &tabs[MAX_LEVEL - level]);
912 if (level == 0) {
913 level = -1; /* exit the loop */
914 }
915 break;
916 case FDT_PROP:
Kim Phillipse489b9c2008-06-10 11:06:17 -0500917 fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
Gerald Van Baren91623522007-11-22 17:23:23 -0500918 sizeof(*fdt_prop));
Kim Phillipse489b9c2008-06-10 11:06:17 -0500919 pathp = fdt_string(working_fdt,
Gerald Van Baren91623522007-11-22 17:23:23 -0500920 fdt32_to_cpu(fdt_prop->nameoff));
921 len = fdt32_to_cpu(fdt_prop->len);
922 nodep = fdt_prop->data;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400923 if (len < 0) {
924 printf ("libfdt fdt_getprop(): %s\n",
925 fdt_strerror(len));
926 return 1;
927 } else if (len == 0) {
928 /* the property has no value */
Gerald Van Baren91623522007-11-22 17:23:23 -0500929 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400930 printf("%s%s;\n",
931 &tabs[MAX_LEVEL - level],
932 pathp);
933 } else {
Gerald Van Baren91623522007-11-22 17:23:23 -0500934 if (level <= depth) {
Gerald Van Baren28f384b2007-11-23 19:43:20 -0500935 printf("%s%s = ",
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400936 &tabs[MAX_LEVEL - level],
937 pathp);
938 print_data (nodep, len);
939 printf(";\n");
940 }
941 }
942 break;
943 case FDT_NOP:
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700944 printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400945 break;
946 case FDT_END:
947 return 1;
948 default:
Gerald Van Baren91623522007-11-22 17:23:23 -0500949 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400950 printf("Unknown tag 0x%08X\n", tag);
951 return 1;
952 }
953 nodeoffset = nextoffset;
954 }
955 return 0;
956}
957
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400958/********************************************************************/
Kim Phillips088f1b12012-10-29 13:34:31 +0000959#ifdef CONFIG_SYS_LONGHELP
960static char fdt_help_text[] =
961 "addr <addr> [<length>] - Set the fdt location to <addr>\n"
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400962#ifdef CONFIG_OF_BOARD_SETUP
963 "fdt boardsetup - Do board-specific set up\n"
964#endif
Gerald Van Baren238cb7a2008-01-05 15:33:29 -0500965 "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n"
Kumar Gala40afac22008-08-15 08:24:44 -0500966 "fdt resize - Resize fdt to size + padding to 4k addr\n"
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400967 "fdt print <path> [<prop>] - Recursive print starting at <path>\n"
968 "fdt list <path> [<prop>] - Print one level starting at <path>\n"
Joe Hershbergerbc802952012-08-17 10:34:37 +0000969 "fdt get value <var> <path> <prop> - Get <property> and store in <var>\n"
970 "fdt get name <var> <path> <index> - Get name of node <index> and store in <var>\n"
971 "fdt get addr <var> <path> <prop> - Get start address of <property> and store in <var>\n"
972 "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 -0400973 "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n"
974 "fdt mknode <path> <node> - Create a new node after <path>\n"
975 "fdt rm <path> [<prop>] - Delete the node or <property>\n"
Kumar Gala804887e2008-02-15 03:34:36 -0600976 "fdt header - Display header info\n"
977 "fdt bootcpu <id> - Set boot cpuid\n"
978 "fdt memory <addr> <size> - Add/Update memory node\n"
979 "fdt rsvmem print - Show current mem reserves\n"
980 "fdt rsvmem add <addr> <size> - Add a mem reserve\n"
981 "fdt rsvmem delete <index> - Delete a mem reserves\n"
Kumar Galaf953d992008-08-15 08:24:34 -0500982 "fdt chosen [<start> <end>] - Add/update the /chosen branch in the tree\n"
983 " <start>/<end> - initrd start/end addr\n"
Gerald Van Baren109c30f2008-08-22 14:37:05 -0400984 "NOTE: Dereference aliases by omiting the leading '/', "
Kim Phillips088f1b12012-10-29 13:34:31 +0000985 "e.g. fdt print ethernet0.";
986#endif
987
988U_BOOT_CMD(
989 fdt, 255, 0, do_fdt,
990 "flattened device tree utility commands", fdt_help_text
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400991);