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