blob: 07072f32836ca56ae761a95d92037c38ac9d3a94 [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
Simon Glassd14da912013-04-20 08:42:42 +000046static int fdt_valid(struct fdt_header **blobp);
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) {
Simon Glassd14da912013-04-20 08:42:42 +0000107 if (!fdt_valid(&working_fdt))
Kumar Gala7dbc38a2008-08-15 08:24:35 -0500108 return 1;
Kumar Gala7dbc38a2008-08-15 08:24:35 -0500109 printf("The address of the fdt is %p\n", working_fdt);
110 return 0;
111 }
112
Kumar Gala54f9c862008-08-15 08:24:39 -0500113 addr = simple_strtoul(argv[2], NULL, 16);
114 set_working_fdt_addr((void *)addr);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400115
Simon Glassd14da912013-04-20 08:42:42 +0000116 if (!fdt_valid(&working_fdt))
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400117 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400118
119 if (argc >= 4) {
120 int len;
121 int err;
122 /*
123 * Optional new length
124 */
Gerald Van Baren91623522007-11-22 17:23:23 -0500125 len = simple_strtoul(argv[3], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500126 if (len < fdt_totalsize(working_fdt)) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400127 printf ("New length %d < existing length %d, "
128 "ignoring.\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500129 len, fdt_totalsize(working_fdt));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400130 } else {
131 /*
132 * Open in place with a new length.
133 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500134 err = fdt_open_into(working_fdt, working_fdt, len);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400135 if (err != 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400136 printf ("libfdt fdt_open_into(): %s\n",
137 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400138 }
139 }
140 }
141
Marek Vasute02c9452012-09-05 08:34:44 +0200142 return CMD_RET_SUCCESS;
143 }
144
145 if (!working_fdt) {
146 puts(
147 "No FDT memory address configured. Please configure\n"
148 "the FDT address via \"fdt addr <address>\" command.\n"
149 "Aborting!\n");
150 return CMD_RET_FAILURE;
151 }
152
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200153 /*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500154 * Move the working_fdt
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200155 */
Marek Vasute02c9452012-09-05 08:34:44 +0200156 if (strncmp(argv[1], "mo", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400157 struct fdt_header *newaddr;
158 int len;
159 int err;
160
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200161 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000162 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400163
164 /*
165 * Set the address and length of the fdt.
166 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500167 working_fdt = (struct fdt_header *)simple_strtoul(argv[2], NULL, 16);
Simon Glassd14da912013-04-20 08:42:42 +0000168 if (!fdt_valid(&working_fdt))
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400169 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400170
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400171 newaddr = (struct fdt_header *)simple_strtoul(argv[3],NULL,16);
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400172
173 /*
174 * If the user specifies a length, use that. Otherwise use the
175 * current length.
176 */
177 if (argc <= 4) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500178 len = fdt_totalsize(working_fdt);
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400179 } else {
180 len = simple_strtoul(argv[4], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500181 if (len < fdt_totalsize(working_fdt)) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400182 printf ("New length 0x%X < existing length "
183 "0x%X, aborting.\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500184 len, fdt_totalsize(working_fdt));
Gerald Van Baren6be07cc2007-04-25 22:47:15 -0400185 return 1;
186 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400187 }
188
189 /*
190 * Copy to the new location.
191 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500192 err = fdt_open_into(working_fdt, newaddr, len);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400193 if (err != 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400194 printf ("libfdt fdt_open_into(): %s\n",
195 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400196 return 1;
197 }
Kim Phillipse489b9c2008-06-10 11:06:17 -0500198 working_fdt = newaddr;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400199
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200200 /*
Gerald Van Baren25114032007-05-12 09:47:25 -0400201 * Make a new node
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200202 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400203 } else if (strncmp(argv[1], "mk", 2) == 0) {
Gerald Van Baren25114032007-05-12 09:47:25 -0400204 char *pathp; /* path */
205 char *nodep; /* new node to add */
206 int nodeoffset; /* node offset from libfdt */
207 int err;
208
209 /*
210 * Parameters: Node path, new node to be appended to the path.
211 */
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200212 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000213 return CMD_RET_USAGE;
Gerald Van Baren25114032007-05-12 09:47:25 -0400214
215 pathp = argv[2];
216 nodep = argv[3];
217
Kim Phillipse489b9c2008-06-10 11:06:17 -0500218 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400219 if (nodeoffset < 0) {
220 /*
221 * Not found or something else bad happened.
222 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500223 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400224 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400225 return 1;
226 }
Kim Phillipse489b9c2008-06-10 11:06:17 -0500227 err = fdt_add_subnode(working_fdt, nodeoffset, nodep);
Gerald Van Baren25114032007-05-12 09:47:25 -0400228 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400229 printf ("libfdt fdt_add_subnode(): %s\n",
230 fdt_strerror(err));
Gerald Van Baren25114032007-05-12 09:47:25 -0400231 return 1;
232 }
233
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200234 /*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500235 * Set the value of a property in the working_fdt.
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200236 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400237 } else if (argv[1][0] == 's') {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400238 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400239 char *prop; /* property */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400240 int nodeoffset; /* node offset from libfdt */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400241 static char data[SCRATCHPAD]; /* storage for the property */
242 int len; /* new length of the property */
243 int ret; /* return value */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400244
245 /*
Gerald Van Barenea6d8be2008-01-05 14:52:04 -0500246 * Parameters: Node path, property, optional value.
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400247 */
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200248 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000249 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400250
251 pathp = argv[2];
252 prop = argv[3];
Gerald Van Barenea6d8be2008-01-05 14:52:04 -0500253 if (argc == 4) {
254 len = 0;
255 } else {
Andy Fleming4abd8442008-03-31 20:45:56 -0500256 ret = fdt_parse_prop(&argv[4], argc - 4, data, &len);
Gerald Van Barenea6d8be2008-01-05 14:52:04 -0500257 if (ret != 0)
258 return ret;
259 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400260
Kim Phillipse489b9c2008-06-10 11:06:17 -0500261 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Baren25114032007-05-12 09:47:25 -0400262 if (nodeoffset < 0) {
263 /*
264 * Not found or something else bad happened.
265 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500266 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400267 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400268 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400269 }
Gerald Van Baren25114032007-05-12 09:47:25 -0400270
Kim Phillipse489b9c2008-06-10 11:06:17 -0500271 ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len);
Gerald Van Baren25114032007-05-12 09:47:25 -0400272 if (ret < 0) {
273 printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret));
274 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400275 }
276
Joe Hershbergerbc802952012-08-17 10:34:37 +0000277 /********************************************************************
278 * Get the value of a property in the working_fdt.
279 ********************************************************************/
280 } else if (argv[1][0] == 'g') {
281 char *subcmd; /* sub-command */
282 char *pathp; /* path */
283 char *prop; /* property */
284 char *var; /* variable to store result */
285 int nodeoffset; /* node offset from libfdt */
286 const void *nodep; /* property node pointer */
287 int len = 0; /* new length of the property */
288
289 /*
290 * Parameters: Node path, property, optional value.
291 */
292 if (argc < 5)
293 return CMD_RET_USAGE;
294
295 subcmd = argv[2];
296
297 if (argc < 6 && subcmd[0] != 's')
298 return CMD_RET_USAGE;
299
300 var = argv[3];
301 pathp = argv[4];
302 prop = argv[5];
303
304 nodeoffset = fdt_path_offset(working_fdt, pathp);
305 if (nodeoffset < 0) {
306 /*
307 * Not found or something else bad happened.
308 */
309 printf("libfdt fdt_path_offset() returned %s\n",
310 fdt_strerror(nodeoffset));
311 return 1;
312 }
313
314 if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) {
315 int reqIndex = -1;
316 int startDepth = fdt_node_depth(
317 working_fdt, nodeoffset);
318 int curDepth = startDepth;
319 int curIndex = -1;
320 int nextNodeOffset = fdt_next_node(
321 working_fdt, nodeoffset, &curDepth);
322
323 if (subcmd[0] == 'n')
324 reqIndex = simple_strtoul(argv[5], NULL, 16);
325
326 while (curDepth > startDepth) {
327 if (curDepth == startDepth + 1)
328 curIndex++;
329 if (subcmd[0] == 'n' && curIndex == reqIndex) {
330 const char *nodeName = fdt_get_name(
331 working_fdt, nextNodeOffset, NULL);
332
333 setenv(var, (char *)nodeName);
334 return 0;
335 }
336 nextNodeOffset = fdt_next_node(
337 working_fdt, nextNodeOffset, &curDepth);
338 if (nextNodeOffset < 0)
339 break;
340 }
341 if (subcmd[0] == 's') {
342 /* get the num nodes at this level */
Simon Glassbfc59962013-02-24 17:33:21 +0000343 setenv_ulong(var, curIndex + 1);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000344 } else {
345 /* node index not found */
346 printf("libfdt node not found\n");
347 return 1;
348 }
349 } else {
350 nodep = fdt_getprop(
351 working_fdt, nodeoffset, prop, &len);
352 if (len == 0) {
353 /* no property value */
354 setenv(var, "");
355 return 0;
356 } else if (len > 0) {
357 if (subcmd[0] == 'v') {
358 int ret;
359
360 ret = fdt_value_setenv(nodep, len, var);
361 if (ret != 0)
362 return ret;
363 } else if (subcmd[0] == 'a') {
364 /* Get address */
365 char buf[11];
366
Tom Rini085b9c32012-10-29 14:53:18 +0000367 sprintf(buf, "0x%p", nodep);
Joe Hershbergerbc802952012-08-17 10:34:37 +0000368 setenv(var, buf);
369 } else if (subcmd[0] == 's') {
370 /* Get size */
371 char buf[11];
372
373 sprintf(buf, "0x%08X", len);
374 setenv(var, buf);
375 } else
376 return CMD_RET_USAGE;
377 return 0;
378 } else {
379 printf("libfdt fdt_getprop(): %s\n",
380 fdt_strerror(len));
381 return 1;
382 }
383 }
384
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200385 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400386 * Print (recursive) / List (single level)
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200387 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400388 } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400389 int depth = MAX_LEVEL; /* how deep to print */
390 char *pathp; /* path */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400391 char *prop; /* property */
392 int ret; /* return value */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500393 static char root[2] = "/";
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400394
395 /*
396 * list is an alias for print, but limited to 1 level
397 */
Gerald Van Baren25114032007-05-12 09:47:25 -0400398 if (argv[1][0] == 'l') {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400399 depth = 1;
400 }
401
402 /*
403 * Get the starting path. The root node is an oddball,
404 * the offset is zero and has no name.
405 */
Kumar Galaf738b4a2007-10-25 16:15:07 -0500406 if (argc == 2)
407 pathp = root;
408 else
409 pathp = argv[2];
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400410 if (argc > 3)
411 prop = argv[3];
412 else
413 prop = NULL;
414
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400415 ret = fdt_print(pathp, prop, depth);
416 if (ret != 0)
417 return ret;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400418
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200419 /*
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400420 * Remove a property/node
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200421 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400422 } else if (strncmp(argv[1], "rm", 2) == 0) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400423 int nodeoffset; /* node offset from libfdt */
424 int err;
425
426 /*
427 * Get the path. The root node is an oddball, the offset
428 * is zero and has no name.
429 */
Kim Phillipse489b9c2008-06-10 11:06:17 -0500430 nodeoffset = fdt_path_offset (working_fdt, argv[2]);
Gerald Van Baren25114032007-05-12 09:47:25 -0400431 if (nodeoffset < 0) {
432 /*
433 * Not found or something else bad happened.
434 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500435 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400436 fdt_strerror(nodeoffset));
Gerald Van Baren25114032007-05-12 09:47:25 -0400437 return 1;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400438 }
439 /*
440 * Do the delete. A fourth parameter means delete a property,
441 * otherwise delete the node.
442 */
443 if (argc > 3) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500444 err = fdt_delprop(working_fdt, nodeoffset, argv[3]);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400445 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400446 printf("libfdt fdt_delprop(): %s\n",
447 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400448 return err;
449 }
450 } else {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500451 err = fdt_del_node(working_fdt, nodeoffset);
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400452 if (err < 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400453 printf("libfdt fdt_del_node(): %s\n",
454 fdt_strerror(err));
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400455 return err;
456 }
457 }
Kumar Gala804887e2008-02-15 03:34:36 -0600458
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200459 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600460 * Display header info
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200461 */
Kumar Gala804887e2008-02-15 03:34:36 -0600462 } else if (argv[1][0] == 'h') {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500463 u32 version = fdt_version(working_fdt);
464 printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt));
465 printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt),
466 fdt_totalsize(working_fdt));
467 printf("off_dt_struct:\t\t0x%x\n",
468 fdt_off_dt_struct(working_fdt));
469 printf("off_dt_strings:\t\t0x%x\n",
470 fdt_off_dt_strings(working_fdt));
471 printf("off_mem_rsvmap:\t\t0x%x\n",
472 fdt_off_mem_rsvmap(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600473 printf("version:\t\t%d\n", version);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500474 printf("last_comp_version:\t%d\n",
475 fdt_last_comp_version(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600476 if (version >= 2)
477 printf("boot_cpuid_phys:\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500478 fdt_boot_cpuid_phys(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600479 if (version >= 3)
480 printf("size_dt_strings:\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500481 fdt_size_dt_strings(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600482 if (version >= 17)
483 printf("size_dt_struct:\t\t0x%x\n",
Kim Phillipse489b9c2008-06-10 11:06:17 -0500484 fdt_size_dt_struct(working_fdt));
485 printf("number mem_rsv:\t\t0x%x\n",
486 fdt_num_mem_rsv(working_fdt));
Kumar Gala804887e2008-02-15 03:34:36 -0600487 printf("\n");
488
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200489 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600490 * Set boot cpu id
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200491 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400492 } else if (strncmp(argv[1], "boo", 3) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600493 unsigned long tmp = simple_strtoul(argv[2], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500494 fdt_set_boot_cpuid_phys(working_fdt, tmp);
Kumar Gala804887e2008-02-15 03:34:36 -0600495
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200496 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600497 * memory command
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200498 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400499 } else if (strncmp(argv[1], "me", 2) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600500 uint64_t addr, size;
501 int err;
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100502 addr = simple_strtoull(argv[2], NULL, 16);
503 size = simple_strtoull(argv[3], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500504 err = fdt_fixup_memory(working_fdt, addr, size);
Kumar Gala804887e2008-02-15 03:34:36 -0600505 if (err < 0)
506 return err;
507
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200508 /*
Kumar Gala804887e2008-02-15 03:34:36 -0600509 * mem reserve commands
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200510 */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400511 } else if (strncmp(argv[1], "rs", 2) == 0) {
Kumar Gala804887e2008-02-15 03:34:36 -0600512 if (argv[2][0] == 'p') {
513 uint64_t addr, size;
Kim Phillipse489b9c2008-06-10 11:06:17 -0500514 int total = fdt_num_mem_rsv(working_fdt);
Kumar Gala804887e2008-02-15 03:34:36 -0600515 int j, err;
516 printf("index\t\t start\t\t size\n");
517 printf("-------------------------------"
518 "-----------------\n");
519 for (j = 0; j < total; j++) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500520 err = fdt_get_mem_rsv(working_fdt, j, &addr, &size);
Kumar Gala804887e2008-02-15 03:34:36 -0600521 if (err < 0) {
522 printf("libfdt fdt_get_mem_rsv(): %s\n",
523 fdt_strerror(err));
524 return err;
525 }
526 printf(" %x\t%08x%08x\t%08x%08x\n", j,
527 (u32)(addr >> 32),
528 (u32)(addr & 0xffffffff),
529 (u32)(size >> 32),
530 (u32)(size & 0xffffffff));
531 }
532 } else if (argv[2][0] == 'a') {
533 uint64_t addr, size;
534 int err;
Kumar Gala804887e2008-02-15 03:34:36 -0600535 addr = simple_strtoull(argv[3], NULL, 16);
536 size = simple_strtoull(argv[4], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500537 err = fdt_add_mem_rsv(working_fdt, addr, size);
Kumar Gala804887e2008-02-15 03:34:36 -0600538
539 if (err < 0) {
540 printf("libfdt fdt_add_mem_rsv(): %s\n",
541 fdt_strerror(err));
542 return err;
543 }
544 } else if (argv[2][0] == 'd') {
545 unsigned long idx = simple_strtoul(argv[3], NULL, 16);
Kim Phillipse489b9c2008-06-10 11:06:17 -0500546 int err = fdt_del_mem_rsv(working_fdt, idx);
Kumar Gala804887e2008-02-15 03:34:36 -0600547
548 if (err < 0) {
549 printf("libfdt fdt_del_mem_rsv(): %s\n",
550 fdt_strerror(err));
551 return err;
552 }
553 } else {
554 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000555 return CMD_RET_USAGE;
Kumar Gala804887e2008-02-15 03:34:36 -0600556 }
Kim Phillips99dffca2007-07-17 13:57:04 -0500557 }
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400558#ifdef CONFIG_OF_BOARD_SETUP
Kim Phillips99dffca2007-07-17 13:57:04 -0500559 /* Call the board-specific fixup routine */
Gerald Van Baren2fb698b2008-06-09 21:02:17 -0400560 else if (strncmp(argv[1], "boa", 3) == 0)
Kim Phillipse489b9c2008-06-10 11:06:17 -0500561 ft_board_setup(working_fdt, gd->bd);
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400562#endif
Kim Phillips99dffca2007-07-17 13:57:04 -0500563 /* Create a chosen node */
Kumar Galaf953d992008-08-15 08:24:34 -0500564 else if (argv[1][0] == 'c') {
565 unsigned long initrd_start = 0, initrd_end = 0;
566
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200567 if ((argc != 2) && (argc != 4))
Simon Glass4c12eeb2011-12-10 08:44:01 +0000568 return CMD_RET_USAGE;
Kumar Galaf953d992008-08-15 08:24:34 -0500569
570 if (argc == 4) {
571 initrd_start = simple_strtoul(argv[2], NULL, 16);
572 initrd_end = simple_strtoul(argv[3], NULL, 16);
573 }
574
Heiko Schocher56844a22008-09-11 08:11:23 +0200575 fdt_chosen(working_fdt, 1);
576 fdt_initrd(working_fdt, initrd_start, initrd_end, 1);
Kumar Gala40afac22008-08-15 08:24:44 -0500577 }
578 /* resize the fdt */
579 else if (strncmp(argv[1], "re", 2) == 0) {
580 fdt_resize(working_fdt);
581 }
582 else {
Kim Phillips99dffca2007-07-17 13:57:04 -0500583 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000584 return CMD_RET_USAGE;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400585 }
586
587 return 0;
588}
589
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400590/****************************************************************************/
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400591
Simon Glassd14da912013-04-20 08:42:42 +0000592/**
593 * fdt_valid() - Check if an FDT is valid. If not, change it to NULL
594 *
595 * @blobp: Pointer to FDT pointer
596 * @return 1 if OK, 0 if bad (in which case *blobp is set to NULL)
597 */
598static int fdt_valid(struct fdt_header **blobp)
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400599{
Simon Glassd14da912013-04-20 08:42:42 +0000600 const void *blob = *blobp;
601 int err;
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400602
Simon Glassd14da912013-04-20 08:42:42 +0000603 if (blob == NULL) {
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400604 printf ("The address of the fdt is invalid (NULL).\n");
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400605 return 0;
606 }
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400607
Simon Glassd14da912013-04-20 08:42:42 +0000608 err = fdt_check_header(blob);
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400609 if (err == 0)
610 return 1; /* valid */
611
612 if (err < 0) {
Gerald Van Baren25114032007-05-12 09:47:25 -0400613 printf("libfdt fdt_check_header(): %s", fdt_strerror(err));
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400614 /*
615 * Be more informative on bad version.
616 */
617 if (err == -FDT_ERR_BADVERSION) {
Simon Glassd14da912013-04-20 08:42:42 +0000618 if (fdt_version(blob) <
Kim Phillipse489b9c2008-06-10 11:06:17 -0500619 FDT_FIRST_SUPPORTED_VERSION) {
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700620 printf (" - too old, fdt %d < %d",
Simon Glassd14da912013-04-20 08:42:42 +0000621 fdt_version(blob),
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400622 FDT_FIRST_SUPPORTED_VERSION);
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400623 }
Simon Glassd14da912013-04-20 08:42:42 +0000624 if (fdt_last_comp_version(blob) >
Kim Phillipse489b9c2008-06-10 11:06:17 -0500625 FDT_LAST_SUPPORTED_VERSION) {
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700626 printf (" - too new, fdt %d > %d",
Simon Glassd14da912013-04-20 08:42:42 +0000627 fdt_version(blob),
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400628 FDT_LAST_SUPPORTED_VERSION);
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400629 }
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400630 }
631 printf("\n");
Simon Glassd14da912013-04-20 08:42:42 +0000632 *blobp = NULL;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400633 return 0;
634 }
635 return 1;
636}
637
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400638/****************************************************************************/
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400639
640/*
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400641 * Parse the user's input, partially heuristic. Valid formats:
Andy Fleming4abd8442008-03-31 20:45:56 -0500642 * <0x00112233 4 05> - an array of cells. Numbers follow standard
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200643 * C conventions.
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400644 * [00 11 22 .. nn] - byte stream
645 * "string" - If the the value doesn't start with "<" or "[", it is
646 * treated as a string. Note that the quotes are
647 * stripped by the parser before we get the string.
Andy Fleming4abd8442008-03-31 20:45:56 -0500648 * newval: An array of strings containing the new property as specified
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200649 * on the command line
Andy Fleming4abd8442008-03-31 20:45:56 -0500650 * count: The number of strings in the array
651 * data: A bytestream to be placed in the property
652 * len: The length of the resulting bytestream
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400653 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200654static int fdt_parse_prop(char * const *newval, int count, char *data, int *len)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400655{
656 char *cp; /* temporary char pointer */
Andy Fleming4abd8442008-03-31 20:45:56 -0500657 char *newp; /* temporary newval char pointer */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400658 unsigned long tmp; /* holds converted values */
Andy Fleming4abd8442008-03-31 20:45:56 -0500659 int stridx = 0;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400660
Andy Fleming4abd8442008-03-31 20:45:56 -0500661 *len = 0;
662 newp = newval[0];
663
664 /* An array of cells */
665 if (*newp == '<') {
666 newp++;
667 while ((*newp != '>') && (stridx < count)) {
668 /*
669 * Keep searching until we find that last ">"
670 * That way users don't have to escape the spaces
671 */
672 if (*newp == '\0') {
673 newp = newval[++stridx];
674 continue;
675 }
676
677 cp = newp;
678 tmp = simple_strtoul(cp, &newp, 0);
Kim Phillips088f1b12012-10-29 13:34:31 +0000679 *(__be32 *)data = __cpu_to_be32(tmp);
Andy Fleming4abd8442008-03-31 20:45:56 -0500680 data += 4;
681 *len += 4;
682
683 /* If the ptr didn't advance, something went wrong */
684 if ((newp - cp) <= 0) {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400685 printf("Sorry, I could not convert \"%s\"\n",
686 cp);
687 return 1;
688 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500689
690 while (*newp == ' ')
691 newp++;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400692 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500693
694 if (*newp != '>') {
695 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400696 return 1;
697 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500698 } else if (*newp == '[') {
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400699 /*
700 * Byte stream. Convert the values.
701 */
Andy Fleming4abd8442008-03-31 20:45:56 -0500702 newp++;
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500703 while ((stridx < count) && (*newp != ']')) {
704 while (*newp == ' ')
705 newp++;
706 if (*newp == '\0') {
707 newp = newval[++stridx];
708 continue;
709 }
710 if (!isxdigit(*newp))
711 break;
Andy Fleming4abd8442008-03-31 20:45:56 -0500712 tmp = simple_strtoul(newp, &newp, 16);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400713 *data++ = tmp & 0xFF;
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400714 *len = *len + 1;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400715 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500716 if (*newp != ']') {
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700717 printf("Unexpected character '%c'\n", *newp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400718 return 1;
719 }
720 } else {
721 /*
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500722 * Assume it is one or more strings. Copy it into our
723 * data area for convenience (including the
724 * terminating '\0's).
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400725 */
Andy Fleming4abd8442008-03-31 20:45:56 -0500726 while (stridx < count) {
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500727 size_t length = strlen(newp) + 1;
Andy Fleming4abd8442008-03-31 20:45:56 -0500728 strcpy(data, newp);
Ken MacLeod6e748ea2009-09-11 15:16:18 -0500729 data += length;
730 *len += length;
Andy Fleming4abd8442008-03-31 20:45:56 -0500731 newp = newval[++stridx];
732 }
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400733 }
734 return 0;
735}
736
737/****************************************************************************/
738
739/*
740 * Heuristic to guess if this is a string or concatenated strings.
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400741 */
742
743static int is_printable_string(const void *data, int len)
744{
745 const char *s = data;
746
747 /* zero length is not */
748 if (len == 0)
749 return 0;
750
Joe Hershberger8805bee2012-08-17 10:34:38 +0000751 /* must terminate with zero or '\n' */
752 if (s[len - 1] != '\0' && s[len - 1] != '\n')
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400753 return 0;
754
755 /* printable or a null byte (concatenated strings) */
Joe Hershberger8805bee2012-08-17 10:34:38 +0000756 while (((*s == '\0') || isprint(*s) || isspace(*s)) && (len > 0)) {
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400757 /*
758 * If we see a null, there are three possibilities:
759 * 1) If len == 1, it is the end of the string, printable
760 * 2) Next character also a null, not printable.
761 * 3) Next character not a null, continue to check.
762 */
763 if (s[0] == '\0') {
764 if (len == 1)
765 return 1;
766 if (s[1] == '\0')
767 return 0;
768 }
769 s++;
770 len--;
771 }
772
773 /* Not the null termination, or not done yet: not printable */
774 if (*s != '\0' || (len != 0))
775 return 0;
776
777 return 1;
778}
779
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400780
781/*
782 * Print the property in the best format, a heuristic guess. Print as
783 * a string, concatenated strings, a byte, word, double word, or (if all
784 * else fails) it is printed as a stream of bytes.
785 */
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400786static void print_data(const void *data, int len)
787{
788 int j;
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400789
790 /* no data, don't print */
791 if (len == 0)
792 return;
793
794 /*
795 * It is a string, but it may have multiple strings (embedded '\0's).
796 */
797 if (is_printable_string(data, len)) {
798 puts("\"");
799 j = 0;
800 while (j < len) {
801 if (j > 0)
802 puts("\", \"");
803 puts(data);
804 j += strlen(data) + 1;
805 data += strlen(data) + 1;
806 }
807 puts("\"");
808 return;
809 }
810
Andy Fleming4abd8442008-03-31 20:45:56 -0500811 if ((len %4) == 0) {
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000812 if (len > CONFIG_CMD_FDT_MAX_DUMP)
Tom Rini085b9c32012-10-29 14:53:18 +0000813 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000814 else {
Kim Phillips088f1b12012-10-29 13:34:31 +0000815 const __be32 *p;
Andy Fleming4abd8442008-03-31 20:45:56 -0500816
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000817 printf("<");
818 for (j = 0, p = data; j < len/4; j++)
819 printf("0x%08x%s", fdt32_to_cpu(p[j]),
820 j < (len/4 - 1) ? " " : "");
821 printf(">");
822 }
Andy Fleming4abd8442008-03-31 20:45:56 -0500823 } else { /* anything else... hexdump */
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000824 if (len > CONFIG_CMD_FDT_MAX_DUMP)
Tom Rini085b9c32012-10-29 14:53:18 +0000825 printf("* 0x%p [0x%08x]", data, len);
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000826 else {
827 const u8 *s;
Andy Fleming4abd8442008-03-31 20:45:56 -0500828
Joe Hershbergerf0a29d42012-08-17 10:34:36 +0000829 printf("[");
830 for (j = 0, s = data; j < len; j++)
831 printf("%02x%s", s[j], j < len - 1 ? " " : "");
832 printf("]");
833 }
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400834 }
835}
836
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400837/****************************************************************************/
838
839/*
Kim Phillipse489b9c2008-06-10 11:06:17 -0500840 * Recursively print (a portion of) the working_fdt. The depth parameter
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400841 * determines how deeply nested the fdt is printed.
842 */
Kumar Galadbaf07c2007-11-21 14:07:46 -0600843static int fdt_print(const char *pathp, char *prop, int depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400844{
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400845 static char tabs[MAX_LEVEL+1] =
846 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"
847 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
Kumar Galadbaf07c2007-11-21 14:07:46 -0600848 const void *nodep; /* property node pointer */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400849 int nodeoffset; /* node offset from libfdt */
850 int nextoffset; /* next node offset from libfdt */
851 uint32_t tag; /* tag */
852 int len; /* length of the property */
853 int level = 0; /* keep track of nesting level */
Gerald Van Baren91623522007-11-22 17:23:23 -0500854 const struct fdt_property *fdt_prop;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400855
Kim Phillipse489b9c2008-06-10 11:06:17 -0500856 nodeoffset = fdt_path_offset (working_fdt, pathp);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400857 if (nodeoffset < 0) {
858 /*
859 * Not found or something else bad happened.
860 */
Kumar Gala8d04f022007-10-24 11:04:22 -0500861 printf ("libfdt fdt_path_offset() returned %s\n",
Gerald Van Baren06e19a02007-05-21 23:27:16 -0400862 fdt_strerror(nodeoffset));
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400863 return 1;
864 }
865 /*
866 * The user passed in a property as well as node path.
867 * Print only the given property and then return.
868 */
869 if (prop) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500870 nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400871 if (len == 0) {
872 /* no property value */
873 printf("%s %s\n", pathp, prop);
874 return 0;
875 } else if (len > 0) {
Gerald Van Baren28f384b2007-11-23 19:43:20 -0500876 printf("%s = ", prop);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400877 print_data (nodep, len);
878 printf("\n");
879 return 0;
880 } else {
881 printf ("libfdt fdt_getprop(): %s\n",
882 fdt_strerror(len));
883 return 1;
884 }
885 }
886
887 /*
888 * The user passed in a node path and no property,
889 * print the node and all subnodes.
890 */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400891 while(level >= 0) {
Kim Phillipse489b9c2008-06-10 11:06:17 -0500892 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400893 switch(tag) {
894 case FDT_BEGIN_NODE:
Kim Phillipse489b9c2008-06-10 11:06:17 -0500895 pathp = fdt_get_name(working_fdt, nodeoffset, NULL);
Gerald Van Baren91623522007-11-22 17:23:23 -0500896 if (level <= depth) {
897 if (pathp == NULL)
898 pathp = "/* NULL pointer error */";
899 if (*pathp == '\0')
900 pathp = "/"; /* root is nameless */
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400901 printf("%s%s {\n",
902 &tabs[MAX_LEVEL - level], pathp);
Gerald Van Baren91623522007-11-22 17:23:23 -0500903 }
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400904 level++;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400905 if (level >= MAX_LEVEL) {
Gerald Van Baren91623522007-11-22 17:23:23 -0500906 printf("Nested too deep, aborting.\n");
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400907 return 1;
908 }
909 break;
910 case FDT_END_NODE:
911 level--;
Gerald Van Baren91623522007-11-22 17:23:23 -0500912 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400913 printf("%s};\n", &tabs[MAX_LEVEL - level]);
914 if (level == 0) {
915 level = -1; /* exit the loop */
916 }
917 break;
918 case FDT_PROP:
Kim Phillipse489b9c2008-06-10 11:06:17 -0500919 fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset,
Gerald Van Baren91623522007-11-22 17:23:23 -0500920 sizeof(*fdt_prop));
Kim Phillipse489b9c2008-06-10 11:06:17 -0500921 pathp = fdt_string(working_fdt,
Gerald Van Baren91623522007-11-22 17:23:23 -0500922 fdt32_to_cpu(fdt_prop->nameoff));
923 len = fdt32_to_cpu(fdt_prop->len);
924 nodep = fdt_prop->data;
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400925 if (len < 0) {
926 printf ("libfdt fdt_getprop(): %s\n",
927 fdt_strerror(len));
928 return 1;
929 } else if (len == 0) {
930 /* the property has no value */
Gerald Van Baren91623522007-11-22 17:23:23 -0500931 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400932 printf("%s%s;\n",
933 &tabs[MAX_LEVEL - level],
934 pathp);
935 } else {
Gerald Van Baren91623522007-11-22 17:23:23 -0500936 if (level <= depth) {
Gerald Van Baren28f384b2007-11-23 19:43:20 -0500937 printf("%s%s = ",
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400938 &tabs[MAX_LEVEL - level],
939 pathp);
940 print_data (nodep, len);
941 printf(";\n");
942 }
943 }
944 break;
945 case FDT_NOP:
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700946 printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]);
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400947 break;
948 case FDT_END:
949 return 1;
950 default:
Gerald Van Baren91623522007-11-22 17:23:23 -0500951 if (level <= depth)
Gerald Van Barenaddd8ce2007-05-16 22:39:59 -0400952 printf("Unknown tag 0x%08X\n", tag);
953 return 1;
954 }
955 nodeoffset = nextoffset;
956 }
957 return 0;
958}
959
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400960/********************************************************************/
Kim Phillips088f1b12012-10-29 13:34:31 +0000961#ifdef CONFIG_SYS_LONGHELP
962static char fdt_help_text[] =
963 "addr <addr> [<length>] - Set the fdt location to <addr>\n"
Gerald Van Barenfd61e552007-06-25 23:25:28 -0400964#ifdef CONFIG_OF_BOARD_SETUP
965 "fdt boardsetup - Do board-specific set up\n"
966#endif
Gerald Van Baren238cb7a2008-01-05 15:33:29 -0500967 "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n"
Kumar Gala40afac22008-08-15 08:24:44 -0500968 "fdt resize - Resize fdt to size + padding to 4k addr\n"
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400969 "fdt print <path> [<prop>] - Recursive print starting at <path>\n"
970 "fdt list <path> [<prop>] - Print one level starting at <path>\n"
Joe Hershbergerbc802952012-08-17 10:34:37 +0000971 "fdt get value <var> <path> <prop> - Get <property> and store in <var>\n"
972 "fdt get name <var> <path> <index> - Get name of node <index> and store in <var>\n"
973 "fdt get addr <var> <path> <prop> - Get start address of <property> and store in <var>\n"
974 "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 -0400975 "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n"
976 "fdt mknode <path> <node> - Create a new node after <path>\n"
977 "fdt rm <path> [<prop>] - Delete the node or <property>\n"
Kumar Gala804887e2008-02-15 03:34:36 -0600978 "fdt header - Display header info\n"
979 "fdt bootcpu <id> - Set boot cpuid\n"
980 "fdt memory <addr> <size> - Add/Update memory node\n"
981 "fdt rsvmem print - Show current mem reserves\n"
982 "fdt rsvmem add <addr> <size> - Add a mem reserve\n"
983 "fdt rsvmem delete <index> - Delete a mem reserves\n"
Kumar Galaf953d992008-08-15 08:24:34 -0500984 "fdt chosen [<start> <end>] - Add/update the /chosen branch in the tree\n"
985 " <start>/<end> - initrd start/end addr\n"
Gerald Van Baren109c30f2008-08-22 14:37:05 -0400986 "NOTE: Dereference aliases by omiting the leading '/', "
Kim Phillips088f1b12012-10-29 13:34:31 +0000987 "e.g. fdt print ethernet0.";
988#endif
989
990U_BOOT_CMD(
991 fdt, 255, 0, do_fdt,
992 "flattened device tree utility commands", fdt_help_text
Gerald Van Baren781e09e2007-03-31 12:22:10 -0400993);