Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016 Google, Inc |
| 4 | * Written by Simon Glass <sjg@chromium.org> |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <errno.h> |
Michal Simek | 3313ae6 | 2018-07-18 14:33:15 +0200 | [diff] [blame] | 9 | #include <fpga.h> |
Simon Glass | 0c670fc | 2019-08-01 09:46:36 -0600 | [diff] [blame] | 10 | #include <gzip.h> |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 11 | #include <image.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Jean-Jacques Hiblot | ea376eb | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 13 | #include <malloc.h> |
Simon Glass | 891d9e8 | 2021-03-07 17:35:14 -0700 | [diff] [blame] | 14 | #include <mapmem.h> |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 15 | #include <spl.h> |
Simon Glass | 3a8ee3d | 2020-11-05 06:32:05 -0700 | [diff] [blame] | 16 | #include <sysinfo.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 17 | #include <asm/cache.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 18 | #include <asm/global_data.h> |
Jean-Jacques Hiblot | ea376eb | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 19 | #include <linux/libfdt.h> |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 20 | |
Lukas Auer | b83edfb | 2019-08-21 21:14:42 +0200 | [diff] [blame] | 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
Jean-Jacques Hiblot | ea376eb | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 23 | #ifndef CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ |
| 24 | #define CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ (64 * 1024) |
| 25 | #endif |
| 26 | |
York Sun | 7264f29 | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 27 | #ifndef CONFIG_SYS_BOOTM_LEN |
| 28 | #define CONFIG_SYS_BOOTM_LEN (64 << 20) |
| 29 | #endif |
| 30 | |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 31 | struct spl_fit_info { |
| 32 | const void *fit; /* Pointer to a valid FIT blob */ |
| 33 | size_t ext_data_offset; /* Offset to FIT external data (end of FIT) */ |
| 34 | int images_node; /* FDT offset to "/images" node */ |
Alexandru Gagniuc | 9e9aa0b | 2021-01-20 10:46:53 -0600 | [diff] [blame] | 35 | int conf_node; /* FDT offset to selected configuration node */ |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 36 | }; |
| 37 | |
Alexandru Gagniuc | efc4ad0bc | 2021-01-20 10:46:49 -0600 | [diff] [blame] | 38 | __weak void board_spl_fit_post_load(const void *fit) |
Ye Li | e246bfc | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 39 | { |
| 40 | } |
| 41 | |
| 42 | __weak ulong board_spl_fit_size_align(ulong size) |
| 43 | { |
| 44 | return size; |
| 45 | } |
| 46 | |
Jean-Jacques Hiblot | 152781d | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 47 | static int find_node_from_desc(const void *fit, int node, const char *str) |
| 48 | { |
| 49 | int child; |
| 50 | |
| 51 | if (node < 0) |
| 52 | return -EINVAL; |
| 53 | |
| 54 | /* iterate the FIT nodes and find a matching description */ |
| 55 | for (child = fdt_first_subnode(fit, node); child >= 0; |
| 56 | child = fdt_next_subnode(fit, child)) { |
| 57 | int len; |
| 58 | const char *desc = fdt_getprop(fit, child, "description", &len); |
| 59 | |
| 60 | if (!desc) |
| 61 | continue; |
| 62 | |
| 63 | if (!strcmp(desc, str)) |
| 64 | return child; |
| 65 | } |
| 66 | |
| 67 | return -ENOENT; |
| 68 | } |
| 69 | |
Andre Przywara | 736806f | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 70 | /** |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 71 | * spl_fit_get_image_name(): By using the matching configuration subnode, |
Andre Przywara | 736806f | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 72 | * retrieve the name of an image, specified by a property name and an index |
| 73 | * into that. |
| 74 | * @fit: Pointer to the FDT blob. |
| 75 | * @images: Offset of the /images subnode. |
| 76 | * @type: Name of the property within the configuration subnode. |
| 77 | * @index: Index into the list of strings in this property. |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 78 | * @outname: Name of the image |
Andre Przywara | 736806f | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 79 | * |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 80 | * Return: 0 on success, or a negative error number |
Andre Przywara | 736806f | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 81 | */ |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 82 | static int spl_fit_get_image_name(const struct spl_fit_info *ctx, |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 83 | const char *type, int index, |
Jean-Jacques Hiblot | c1648d0 | 2019-10-22 16:39:17 +0200 | [diff] [blame] | 84 | const char **outname) |
Andre Przywara | 4b9340a | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 85 | { |
Simon Glass | 3a8ee3d | 2020-11-05 06:32:05 -0700 | [diff] [blame] | 86 | struct udevice *sysinfo; |
Andre Przywara | 4b9340a | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 87 | const char *name, *str; |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 88 | __maybe_unused int node; |
Andre Przywara | 4b9340a | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 89 | int len, i; |
Jean-Jacques Hiblot | 152781d | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 90 | bool found = true; |
Andre Przywara | 4b9340a | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 91 | |
Alexandru Gagniuc | 9e9aa0b | 2021-01-20 10:46:53 -0600 | [diff] [blame] | 92 | name = fdt_getprop(ctx->fit, ctx->conf_node, type, &len); |
Andre Przywara | 4b9340a | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 93 | if (!name) { |
| 94 | debug("cannot find property '%s': %d\n", type, len); |
| 95 | return -EINVAL; |
| 96 | } |
| 97 | |
| 98 | str = name; |
| 99 | for (i = 0; i < index; i++) { |
| 100 | str = strchr(str, '\0') + 1; |
| 101 | if (!str || (str - name >= len)) { |
Jean-Jacques Hiblot | 152781d | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 102 | found = false; |
| 103 | break; |
Andre Przywara | 4b9340a | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 104 | } |
| 105 | } |
| 106 | |
Simon Glass | 3a8ee3d | 2020-11-05 06:32:05 -0700 | [diff] [blame] | 107 | if (!found && CONFIG_IS_ENABLED(SYSINFO) && !sysinfo_get(&sysinfo)) { |
Jean-Jacques Hiblot | 152781d | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 108 | int rc; |
| 109 | /* |
Simon Glass | 3a8ee3d | 2020-11-05 06:32:05 -0700 | [diff] [blame] | 110 | * no string in the property for this index. Check if the |
| 111 | * sysinfo-level code can supply one. |
Jean-Jacques Hiblot | 152781d | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 112 | */ |
Sean Anderson | 4d65c6b | 2021-04-20 10:50:56 -0400 | [diff] [blame] | 113 | rc = sysinfo_detect(sysinfo); |
| 114 | if (rc) |
| 115 | return rc; |
| 116 | |
Simon Glass | 3a8ee3d | 2020-11-05 06:32:05 -0700 | [diff] [blame] | 117 | rc = sysinfo_get_fit_loadable(sysinfo, index - i - 1, type, |
| 118 | &str); |
Jean-Jacques Hiblot | 152781d | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 119 | if (rc && rc != -ENOENT) |
| 120 | return rc; |
| 121 | |
| 122 | if (!rc) { |
| 123 | /* |
Simon Glass | 3a8ee3d | 2020-11-05 06:32:05 -0700 | [diff] [blame] | 124 | * The sysinfo provided a name for a loadable. |
Jean-Jacques Hiblot | 152781d | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 125 | * Try to match it against the description properties |
| 126 | * first. If no matching node is found, use it as a |
| 127 | * node name. |
| 128 | */ |
| 129 | int node; |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 130 | int images = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH); |
Jean-Jacques Hiblot | 152781d | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 131 | |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 132 | node = find_node_from_desc(ctx->fit, images, str); |
Jean-Jacques Hiblot | 152781d | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 133 | if (node > 0) |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 134 | str = fdt_get_name(ctx->fit, node, NULL); |
Jean-Jacques Hiblot | 152781d | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 135 | |
| 136 | found = true; |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | if (!found) { |
| 141 | debug("no string for index %d\n", index); |
| 142 | return -E2BIG; |
| 143 | } |
| 144 | |
| 145 | *outname = str; |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 146 | return 0; |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * spl_fit_get_image_node(): By using the matching configuration subnode, |
| 151 | * retrieve the name of an image, specified by a property name and an index |
| 152 | * into that. |
| 153 | * @fit: Pointer to the FDT blob. |
| 154 | * @images: Offset of the /images subnode. |
| 155 | * @type: Name of the property within the configuration subnode. |
| 156 | * @index: Index into the list of strings in this property. |
| 157 | * |
| 158 | * Return: the node offset of the respective image node or a negative |
| 159 | * error number. |
| 160 | */ |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 161 | static int spl_fit_get_image_node(const struct spl_fit_info *ctx, |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 162 | const char *type, int index) |
| 163 | { |
Jean-Jacques Hiblot | c1648d0 | 2019-10-22 16:39:17 +0200 | [diff] [blame] | 164 | const char *str; |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 165 | int err; |
| 166 | int node; |
| 167 | |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 168 | err = spl_fit_get_image_name(ctx, type, index, &str); |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 169 | if (err) |
| 170 | return err; |
| 171 | |
Andre Przywara | 4b9340a | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 172 | debug("%s: '%s'\n", type, str); |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 173 | |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 174 | node = fdt_subnode_offset(ctx->fit, ctx->images_node, str); |
Andre Przywara | 4b9340a | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 175 | if (node < 0) { |
Jean-Jacques Hiblot | 19141d6 | 2019-10-22 16:39:15 +0200 | [diff] [blame] | 176 | pr_err("cannot find image node '%s': %d\n", str, node); |
Andre Przywara | 4b9340a | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 177 | return -EINVAL; |
| 178 | } |
| 179 | |
Andre Przywara | 736806f | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 180 | return node; |
Andre Przywara | 4b9340a | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 181 | } |
| 182 | |
Lokesh Vutla | eafd541 | 2016-05-24 10:34:38 +0530 | [diff] [blame] | 183 | static int get_aligned_image_offset(struct spl_load_info *info, int offset) |
| 184 | { |
| 185 | /* |
| 186 | * If it is a FS read, get the first address before offset which is |
| 187 | * aligned to ARCH_DMA_MINALIGN. If it is raw read return the |
| 188 | * block number to which offset belongs. |
| 189 | */ |
| 190 | if (info->filename) |
| 191 | return offset & ~(ARCH_DMA_MINALIGN - 1); |
| 192 | |
| 193 | return offset / info->bl_len; |
| 194 | } |
| 195 | |
| 196 | static int get_aligned_image_overhead(struct spl_load_info *info, int offset) |
| 197 | { |
| 198 | /* |
| 199 | * If it is a FS read, get the difference between the offset and |
| 200 | * the first address before offset which is aligned to |
| 201 | * ARCH_DMA_MINALIGN. If it is raw read return the offset within the |
| 202 | * block. |
| 203 | */ |
| 204 | if (info->filename) |
| 205 | return offset & (ARCH_DMA_MINALIGN - 1); |
| 206 | |
| 207 | return offset % info->bl_len; |
| 208 | } |
| 209 | |
| 210 | static int get_aligned_image_size(struct spl_load_info *info, int data_size, |
| 211 | int offset) |
| 212 | { |
Lokesh Vutla | 3cc1f38 | 2016-07-19 14:56:14 +0530 | [diff] [blame] | 213 | data_size = data_size + get_aligned_image_overhead(info, offset); |
| 214 | |
Lokesh Vutla | eafd541 | 2016-05-24 10:34:38 +0530 | [diff] [blame] | 215 | if (info->filename) |
Lokesh Vutla | 3cc1f38 | 2016-07-19 14:56:14 +0530 | [diff] [blame] | 216 | return data_size; |
Lokesh Vutla | eafd541 | 2016-05-24 10:34:38 +0530 | [diff] [blame] | 217 | |
| 218 | return (data_size + info->bl_len - 1) / info->bl_len; |
| 219 | } |
| 220 | |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 221 | /** |
| 222 | * spl_load_fit_image(): load the image described in a certain FIT node |
| 223 | * @info: points to information about the device to load data from |
| 224 | * @sector: the start sector of the FIT image on the device |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 225 | * @ctx: points to the FIT context structure |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 226 | * @node: offset of the DT node describing the image to load (relative |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 227 | * to @fit) |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 228 | * @image_info: will be filled with information about the loaded image |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 229 | * If the FIT node does not contain a "load" (address) property, |
| 230 | * the image gets loaded to the address pointed to by the |
Alexandru Gagniuc | f0a6ec3 | 2021-03-29 12:05:10 -0500 | [diff] [blame] | 231 | * load_addr member in this struct, if load_addr is not 0 |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 232 | * |
| 233 | * Return: 0 on success or a negative error number. |
| 234 | */ |
| 235 | static int spl_load_fit_image(struct spl_load_info *info, ulong sector, |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 236 | const struct spl_fit_info *ctx, int node, |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 237 | struct spl_image_info *image_info) |
| 238 | { |
Michal Simek | 3313ae6 | 2018-07-18 14:33:15 +0200 | [diff] [blame] | 239 | int offset; |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 240 | size_t length; |
York Sun | 5fd13d9 | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 241 | int len; |
York Sun | 933f67a | 2017-09-15 08:21:13 -0700 | [diff] [blame] | 242 | ulong size; |
Simon Glass | 891d9e8 | 2021-03-07 17:35:14 -0700 | [diff] [blame] | 243 | ulong load_addr; |
| 244 | void *load_ptr; |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 245 | void *src; |
| 246 | ulong overhead; |
| 247 | int nr_sectors; |
York Sun | 7264f29 | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 248 | uint8_t image_comp = -1, type = -1; |
York Sun | 5fd13d9 | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 249 | const void *data; |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 250 | const void *fit = ctx->fit; |
Peng Fan | a1be94b | 2017-12-05 13:20:59 +0800 | [diff] [blame] | 251 | bool external_data = false; |
York Sun | 7264f29 | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 252 | |
Michal Simek | 29bd8ad | 2020-09-09 14:41:56 +0200 | [diff] [blame] | 253 | if (IS_ENABLED(CONFIG_SPL_FPGA) || |
Marek Vasut | 56419ea | 2018-06-01 23:19:29 +0200 | [diff] [blame] | 254 | (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP))) { |
| 255 | if (fit_image_get_type(fit, node, &type)) |
| 256 | puts("Cannot get image type.\n"); |
| 257 | else |
| 258 | debug("%s ", genimg_get_type_name(type)); |
| 259 | } |
| 260 | |
Klaus H. Sorensen | 602ce1d | 2019-12-11 11:03:33 +0000 | [diff] [blame] | 261 | if (IS_ENABLED(CONFIG_SPL_GZIP)) { |
| 262 | fit_image_get_comp(fit, node, &image_comp); |
| 263 | debug("%s ", genimg_get_comp_name(image_comp)); |
York Sun | 7264f29 | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 264 | } |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 265 | |
Alexandru Gagniuc | f0a6ec3 | 2021-03-29 12:05:10 -0500 | [diff] [blame] | 266 | if (fit_image_get_load(fit, node, &load_addr)) { |
| 267 | if (!image_info->load_addr) { |
| 268 | printf("Can't load %s: No load address and no buffer\n", |
| 269 | fit_get_name(fit, node, NULL)); |
| 270 | return -ENOBUFS; |
| 271 | } |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 272 | load_addr = image_info->load_addr; |
Alexandru Gagniuc | f0a6ec3 | 2021-03-29 12:05:10 -0500 | [diff] [blame] | 273 | } |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 274 | |
Peng Fan | a1be94b | 2017-12-05 13:20:59 +0800 | [diff] [blame] | 275 | if (!fit_image_get_data_position(fit, node, &offset)) { |
| 276 | external_data = true; |
| 277 | } else if (!fit_image_get_data_offset(fit, node, &offset)) { |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 278 | offset += ctx->ext_data_offset; |
Peng Fan | a1be94b | 2017-12-05 13:20:59 +0800 | [diff] [blame] | 279 | external_data = true; |
| 280 | } |
| 281 | |
| 282 | if (external_data) { |
Simon Glass | 891d9e8 | 2021-03-07 17:35:14 -0700 | [diff] [blame] | 283 | void *src_ptr; |
| 284 | |
Peng Fan | a1be94b | 2017-12-05 13:20:59 +0800 | [diff] [blame] | 285 | /* External data */ |
York Sun | 5fd13d9 | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 286 | if (fit_image_get_data_size(fit, node, &len)) |
| 287 | return -ENOENT; |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 288 | |
Nishanth Menon | 6d99f86 | 2021-10-19 12:32:29 -0500 | [diff] [blame] | 289 | /* Dont bother to copy 0 byte data, but warn, though */ |
| 290 | if (!len) { |
| 291 | log_warning("%s: Skip load '%s': image size is 0!\n", |
| 292 | __func__, fit_get_name(fit, node, NULL)); |
| 293 | return 0; |
| 294 | } |
| 295 | |
Simon Glass | 891d9e8 | 2021-03-07 17:35:14 -0700 | [diff] [blame] | 296 | src_ptr = map_sysmem(ALIGN(load_addr, ARCH_DMA_MINALIGN), len); |
York Sun | 5fd13d9 | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 297 | length = len; |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 298 | |
York Sun | 5fd13d9 | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 299 | overhead = get_aligned_image_overhead(info, offset); |
| 300 | nr_sectors = get_aligned_image_size(info, length, offset); |
| 301 | |
Michal Simek | 3313ae6 | 2018-07-18 14:33:15 +0200 | [diff] [blame] | 302 | if (info->read(info, |
| 303 | sector + get_aligned_image_offset(info, offset), |
Simon Glass | 891d9e8 | 2021-03-07 17:35:14 -0700 | [diff] [blame] | 304 | nr_sectors, src_ptr) != nr_sectors) |
York Sun | 5fd13d9 | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 305 | return -EIO; |
| 306 | |
Simon Glass | 891d9e8 | 2021-03-07 17:35:14 -0700 | [diff] [blame] | 307 | debug("External data: dst=%p, offset=%x, size=%lx\n", |
| 308 | src_ptr, offset, (unsigned long)length); |
| 309 | src = src_ptr + overhead; |
York Sun | 5fd13d9 | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 310 | } else { |
| 311 | /* Embedded data */ |
| 312 | if (fit_image_get_data(fit, node, &data, &length)) { |
| 313 | puts("Cannot get image data/size\n"); |
| 314 | return -ENOENT; |
| 315 | } |
| 316 | debug("Embedded data: dst=%lx, size=%lx\n", load_addr, |
| 317 | (unsigned long)length); |
Simon Glass | 891d9e8 | 2021-03-07 17:35:14 -0700 | [diff] [blame] | 318 | src = (void *)data; /* cast away const */ |
York Sun | 5fd13d9 | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 319 | } |
| 320 | |
Alexandru Gagniuc | aeedeae | 2021-01-20 10:46:55 -0600 | [diff] [blame] | 321 | if (CONFIG_IS_ENABLED(FIT_SIGNATURE)) { |
| 322 | printf("## Checking hash(es) for Image %s ... ", |
| 323 | fit_get_name(fit, node, NULL)); |
Simon Glass | 99f844b | 2021-11-12 12:28:10 -0700 | [diff] [blame] | 324 | if (!fit_image_verify_with_data(fit, node, gd_fdt_blob(), src, |
| 325 | length)) |
Alexandru Gagniuc | aeedeae | 2021-01-20 10:46:55 -0600 | [diff] [blame] | 326 | return -EPERM; |
| 327 | puts("OK\n"); |
| 328 | } |
Ben Whitten | d154ca6 | 2018-06-07 11:37:27 +0100 | [diff] [blame] | 329 | |
Alexandru Gagniuc | aeedeae | 2021-01-20 10:46:55 -0600 | [diff] [blame] | 330 | if (CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS)) |
Lokesh Vutla | 481d394 | 2021-06-11 11:45:05 +0300 | [diff] [blame] | 331 | board_fit_image_post_process(fit, node, &src, &length); |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 332 | |
Simon Glass | 891d9e8 | 2021-03-07 17:35:14 -0700 | [diff] [blame] | 333 | load_ptr = map_sysmem(load_addr, length); |
Michal Simek | 975e789 | 2018-07-24 15:05:00 +0200 | [diff] [blame] | 334 | if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) { |
York Sun | 933f67a | 2017-09-15 08:21:13 -0700 | [diff] [blame] | 335 | size = length; |
Simon Glass | 891d9e8 | 2021-03-07 17:35:14 -0700 | [diff] [blame] | 336 | if (gunzip(load_ptr, CONFIG_SYS_BOOTM_LEN, src, &size)) { |
York Sun | 7264f29 | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 337 | puts("Uncompressing error\n"); |
| 338 | return -EIO; |
| 339 | } |
York Sun | 933f67a | 2017-09-15 08:21:13 -0700 | [diff] [blame] | 340 | length = size; |
York Sun | 7264f29 | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 341 | } else { |
Simon Glass | 891d9e8 | 2021-03-07 17:35:14 -0700 | [diff] [blame] | 342 | memcpy(load_ptr, src, length); |
York Sun | 7264f29 | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 343 | } |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 344 | |
| 345 | if (image_info) { |
Michal Simek | caa7fc2 | 2020-09-03 11:24:28 +0200 | [diff] [blame] | 346 | ulong entry_point; |
| 347 | |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 348 | image_info->load_addr = load_addr; |
| 349 | image_info->size = length; |
Michal Simek | caa7fc2 | 2020-09-03 11:24:28 +0200 | [diff] [blame] | 350 | |
| 351 | if (!fit_image_get_entry(fit, node, &entry_point)) |
| 352 | image_info->entry_point = entry_point; |
| 353 | else |
| 354 | image_info->entry_point = FDT_ERROR; |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 355 | } |
| 356 | |
| 357 | return 0; |
| 358 | } |
| 359 | |
Alexandru Gagniuc | 7155105 | 2021-01-20 10:46:56 -0600 | [diff] [blame] | 360 | static bool os_takes_devicetree(uint8_t os) |
| 361 | { |
| 362 | switch (os) { |
| 363 | case IH_OS_U_BOOT: |
| 364 | return true; |
| 365 | case IH_OS_LINUX: |
| 366 | return IS_ENABLED(CONFIG_SPL_OS_BOOT); |
| 367 | default: |
| 368 | return false; |
| 369 | } |
| 370 | } |
| 371 | |
Philipp Tomsich | d879616 | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 372 | static int spl_fit_append_fdt(struct spl_image_info *spl_image, |
| 373 | struct spl_load_info *info, ulong sector, |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 374 | const struct spl_fit_info *ctx) |
Philipp Tomsich | d879616 | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 375 | { |
| 376 | struct spl_image_info image_info; |
Michal Simek | 9d13b87 | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 377 | int node, ret = 0, index = 0; |
Lukas Auer | b83edfb | 2019-08-21 21:14:42 +0200 | [diff] [blame] | 378 | |
| 379 | /* |
| 380 | * Use the address following the image as target address for the |
Marek Vasut | 5675ed7 | 2020-10-19 23:40:26 +0200 | [diff] [blame] | 381 | * device tree. |
Lukas Auer | b83edfb | 2019-08-21 21:14:42 +0200 | [diff] [blame] | 382 | */ |
Marek Vasut | 5675ed7 | 2020-10-19 23:40:26 +0200 | [diff] [blame] | 383 | image_info.load_addr = spl_image->load_addr + spl_image->size; |
Philipp Tomsich | d879616 | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 384 | |
| 385 | /* Figure out which device tree the board wants to use */ |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 386 | node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index++); |
Philipp Tomsich | d879616 | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 387 | if (node < 0) { |
| 388 | debug("%s: cannot find FDT node\n", __func__); |
Lukas Auer | b83edfb | 2019-08-21 21:14:42 +0200 | [diff] [blame] | 389 | |
| 390 | /* |
| 391 | * U-Boot did not find a device tree inside the FIT image. Use |
| 392 | * the U-Boot device tree instead. |
| 393 | */ |
| 394 | if (gd->fdt_blob) |
| 395 | memcpy((void *)image_info.load_addr, gd->fdt_blob, |
| 396 | fdt_totalsize(gd->fdt_blob)); |
| 397 | else |
| 398 | return node; |
| 399 | } else { |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 400 | ret = spl_load_fit_image(info, sector, ctx, node, |
Lukas Auer | b83edfb | 2019-08-21 21:14:42 +0200 | [diff] [blame] | 401 | &image_info); |
| 402 | if (ret < 0) |
| 403 | return ret; |
Philipp Tomsich | d879616 | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 404 | } |
| 405 | |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 406 | /* Make the load-address of the FDT available for the SPL framework */ |
Simon Glass | 891d9e8 | 2021-03-07 17:35:14 -0700 | [diff] [blame] | 407 | spl_image->fdt_addr = map_sysmem(image_info.load_addr, 0); |
Alexandru Gagniuc | aeedeae | 2021-01-20 10:46:55 -0600 | [diff] [blame] | 408 | if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY)) |
| 409 | return 0; |
| 410 | |
Michal Simek | 9d13b87 | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 411 | if (CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)) { |
Jean-Jacques Hiblot | ea376eb | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 412 | void *tmpbuffer = NULL; |
| 413 | |
Michal Simek | 9d13b87 | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 414 | for (; ; index++) { |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 415 | node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index); |
Jean-Jacques Hiblot | 24bf44c | 2019-10-22 16:39:14 +0200 | [diff] [blame] | 416 | if (node == -E2BIG) { |
Michal Simek | 9d13b87 | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 417 | debug("%s: No additional FDT node\n", __func__); |
Jean-Jacques Hiblot | ea376eb | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 418 | break; |
Jean-Jacques Hiblot | 24bf44c | 2019-10-22 16:39:14 +0200 | [diff] [blame] | 419 | } else if (node < 0) { |
| 420 | debug("%s: unable to find FDT node %d\n", |
| 421 | __func__, index); |
| 422 | continue; |
Michal Simek | 9d13b87 | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 423 | } |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 424 | |
Jean-Jacques Hiblot | ea376eb | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 425 | if (!tmpbuffer) { |
| 426 | /* |
| 427 | * allocate memory to store the DT overlay |
| 428 | * before it is applied. It may not be used |
| 429 | * depending on how the overlay is stored, so |
| 430 | * don't fail yet if the allocation failed. |
| 431 | */ |
| 432 | tmpbuffer = malloc(CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ); |
| 433 | if (!tmpbuffer) |
| 434 | debug("%s: unable to allocate space for overlays\n", |
| 435 | __func__); |
| 436 | } |
| 437 | image_info.load_addr = (ulong)tmpbuffer; |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 438 | ret = spl_load_fit_image(info, sector, ctx, |
Michal Simek | 9d13b87 | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 439 | node, &image_info); |
| 440 | if (ret < 0) |
Jean-Jacques Hiblot | ea376eb | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 441 | break; |
Michal Simek | 9d13b87 | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 442 | |
Jean-Jacques Hiblot | 99329be | 2019-10-22 16:39:12 +0200 | [diff] [blame] | 443 | /* Make room in FDT for changes from the overlay */ |
| 444 | ret = fdt_increase_size(spl_image->fdt_addr, |
| 445 | image_info.size); |
| 446 | if (ret < 0) |
Jean-Jacques Hiblot | ea376eb | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 447 | break; |
Jean-Jacques Hiblot | 99329be | 2019-10-22 16:39:12 +0200 | [diff] [blame] | 448 | |
Michal Simek | 9d13b87 | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 449 | ret = fdt_overlay_apply_verbose(spl_image->fdt_addr, |
| 450 | (void *)image_info.load_addr); |
Jean-Jacques Hiblot | 19141d6 | 2019-10-22 16:39:15 +0200 | [diff] [blame] | 451 | if (ret) { |
| 452 | pr_err("failed to apply DT overlay %s\n", |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 453 | fit_get_name(ctx->fit, node, NULL)); |
Jean-Jacques Hiblot | ea376eb | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 454 | break; |
Jean-Jacques Hiblot | 19141d6 | 2019-10-22 16:39:15 +0200 | [diff] [blame] | 455 | } |
Michal Simek | 9d13b87 | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 456 | |
| 457 | debug("%s: DT overlay %s applied\n", __func__, |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 458 | fit_get_name(ctx->fit, node, NULL)); |
Michal Simek | 9d13b87 | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 459 | } |
Heinrich Schuchardt | 077e72c | 2020-04-20 12:44:01 +0200 | [diff] [blame] | 460 | free(tmpbuffer); |
Jean-Jacques Hiblot | ea376eb | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 461 | if (ret) |
| 462 | return ret; |
Michal Simek | 9d13b87 | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 463 | } |
Jean-Jacques Hiblot | 99329be | 2019-10-22 16:39:12 +0200 | [diff] [blame] | 464 | /* Try to make space, so we can inject details on the loadables */ |
| 465 | ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192); |
| 466 | if (ret < 0) |
| 467 | return ret; |
Jean-Jacques Hiblot | 99329be | 2019-10-22 16:39:12 +0200 | [diff] [blame] | 468 | |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 469 | return ret; |
| 470 | } |
| 471 | |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 472 | static int spl_fit_record_loadable(const struct spl_fit_info *ctx, int index, |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 473 | void *blob, struct spl_image_info *image) |
| 474 | { |
Philipp Tomsich | 337bbb6 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 475 | int ret = 0; |
Jean-Jacques Hiblot | c1648d0 | 2019-10-22 16:39:17 +0200 | [diff] [blame] | 476 | const char *name; |
Philipp Tomsich | 337bbb6 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 477 | int node; |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 478 | |
Alexandru Gagniuc | aeedeae | 2021-01-20 10:46:55 -0600 | [diff] [blame] | 479 | if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY)) |
| 480 | return 0; |
| 481 | |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 482 | ret = spl_fit_get_image_name(ctx, "loadables", index, &name); |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 483 | if (ret < 0) |
| 484 | return ret; |
| 485 | |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 486 | node = spl_fit_get_image_node(ctx, "loadables", index); |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 487 | |
| 488 | ret = fdt_record_loadable(blob, index, name, image->load_addr, |
| 489 | image->size, image->entry_point, |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 490 | fdt_getprop(ctx->fit, node, "type", NULL), |
Michal Simek | be2d1a8 | 2021-05-27 11:40:09 +0200 | [diff] [blame] | 491 | fdt_getprop(ctx->fit, node, "os", NULL), |
| 492 | fdt_getprop(ctx->fit, node, "arch", NULL)); |
Philipp Tomsich | d879616 | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 493 | return ret; |
| 494 | } |
| 495 | |
Alexandru Gagniuc | 35f4f8e | 2021-03-29 12:05:14 -0500 | [diff] [blame] | 496 | static int spl_fit_image_is_fpga(const void *fit, int node) |
| 497 | { |
| 498 | const char *type; |
| 499 | |
| 500 | if (!IS_ENABLED(CONFIG_SPL_FPGA)) |
| 501 | return 0; |
| 502 | |
| 503 | type = fdt_getprop(fit, node, FIT_TYPE_PROP, NULL); |
| 504 | if (!type) |
| 505 | return 0; |
| 506 | |
| 507 | return !strcmp(type, "fpga"); |
| 508 | } |
| 509 | |
Philipp Tomsich | 337bbb6 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 510 | static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os) |
| 511 | { |
Alexandru Gagniuc | aeedeae | 2021-01-20 10:46:55 -0600 | [diff] [blame] | 512 | if (!CONFIG_IS_ENABLED(FIT_IMAGE_TINY) || CONFIG_IS_ENABLED(OS_BOOT)) |
| 513 | return fit_image_get_os(fit, noffset, os); |
Samuel Holland | cf70553 | 2020-10-21 21:12:13 -0500 | [diff] [blame] | 514 | |
Alexandru Gagniuc | aeedeae | 2021-01-20 10:46:55 -0600 | [diff] [blame] | 515 | const char *name = fdt_getprop(fit, noffset, FIT_OS_PROP, NULL); |
Samuel Holland | cf70553 | 2020-10-21 21:12:13 -0500 | [diff] [blame] | 516 | if (!name) |
| 517 | return -ENOENT; |
| 518 | |
| 519 | /* |
| 520 | * We don't care what the type of the image actually is, |
| 521 | * only whether or not it is U-Boot. This saves some |
| 522 | * space by omitting the large table of OS types. |
| 523 | */ |
| 524 | if (!strcmp(name, "u-boot")) |
| 525 | *os = IH_OS_U_BOOT; |
| 526 | else |
| 527 | *os = IH_OS_INVALID; |
| 528 | |
| 529 | return 0; |
Philipp Tomsich | 337bbb6 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 530 | } |
| 531 | |
Andreas Dannenberg | e1eb6ad | 2019-06-04 17:55:46 -0500 | [diff] [blame] | 532 | /* |
Alexandru Gagniuc | 03f1f78 | 2020-10-21 18:32:58 -0500 | [diff] [blame] | 533 | * The purpose of the FIT load buffer is to provide a memory location that is |
| 534 | * independent of the load address of any FIT component. |
| 535 | */ |
| 536 | static void *spl_get_fit_load_buffer(size_t size) |
| 537 | { |
| 538 | void *buf; |
| 539 | |
| 540 | buf = malloc(size); |
| 541 | if (!buf) { |
| 542 | pr_err("Could not get FIT buffer of %lu bytes\n", (ulong)size); |
| 543 | pr_err("\tcheck CONFIG_SYS_SPL_MALLOC_SIZE\n"); |
| 544 | buf = spl_get_load_buffer(0, size); |
| 545 | } |
| 546 | return buf; |
| 547 | } |
| 548 | |
Heiko Schocher | deb80ec | 2021-08-17 08:17:18 +0200 | [diff] [blame] | 549 | __weak void *board_spl_fit_buffer_addr(ulong fit_size, int sectors, int bl_len) |
| 550 | { |
| 551 | return spl_get_fit_load_buffer(sectors * bl_len); |
| 552 | } |
| 553 | |
Alexandru Gagniuc | 03f1f78 | 2020-10-21 18:32:58 -0500 | [diff] [blame] | 554 | /* |
Andreas Dannenberg | e1eb6ad | 2019-06-04 17:55:46 -0500 | [diff] [blame] | 555 | * Weak default function to allow customizing SPL fit loading for load-only |
| 556 | * use cases by allowing to skip the parsing/processing of the FIT contents |
| 557 | * (so that this can be done separately in a more customized fashion) |
| 558 | */ |
| 559 | __weak bool spl_load_simple_fit_skip_processing(void) |
| 560 | { |
| 561 | return false; |
| 562 | } |
| 563 | |
Heiko Schocher | 884ba50 | 2021-08-06 06:44:26 +0200 | [diff] [blame] | 564 | /* |
| 565 | * Weak default function to allow fixes after fit header |
| 566 | * is loaded. |
| 567 | */ |
| 568 | __weak void *spl_load_simple_fit_fix_load(const void *fit) |
| 569 | { |
| 570 | return (void *)fit; |
| 571 | } |
| 572 | |
Alexandru Gagniuc | d8a3951 | 2021-03-29 12:05:13 -0500 | [diff] [blame] | 573 | static void warn_deprecated(const char *msg) |
| 574 | { |
| 575 | printf("DEPRECATED: %s\n", msg); |
| 576 | printf("\tSee doc/uImage.FIT/source_file_format.txt\n"); |
| 577 | } |
| 578 | |
Alexandru Gagniuc | 55e7a1a | 2021-03-29 12:05:12 -0500 | [diff] [blame] | 579 | static int spl_fit_upload_fpga(struct spl_fit_info *ctx, int node, |
| 580 | struct spl_image_info *fpga_image) |
| 581 | { |
Alexandru Gagniuc | 35f4f8e | 2021-03-29 12:05:14 -0500 | [diff] [blame] | 582 | const char *compatible; |
Alexandru Gagniuc | 55e7a1a | 2021-03-29 12:05:12 -0500 | [diff] [blame] | 583 | int ret; |
Oleksandr Suvorov | 282eed5 | 2022-07-22 17:16:07 +0300 | [diff] [blame] | 584 | int devnum = 0; |
| 585 | int flags = 0; |
Alexandru Gagniuc | 55e7a1a | 2021-03-29 12:05:12 -0500 | [diff] [blame] | 586 | |
| 587 | debug("FPGA bitstream at: %x, size: %x\n", |
| 588 | (u32)fpga_image->load_addr, fpga_image->size); |
| 589 | |
Alexandru Gagniuc | 35f4f8e | 2021-03-29 12:05:14 -0500 | [diff] [blame] | 590 | compatible = fdt_getprop(ctx->fit, node, "compatible", NULL); |
Oleksandr Suvorov | 71f1a53 | 2022-07-22 17:16:09 +0300 | [diff] [blame] | 591 | if (!compatible) { |
Alexandru Gagniuc | 35f4f8e | 2021-03-29 12:05:14 -0500 | [diff] [blame] | 592 | warn_deprecated("'fpga' image without 'compatible' property"); |
Oleksandr Suvorov | 71f1a53 | 2022-07-22 17:16:09 +0300 | [diff] [blame] | 593 | } else { |
| 594 | if (CONFIG_IS_ENABLED(FPGA_LOAD_SECURE)) |
| 595 | flags = fpga_compatible2flag(devnum, compatible); |
| 596 | if (strcmp(compatible, "u-boot,fpga-legacy")) |
| 597 | debug("Ignoring compatible = %s property\n", |
| 598 | compatible); |
| 599 | } |
Alexandru Gagniuc | 35f4f8e | 2021-03-29 12:05:14 -0500 | [diff] [blame] | 600 | |
Oleksandr Suvorov | 282eed5 | 2022-07-22 17:16:07 +0300 | [diff] [blame] | 601 | ret = fpga_load(devnum, (void *)fpga_image->load_addr, |
| 602 | fpga_image->size, BIT_FULL, flags); |
Alexandru Gagniuc | 55e7a1a | 2021-03-29 12:05:12 -0500 | [diff] [blame] | 603 | if (ret) { |
| 604 | printf("%s: Cannot load the image to the FPGA\n", __func__); |
| 605 | return ret; |
| 606 | } |
| 607 | |
| 608 | puts("FPGA image loaded from FIT\n"); |
| 609 | |
| 610 | return 0; |
| 611 | } |
| 612 | |
| 613 | static int spl_fit_load_fpga(struct spl_fit_info *ctx, |
| 614 | struct spl_load_info *info, ulong sector) |
| 615 | { |
| 616 | int node, ret; |
| 617 | |
| 618 | struct spl_image_info fpga_image = { |
| 619 | .load_addr = 0, |
| 620 | }; |
| 621 | |
| 622 | node = spl_fit_get_image_node(ctx, "fpga", 0); |
| 623 | if (node < 0) |
| 624 | return node; |
| 625 | |
Alexandru Gagniuc | d8a3951 | 2021-03-29 12:05:13 -0500 | [diff] [blame] | 626 | warn_deprecated("'fpga' property in config node. Use 'loadables'"); |
| 627 | |
Alexandru Gagniuc | 55e7a1a | 2021-03-29 12:05:12 -0500 | [diff] [blame] | 628 | /* Load the image and set up the fpga_image structure */ |
| 629 | ret = spl_load_fit_image(info, sector, ctx, node, &fpga_image); |
| 630 | if (ret) { |
| 631 | printf("%s: Cannot load the FPGA: %i\n", __func__, ret); |
| 632 | return ret; |
| 633 | } |
| 634 | |
| 635 | return spl_fit_upload_fpga(ctx, node, &fpga_image); |
| 636 | } |
| 637 | |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 638 | static int spl_simple_fit_read(struct spl_fit_info *ctx, |
| 639 | struct spl_load_info *info, ulong sector, |
| 640 | const void *fit_header) |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 641 | { |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 642 | unsigned long count, size; |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 643 | int sectors; |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 644 | void *buf; |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 645 | |
| 646 | /* |
York Sun | c8bc3c0 | 2017-08-15 11:14:45 -0700 | [diff] [blame] | 647 | * For FIT with external data, figure out where the external images |
| 648 | * start. This is the base for the data-offset properties in each |
| 649 | * image. |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 650 | */ |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 651 | size = ALIGN(fdt_totalsize(fit_header), 4); |
Ye Li | e246bfc | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 652 | size = board_spl_fit_size_align(size); |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 653 | ctx->ext_data_offset = ALIGN(size, 4); |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 654 | |
| 655 | /* |
| 656 | * So far we only have one block of data from the FIT. Read the entire |
Alexandru Gagniuc | 03f1f78 | 2020-10-21 18:32:58 -0500 | [diff] [blame] | 657 | * thing, including that first block. |
York Sun | c8bc3c0 | 2017-08-15 11:14:45 -0700 | [diff] [blame] | 658 | * |
| 659 | * For FIT with data embedded, data is loaded as part of FIT image. |
| 660 | * For FIT with external data, data is not loaded in this step. |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 661 | */ |
Lokesh Vutla | eafd541 | 2016-05-24 10:34:38 +0530 | [diff] [blame] | 662 | sectors = get_aligned_image_size(info, size, 0); |
Heiko Schocher | deb80ec | 2021-08-17 08:17:18 +0200 | [diff] [blame] | 663 | buf = board_spl_fit_buffer_addr(size, sectors, info->bl_len); |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 664 | |
| 665 | count = info->read(info, sector, sectors, buf); |
| 666 | ctx->fit = buf; |
Ye Li | e246bfc | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 667 | debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu, size=0x%lx\n", |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 668 | sector, sectors, buf, count, size); |
Ye Li | e246bfc | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 669 | |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 670 | return (count == 0) ? -EIO : 0; |
| 671 | } |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 672 | |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 673 | static int spl_simple_fit_parse(struct spl_fit_info *ctx) |
| 674 | { |
Alexandru Gagniuc | 9e9aa0b | 2021-01-20 10:46:53 -0600 | [diff] [blame] | 675 | /* Find the correct subnode under "/configurations" */ |
| 676 | ctx->conf_node = fit_find_config_node(ctx->fit); |
| 677 | if (ctx->conf_node < 0) |
| 678 | return -EINVAL; |
Philippe Reynes | 7d5b1bf | 2020-10-29 18:50:29 +0100 | [diff] [blame] | 679 | |
Alexandru Gagniuc | 9e9aa0b | 2021-01-20 10:46:53 -0600 | [diff] [blame] | 680 | if (IS_ENABLED(CONFIG_SPL_FIT_SIGNATURE)) { |
Philippe Reynes | 7d5b1bf | 2020-10-29 18:50:29 +0100 | [diff] [blame] | 681 | printf("## Checking hash(es) for config %s ... ", |
Alexandru Gagniuc | 9e9aa0b | 2021-01-20 10:46:53 -0600 | [diff] [blame] | 682 | fit_get_name(ctx->fit, ctx->conf_node, NULL)); |
| 683 | if (fit_config_verify(ctx->fit, ctx->conf_node)) |
Philippe Reynes | 7d5b1bf | 2020-10-29 18:50:29 +0100 | [diff] [blame] | 684 | return -EPERM; |
| 685 | puts("OK\n"); |
| 686 | } |
| 687 | |
Andre Przywara | 736806f | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 688 | /* find the node holding the images information */ |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 689 | ctx->images_node = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH); |
| 690 | if (ctx->images_node < 0) { |
| 691 | debug("%s: Cannot find /images node: %d\n", __func__, |
| 692 | ctx->images_node); |
| 693 | return -EINVAL; |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 694 | } |
Andre Przywara | 736806f | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 695 | |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 696 | return 0; |
| 697 | } |
| 698 | |
| 699 | int spl_load_simple_fit(struct spl_image_info *spl_image, |
| 700 | struct spl_load_info *info, ulong sector, void *fit) |
| 701 | { |
| 702 | struct spl_image_info image_info; |
| 703 | struct spl_fit_info ctx; |
| 704 | int node = -1; |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 705 | int ret; |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 706 | int index = 0; |
| 707 | int firmware_node; |
| 708 | |
| 709 | ret = spl_simple_fit_read(&ctx, info, sector, fit); |
| 710 | if (ret < 0) |
| 711 | return ret; |
| 712 | |
| 713 | /* skip further processing if requested to enable load-only use cases */ |
| 714 | if (spl_load_simple_fit_skip_processing()) |
| 715 | return 0; |
| 716 | |
Heiko Schocher | 884ba50 | 2021-08-06 06:44:26 +0200 | [diff] [blame] | 717 | ctx.fit = spl_load_simple_fit_fix_load(ctx.fit); |
| 718 | |
Alexandru Gagniuc | 917fa36 | 2021-01-20 10:46:50 -0600 | [diff] [blame] | 719 | ret = spl_simple_fit_parse(&ctx); |
| 720 | if (ret < 0) |
| 721 | return ret; |
| 722 | |
Alexandru Gagniuc | 55e7a1a | 2021-03-29 12:05:12 -0500 | [diff] [blame] | 723 | if (IS_ENABLED(CONFIG_SPL_FPGA)) |
| 724 | spl_fit_load_fpga(&ctx, info, sector); |
Marek Vasut | 26a6422 | 2018-05-12 22:25:28 +0200 | [diff] [blame] | 725 | |
Philipp Tomsich | d879616 | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 726 | /* |
| 727 | * Find the U-Boot image using the following search order: |
| 728 | * - start at 'firmware' (e.g. an ARM Trusted Firmware) |
| 729 | * - fall back 'kernel' (e.g. a Falcon-mode OS boot |
| 730 | * - fall back to using the first 'loadables' entry |
| 731 | */ |
York Sun | c8bc3c0 | 2017-08-15 11:14:45 -0700 | [diff] [blame] | 732 | if (node < 0) |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 733 | node = spl_fit_get_image_node(&ctx, FIT_FIRMWARE_PROP, 0); |
Alexandru Gagniuc | aeedeae | 2021-01-20 10:46:55 -0600 | [diff] [blame] | 734 | |
| 735 | if (node < 0 && IS_ENABLED(CONFIG_SPL_OS_BOOT)) |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 736 | node = spl_fit_get_image_node(&ctx, FIT_KERNEL_PROP, 0); |
Alexandru Gagniuc | aeedeae | 2021-01-20 10:46:55 -0600 | [diff] [blame] | 737 | |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 738 | if (node < 0) { |
Andre Przywara | 736806f | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 739 | debug("could not find firmware image, trying loadables...\n"); |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 740 | node = spl_fit_get_image_node(&ctx, "loadables", 0); |
Andre Przywara | 411cf32 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 741 | /* |
| 742 | * If we pick the U-Boot image from "loadables", start at |
| 743 | * the second image when later loading additional images. |
| 744 | */ |
| 745 | index = 1; |
Andre Przywara | 736806f | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 746 | } |
| 747 | if (node < 0) { |
| 748 | debug("%s: Cannot find u-boot image node: %d\n", |
| 749 | __func__, node); |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 750 | return -1; |
| 751 | } |
| 752 | |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 753 | /* Load the image and set up the spl_image structure */ |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 754 | ret = spl_load_fit_image(info, sector, &ctx, node, spl_image); |
Andre Przywara | 8baa381 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 755 | if (ret) |
| 756 | return ret; |
| 757 | |
Philipp Tomsich | d879616 | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 758 | /* |
| 759 | * For backward compatibility, we treat the first node that is |
| 760 | * as a U-Boot image, if no OS-type has been declared. |
| 761 | */ |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 762 | if (!spl_fit_image_get_os(ctx.fit, node, &spl_image->os)) |
York Sun | c8bc3c0 | 2017-08-15 11:14:45 -0700 | [diff] [blame] | 763 | debug("Image OS is %s\n", genimg_get_os_name(spl_image->os)); |
Alexandru Gagniuc | aeedeae | 2021-01-20 10:46:55 -0600 | [diff] [blame] | 764 | else if (!IS_ENABLED(CONFIG_SPL_OS_BOOT)) |
Philipp Tomsich | d879616 | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 765 | spl_image->os = IH_OS_U_BOOT; |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 766 | |
Philipp Tomsich | d879616 | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 767 | /* |
| 768 | * Booting a next-stage U-Boot may require us to append the FDT. |
| 769 | * We allow this to fail, as the U-Boot image might embed its FDT. |
| 770 | */ |
Alexandru Gagniuc | 7155105 | 2021-01-20 10:46:56 -0600 | [diff] [blame] | 771 | if (os_takes_devicetree(spl_image->os)) { |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 772 | ret = spl_fit_append_fdt(spl_image, info, sector, &ctx); |
Alexandru Gagniuc | 7155105 | 2021-01-20 10:46:56 -0600 | [diff] [blame] | 773 | if (ret < 0 && spl_image->os != IH_OS_U_BOOT) |
Dario Binacchi | 585b468 | 2020-05-27 13:56:19 +0200 | [diff] [blame] | 774 | return ret; |
| 775 | } |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 776 | |
Jean-Jacques Hiblot | 6b8b98d | 2019-10-22 16:39:10 +0200 | [diff] [blame] | 777 | firmware_node = node; |
Andre Przywara | 411cf32 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 778 | /* Now check if there are more images for us to load */ |
| 779 | for (; ; index++) { |
Philipp Tomsich | d879616 | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 780 | uint8_t os_type = IH_OS_INVALID; |
| 781 | |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 782 | node = spl_fit_get_image_node(&ctx, "loadables", index); |
Andre Przywara | 411cf32 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 783 | if (node < 0) |
| 784 | break; |
| 785 | |
Jean-Jacques Hiblot | 6b8b98d | 2019-10-22 16:39:10 +0200 | [diff] [blame] | 786 | /* |
| 787 | * if the firmware is also a loadable, skip it because |
| 788 | * it already has been loaded. This is typically the case with |
| 789 | * u-boot.img generated by mkimage. |
| 790 | */ |
| 791 | if (firmware_node == node) |
| 792 | continue; |
| 793 | |
Alexandru Gagniuc | f0a6ec3 | 2021-03-29 12:05:10 -0500 | [diff] [blame] | 794 | image_info.load_addr = 0; |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 795 | ret = spl_load_fit_image(info, sector, &ctx, node, &image_info); |
Philippe Reynes | c61b2bf | 2020-11-24 16:15:05 +0100 | [diff] [blame] | 796 | if (ret < 0) { |
| 797 | printf("%s: can't load image loadables index %d (ret = %d)\n", |
| 798 | __func__, index, ret); |
| 799 | return ret; |
| 800 | } |
Andre Przywara | 411cf32 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 801 | |
Alexandru Gagniuc | 35f4f8e | 2021-03-29 12:05:14 -0500 | [diff] [blame] | 802 | if (spl_fit_image_is_fpga(ctx.fit, node)) |
| 803 | spl_fit_upload_fpga(&ctx, node, &image_info); |
| 804 | |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 805 | if (!spl_fit_image_get_os(ctx.fit, node, &os_type)) |
Philipp Tomsich | d879616 | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 806 | debug("Loadable is %s\n", genimg_get_os_name(os_type)); |
| 807 | |
Alexandru Gagniuc | 7155105 | 2021-01-20 10:46:56 -0600 | [diff] [blame] | 808 | if (os_takes_devicetree(os_type)) { |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 809 | spl_fit_append_fdt(&image_info, info, sector, &ctx); |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 810 | spl_image->fdt_addr = image_info.fdt_addr; |
| 811 | } |
Philipp Tomsich | d879616 | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 812 | |
Andre Przywara | 411cf32 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 813 | /* |
| 814 | * If the "firmware" image did not provide an entry point, |
| 815 | * use the first valid entry point from the loadables. |
| 816 | */ |
| 817 | if (spl_image->entry_point == FDT_ERROR && |
| 818 | image_info.entry_point != FDT_ERROR) |
| 819 | spl_image->entry_point = image_info.entry_point; |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 820 | |
| 821 | /* Record our loadables into the FDT */ |
| 822 | if (spl_image->fdt_addr) |
Alexandru Gagniuc | 3dc2079 | 2021-01-20 10:46:51 -0600 | [diff] [blame] | 823 | spl_fit_record_loadable(&ctx, index, |
Philipp Tomsich | a616c78 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 824 | spl_image->fdt_addr, |
| 825 | &image_info); |
Andre Przywara | 411cf32 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 826 | } |
| 827 | |
| 828 | /* |
| 829 | * If a platform does not provide CONFIG_SYS_UBOOT_START, U-Boot's |
| 830 | * Makefile will set it to 0 and it will end up as the entry point |
| 831 | * here. What it actually means is: use the load address. |
| 832 | */ |
| 833 | if (spl_image->entry_point == FDT_ERROR || spl_image->entry_point == 0) |
| 834 | spl_image->entry_point = spl_image->load_addr; |
| 835 | |
Ye Li | e246bfc | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 836 | spl_image->flags |= SPL_FIT_FOUND; |
| 837 | |
Alexandru Gagniuc | aeedeae | 2021-01-20 10:46:55 -0600 | [diff] [blame] | 838 | if (IS_ENABLED(CONFIG_IMX_HAB)) |
| 839 | board_spl_fit_post_load(ctx.fit); |
Ye Li | e246bfc | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 840 | |
Andre Przywara | 411cf32 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 841 | return 0; |
Simon Glass | f1dcee5 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 842 | } |