blob: 822d0ce0e448fc89ad08111c9efe7093a9d77eb7 [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
7#include <common.h>
8#include <errno.h>
Michal Simekf707b5a2018-07-18 14:33:15 +02009#include <fpga.h>
Simon Glass1a974af2019-08-01 09:46:36 -060010#include <gzip.h>
Simon Glassa6131a22016-02-22 22:55:56 -070011#include <image.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Stefan Herbrechtsmeier66249102022-06-14 16:12:00 +020013#include <memalign.h>
Simon Glass2192e982021-03-07 17:35:14 -070014#include <mapmem.h>
Simon Glassa6131a22016-02-22 22:55:56 -070015#include <spl.h>
Simon Glass458b66a2020-11-05 06:32:05 -070016#include <sysinfo.h>
Simon Glass274e0b02020-05-10 11:39:56 -060017#include <asm/cache.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060018#include <asm/global_data.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;
47 const char *desc = fdt_getprop(fit, child, "description", &len);
48
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{
174 /*
175 * If it is a FS read, get the first address before offset which is
176 * aligned to ARCH_DMA_MINALIGN. If it is raw read return the
177 * block number to which offset belongs.
178 */
179 if (info->filename)
180 return offset & ~(ARCH_DMA_MINALIGN - 1);
181
182 return offset / info->bl_len;
183}
184
185static int get_aligned_image_overhead(struct spl_load_info *info, int offset)
186{
187 /*
188 * If it is a FS read, get the difference between the offset and
189 * the first address before offset which is aligned to
190 * ARCH_DMA_MINALIGN. If it is raw read return the offset within the
191 * block.
192 */
193 if (info->filename)
194 return offset & (ARCH_DMA_MINALIGN - 1);
195
196 return offset % info->bl_len;
197}
198
199static int get_aligned_image_size(struct spl_load_info *info, int data_size,
200 int offset)
201{
Lokesh Vutlaf0531a62016-07-19 14:56:14 +0530202 data_size = data_size + get_aligned_image_overhead(info, offset);
203
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530204 if (info->filename)
Lokesh Vutlaf0531a62016-07-19 14:56:14 +0530205 return data_size;
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530206
207 return (data_size + info->bl_len - 1) / info->bl_len;
208}
209
Andre Przywara29053e92017-04-26 01:32:36 +0100210/**
Simon Glass205ff7b2023-09-26 08:14:33 -0600211 * load_simple_fit(): load the image described in a certain FIT node
Andre Przywara29053e92017-04-26 01:32:36 +0100212 * @info: points to information about the device to load data from
213 * @sector: the start sector of the FIT image on the device
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600214 * @ctx: points to the FIT context structure
Andre Przywara29053e92017-04-26 01:32:36 +0100215 * @node: offset of the DT node describing the image to load (relative
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200216 * to @fit)
Andre Przywara29053e92017-04-26 01:32:36 +0100217 * @image_info: will be filled with information about the loaded image
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200218 * If the FIT node does not contain a "load" (address) property,
219 * the image gets loaded to the address pointed to by the
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500220 * load_addr member in this struct, if load_addr is not 0
Andre Przywara29053e92017-04-26 01:32:36 +0100221 *
222 * Return: 0 on success or a negative error number.
223 */
Simon Glass205ff7b2023-09-26 08:14:33 -0600224static int load_simple_fit(struct spl_load_info *info, ulong sector,
225 const struct spl_fit_info *ctx, int node,
226 struct spl_image_info *image_info)
Andre Przywara29053e92017-04-26 01:32:36 +0100227{
Michal Simekf707b5a2018-07-18 14:33:15 +0200228 int offset;
Andre Przywara29053e92017-04-26 01:32:36 +0100229 size_t length;
York Sunadf99fa2017-08-15 11:14:44 -0700230 int len;
York Sun25d65f12017-09-15 08:21:13 -0700231 ulong size;
Simon Glass2192e982021-03-07 17:35:14 -0700232 ulong load_addr;
233 void *load_ptr;
Andre Przywara29053e92017-04-26 01:32:36 +0100234 void *src;
235 ulong overhead;
236 int nr_sectors;
York Suna6945fe2017-08-15 11:14:43 -0700237 uint8_t image_comp = -1, type = -1;
York Sunadf99fa2017-08-15 11:14:44 -0700238 const void *data;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600239 const void *fit = ctx->fit;
Peng Fan8876c7e2017-12-05 13:20:59 +0800240 bool external_data = false;
York Suna6945fe2017-08-15 11:14:43 -0700241
Michal Simek1aab1142020-09-09 14:41:56 +0200242 if (IS_ENABLED(CONFIG_SPL_FPGA) ||
Marek Vasut72bc5d52018-06-01 23:19:29 +0200243 (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP))) {
244 if (fit_image_get_type(fit, node, &type))
245 puts("Cannot get image type.\n");
246 else
247 debug("%s ", genimg_get_type_name(type));
248 }
249
Klaus H. Sorensen4a9a0422019-12-11 11:03:33 +0000250 if (IS_ENABLED(CONFIG_SPL_GZIP)) {
251 fit_image_get_comp(fit, node, &image_comp);
252 debug("%s ", genimg_get_comp_name(image_comp));
York Suna6945fe2017-08-15 11:14:43 -0700253 }
Andre Przywara29053e92017-04-26 01:32:36 +0100254
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500255 if (fit_image_get_load(fit, node, &load_addr)) {
256 if (!image_info->load_addr) {
257 printf("Can't load %s: No load address and no buffer\n",
258 fit_get_name(fit, node, NULL));
259 return -ENOBUFS;
260 }
Andre Przywara29053e92017-04-26 01:32:36 +0100261 load_addr = image_info->load_addr;
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500262 }
Andre Przywara29053e92017-04-26 01:32:36 +0100263
Peng Fan8876c7e2017-12-05 13:20:59 +0800264 if (!fit_image_get_data_position(fit, node, &offset)) {
265 external_data = true;
266 } else if (!fit_image_get_data_offset(fit, node, &offset)) {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600267 offset += ctx->ext_data_offset;
Peng Fan8876c7e2017-12-05 13:20:59 +0800268 external_data = true;
269 }
270
271 if (external_data) {
Simon Glass2192e982021-03-07 17:35:14 -0700272 void *src_ptr;
273
Peng Fan8876c7e2017-12-05 13:20:59 +0800274 /* External data */
York Sunadf99fa2017-08-15 11:14:44 -0700275 if (fit_image_get_data_size(fit, node, &len))
276 return -ENOENT;
Andre Przywara29053e92017-04-26 01:32:36 +0100277
Nishanth Menone4cb6452021-10-19 12:32:29 -0500278 /* Dont bother to copy 0 byte data, but warn, though */
279 if (!len) {
280 log_warning("%s: Skip load '%s': image size is 0!\n",
281 __func__, fit_get_name(fit, node, NULL));
282 return 0;
283 }
284
Simon Glass2192e982021-03-07 17:35:14 -0700285 src_ptr = map_sysmem(ALIGN(load_addr, ARCH_DMA_MINALIGN), len);
York Sunadf99fa2017-08-15 11:14:44 -0700286 length = len;
287
288 overhead = get_aligned_image_overhead(info, offset);
289 nr_sectors = get_aligned_image_size(info, length, offset);
290
Michal Simekf707b5a2018-07-18 14:33:15 +0200291 if (info->read(info,
292 sector + get_aligned_image_offset(info, offset),
Simon Glass2192e982021-03-07 17:35:14 -0700293 nr_sectors, src_ptr) != nr_sectors)
York Sunadf99fa2017-08-15 11:14:44 -0700294 return -EIO;
295
Simon Glass2192e982021-03-07 17:35:14 -0700296 debug("External data: dst=%p, offset=%x, size=%lx\n",
297 src_ptr, offset, (unsigned long)length);
298 src = src_ptr + overhead;
York Sunadf99fa2017-08-15 11:14:44 -0700299 } else {
300 /* Embedded data */
301 if (fit_image_get_data(fit, node, &data, &length)) {
302 puts("Cannot get image data/size\n");
303 return -ENOENT;
304 }
305 debug("Embedded data: dst=%lx, size=%lx\n", load_addr,
306 (unsigned long)length);
Simon Glass2192e982021-03-07 17:35:14 -0700307 src = (void *)data; /* cast away const */
York Sunadf99fa2017-08-15 11:14:44 -0700308 }
Andre Przywara29053e92017-04-26 01:32:36 +0100309
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600310 if (CONFIG_IS_ENABLED(FIT_SIGNATURE)) {
311 printf("## Checking hash(es) for Image %s ... ",
312 fit_get_name(fit, node, NULL));
Simon Glasse10e2ee2021-11-12 12:28:10 -0700313 if (!fit_image_verify_with_data(fit, node, gd_fdt_blob(), src,
314 length))
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600315 return -EPERM;
316 puts("OK\n");
317 }
Ben Whitten54a91192018-06-07 11:37:27 +0100318
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600319 if (CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS))
Lokesh Vutlab36dd3e2021-06-11 11:45:05 +0300320 board_fit_image_post_process(fit, node, &src, &length);
Andre Przywara29053e92017-04-26 01:32:36 +0100321
Simon Glass2192e982021-03-07 17:35:14 -0700322 load_ptr = map_sysmem(load_addr, length);
Michal Simekf354c3f2018-07-24 15:05:00 +0200323 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
York Sun25d65f12017-09-15 08:21:13 -0700324 size = length;
Simon Glass2192e982021-03-07 17:35:14 -0700325 if (gunzip(load_ptr, CONFIG_SYS_BOOTM_LEN, src, &size)) {
York Suna6945fe2017-08-15 11:14:43 -0700326 puts("Uncompressing error\n");
327 return -EIO;
328 }
York Sun25d65f12017-09-15 08:21:13 -0700329 length = size;
York Suna6945fe2017-08-15 11:14:43 -0700330 } else {
Simon Glass2192e982021-03-07 17:35:14 -0700331 memcpy(load_ptr, src, length);
York Suna6945fe2017-08-15 11:14:43 -0700332 }
Andre Przywara29053e92017-04-26 01:32:36 +0100333
334 if (image_info) {
Michal Simek9e64a552020-09-03 11:24:28 +0200335 ulong entry_point;
336
Andre Przywara29053e92017-04-26 01:32:36 +0100337 image_info->load_addr = load_addr;
338 image_info->size = length;
Michal Simek9e64a552020-09-03 11:24:28 +0200339
340 if (!fit_image_get_entry(fit, node, &entry_point))
341 image_info->entry_point = entry_point;
342 else
343 image_info->entry_point = FDT_ERROR;
Andre Przywara29053e92017-04-26 01:32:36 +0100344 }
345
346 return 0;
347}
348
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600349static bool os_takes_devicetree(uint8_t os)
350{
351 switch (os) {
352 case IH_OS_U_BOOT:
353 return true;
354 case IH_OS_LINUX:
355 return IS_ENABLED(CONFIG_SPL_OS_BOOT);
356 default:
357 return false;
358 }
359}
360
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200361static int spl_fit_append_fdt(struct spl_image_info *spl_image,
362 struct spl_load_info *info, ulong sector,
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600363 const struct spl_fit_info *ctx)
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200364{
365 struct spl_image_info image_info;
Michal Simekbf703df2019-10-22 16:39:11 +0200366 int node, ret = 0, index = 0;
Lukas Auer80afee72019-08-21 21:14:42 +0200367
368 /*
369 * Use the address following the image as target address for the
Marek Vasutc27cbe82020-10-19 23:40:26 +0200370 * device tree.
Lukas Auer80afee72019-08-21 21:14:42 +0200371 */
Marek Vasutc27cbe82020-10-19 23:40:26 +0200372 image_info.load_addr = spl_image->load_addr + spl_image->size;
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200373
374 /* Figure out which device tree the board wants to use */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600375 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index++);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200376 if (node < 0) {
377 debug("%s: cannot find FDT node\n", __func__);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200378
Lukas Auer80afee72019-08-21 21:14:42 +0200379 /*
380 * U-Boot did not find a device tree inside the FIT image. Use
381 * the U-Boot device tree instead.
382 */
383 if (gd->fdt_blob)
384 memcpy((void *)image_info.load_addr, gd->fdt_blob,
385 fdt_totalsize(gd->fdt_blob));
386 else
387 return node;
388 } else {
Simon Glass205ff7b2023-09-26 08:14:33 -0600389 ret = load_simple_fit(info, sector, ctx, node, &image_info);
Lukas Auer80afee72019-08-21 21:14:42 +0200390 if (ret < 0)
391 return ret;
392 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200393
394 /* Make the load-address of the FDT available for the SPL framework */
Simon Glass2192e982021-03-07 17:35:14 -0700395 spl_image->fdt_addr = map_sysmem(image_info.load_addr, 0);
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600396 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
397 return 0;
398
Tom Rinid259d9c2023-01-10 11:19:28 -0500399#if CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200400 void *tmpbuffer = NULL;
401
Michal Simekbf703df2019-10-22 16:39:11 +0200402 for (; ; index++) {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600403 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index);
Jean-Jacques Hiblotc6ab6a12019-10-22 16:39:14 +0200404 if (node == -E2BIG) {
Michal Simekbf703df2019-10-22 16:39:11 +0200405 debug("%s: No additional FDT node\n", __func__);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200406 break;
Jean-Jacques Hiblotc6ab6a12019-10-22 16:39:14 +0200407 } else if (node < 0) {
408 debug("%s: unable to find FDT node %d\n",
409 __func__, index);
410 continue;
Michal Simekbf703df2019-10-22 16:39:11 +0200411 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200412
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200413 if (!tmpbuffer) {
414 /*
415 * allocate memory to store the DT overlay
416 * before it is applied. It may not be used
417 * depending on how the overlay is stored, so
418 * don't fail yet if the allocation failed.
419 */
Stefan Herbrechtsmeier66249102022-06-14 16:12:00 +0200420 size_t size = CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ;
421
422 tmpbuffer = malloc_cache_aligned(size);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200423 if (!tmpbuffer)
424 debug("%s: unable to allocate space for overlays\n",
425 __func__);
426 }
427 image_info.load_addr = (ulong)tmpbuffer;
Simon Glass205ff7b2023-09-26 08:14:33 -0600428 ret = load_simple_fit(info, sector, ctx, node,
429 &image_info);
Michal Simekbf703df2019-10-22 16:39:11 +0200430 if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200431 break;
Michal Simekbf703df2019-10-22 16:39:11 +0200432
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200433 /* Make room in FDT for changes from the overlay */
434 ret = fdt_increase_size(spl_image->fdt_addr,
435 image_info.size);
436 if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200437 break;
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200438
Michal Simekbf703df2019-10-22 16:39:11 +0200439 ret = fdt_overlay_apply_verbose(spl_image->fdt_addr,
440 (void *)image_info.load_addr);
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200441 if (ret) {
442 pr_err("failed to apply DT overlay %s\n",
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600443 fit_get_name(ctx->fit, node, NULL));
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200444 break;
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200445 }
Michal Simekbf703df2019-10-22 16:39:11 +0200446
447 debug("%s: DT overlay %s applied\n", __func__,
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600448 fit_get_name(ctx->fit, node, NULL));
Michal Simekbf703df2019-10-22 16:39:11 +0200449 }
Heinrich Schuchardt939a9612020-04-20 12:44:01 +0200450 free(tmpbuffer);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200451 if (ret)
452 return ret;
Tom Rinid259d9c2023-01-10 11:19:28 -0500453#endif
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200454 /* Try to make space, so we can inject details on the loadables */
455 ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192);
456 if (ret < 0)
457 return ret;
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200458
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200459 return ret;
460}
461
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600462static int spl_fit_record_loadable(const struct spl_fit_info *ctx, int index,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200463 void *blob, struct spl_image_info *image)
464{
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100465 int ret = 0;
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +0200466 const char *name;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100467 int node;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200468
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600469 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
470 return 0;
471
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600472 ret = spl_fit_get_image_name(ctx, "loadables", index, &name);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200473 if (ret < 0)
474 return ret;
475
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600476 node = spl_fit_get_image_node(ctx, "loadables", index);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200477
478 ret = fdt_record_loadable(blob, index, name, image->load_addr,
479 image->size, image->entry_point,
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600480 fdt_getprop(ctx->fit, node, "type", NULL),
Michal Simek0e4f43d2021-05-27 11:40:09 +0200481 fdt_getprop(ctx->fit, node, "os", NULL),
482 fdt_getprop(ctx->fit, node, "arch", NULL));
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200483 return ret;
484}
485
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500486static int spl_fit_image_is_fpga(const void *fit, int node)
487{
488 const char *type;
489
490 if (!IS_ENABLED(CONFIG_SPL_FPGA))
491 return 0;
492
493 type = fdt_getprop(fit, node, FIT_TYPE_PROP, NULL);
494 if (!type)
495 return 0;
496
497 return !strcmp(type, "fpga");
498}
499
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100500static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os)
501{
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600502 if (!CONFIG_IS_ENABLED(FIT_IMAGE_TINY) || CONFIG_IS_ENABLED(OS_BOOT))
503 return fit_image_get_os(fit, noffset, os);
Samuel Hollande646f512020-10-21 21:12:13 -0500504
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600505 const char *name = fdt_getprop(fit, noffset, FIT_OS_PROP, NULL);
Samuel Hollande646f512020-10-21 21:12:13 -0500506 if (!name)
507 return -ENOENT;
508
509 /*
510 * We don't care what the type of the image actually is,
511 * only whether or not it is U-Boot. This saves some
512 * space by omitting the large table of OS types.
513 */
514 if (!strcmp(name, "u-boot"))
515 *os = IH_OS_U_BOOT;
516 else
517 *os = IH_OS_INVALID;
518
519 return 0;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100520}
521
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500522/*
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500523 * The purpose of the FIT load buffer is to provide a memory location that is
524 * independent of the load address of any FIT component.
525 */
526static void *spl_get_fit_load_buffer(size_t size)
527{
528 void *buf;
529
Stefan Herbrechtsmeier66249102022-06-14 16:12:00 +0200530 buf = malloc_cache_aligned(size);
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500531 if (!buf) {
532 pr_err("Could not get FIT buffer of %lu bytes\n", (ulong)size);
Simon Glass67e3fca2023-09-26 08:14:16 -0600533 pr_err("\tcheck CONFIG_SPL_SYS_MALLOC_SIZE\n");
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500534 buf = spl_get_load_buffer(0, size);
535 }
536 return buf;
537}
538
Heiko Schocher7d7c3672021-08-17 08:17:18 +0200539__weak void *board_spl_fit_buffer_addr(ulong fit_size, int sectors, int bl_len)
540{
541 return spl_get_fit_load_buffer(sectors * bl_len);
542}
543
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500544/*
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500545 * Weak default function to allow customizing SPL fit loading for load-only
546 * use cases by allowing to skip the parsing/processing of the FIT contents
547 * (so that this can be done separately in a more customized fashion)
548 */
549__weak bool spl_load_simple_fit_skip_processing(void)
550{
551 return false;
552}
553
Heiko Schocher67e8f5d2021-08-06 06:44:26 +0200554/*
555 * Weak default function to allow fixes after fit header
556 * is loaded.
557 */
558__weak void *spl_load_simple_fit_fix_load(const void *fit)
559{
560 return (void *)fit;
561}
562
Alexandru Gagniuc69a99662021-03-29 12:05:13 -0500563static void warn_deprecated(const char *msg)
564{
565 printf("DEPRECATED: %s\n", msg);
566 printf("\tSee doc/uImage.FIT/source_file_format.txt\n");
567}
568
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500569static int spl_fit_upload_fpga(struct spl_fit_info *ctx, int node,
570 struct spl_image_info *fpga_image)
571{
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500572 const char *compatible;
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500573 int ret;
Oleksandr Suvorov4ff163d2022-07-22 17:16:07 +0300574 int devnum = 0;
575 int flags = 0;
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500576
577 debug("FPGA bitstream at: %x, size: %x\n",
578 (u32)fpga_image->load_addr, fpga_image->size);
579
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500580 compatible = fdt_getprop(ctx->fit, node, "compatible", NULL);
Oleksandr Suvorov2fddf3e2022-07-22 17:16:09 +0300581 if (!compatible) {
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500582 warn_deprecated("'fpga' image without 'compatible' property");
Oleksandr Suvorov2fddf3e2022-07-22 17:16:09 +0300583 } else {
584 if (CONFIG_IS_ENABLED(FPGA_LOAD_SECURE))
585 flags = fpga_compatible2flag(devnum, compatible);
586 if (strcmp(compatible, "u-boot,fpga-legacy"))
587 debug("Ignoring compatible = %s property\n",
588 compatible);
589 }
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500590
Oleksandr Suvorov4ff163d2022-07-22 17:16:07 +0300591 ret = fpga_load(devnum, (void *)fpga_image->load_addr,
592 fpga_image->size, BIT_FULL, flags);
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500593 if (ret) {
594 printf("%s: Cannot load the image to the FPGA\n", __func__);
595 return ret;
596 }
597
598 puts("FPGA image loaded from FIT\n");
599
600 return 0;
601}
602
603static int spl_fit_load_fpga(struct spl_fit_info *ctx,
604 struct spl_load_info *info, ulong sector)
605{
606 int node, ret;
607
608 struct spl_image_info fpga_image = {
609 .load_addr = 0,
610 };
611
612 node = spl_fit_get_image_node(ctx, "fpga", 0);
613 if (node < 0)
614 return node;
615
Alexandru Gagniuc69a99662021-03-29 12:05:13 -0500616 warn_deprecated("'fpga' property in config node. Use 'loadables'");
617
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500618 /* Load the image and set up the fpga_image structure */
Simon Glass205ff7b2023-09-26 08:14:33 -0600619 ret = load_simple_fit(info, sector, ctx, node, &fpga_image);
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500620 if (ret) {
621 printf("%s: Cannot load the FPGA: %i\n", __func__, ret);
622 return ret;
623 }
624
625 return spl_fit_upload_fpga(ctx, node, &fpga_image);
626}
627
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600628static int spl_simple_fit_read(struct spl_fit_info *ctx,
629 struct spl_load_info *info, ulong sector,
630 const void *fit_header)
Simon Glassa6131a22016-02-22 22:55:56 -0700631{
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600632 unsigned long count, size;
Simon Glassa6131a22016-02-22 22:55:56 -0700633 int sectors;
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600634 void *buf;
Simon Glassa6131a22016-02-22 22:55:56 -0700635
636 /*
York Suna058b8a2017-08-15 11:14:45 -0700637 * For FIT with external data, figure out where the external images
638 * start. This is the base for the data-offset properties in each
639 * image.
Simon Glassa6131a22016-02-22 22:55:56 -0700640 */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600641 size = ALIGN(fdt_totalsize(fit_header), 4);
Ye Li9d5b0f42018-11-17 09:10:25 +0000642 size = board_spl_fit_size_align(size);
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600643 ctx->ext_data_offset = ALIGN(size, 4);
Simon Glassa6131a22016-02-22 22:55:56 -0700644
645 /*
646 * So far we only have one block of data from the FIT. Read the entire
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500647 * thing, including that first block.
York Suna058b8a2017-08-15 11:14:45 -0700648 *
649 * For FIT with data embedded, data is loaded as part of FIT image.
650 * For FIT with external data, data is not loaded in this step.
Simon Glassa6131a22016-02-22 22:55:56 -0700651 */
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530652 sectors = get_aligned_image_size(info, size, 0);
Heiko Schocher7d7c3672021-08-17 08:17:18 +0200653 buf = board_spl_fit_buffer_addr(size, sectors, info->bl_len);
Ye Li9d5b0f42018-11-17 09:10:25 +0000654
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600655 count = info->read(info, sector, sectors, buf);
656 ctx->fit = buf;
657 debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu, size=0x%lx\n",
658 sector, sectors, buf, count, size);
Simon Glassa6131a22016-02-22 22:55:56 -0700659
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600660 return (count == 0) ? -EIO : 0;
661}
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500662
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600663static int spl_simple_fit_parse(struct spl_fit_info *ctx)
664{
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600665 /* Find the correct subnode under "/configurations" */
666 ctx->conf_node = fit_find_config_node(ctx->fit);
667 if (ctx->conf_node < 0)
668 return -EINVAL;
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100669
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600670 if (IS_ENABLED(CONFIG_SPL_FIT_SIGNATURE)) {
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100671 printf("## Checking hash(es) for config %s ... ",
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600672 fit_get_name(ctx->fit, ctx->conf_node, NULL));
673 if (fit_config_verify(ctx->fit, ctx->conf_node))
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100674 return -EPERM;
675 puts("OK\n");
676 }
677
Andre Przywara525e9c92017-04-26 01:32:34 +0100678 /* find the node holding the images information */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600679 ctx->images_node = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
680 if (ctx->images_node < 0) {
681 debug("%s: Cannot find /images node: %d\n", __func__,
682 ctx->images_node);
683 return -EINVAL;
Simon Glassa6131a22016-02-22 22:55:56 -0700684 }
Marek Vasut33dd00e2018-05-12 22:25:28 +0200685
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600686 return 0;
687}
688
689int spl_load_simple_fit(struct spl_image_info *spl_image,
690 struct spl_load_info *info, ulong sector, void *fit)
691{
692 struct spl_image_info image_info;
693 struct spl_fit_info ctx;
694 int node = -1;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600695 int ret;
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600696 int index = 0;
697 int firmware_node;
698
699 ret = spl_simple_fit_read(&ctx, info, sector, fit);
700 if (ret < 0)
701 return ret;
702
703 /* skip further processing if requested to enable load-only use cases */
704 if (spl_load_simple_fit_skip_processing())
705 return 0;
706
Heiko Schocher67e8f5d2021-08-06 06:44:26 +0200707 ctx.fit = spl_load_simple_fit_fix_load(ctx.fit);
708
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600709 ret = spl_simple_fit_parse(&ctx);
710 if (ret < 0)
711 return ret;
712
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500713 if (IS_ENABLED(CONFIG_SPL_FPGA))
714 spl_fit_load_fpga(&ctx, info, sector);
Andre Przywara525e9c92017-04-26 01:32:34 +0100715
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200716 /*
717 * Find the U-Boot image using the following search order:
718 * - start at 'firmware' (e.g. an ARM Trusted Firmware)
719 * - fall back 'kernel' (e.g. a Falcon-mode OS boot
720 * - fall back to using the first 'loadables' entry
721 */
722 if (node < 0)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600723 node = spl_fit_get_image_node(&ctx, FIT_FIRMWARE_PROP, 0);
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600724
725 if (node < 0 && IS_ENABLED(CONFIG_SPL_OS_BOOT))
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600726 node = spl_fit_get_image_node(&ctx, FIT_KERNEL_PROP, 0);
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600727
Andre Przywara525e9c92017-04-26 01:32:34 +0100728 if (node < 0) {
729 debug("could not find firmware image, trying loadables...\n");
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600730 node = spl_fit_get_image_node(&ctx, "loadables", 0);
Andre Przywarae7c58562017-04-26 01:32:37 +0100731 /*
732 * If we pick the U-Boot image from "loadables", start at
733 * the second image when later loading additional images.
734 */
735 index = 1;
Andre Przywara525e9c92017-04-26 01:32:34 +0100736 }
Simon Glassa6131a22016-02-22 22:55:56 -0700737 if (node < 0) {
Andre Przywara525e9c92017-04-26 01:32:34 +0100738 debug("%s: Cannot find u-boot image node: %d\n",
739 __func__, node);
Simon Glassa6131a22016-02-22 22:55:56 -0700740 return -1;
741 }
742
Andre Przywara29053e92017-04-26 01:32:36 +0100743 /* Load the image and set up the spl_image structure */
Simon Glass205ff7b2023-09-26 08:14:33 -0600744 ret = load_simple_fit(info, sector, &ctx, node, spl_image);
Andre Przywara29053e92017-04-26 01:32:36 +0100745 if (ret)
746 return ret;
Daniel Allredcf839bd2016-06-27 09:19:21 -0500747
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200748 /*
749 * For backward compatibility, we treat the first node that is
750 * as a U-Boot image, if no OS-type has been declared.
751 */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600752 if (!spl_fit_image_get_os(ctx.fit, node, &spl_image->os))
York Suna058b8a2017-08-15 11:14:45 -0700753 debug("Image OS is %s\n", genimg_get_os_name(spl_image->os));
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600754 else if (!IS_ENABLED(CONFIG_SPL_OS_BOOT))
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200755 spl_image->os = IH_OS_U_BOOT;
Simon Glassa6131a22016-02-22 22:55:56 -0700756
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200757 /*
758 * Booting a next-stage U-Boot may require us to append the FDT.
759 * We allow this to fail, as the U-Boot image might embed its FDT.
760 */
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600761 if (os_takes_devicetree(spl_image->os)) {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600762 ret = spl_fit_append_fdt(spl_image, info, sector, &ctx);
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600763 if (ret < 0 && spl_image->os != IH_OS_U_BOOT)
Dario Binacchifaf8d142020-05-27 13:56:19 +0200764 return ret;
765 }
Andre Przywarae7c58562017-04-26 01:32:37 +0100766
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200767 firmware_node = node;
Andre Przywarae7c58562017-04-26 01:32:37 +0100768 /* Now check if there are more images for us to load */
769 for (; ; index++) {
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200770 uint8_t os_type = IH_OS_INVALID;
771
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600772 node = spl_fit_get_image_node(&ctx, "loadables", index);
Andre Przywarae7c58562017-04-26 01:32:37 +0100773 if (node < 0)
774 break;
775
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200776 /*
777 * if the firmware is also a loadable, skip it because
778 * it already has been loaded. This is typically the case with
779 * u-boot.img generated by mkimage.
780 */
781 if (firmware_node == node)
782 continue;
783
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500784 image_info.load_addr = 0;
Simon Glass205ff7b2023-09-26 08:14:33 -0600785 ret = load_simple_fit(info, sector, &ctx, node, &image_info);
Philippe Reynesba87da42020-11-24 16:15:05 +0100786 if (ret < 0) {
787 printf("%s: can't load image loadables index %d (ret = %d)\n",
788 __func__, index, ret);
789 return ret;
790 }
Andre Przywarae7c58562017-04-26 01:32:37 +0100791
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500792 if (spl_fit_image_is_fpga(ctx.fit, node))
793 spl_fit_upload_fpga(&ctx, node, &image_info);
794
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600795 if (!spl_fit_image_get_os(ctx.fit, node, &os_type))
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200796 debug("Loadable is %s\n", genimg_get_os_name(os_type));
797
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600798 if (os_takes_devicetree(os_type)) {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600799 spl_fit_append_fdt(&image_info, info, sector, &ctx);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200800 spl_image->fdt_addr = image_info.fdt_addr;
801 }
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200802
Andre Przywarae7c58562017-04-26 01:32:37 +0100803 /*
804 * If the "firmware" image did not provide an entry point,
805 * use the first valid entry point from the loadables.
806 */
807 if (spl_image->entry_point == FDT_ERROR &&
808 image_info.entry_point != FDT_ERROR)
809 spl_image->entry_point = image_info.entry_point;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200810
811 /* Record our loadables into the FDT */
812 if (spl_image->fdt_addr)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600813 spl_fit_record_loadable(&ctx, index,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200814 spl_image->fdt_addr,
815 &image_info);
Andre Przywarae7c58562017-04-26 01:32:37 +0100816 }
817
818 /*
Jesse Taube93ee5c82023-08-24 21:59:48 -0400819 * If a platform does not provide CONFIG_SYS_UBOOT_START, U-Boot's
Andre Przywarae7c58562017-04-26 01:32:37 +0100820 * Makefile will set it to 0 and it will end up as the entry point
821 * here. What it actually means is: use the load address.
822 */
823 if (spl_image->entry_point == FDT_ERROR || spl_image->entry_point == 0)
824 spl_image->entry_point = spl_image->load_addr;
825
Ye Li9d5b0f42018-11-17 09:10:25 +0000826 spl_image->flags |= SPL_FIT_FOUND;
827
Andre Przywarae7c58562017-04-26 01:32:37 +0100828 return 0;
Simon Glassa6131a22016-02-22 22:55:56 -0700829}