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