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