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