Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 1 | /* |
| 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 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <command.h> |
| 13 | #include <linux/ctype.h> |
| 14 | #include <linux/types.h> |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 15 | #include <asm/global_data.h> |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 16 | #include <libfdt.h> |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 17 | #include <fdt_support.h> |
Simon Glass | a92fd65 | 2013-04-20 08:42:45 +0000 | [diff] [blame] | 18 | #include <asm/io.h> |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 19 | |
| 20 | #define MAX_LEVEL 32 /* how deeply nested we will go */ |
Gerald Van Baren | fd61e55 | 2007-06-25 23:25:28 -0400 | [diff] [blame] | 21 | #define SCRATCHPAD 1024 /* bytes of scratchpad memory */ |
Joe Hershberger | f0a29d4 | 2012-08-17 10:34:36 +0000 | [diff] [blame] | 22 | #ifndef CONFIG_CMD_FDT_MAX_DUMP |
| 23 | #define CONFIG_CMD_FDT_MAX_DUMP 64 |
| 24 | #endif |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 25 | |
| 26 | /* |
| 27 | * Global data (for the gd->bd) |
| 28 | */ |
| 29 | DECLARE_GLOBAL_DATA_PTR; |
| 30 | |
Simon Glass | d14da91 | 2013-04-20 08:42:42 +0000 | [diff] [blame] | 31 | static int fdt_valid(struct fdt_header **blobp); |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 32 | static int fdt_parse_prop(char *const*newval, int count, char *data, int *len); |
Kumar Gala | dbaf07c | 2007-11-21 14:07:46 -0600 | [diff] [blame] | 33 | static int fdt_print(const char *pathp, char *prop, int depth); |
Joe Hershberger | bc80295 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 34 | static int is_printable_string(const void *data, int len); |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 35 | |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 36 | /* |
Gerald Van Baren | ae9e97f | 2008-06-10 22:15:58 -0400 | [diff] [blame] | 37 | * The working_fdt points to our working flattened device tree. |
| 38 | */ |
| 39 | struct fdt_header *working_fdt; |
| 40 | |
Kumar Gala | 54f9c86 | 2008-08-15 08:24:39 -0500 | [diff] [blame] | 41 | void set_working_fdt_addr(void *addr) |
| 42 | { |
Simon Glass | a92fd65 | 2013-04-20 08:42:45 +0000 | [diff] [blame] | 43 | void *buf; |
| 44 | |
| 45 | buf = map_sysmem((ulong)addr, 0); |
| 46 | working_fdt = buf; |
Simon Glass | bfc5996 | 2013-02-24 17:33:21 +0000 | [diff] [blame] | 47 | setenv_addr("fdtaddr", addr); |
Kumar Gala | 54f9c86 | 2008-08-15 08:24:39 -0500 | [diff] [blame] | 48 | } |
| 49 | |
Gerald Van Baren | ae9e97f | 2008-06-10 22:15:58 -0400 | [diff] [blame] | 50 | /* |
Joe Hershberger | bc80295 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 51 | * Get a value from the fdt and format it to be set in the environment |
| 52 | */ |
| 53 | static int fdt_value_setenv(const void *nodep, int len, const char *var) |
| 54 | { |
| 55 | if (is_printable_string(nodep, len)) |
| 56 | setenv(var, (void *)nodep); |
| 57 | else if (len == 4) { |
| 58 | char buf[11]; |
| 59 | |
| 60 | sprintf(buf, "0x%08X", *(uint32_t *)nodep); |
| 61 | setenv(var, buf); |
| 62 | } else if (len%4 == 0 && len <= 20) { |
| 63 | /* Needed to print things like sha1 hashes. */ |
| 64 | char buf[41]; |
| 65 | int i; |
| 66 | |
| 67 | for (i = 0; i < len; i += sizeof(unsigned int)) |
| 68 | sprintf(buf + (i * 2), "%08x", |
| 69 | *(unsigned int *)(nodep + i)); |
| 70 | setenv(var, buf); |
| 71 | } else { |
| 72 | printf("error: unprintable value\n"); |
| 73 | return 1; |
| 74 | } |
| 75 | return 0; |
| 76 | } |
| 77 | |
| 78 | /* |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 79 | * Flattened Device Tree command, see the help for parameter definitions. |
| 80 | */ |
Kim Phillips | 088f1b1 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 81 | static int do_fdt(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 82 | { |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 83 | if (argc < 2) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 84 | return CMD_RET_USAGE; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 85 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 86 | /* |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 87 | * Set the address of the fdt |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 88 | */ |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 89 | if (argv[1][0] == 'a') { |
Kumar Gala | 54f9c86 | 2008-08-15 08:24:39 -0500 | [diff] [blame] | 90 | unsigned long addr; |
Simon Glass | 4b57865 | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 91 | int control = 0; |
| 92 | struct fdt_header *blob; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 93 | /* |
| 94 | * Set the address [and length] of the fdt. |
| 95 | */ |
Simon Glass | 4b57865 | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 96 | argc -= 2; |
| 97 | argv += 2; |
| 98 | /* Temporary #ifdef - some archs don't have fdt_blob yet */ |
| 99 | #ifdef CONFIG_OF_CONTROL |
| 100 | if (argc && !strcmp(*argv, "-c")) { |
| 101 | control = 1; |
| 102 | argc--; |
| 103 | argv++; |
| 104 | } |
| 105 | #endif |
| 106 | if (argc == 0) { |
| 107 | if (control) |
| 108 | blob = (struct fdt_header *)gd->fdt_blob; |
| 109 | else |
| 110 | blob = working_fdt; |
| 111 | if (!blob || !fdt_valid(&blob)) |
Kumar Gala | 7dbc38a | 2008-08-15 08:24:35 -0500 | [diff] [blame] | 112 | return 1; |
Simon Glass | 4b57865 | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 113 | printf("The address of the fdt is %#08lx\n", |
| 114 | control ? (ulong)blob : |
| 115 | getenv_hex("fdtaddr", 0)); |
Kumar Gala | 7dbc38a | 2008-08-15 08:24:35 -0500 | [diff] [blame] | 116 | return 0; |
| 117 | } |
| 118 | |
Simon Glass | 4b57865 | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 119 | addr = simple_strtoul(argv[0], NULL, 16); |
Simon Glass | a92fd65 | 2013-04-20 08:42:45 +0000 | [diff] [blame] | 120 | blob = map_sysmem(addr, 0); |
Simon Glass | 4b57865 | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 121 | if (!fdt_valid(&blob)) |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 122 | return 1; |
Simon Glass | 4b57865 | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 123 | if (control) |
| 124 | gd->fdt_blob = blob; |
| 125 | else |
Simon Glass | a92fd65 | 2013-04-20 08:42:45 +0000 | [diff] [blame] | 126 | set_working_fdt_addr(blob); |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 127 | |
Simon Glass | 4b57865 | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 128 | if (argc >= 2) { |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 129 | int len; |
| 130 | int err; |
| 131 | /* |
| 132 | * Optional new length |
| 133 | */ |
Simon Glass | 4b57865 | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 134 | len = simple_strtoul(argv[1], NULL, 16); |
| 135 | if (len < fdt_totalsize(blob)) { |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 136 | printf ("New length %d < existing length %d, " |
| 137 | "ignoring.\n", |
Simon Glass | 4b57865 | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 138 | len, fdt_totalsize(blob)); |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 139 | } else { |
| 140 | /* |
| 141 | * Open in place with a new length. |
| 142 | */ |
Simon Glass | 4b57865 | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 143 | err = fdt_open_into(blob, blob, len); |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 144 | if (err != 0) { |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 145 | printf ("libfdt fdt_open_into(): %s\n", |
| 146 | fdt_strerror(err)); |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 147 | } |
| 148 | } |
| 149 | } |
| 150 | |
Marek Vasut | e02c945 | 2012-09-05 08:34:44 +0200 | [diff] [blame] | 151 | return CMD_RET_SUCCESS; |
| 152 | } |
| 153 | |
| 154 | if (!working_fdt) { |
| 155 | puts( |
| 156 | "No FDT memory address configured. Please configure\n" |
| 157 | "the FDT address via \"fdt addr <address>\" command.\n" |
| 158 | "Aborting!\n"); |
| 159 | return CMD_RET_FAILURE; |
| 160 | } |
| 161 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 162 | /* |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 163 | * Move the working_fdt |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 164 | */ |
Marek Vasut | e02c945 | 2012-09-05 08:34:44 +0200 | [diff] [blame] | 165 | if (strncmp(argv[1], "mo", 2) == 0) { |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 166 | struct fdt_header *newaddr; |
| 167 | int len; |
| 168 | int err; |
| 169 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 170 | if (argc < 4) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 171 | return CMD_RET_USAGE; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 172 | |
| 173 | /* |
| 174 | * Set the address and length of the fdt. |
| 175 | */ |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 176 | working_fdt = (struct fdt_header *)simple_strtoul(argv[2], NULL, 16); |
Simon Glass | d14da91 | 2013-04-20 08:42:42 +0000 | [diff] [blame] | 177 | if (!fdt_valid(&working_fdt)) |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 178 | return 1; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 179 | |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 180 | newaddr = (struct fdt_header *)simple_strtoul(argv[3],NULL,16); |
Gerald Van Baren | 6be07cc | 2007-04-25 22:47:15 -0400 | [diff] [blame] | 181 | |
| 182 | /* |
| 183 | * If the user specifies a length, use that. Otherwise use the |
| 184 | * current length. |
| 185 | */ |
| 186 | if (argc <= 4) { |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 187 | len = fdt_totalsize(working_fdt); |
Gerald Van Baren | 6be07cc | 2007-04-25 22:47:15 -0400 | [diff] [blame] | 188 | } else { |
| 189 | len = simple_strtoul(argv[4], NULL, 16); |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 190 | if (len < fdt_totalsize(working_fdt)) { |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 191 | printf ("New length 0x%X < existing length " |
| 192 | "0x%X, aborting.\n", |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 193 | len, fdt_totalsize(working_fdt)); |
Gerald Van Baren | 6be07cc | 2007-04-25 22:47:15 -0400 | [diff] [blame] | 194 | return 1; |
| 195 | } |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | /* |
| 199 | * Copy to the new location. |
| 200 | */ |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 201 | err = fdt_open_into(working_fdt, newaddr, len); |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 202 | if (err != 0) { |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 203 | printf ("libfdt fdt_open_into(): %s\n", |
| 204 | fdt_strerror(err)); |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 205 | return 1; |
| 206 | } |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 207 | working_fdt = newaddr; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 208 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 209 | /* |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 210 | * Make a new node |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 211 | */ |
Gerald Van Baren | 2fb698b | 2008-06-09 21:02:17 -0400 | [diff] [blame] | 212 | } else if (strncmp(argv[1], "mk", 2) == 0) { |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 213 | char *pathp; /* path */ |
| 214 | char *nodep; /* new node to add */ |
| 215 | int nodeoffset; /* node offset from libfdt */ |
| 216 | int err; |
| 217 | |
| 218 | /* |
| 219 | * Parameters: Node path, new node to be appended to the path. |
| 220 | */ |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 221 | if (argc < 4) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 222 | return CMD_RET_USAGE; |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 223 | |
| 224 | pathp = argv[2]; |
| 225 | nodep = argv[3]; |
| 226 | |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 227 | nodeoffset = fdt_path_offset (working_fdt, pathp); |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 228 | if (nodeoffset < 0) { |
| 229 | /* |
| 230 | * Not found or something else bad happened. |
| 231 | */ |
Kumar Gala | 8d04f02 | 2007-10-24 11:04:22 -0500 | [diff] [blame] | 232 | printf ("libfdt fdt_path_offset() returned %s\n", |
Gerald Van Baren | 06e19a0 | 2007-05-21 23:27:16 -0400 | [diff] [blame] | 233 | fdt_strerror(nodeoffset)); |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 234 | return 1; |
| 235 | } |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 236 | err = fdt_add_subnode(working_fdt, nodeoffset, nodep); |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 237 | if (err < 0) { |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 238 | printf ("libfdt fdt_add_subnode(): %s\n", |
| 239 | fdt_strerror(err)); |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 240 | return 1; |
| 241 | } |
| 242 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 243 | /* |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 244 | * Set the value of a property in the working_fdt. |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 245 | */ |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 246 | } else if (argv[1][0] == 's') { |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 247 | char *pathp; /* path */ |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 248 | char *prop; /* property */ |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 249 | int nodeoffset; /* node offset from libfdt */ |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 250 | static char data[SCRATCHPAD]; /* storage for the property */ |
| 251 | int len; /* new length of the property */ |
| 252 | int ret; /* return value */ |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 253 | |
| 254 | /* |
Gerald Van Baren | ea6d8be | 2008-01-05 14:52:04 -0500 | [diff] [blame] | 255 | * Parameters: Node path, property, optional value. |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 256 | */ |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 257 | if (argc < 4) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 258 | return CMD_RET_USAGE; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 259 | |
| 260 | pathp = argv[2]; |
| 261 | prop = argv[3]; |
Gerald Van Baren | ea6d8be | 2008-01-05 14:52:04 -0500 | [diff] [blame] | 262 | if (argc == 4) { |
| 263 | len = 0; |
| 264 | } else { |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 265 | ret = fdt_parse_prop(&argv[4], argc - 4, data, &len); |
Gerald Van Baren | ea6d8be | 2008-01-05 14:52:04 -0500 | [diff] [blame] | 266 | if (ret != 0) |
| 267 | return ret; |
| 268 | } |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 269 | |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 270 | nodeoffset = fdt_path_offset (working_fdt, pathp); |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 271 | if (nodeoffset < 0) { |
| 272 | /* |
| 273 | * Not found or something else bad happened. |
| 274 | */ |
Kumar Gala | 8d04f02 | 2007-10-24 11:04:22 -0500 | [diff] [blame] | 275 | printf ("libfdt fdt_path_offset() returned %s\n", |
Gerald Van Baren | 06e19a0 | 2007-05-21 23:27:16 -0400 | [diff] [blame] | 276 | fdt_strerror(nodeoffset)); |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 277 | return 1; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 278 | } |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 279 | |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 280 | ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len); |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 281 | if (ret < 0) { |
| 282 | printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret)); |
| 283 | return 1; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 284 | } |
| 285 | |
Joe Hershberger | bc80295 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 286 | /******************************************************************** |
| 287 | * Get the value of a property in the working_fdt. |
| 288 | ********************************************************************/ |
| 289 | } else if (argv[1][0] == 'g') { |
| 290 | char *subcmd; /* sub-command */ |
| 291 | char *pathp; /* path */ |
| 292 | char *prop; /* property */ |
| 293 | char *var; /* variable to store result */ |
| 294 | int nodeoffset; /* node offset from libfdt */ |
| 295 | const void *nodep; /* property node pointer */ |
| 296 | int len = 0; /* new length of the property */ |
| 297 | |
| 298 | /* |
| 299 | * Parameters: Node path, property, optional value. |
| 300 | */ |
| 301 | if (argc < 5) |
| 302 | return CMD_RET_USAGE; |
| 303 | |
| 304 | subcmd = argv[2]; |
| 305 | |
| 306 | if (argc < 6 && subcmd[0] != 's') |
| 307 | return CMD_RET_USAGE; |
| 308 | |
| 309 | var = argv[3]; |
| 310 | pathp = argv[4]; |
| 311 | prop = argv[5]; |
| 312 | |
| 313 | nodeoffset = fdt_path_offset(working_fdt, pathp); |
| 314 | if (nodeoffset < 0) { |
| 315 | /* |
| 316 | * Not found or something else bad happened. |
| 317 | */ |
| 318 | printf("libfdt fdt_path_offset() returned %s\n", |
| 319 | fdt_strerror(nodeoffset)); |
| 320 | return 1; |
| 321 | } |
| 322 | |
| 323 | if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) { |
| 324 | int reqIndex = -1; |
| 325 | int startDepth = fdt_node_depth( |
| 326 | working_fdt, nodeoffset); |
| 327 | int curDepth = startDepth; |
| 328 | int curIndex = -1; |
| 329 | int nextNodeOffset = fdt_next_node( |
| 330 | working_fdt, nodeoffset, &curDepth); |
| 331 | |
| 332 | if (subcmd[0] == 'n') |
| 333 | reqIndex = simple_strtoul(argv[5], NULL, 16); |
| 334 | |
| 335 | while (curDepth > startDepth) { |
| 336 | if (curDepth == startDepth + 1) |
| 337 | curIndex++; |
| 338 | if (subcmd[0] == 'n' && curIndex == reqIndex) { |
| 339 | const char *nodeName = fdt_get_name( |
| 340 | working_fdt, nextNodeOffset, NULL); |
| 341 | |
| 342 | setenv(var, (char *)nodeName); |
| 343 | return 0; |
| 344 | } |
| 345 | nextNodeOffset = fdt_next_node( |
| 346 | working_fdt, nextNodeOffset, &curDepth); |
| 347 | if (nextNodeOffset < 0) |
| 348 | break; |
| 349 | } |
| 350 | if (subcmd[0] == 's') { |
| 351 | /* get the num nodes at this level */ |
Simon Glass | bfc5996 | 2013-02-24 17:33:21 +0000 | [diff] [blame] | 352 | setenv_ulong(var, curIndex + 1); |
Joe Hershberger | bc80295 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 353 | } else { |
| 354 | /* node index not found */ |
| 355 | printf("libfdt node not found\n"); |
| 356 | return 1; |
| 357 | } |
| 358 | } else { |
| 359 | nodep = fdt_getprop( |
| 360 | working_fdt, nodeoffset, prop, &len); |
| 361 | if (len == 0) { |
| 362 | /* no property value */ |
| 363 | setenv(var, ""); |
| 364 | return 0; |
| 365 | } else if (len > 0) { |
| 366 | if (subcmd[0] == 'v') { |
| 367 | int ret; |
| 368 | |
| 369 | ret = fdt_value_setenv(nodep, len, var); |
| 370 | if (ret != 0) |
| 371 | return ret; |
| 372 | } else if (subcmd[0] == 'a') { |
| 373 | /* Get address */ |
| 374 | char buf[11]; |
| 375 | |
Tom Rini | 085b9c3 | 2012-10-29 14:53:18 +0000 | [diff] [blame] | 376 | sprintf(buf, "0x%p", nodep); |
Joe Hershberger | bc80295 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 377 | setenv(var, buf); |
| 378 | } else if (subcmd[0] == 's') { |
| 379 | /* Get size */ |
| 380 | char buf[11]; |
| 381 | |
| 382 | sprintf(buf, "0x%08X", len); |
| 383 | setenv(var, buf); |
| 384 | } else |
| 385 | return CMD_RET_USAGE; |
| 386 | return 0; |
| 387 | } else { |
| 388 | printf("libfdt fdt_getprop(): %s\n", |
| 389 | fdt_strerror(len)); |
| 390 | return 1; |
| 391 | } |
| 392 | } |
| 393 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 394 | /* |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 395 | * Print (recursive) / List (single level) |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 396 | */ |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 397 | } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) { |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 398 | int depth = MAX_LEVEL; /* how deep to print */ |
| 399 | char *pathp; /* path */ |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 400 | char *prop; /* property */ |
| 401 | int ret; /* return value */ |
Kumar Gala | f738b4a | 2007-10-25 16:15:07 -0500 | [diff] [blame] | 402 | static char root[2] = "/"; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 403 | |
| 404 | /* |
| 405 | * list is an alias for print, but limited to 1 level |
| 406 | */ |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 407 | if (argv[1][0] == 'l') { |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 408 | depth = 1; |
| 409 | } |
| 410 | |
| 411 | /* |
| 412 | * Get the starting path. The root node is an oddball, |
| 413 | * the offset is zero and has no name. |
| 414 | */ |
Kumar Gala | f738b4a | 2007-10-25 16:15:07 -0500 | [diff] [blame] | 415 | if (argc == 2) |
| 416 | pathp = root; |
| 417 | else |
| 418 | pathp = argv[2]; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 419 | if (argc > 3) |
| 420 | prop = argv[3]; |
| 421 | else |
| 422 | prop = NULL; |
| 423 | |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 424 | ret = fdt_print(pathp, prop, depth); |
| 425 | if (ret != 0) |
| 426 | return ret; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 427 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 428 | /* |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 429 | * Remove a property/node |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 430 | */ |
Gerald Van Baren | 2fb698b | 2008-06-09 21:02:17 -0400 | [diff] [blame] | 431 | } else if (strncmp(argv[1], "rm", 2) == 0) { |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 432 | int nodeoffset; /* node offset from libfdt */ |
| 433 | int err; |
| 434 | |
| 435 | /* |
| 436 | * Get the path. The root node is an oddball, the offset |
| 437 | * is zero and has no name. |
| 438 | */ |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 439 | nodeoffset = fdt_path_offset (working_fdt, argv[2]); |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 440 | if (nodeoffset < 0) { |
| 441 | /* |
| 442 | * Not found or something else bad happened. |
| 443 | */ |
Kumar Gala | 8d04f02 | 2007-10-24 11:04:22 -0500 | [diff] [blame] | 444 | printf ("libfdt fdt_path_offset() returned %s\n", |
Gerald Van Baren | 06e19a0 | 2007-05-21 23:27:16 -0400 | [diff] [blame] | 445 | fdt_strerror(nodeoffset)); |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 446 | return 1; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 447 | } |
| 448 | /* |
| 449 | * Do the delete. A fourth parameter means delete a property, |
| 450 | * otherwise delete the node. |
| 451 | */ |
| 452 | if (argc > 3) { |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 453 | err = fdt_delprop(working_fdt, nodeoffset, argv[3]); |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 454 | if (err < 0) { |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 455 | printf("libfdt fdt_delprop(): %s\n", |
| 456 | fdt_strerror(err)); |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 457 | return err; |
| 458 | } |
| 459 | } else { |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 460 | err = fdt_del_node(working_fdt, nodeoffset); |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 461 | if (err < 0) { |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 462 | printf("libfdt fdt_del_node(): %s\n", |
| 463 | fdt_strerror(err)); |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 464 | return err; |
| 465 | } |
| 466 | } |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 467 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 468 | /* |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 469 | * Display header info |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 470 | */ |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 471 | } else if (argv[1][0] == 'h') { |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 472 | u32 version = fdt_version(working_fdt); |
| 473 | printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt)); |
| 474 | printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt), |
| 475 | fdt_totalsize(working_fdt)); |
| 476 | printf("off_dt_struct:\t\t0x%x\n", |
| 477 | fdt_off_dt_struct(working_fdt)); |
| 478 | printf("off_dt_strings:\t\t0x%x\n", |
| 479 | fdt_off_dt_strings(working_fdt)); |
| 480 | printf("off_mem_rsvmap:\t\t0x%x\n", |
| 481 | fdt_off_mem_rsvmap(working_fdt)); |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 482 | printf("version:\t\t%d\n", version); |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 483 | printf("last_comp_version:\t%d\n", |
| 484 | fdt_last_comp_version(working_fdt)); |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 485 | if (version >= 2) |
| 486 | printf("boot_cpuid_phys:\t0x%x\n", |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 487 | fdt_boot_cpuid_phys(working_fdt)); |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 488 | if (version >= 3) |
| 489 | printf("size_dt_strings:\t0x%x\n", |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 490 | fdt_size_dt_strings(working_fdt)); |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 491 | if (version >= 17) |
| 492 | printf("size_dt_struct:\t\t0x%x\n", |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 493 | fdt_size_dt_struct(working_fdt)); |
| 494 | printf("number mem_rsv:\t\t0x%x\n", |
| 495 | fdt_num_mem_rsv(working_fdt)); |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 496 | printf("\n"); |
| 497 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 498 | /* |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 499 | * Set boot cpu id |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 500 | */ |
Gerald Van Baren | 2fb698b | 2008-06-09 21:02:17 -0400 | [diff] [blame] | 501 | } else if (strncmp(argv[1], "boo", 3) == 0) { |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 502 | unsigned long tmp = simple_strtoul(argv[2], NULL, 16); |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 503 | fdt_set_boot_cpuid_phys(working_fdt, tmp); |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 504 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 505 | /* |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 506 | * memory command |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 507 | */ |
Gerald Van Baren | 2fb698b | 2008-06-09 21:02:17 -0400 | [diff] [blame] | 508 | } else if (strncmp(argv[1], "me", 2) == 0) { |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 509 | uint64_t addr, size; |
| 510 | int err; |
Heiko Schocher | 4b142fe | 2009-12-03 11:21:21 +0100 | [diff] [blame] | 511 | addr = simple_strtoull(argv[2], NULL, 16); |
| 512 | size = simple_strtoull(argv[3], NULL, 16); |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 513 | err = fdt_fixup_memory(working_fdt, addr, size); |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 514 | if (err < 0) |
| 515 | return err; |
| 516 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 517 | /* |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 518 | * mem reserve commands |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 519 | */ |
Gerald Van Baren | 2fb698b | 2008-06-09 21:02:17 -0400 | [diff] [blame] | 520 | } else if (strncmp(argv[1], "rs", 2) == 0) { |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 521 | if (argv[2][0] == 'p') { |
| 522 | uint64_t addr, size; |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 523 | int total = fdt_num_mem_rsv(working_fdt); |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 524 | int j, err; |
| 525 | printf("index\t\t start\t\t size\n"); |
| 526 | printf("-------------------------------" |
| 527 | "-----------------\n"); |
| 528 | for (j = 0; j < total; j++) { |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 529 | err = fdt_get_mem_rsv(working_fdt, j, &addr, &size); |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 530 | if (err < 0) { |
| 531 | printf("libfdt fdt_get_mem_rsv(): %s\n", |
| 532 | fdt_strerror(err)); |
| 533 | return err; |
| 534 | } |
| 535 | printf(" %x\t%08x%08x\t%08x%08x\n", j, |
| 536 | (u32)(addr >> 32), |
| 537 | (u32)(addr & 0xffffffff), |
| 538 | (u32)(size >> 32), |
| 539 | (u32)(size & 0xffffffff)); |
| 540 | } |
| 541 | } else if (argv[2][0] == 'a') { |
| 542 | uint64_t addr, size; |
| 543 | int err; |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 544 | addr = simple_strtoull(argv[3], NULL, 16); |
| 545 | size = simple_strtoull(argv[4], NULL, 16); |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 546 | err = fdt_add_mem_rsv(working_fdt, addr, size); |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 547 | |
| 548 | if (err < 0) { |
| 549 | printf("libfdt fdt_add_mem_rsv(): %s\n", |
| 550 | fdt_strerror(err)); |
| 551 | return err; |
| 552 | } |
| 553 | } else if (argv[2][0] == 'd') { |
| 554 | unsigned long idx = simple_strtoul(argv[3], NULL, 16); |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 555 | int err = fdt_del_mem_rsv(working_fdt, idx); |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 556 | |
| 557 | if (err < 0) { |
| 558 | printf("libfdt fdt_del_mem_rsv(): %s\n", |
| 559 | fdt_strerror(err)); |
| 560 | return err; |
| 561 | } |
| 562 | } else { |
| 563 | /* Unrecognized command */ |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 564 | return CMD_RET_USAGE; |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 565 | } |
Kim Phillips | 99dffca | 2007-07-17 13:57:04 -0500 | [diff] [blame] | 566 | } |
Gerald Van Baren | fd61e55 | 2007-06-25 23:25:28 -0400 | [diff] [blame] | 567 | #ifdef CONFIG_OF_BOARD_SETUP |
Kim Phillips | 99dffca | 2007-07-17 13:57:04 -0500 | [diff] [blame] | 568 | /* Call the board-specific fixup routine */ |
Gerald Van Baren | 2fb698b | 2008-06-09 21:02:17 -0400 | [diff] [blame] | 569 | else if (strncmp(argv[1], "boa", 3) == 0) |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 570 | ft_board_setup(working_fdt, gd->bd); |
Gerald Van Baren | fd61e55 | 2007-06-25 23:25:28 -0400 | [diff] [blame] | 571 | #endif |
Kim Phillips | 99dffca | 2007-07-17 13:57:04 -0500 | [diff] [blame] | 572 | /* Create a chosen node */ |
Kumar Gala | f953d99 | 2008-08-15 08:24:34 -0500 | [diff] [blame] | 573 | else if (argv[1][0] == 'c') { |
| 574 | unsigned long initrd_start = 0, initrd_end = 0; |
| 575 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 576 | if ((argc != 2) && (argc != 4)) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 577 | return CMD_RET_USAGE; |
Kumar Gala | f953d99 | 2008-08-15 08:24:34 -0500 | [diff] [blame] | 578 | |
| 579 | if (argc == 4) { |
| 580 | initrd_start = simple_strtoul(argv[2], NULL, 16); |
| 581 | initrd_end = simple_strtoul(argv[3], NULL, 16); |
| 582 | } |
| 583 | |
Heiko Schocher | 56844a2 | 2008-09-11 08:11:23 +0200 | [diff] [blame] | 584 | fdt_chosen(working_fdt, 1); |
| 585 | fdt_initrd(working_fdt, initrd_start, initrd_end, 1); |
Kumar Gala | 40afac2 | 2008-08-15 08:24:44 -0500 | [diff] [blame] | 586 | } |
| 587 | /* resize the fdt */ |
| 588 | else if (strncmp(argv[1], "re", 2) == 0) { |
| 589 | fdt_resize(working_fdt); |
| 590 | } |
| 591 | else { |
Kim Phillips | 99dffca | 2007-07-17 13:57:04 -0500 | [diff] [blame] | 592 | /* Unrecognized command */ |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 593 | return CMD_RET_USAGE; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | return 0; |
| 597 | } |
| 598 | |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 599 | /****************************************************************************/ |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 600 | |
Simon Glass | d14da91 | 2013-04-20 08:42:42 +0000 | [diff] [blame] | 601 | /** |
| 602 | * fdt_valid() - Check if an FDT is valid. If not, change it to NULL |
| 603 | * |
| 604 | * @blobp: Pointer to FDT pointer |
| 605 | * @return 1 if OK, 0 if bad (in which case *blobp is set to NULL) |
| 606 | */ |
| 607 | static int fdt_valid(struct fdt_header **blobp) |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 608 | { |
Simon Glass | d14da91 | 2013-04-20 08:42:42 +0000 | [diff] [blame] | 609 | const void *blob = *blobp; |
| 610 | int err; |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 611 | |
Simon Glass | d14da91 | 2013-04-20 08:42:42 +0000 | [diff] [blame] | 612 | if (blob == NULL) { |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 613 | printf ("The address of the fdt is invalid (NULL).\n"); |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 614 | return 0; |
| 615 | } |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 616 | |
Simon Glass | d14da91 | 2013-04-20 08:42:42 +0000 | [diff] [blame] | 617 | err = fdt_check_header(blob); |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 618 | if (err == 0) |
| 619 | return 1; /* valid */ |
| 620 | |
| 621 | if (err < 0) { |
Gerald Van Baren | 2511403 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 622 | printf("libfdt fdt_check_header(): %s", fdt_strerror(err)); |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 623 | /* |
| 624 | * Be more informative on bad version. |
| 625 | */ |
| 626 | if (err == -FDT_ERR_BADVERSION) { |
Simon Glass | d14da91 | 2013-04-20 08:42:42 +0000 | [diff] [blame] | 627 | if (fdt_version(blob) < |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 628 | FDT_FIRST_SUPPORTED_VERSION) { |
Andrew Klossner | dc4b0b3 | 2008-07-07 06:41:14 -0700 | [diff] [blame] | 629 | printf (" - too old, fdt %d < %d", |
Simon Glass | d14da91 | 2013-04-20 08:42:42 +0000 | [diff] [blame] | 630 | fdt_version(blob), |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 631 | FDT_FIRST_SUPPORTED_VERSION); |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 632 | } |
Simon Glass | d14da91 | 2013-04-20 08:42:42 +0000 | [diff] [blame] | 633 | if (fdt_last_comp_version(blob) > |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 634 | FDT_LAST_SUPPORTED_VERSION) { |
Andrew Klossner | dc4b0b3 | 2008-07-07 06:41:14 -0700 | [diff] [blame] | 635 | printf (" - too new, fdt %d > %d", |
Simon Glass | d14da91 | 2013-04-20 08:42:42 +0000 | [diff] [blame] | 636 | fdt_version(blob), |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 637 | FDT_LAST_SUPPORTED_VERSION); |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 638 | } |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 639 | } |
| 640 | printf("\n"); |
Simon Glass | d14da91 | 2013-04-20 08:42:42 +0000 | [diff] [blame] | 641 | *blobp = NULL; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 642 | return 0; |
| 643 | } |
| 644 | return 1; |
| 645 | } |
| 646 | |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 647 | /****************************************************************************/ |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 648 | |
| 649 | /* |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 650 | * Parse the user's input, partially heuristic. Valid formats: |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 651 | * <0x00112233 4 05> - an array of cells. Numbers follow standard |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 652 | * C conventions. |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 653 | * [00 11 22 .. nn] - byte stream |
| 654 | * "string" - If the the value doesn't start with "<" or "[", it is |
| 655 | * treated as a string. Note that the quotes are |
| 656 | * stripped by the parser before we get the string. |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 657 | * newval: An array of strings containing the new property as specified |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 658 | * on the command line |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 659 | * count: The number of strings in the array |
| 660 | * data: A bytestream to be placed in the property |
| 661 | * len: The length of the resulting bytestream |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 662 | */ |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 663 | static int fdt_parse_prop(char * const *newval, int count, char *data, int *len) |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 664 | { |
| 665 | char *cp; /* temporary char pointer */ |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 666 | char *newp; /* temporary newval char pointer */ |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 667 | unsigned long tmp; /* holds converted values */ |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 668 | int stridx = 0; |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 669 | |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 670 | *len = 0; |
| 671 | newp = newval[0]; |
| 672 | |
| 673 | /* An array of cells */ |
| 674 | if (*newp == '<') { |
| 675 | newp++; |
| 676 | while ((*newp != '>') && (stridx < count)) { |
| 677 | /* |
| 678 | * Keep searching until we find that last ">" |
| 679 | * That way users don't have to escape the spaces |
| 680 | */ |
| 681 | if (*newp == '\0') { |
| 682 | newp = newval[++stridx]; |
| 683 | continue; |
| 684 | } |
| 685 | |
| 686 | cp = newp; |
| 687 | tmp = simple_strtoul(cp, &newp, 0); |
Kim Phillips | 088f1b1 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 688 | *(__be32 *)data = __cpu_to_be32(tmp); |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 689 | data += 4; |
| 690 | *len += 4; |
| 691 | |
| 692 | /* If the ptr didn't advance, something went wrong */ |
| 693 | if ((newp - cp) <= 0) { |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 694 | printf("Sorry, I could not convert \"%s\"\n", |
| 695 | cp); |
| 696 | return 1; |
| 697 | } |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 698 | |
| 699 | while (*newp == ' ') |
| 700 | newp++; |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 701 | } |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 702 | |
| 703 | if (*newp != '>') { |
| 704 | printf("Unexpected character '%c'\n", *newp); |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 705 | return 1; |
| 706 | } |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 707 | } else if (*newp == '[') { |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 708 | /* |
| 709 | * Byte stream. Convert the values. |
| 710 | */ |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 711 | newp++; |
Ken MacLeod | 6e748ea | 2009-09-11 15:16:18 -0500 | [diff] [blame] | 712 | while ((stridx < count) && (*newp != ']')) { |
| 713 | while (*newp == ' ') |
| 714 | newp++; |
| 715 | if (*newp == '\0') { |
| 716 | newp = newval[++stridx]; |
| 717 | continue; |
| 718 | } |
| 719 | if (!isxdigit(*newp)) |
| 720 | break; |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 721 | tmp = simple_strtoul(newp, &newp, 16); |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 722 | *data++ = tmp & 0xFF; |
Gerald Van Baren | fd61e55 | 2007-06-25 23:25:28 -0400 | [diff] [blame] | 723 | *len = *len + 1; |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 724 | } |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 725 | if (*newp != ']') { |
Andrew Klossner | dc4b0b3 | 2008-07-07 06:41:14 -0700 | [diff] [blame] | 726 | printf("Unexpected character '%c'\n", *newp); |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 727 | return 1; |
| 728 | } |
| 729 | } else { |
| 730 | /* |
Ken MacLeod | 6e748ea | 2009-09-11 15:16:18 -0500 | [diff] [blame] | 731 | * Assume it is one or more strings. Copy it into our |
| 732 | * data area for convenience (including the |
| 733 | * terminating '\0's). |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 734 | */ |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 735 | while (stridx < count) { |
Ken MacLeod | 6e748ea | 2009-09-11 15:16:18 -0500 | [diff] [blame] | 736 | size_t length = strlen(newp) + 1; |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 737 | strcpy(data, newp); |
Ken MacLeod | 6e748ea | 2009-09-11 15:16:18 -0500 | [diff] [blame] | 738 | data += length; |
| 739 | *len += length; |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 740 | newp = newval[++stridx]; |
| 741 | } |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 742 | } |
| 743 | return 0; |
| 744 | } |
| 745 | |
| 746 | /****************************************************************************/ |
| 747 | |
| 748 | /* |
| 749 | * Heuristic to guess if this is a string or concatenated strings. |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 750 | */ |
| 751 | |
| 752 | static int is_printable_string(const void *data, int len) |
| 753 | { |
| 754 | const char *s = data; |
| 755 | |
| 756 | /* zero length is not */ |
| 757 | if (len == 0) |
| 758 | return 0; |
| 759 | |
Joe Hershberger | 8805bee | 2012-08-17 10:34:38 +0000 | [diff] [blame] | 760 | /* must terminate with zero or '\n' */ |
| 761 | if (s[len - 1] != '\0' && s[len - 1] != '\n') |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 762 | return 0; |
| 763 | |
| 764 | /* printable or a null byte (concatenated strings) */ |
Joe Hershberger | 8805bee | 2012-08-17 10:34:38 +0000 | [diff] [blame] | 765 | while (((*s == '\0') || isprint(*s) || isspace(*s)) && (len > 0)) { |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 766 | /* |
| 767 | * If we see a null, there are three possibilities: |
| 768 | * 1) If len == 1, it is the end of the string, printable |
| 769 | * 2) Next character also a null, not printable. |
| 770 | * 3) Next character not a null, continue to check. |
| 771 | */ |
| 772 | if (s[0] == '\0') { |
| 773 | if (len == 1) |
| 774 | return 1; |
| 775 | if (s[1] == '\0') |
| 776 | return 0; |
| 777 | } |
| 778 | s++; |
| 779 | len--; |
| 780 | } |
| 781 | |
| 782 | /* Not the null termination, or not done yet: not printable */ |
| 783 | if (*s != '\0' || (len != 0)) |
| 784 | return 0; |
| 785 | |
| 786 | return 1; |
| 787 | } |
| 788 | |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 789 | |
| 790 | /* |
| 791 | * Print the property in the best format, a heuristic guess. Print as |
| 792 | * a string, concatenated strings, a byte, word, double word, or (if all |
| 793 | * else fails) it is printed as a stream of bytes. |
| 794 | */ |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 795 | static void print_data(const void *data, int len) |
| 796 | { |
| 797 | int j; |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 798 | |
| 799 | /* no data, don't print */ |
| 800 | if (len == 0) |
| 801 | return; |
| 802 | |
| 803 | /* |
| 804 | * It is a string, but it may have multiple strings (embedded '\0's). |
| 805 | */ |
| 806 | if (is_printable_string(data, len)) { |
| 807 | puts("\""); |
| 808 | j = 0; |
| 809 | while (j < len) { |
| 810 | if (j > 0) |
| 811 | puts("\", \""); |
| 812 | puts(data); |
| 813 | j += strlen(data) + 1; |
| 814 | data += strlen(data) + 1; |
| 815 | } |
| 816 | puts("\""); |
| 817 | return; |
| 818 | } |
| 819 | |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 820 | if ((len %4) == 0) { |
Joe Hershberger | f0a29d4 | 2012-08-17 10:34:36 +0000 | [diff] [blame] | 821 | if (len > CONFIG_CMD_FDT_MAX_DUMP) |
Tom Rini | 085b9c3 | 2012-10-29 14:53:18 +0000 | [diff] [blame] | 822 | printf("* 0x%p [0x%08x]", data, len); |
Joe Hershberger | f0a29d4 | 2012-08-17 10:34:36 +0000 | [diff] [blame] | 823 | else { |
Kim Phillips | 088f1b1 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 824 | const __be32 *p; |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 825 | |
Joe Hershberger | f0a29d4 | 2012-08-17 10:34:36 +0000 | [diff] [blame] | 826 | printf("<"); |
| 827 | for (j = 0, p = data; j < len/4; j++) |
| 828 | printf("0x%08x%s", fdt32_to_cpu(p[j]), |
| 829 | j < (len/4 - 1) ? " " : ""); |
| 830 | printf(">"); |
| 831 | } |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 832 | } else { /* anything else... hexdump */ |
Joe Hershberger | f0a29d4 | 2012-08-17 10:34:36 +0000 | [diff] [blame] | 833 | if (len > CONFIG_CMD_FDT_MAX_DUMP) |
Tom Rini | 085b9c3 | 2012-10-29 14:53:18 +0000 | [diff] [blame] | 834 | printf("* 0x%p [0x%08x]", data, len); |
Joe Hershberger | f0a29d4 | 2012-08-17 10:34:36 +0000 | [diff] [blame] | 835 | else { |
| 836 | const u8 *s; |
Andy Fleming | 4abd844 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 837 | |
Joe Hershberger | f0a29d4 | 2012-08-17 10:34:36 +0000 | [diff] [blame] | 838 | printf("["); |
| 839 | for (j = 0, s = data; j < len; j++) |
| 840 | printf("%02x%s", s[j], j < len - 1 ? " " : ""); |
| 841 | printf("]"); |
| 842 | } |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 843 | } |
| 844 | } |
| 845 | |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 846 | /****************************************************************************/ |
| 847 | |
| 848 | /* |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 849 | * Recursively print (a portion of) the working_fdt. The depth parameter |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 850 | * determines how deeply nested the fdt is printed. |
| 851 | */ |
Kumar Gala | dbaf07c | 2007-11-21 14:07:46 -0600 | [diff] [blame] | 852 | static int fdt_print(const char *pathp, char *prop, int depth) |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 853 | { |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 854 | static char tabs[MAX_LEVEL+1] = |
| 855 | "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t" |
| 856 | "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"; |
Kumar Gala | dbaf07c | 2007-11-21 14:07:46 -0600 | [diff] [blame] | 857 | const void *nodep; /* property node pointer */ |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 858 | int nodeoffset; /* node offset from libfdt */ |
| 859 | int nextoffset; /* next node offset from libfdt */ |
| 860 | uint32_t tag; /* tag */ |
| 861 | int len; /* length of the property */ |
| 862 | int level = 0; /* keep track of nesting level */ |
Gerald Van Baren | 9162352 | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 863 | const struct fdt_property *fdt_prop; |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 864 | |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 865 | nodeoffset = fdt_path_offset (working_fdt, pathp); |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 866 | if (nodeoffset < 0) { |
| 867 | /* |
| 868 | * Not found or something else bad happened. |
| 869 | */ |
Kumar Gala | 8d04f02 | 2007-10-24 11:04:22 -0500 | [diff] [blame] | 870 | printf ("libfdt fdt_path_offset() returned %s\n", |
Gerald Van Baren | 06e19a0 | 2007-05-21 23:27:16 -0400 | [diff] [blame] | 871 | fdt_strerror(nodeoffset)); |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 872 | return 1; |
| 873 | } |
| 874 | /* |
| 875 | * The user passed in a property as well as node path. |
| 876 | * Print only the given property and then return. |
| 877 | */ |
| 878 | if (prop) { |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 879 | nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len); |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 880 | if (len == 0) { |
| 881 | /* no property value */ |
| 882 | printf("%s %s\n", pathp, prop); |
| 883 | return 0; |
| 884 | } else if (len > 0) { |
Gerald Van Baren | 28f384b | 2007-11-23 19:43:20 -0500 | [diff] [blame] | 885 | printf("%s = ", prop); |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 886 | print_data (nodep, len); |
| 887 | printf("\n"); |
| 888 | return 0; |
| 889 | } else { |
| 890 | printf ("libfdt fdt_getprop(): %s\n", |
| 891 | fdt_strerror(len)); |
| 892 | return 1; |
| 893 | } |
| 894 | } |
| 895 | |
| 896 | /* |
| 897 | * The user passed in a node path and no property, |
| 898 | * print the node and all subnodes. |
| 899 | */ |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 900 | while(level >= 0) { |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 901 | tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset); |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 902 | switch(tag) { |
| 903 | case FDT_BEGIN_NODE: |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 904 | pathp = fdt_get_name(working_fdt, nodeoffset, NULL); |
Gerald Van Baren | 9162352 | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 905 | if (level <= depth) { |
| 906 | if (pathp == NULL) |
| 907 | pathp = "/* NULL pointer error */"; |
| 908 | if (*pathp == '\0') |
| 909 | pathp = "/"; /* root is nameless */ |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 910 | printf("%s%s {\n", |
| 911 | &tabs[MAX_LEVEL - level], pathp); |
Gerald Van Baren | 9162352 | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 912 | } |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 913 | level++; |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 914 | if (level >= MAX_LEVEL) { |
Gerald Van Baren | 9162352 | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 915 | printf("Nested too deep, aborting.\n"); |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 916 | return 1; |
| 917 | } |
| 918 | break; |
| 919 | case FDT_END_NODE: |
| 920 | level--; |
Gerald Van Baren | 9162352 | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 921 | if (level <= depth) |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 922 | printf("%s};\n", &tabs[MAX_LEVEL - level]); |
| 923 | if (level == 0) { |
| 924 | level = -1; /* exit the loop */ |
| 925 | } |
| 926 | break; |
| 927 | case FDT_PROP: |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 928 | fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset, |
Gerald Van Baren | 9162352 | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 929 | sizeof(*fdt_prop)); |
Kim Phillips | e489b9c | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 930 | pathp = fdt_string(working_fdt, |
Gerald Van Baren | 9162352 | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 931 | fdt32_to_cpu(fdt_prop->nameoff)); |
| 932 | len = fdt32_to_cpu(fdt_prop->len); |
| 933 | nodep = fdt_prop->data; |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 934 | if (len < 0) { |
| 935 | printf ("libfdt fdt_getprop(): %s\n", |
| 936 | fdt_strerror(len)); |
| 937 | return 1; |
| 938 | } else if (len == 0) { |
| 939 | /* the property has no value */ |
Gerald Van Baren | 9162352 | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 940 | if (level <= depth) |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 941 | printf("%s%s;\n", |
| 942 | &tabs[MAX_LEVEL - level], |
| 943 | pathp); |
| 944 | } else { |
Gerald Van Baren | 9162352 | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 945 | if (level <= depth) { |
Gerald Van Baren | 28f384b | 2007-11-23 19:43:20 -0500 | [diff] [blame] | 946 | printf("%s%s = ", |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 947 | &tabs[MAX_LEVEL - level], |
| 948 | pathp); |
| 949 | print_data (nodep, len); |
| 950 | printf(";\n"); |
| 951 | } |
| 952 | } |
| 953 | break; |
| 954 | case FDT_NOP: |
Andrew Klossner | dc4b0b3 | 2008-07-07 06:41:14 -0700 | [diff] [blame] | 955 | printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]); |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 956 | break; |
| 957 | case FDT_END: |
| 958 | return 1; |
| 959 | default: |
Gerald Van Baren | 9162352 | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 960 | if (level <= depth) |
Gerald Van Baren | addd8ce | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 961 | printf("Unknown tag 0x%08X\n", tag); |
| 962 | return 1; |
| 963 | } |
| 964 | nodeoffset = nextoffset; |
| 965 | } |
| 966 | return 0; |
| 967 | } |
| 968 | |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 969 | /********************************************************************/ |
Kim Phillips | 088f1b1 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 970 | #ifdef CONFIG_SYS_LONGHELP |
| 971 | static char fdt_help_text[] = |
Simon Glass | 4b57865 | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 972 | "addr [-c] <addr> [<length>] - Set the [control] fdt location to <addr>\n" |
Gerald Van Baren | fd61e55 | 2007-06-25 23:25:28 -0400 | [diff] [blame] | 973 | #ifdef CONFIG_OF_BOARD_SETUP |
| 974 | "fdt boardsetup - Do board-specific set up\n" |
| 975 | #endif |
Gerald Van Baren | 238cb7a | 2008-01-05 15:33:29 -0500 | [diff] [blame] | 976 | "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n" |
Kumar Gala | 40afac2 | 2008-08-15 08:24:44 -0500 | [diff] [blame] | 977 | "fdt resize - Resize fdt to size + padding to 4k addr\n" |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 978 | "fdt print <path> [<prop>] - Recursive print starting at <path>\n" |
| 979 | "fdt list <path> [<prop>] - Print one level starting at <path>\n" |
Joe Hershberger | bc80295 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 980 | "fdt get value <var> <path> <prop> - Get <property> and store in <var>\n" |
| 981 | "fdt get name <var> <path> <index> - Get name of node <index> and store in <var>\n" |
| 982 | "fdt get addr <var> <path> <prop> - Get start address of <property> and store in <var>\n" |
| 983 | "fdt get size <var> <path> [<prop>] - Get size of [<property>] or num nodes and store in <var>\n" |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 984 | "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n" |
| 985 | "fdt mknode <path> <node> - Create a new node after <path>\n" |
| 986 | "fdt rm <path> [<prop>] - Delete the node or <property>\n" |
Kumar Gala | 804887e | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 987 | "fdt header - Display header info\n" |
| 988 | "fdt bootcpu <id> - Set boot cpuid\n" |
| 989 | "fdt memory <addr> <size> - Add/Update memory node\n" |
| 990 | "fdt rsvmem print - Show current mem reserves\n" |
| 991 | "fdt rsvmem add <addr> <size> - Add a mem reserve\n" |
| 992 | "fdt rsvmem delete <index> - Delete a mem reserves\n" |
Kumar Gala | f953d99 | 2008-08-15 08:24:34 -0500 | [diff] [blame] | 993 | "fdt chosen [<start> <end>] - Add/update the /chosen branch in the tree\n" |
| 994 | " <start>/<end> - initrd start/end addr\n" |
Gerald Van Baren | 109c30f | 2008-08-22 14:37:05 -0400 | [diff] [blame] | 995 | "NOTE: Dereference aliases by omiting the leading '/', " |
Kim Phillips | 088f1b1 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 996 | "e.g. fdt print ethernet0."; |
| 997 | #endif |
| 998 | |
| 999 | U_BOOT_CMD( |
| 1000 | fdt, 255, 0, do_fdt, |
| 1001 | "flattened device tree utility commands", fdt_help_text |
Gerald Van Baren | 781e09e | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 1002 | ); |