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