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