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