Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2007 |
| 4 | * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com |
| 5 | * Based on code written by: |
| 6 | * Pantelis Antoniou <pantelis.antoniou@gmail.com> and |
| 7 | * Matthew McClintock <msm@freescale.com> |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <command.h> |
Simon Glass | 313112a | 2019-08-01 09:46:46 -0600 | [diff] [blame] | 12 | #include <env.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 13 | #include <image.h> |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 14 | #include <linux/ctype.h> |
| 15 | #include <linux/types.h> |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 16 | #include <asm/global_data.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 17 | #include <linux/libfdt.h> |
Gerald Van Baren | c4a57ea | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 18 | #include <fdt_support.h> |
Joe Hershberger | 65b905b | 2015-03-22 17:08:59 -0500 | [diff] [blame] | 19 | #include <mapmem.h> |
Simon Glass | b7fc710 | 2013-04-20 08:42:45 +0000 | [diff] [blame] | 20 | #include <asm/io.h> |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 21 | |
| 22 | #define MAX_LEVEL 32 /* how deeply nested we will go */ |
Gerald Van Baren | 5606a36 | 2007-06-25 23:25:28 -0400 | [diff] [blame] | 23 | #define SCRATCHPAD 1024 /* bytes of scratchpad memory */ |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 24 | |
| 25 | /* |
| 26 | * Global data (for the gd->bd) |
| 27 | */ |
| 28 | DECLARE_GLOBAL_DATA_PTR; |
| 29 | |
Wolfgang Denk | 6262d021 | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 30 | static int fdt_parse_prop(char *const*newval, int count, char *data, int *len); |
Kumar Gala | 1e386af | 2007-11-21 14:07:46 -0600 | [diff] [blame] | 31 | static int fdt_print(const char *pathp, char *prop, int depth); |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 32 | static int is_printable_string(const void *data, int len); |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 33 | |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 34 | /* |
Gerald Van Baren | e81ce61 | 2008-06-10 22:15:58 -0400 | [diff] [blame] | 35 | * The working_fdt points to our working flattened device tree. |
| 36 | */ |
| 37 | struct fdt_header *working_fdt; |
| 38 | |
Joe Hershberger | 3d4ea4c | 2015-02-04 21:56:53 -0600 | [diff] [blame] | 39 | void set_working_fdt_addr(ulong addr) |
Kumar Gala | 9f4e7e4 | 2008-08-15 08:24:39 -0500 | [diff] [blame] | 40 | { |
Simon Glass | b7fc710 | 2013-04-20 08:42:45 +0000 | [diff] [blame] | 41 | void *buf; |
| 42 | |
Simon Glass | 84328cf | 2022-10-11 09:47:12 -0600 | [diff] [blame] | 43 | printf("Working FDT set to %lx\n", addr); |
Joe Hershberger | 3d4ea4c | 2015-02-04 21:56:53 -0600 | [diff] [blame] | 44 | buf = map_sysmem(addr, 0); |
Simon Glass | b7fc710 | 2013-04-20 08:42:45 +0000 | [diff] [blame] | 45 | working_fdt = buf; |
Simon Glass | 4d949a2 | 2017-08-03 12:22:10 -0600 | [diff] [blame] | 46 | env_set_hex("fdtaddr", addr); |
Kumar Gala | 9f4e7e4 | 2008-08-15 08:24:39 -0500 | [diff] [blame] | 47 | } |
| 48 | |
Gerald Van Baren | e81ce61 | 2008-06-10 22:15:58 -0400 | [diff] [blame] | 49 | /* |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 50 | * Get a value from the fdt and format it to be set in the environment |
| 51 | */ |
Marek Vasut | 0282f9f | 2022-07-08 23:50:43 +0200 | [diff] [blame] | 52 | static int fdt_value_env_set(const void *nodep, int len, |
| 53 | const char *var, int index) |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 54 | { |
Marek Vasut | 0282f9f | 2022-07-08 23:50:43 +0200 | [diff] [blame] | 55 | if (is_printable_string(nodep, len)) { |
| 56 | const char *nodec = (const char *)nodep; |
| 57 | int i; |
| 58 | |
| 59 | /* |
| 60 | * Iterate over all members in stringlist and find the one at |
| 61 | * offset $index. If no such index exists, indicate failure. |
| 62 | */ |
Marek Vasut | 0b42549 | 2022-11-14 22:49:59 +0100 | [diff] [blame] | 63 | for (i = 0; i < len; ) { |
| 64 | if (index-- > 0) { |
| 65 | i += strlen(nodec) + 1; |
| 66 | nodec += strlen(nodec) + 1; |
Marek Vasut | 0282f9f | 2022-07-08 23:50:43 +0200 | [diff] [blame] | 67 | continue; |
Marek Vasut | 0b42549 | 2022-11-14 22:49:59 +0100 | [diff] [blame] | 68 | } |
Marek Vasut | 0282f9f | 2022-07-08 23:50:43 +0200 | [diff] [blame] | 69 | |
Marek Vasut | 0b42549 | 2022-11-14 22:49:59 +0100 | [diff] [blame] | 70 | env_set(var, nodec); |
Marek Vasut | 0282f9f | 2022-07-08 23:50:43 +0200 | [diff] [blame] | 71 | return 0; |
| 72 | } |
| 73 | |
| 74 | return 1; |
| 75 | } else if (len == 4) { |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 76 | char buf[11]; |
| 77 | |
Andreas Färber | 1a09cd2 | 2017-01-09 16:08:02 +0100 | [diff] [blame] | 78 | sprintf(buf, "0x%08X", fdt32_to_cpu(*(fdt32_t *)nodep)); |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 79 | env_set(var, buf); |
Marek Vasut | eeaae33 | 2023-03-02 04:08:23 +0100 | [diff] [blame] | 80 | } else if (len % 4 == 0 && index >= 0) { |
| 81 | /* Needed to print integer arrays. */ |
| 82 | const unsigned int *nodec = (const unsigned int *)nodep; |
| 83 | char buf[11]; |
| 84 | |
| 85 | if (index * 4 >= len) |
| 86 | return 1; |
| 87 | |
| 88 | sprintf(buf, "0x%08X", fdt32_to_cpu(*(nodec + index))); |
| 89 | env_set(var, buf); |
| 90 | } else if (len % 4 == 0 && len <= 20) { |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 91 | /* Needed to print things like sha1 hashes. */ |
| 92 | char buf[41]; |
| 93 | int i; |
| 94 | |
| 95 | for (i = 0; i < len; i += sizeof(unsigned int)) |
| 96 | sprintf(buf + (i * 2), "%08x", |
| 97 | *(unsigned int *)(nodep + i)); |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 98 | env_set(var, buf); |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 99 | } else { |
| 100 | printf("error: unprintable value\n"); |
| 101 | return 1; |
| 102 | } |
| 103 | return 0; |
| 104 | } |
| 105 | |
Heiko Schocher | fefc7ee | 2018-11-15 06:06:06 +0100 | [diff] [blame] | 106 | static const char * const fdt_member_table[] = { |
| 107 | "magic", |
| 108 | "totalsize", |
| 109 | "off_dt_struct", |
| 110 | "off_dt_strings", |
| 111 | "off_mem_rsvmap", |
| 112 | "version", |
| 113 | "last_comp_version", |
| 114 | "boot_cpuid_phys", |
| 115 | "size_dt_strings", |
| 116 | "size_dt_struct", |
| 117 | }; |
| 118 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 119 | static int fdt_get_header_value(int argc, char *const argv[]) |
Heiko Schocher | fefc7ee | 2018-11-15 06:06:06 +0100 | [diff] [blame] | 120 | { |
| 121 | fdt32_t *fdtp = (fdt32_t *)working_fdt; |
| 122 | ulong val; |
| 123 | int i; |
| 124 | |
| 125 | if (argv[2][0] != 'g') |
| 126 | return CMD_RET_FAILURE; |
| 127 | |
| 128 | for (i = 0; i < ARRAY_SIZE(fdt_member_table); i++) { |
| 129 | if (strcmp(fdt_member_table[i], argv[4])) |
| 130 | continue; |
| 131 | |
| 132 | val = fdt32_to_cpu(fdtp[i]); |
| 133 | env_set_hex(argv[3], val); |
| 134 | return CMD_RET_SUCCESS; |
| 135 | } |
| 136 | |
| 137 | return CMD_RET_FAILURE; |
| 138 | } |
| 139 | |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 140 | /* |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 141 | * Flattened Device Tree command, see the help for parameter definitions. |
| 142 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 143 | static int do_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 144 | { |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 145 | if (argc < 2) |
Simon Glass | a06dfc7 | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 146 | return CMD_RET_USAGE; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 147 | |
Simon Glass | e4647a1 | 2021-07-21 14:55:25 -0600 | [diff] [blame] | 148 | /* fdt addr: Set the address of the fdt */ |
Maxime Ripard | 09caa01 | 2016-07-05 10:26:34 +0200 | [diff] [blame] | 149 | if (strncmp(argv[1], "ad", 2) == 0) { |
Kumar Gala | 9f4e7e4 | 2008-08-15 08:24:39 -0500 | [diff] [blame] | 150 | unsigned long addr; |
Simon Glass | 0bfc4cc | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 151 | int control = 0; |
Peter Hoyes | fbbaa59 | 2022-03-31 11:53:22 +0100 | [diff] [blame] | 152 | int quiet = 0; |
Simon Glass | 0bfc4cc | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 153 | struct fdt_header *blob; |
Simon Glass | e4647a1 | 2021-07-21 14:55:25 -0600 | [diff] [blame] | 154 | |
| 155 | /* Set the address [and length] of the fdt */ |
Simon Glass | 0bfc4cc | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 156 | argc -= 2; |
| 157 | argv += 2; |
Peter Hoyes | fbbaa59 | 2022-03-31 11:53:22 +0100 | [diff] [blame] | 158 | while (argc > 0 && **argv == '-') { |
| 159 | char *arg = *argv; |
| 160 | |
| 161 | while (*++arg) { |
| 162 | switch (*arg) { |
| 163 | case 'c': |
| 164 | control = 1; |
| 165 | break; |
| 166 | case 'q': |
| 167 | quiet = 1; |
| 168 | break; |
| 169 | default: |
| 170 | return CMD_RET_USAGE; |
| 171 | } |
| 172 | } |
Simon Glass | 0bfc4cc | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 173 | argc--; |
| 174 | argv++; |
| 175 | } |
Simon Glass | 0bfc4cc | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 176 | if (argc == 0) { |
| 177 | if (control) |
| 178 | blob = (struct fdt_header *)gd->fdt_blob; |
| 179 | else |
| 180 | blob = working_fdt; |
| 181 | if (!blob || !fdt_valid(&blob)) |
Kumar Gala | 708a18b | 2008-08-15 08:24:35 -0500 | [diff] [blame] | 182 | return 1; |
Simon Glass | eedc922 | 2021-07-21 14:55:26 -0600 | [diff] [blame] | 183 | printf("%s fdt: %08lx\n", |
| 184 | control ? "Control" : "Working", |
Joe Hershberger | 6256dcc | 2015-02-04 21:56:54 -0600 | [diff] [blame] | 185 | control ? (ulong)map_to_sysmem(blob) : |
Simon Glass | eedc922 | 2021-07-21 14:55:26 -0600 | [diff] [blame] | 186 | env_get_hex("fdtaddr", 0)); |
Kumar Gala | 708a18b | 2008-08-15 08:24:35 -0500 | [diff] [blame] | 187 | return 0; |
| 188 | } |
| 189 | |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 190 | addr = hextoul(argv[0], NULL); |
Simon Glass | b7fc710 | 2013-04-20 08:42:45 +0000 | [diff] [blame] | 191 | blob = map_sysmem(addr, 0); |
Peter Hoyes | fbbaa59 | 2022-03-31 11:53:22 +0100 | [diff] [blame] | 192 | if ((quiet && fdt_check_header(blob)) || |
| 193 | (!quiet && !fdt_valid(&blob))) |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 194 | return 1; |
Simon Glass | 0bfc4cc | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 195 | if (control) |
| 196 | gd->fdt_blob = blob; |
| 197 | else |
Joe Hershberger | 3d4ea4c | 2015-02-04 21:56:53 -0600 | [diff] [blame] | 198 | set_working_fdt_addr(addr); |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 199 | |
Simon Glass | 0bfc4cc | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 200 | if (argc >= 2) { |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 201 | int len; |
| 202 | int err; |
Simon Glass | e4647a1 | 2021-07-21 14:55:25 -0600 | [diff] [blame] | 203 | |
| 204 | /* Optional new length */ |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 205 | len = hextoul(argv[1], NULL); |
Simon Glass | 0bfc4cc | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 206 | if (len < fdt_totalsize(blob)) { |
Peter Hoyes | fbbaa59 | 2022-03-31 11:53:22 +0100 | [diff] [blame] | 207 | if (!quiet) |
| 208 | printf("New length %d < existing length %d, ignoring\n", |
| 209 | len, fdt_totalsize(blob)); |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 210 | } else { |
Simon Glass | e4647a1 | 2021-07-21 14:55:25 -0600 | [diff] [blame] | 211 | /* Open in place with a new length */ |
Simon Glass | 0bfc4cc | 2013-04-20 08:42:44 +0000 | [diff] [blame] | 212 | err = fdt_open_into(blob, blob, len); |
Peter Hoyes | fbbaa59 | 2022-03-31 11:53:22 +0100 | [diff] [blame] | 213 | if (!quiet && err != 0) { |
Simon Glass | e4647a1 | 2021-07-21 14:55:25 -0600 | [diff] [blame] | 214 | printf("libfdt fdt_open_into(): %s\n", |
| 215 | fdt_strerror(err)); |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 216 | } |
| 217 | } |
| 218 | } |
| 219 | |
Marek Vasut | aeccfee | 2012-09-05 08:34:44 +0200 | [diff] [blame] | 220 | return CMD_RET_SUCCESS; |
Marek Vasut | aeccfee | 2012-09-05 08:34:44 +0200 | [diff] [blame] | 221 | |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 222 | /* |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 223 | * Move the working_fdt |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 224 | */ |
Andre Przywara | e904994 | 2023-02-10 11:02:12 +0000 | [diff] [blame] | 225 | } else if (strncmp(argv[1], "mo", 2) == 0) { |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 226 | struct fdt_header *newaddr; |
| 227 | int len; |
| 228 | int err; |
| 229 | |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 230 | if (argc < 4) |
Simon Glass | a06dfc7 | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 231 | return CMD_RET_USAGE; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 232 | |
| 233 | /* |
| 234 | * Set the address and length of the fdt. |
| 235 | */ |
Andre Przywara | a906f87 | 2023-02-10 11:02:11 +0000 | [diff] [blame] | 236 | working_fdt = map_sysmem(hextoul(argv[2], NULL), 0); |
Simon Glass | 546b9a3 | 2013-04-20 08:42:42 +0000 | [diff] [blame] | 237 | if (!fdt_valid(&working_fdt)) |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 238 | return 1; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 239 | |
Andre Przywara | a906f87 | 2023-02-10 11:02:11 +0000 | [diff] [blame] | 240 | newaddr = map_sysmem(hextoul(argv[3], NULL), 0); |
Gerald Van Baren | 4d22392 | 2007-04-25 22:47:15 -0400 | [diff] [blame] | 241 | |
| 242 | /* |
| 243 | * If the user specifies a length, use that. Otherwise use the |
| 244 | * current length. |
| 245 | */ |
| 246 | if (argc <= 4) { |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 247 | len = fdt_totalsize(working_fdt); |
Gerald Van Baren | 4d22392 | 2007-04-25 22:47:15 -0400 | [diff] [blame] | 248 | } else { |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 249 | len = hextoul(argv[4], NULL); |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 250 | if (len < fdt_totalsize(working_fdt)) { |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 251 | printf ("New length 0x%X < existing length " |
| 252 | "0x%X, aborting.\n", |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 253 | len, fdt_totalsize(working_fdt)); |
Gerald Van Baren | 4d22392 | 2007-04-25 22:47:15 -0400 | [diff] [blame] | 254 | return 1; |
| 255 | } |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | /* |
| 259 | * Copy to the new location. |
| 260 | */ |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 261 | err = fdt_open_into(working_fdt, newaddr, len); |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 262 | if (err != 0) { |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 263 | printf ("libfdt fdt_open_into(): %s\n", |
| 264 | fdt_strerror(err)); |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 265 | return 1; |
| 266 | } |
Andre Przywara | a906f87 | 2023-02-10 11:02:11 +0000 | [diff] [blame] | 267 | set_working_fdt_addr(map_to_sysmem(newaddr)); |
Andre Przywara | e904994 | 2023-02-10 11:02:12 +0000 | [diff] [blame] | 268 | |
| 269 | return CMD_RET_SUCCESS; |
| 270 | } |
| 271 | |
| 272 | if (!working_fdt) { |
| 273 | puts("No FDT memory address configured. Please configure\n" |
| 274 | "the FDT address via \"fdt addr <address>\" command.\n" |
| 275 | "Aborting!\n"); |
| 276 | return CMD_RET_FAILURE; |
| 277 | } |
| 278 | |
Fabien Parent | a0559ac | 2016-11-24 15:02:18 +0100 | [diff] [blame] | 279 | #ifdef CONFIG_OF_SYSTEM_SETUP |
| 280 | /* Call the board-specific fixup routine */ |
Andre Przywara | e904994 | 2023-02-10 11:02:12 +0000 | [diff] [blame] | 281 | if (strncmp(argv[1], "sys", 3) == 0) { |
Fabien Parent | a0559ac | 2016-11-24 15:02:18 +0100 | [diff] [blame] | 282 | int err = ft_system_setup(working_fdt, gd->bd); |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 283 | |
Fabien Parent | a0559ac | 2016-11-24 15:02:18 +0100 | [diff] [blame] | 284 | if (err) { |
| 285 | printf("Failed to add system information to FDT: %s\n", |
| 286 | fdt_strerror(err)); |
| 287 | return CMD_RET_FAILURE; |
| 288 | } |
Andre Przywara | e904994 | 2023-02-10 11:02:12 +0000 | [diff] [blame] | 289 | |
| 290 | return CMD_RET_SUCCESS; |
| 291 | } |
Fabien Parent | a0559ac | 2016-11-24 15:02:18 +0100 | [diff] [blame] | 292 | #endif |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 293 | /* |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 294 | * Make a new node |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 295 | */ |
Andre Przywara | e904994 | 2023-02-10 11:02:12 +0000 | [diff] [blame] | 296 | if (strncmp(argv[1], "mk", 2) == 0) { |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 297 | char *pathp; /* path */ |
| 298 | char *nodep; /* new node to add */ |
| 299 | int nodeoffset; /* node offset from libfdt */ |
| 300 | int err; |
| 301 | |
| 302 | /* |
| 303 | * Parameters: Node path, new node to be appended to the path. |
| 304 | */ |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 305 | if (argc < 4) |
Simon Glass | a06dfc7 | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 306 | return CMD_RET_USAGE; |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 307 | |
| 308 | pathp = argv[2]; |
| 309 | nodep = argv[3]; |
| 310 | |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 311 | nodeoffset = fdt_path_offset (working_fdt, pathp); |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 312 | if (nodeoffset < 0) { |
| 313 | /* |
| 314 | * Not found or something else bad happened. |
| 315 | */ |
Kumar Gala | c8ab705 | 2007-10-24 11:04:22 -0500 | [diff] [blame] | 316 | printf ("libfdt fdt_path_offset() returned %s\n", |
Gerald Van Baren | 1178d6a | 2007-05-21 23:27:16 -0400 | [diff] [blame] | 317 | fdt_strerror(nodeoffset)); |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 318 | return 1; |
| 319 | } |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 320 | err = fdt_add_subnode(working_fdt, nodeoffset, nodep); |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 321 | if (err < 0) { |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 322 | printf ("libfdt fdt_add_subnode(): %s\n", |
| 323 | fdt_strerror(err)); |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 324 | return 1; |
| 325 | } |
| 326 | |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 327 | /* |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 328 | * Set the value of a property in the working_fdt. |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 329 | */ |
Tom Warren | d2c6dc8 | 2020-03-26 15:20:44 -0700 | [diff] [blame] | 330 | } else if (strncmp(argv[1], "se", 2) == 0) { |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 331 | char *pathp; /* path */ |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 332 | char *prop; /* property */ |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 333 | int nodeoffset; /* node offset from libfdt */ |
Bernhard Messerklinger | 9b2664f | 2017-09-28 11:29:52 +0200 | [diff] [blame] | 334 | static char data[SCRATCHPAD] __aligned(4);/* property storage */ |
Hannes Schmelzer | 9878861 | 2017-05-30 15:05:44 +0200 | [diff] [blame] | 335 | const void *ptmp; |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 336 | int len; /* new length of the property */ |
| 337 | int ret; /* return value */ |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 338 | |
| 339 | /* |
Gerald Van Baren | d91383a | 2008-01-05 14:52:04 -0500 | [diff] [blame] | 340 | * Parameters: Node path, property, optional value. |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 341 | */ |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 342 | if (argc < 4) |
Simon Glass | a06dfc7 | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 343 | return CMD_RET_USAGE; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 344 | |
| 345 | pathp = argv[2]; |
| 346 | prop = argv[3]; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 347 | |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 348 | nodeoffset = fdt_path_offset (working_fdt, pathp); |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 349 | if (nodeoffset < 0) { |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 350 | /* |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 351 | * Not found or something else bad happened. |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 352 | */ |
Kumar Gala | c8ab705 | 2007-10-24 11:04:22 -0500 | [diff] [blame] | 353 | printf ("libfdt fdt_path_offset() returned %s\n", |
Gerald Van Baren | 1178d6a | 2007-05-21 23:27:16 -0400 | [diff] [blame] | 354 | fdt_strerror(nodeoffset)); |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 355 | return 1; |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 356 | } |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 357 | |
Hannes Schmelzer | 9878861 | 2017-05-30 15:05:44 +0200 | [diff] [blame] | 358 | if (argc == 4) { |
| 359 | len = 0; |
| 360 | } else { |
| 361 | ptmp = fdt_getprop(working_fdt, nodeoffset, prop, &len); |
| 362 | if (len > SCRATCHPAD) { |
| 363 | printf("prop (%d) doesn't fit in scratchpad!\n", |
| 364 | len); |
| 365 | return 1; |
| 366 | } |
Hannes Schmelzer | a99c052 | 2017-08-18 14:41:14 +0200 | [diff] [blame] | 367 | if (ptmp != NULL) |
| 368 | memcpy(data, ptmp, len); |
| 369 | |
Hannes Schmelzer | 9878861 | 2017-05-30 15:05:44 +0200 | [diff] [blame] | 370 | ret = fdt_parse_prop(&argv[4], argc - 4, data, &len); |
| 371 | if (ret != 0) |
| 372 | return ret; |
| 373 | } |
| 374 | |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 375 | ret = fdt_setprop(working_fdt, nodeoffset, prop, data, len); |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 376 | if (ret < 0) { |
| 377 | printf ("libfdt fdt_setprop(): %s\n", fdt_strerror(ret)); |
| 378 | return 1; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 379 | } |
| 380 | |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 381 | /******************************************************************** |
| 382 | * Get the value of a property in the working_fdt. |
| 383 | ********************************************************************/ |
| 384 | } else if (argv[1][0] == 'g') { |
| 385 | char *subcmd; /* sub-command */ |
| 386 | char *pathp; /* path */ |
| 387 | char *prop; /* property */ |
| 388 | char *var; /* variable to store result */ |
| 389 | int nodeoffset; /* node offset from libfdt */ |
| 390 | const void *nodep; /* property node pointer */ |
| 391 | int len = 0; /* new length of the property */ |
| 392 | |
| 393 | /* |
| 394 | * Parameters: Node path, property, optional value. |
| 395 | */ |
| 396 | if (argc < 5) |
| 397 | return CMD_RET_USAGE; |
| 398 | |
| 399 | subcmd = argv[2]; |
| 400 | |
| 401 | if (argc < 6 && subcmd[0] != 's') |
| 402 | return CMD_RET_USAGE; |
| 403 | |
| 404 | var = argv[3]; |
| 405 | pathp = argv[4]; |
| 406 | prop = argv[5]; |
| 407 | |
| 408 | nodeoffset = fdt_path_offset(working_fdt, pathp); |
| 409 | if (nodeoffset < 0) { |
| 410 | /* |
| 411 | * Not found or something else bad happened. |
| 412 | */ |
| 413 | printf("libfdt fdt_path_offset() returned %s\n", |
| 414 | fdt_strerror(nodeoffset)); |
| 415 | return 1; |
| 416 | } |
| 417 | |
| 418 | if (subcmd[0] == 'n' || (subcmd[0] == 's' && argc == 5)) { |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 419 | int req_index = -1; |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 420 | int startDepth = fdt_node_depth( |
| 421 | working_fdt, nodeoffset); |
| 422 | int curDepth = startDepth; |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 423 | int cur_index = -1; |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 424 | int nextNodeOffset = fdt_next_node( |
| 425 | working_fdt, nodeoffset, &curDepth); |
| 426 | |
| 427 | if (subcmd[0] == 'n') |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 428 | req_index = hextoul(argv[5], NULL); |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 429 | |
| 430 | while (curDepth > startDepth) { |
| 431 | if (curDepth == startDepth + 1) |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 432 | cur_index++; |
| 433 | if (subcmd[0] == 'n' && |
| 434 | cur_index == req_index) { |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 435 | const char *node_name; |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 436 | |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 437 | node_name = fdt_get_name(working_fdt, |
| 438 | nextNodeOffset, |
| 439 | NULL); |
| 440 | env_set(var, node_name); |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 441 | return 0; |
| 442 | } |
| 443 | nextNodeOffset = fdt_next_node( |
| 444 | working_fdt, nextNodeOffset, &curDepth); |
| 445 | if (nextNodeOffset < 0) |
| 446 | break; |
| 447 | } |
| 448 | if (subcmd[0] == 's') { |
| 449 | /* get the num nodes at this level */ |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 450 | env_set_ulong(var, cur_index + 1); |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 451 | } else { |
| 452 | /* node index not found */ |
| 453 | printf("libfdt node not found\n"); |
| 454 | return 1; |
| 455 | } |
| 456 | } else { |
| 457 | nodep = fdt_getprop( |
| 458 | working_fdt, nodeoffset, prop, &len); |
Marek Vasut | 5c385f8 | 2023-03-02 04:08:15 +0100 | [diff] [blame] | 459 | if (nodep && len >= 0) { |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 460 | if (subcmd[0] == 'v') { |
Marek Vasut | eeaae33 | 2023-03-02 04:08:23 +0100 | [diff] [blame] | 461 | int index = -1; |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 462 | int ret; |
| 463 | |
Marek Vasut | 5c385f8 | 2023-03-02 04:08:15 +0100 | [diff] [blame] | 464 | if (len == 0) { |
| 465 | /* no property value */ |
| 466 | env_set(var, ""); |
| 467 | return 0; |
| 468 | } |
| 469 | |
Marek Vasut | 0282f9f | 2022-07-08 23:50:43 +0200 | [diff] [blame] | 470 | if (argc == 7) |
| 471 | index = simple_strtoul(argv[6], NULL, 10); |
| 472 | |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 473 | ret = fdt_value_env_set(nodep, len, |
Marek Vasut | 0282f9f | 2022-07-08 23:50:43 +0200 | [diff] [blame] | 474 | var, index); |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 475 | if (ret != 0) |
| 476 | return ret; |
| 477 | } else if (subcmd[0] == 'a') { |
Marek Vasut | f703967 | 2023-03-11 17:29:21 +0100 | [diff] [blame^] | 478 | env_set_hex(var, (ulong)map_to_sysmem(nodep)); |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 479 | } else if (subcmd[0] == 's') { |
Marek Vasut | f703967 | 2023-03-11 17:29:21 +0100 | [diff] [blame^] | 480 | env_set_hex(var, len); |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 481 | } else |
| 482 | return CMD_RET_USAGE; |
| 483 | return 0; |
| 484 | } else { |
| 485 | printf("libfdt fdt_getprop(): %s\n", |
| 486 | fdt_strerror(len)); |
| 487 | return 1; |
| 488 | } |
| 489 | } |
| 490 | |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 491 | /* |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 492 | * Print (recursive) / List (single level) |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 493 | */ |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 494 | } else if ((argv[1][0] == 'p') || (argv[1][0] == 'l')) { |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 495 | int depth = MAX_LEVEL; /* how deep to print */ |
| 496 | char *pathp; /* path */ |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 497 | char *prop; /* property */ |
| 498 | int ret; /* return value */ |
Kumar Gala | 51ab7f9 | 2007-10-25 16:15:07 -0500 | [diff] [blame] | 499 | static char root[2] = "/"; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 500 | |
| 501 | /* |
| 502 | * list is an alias for print, but limited to 1 level |
| 503 | */ |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 504 | if (argv[1][0] == 'l') { |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 505 | depth = 1; |
| 506 | } |
| 507 | |
| 508 | /* |
| 509 | * Get the starting path. The root node is an oddball, |
| 510 | * the offset is zero and has no name. |
| 511 | */ |
Kumar Gala | 51ab7f9 | 2007-10-25 16:15:07 -0500 | [diff] [blame] | 512 | if (argc == 2) |
| 513 | pathp = root; |
| 514 | else |
| 515 | pathp = argv[2]; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 516 | if (argc > 3) |
| 517 | prop = argv[3]; |
| 518 | else |
| 519 | prop = NULL; |
| 520 | |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 521 | ret = fdt_print(pathp, prop, depth); |
| 522 | if (ret != 0) |
| 523 | return ret; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 524 | |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 525 | /* |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 526 | * Remove a property/node |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 527 | */ |
Gerald Van Baren | 3b9d629 | 2008-06-09 21:02:17 -0400 | [diff] [blame] | 528 | } else if (strncmp(argv[1], "rm", 2) == 0) { |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 529 | int nodeoffset; /* node offset from libfdt */ |
| 530 | int err; |
| 531 | |
| 532 | /* |
| 533 | * Get the path. The root node is an oddball, the offset |
| 534 | * is zero and has no name. |
| 535 | */ |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 536 | nodeoffset = fdt_path_offset (working_fdt, argv[2]); |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 537 | if (nodeoffset < 0) { |
| 538 | /* |
| 539 | * Not found or something else bad happened. |
| 540 | */ |
Kumar Gala | c8ab705 | 2007-10-24 11:04:22 -0500 | [diff] [blame] | 541 | printf ("libfdt fdt_path_offset() returned %s\n", |
Gerald Van Baren | 1178d6a | 2007-05-21 23:27:16 -0400 | [diff] [blame] | 542 | fdt_strerror(nodeoffset)); |
Gerald Van Baren | 0ea55d2 | 2007-05-12 09:47:25 -0400 | [diff] [blame] | 543 | return 1; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 544 | } |
| 545 | /* |
| 546 | * Do the delete. A fourth parameter means delete a property, |
| 547 | * otherwise delete the node. |
| 548 | */ |
| 549 | if (argc > 3) { |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 550 | err = fdt_delprop(working_fdt, nodeoffset, argv[3]); |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 551 | if (err < 0) { |
Marek Vasut | a7a5887 | 2023-03-02 04:08:16 +0100 | [diff] [blame] | 552 | printf("libfdt fdt_delprop(): %s\n", |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 553 | fdt_strerror(err)); |
Marek Vasut | a7a5887 | 2023-03-02 04:08:16 +0100 | [diff] [blame] | 554 | return CMD_RET_FAILURE; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 555 | } |
| 556 | } else { |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 557 | err = fdt_del_node(working_fdt, nodeoffset); |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 558 | if (err < 0) { |
Marek Vasut | a7a5887 | 2023-03-02 04:08:16 +0100 | [diff] [blame] | 559 | printf("libfdt fdt_del_node(): %s\n", |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 560 | fdt_strerror(err)); |
Marek Vasut | a7a5887 | 2023-03-02 04:08:16 +0100 | [diff] [blame] | 561 | return CMD_RET_FAILURE; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 562 | } |
| 563 | } |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 564 | |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 565 | /* |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 566 | * Display header info |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 567 | */ |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 568 | } else if (argv[1][0] == 'h') { |
Heiko Schocher | fefc7ee | 2018-11-15 06:06:06 +0100 | [diff] [blame] | 569 | if (argc == 5) |
| 570 | return fdt_get_header_value(argc, argv); |
| 571 | |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 572 | u32 version = fdt_version(working_fdt); |
| 573 | printf("magic:\t\t\t0x%x\n", fdt_magic(working_fdt)); |
| 574 | printf("totalsize:\t\t0x%x (%d)\n", fdt_totalsize(working_fdt), |
| 575 | fdt_totalsize(working_fdt)); |
| 576 | printf("off_dt_struct:\t\t0x%x\n", |
| 577 | fdt_off_dt_struct(working_fdt)); |
| 578 | printf("off_dt_strings:\t\t0x%x\n", |
| 579 | fdt_off_dt_strings(working_fdt)); |
| 580 | printf("off_mem_rsvmap:\t\t0x%x\n", |
| 581 | fdt_off_mem_rsvmap(working_fdt)); |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 582 | printf("version:\t\t%d\n", version); |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 583 | printf("last_comp_version:\t%d\n", |
| 584 | fdt_last_comp_version(working_fdt)); |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 585 | if (version >= 2) |
| 586 | printf("boot_cpuid_phys:\t0x%x\n", |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 587 | fdt_boot_cpuid_phys(working_fdt)); |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 588 | if (version >= 3) |
| 589 | printf("size_dt_strings:\t0x%x\n", |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 590 | fdt_size_dt_strings(working_fdt)); |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 591 | if (version >= 17) |
| 592 | printf("size_dt_struct:\t\t0x%x\n", |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 593 | fdt_size_dt_struct(working_fdt)); |
| 594 | printf("number mem_rsv:\t\t0x%x\n", |
| 595 | fdt_num_mem_rsv(working_fdt)); |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 596 | printf("\n"); |
| 597 | |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 598 | /* |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 599 | * Set boot cpu id |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 600 | */ |
Gerald Van Baren | 3b9d629 | 2008-06-09 21:02:17 -0400 | [diff] [blame] | 601 | } else if (strncmp(argv[1], "boo", 3) == 0) { |
Marek Vasut | 48d7a77 | 2023-03-02 04:08:18 +0100 | [diff] [blame] | 602 | unsigned long tmp; |
| 603 | |
| 604 | if (argc != 3) |
| 605 | return CMD_RET_USAGE; |
| 606 | |
| 607 | tmp = hextoul(argv[2], NULL); |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 608 | fdt_set_boot_cpuid_phys(working_fdt, tmp); |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 609 | |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 610 | /* |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 611 | * memory command |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 612 | */ |
Gerald Van Baren | 3b9d629 | 2008-06-09 21:02:17 -0400 | [diff] [blame] | 613 | } else if (strncmp(argv[1], "me", 2) == 0) { |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 614 | uint64_t addr, size; |
| 615 | int err; |
Marek Vasut | c9dfd02 | 2023-03-02 04:08:19 +0100 | [diff] [blame] | 616 | |
| 617 | if (argc != 4) |
| 618 | return CMD_RET_USAGE; |
| 619 | |
Heiko Schocher | 0f602e1 | 2009-12-03 11:21:21 +0100 | [diff] [blame] | 620 | addr = simple_strtoull(argv[2], NULL, 16); |
| 621 | size = simple_strtoull(argv[3], NULL, 16); |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 622 | err = fdt_fixup_memory(working_fdt, addr, size); |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 623 | if (err < 0) |
| 624 | return err; |
| 625 | |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 626 | /* |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 627 | * mem reserve commands |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 628 | */ |
Gerald Van Baren | 3b9d629 | 2008-06-09 21:02:17 -0400 | [diff] [blame] | 629 | } else if (strncmp(argv[1], "rs", 2) == 0) { |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 630 | if (argv[2][0] == 'p') { |
| 631 | uint64_t addr, size; |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 632 | int total = fdt_num_mem_rsv(working_fdt); |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 633 | int j, err; |
| 634 | printf("index\t\t start\t\t size\n"); |
| 635 | printf("-------------------------------" |
| 636 | "-----------------\n"); |
| 637 | for (j = 0; j < total; j++) { |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 638 | err = fdt_get_mem_rsv(working_fdt, j, &addr, &size); |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 639 | if (err < 0) { |
| 640 | printf("libfdt fdt_get_mem_rsv(): %s\n", |
| 641 | fdt_strerror(err)); |
| 642 | return err; |
| 643 | } |
| 644 | printf(" %x\t%08x%08x\t%08x%08x\n", j, |
| 645 | (u32)(addr >> 32), |
| 646 | (u32)(addr & 0xffffffff), |
| 647 | (u32)(size >> 32), |
| 648 | (u32)(size & 0xffffffff)); |
| 649 | } |
| 650 | } else if (argv[2][0] == 'a') { |
| 651 | uint64_t addr, size; |
| 652 | int err; |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 653 | addr = simple_strtoull(argv[3], NULL, 16); |
| 654 | size = simple_strtoull(argv[4], NULL, 16); |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 655 | err = fdt_add_mem_rsv(working_fdt, addr, size); |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 656 | |
| 657 | if (err < 0) { |
Marek Vasut | 794c8e6 | 2023-03-02 04:08:17 +0100 | [diff] [blame] | 658 | printf("libfdt fdt_add_mem_rsv(): %s\n", |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 659 | fdt_strerror(err)); |
Marek Vasut | 794c8e6 | 2023-03-02 04:08:17 +0100 | [diff] [blame] | 660 | return CMD_RET_FAILURE; |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 661 | } |
| 662 | } else if (argv[2][0] == 'd') { |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 663 | unsigned long idx = hextoul(argv[3], NULL); |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 664 | int err = fdt_del_mem_rsv(working_fdt, idx); |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 665 | |
| 666 | if (err < 0) { |
Marek Vasut | 794c8e6 | 2023-03-02 04:08:17 +0100 | [diff] [blame] | 667 | printf("libfdt fdt_del_mem_rsv(): %s\n", |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 668 | fdt_strerror(err)); |
Marek Vasut | 794c8e6 | 2023-03-02 04:08:17 +0100 | [diff] [blame] | 669 | return CMD_RET_FAILURE; |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 670 | } |
| 671 | } else { |
| 672 | /* Unrecognized command */ |
Simon Glass | a06dfc7 | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 673 | return CMD_RET_USAGE; |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 674 | } |
Kim Phillips | bd9d115 | 2007-07-17 13:57:04 -0500 | [diff] [blame] | 675 | } |
Gerald Van Baren | 5606a36 | 2007-06-25 23:25:28 -0400 | [diff] [blame] | 676 | #ifdef CONFIG_OF_BOARD_SETUP |
Kim Phillips | bd9d115 | 2007-07-17 13:57:04 -0500 | [diff] [blame] | 677 | /* Call the board-specific fixup routine */ |
Simon Glass | 406ba62 | 2014-10-23 18:58:48 -0600 | [diff] [blame] | 678 | else if (strncmp(argv[1], "boa", 3) == 0) { |
| 679 | int err = ft_board_setup(working_fdt, gd->bd); |
| 680 | |
| 681 | if (err) { |
| 682 | printf("Failed to update board information in FDT: %s\n", |
| 683 | fdt_strerror(err)); |
| 684 | return CMD_RET_FAILURE; |
| 685 | } |
Tom Rini | 84c0f69 | 2021-09-12 20:32:32 -0400 | [diff] [blame] | 686 | #ifdef CONFIG_ARCH_KEYSTONE |
Nicholas Faustini | e5fb786 | 2018-10-03 12:58:48 +0200 | [diff] [blame] | 687 | ft_board_setup_ex(working_fdt, gd->bd); |
| 688 | #endif |
Simon Glass | 406ba62 | 2014-10-23 18:58:48 -0600 | [diff] [blame] | 689 | } |
Gerald Van Baren | 5606a36 | 2007-06-25 23:25:28 -0400 | [diff] [blame] | 690 | #endif |
Kim Phillips | bd9d115 | 2007-07-17 13:57:04 -0500 | [diff] [blame] | 691 | /* Create a chosen node */ |
Heiko Schocher | fce16b9 | 2014-03-03 12:19:24 +0100 | [diff] [blame] | 692 | else if (strncmp(argv[1], "cho", 3) == 0) { |
Kumar Gala | fb5dcd5 | 2008-08-15 08:24:34 -0500 | [diff] [blame] | 693 | unsigned long initrd_start = 0, initrd_end = 0; |
| 694 | |
Wolfgang Denk | 3b68311 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 695 | if ((argc != 2) && (argc != 4)) |
Simon Glass | a06dfc7 | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 696 | return CMD_RET_USAGE; |
Kumar Gala | fb5dcd5 | 2008-08-15 08:24:34 -0500 | [diff] [blame] | 697 | |
| 698 | if (argc == 4) { |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 699 | initrd_start = hextoul(argv[2], NULL); |
Sean Anderson | 86b6f47 | 2022-03-22 16:59:21 -0400 | [diff] [blame] | 700 | initrd_end = initrd_start + hextoul(argv[3], NULL) - 1; |
Kumar Gala | fb5dcd5 | 2008-08-15 08:24:34 -0500 | [diff] [blame] | 701 | } |
| 702 | |
Masahiro Yamada | 451c204 | 2014-04-18 17:41:00 +0900 | [diff] [blame] | 703 | fdt_chosen(working_fdt); |
Masahiro Yamada | 5b11489 | 2014-04-18 17:40:59 +0900 | [diff] [blame] | 704 | fdt_initrd(working_fdt, initrd_start, initrd_end); |
Heiko Schocher | fce16b9 | 2014-03-03 12:19:24 +0100 | [diff] [blame] | 705 | |
| 706 | #if defined(CONFIG_FIT_SIGNATURE) |
| 707 | } else if (strncmp(argv[1], "che", 3) == 0) { |
| 708 | int cfg_noffset; |
| 709 | int ret; |
| 710 | unsigned long addr; |
| 711 | struct fdt_header *blob; |
| 712 | |
| 713 | if (!working_fdt) |
| 714 | return CMD_RET_FAILURE; |
| 715 | |
| 716 | if (argc > 2) { |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 717 | addr = hextoul(argv[2], NULL); |
Heiko Schocher | fce16b9 | 2014-03-03 12:19:24 +0100 | [diff] [blame] | 718 | blob = map_sysmem(addr, 0); |
| 719 | } else { |
| 720 | blob = (struct fdt_header *)gd->fdt_blob; |
| 721 | } |
| 722 | if (!fdt_valid(&blob)) |
| 723 | return 1; |
| 724 | |
| 725 | gd->fdt_blob = blob; |
| 726 | cfg_noffset = fit_conf_get_node(working_fdt, NULL); |
| 727 | if (!cfg_noffset) { |
| 728 | printf("Could not find configuration node: %s\n", |
| 729 | fdt_strerror(cfg_noffset)); |
| 730 | return CMD_RET_FAILURE; |
| 731 | } |
| 732 | |
| 733 | ret = fit_config_verify(working_fdt, cfg_noffset); |
Simon Glass | 5da42d9 | 2014-06-12 07:24:45 -0600 | [diff] [blame] | 734 | if (ret == 0) |
Heiko Schocher | fce16b9 | 2014-03-03 12:19:24 +0100 | [diff] [blame] | 735 | return CMD_RET_SUCCESS; |
| 736 | else |
| 737 | return CMD_RET_FAILURE; |
| 738 | #endif |
| 739 | |
Kumar Gala | 58911df | 2008-08-15 08:24:44 -0500 | [diff] [blame] | 740 | } |
Maxime Ripard | 5a680aa | 2016-07-05 10:26:45 +0200 | [diff] [blame] | 741 | #ifdef CONFIG_OF_LIBFDT_OVERLAY |
| 742 | /* apply an overlay */ |
| 743 | else if (strncmp(argv[1], "ap", 2) == 0) { |
| 744 | unsigned long addr; |
| 745 | struct fdt_header *blob; |
Stefan Agner | fed14d0 | 2016-12-20 15:58:45 +0100 | [diff] [blame] | 746 | int ret; |
Maxime Ripard | 5a680aa | 2016-07-05 10:26:45 +0200 | [diff] [blame] | 747 | |
| 748 | if (argc != 3) |
| 749 | return CMD_RET_USAGE; |
| 750 | |
| 751 | if (!working_fdt) |
| 752 | return CMD_RET_FAILURE; |
| 753 | |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 754 | addr = hextoul(argv[2], NULL); |
Maxime Ripard | 5a680aa | 2016-07-05 10:26:45 +0200 | [diff] [blame] | 755 | blob = map_sysmem(addr, 0); |
| 756 | if (!fdt_valid(&blob)) |
| 757 | return CMD_RET_FAILURE; |
| 758 | |
Pantelis Antoniou | d9456a4 | 2017-09-04 23:12:12 +0300 | [diff] [blame] | 759 | /* apply method prints messages on error */ |
| 760 | ret = fdt_overlay_apply_verbose(working_fdt, blob); |
| 761 | if (ret) |
Maxime Ripard | 5a680aa | 2016-07-05 10:26:45 +0200 | [diff] [blame] | 762 | return CMD_RET_FAILURE; |
| 763 | } |
| 764 | #endif |
Kumar Gala | 58911df | 2008-08-15 08:24:44 -0500 | [diff] [blame] | 765 | /* resize the fdt */ |
| 766 | else if (strncmp(argv[1], "re", 2) == 0) { |
Hannes Schmelzer | d3dbac8 | 2016-09-20 18:10:43 +0200 | [diff] [blame] | 767 | uint extrasize; |
| 768 | if (argc > 2) |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 769 | extrasize = hextoul(argv[2], NULL); |
Hannes Schmelzer | d3dbac8 | 2016-09-20 18:10:43 +0200 | [diff] [blame] | 770 | else |
| 771 | extrasize = 0; |
| 772 | fdt_shrink_to_minimum(working_fdt, extrasize); |
Kumar Gala | 58911df | 2008-08-15 08:24:44 -0500 | [diff] [blame] | 773 | } |
| 774 | else { |
Kim Phillips | bd9d115 | 2007-07-17 13:57:04 -0500 | [diff] [blame] | 775 | /* Unrecognized command */ |
Simon Glass | a06dfc7 | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 776 | return CMD_RET_USAGE; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 777 | } |
| 778 | |
| 779 | return 0; |
| 780 | } |
| 781 | |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 782 | /****************************************************************************/ |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 783 | |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 784 | /* |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 785 | * Parse the user's input, partially heuristic. Valid formats: |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 786 | * <0x00112233 4 05> - an array of cells. Numbers follow standard |
Wolfgang Denk | a1be476 | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 787 | * C conventions. |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 788 | * [00 11 22 .. nn] - byte stream |
| 789 | * "string" - If the the value doesn't start with "<" or "[", it is |
| 790 | * treated as a string. Note that the quotes are |
| 791 | * stripped by the parser before we get the string. |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 792 | * newval: An array of strings containing the new property as specified |
Wolfgang Denk | a1be476 | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 793 | * on the command line |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 794 | * count: The number of strings in the array |
| 795 | * data: A bytestream to be placed in the property |
| 796 | * len: The length of the resulting bytestream |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 797 | */ |
Wolfgang Denk | 6262d021 | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 798 | static int fdt_parse_prop(char * const *newval, int count, char *data, int *len) |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 799 | { |
| 800 | char *cp; /* temporary char pointer */ |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 801 | char *newp; /* temporary newval char pointer */ |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 802 | unsigned long tmp; /* holds converted values */ |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 803 | int stridx = 0; |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 804 | |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 805 | *len = 0; |
| 806 | newp = newval[0]; |
| 807 | |
| 808 | /* An array of cells */ |
| 809 | if (*newp == '<') { |
| 810 | newp++; |
| 811 | while ((*newp != '>') && (stridx < count)) { |
| 812 | /* |
| 813 | * Keep searching until we find that last ">" |
| 814 | * That way users don't have to escape the spaces |
| 815 | */ |
| 816 | if (*newp == '\0') { |
| 817 | newp = newval[++stridx]; |
| 818 | continue; |
| 819 | } |
| 820 | |
| 821 | cp = newp; |
| 822 | tmp = simple_strtoul(cp, &newp, 0); |
Hannes Schmelzer | 9878861 | 2017-05-30 15:05:44 +0200 | [diff] [blame] | 823 | if (*cp != '?') |
| 824 | *(fdt32_t *)data = cpu_to_fdt32(tmp); |
| 825 | else |
| 826 | newp++; |
| 827 | |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 828 | data += 4; |
| 829 | *len += 4; |
| 830 | |
| 831 | /* If the ptr didn't advance, something went wrong */ |
| 832 | if ((newp - cp) <= 0) { |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 833 | printf("Sorry, I could not convert \"%s\"\n", |
| 834 | cp); |
| 835 | return 1; |
| 836 | } |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 837 | |
| 838 | while (*newp == ' ') |
| 839 | newp++; |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 840 | } |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 841 | |
| 842 | if (*newp != '>') { |
| 843 | printf("Unexpected character '%c'\n", *newp); |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 844 | return 1; |
| 845 | } |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 846 | } else if (*newp == '[') { |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 847 | /* |
| 848 | * Byte stream. Convert the values. |
| 849 | */ |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 850 | newp++; |
Ken MacLeod | d028afa | 2009-09-11 15:16:18 -0500 | [diff] [blame] | 851 | while ((stridx < count) && (*newp != ']')) { |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 852 | while (*newp == ' ') |
| 853 | newp++; |
Ken MacLeod | d028afa | 2009-09-11 15:16:18 -0500 | [diff] [blame] | 854 | if (*newp == '\0') { |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 855 | newp = newval[++stridx]; |
Ken MacLeod | d028afa | 2009-09-11 15:16:18 -0500 | [diff] [blame] | 856 | continue; |
| 857 | } |
| 858 | if (!isxdigit(*newp)) |
| 859 | break; |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 860 | tmp = hextoul(newp, &newp); |
Ken MacLeod | d028afa | 2009-09-11 15:16:18 -0500 | [diff] [blame] | 861 | *data++ = tmp & 0xFF; |
| 862 | *len = *len + 1; |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 863 | } |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 864 | if (*newp != ']') { |
Andrew Klossner | e4ad454 | 2008-07-07 06:41:14 -0700 | [diff] [blame] | 865 | printf("Unexpected character '%c'\n", *newp); |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 866 | return 1; |
| 867 | } |
| 868 | } else { |
| 869 | /* |
Ken MacLeod | d028afa | 2009-09-11 15:16:18 -0500 | [diff] [blame] | 870 | * Assume it is one or more strings. Copy it into our |
| 871 | * data area for convenience (including the |
| 872 | * terminating '\0's). |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 873 | */ |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 874 | while (stridx < count) { |
Ken MacLeod | d028afa | 2009-09-11 15:16:18 -0500 | [diff] [blame] | 875 | size_t length = strlen(newp) + 1; |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 876 | strcpy(data, newp); |
Ken MacLeod | d028afa | 2009-09-11 15:16:18 -0500 | [diff] [blame] | 877 | data += length; |
| 878 | *len += length; |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 879 | newp = newval[++stridx]; |
| 880 | } |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 881 | } |
| 882 | return 0; |
| 883 | } |
| 884 | |
| 885 | /****************************************************************************/ |
| 886 | |
| 887 | /* |
| 888 | * Heuristic to guess if this is a string or concatenated strings. |
| 889 | */ |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 890 | |
| 891 | static int is_printable_string(const void *data, int len) |
| 892 | { |
| 893 | const char *s = data; |
Marek Vasut | fdc794a | 2023-03-02 04:08:14 +0100 | [diff] [blame] | 894 | const char *ss, *se; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 895 | |
| 896 | /* zero length is not */ |
| 897 | if (len == 0) |
| 898 | return 0; |
| 899 | |
Marek Vasut | fdc794a | 2023-03-02 04:08:14 +0100 | [diff] [blame] | 900 | /* must terminate with zero */ |
| 901 | if (s[len - 1] != '\0') |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 902 | return 0; |
| 903 | |
Marek Vasut | fdc794a | 2023-03-02 04:08:14 +0100 | [diff] [blame] | 904 | se = s + len; |
| 905 | |
| 906 | while (s < se) { |
| 907 | ss = s; |
| 908 | while (s < se && *s && isprint((unsigned char)*s)) |
| 909 | s++; |
| 910 | |
| 911 | /* not zero, or not done yet */ |
| 912 | if (*s != '\0' || s == ss) |
| 913 | return 0; |
| 914 | |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 915 | s++; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 916 | } |
| 917 | |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 918 | return 1; |
| 919 | } |
| 920 | |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 921 | /* |
| 922 | * Print the property in the best format, a heuristic guess. Print as |
| 923 | * a string, concatenated strings, a byte, word, double word, or (if all |
| 924 | * else fails) it is printed as a stream of bytes. |
| 925 | */ |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 926 | static void print_data(const void *data, int len) |
| 927 | { |
| 928 | int j; |
Heinrich Schuchardt | 1a5f58d | 2020-06-19 19:45:55 +0200 | [diff] [blame] | 929 | const char *env_max_dump; |
| 930 | ulong max_dump = ULONG_MAX; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 931 | |
| 932 | /* no data, don't print */ |
| 933 | if (len == 0) |
| 934 | return; |
| 935 | |
Heinrich Schuchardt | 1a5f58d | 2020-06-19 19:45:55 +0200 | [diff] [blame] | 936 | env_max_dump = env_get("fdt_max_dump"); |
| 937 | if (env_max_dump) |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 938 | max_dump = hextoul(env_max_dump, NULL); |
Heinrich Schuchardt | 1a5f58d | 2020-06-19 19:45:55 +0200 | [diff] [blame] | 939 | |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 940 | /* |
| 941 | * It is a string, but it may have multiple strings (embedded '\0's). |
| 942 | */ |
| 943 | if (is_printable_string(data, len)) { |
| 944 | puts("\""); |
| 945 | j = 0; |
| 946 | while (j < len) { |
| 947 | if (j > 0) |
| 948 | puts("\", \""); |
| 949 | puts(data); |
| 950 | j += strlen(data) + 1; |
| 951 | data += strlen(data) + 1; |
| 952 | } |
| 953 | puts("\""); |
| 954 | return; |
| 955 | } |
| 956 | |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 957 | if ((len %4) == 0) { |
Heinrich Schuchardt | 1a5f58d | 2020-06-19 19:45:55 +0200 | [diff] [blame] | 958 | if (len > max_dump) |
Tom Rini | 1db8b53 | 2012-10-29 14:53:18 +0000 | [diff] [blame] | 959 | printf("* 0x%p [0x%08x]", data, len); |
Joe Hershberger | f72c692 | 2012-08-17 10:34:36 +0000 | [diff] [blame] | 960 | else { |
Kim Phillips | dc00a68 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 961 | const __be32 *p; |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 962 | |
Joe Hershberger | f72c692 | 2012-08-17 10:34:36 +0000 | [diff] [blame] | 963 | printf("<"); |
| 964 | for (j = 0, p = data; j < len/4; j++) |
| 965 | printf("0x%08x%s", fdt32_to_cpu(p[j]), |
| 966 | j < (len/4 - 1) ? " " : ""); |
| 967 | printf(">"); |
| 968 | } |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 969 | } else { /* anything else... hexdump */ |
Heinrich Schuchardt | 1a5f58d | 2020-06-19 19:45:55 +0200 | [diff] [blame] | 970 | if (len > max_dump) |
Tom Rini | 1db8b53 | 2012-10-29 14:53:18 +0000 | [diff] [blame] | 971 | printf("* 0x%p [0x%08x]", data, len); |
Joe Hershberger | f72c692 | 2012-08-17 10:34:36 +0000 | [diff] [blame] | 972 | else { |
| 973 | const u8 *s; |
Andy Fleming | 4689147 | 2008-03-31 20:45:56 -0500 | [diff] [blame] | 974 | |
Joe Hershberger | f72c692 | 2012-08-17 10:34:36 +0000 | [diff] [blame] | 975 | printf("["); |
| 976 | for (j = 0, s = data; j < len; j++) |
| 977 | printf("%02x%s", s[j], j < len - 1 ? " " : ""); |
| 978 | printf("]"); |
| 979 | } |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 980 | } |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 981 | } |
| 982 | |
| 983 | /****************************************************************************/ |
| 984 | |
| 985 | /* |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 986 | * Recursively print (a portion of) the working_fdt. The depth parameter |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 987 | * determines how deeply nested the fdt is printed. |
| 988 | */ |
Kumar Gala | 1e386af | 2007-11-21 14:07:46 -0600 | [diff] [blame] | 989 | static int fdt_print(const char *pathp, char *prop, int depth) |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 990 | { |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 991 | static char tabs[MAX_LEVEL+1] = |
| 992 | "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t" |
| 993 | "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"; |
Kumar Gala | 1e386af | 2007-11-21 14:07:46 -0600 | [diff] [blame] | 994 | const void *nodep; /* property node pointer */ |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 995 | int nodeoffset; /* node offset from libfdt */ |
| 996 | int nextoffset; /* next node offset from libfdt */ |
| 997 | uint32_t tag; /* tag */ |
| 998 | int len; /* length of the property */ |
| 999 | int level = 0; /* keep track of nesting level */ |
Gerald Van Baren | eb999ee | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 1000 | const struct fdt_property *fdt_prop; |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1001 | |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 1002 | nodeoffset = fdt_path_offset (working_fdt, pathp); |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1003 | if (nodeoffset < 0) { |
| 1004 | /* |
| 1005 | * Not found or something else bad happened. |
| 1006 | */ |
Kumar Gala | c8ab705 | 2007-10-24 11:04:22 -0500 | [diff] [blame] | 1007 | printf ("libfdt fdt_path_offset() returned %s\n", |
Gerald Van Baren | 1178d6a | 2007-05-21 23:27:16 -0400 | [diff] [blame] | 1008 | fdt_strerror(nodeoffset)); |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1009 | return 1; |
| 1010 | } |
| 1011 | /* |
| 1012 | * The user passed in a property as well as node path. |
| 1013 | * Print only the given property and then return. |
| 1014 | */ |
| 1015 | if (prop) { |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 1016 | nodep = fdt_getprop (working_fdt, nodeoffset, prop, &len); |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1017 | if (len == 0) { |
| 1018 | /* no property value */ |
| 1019 | printf("%s %s\n", pathp, prop); |
| 1020 | return 0; |
Simon Glass | 4bc73ef | 2017-06-07 10:28:42 -0600 | [diff] [blame] | 1021 | } else if (nodep && len > 0) { |
Gerald Van Baren | fc1a109 | 2007-11-23 19:43:20 -0500 | [diff] [blame] | 1022 | printf("%s = ", prop); |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1023 | print_data (nodep, len); |
| 1024 | printf("\n"); |
| 1025 | return 0; |
| 1026 | } else { |
| 1027 | printf ("libfdt fdt_getprop(): %s\n", |
| 1028 | fdt_strerror(len)); |
| 1029 | return 1; |
| 1030 | } |
| 1031 | } |
| 1032 | |
| 1033 | /* |
| 1034 | * The user passed in a node path and no property, |
| 1035 | * print the node and all subnodes. |
| 1036 | */ |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1037 | while(level >= 0) { |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 1038 | tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset); |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1039 | switch(tag) { |
| 1040 | case FDT_BEGIN_NODE: |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 1041 | pathp = fdt_get_name(working_fdt, nodeoffset, NULL); |
Gerald Van Baren | eb999ee | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 1042 | if (level <= depth) { |
| 1043 | if (pathp == NULL) |
| 1044 | pathp = "/* NULL pointer error */"; |
| 1045 | if (*pathp == '\0') |
| 1046 | pathp = "/"; /* root is nameless */ |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1047 | printf("%s%s {\n", |
| 1048 | &tabs[MAX_LEVEL - level], pathp); |
Gerald Van Baren | eb999ee | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 1049 | } |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1050 | level++; |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1051 | if (level >= MAX_LEVEL) { |
Gerald Van Baren | eb999ee | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 1052 | printf("Nested too deep, aborting.\n"); |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1053 | return 1; |
| 1054 | } |
| 1055 | break; |
| 1056 | case FDT_END_NODE: |
| 1057 | level--; |
Gerald Van Baren | eb999ee | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 1058 | if (level <= depth) |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1059 | printf("%s};\n", &tabs[MAX_LEVEL - level]); |
| 1060 | if (level == 0) { |
| 1061 | level = -1; /* exit the loop */ |
| 1062 | } |
| 1063 | break; |
| 1064 | case FDT_PROP: |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 1065 | fdt_prop = fdt_offset_ptr(working_fdt, nodeoffset, |
Gerald Van Baren | eb999ee | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 1066 | sizeof(*fdt_prop)); |
Kim Phillips | f3a42e2 | 2008-06-10 11:06:17 -0500 | [diff] [blame] | 1067 | pathp = fdt_string(working_fdt, |
Gerald Van Baren | eb999ee | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 1068 | fdt32_to_cpu(fdt_prop->nameoff)); |
| 1069 | len = fdt32_to_cpu(fdt_prop->len); |
| 1070 | nodep = fdt_prop->data; |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1071 | if (len < 0) { |
| 1072 | printf ("libfdt fdt_getprop(): %s\n", |
| 1073 | fdt_strerror(len)); |
| 1074 | return 1; |
| 1075 | } else if (len == 0) { |
| 1076 | /* the property has no value */ |
Gerald Van Baren | eb999ee | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 1077 | if (level <= depth) |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1078 | printf("%s%s;\n", |
| 1079 | &tabs[MAX_LEVEL - level], |
| 1080 | pathp); |
| 1081 | } else { |
Gerald Van Baren | eb999ee | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 1082 | if (level <= depth) { |
Gerald Van Baren | fc1a109 | 2007-11-23 19:43:20 -0500 | [diff] [blame] | 1083 | printf("%s%s = ", |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1084 | &tabs[MAX_LEVEL - level], |
| 1085 | pathp); |
| 1086 | print_data (nodep, len); |
| 1087 | printf(";\n"); |
| 1088 | } |
| 1089 | } |
| 1090 | break; |
| 1091 | case FDT_NOP: |
Andrew Klossner | e4ad454 | 2008-07-07 06:41:14 -0700 | [diff] [blame] | 1092 | printf("%s/* NOP */\n", &tabs[MAX_LEVEL - level]); |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1093 | break; |
| 1094 | case FDT_END: |
| 1095 | return 1; |
| 1096 | default: |
Gerald Van Baren | eb999ee | 2007-11-22 17:23:23 -0500 | [diff] [blame] | 1097 | if (level <= depth) |
Gerald Van Baren | e596a16 | 2007-05-16 22:39:59 -0400 | [diff] [blame] | 1098 | printf("Unknown tag 0x%08X\n", tag); |
| 1099 | return 1; |
| 1100 | } |
| 1101 | nodeoffset = nextoffset; |
| 1102 | } |
| 1103 | return 0; |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 1104 | } |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 1105 | |
| 1106 | /********************************************************************/ |
Kim Phillips | dc00a68 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 1107 | #ifdef CONFIG_SYS_LONGHELP |
| 1108 | static char fdt_help_text[] = |
Heinrich Schuchardt | 9696dbb | 2022-04-25 18:35:05 +0200 | [diff] [blame] | 1109 | "addr [-c] [-q] <addr> [<size>] - Set the [control] fdt location to <addr>\n" |
Maxime Ripard | 5a680aa | 2016-07-05 10:26:45 +0200 | [diff] [blame] | 1110 | #ifdef CONFIG_OF_LIBFDT_OVERLAY |
| 1111 | "fdt apply <addr> - Apply overlay to the DT\n" |
| 1112 | #endif |
Gerald Van Baren | 5606a36 | 2007-06-25 23:25:28 -0400 | [diff] [blame] | 1113 | #ifdef CONFIG_OF_BOARD_SETUP |
| 1114 | "fdt boardsetup - Do board-specific set up\n" |
| 1115 | #endif |
Simon Glass | 6c0be91 | 2014-10-23 18:58:54 -0600 | [diff] [blame] | 1116 | #ifdef CONFIG_OF_SYSTEM_SETUP |
| 1117 | "fdt systemsetup - Do system-specific set up\n" |
| 1118 | #endif |
Gerald Van Baren | 7655c09 | 2008-01-05 15:33:29 -0500 | [diff] [blame] | 1119 | "fdt move <fdt> <newaddr> <length> - Copy the fdt to <addr> and make it active\n" |
Hannes Schmelzer | d3dbac8 | 2016-09-20 18:10:43 +0200 | [diff] [blame] | 1120 | "fdt resize [<extrasize>] - Resize fdt to size + padding to 4k addr + some optional <extrasize> if needed\n" |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 1121 | "fdt print <path> [<prop>] - Recursive print starting at <path>\n" |
| 1122 | "fdt list <path> [<prop>] - Print one level starting at <path>\n" |
Marek Vasut | 0282f9f | 2022-07-08 23:50:43 +0200 | [diff] [blame] | 1123 | "fdt get value <var> <path> <prop> [<index>] - Get <property> and store in <var>\n" |
| 1124 | " In case of stringlist property, use optional <index>\n" |
| 1125 | " to select string within the stringlist. Default is 0.\n" |
Joe Hershberger | fc5abf0 | 2012-08-17 10:34:37 +0000 | [diff] [blame] | 1126 | "fdt get name <var> <path> <index> - Get name of node <index> and store in <var>\n" |
| 1127 | "fdt get addr <var> <path> <prop> - Get start address of <property> and store in <var>\n" |
| 1128 | "fdt get size <var> <path> [<prop>] - Get size of [<property>] or num nodes and store in <var>\n" |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 1129 | "fdt set <path> <prop> [<val>] - Set <property> [to <val>]\n" |
| 1130 | "fdt mknode <path> <node> - Create a new node after <path>\n" |
| 1131 | "fdt rm <path> [<prop>] - Delete the node or <property>\n" |
Heiko Schocher | fefc7ee | 2018-11-15 06:06:06 +0100 | [diff] [blame] | 1132 | "fdt header [get <var> <member>] - Display header info\n" |
| 1133 | " get - get header member <member> and store it in <var>\n" |
Kumar Gala | b79da7b | 2008-02-15 03:34:36 -0600 | [diff] [blame] | 1134 | "fdt bootcpu <id> - Set boot cpuid\n" |
| 1135 | "fdt memory <addr> <size> - Add/Update memory node\n" |
| 1136 | "fdt rsvmem print - Show current mem reserves\n" |
| 1137 | "fdt rsvmem add <addr> <size> - Add a mem reserve\n" |
| 1138 | "fdt rsvmem delete <index> - Delete a mem reserves\n" |
Sean Anderson | 86b6f47 | 2022-03-22 16:59:21 -0400 | [diff] [blame] | 1139 | "fdt chosen [<start> <size>] - Add/update the /chosen branch in the tree\n" |
| 1140 | " <start>/<size> - initrd start addr/size\n" |
Heiko Schocher | fce16b9 | 2014-03-03 12:19:24 +0100 | [diff] [blame] | 1141 | #if defined(CONFIG_FIT_SIGNATURE) |
| 1142 | "fdt checksign [<addr>] - check FIT signature\n" |
Marek Vasut | e71c9ee | 2023-03-02 04:08:20 +0100 | [diff] [blame] | 1143 | " <addr> - address of key blob\n" |
| 1144 | " default gd->fdt_blob\n" |
Heiko Schocher | fce16b9 | 2014-03-03 12:19:24 +0100 | [diff] [blame] | 1145 | #endif |
Robert P. J. Day | 8c60f92 | 2016-05-04 04:47:31 -0400 | [diff] [blame] | 1146 | "NOTE: Dereference aliases by omitting the leading '/', " |
Kim Phillips | dc00a68 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 1147 | "e.g. fdt print ethernet0."; |
| 1148 | #endif |
| 1149 | |
| 1150 | U_BOOT_CMD( |
| 1151 | fdt, 255, 0, do_fdt, |
| 1152 | "flattened device tree utility commands", fdt_help_text |
Gerald Van Baren | ade8ef4 | 2007-03-31 12:22:10 -0400 | [diff] [blame] | 1153 | ); |