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