blob: 321954a1547f9dcf52ff01b8433e093a1fb8c51c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassa6131a22016-02-22 22:55:56 -07002/*
3 * Copyright (C) 2016 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glassa6131a22016-02-22 22:55:56 -07005 */
6
Simon Glassa6131a22016-02-22 22:55:56 -07007#include <errno.h>
Michal Simekf707b5a2018-07-18 14:33:15 +02008#include <fpga.h>
Simon Glass1a974af2019-08-01 09:46:36 -06009#include <gzip.h>
Simon Glassa6131a22016-02-22 22:55:56 -070010#include <image.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Stefan Herbrechtsmeier66249102022-06-14 16:12:00 +020012#include <memalign.h>
Simon Glass2192e982021-03-07 17:35:14 -070013#include <mapmem.h>
Simon Glassa6131a22016-02-22 22:55:56 -070014#include <spl.h>
Simon Glass9b5bfba2024-08-07 16:47:33 -060015#include <upl.h>
Simon Glass458b66a2020-11-05 06:32:05 -070016#include <sysinfo.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060017#include <asm/global_data.h>
Sean Anderson5ff77722023-10-14 16:47:55 -040018#include <asm/io.h>
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +020019#include <linux/libfdt.h>
Simon Glassbdd5f812023-09-14 18:21:46 -060020#include <linux/printk.h>
Simon Glassa6131a22016-02-22 22:55:56 -070021
Lukas Auer80afee72019-08-21 21:14:42 +020022DECLARE_GLOBAL_DATA_PTR;
23
Alexandru Gagniuc23243c92021-01-20 10:46:50 -060024struct spl_fit_info {
25 const void *fit; /* Pointer to a valid FIT blob */
26 size_t ext_data_offset; /* Offset to FIT external data (end of FIT) */
27 int images_node; /* FDT offset to "/images" node */
Alexandru Gagniucfa11a442021-01-20 10:46:53 -060028 int conf_node; /* FDT offset to selected configuration node */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -060029};
30
Ye Li9d5b0f42018-11-17 09:10:25 +000031__weak ulong board_spl_fit_size_align(ulong size)
32{
33 return size;
34}
35
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020036static int find_node_from_desc(const void *fit, int node, const char *str)
37{
38 int child;
39
40 if (node < 0)
41 return -EINVAL;
42
43 /* iterate the FIT nodes and find a matching description */
44 for (child = fdt_first_subnode(fit, node); child >= 0;
45 child = fdt_next_subnode(fit, child)) {
46 int len;
Simon Glassdff90432023-09-26 08:14:35 -060047 const char *desc = fdt_getprop(fit, child, FIT_DESC_PROP, &len);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020048
49 if (!desc)
50 continue;
51
52 if (!strcmp(desc, str))
53 return child;
54 }
55
56 return -ENOENT;
57}
58
Andre Przywara525e9c92017-04-26 01:32:34 +010059/**
Philipp Tomsiche61eff92017-09-13 21:29:34 +020060 * spl_fit_get_image_name(): By using the matching configuration subnode,
Andre Przywara525e9c92017-04-26 01:32:34 +010061 * retrieve the name of an image, specified by a property name and an index
62 * into that.
63 * @fit: Pointer to the FDT blob.
64 * @images: Offset of the /images subnode.
65 * @type: Name of the property within the configuration subnode.
66 * @index: Index into the list of strings in this property.
Philipp Tomsiche61eff92017-09-13 21:29:34 +020067 * @outname: Name of the image
Andre Przywara525e9c92017-04-26 01:32:34 +010068 *
Philipp Tomsiche61eff92017-09-13 21:29:34 +020069 * Return: 0 on success, or a negative error number
Andre Przywara525e9c92017-04-26 01:32:34 +010070 */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -060071static int spl_fit_get_image_name(const struct spl_fit_info *ctx,
Philipp Tomsiche61eff92017-09-13 21:29:34 +020072 const char *type, int index,
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +020073 const char **outname)
Andre Przywara1e329b62017-04-26 01:32:33 +010074{
Simon Glass458b66a2020-11-05 06:32:05 -070075 struct udevice *sysinfo;
Andre Przywara1e329b62017-04-26 01:32:33 +010076 const char *name, *str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +020077 __maybe_unused int node;
Andre Przywara1e329b62017-04-26 01:32:33 +010078 int len, i;
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020079 bool found = true;
Andre Przywara1e329b62017-04-26 01:32:33 +010080
Alexandru Gagniucfa11a442021-01-20 10:46:53 -060081 name = fdt_getprop(ctx->fit, ctx->conf_node, type, &len);
Andre Przywara1e329b62017-04-26 01:32:33 +010082 if (!name) {
83 debug("cannot find property '%s': %d\n", type, len);
84 return -EINVAL;
85 }
Simon Glassa6131a22016-02-22 22:55:56 -070086
Andre Przywara1e329b62017-04-26 01:32:33 +010087 str = name;
88 for (i = 0; i < index; i++) {
Mikhail Kshevetskiy7a91b1b2025-06-10 12:56:30 +030089 str = memchr(str, '\0', name + len - str);
90 if (!str) {
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020091 found = false;
92 break;
Andre Przywara1e329b62017-04-26 01:32:33 +010093 }
Mikhail Kshevetskiy7a91b1b2025-06-10 12:56:30 +030094 str++;
Simon Glassa6131a22016-02-22 22:55:56 -070095 }
96
Simon Glass458b66a2020-11-05 06:32:05 -070097 if (!found && CONFIG_IS_ENABLED(SYSINFO) && !sysinfo_get(&sysinfo)) {
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020098 int rc;
99 /*
Simon Glass458b66a2020-11-05 06:32:05 -0700100 * no string in the property for this index. Check if the
101 * sysinfo-level code can supply one.
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200102 */
Sean Anderson6ccf10a2021-04-20 10:50:56 -0400103 rc = sysinfo_detect(sysinfo);
104 if (rc)
105 return rc;
106
Simon Glass458b66a2020-11-05 06:32:05 -0700107 rc = sysinfo_get_fit_loadable(sysinfo, index - i - 1, type,
108 &str);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200109 if (rc && rc != -ENOENT)
110 return rc;
111
112 if (!rc) {
113 /*
Simon Glass458b66a2020-11-05 06:32:05 -0700114 * The sysinfo provided a name for a loadable.
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200115 * Try to match it against the description properties
116 * first. If no matching node is found, use it as a
117 * node name.
118 */
119 int node;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600120 int images = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200121
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600122 node = find_node_from_desc(ctx->fit, images, str);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200123 if (node > 0)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600124 str = fdt_get_name(ctx->fit, node, NULL);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200125
126 found = true;
127 }
128 }
129
130 if (!found) {
131 debug("no string for index %d\n", index);
132 return -E2BIG;
133 }
134
135 *outname = str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200136 return 0;
137}
138
139/**
140 * spl_fit_get_image_node(): By using the matching configuration subnode,
141 * retrieve the name of an image, specified by a property name and an index
142 * into that.
143 * @fit: Pointer to the FDT blob.
144 * @images: Offset of the /images subnode.
145 * @type: Name of the property within the configuration subnode.
146 * @index: Index into the list of strings in this property.
147 *
148 * Return: the node offset of the respective image node or a negative
149 * error number.
150 */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600151static int spl_fit_get_image_node(const struct spl_fit_info *ctx,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200152 const char *type, int index)
153{
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +0200154 const char *str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200155 int err;
156 int node;
157
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600158 err = spl_fit_get_image_name(ctx, type, index, &str);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200159 if (err)
160 return err;
161
Andre Przywara1e329b62017-04-26 01:32:33 +0100162 debug("%s: '%s'\n", type, str);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200163
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600164 node = fdt_subnode_offset(ctx->fit, ctx->images_node, str);
Andre Przywara1e329b62017-04-26 01:32:33 +0100165 if (node < 0) {
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200166 pr_err("cannot find image node '%s': %d\n", str, node);
Andre Przywara1e329b62017-04-26 01:32:33 +0100167 return -EINVAL;
Simon Glassa6131a22016-02-22 22:55:56 -0700168 }
Simon Glassa6131a22016-02-22 22:55:56 -0700169
Andre Przywara525e9c92017-04-26 01:32:34 +0100170 return node;
Simon Glassa6131a22016-02-22 22:55:56 -0700171}
172
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530173static int get_aligned_image_offset(struct spl_load_info *info, int offset)
174{
Sean Anderson35f15fe2023-11-08 11:48:43 -0500175 return ALIGN_DOWN(offset, spl_get_bl_len(info));
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530176}
177
178static int get_aligned_image_overhead(struct spl_load_info *info, int offset)
179{
Sean Anderson35f15fe2023-11-08 11:48:43 -0500180 return offset & (spl_get_bl_len(info) - 1);
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530181}
182
183static int get_aligned_image_size(struct spl_load_info *info, int data_size,
184 int offset)
185{
Lokesh Vutlaf0531a62016-07-19 14:56:14 +0530186 data_size = data_size + get_aligned_image_overhead(info, offset);
187
Sean Anderson35f15fe2023-11-08 11:48:43 -0500188 return ALIGN(data_size, spl_get_bl_len(info));
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530189}
190
Andre Przywara29053e92017-04-26 01:32:36 +0100191/**
Simon Glass205ff7b2023-09-26 08:14:33 -0600192 * load_simple_fit(): load the image described in a certain FIT node
Andre Przywara29053e92017-04-26 01:32:36 +0100193 * @info: points to information about the device to load data from
Simon Glass97c434b2024-12-19 11:29:02 -0700194 * @fit_offset: the offset of the FIT image on the device
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600195 * @ctx: points to the FIT context structure
Andre Przywara29053e92017-04-26 01:32:36 +0100196 * @node: offset of the DT node describing the image to load (relative
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200197 * to @fit)
Andre Przywara29053e92017-04-26 01:32:36 +0100198 * @image_info: will be filled with information about the loaded image
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200199 * If the FIT node does not contain a "load" (address) property,
200 * the image gets loaded to the address pointed to by the
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500201 * load_addr member in this struct, if load_addr is not 0
Andre Przywara29053e92017-04-26 01:32:36 +0100202 *
Mikhail Kshevetskiyaa17b392025-06-10 12:56:31 +0300203 * Return: 0 on success, -EBADSLT if this image is not the correct phase
Simon Glassc811ef92025-01-26 11:43:17 -0700204 * (for CONFIG_BOOTMETH_VBE_SIMPLE_FW), or another negative error number on
205 * other error.
Andre Przywara29053e92017-04-26 01:32:36 +0100206 */
Sean Anderson7d8d6132023-11-08 11:48:40 -0500207static int load_simple_fit(struct spl_load_info *info, ulong fit_offset,
Simon Glass205ff7b2023-09-26 08:14:33 -0600208 const struct spl_fit_info *ctx, int node,
209 struct spl_image_info *image_info)
Andre Przywara29053e92017-04-26 01:32:36 +0100210{
Michal Simekf707b5a2018-07-18 14:33:15 +0200211 int offset;
Andre Przywara29053e92017-04-26 01:32:36 +0100212 size_t length;
York Sunadf99fa2017-08-15 11:14:44 -0700213 int len;
York Sun25d65f12017-09-15 08:21:13 -0700214 ulong size;
Simon Glass2192e982021-03-07 17:35:14 -0700215 ulong load_addr;
216 void *load_ptr;
Andre Przywara29053e92017-04-26 01:32:36 +0100217 void *src;
218 ulong overhead;
York Suna6945fe2017-08-15 11:14:43 -0700219 uint8_t image_comp = -1, type = -1;
York Sunadf99fa2017-08-15 11:14:44 -0700220 const void *data;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600221 const void *fit = ctx->fit;
Peng Fan8876c7e2017-12-05 13:20:59 +0800222 bool external_data = false;
York Suna6945fe2017-08-15 11:14:43 -0700223
Simon Glassc811ef92025-01-26 11:43:17 -0700224 log_debug("starting\n");
225 if (CONFIG_IS_ENABLED(BOOTMETH_VBE) &&
226 xpl_get_phase(info) != IH_PHASE_NONE) {
227 enum image_phase_t phase;
228 int ret;
229
230 ret = fit_image_get_phase(fit, node, &phase);
231 /* if the image is for any phase, let's use it */
232 if (ret == -ENOENT || phase == xpl_get_phase(info)) {
233 log_debug("found\n");
234 } else if (ret < 0) {
235 log_debug("err=%d\n", ret);
236 return ret;
237 } else {
238 log_debug("- phase mismatch, skipping this image\n");
Mikhail Kshevetskiyaa17b392025-06-10 12:56:31 +0300239 return -EBADSLT;
Simon Glassc811ef92025-01-26 11:43:17 -0700240 }
241 }
242
Michal Simek1aab1142020-09-09 14:41:56 +0200243 if (IS_ENABLED(CONFIG_SPL_FPGA) ||
Manoj Sai2b2e6282023-09-18 00:56:25 +0530244 (IS_ENABLED(CONFIG_SPL_OS_BOOT) && spl_decompression_enabled())) {
Marek Vasut72bc5d52018-06-01 23:19:29 +0200245 if (fit_image_get_type(fit, node, &type))
246 puts("Cannot get image type.\n");
247 else
248 debug("%s ", genimg_get_type_name(type));
249 }
250
Manoj Sai2b2e6282023-09-18 00:56:25 +0530251 if (spl_decompression_enabled()) {
Klaus H. Sorensen4a9a0422019-12-11 11:03:33 +0000252 fit_image_get_comp(fit, node, &image_comp);
253 debug("%s ", genimg_get_comp_name(image_comp));
York Suna6945fe2017-08-15 11:14:43 -0700254 }
Andre Przywara29053e92017-04-26 01:32:36 +0100255
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500256 if (fit_image_get_load(fit, node, &load_addr)) {
257 if (!image_info->load_addr) {
258 printf("Can't load %s: No load address and no buffer\n",
259 fit_get_name(fit, node, NULL));
260 return -ENOBUFS;
261 }
Andre Przywara29053e92017-04-26 01:32:36 +0100262 load_addr = image_info->load_addr;
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500263 }
Andre Przywara29053e92017-04-26 01:32:36 +0100264
Peng Fan8876c7e2017-12-05 13:20:59 +0800265 if (!fit_image_get_data_position(fit, node, &offset)) {
266 external_data = true;
267 } else if (!fit_image_get_data_offset(fit, node, &offset)) {
Simon Glass97c434b2024-12-19 11:29:02 -0700268 log_debug("read offset %x = offset from fit %lx\n",
269 offset, (ulong)offset + ctx->ext_data_offset);
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600270 offset += ctx->ext_data_offset;
Peng Fan8876c7e2017-12-05 13:20:59 +0800271 external_data = true;
272 }
273
274 if (external_data) {
Simon Glass97c434b2024-12-19 11:29:02 -0700275 ulong read_offset;
Simon Glass2192e982021-03-07 17:35:14 -0700276 void *src_ptr;
277
Peng Fan8876c7e2017-12-05 13:20:59 +0800278 /* External data */
York Sunadf99fa2017-08-15 11:14:44 -0700279 if (fit_image_get_data_size(fit, node, &len))
280 return -ENOENT;
Andre Przywara29053e92017-04-26 01:32:36 +0100281
Nishanth Menone4cb6452021-10-19 12:32:29 -0500282 /* Dont bother to copy 0 byte data, but warn, though */
283 if (!len) {
284 log_warning("%s: Skip load '%s': image size is 0!\n",
285 __func__, fit_get_name(fit, node, NULL));
286 return 0;
287 }
288
Manoj Saia8560992023-09-18 00:56:26 +0530289 if (spl_decompression_enabled() &&
290 (image_comp == IH_COMP_GZIP || image_comp == IH_COMP_LZMA))
Manoj Sai2b2e6282023-09-18 00:56:25 +0530291 src_ptr = map_sysmem(ALIGN(CONFIG_SYS_LOAD_ADDR, ARCH_DMA_MINALIGN), len);
292 else
293 src_ptr = map_sysmem(ALIGN(load_addr, ARCH_DMA_MINALIGN), len);
York Sunadf99fa2017-08-15 11:14:44 -0700294 length = len;
295
296 overhead = get_aligned_image_overhead(info, offset);
Sean Anderson7d8d6132023-11-08 11:48:40 -0500297 size = get_aligned_image_size(info, length, offset);
Simon Glass97c434b2024-12-19 11:29:02 -0700298 read_offset = fit_offset + get_aligned_image_offset(info,
299 offset);
300 log_debug("reading from offset %x / %lx size %lx to %p: ",
301 offset, read_offset, size, src_ptr);
York Sunadf99fa2017-08-15 11:14:44 -0700302
Simon Glassc811ef92025-01-26 11:43:17 -0700303 if (info->read(info, read_offset, size, src_ptr) < length)
York Sunadf99fa2017-08-15 11:14:44 -0700304 return -EIO;
305
Simon Glass2192e982021-03-07 17:35:14 -0700306 debug("External data: dst=%p, offset=%x, size=%lx\n",
307 src_ptr, offset, (unsigned long)length);
308 src = src_ptr + overhead;
York Sunadf99fa2017-08-15 11:14:44 -0700309 } else {
310 /* Embedded data */
Simon Glassd3ca4012025-01-10 17:00:12 -0700311 if (fit_image_get_emb_data(fit, node, &data, &length)) {
York Sunadf99fa2017-08-15 11:14:44 -0700312 puts("Cannot get image data/size\n");
313 return -ENOENT;
314 }
315 debug("Embedded data: dst=%lx, size=%lx\n", load_addr,
316 (unsigned long)length);
Simon Glass2192e982021-03-07 17:35:14 -0700317 src = (void *)data; /* cast away const */
York Sunadf99fa2017-08-15 11:14:44 -0700318 }
Andre Przywara29053e92017-04-26 01:32:36 +0100319
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600320 if (CONFIG_IS_ENABLED(FIT_SIGNATURE)) {
321 printf("## Checking hash(es) for Image %s ... ",
322 fit_get_name(fit, node, NULL));
Simon Glasse10e2ee2021-11-12 12:28:10 -0700323 if (!fit_image_verify_with_data(fit, node, gd_fdt_blob(), src,
324 length))
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600325 return -EPERM;
326 puts("OK\n");
327 }
Ben Whitten54a91192018-06-07 11:37:27 +0100328
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600329 if (CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS))
Lokesh Vutlab36dd3e2021-06-11 11:45:05 +0300330 board_fit_image_post_process(fit, node, &src, &length);
Andre Przywara29053e92017-04-26 01:32:36 +0100331
Simon Glass2192e982021-03-07 17:35:14 -0700332 load_ptr = map_sysmem(load_addr, length);
Michal Simekf354c3f2018-07-24 15:05:00 +0200333 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
York Sun25d65f12017-09-15 08:21:13 -0700334 size = length;
Simon Glass2192e982021-03-07 17:35:14 -0700335 if (gunzip(load_ptr, CONFIG_SYS_BOOTM_LEN, src, &size)) {
York Suna6945fe2017-08-15 11:14:43 -0700336 puts("Uncompressing error\n");
337 return -EIO;
338 }
York Sun25d65f12017-09-15 08:21:13 -0700339 length = size;
Manoj Saia8560992023-09-18 00:56:26 +0530340 } else if (IS_ENABLED(CONFIG_SPL_LZMA) && image_comp == IH_COMP_LZMA) {
341 size = CONFIG_SYS_BOOTM_LEN;
342 ulong loadEnd;
343
344 if (image_decomp(IH_COMP_LZMA, CONFIG_SYS_LOAD_ADDR, 0, 0,
345 load_ptr, src, length, size, &loadEnd)) {
346 puts("Uncompressing error\n");
347 return -EIO;
348 }
349 length = loadEnd - CONFIG_SYS_LOAD_ADDR;
York Suna6945fe2017-08-15 11:14:43 -0700350 } else {
Simon Glass2192e982021-03-07 17:35:14 -0700351 memcpy(load_ptr, src, length);
York Suna6945fe2017-08-15 11:14:43 -0700352 }
Andre Przywara29053e92017-04-26 01:32:36 +0100353
354 if (image_info) {
Michal Simek9e64a552020-09-03 11:24:28 +0200355 ulong entry_point;
356
Andre Przywara29053e92017-04-26 01:32:36 +0100357 image_info->load_addr = load_addr;
358 image_info->size = length;
Michal Simek9e64a552020-09-03 11:24:28 +0200359
360 if (!fit_image_get_entry(fit, node, &entry_point))
361 image_info->entry_point = entry_point;
362 else
363 image_info->entry_point = FDT_ERROR;
Andre Przywara29053e92017-04-26 01:32:36 +0100364 }
Simon Glass97c434b2024-12-19 11:29:02 -0700365 log_debug("- done loading\n");
Andre Przywara29053e92017-04-26 01:32:36 +0100366
Simon Glass9b5bfba2024-08-07 16:47:33 -0600367 upl_add_image(fit, node, load_addr, length);
368
Andre Przywara29053e92017-04-26 01:32:36 +0100369 return 0;
370}
371
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600372static bool os_takes_devicetree(uint8_t os)
373{
374 switch (os) {
375 case IH_OS_U_BOOT:
376 return true;
377 case IH_OS_LINUX:
Randolph263e2ae2023-10-12 14:35:07 +0800378 return IS_ENABLED(CONFIG_SPL_OS_BOOT) ||
379 IS_ENABLED(CONFIG_SPL_OPENSBI);
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600380 default:
381 return false;
382 }
383}
384
Marek Vasuta0494272023-09-21 20:44:16 +0200385__weak int board_spl_fit_append_fdt_skip(const char *name)
386{
387 return 0; /* Do not skip */
388}
389
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200390static int spl_fit_append_fdt(struct spl_image_info *spl_image,
Sean Anderson7d8d6132023-11-08 11:48:40 -0500391 struct spl_load_info *info, ulong offset,
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600392 const struct spl_fit_info *ctx)
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200393{
394 struct spl_image_info image_info;
Michal Simekbf703df2019-10-22 16:39:11 +0200395 int node, ret = 0, index = 0;
Lukas Auer80afee72019-08-21 21:14:42 +0200396
397 /*
398 * Use the address following the image as target address for the
Marek Vasutc27cbe82020-10-19 23:40:26 +0200399 * device tree.
Lukas Auer80afee72019-08-21 21:14:42 +0200400 */
Sam Edwards02d708d2025-03-15 15:18:13 -0700401 image_info.load_addr = ALIGN(spl_image->load_addr + spl_image->size, 8);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200402
403 /* Figure out which device tree the board wants to use */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600404 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index++);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200405 if (node < 0) {
Sean Anderson5ff77722023-10-14 16:47:55 -0400406 size_t size;
407
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200408 debug("%s: cannot find FDT node\n", __func__);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200409
Lukas Auer80afee72019-08-21 21:14:42 +0200410 /*
411 * U-Boot did not find a device tree inside the FIT image. Use
412 * the U-Boot device tree instead.
413 */
Sean Anderson5ff77722023-10-14 16:47:55 -0400414 if (!gd->fdt_blob)
Lukas Auer80afee72019-08-21 21:14:42 +0200415 return node;
Sean Anderson5ff77722023-10-14 16:47:55 -0400416
417 /*
418 * Make the load-address of the FDT available for the SPL
419 * framework
420 */
421 size = fdt_totalsize(gd->fdt_blob);
422 spl_image->fdt_addr = map_sysmem(image_info.load_addr, size);
423 memcpy(spl_image->fdt_addr, gd->fdt_blob, size);
Lukas Auer80afee72019-08-21 21:14:42 +0200424 } else {
Sean Anderson7d8d6132023-11-08 11:48:40 -0500425 ret = load_simple_fit(info, offset, ctx, node, &image_info);
Lukas Auer80afee72019-08-21 21:14:42 +0200426 if (ret < 0)
427 return ret;
Sean Anderson5ff77722023-10-14 16:47:55 -0400428
429 spl_image->fdt_addr = phys_to_virt(image_info.load_addr);
Lukas Auer80afee72019-08-21 21:14:42 +0200430 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200431
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600432 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
433 return 0;
434
Tom Rinid259d9c2023-01-10 11:19:28 -0500435#if CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200436 void *tmpbuffer = NULL;
437
Michal Simekbf703df2019-10-22 16:39:11 +0200438 for (; ; index++) {
Marek Vasuta0494272023-09-21 20:44:16 +0200439 const char *str;
440
441 ret = spl_fit_get_image_name(ctx, FIT_FDT_PROP, index, &str);
442 if (ret == -E2BIG) {
Michal Simekbf703df2019-10-22 16:39:11 +0200443 debug("%s: No additional FDT node\n", __func__);
Marek Vasuta0494272023-09-21 20:44:16 +0200444 ret = 0;
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200445 break;
Marek Vasuta0494272023-09-21 20:44:16 +0200446 } else if (ret < 0) {
447 continue;
448 }
449
450 ret = board_spl_fit_append_fdt_skip(str);
451 if (ret)
452 continue;
453
454 node = fdt_subnode_offset(ctx->fit, ctx->images_node, str);
455 if (node < 0) {
Jean-Jacques Hiblotc6ab6a12019-10-22 16:39:14 +0200456 debug("%s: unable to find FDT node %d\n",
457 __func__, index);
458 continue;
Michal Simekbf703df2019-10-22 16:39:11 +0200459 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200460
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200461 if (!tmpbuffer) {
462 /*
463 * allocate memory to store the DT overlay
464 * before it is applied. It may not be used
465 * depending on how the overlay is stored, so
466 * don't fail yet if the allocation failed.
467 */
Stefan Herbrechtsmeier66249102022-06-14 16:12:00 +0200468 size_t size = CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ;
469
470 tmpbuffer = malloc_cache_aligned(size);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200471 if (!tmpbuffer)
472 debug("%s: unable to allocate space for overlays\n",
473 __func__);
474 }
475 image_info.load_addr = (ulong)tmpbuffer;
Sean Anderson7d8d6132023-11-08 11:48:40 -0500476 ret = load_simple_fit(info, offset, ctx, node,
Simon Glass205ff7b2023-09-26 08:14:33 -0600477 &image_info);
Mikhail Kshevetskiyaa17b392025-06-10 12:56:31 +0300478 if (ret == -EBADSLT)
Simon Glassc811ef92025-01-26 11:43:17 -0700479 continue;
480 else if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200481 break;
Michal Simekbf703df2019-10-22 16:39:11 +0200482
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200483 /* Make room in FDT for changes from the overlay */
484 ret = fdt_increase_size(spl_image->fdt_addr,
485 image_info.size);
486 if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200487 break;
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200488
Michal Simekbf703df2019-10-22 16:39:11 +0200489 ret = fdt_overlay_apply_verbose(spl_image->fdt_addr,
490 (void *)image_info.load_addr);
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200491 if (ret) {
492 pr_err("failed to apply DT overlay %s\n",
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600493 fit_get_name(ctx->fit, node, NULL));
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200494 break;
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200495 }
Michal Simekbf703df2019-10-22 16:39:11 +0200496
497 debug("%s: DT overlay %s applied\n", __func__,
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600498 fit_get_name(ctx->fit, node, NULL));
Michal Simekbf703df2019-10-22 16:39:11 +0200499 }
Heinrich Schuchardt939a9612020-04-20 12:44:01 +0200500 free(tmpbuffer);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200501 if (ret)
502 return ret;
Tom Rinid259d9c2023-01-10 11:19:28 -0500503#endif
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200504 /* Try to make space, so we can inject details on the loadables */
505 ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192);
506 if (ret < 0)
507 return ret;
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200508
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200509 return ret;
510}
511
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600512static int spl_fit_record_loadable(const struct spl_fit_info *ctx, int index,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200513 void *blob, struct spl_image_info *image)
514{
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100515 int ret = 0;
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +0200516 const char *name;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100517 int node;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200518
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600519 ret = spl_fit_get_image_name(ctx, "loadables", index, &name);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200520 if (ret < 0)
521 return ret;
522
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600523 node = spl_fit_get_image_node(ctx, "loadables", index);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200524
525 ret = fdt_record_loadable(blob, index, name, image->load_addr,
Simon Glassdff90432023-09-26 08:14:35 -0600526 image->size, image->entry_point,
527 fdt_getprop(ctx->fit, node, FIT_TYPE_PROP, NULL),
528 fdt_getprop(ctx->fit, node, FIT_OS_PROP, NULL),
529 fdt_getprop(ctx->fit, node, FIT_ARCH_PROP, NULL));
530
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200531 return ret;
532}
533
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500534static int spl_fit_image_is_fpga(const void *fit, int node)
535{
536 const char *type;
537
538 if (!IS_ENABLED(CONFIG_SPL_FPGA))
539 return 0;
540
541 type = fdt_getprop(fit, node, FIT_TYPE_PROP, NULL);
542 if (!type)
543 return 0;
544
545 return !strcmp(type, "fpga");
546}
547
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100548static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os)
549{
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600550 if (!CONFIG_IS_ENABLED(FIT_IMAGE_TINY) || CONFIG_IS_ENABLED(OS_BOOT))
551 return fit_image_get_os(fit, noffset, os);
Samuel Hollande646f512020-10-21 21:12:13 -0500552
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600553 const char *name = fdt_getprop(fit, noffset, FIT_OS_PROP, NULL);
Samuel Hollande646f512020-10-21 21:12:13 -0500554 if (!name)
555 return -ENOENT;
556
557 /*
558 * We don't care what the type of the image actually is,
559 * only whether or not it is U-Boot. This saves some
560 * space by omitting the large table of OS types.
561 */
562 if (!strcmp(name, "u-boot"))
563 *os = IH_OS_U_BOOT;
564 else
565 *os = IH_OS_INVALID;
566
567 return 0;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100568}
569
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500570/*
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500571 * The purpose of the FIT load buffer is to provide a memory location that is
572 * independent of the load address of any FIT component.
573 */
574static void *spl_get_fit_load_buffer(size_t size)
575{
576 void *buf;
577
Stefan Herbrechtsmeier66249102022-06-14 16:12:00 +0200578 buf = malloc_cache_aligned(size);
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500579 if (!buf) {
580 pr_err("Could not get FIT buffer of %lu bytes\n", (ulong)size);
Leo Yu-Chi Liangecb7eaa2024-03-13 14:53:15 +0800581
582 if (IS_ENABLED(CONFIG_SPL_SYS_MALLOC))
583 pr_err("\tcheck CONFIG_SPL_SYS_MALLOC_SIZE\n");
584 else
585 pr_err("\tcheck CONFIG_SPL_SYS_MALLOC_F_LEN\n");
586
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500587 buf = spl_get_load_buffer(0, size);
588 }
589 return buf;
590}
591
Heiko Schocher7d7c3672021-08-17 08:17:18 +0200592__weak void *board_spl_fit_buffer_addr(ulong fit_size, int sectors, int bl_len)
593{
594 return spl_get_fit_load_buffer(sectors * bl_len);
595}
596
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500597/*
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500598 * Weak default function to allow customizing SPL fit loading for load-only
599 * use cases by allowing to skip the parsing/processing of the FIT contents
600 * (so that this can be done separately in a more customized fashion)
601 */
602__weak bool spl_load_simple_fit_skip_processing(void)
603{
604 return false;
605}
606
Heiko Schocher67e8f5d2021-08-06 06:44:26 +0200607/*
608 * Weak default function to allow fixes after fit header
609 * is loaded.
610 */
611__weak void *spl_load_simple_fit_fix_load(const void *fit)
612{
613 return (void *)fit;
614}
615
Alexandru Gagniuc69a99662021-03-29 12:05:13 -0500616static void warn_deprecated(const char *msg)
617{
618 printf("DEPRECATED: %s\n", msg);
Heinrich Schuchardt01e836c2024-06-18 08:32:30 +0200619 printf("\tSee https://fitspec.osfw.foundation/\n");
Alexandru Gagniuc69a99662021-03-29 12:05:13 -0500620}
621
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500622static int spl_fit_upload_fpga(struct spl_fit_info *ctx, int node,
623 struct spl_image_info *fpga_image)
624{
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500625 const char *compatible;
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500626 int ret;
Oleksandr Suvorov4ff163d2022-07-22 17:16:07 +0300627 int devnum = 0;
628 int flags = 0;
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500629
630 debug("FPGA bitstream at: %x, size: %x\n",
631 (u32)fpga_image->load_addr, fpga_image->size);
632
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500633 compatible = fdt_getprop(ctx->fit, node, "compatible", NULL);
Oleksandr Suvorov2fddf3e2022-07-22 17:16:09 +0300634 if (!compatible) {
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500635 warn_deprecated("'fpga' image without 'compatible' property");
Oleksandr Suvorov2fddf3e2022-07-22 17:16:09 +0300636 } else {
637 if (CONFIG_IS_ENABLED(FPGA_LOAD_SECURE))
638 flags = fpga_compatible2flag(devnum, compatible);
639 if (strcmp(compatible, "u-boot,fpga-legacy"))
640 debug("Ignoring compatible = %s property\n",
641 compatible);
642 }
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500643
Oleksandr Suvorov4ff163d2022-07-22 17:16:07 +0300644 ret = fpga_load(devnum, (void *)fpga_image->load_addr,
645 fpga_image->size, BIT_FULL, flags);
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500646 if (ret) {
647 printf("%s: Cannot load the image to the FPGA\n", __func__);
648 return ret;
649 }
650
651 puts("FPGA image loaded from FIT\n");
652
653 return 0;
654}
655
656static int spl_fit_load_fpga(struct spl_fit_info *ctx,
Sean Anderson7d8d6132023-11-08 11:48:40 -0500657 struct spl_load_info *info, ulong offset)
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500658{
659 int node, ret;
660
661 struct spl_image_info fpga_image = {
662 .load_addr = 0,
663 };
664
665 node = spl_fit_get_image_node(ctx, "fpga", 0);
666 if (node < 0)
667 return node;
668
Alexandru Gagniuc69a99662021-03-29 12:05:13 -0500669 warn_deprecated("'fpga' property in config node. Use 'loadables'");
670
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500671 /* Load the image and set up the fpga_image structure */
Sean Anderson7d8d6132023-11-08 11:48:40 -0500672 ret = load_simple_fit(info, offset, ctx, node, &fpga_image);
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500673 if (ret) {
674 printf("%s: Cannot load the FPGA: %i\n", __func__, ret);
675 return ret;
676 }
677
678 return spl_fit_upload_fpga(ctx, node, &fpga_image);
679}
680
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600681static int spl_simple_fit_read(struct spl_fit_info *ctx,
Sean Anderson7d8d6132023-11-08 11:48:40 -0500682 struct spl_load_info *info, ulong offset,
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600683 const void *fit_header)
Simon Glassa6131a22016-02-22 22:55:56 -0700684{
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600685 unsigned long count, size;
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600686 void *buf;
Simon Glassa6131a22016-02-22 22:55:56 -0700687
688 /*
York Suna058b8a2017-08-15 11:14:45 -0700689 * For FIT with external data, figure out where the external images
690 * start. This is the base for the data-offset properties in each
691 * image.
Simon Glassa6131a22016-02-22 22:55:56 -0700692 */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600693 size = ALIGN(fdt_totalsize(fit_header), 4);
Ye Li9d5b0f42018-11-17 09:10:25 +0000694 size = board_spl_fit_size_align(size);
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600695 ctx->ext_data_offset = ALIGN(size, 4);
Simon Glassa6131a22016-02-22 22:55:56 -0700696
697 /*
698 * So far we only have one block of data from the FIT. Read the entire
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500699 * thing, including that first block.
York Suna058b8a2017-08-15 11:14:45 -0700700 *
701 * For FIT with data embedded, data is loaded as part of FIT image.
702 * For FIT with external data, data is not loaded in this step.
Simon Glassa6131a22016-02-22 22:55:56 -0700703 */
Sean Anderson7d8d6132023-11-08 11:48:40 -0500704 size = get_aligned_image_size(info, size, 0);
705 buf = board_spl_fit_buffer_addr(size, size, 1);
Ye Li9d5b0f42018-11-17 09:10:25 +0000706
Sean Anderson7d8d6132023-11-08 11:48:40 -0500707 count = info->read(info, offset, size, buf);
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600708 ctx->fit = buf;
Sean Anderson7d8d6132023-11-08 11:48:40 -0500709 debug("fit read offset %lx, size=%lu, dst=%p, count=%lu\n",
710 offset, size, buf, count);
Simon Glassa6131a22016-02-22 22:55:56 -0700711
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600712 return (count == 0) ? -EIO : 0;
713}
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500714
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600715static int spl_simple_fit_parse(struct spl_fit_info *ctx)
716{
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600717 /* Find the correct subnode under "/configurations" */
718 ctx->conf_node = fit_find_config_node(ctx->fit);
719 if (ctx->conf_node < 0)
720 return -EINVAL;
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100721
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600722 if (IS_ENABLED(CONFIG_SPL_FIT_SIGNATURE)) {
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100723 printf("## Checking hash(es) for config %s ... ",
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600724 fit_get_name(ctx->fit, ctx->conf_node, NULL));
725 if (fit_config_verify(ctx->fit, ctx->conf_node))
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100726 return -EPERM;
727 puts("OK\n");
728 }
729
Andre Przywara525e9c92017-04-26 01:32:34 +0100730 /* find the node holding the images information */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600731 ctx->images_node = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
732 if (ctx->images_node < 0) {
733 debug("%s: Cannot find /images node: %d\n", __func__,
734 ctx->images_node);
735 return -EINVAL;
Simon Glassa6131a22016-02-22 22:55:56 -0700736 }
Marek Vasut33dd00e2018-05-12 22:25:28 +0200737
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600738 return 0;
739}
740
741int spl_load_simple_fit(struct spl_image_info *spl_image,
Sean Anderson7d8d6132023-11-08 11:48:40 -0500742 struct spl_load_info *info, ulong offset, void *fit)
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600743{
744 struct spl_image_info image_info;
745 struct spl_fit_info ctx;
746 int node = -1;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600747 int ret;
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600748 int index = 0;
749 int firmware_node;
750
Sean Anderson7d8d6132023-11-08 11:48:40 -0500751 ret = spl_simple_fit_read(&ctx, info, offset, fit);
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600752 if (ret < 0)
753 return ret;
754
755 /* skip further processing if requested to enable load-only use cases */
756 if (spl_load_simple_fit_skip_processing())
757 return 0;
758
Heiko Schocher67e8f5d2021-08-06 06:44:26 +0200759 ctx.fit = spl_load_simple_fit_fix_load(ctx.fit);
760
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600761 ret = spl_simple_fit_parse(&ctx);
762 if (ret < 0)
763 return ret;
764
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500765 if (IS_ENABLED(CONFIG_SPL_FPGA))
Sean Anderson7d8d6132023-11-08 11:48:40 -0500766 spl_fit_load_fpga(&ctx, info, offset);
Andre Przywara525e9c92017-04-26 01:32:34 +0100767
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200768 /*
769 * Find the U-Boot image using the following search order:
770 * - start at 'firmware' (e.g. an ARM Trusted Firmware)
771 * - fall back 'kernel' (e.g. a Falcon-mode OS boot
772 * - fall back to using the first 'loadables' entry
773 */
774 if (node < 0)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600775 node = spl_fit_get_image_node(&ctx, FIT_FIRMWARE_PROP, 0);
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600776
777 if (node < 0 && IS_ENABLED(CONFIG_SPL_OS_BOOT))
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600778 node = spl_fit_get_image_node(&ctx, FIT_KERNEL_PROP, 0);
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600779
Andre Przywara525e9c92017-04-26 01:32:34 +0100780 if (node < 0) {
781 debug("could not find firmware image, trying loadables...\n");
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600782 node = spl_fit_get_image_node(&ctx, "loadables", 0);
Andre Przywarae7c58562017-04-26 01:32:37 +0100783 /*
784 * If we pick the U-Boot image from "loadables", start at
785 * the second image when later loading additional images.
786 */
787 index = 1;
Andre Przywara525e9c92017-04-26 01:32:34 +0100788 }
Simon Glassa6131a22016-02-22 22:55:56 -0700789 if (node < 0) {
Andre Przywara525e9c92017-04-26 01:32:34 +0100790 debug("%s: Cannot find u-boot image node: %d\n",
791 __func__, node);
Simon Glassa6131a22016-02-22 22:55:56 -0700792 return -1;
793 }
794
Andre Przywara29053e92017-04-26 01:32:36 +0100795 /* Load the image and set up the spl_image structure */
Sean Anderson7d8d6132023-11-08 11:48:40 -0500796 ret = load_simple_fit(info, offset, &ctx, node, spl_image);
Andre Przywara29053e92017-04-26 01:32:36 +0100797 if (ret)
798 return ret;
Daniel Allredcf839bd2016-06-27 09:19:21 -0500799
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200800 /*
801 * For backward compatibility, we treat the first node that is
802 * as a U-Boot image, if no OS-type has been declared.
803 */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600804 if (!spl_fit_image_get_os(ctx.fit, node, &spl_image->os))
York Suna058b8a2017-08-15 11:14:45 -0700805 debug("Image OS is %s\n", genimg_get_os_name(spl_image->os));
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600806 else if (!IS_ENABLED(CONFIG_SPL_OS_BOOT))
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200807 spl_image->os = IH_OS_U_BOOT;
Simon Glassa6131a22016-02-22 22:55:56 -0700808
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200809 /*
810 * Booting a next-stage U-Boot may require us to append the FDT.
811 * We allow this to fail, as the U-Boot image might embed its FDT.
812 */
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600813 if (os_takes_devicetree(spl_image->os)) {
Sean Anderson7d8d6132023-11-08 11:48:40 -0500814 ret = spl_fit_append_fdt(spl_image, info, offset, &ctx);
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600815 if (ret < 0 && spl_image->os != IH_OS_U_BOOT)
Dario Binacchifaf8d142020-05-27 13:56:19 +0200816 return ret;
817 }
Andre Przywarae7c58562017-04-26 01:32:37 +0100818
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200819 firmware_node = node;
Andre Przywarae7c58562017-04-26 01:32:37 +0100820 /* Now check if there are more images for us to load */
821 for (; ; index++) {
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200822 uint8_t os_type = IH_OS_INVALID;
823
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600824 node = spl_fit_get_image_node(&ctx, "loadables", index);
Andre Przywarae7c58562017-04-26 01:32:37 +0100825 if (node < 0)
826 break;
827
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200828 /*
829 * if the firmware is also a loadable, skip it because
830 * it already has been loaded. This is typically the case with
831 * u-boot.img generated by mkimage.
832 */
833 if (firmware_node == node)
834 continue;
835
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500836 image_info.load_addr = 0;
Sean Anderson7d8d6132023-11-08 11:48:40 -0500837 ret = load_simple_fit(info, offset, &ctx, node, &image_info);
Mikhail Kshevetskiyaa17b392025-06-10 12:56:31 +0300838 if (ret < 0 && ret != -EBADSLT) {
Philippe Reynesba87da42020-11-24 16:15:05 +0100839 printf("%s: can't load image loadables index %d (ret = %d)\n",
840 __func__, index, ret);
841 return ret;
842 }
Andre Przywarae7c58562017-04-26 01:32:37 +0100843
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500844 if (spl_fit_image_is_fpga(ctx.fit, node))
845 spl_fit_upload_fpga(&ctx, node, &image_info);
846
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600847 if (!spl_fit_image_get_os(ctx.fit, node, &os_type))
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200848 debug("Loadable is %s\n", genimg_get_os_name(os_type));
849
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600850 if (os_takes_devicetree(os_type)) {
Sean Anderson7d8d6132023-11-08 11:48:40 -0500851 spl_fit_append_fdt(&image_info, info, offset, &ctx);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200852 spl_image->fdt_addr = image_info.fdt_addr;
853 }
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200854
Andre Przywarae7c58562017-04-26 01:32:37 +0100855 /*
856 * If the "firmware" image did not provide an entry point,
857 * use the first valid entry point from the loadables.
858 */
859 if (spl_image->entry_point == FDT_ERROR &&
860 image_info.entry_point != FDT_ERROR)
861 spl_image->entry_point = image_info.entry_point;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200862
863 /* Record our loadables into the FDT */
Simon Glassd4315522025-01-26 11:43:28 -0700864 if (!CONFIG_IS_ENABLED(FIT_IMAGE_TINY) &&
865 xpl_get_fdt_update(info) && spl_image->fdt_addr)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600866 spl_fit_record_loadable(&ctx, index,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200867 spl_image->fdt_addr,
868 &image_info);
Andre Przywarae7c58562017-04-26 01:32:37 +0100869 }
870
871 /*
Jesse Taube93ee5c82023-08-24 21:59:48 -0400872 * If a platform does not provide CONFIG_SYS_UBOOT_START, U-Boot's
Andre Przywarae7c58562017-04-26 01:32:37 +0100873 * Makefile will set it to 0 and it will end up as the entry point
874 * here. What it actually means is: use the load address.
875 */
876 if (spl_image->entry_point == FDT_ERROR || spl_image->entry_point == 0)
877 spl_image->entry_point = spl_image->load_addr;
878
Ye Li9d5b0f42018-11-17 09:10:25 +0000879 spl_image->flags |= SPL_FIT_FOUND;
Simon Glass9b5bfba2024-08-07 16:47:33 -0600880 upl_set_fit_info(map_to_sysmem(ctx.fit), ctx.conf_node,
881 spl_image->entry_point);
Ye Li9d5b0f42018-11-17 09:10:25 +0000882
Andre Przywarae7c58562017-04-26 01:32:37 +0100883 return 0;
Simon Glassa6131a22016-02-22 22:55:56 -0700884}
Simon Glassc0bd55e2023-09-26 08:14:34 -0600885
886/* Parse and load full fitImage in SPL */
887int spl_load_fit_image(struct spl_image_info *spl_image,
888 const struct legacy_img_hdr *header)
889{
890 struct bootm_headers images;
891 const char *fit_uname_config = NULL;
Simon Glass9a9097f2024-12-19 11:29:00 -0700892 ulong fdt_hack;
Simon Glassc0bd55e2023-09-26 08:14:34 -0600893 const char *uname;
894 ulong fw_data = 0, dt_data = 0, img_data = 0;
895 ulong fw_len = 0, dt_len = 0, img_len = 0;
896 int idx, conf_noffset;
897 int ret;
898
899#ifdef CONFIG_SPL_FIT_SIGNATURE
900 images.verify = 1;
901#endif
Sean Anderson5ff77722023-10-14 16:47:55 -0400902 ret = fit_image_load(&images, virt_to_phys((void *)header),
Simon Glassc0bd55e2023-09-26 08:14:34 -0600903 NULL, &fit_uname_config,
904 IH_ARCH_DEFAULT, IH_TYPE_STANDALONE, -1,
905 FIT_LOAD_OPTIONAL, &fw_data, &fw_len);
906 if (ret >= 0) {
907 printf("DEPRECATED: 'standalone = ' property.");
908 printf("Please use either 'firmware =' or 'kernel ='\n");
909 } else {
Sean Anderson5ff77722023-10-14 16:47:55 -0400910 ret = fit_image_load(&images, virt_to_phys((void *)header),
911 NULL, &fit_uname_config, IH_ARCH_DEFAULT,
Simon Glassc0bd55e2023-09-26 08:14:34 -0600912 IH_TYPE_FIRMWARE, -1, FIT_LOAD_OPTIONAL,
913 &fw_data, &fw_len);
914 }
915
916 if (ret < 0) {
Sean Anderson5ff77722023-10-14 16:47:55 -0400917 ret = fit_image_load(&images, virt_to_phys((void *)header),
918 NULL, &fit_uname_config, IH_ARCH_DEFAULT,
Simon Glassc0bd55e2023-09-26 08:14:34 -0600919 IH_TYPE_KERNEL, -1, FIT_LOAD_OPTIONAL,
920 &fw_data, &fw_len);
921 }
922
923 if (ret < 0)
924 return ret;
925
926 spl_image->size = fw_len;
Simon Glassc0bd55e2023-09-26 08:14:34 -0600927 spl_image->load_addr = fw_data;
Sean Andersone99b2cd2023-10-14 16:47:39 -0400928 if (fit_image_get_entry(header, ret, &spl_image->entry_point))
929 spl_image->entry_point = fw_data;
Simon Glassc0bd55e2023-09-26 08:14:34 -0600930 if (fit_image_get_os(header, ret, &spl_image->os))
931 spl_image->os = IH_OS_INVALID;
932 spl_image->name = genimg_get_os_name(spl_image->os);
933
Simon Glass8bc93262024-09-29 19:49:55 -0600934 debug(PHASE_PROMPT "payload image: %32s load addr: 0x%lx size: %d\n",
Simon Glassc0bd55e2023-09-26 08:14:34 -0600935 spl_image->name, spl_image->load_addr, spl_image->size);
936
937#ifdef CONFIG_SPL_FIT_SIGNATURE
938 images.verify = 1;
939#endif
Sean Anderson5ff77722023-10-14 16:47:55 -0400940 ret = fit_image_load(&images, virt_to_phys((void *)header), NULL,
941 &fit_uname_config, IH_ARCH_DEFAULT, IH_TYPE_FLATDT,
942 -1, FIT_LOAD_OPTIONAL, &dt_data, &dt_len);
Simon Glassc0bd55e2023-09-26 08:14:34 -0600943 if (ret >= 0) {
944 spl_image->fdt_addr = (void *)dt_data;
945
946 if (spl_image->os == IH_OS_U_BOOT) {
947 /* HACK: U-Boot expects FDT at a specific address */
948 fdt_hack = spl_image->load_addr + spl_image->size;
949 fdt_hack = (fdt_hack + 3) & ~3;
950 debug("Relocating FDT to %p\n", spl_image->fdt_addr);
951 memcpy((void *)fdt_hack, spl_image->fdt_addr, dt_len);
952 }
953 }
954
955 conf_noffset = fit_conf_get_node((const void *)header,
956 fit_uname_config);
957 if (conf_noffset < 0)
958 return 0;
959
960 for (idx = 0;
961 uname = fdt_stringlist_get((const void *)header, conf_noffset,
962 FIT_LOADABLE_PROP, idx,
963 NULL), uname;
964 idx++) {
965#ifdef CONFIG_SPL_FIT_SIGNATURE
966 images.verify = 1;
967#endif
968 ret = fit_image_load(&images, (ulong)header,
969 &uname, &fit_uname_config,
970 IH_ARCH_DEFAULT, IH_TYPE_LOADABLE, -1,
971 FIT_LOAD_OPTIONAL_NON_ZERO,
972 &img_data, &img_len);
973 if (ret < 0)
974 return ret;
975 }
Simon Glass32668282024-08-07 16:47:32 -0600976 spl_image->flags |= SPL_FIT_FOUND;
Simon Glassc0bd55e2023-09-26 08:14:34 -0600977
Simon Glass9b5bfba2024-08-07 16:47:33 -0600978 upl_set_fit_info(map_to_sysmem(header), conf_noffset,
979 spl_image->entry_point);
980
Simon Glassc0bd55e2023-09-26 08:14:34 -0600981 return 0;
982}