blob: 3160f573bfbd49b089064086aef005800e1b14f7 [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++) {
89 str = strchr(str, '\0') + 1;
90 if (!str || (str - name >= len)) {
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020091 found = false;
92 break;
Andre Przywara1e329b62017-04-26 01:32:33 +010093 }
Simon Glassa6131a22016-02-22 22:55:56 -070094 }
95
Simon Glass458b66a2020-11-05 06:32:05 -070096 if (!found && CONFIG_IS_ENABLED(SYSINFO) && !sysinfo_get(&sysinfo)) {
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020097 int rc;
98 /*
Simon Glass458b66a2020-11-05 06:32:05 -070099 * no string in the property for this index. Check if the
100 * sysinfo-level code can supply one.
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200101 */
Sean Anderson6ccf10a2021-04-20 10:50:56 -0400102 rc = sysinfo_detect(sysinfo);
103 if (rc)
104 return rc;
105
Simon Glass458b66a2020-11-05 06:32:05 -0700106 rc = sysinfo_get_fit_loadable(sysinfo, index - i - 1, type,
107 &str);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200108 if (rc && rc != -ENOENT)
109 return rc;
110
111 if (!rc) {
112 /*
Simon Glass458b66a2020-11-05 06:32:05 -0700113 * The sysinfo provided a name for a loadable.
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200114 * Try to match it against the description properties
115 * first. If no matching node is found, use it as a
116 * node name.
117 */
118 int node;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600119 int images = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200120
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600121 node = find_node_from_desc(ctx->fit, images, str);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200122 if (node > 0)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600123 str = fdt_get_name(ctx->fit, node, NULL);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200124
125 found = true;
126 }
127 }
128
129 if (!found) {
130 debug("no string for index %d\n", index);
131 return -E2BIG;
132 }
133
134 *outname = str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200135 return 0;
136}
137
138/**
139 * spl_fit_get_image_node(): By using the matching configuration subnode,
140 * retrieve the name of an image, specified by a property name and an index
141 * into that.
142 * @fit: Pointer to the FDT blob.
143 * @images: Offset of the /images subnode.
144 * @type: Name of the property within the configuration subnode.
145 * @index: Index into the list of strings in this property.
146 *
147 * Return: the node offset of the respective image node or a negative
148 * error number.
149 */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600150static int spl_fit_get_image_node(const struct spl_fit_info *ctx,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200151 const char *type, int index)
152{
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +0200153 const char *str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200154 int err;
155 int node;
156
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600157 err = spl_fit_get_image_name(ctx, type, index, &str);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200158 if (err)
159 return err;
160
Andre Przywara1e329b62017-04-26 01:32:33 +0100161 debug("%s: '%s'\n", type, str);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200162
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600163 node = fdt_subnode_offset(ctx->fit, ctx->images_node, str);
Andre Przywara1e329b62017-04-26 01:32:33 +0100164 if (node < 0) {
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200165 pr_err("cannot find image node '%s': %d\n", str, node);
Andre Przywara1e329b62017-04-26 01:32:33 +0100166 return -EINVAL;
Simon Glassa6131a22016-02-22 22:55:56 -0700167 }
Simon Glassa6131a22016-02-22 22:55:56 -0700168
Andre Przywara525e9c92017-04-26 01:32:34 +0100169 return node;
Simon Glassa6131a22016-02-22 22:55:56 -0700170}
171
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530172static int get_aligned_image_offset(struct spl_load_info *info, int offset)
173{
Sean Anderson35f15fe2023-11-08 11:48:43 -0500174 return ALIGN_DOWN(offset, spl_get_bl_len(info));
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530175}
176
177static int get_aligned_image_overhead(struct spl_load_info *info, int offset)
178{
Sean Anderson35f15fe2023-11-08 11:48:43 -0500179 return offset & (spl_get_bl_len(info) - 1);
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530180}
181
182static int get_aligned_image_size(struct spl_load_info *info, int data_size,
183 int offset)
184{
Lokesh Vutlaf0531a62016-07-19 14:56:14 +0530185 data_size = data_size + get_aligned_image_overhead(info, offset);
186
Sean Anderson35f15fe2023-11-08 11:48:43 -0500187 return ALIGN(data_size, spl_get_bl_len(info));
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530188}
189
Andre Przywara29053e92017-04-26 01:32:36 +0100190/**
Simon Glass205ff7b2023-09-26 08:14:33 -0600191 * load_simple_fit(): load the image described in a certain FIT node
Andre Przywara29053e92017-04-26 01:32:36 +0100192 * @info: points to information about the device to load data from
193 * @sector: the start sector of the FIT image on the device
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600194 * @ctx: points to the FIT context structure
Andre Przywara29053e92017-04-26 01:32:36 +0100195 * @node: offset of the DT node describing the image to load (relative
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200196 * to @fit)
Andre Przywara29053e92017-04-26 01:32:36 +0100197 * @image_info: will be filled with information about the loaded image
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200198 * If the FIT node does not contain a "load" (address) property,
199 * the image gets loaded to the address pointed to by the
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500200 * load_addr member in this struct, if load_addr is not 0
Andre Przywara29053e92017-04-26 01:32:36 +0100201 *
202 * Return: 0 on success or a negative error number.
203 */
Sean Anderson7d8d6132023-11-08 11:48:40 -0500204static int load_simple_fit(struct spl_load_info *info, ulong fit_offset,
Simon Glass205ff7b2023-09-26 08:14:33 -0600205 const struct spl_fit_info *ctx, int node,
206 struct spl_image_info *image_info)
Andre Przywara29053e92017-04-26 01:32:36 +0100207{
Michal Simekf707b5a2018-07-18 14:33:15 +0200208 int offset;
Andre Przywara29053e92017-04-26 01:32:36 +0100209 size_t length;
York Sunadf99fa2017-08-15 11:14:44 -0700210 int len;
York Sun25d65f12017-09-15 08:21:13 -0700211 ulong size;
Simon Glass2192e982021-03-07 17:35:14 -0700212 ulong load_addr;
213 void *load_ptr;
Andre Przywara29053e92017-04-26 01:32:36 +0100214 void *src;
215 ulong overhead;
York Suna6945fe2017-08-15 11:14:43 -0700216 uint8_t image_comp = -1, type = -1;
York Sunadf99fa2017-08-15 11:14:44 -0700217 const void *data;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600218 const void *fit = ctx->fit;
Peng Fan8876c7e2017-12-05 13:20:59 +0800219 bool external_data = false;
York Suna6945fe2017-08-15 11:14:43 -0700220
Michal Simek1aab1142020-09-09 14:41:56 +0200221 if (IS_ENABLED(CONFIG_SPL_FPGA) ||
Manoj Sai2b2e6282023-09-18 00:56:25 +0530222 (IS_ENABLED(CONFIG_SPL_OS_BOOT) && spl_decompression_enabled())) {
Marek Vasut72bc5d52018-06-01 23:19:29 +0200223 if (fit_image_get_type(fit, node, &type))
224 puts("Cannot get image type.\n");
225 else
226 debug("%s ", genimg_get_type_name(type));
227 }
228
Manoj Sai2b2e6282023-09-18 00:56:25 +0530229 if (spl_decompression_enabled()) {
Klaus H. Sorensen4a9a0422019-12-11 11:03:33 +0000230 fit_image_get_comp(fit, node, &image_comp);
231 debug("%s ", genimg_get_comp_name(image_comp));
York Suna6945fe2017-08-15 11:14:43 -0700232 }
Andre Przywara29053e92017-04-26 01:32:36 +0100233
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500234 if (fit_image_get_load(fit, node, &load_addr)) {
235 if (!image_info->load_addr) {
236 printf("Can't load %s: No load address and no buffer\n",
237 fit_get_name(fit, node, NULL));
238 return -ENOBUFS;
239 }
Andre Przywara29053e92017-04-26 01:32:36 +0100240 load_addr = image_info->load_addr;
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500241 }
Andre Przywara29053e92017-04-26 01:32:36 +0100242
Peng Fan8876c7e2017-12-05 13:20:59 +0800243 if (!fit_image_get_data_position(fit, node, &offset)) {
244 external_data = true;
245 } else if (!fit_image_get_data_offset(fit, node, &offset)) {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600246 offset += ctx->ext_data_offset;
Peng Fan8876c7e2017-12-05 13:20:59 +0800247 external_data = true;
248 }
249
250 if (external_data) {
Simon Glass2192e982021-03-07 17:35:14 -0700251 void *src_ptr;
252
Peng Fan8876c7e2017-12-05 13:20:59 +0800253 /* External data */
York Sunadf99fa2017-08-15 11:14:44 -0700254 if (fit_image_get_data_size(fit, node, &len))
255 return -ENOENT;
Andre Przywara29053e92017-04-26 01:32:36 +0100256
Nishanth Menone4cb6452021-10-19 12:32:29 -0500257 /* Dont bother to copy 0 byte data, but warn, though */
258 if (!len) {
259 log_warning("%s: Skip load '%s': image size is 0!\n",
260 __func__, fit_get_name(fit, node, NULL));
261 return 0;
262 }
263
Manoj Saia8560992023-09-18 00:56:26 +0530264 if (spl_decompression_enabled() &&
265 (image_comp == IH_COMP_GZIP || image_comp == IH_COMP_LZMA))
Manoj Sai2b2e6282023-09-18 00:56:25 +0530266 src_ptr = map_sysmem(ALIGN(CONFIG_SYS_LOAD_ADDR, ARCH_DMA_MINALIGN), len);
267 else
268 src_ptr = map_sysmem(ALIGN(load_addr, ARCH_DMA_MINALIGN), len);
York Sunadf99fa2017-08-15 11:14:44 -0700269 length = len;
270
271 overhead = get_aligned_image_overhead(info, offset);
Sean Anderson7d8d6132023-11-08 11:48:40 -0500272 size = get_aligned_image_size(info, length, offset);
York Sunadf99fa2017-08-15 11:14:44 -0700273
Michal Simekf707b5a2018-07-18 14:33:15 +0200274 if (info->read(info,
Sean Anderson7d8d6132023-11-08 11:48:40 -0500275 fit_offset +
276 get_aligned_image_offset(info, offset), size,
Sean Andersonb27c5f82023-11-08 11:48:41 -0500277 src_ptr) < length)
York Sunadf99fa2017-08-15 11:14:44 -0700278 return -EIO;
279
Simon Glass2192e982021-03-07 17:35:14 -0700280 debug("External data: dst=%p, offset=%x, size=%lx\n",
281 src_ptr, offset, (unsigned long)length);
282 src = src_ptr + overhead;
York Sunadf99fa2017-08-15 11:14:44 -0700283 } else {
284 /* Embedded data */
285 if (fit_image_get_data(fit, node, &data, &length)) {
286 puts("Cannot get image data/size\n");
287 return -ENOENT;
288 }
289 debug("Embedded data: dst=%lx, size=%lx\n", load_addr,
290 (unsigned long)length);
Simon Glass2192e982021-03-07 17:35:14 -0700291 src = (void *)data; /* cast away const */
York Sunadf99fa2017-08-15 11:14:44 -0700292 }
Andre Przywara29053e92017-04-26 01:32:36 +0100293
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600294 if (CONFIG_IS_ENABLED(FIT_SIGNATURE)) {
295 printf("## Checking hash(es) for Image %s ... ",
296 fit_get_name(fit, node, NULL));
Simon Glasse10e2ee2021-11-12 12:28:10 -0700297 if (!fit_image_verify_with_data(fit, node, gd_fdt_blob(), src,
298 length))
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600299 return -EPERM;
300 puts("OK\n");
301 }
Ben Whitten54a91192018-06-07 11:37:27 +0100302
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600303 if (CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS))
Lokesh Vutlab36dd3e2021-06-11 11:45:05 +0300304 board_fit_image_post_process(fit, node, &src, &length);
Andre Przywara29053e92017-04-26 01:32:36 +0100305
Simon Glass2192e982021-03-07 17:35:14 -0700306 load_ptr = map_sysmem(load_addr, length);
Michal Simekf354c3f2018-07-24 15:05:00 +0200307 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
York Sun25d65f12017-09-15 08:21:13 -0700308 size = length;
Simon Glass2192e982021-03-07 17:35:14 -0700309 if (gunzip(load_ptr, CONFIG_SYS_BOOTM_LEN, src, &size)) {
York Suna6945fe2017-08-15 11:14:43 -0700310 puts("Uncompressing error\n");
311 return -EIO;
312 }
York Sun25d65f12017-09-15 08:21:13 -0700313 length = size;
Manoj Saia8560992023-09-18 00:56:26 +0530314 } else if (IS_ENABLED(CONFIG_SPL_LZMA) && image_comp == IH_COMP_LZMA) {
315 size = CONFIG_SYS_BOOTM_LEN;
316 ulong loadEnd;
317
318 if (image_decomp(IH_COMP_LZMA, CONFIG_SYS_LOAD_ADDR, 0, 0,
319 load_ptr, src, length, size, &loadEnd)) {
320 puts("Uncompressing error\n");
321 return -EIO;
322 }
323 length = loadEnd - CONFIG_SYS_LOAD_ADDR;
York Suna6945fe2017-08-15 11:14:43 -0700324 } else {
Simon Glass2192e982021-03-07 17:35:14 -0700325 memcpy(load_ptr, src, length);
York Suna6945fe2017-08-15 11:14:43 -0700326 }
Andre Przywara29053e92017-04-26 01:32:36 +0100327
328 if (image_info) {
Michal Simek9e64a552020-09-03 11:24:28 +0200329 ulong entry_point;
330
Andre Przywara29053e92017-04-26 01:32:36 +0100331 image_info->load_addr = load_addr;
332 image_info->size = length;
Michal Simek9e64a552020-09-03 11:24:28 +0200333
334 if (!fit_image_get_entry(fit, node, &entry_point))
335 image_info->entry_point = entry_point;
336 else
337 image_info->entry_point = FDT_ERROR;
Andre Przywara29053e92017-04-26 01:32:36 +0100338 }
339
Simon Glass9b5bfba2024-08-07 16:47:33 -0600340 upl_add_image(fit, node, load_addr, length);
341
Andre Przywara29053e92017-04-26 01:32:36 +0100342 return 0;
343}
344
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600345static bool os_takes_devicetree(uint8_t os)
346{
347 switch (os) {
348 case IH_OS_U_BOOT:
349 return true;
350 case IH_OS_LINUX:
Randolph263e2ae2023-10-12 14:35:07 +0800351 return IS_ENABLED(CONFIG_SPL_OS_BOOT) ||
352 IS_ENABLED(CONFIG_SPL_OPENSBI);
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600353 default:
354 return false;
355 }
356}
357
Marek Vasuta0494272023-09-21 20:44:16 +0200358__weak int board_spl_fit_append_fdt_skip(const char *name)
359{
360 return 0; /* Do not skip */
361}
362
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200363static int spl_fit_append_fdt(struct spl_image_info *spl_image,
Sean Anderson7d8d6132023-11-08 11:48:40 -0500364 struct spl_load_info *info, ulong offset,
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600365 const struct spl_fit_info *ctx)
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200366{
367 struct spl_image_info image_info;
Michal Simekbf703df2019-10-22 16:39:11 +0200368 int node, ret = 0, index = 0;
Lukas Auer80afee72019-08-21 21:14:42 +0200369
370 /*
371 * Use the address following the image as target address for the
Marek Vasutc27cbe82020-10-19 23:40:26 +0200372 * device tree.
Lukas Auer80afee72019-08-21 21:14:42 +0200373 */
Marek Vasutc27cbe82020-10-19 23:40:26 +0200374 image_info.load_addr = spl_image->load_addr + spl_image->size;
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200375
376 /* Figure out which device tree the board wants to use */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600377 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index++);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200378 if (node < 0) {
Sean Anderson5ff77722023-10-14 16:47:55 -0400379 size_t size;
380
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200381 debug("%s: cannot find FDT node\n", __func__);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200382
Lukas Auer80afee72019-08-21 21:14:42 +0200383 /*
384 * U-Boot did not find a device tree inside the FIT image. Use
385 * the U-Boot device tree instead.
386 */
Sean Anderson5ff77722023-10-14 16:47:55 -0400387 if (!gd->fdt_blob)
Lukas Auer80afee72019-08-21 21:14:42 +0200388 return node;
Sean Anderson5ff77722023-10-14 16:47:55 -0400389
390 /*
391 * Make the load-address of the FDT available for the SPL
392 * framework
393 */
394 size = fdt_totalsize(gd->fdt_blob);
395 spl_image->fdt_addr = map_sysmem(image_info.load_addr, size);
396 memcpy(spl_image->fdt_addr, gd->fdt_blob, size);
Lukas Auer80afee72019-08-21 21:14:42 +0200397 } else {
Sean Anderson7d8d6132023-11-08 11:48:40 -0500398 ret = load_simple_fit(info, offset, ctx, node, &image_info);
Lukas Auer80afee72019-08-21 21:14:42 +0200399 if (ret < 0)
400 return ret;
Sean Anderson5ff77722023-10-14 16:47:55 -0400401
402 spl_image->fdt_addr = phys_to_virt(image_info.load_addr);
Lukas Auer80afee72019-08-21 21:14:42 +0200403 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200404
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600405 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
406 return 0;
407
Tom Rinid259d9c2023-01-10 11:19:28 -0500408#if CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200409 void *tmpbuffer = NULL;
410
Michal Simekbf703df2019-10-22 16:39:11 +0200411 for (; ; index++) {
Marek Vasuta0494272023-09-21 20:44:16 +0200412 const char *str;
413
414 ret = spl_fit_get_image_name(ctx, FIT_FDT_PROP, index, &str);
415 if (ret == -E2BIG) {
Michal Simekbf703df2019-10-22 16:39:11 +0200416 debug("%s: No additional FDT node\n", __func__);
Marek Vasuta0494272023-09-21 20:44:16 +0200417 ret = 0;
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200418 break;
Marek Vasuta0494272023-09-21 20:44:16 +0200419 } else if (ret < 0) {
420 continue;
421 }
422
423 ret = board_spl_fit_append_fdt_skip(str);
424 if (ret)
425 continue;
426
427 node = fdt_subnode_offset(ctx->fit, ctx->images_node, str);
428 if (node < 0) {
Jean-Jacques Hiblotc6ab6a12019-10-22 16:39:14 +0200429 debug("%s: unable to find FDT node %d\n",
430 __func__, index);
431 continue;
Michal Simekbf703df2019-10-22 16:39:11 +0200432 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200433
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200434 if (!tmpbuffer) {
435 /*
436 * allocate memory to store the DT overlay
437 * before it is applied. It may not be used
438 * depending on how the overlay is stored, so
439 * don't fail yet if the allocation failed.
440 */
Stefan Herbrechtsmeier66249102022-06-14 16:12:00 +0200441 size_t size = CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ;
442
443 tmpbuffer = malloc_cache_aligned(size);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200444 if (!tmpbuffer)
445 debug("%s: unable to allocate space for overlays\n",
446 __func__);
447 }
448 image_info.load_addr = (ulong)tmpbuffer;
Sean Anderson7d8d6132023-11-08 11:48:40 -0500449 ret = load_simple_fit(info, offset, ctx, node,
Simon Glass205ff7b2023-09-26 08:14:33 -0600450 &image_info);
Michal Simekbf703df2019-10-22 16:39:11 +0200451 if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200452 break;
Michal Simekbf703df2019-10-22 16:39:11 +0200453
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200454 /* Make room in FDT for changes from the overlay */
455 ret = fdt_increase_size(spl_image->fdt_addr,
456 image_info.size);
457 if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200458 break;
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200459
Michal Simekbf703df2019-10-22 16:39:11 +0200460 ret = fdt_overlay_apply_verbose(spl_image->fdt_addr,
461 (void *)image_info.load_addr);
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200462 if (ret) {
463 pr_err("failed to apply DT overlay %s\n",
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600464 fit_get_name(ctx->fit, node, NULL));
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200465 break;
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200466 }
Michal Simekbf703df2019-10-22 16:39:11 +0200467
468 debug("%s: DT overlay %s applied\n", __func__,
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600469 fit_get_name(ctx->fit, node, NULL));
Michal Simekbf703df2019-10-22 16:39:11 +0200470 }
Heinrich Schuchardt939a9612020-04-20 12:44:01 +0200471 free(tmpbuffer);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200472 if (ret)
473 return ret;
Tom Rinid259d9c2023-01-10 11:19:28 -0500474#endif
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200475 /* Try to make space, so we can inject details on the loadables */
476 ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192);
477 if (ret < 0)
478 return ret;
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200479
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200480 return ret;
481}
482
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600483static int spl_fit_record_loadable(const struct spl_fit_info *ctx, int index,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200484 void *blob, struct spl_image_info *image)
485{
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100486 int ret = 0;
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +0200487 const char *name;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100488 int node;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200489
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600490 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
491 return 0;
492
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600493 ret = spl_fit_get_image_name(ctx, "loadables", index, &name);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200494 if (ret < 0)
495 return ret;
496
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600497 node = spl_fit_get_image_node(ctx, "loadables", index);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200498
499 ret = fdt_record_loadable(blob, index, name, image->load_addr,
Simon Glassdff90432023-09-26 08:14:35 -0600500 image->size, image->entry_point,
501 fdt_getprop(ctx->fit, node, FIT_TYPE_PROP, NULL),
502 fdt_getprop(ctx->fit, node, FIT_OS_PROP, NULL),
503 fdt_getprop(ctx->fit, node, FIT_ARCH_PROP, NULL));
504
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200505 return ret;
506}
507
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500508static int spl_fit_image_is_fpga(const void *fit, int node)
509{
510 const char *type;
511
512 if (!IS_ENABLED(CONFIG_SPL_FPGA))
513 return 0;
514
515 type = fdt_getprop(fit, node, FIT_TYPE_PROP, NULL);
516 if (!type)
517 return 0;
518
519 return !strcmp(type, "fpga");
520}
521
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100522static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os)
523{
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600524 if (!CONFIG_IS_ENABLED(FIT_IMAGE_TINY) || CONFIG_IS_ENABLED(OS_BOOT))
525 return fit_image_get_os(fit, noffset, os);
Samuel Hollande646f512020-10-21 21:12:13 -0500526
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600527 const char *name = fdt_getprop(fit, noffset, FIT_OS_PROP, NULL);
Samuel Hollande646f512020-10-21 21:12:13 -0500528 if (!name)
529 return -ENOENT;
530
531 /*
532 * We don't care what the type of the image actually is,
533 * only whether or not it is U-Boot. This saves some
534 * space by omitting the large table of OS types.
535 */
536 if (!strcmp(name, "u-boot"))
537 *os = IH_OS_U_BOOT;
538 else
539 *os = IH_OS_INVALID;
540
541 return 0;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100542}
543
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500544/*
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500545 * The purpose of the FIT load buffer is to provide a memory location that is
546 * independent of the load address of any FIT component.
547 */
548static void *spl_get_fit_load_buffer(size_t size)
549{
550 void *buf;
551
Stefan Herbrechtsmeier66249102022-06-14 16:12:00 +0200552 buf = malloc_cache_aligned(size);
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500553 if (!buf) {
554 pr_err("Could not get FIT buffer of %lu bytes\n", (ulong)size);
Leo Yu-Chi Liangecb7eaa2024-03-13 14:53:15 +0800555
556 if (IS_ENABLED(CONFIG_SPL_SYS_MALLOC))
557 pr_err("\tcheck CONFIG_SPL_SYS_MALLOC_SIZE\n");
558 else
559 pr_err("\tcheck CONFIG_SPL_SYS_MALLOC_F_LEN\n");
560
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500561 buf = spl_get_load_buffer(0, size);
562 }
563 return buf;
564}
565
Heiko Schocher7d7c3672021-08-17 08:17:18 +0200566__weak void *board_spl_fit_buffer_addr(ulong fit_size, int sectors, int bl_len)
567{
568 return spl_get_fit_load_buffer(sectors * bl_len);
569}
570
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500571/*
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500572 * Weak default function to allow customizing SPL fit loading for load-only
573 * use cases by allowing to skip the parsing/processing of the FIT contents
574 * (so that this can be done separately in a more customized fashion)
575 */
576__weak bool spl_load_simple_fit_skip_processing(void)
577{
578 return false;
579}
580
Heiko Schocher67e8f5d2021-08-06 06:44:26 +0200581/*
582 * Weak default function to allow fixes after fit header
583 * is loaded.
584 */
585__weak void *spl_load_simple_fit_fix_load(const void *fit)
586{
587 return (void *)fit;
588}
589
Alexandru Gagniuc69a99662021-03-29 12:05:13 -0500590static void warn_deprecated(const char *msg)
591{
592 printf("DEPRECATED: %s\n", msg);
Heinrich Schuchardt01e836c2024-06-18 08:32:30 +0200593 printf("\tSee https://fitspec.osfw.foundation/\n");
Alexandru Gagniuc69a99662021-03-29 12:05:13 -0500594}
595
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500596static int spl_fit_upload_fpga(struct spl_fit_info *ctx, int node,
597 struct spl_image_info *fpga_image)
598{
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500599 const char *compatible;
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500600 int ret;
Oleksandr Suvorov4ff163d2022-07-22 17:16:07 +0300601 int devnum = 0;
602 int flags = 0;
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500603
604 debug("FPGA bitstream at: %x, size: %x\n",
605 (u32)fpga_image->load_addr, fpga_image->size);
606
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500607 compatible = fdt_getprop(ctx->fit, node, "compatible", NULL);
Oleksandr Suvorov2fddf3e2022-07-22 17:16:09 +0300608 if (!compatible) {
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500609 warn_deprecated("'fpga' image without 'compatible' property");
Oleksandr Suvorov2fddf3e2022-07-22 17:16:09 +0300610 } else {
611 if (CONFIG_IS_ENABLED(FPGA_LOAD_SECURE))
612 flags = fpga_compatible2flag(devnum, compatible);
613 if (strcmp(compatible, "u-boot,fpga-legacy"))
614 debug("Ignoring compatible = %s property\n",
615 compatible);
616 }
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500617
Oleksandr Suvorov4ff163d2022-07-22 17:16:07 +0300618 ret = fpga_load(devnum, (void *)fpga_image->load_addr,
619 fpga_image->size, BIT_FULL, flags);
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500620 if (ret) {
621 printf("%s: Cannot load the image to the FPGA\n", __func__);
622 return ret;
623 }
624
625 puts("FPGA image loaded from FIT\n");
626
627 return 0;
628}
629
630static int spl_fit_load_fpga(struct spl_fit_info *ctx,
Sean Anderson7d8d6132023-11-08 11:48:40 -0500631 struct spl_load_info *info, ulong offset)
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500632{
633 int node, ret;
634
635 struct spl_image_info fpga_image = {
636 .load_addr = 0,
637 };
638
639 node = spl_fit_get_image_node(ctx, "fpga", 0);
640 if (node < 0)
641 return node;
642
Alexandru Gagniuc69a99662021-03-29 12:05:13 -0500643 warn_deprecated("'fpga' property in config node. Use 'loadables'");
644
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500645 /* Load the image and set up the fpga_image structure */
Sean Anderson7d8d6132023-11-08 11:48:40 -0500646 ret = load_simple_fit(info, offset, ctx, node, &fpga_image);
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500647 if (ret) {
648 printf("%s: Cannot load the FPGA: %i\n", __func__, ret);
649 return ret;
650 }
651
652 return spl_fit_upload_fpga(ctx, node, &fpga_image);
653}
654
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600655static int spl_simple_fit_read(struct spl_fit_info *ctx,
Sean Anderson7d8d6132023-11-08 11:48:40 -0500656 struct spl_load_info *info, ulong offset,
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600657 const void *fit_header)
Simon Glassa6131a22016-02-22 22:55:56 -0700658{
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600659 unsigned long count, size;
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600660 void *buf;
Simon Glassa6131a22016-02-22 22:55:56 -0700661
662 /*
York Suna058b8a2017-08-15 11:14:45 -0700663 * For FIT with external data, figure out where the external images
664 * start. This is the base for the data-offset properties in each
665 * image.
Simon Glassa6131a22016-02-22 22:55:56 -0700666 */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600667 size = ALIGN(fdt_totalsize(fit_header), 4);
Ye Li9d5b0f42018-11-17 09:10:25 +0000668 size = board_spl_fit_size_align(size);
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600669 ctx->ext_data_offset = ALIGN(size, 4);
Simon Glassa6131a22016-02-22 22:55:56 -0700670
671 /*
672 * So far we only have one block of data from the FIT. Read the entire
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500673 * thing, including that first block.
York Suna058b8a2017-08-15 11:14:45 -0700674 *
675 * For FIT with data embedded, data is loaded as part of FIT image.
676 * For FIT with external data, data is not loaded in this step.
Simon Glassa6131a22016-02-22 22:55:56 -0700677 */
Sean Anderson7d8d6132023-11-08 11:48:40 -0500678 size = get_aligned_image_size(info, size, 0);
679 buf = board_spl_fit_buffer_addr(size, size, 1);
Ye Li9d5b0f42018-11-17 09:10:25 +0000680
Sean Anderson7d8d6132023-11-08 11:48:40 -0500681 count = info->read(info, offset, size, buf);
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600682 ctx->fit = buf;
Sean Anderson7d8d6132023-11-08 11:48:40 -0500683 debug("fit read offset %lx, size=%lu, dst=%p, count=%lu\n",
684 offset, size, buf, count);
Simon Glassa6131a22016-02-22 22:55:56 -0700685
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600686 return (count == 0) ? -EIO : 0;
687}
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500688
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600689static int spl_simple_fit_parse(struct spl_fit_info *ctx)
690{
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600691 /* Find the correct subnode under "/configurations" */
692 ctx->conf_node = fit_find_config_node(ctx->fit);
693 if (ctx->conf_node < 0)
694 return -EINVAL;
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100695
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600696 if (IS_ENABLED(CONFIG_SPL_FIT_SIGNATURE)) {
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100697 printf("## Checking hash(es) for config %s ... ",
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600698 fit_get_name(ctx->fit, ctx->conf_node, NULL));
699 if (fit_config_verify(ctx->fit, ctx->conf_node))
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100700 return -EPERM;
701 puts("OK\n");
702 }
703
Andre Przywara525e9c92017-04-26 01:32:34 +0100704 /* find the node holding the images information */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600705 ctx->images_node = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
706 if (ctx->images_node < 0) {
707 debug("%s: Cannot find /images node: %d\n", __func__,
708 ctx->images_node);
709 return -EINVAL;
Simon Glassa6131a22016-02-22 22:55:56 -0700710 }
Marek Vasut33dd00e2018-05-12 22:25:28 +0200711
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600712 return 0;
713}
714
715int spl_load_simple_fit(struct spl_image_info *spl_image,
Sean Anderson7d8d6132023-11-08 11:48:40 -0500716 struct spl_load_info *info, ulong offset, void *fit)
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600717{
718 struct spl_image_info image_info;
719 struct spl_fit_info ctx;
720 int node = -1;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600721 int ret;
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600722 int index = 0;
723 int firmware_node;
724
Sean Anderson7d8d6132023-11-08 11:48:40 -0500725 ret = spl_simple_fit_read(&ctx, info, offset, fit);
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600726 if (ret < 0)
727 return ret;
728
729 /* skip further processing if requested to enable load-only use cases */
730 if (spl_load_simple_fit_skip_processing())
731 return 0;
732
Heiko Schocher67e8f5d2021-08-06 06:44:26 +0200733 ctx.fit = spl_load_simple_fit_fix_load(ctx.fit);
734
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600735 ret = spl_simple_fit_parse(&ctx);
736 if (ret < 0)
737 return ret;
738
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500739 if (IS_ENABLED(CONFIG_SPL_FPGA))
Sean Anderson7d8d6132023-11-08 11:48:40 -0500740 spl_fit_load_fpga(&ctx, info, offset);
Andre Przywara525e9c92017-04-26 01:32:34 +0100741
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200742 /*
743 * Find the U-Boot image using the following search order:
744 * - start at 'firmware' (e.g. an ARM Trusted Firmware)
745 * - fall back 'kernel' (e.g. a Falcon-mode OS boot
746 * - fall back to using the first 'loadables' entry
747 */
748 if (node < 0)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600749 node = spl_fit_get_image_node(&ctx, FIT_FIRMWARE_PROP, 0);
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600750
751 if (node < 0 && IS_ENABLED(CONFIG_SPL_OS_BOOT))
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600752 node = spl_fit_get_image_node(&ctx, FIT_KERNEL_PROP, 0);
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600753
Andre Przywara525e9c92017-04-26 01:32:34 +0100754 if (node < 0) {
755 debug("could not find firmware image, trying loadables...\n");
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600756 node = spl_fit_get_image_node(&ctx, "loadables", 0);
Andre Przywarae7c58562017-04-26 01:32:37 +0100757 /*
758 * If we pick the U-Boot image from "loadables", start at
759 * the second image when later loading additional images.
760 */
761 index = 1;
Andre Przywara525e9c92017-04-26 01:32:34 +0100762 }
Simon Glassa6131a22016-02-22 22:55:56 -0700763 if (node < 0) {
Andre Przywara525e9c92017-04-26 01:32:34 +0100764 debug("%s: Cannot find u-boot image node: %d\n",
765 __func__, node);
Simon Glassa6131a22016-02-22 22:55:56 -0700766 return -1;
767 }
768
Andre Przywara29053e92017-04-26 01:32:36 +0100769 /* Load the image and set up the spl_image structure */
Sean Anderson7d8d6132023-11-08 11:48:40 -0500770 ret = load_simple_fit(info, offset, &ctx, node, spl_image);
Andre Przywara29053e92017-04-26 01:32:36 +0100771 if (ret)
772 return ret;
Daniel Allredcf839bd2016-06-27 09:19:21 -0500773
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200774 /*
775 * For backward compatibility, we treat the first node that is
776 * as a U-Boot image, if no OS-type has been declared.
777 */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600778 if (!spl_fit_image_get_os(ctx.fit, node, &spl_image->os))
York Suna058b8a2017-08-15 11:14:45 -0700779 debug("Image OS is %s\n", genimg_get_os_name(spl_image->os));
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600780 else if (!IS_ENABLED(CONFIG_SPL_OS_BOOT))
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200781 spl_image->os = IH_OS_U_BOOT;
Simon Glassa6131a22016-02-22 22:55:56 -0700782
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200783 /*
784 * Booting a next-stage U-Boot may require us to append the FDT.
785 * We allow this to fail, as the U-Boot image might embed its FDT.
786 */
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600787 if (os_takes_devicetree(spl_image->os)) {
Sean Anderson7d8d6132023-11-08 11:48:40 -0500788 ret = spl_fit_append_fdt(spl_image, info, offset, &ctx);
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600789 if (ret < 0 && spl_image->os != IH_OS_U_BOOT)
Dario Binacchifaf8d142020-05-27 13:56:19 +0200790 return ret;
791 }
Andre Przywarae7c58562017-04-26 01:32:37 +0100792
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200793 firmware_node = node;
Andre Przywarae7c58562017-04-26 01:32:37 +0100794 /* Now check if there are more images for us to load */
795 for (; ; index++) {
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200796 uint8_t os_type = IH_OS_INVALID;
797
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600798 node = spl_fit_get_image_node(&ctx, "loadables", index);
Andre Przywarae7c58562017-04-26 01:32:37 +0100799 if (node < 0)
800 break;
801
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200802 /*
803 * if the firmware is also a loadable, skip it because
804 * it already has been loaded. This is typically the case with
805 * u-boot.img generated by mkimage.
806 */
807 if (firmware_node == node)
808 continue;
809
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500810 image_info.load_addr = 0;
Sean Anderson7d8d6132023-11-08 11:48:40 -0500811 ret = load_simple_fit(info, offset, &ctx, node, &image_info);
Philippe Reynesba87da42020-11-24 16:15:05 +0100812 if (ret < 0) {
813 printf("%s: can't load image loadables index %d (ret = %d)\n",
814 __func__, index, ret);
815 return ret;
816 }
Andre Przywarae7c58562017-04-26 01:32:37 +0100817
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500818 if (spl_fit_image_is_fpga(ctx.fit, node))
819 spl_fit_upload_fpga(&ctx, node, &image_info);
820
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600821 if (!spl_fit_image_get_os(ctx.fit, node, &os_type))
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200822 debug("Loadable is %s\n", genimg_get_os_name(os_type));
823
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600824 if (os_takes_devicetree(os_type)) {
Sean Anderson7d8d6132023-11-08 11:48:40 -0500825 spl_fit_append_fdt(&image_info, info, offset, &ctx);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200826 spl_image->fdt_addr = image_info.fdt_addr;
827 }
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200828
Andre Przywarae7c58562017-04-26 01:32:37 +0100829 /*
830 * If the "firmware" image did not provide an entry point,
831 * use the first valid entry point from the loadables.
832 */
833 if (spl_image->entry_point == FDT_ERROR &&
834 image_info.entry_point != FDT_ERROR)
835 spl_image->entry_point = image_info.entry_point;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200836
837 /* Record our loadables into the FDT */
838 if (spl_image->fdt_addr)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600839 spl_fit_record_loadable(&ctx, index,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200840 spl_image->fdt_addr,
841 &image_info);
Andre Przywarae7c58562017-04-26 01:32:37 +0100842 }
843
844 /*
Jesse Taube93ee5c82023-08-24 21:59:48 -0400845 * If a platform does not provide CONFIG_SYS_UBOOT_START, U-Boot's
Andre Przywarae7c58562017-04-26 01:32:37 +0100846 * Makefile will set it to 0 and it will end up as the entry point
847 * here. What it actually means is: use the load address.
848 */
849 if (spl_image->entry_point == FDT_ERROR || spl_image->entry_point == 0)
850 spl_image->entry_point = spl_image->load_addr;
851
Ye Li9d5b0f42018-11-17 09:10:25 +0000852 spl_image->flags |= SPL_FIT_FOUND;
Simon Glass9b5bfba2024-08-07 16:47:33 -0600853 upl_set_fit_info(map_to_sysmem(ctx.fit), ctx.conf_node,
854 spl_image->entry_point);
Ye Li9d5b0f42018-11-17 09:10:25 +0000855
Andre Przywarae7c58562017-04-26 01:32:37 +0100856 return 0;
Simon Glassa6131a22016-02-22 22:55:56 -0700857}
Simon Glassc0bd55e2023-09-26 08:14:34 -0600858
859/* Parse and load full fitImage in SPL */
860int spl_load_fit_image(struct spl_image_info *spl_image,
861 const struct legacy_img_hdr *header)
862{
863 struct bootm_headers images;
864 const char *fit_uname_config = NULL;
865 uintptr_t fdt_hack;
866 const char *uname;
867 ulong fw_data = 0, dt_data = 0, img_data = 0;
868 ulong fw_len = 0, dt_len = 0, img_len = 0;
869 int idx, conf_noffset;
870 int ret;
871
872#ifdef CONFIG_SPL_FIT_SIGNATURE
873 images.verify = 1;
874#endif
Sean Anderson5ff77722023-10-14 16:47:55 -0400875 ret = fit_image_load(&images, virt_to_phys((void *)header),
Simon Glassc0bd55e2023-09-26 08:14:34 -0600876 NULL, &fit_uname_config,
877 IH_ARCH_DEFAULT, IH_TYPE_STANDALONE, -1,
878 FIT_LOAD_OPTIONAL, &fw_data, &fw_len);
879 if (ret >= 0) {
880 printf("DEPRECATED: 'standalone = ' property.");
881 printf("Please use either 'firmware =' or 'kernel ='\n");
882 } else {
Sean Anderson5ff77722023-10-14 16:47:55 -0400883 ret = fit_image_load(&images, virt_to_phys((void *)header),
884 NULL, &fit_uname_config, IH_ARCH_DEFAULT,
Simon Glassc0bd55e2023-09-26 08:14:34 -0600885 IH_TYPE_FIRMWARE, -1, FIT_LOAD_OPTIONAL,
886 &fw_data, &fw_len);
887 }
888
889 if (ret < 0) {
Sean Anderson5ff77722023-10-14 16:47:55 -0400890 ret = fit_image_load(&images, virt_to_phys((void *)header),
891 NULL, &fit_uname_config, IH_ARCH_DEFAULT,
Simon Glassc0bd55e2023-09-26 08:14:34 -0600892 IH_TYPE_KERNEL, -1, FIT_LOAD_OPTIONAL,
893 &fw_data, &fw_len);
894 }
895
896 if (ret < 0)
897 return ret;
898
899 spl_image->size = fw_len;
Simon Glassc0bd55e2023-09-26 08:14:34 -0600900 spl_image->load_addr = fw_data;
Sean Andersone99b2cd2023-10-14 16:47:39 -0400901 if (fit_image_get_entry(header, ret, &spl_image->entry_point))
902 spl_image->entry_point = fw_data;
Simon Glassc0bd55e2023-09-26 08:14:34 -0600903 if (fit_image_get_os(header, ret, &spl_image->os))
904 spl_image->os = IH_OS_INVALID;
905 spl_image->name = genimg_get_os_name(spl_image->os);
906
Simon Glass8bc93262024-09-29 19:49:55 -0600907 debug(PHASE_PROMPT "payload image: %32s load addr: 0x%lx size: %d\n",
Simon Glassc0bd55e2023-09-26 08:14:34 -0600908 spl_image->name, spl_image->load_addr, spl_image->size);
909
910#ifdef CONFIG_SPL_FIT_SIGNATURE
911 images.verify = 1;
912#endif
Sean Anderson5ff77722023-10-14 16:47:55 -0400913 ret = fit_image_load(&images, virt_to_phys((void *)header), NULL,
914 &fit_uname_config, IH_ARCH_DEFAULT, IH_TYPE_FLATDT,
915 -1, FIT_LOAD_OPTIONAL, &dt_data, &dt_len);
Simon Glassc0bd55e2023-09-26 08:14:34 -0600916 if (ret >= 0) {
917 spl_image->fdt_addr = (void *)dt_data;
918
919 if (spl_image->os == IH_OS_U_BOOT) {
920 /* HACK: U-Boot expects FDT at a specific address */
921 fdt_hack = spl_image->load_addr + spl_image->size;
922 fdt_hack = (fdt_hack + 3) & ~3;
923 debug("Relocating FDT to %p\n", spl_image->fdt_addr);
924 memcpy((void *)fdt_hack, spl_image->fdt_addr, dt_len);
925 }
926 }
927
928 conf_noffset = fit_conf_get_node((const void *)header,
929 fit_uname_config);
930 if (conf_noffset < 0)
931 return 0;
932
933 for (idx = 0;
934 uname = fdt_stringlist_get((const void *)header, conf_noffset,
935 FIT_LOADABLE_PROP, idx,
936 NULL), uname;
937 idx++) {
938#ifdef CONFIG_SPL_FIT_SIGNATURE
939 images.verify = 1;
940#endif
941 ret = fit_image_load(&images, (ulong)header,
942 &uname, &fit_uname_config,
943 IH_ARCH_DEFAULT, IH_TYPE_LOADABLE, -1,
944 FIT_LOAD_OPTIONAL_NON_ZERO,
945 &img_data, &img_len);
946 if (ret < 0)
947 return ret;
948 }
Simon Glass32668282024-08-07 16:47:32 -0600949 spl_image->flags |= SPL_FIT_FOUND;
Simon Glassc0bd55e2023-09-26 08:14:34 -0600950
Simon Glass9b5bfba2024-08-07 16:47:33 -0600951 upl_set_fit_info(map_to_sysmem(header), conf_noffset,
952 spl_image->entry_point);
953
Simon Glassc0bd55e2023-09-26 08:14:34 -0600954 return 0;
955}