blob: 9ae3e5e35d415bbde127e694ec443fdb2b1c2e3a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassf1dcee52016-02-22 22:55:56 -07002/*
3 * Copyright (C) 2016 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glassf1dcee52016-02-22 22:55:56 -07005 */
6
7#include <common.h>
8#include <errno.h>
Michal Simek3313ae62018-07-18 14:33:15 +02009#include <fpga.h>
Simon Glass0c670fc2019-08-01 09:46:36 -060010#include <gzip.h>
Simon Glassf1dcee52016-02-22 22:55:56 -070011#include <image.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Stefan Herbrechtsmeier77253c52022-06-14 16:12:00 +020013#include <memalign.h>
Simon Glass891d9e82021-03-07 17:35:14 -070014#include <mapmem.h>
Simon Glassf1dcee52016-02-22 22:55:56 -070015#include <spl.h>
Simon Glass3a8ee3d2020-11-05 06:32:05 -070016#include <sysinfo.h>
Simon Glass90526e92020-05-10 11:39:56 -060017#include <asm/cache.h>
Simon Glass401d1c42020-10-30 21:38:53 -060018#include <asm/global_data.h>
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +020019#include <linux/libfdt.h>
Simon Glassf1dcee52016-02-22 22:55:56 -070020
Lukas Auerb83edfb2019-08-21 21:14:42 +020021DECLARE_GLOBAL_DATA_PTR;
22
Alexandru Gagniuc917fa362021-01-20 10:46:50 -060023struct spl_fit_info {
24 const void *fit; /* Pointer to a valid FIT blob */
25 size_t ext_data_offset; /* Offset to FIT external data (end of FIT) */
26 int images_node; /* FDT offset to "/images" node */
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -060027 int conf_node; /* FDT offset to selected configuration node */
Alexandru Gagniuc917fa362021-01-20 10:46:50 -060028};
29
Alexandru Gagniucefc4ad0bc2021-01-20 10:46:49 -060030__weak void board_spl_fit_post_load(const void *fit)
Ye Lie246bfc2018-11-17 09:10:25 +000031{
32}
33
34__weak ulong board_spl_fit_size_align(ulong size)
35{
36 return size;
37}
38
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +020039static int find_node_from_desc(const void *fit, int node, const char *str)
40{
41 int child;
42
43 if (node < 0)
44 return -EINVAL;
45
46 /* iterate the FIT nodes and find a matching description */
47 for (child = fdt_first_subnode(fit, node); child >= 0;
48 child = fdt_next_subnode(fit, child)) {
49 int len;
50 const char *desc = fdt_getprop(fit, child, "description", &len);
51
52 if (!desc)
53 continue;
54
55 if (!strcmp(desc, str))
56 return child;
57 }
58
59 return -ENOENT;
60}
61
Andre Przywara736806f2017-04-26 01:32:34 +010062/**
Philipp Tomsicha616c782017-09-13 21:29:34 +020063 * spl_fit_get_image_name(): By using the matching configuration subnode,
Andre Przywara736806f2017-04-26 01:32:34 +010064 * retrieve the name of an image, specified by a property name and an index
65 * into that.
66 * @fit: Pointer to the FDT blob.
67 * @images: Offset of the /images subnode.
68 * @type: Name of the property within the configuration subnode.
69 * @index: Index into the list of strings in this property.
Philipp Tomsicha616c782017-09-13 21:29:34 +020070 * @outname: Name of the image
Andre Przywara736806f2017-04-26 01:32:34 +010071 *
Philipp Tomsicha616c782017-09-13 21:29:34 +020072 * Return: 0 on success, or a negative error number
Andre Przywara736806f2017-04-26 01:32:34 +010073 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -060074static int spl_fit_get_image_name(const struct spl_fit_info *ctx,
Philipp Tomsicha616c782017-09-13 21:29:34 +020075 const char *type, int index,
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +020076 const char **outname)
Andre Przywara4b9340a2017-04-26 01:32:33 +010077{
Simon Glass3a8ee3d2020-11-05 06:32:05 -070078 struct udevice *sysinfo;
Andre Przywara4b9340a2017-04-26 01:32:33 +010079 const char *name, *str;
Philipp Tomsicha616c782017-09-13 21:29:34 +020080 __maybe_unused int node;
Andre Przywara4b9340a2017-04-26 01:32:33 +010081 int len, i;
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +020082 bool found = true;
Andre Przywara4b9340a2017-04-26 01:32:33 +010083
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -060084 name = fdt_getprop(ctx->fit, ctx->conf_node, type, &len);
Andre Przywara4b9340a2017-04-26 01:32:33 +010085 if (!name) {
86 debug("cannot find property '%s': %d\n", type, len);
87 return -EINVAL;
88 }
89
90 str = name;
91 for (i = 0; i < index; i++) {
92 str = strchr(str, '\0') + 1;
93 if (!str || (str - name >= len)) {
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +020094 found = false;
95 break;
Andre Przywara4b9340a2017-04-26 01:32:33 +010096 }
97 }
98
Simon Glass3a8ee3d2020-11-05 06:32:05 -070099 if (!found && CONFIG_IS_ENABLED(SYSINFO) && !sysinfo_get(&sysinfo)) {
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200100 int rc;
101 /*
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700102 * no string in the property for this index. Check if the
103 * sysinfo-level code can supply one.
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200104 */
Sean Anderson4d65c6b2021-04-20 10:50:56 -0400105 rc = sysinfo_detect(sysinfo);
106 if (rc)
107 return rc;
108
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700109 rc = sysinfo_get_fit_loadable(sysinfo, index - i - 1, type,
110 &str);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200111 if (rc && rc != -ENOENT)
112 return rc;
113
114 if (!rc) {
115 /*
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700116 * The sysinfo provided a name for a loadable.
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200117 * Try to match it against the description properties
118 * first. If no matching node is found, use it as a
119 * node name.
120 */
121 int node;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600122 int images = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200123
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600124 node = find_node_from_desc(ctx->fit, images, str);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200125 if (node > 0)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600126 str = fdt_get_name(ctx->fit, node, NULL);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200127
128 found = true;
129 }
130 }
131
132 if (!found) {
133 debug("no string for index %d\n", index);
134 return -E2BIG;
135 }
136
137 *outname = str;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200138 return 0;
139}
140
141/**
142 * spl_fit_get_image_node(): By using the matching configuration subnode,
143 * retrieve the name of an image, specified by a property name and an index
144 * into that.
145 * @fit: Pointer to the FDT blob.
146 * @images: Offset of the /images subnode.
147 * @type: Name of the property within the configuration subnode.
148 * @index: Index into the list of strings in this property.
149 *
150 * Return: the node offset of the respective image node or a negative
151 * error number.
152 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600153static int spl_fit_get_image_node(const struct spl_fit_info *ctx,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200154 const char *type, int index)
155{
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +0200156 const char *str;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200157 int err;
158 int node;
159
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600160 err = spl_fit_get_image_name(ctx, type, index, &str);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200161 if (err)
162 return err;
163
Andre Przywara4b9340a2017-04-26 01:32:33 +0100164 debug("%s: '%s'\n", type, str);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200165
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600166 node = fdt_subnode_offset(ctx->fit, ctx->images_node, str);
Andre Przywara4b9340a2017-04-26 01:32:33 +0100167 if (node < 0) {
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200168 pr_err("cannot find image node '%s': %d\n", str, node);
Andre Przywara4b9340a2017-04-26 01:32:33 +0100169 return -EINVAL;
170 }
171
Andre Przywara736806f2017-04-26 01:32:34 +0100172 return node;
Andre Przywara4b9340a2017-04-26 01:32:33 +0100173}
174
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530175static int get_aligned_image_offset(struct spl_load_info *info, int offset)
176{
177 /*
178 * If it is a FS read, get the first address before offset which is
179 * aligned to ARCH_DMA_MINALIGN. If it is raw read return the
180 * block number to which offset belongs.
181 */
182 if (info->filename)
183 return offset & ~(ARCH_DMA_MINALIGN - 1);
184
185 return offset / info->bl_len;
186}
187
188static int get_aligned_image_overhead(struct spl_load_info *info, int offset)
189{
190 /*
191 * If it is a FS read, get the difference between the offset and
192 * the first address before offset which is aligned to
193 * ARCH_DMA_MINALIGN. If it is raw read return the offset within the
194 * block.
195 */
196 if (info->filename)
197 return offset & (ARCH_DMA_MINALIGN - 1);
198
199 return offset % info->bl_len;
200}
201
202static int get_aligned_image_size(struct spl_load_info *info, int data_size,
203 int offset)
204{
Lokesh Vutla3cc1f382016-07-19 14:56:14 +0530205 data_size = data_size + get_aligned_image_overhead(info, offset);
206
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530207 if (info->filename)
Lokesh Vutla3cc1f382016-07-19 14:56:14 +0530208 return data_size;
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530209
210 return (data_size + info->bl_len - 1) / info->bl_len;
211}
212
Andre Przywara8baa3812017-04-26 01:32:36 +0100213/**
214 * spl_load_fit_image(): load the image described in a certain FIT node
215 * @info: points to information about the device to load data from
216 * @sector: the start sector of the FIT image on the device
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600217 * @ctx: points to the FIT context structure
Andre Przywara8baa3812017-04-26 01:32:36 +0100218 * @node: offset of the DT node describing the image to load (relative
Philipp Tomsicha616c782017-09-13 21:29:34 +0200219 * to @fit)
Andre Przywara8baa3812017-04-26 01:32:36 +0100220 * @image_info: will be filled with information about the loaded image
Philipp Tomsicha616c782017-09-13 21:29:34 +0200221 * If the FIT node does not contain a "load" (address) property,
222 * the image gets loaded to the address pointed to by the
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500223 * load_addr member in this struct, if load_addr is not 0
Andre Przywara8baa3812017-04-26 01:32:36 +0100224 *
225 * Return: 0 on success or a negative error number.
226 */
227static int spl_load_fit_image(struct spl_load_info *info, ulong sector,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600228 const struct spl_fit_info *ctx, int node,
Andre Przywara8baa3812017-04-26 01:32:36 +0100229 struct spl_image_info *image_info)
230{
Michal Simek3313ae62018-07-18 14:33:15 +0200231 int offset;
Andre Przywara8baa3812017-04-26 01:32:36 +0100232 size_t length;
York Sun5fd13d92017-08-15 11:14:44 -0700233 int len;
York Sun933f67a2017-09-15 08:21:13 -0700234 ulong size;
Simon Glass891d9e82021-03-07 17:35:14 -0700235 ulong load_addr;
236 void *load_ptr;
Andre Przywara8baa3812017-04-26 01:32:36 +0100237 void *src;
238 ulong overhead;
239 int nr_sectors;
York Sun7264f292017-08-15 11:14:43 -0700240 uint8_t image_comp = -1, type = -1;
York Sun5fd13d92017-08-15 11:14:44 -0700241 const void *data;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600242 const void *fit = ctx->fit;
Peng Fana1be94b2017-12-05 13:20:59 +0800243 bool external_data = false;
York Sun7264f292017-08-15 11:14:43 -0700244
Michal Simek29bd8ad2020-09-09 14:41:56 +0200245 if (IS_ENABLED(CONFIG_SPL_FPGA) ||
Marek Vasut56419ea2018-06-01 23:19:29 +0200246 (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP))) {
247 if (fit_image_get_type(fit, node, &type))
248 puts("Cannot get image type.\n");
249 else
250 debug("%s ", genimg_get_type_name(type));
251 }
252
Klaus H. Sorensen602ce1d2019-12-11 11:03:33 +0000253 if (IS_ENABLED(CONFIG_SPL_GZIP)) {
254 fit_image_get_comp(fit, node, &image_comp);
255 debug("%s ", genimg_get_comp_name(image_comp));
York Sun7264f292017-08-15 11:14:43 -0700256 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100257
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500258 if (fit_image_get_load(fit, node, &load_addr)) {
259 if (!image_info->load_addr) {
260 printf("Can't load %s: No load address and no buffer\n",
261 fit_get_name(fit, node, NULL));
262 return -ENOBUFS;
263 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100264 load_addr = image_info->load_addr;
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500265 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100266
Peng Fana1be94b2017-12-05 13:20:59 +0800267 if (!fit_image_get_data_position(fit, node, &offset)) {
268 external_data = true;
269 } else if (!fit_image_get_data_offset(fit, node, &offset)) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600270 offset += ctx->ext_data_offset;
Peng Fana1be94b2017-12-05 13:20:59 +0800271 external_data = true;
272 }
273
274 if (external_data) {
Simon Glass891d9e82021-03-07 17:35:14 -0700275 void *src_ptr;
276
Peng Fana1be94b2017-12-05 13:20:59 +0800277 /* External data */
York Sun5fd13d92017-08-15 11:14:44 -0700278 if (fit_image_get_data_size(fit, node, &len))
279 return -ENOENT;
Andre Przywara8baa3812017-04-26 01:32:36 +0100280
Nishanth Menon6d99f862021-10-19 12:32:29 -0500281 /* Dont bother to copy 0 byte data, but warn, though */
282 if (!len) {
283 log_warning("%s: Skip load '%s': image size is 0!\n",
284 __func__, fit_get_name(fit, node, NULL));
285 return 0;
286 }
287
Simon Glass891d9e82021-03-07 17:35:14 -0700288 src_ptr = map_sysmem(ALIGN(load_addr, ARCH_DMA_MINALIGN), len);
York Sun5fd13d92017-08-15 11:14:44 -0700289 length = len;
Andre Przywara8baa3812017-04-26 01:32:36 +0100290
York Sun5fd13d92017-08-15 11:14:44 -0700291 overhead = get_aligned_image_overhead(info, offset);
292 nr_sectors = get_aligned_image_size(info, length, offset);
293
Michal Simek3313ae62018-07-18 14:33:15 +0200294 if (info->read(info,
295 sector + get_aligned_image_offset(info, offset),
Simon Glass891d9e82021-03-07 17:35:14 -0700296 nr_sectors, src_ptr) != nr_sectors)
York Sun5fd13d92017-08-15 11:14:44 -0700297 return -EIO;
298
Simon Glass891d9e82021-03-07 17:35:14 -0700299 debug("External data: dst=%p, offset=%x, size=%lx\n",
300 src_ptr, offset, (unsigned long)length);
301 src = src_ptr + overhead;
York Sun5fd13d92017-08-15 11:14:44 -0700302 } else {
303 /* Embedded data */
304 if (fit_image_get_data(fit, node, &data, &length)) {
305 puts("Cannot get image data/size\n");
306 return -ENOENT;
307 }
308 debug("Embedded data: dst=%lx, size=%lx\n", load_addr,
309 (unsigned long)length);
Simon Glass891d9e82021-03-07 17:35:14 -0700310 src = (void *)data; /* cast away const */
York Sun5fd13d92017-08-15 11:14:44 -0700311 }
312
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600313 if (CONFIG_IS_ENABLED(FIT_SIGNATURE)) {
314 printf("## Checking hash(es) for Image %s ... ",
315 fit_get_name(fit, node, NULL));
Simon Glass99f844b2021-11-12 12:28:10 -0700316 if (!fit_image_verify_with_data(fit, node, gd_fdt_blob(), src,
317 length))
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600318 return -EPERM;
319 puts("OK\n");
320 }
Ben Whittend154ca62018-06-07 11:37:27 +0100321
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600322 if (CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS))
Lokesh Vutla481d3942021-06-11 11:45:05 +0300323 board_fit_image_post_process(fit, node, &src, &length);
Andre Przywara8baa3812017-04-26 01:32:36 +0100324
Simon Glass891d9e82021-03-07 17:35:14 -0700325 load_ptr = map_sysmem(load_addr, length);
Michal Simek975e7892018-07-24 15:05:00 +0200326 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
York Sun933f67a2017-09-15 08:21:13 -0700327 size = length;
Simon Glass891d9e82021-03-07 17:35:14 -0700328 if (gunzip(load_ptr, CONFIG_SYS_BOOTM_LEN, src, &size)) {
York Sun7264f292017-08-15 11:14:43 -0700329 puts("Uncompressing error\n");
330 return -EIO;
331 }
York Sun933f67a2017-09-15 08:21:13 -0700332 length = size;
York Sun7264f292017-08-15 11:14:43 -0700333 } else {
Simon Glass891d9e82021-03-07 17:35:14 -0700334 memcpy(load_ptr, src, length);
York Sun7264f292017-08-15 11:14:43 -0700335 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100336
337 if (image_info) {
Michal Simekcaa7fc22020-09-03 11:24:28 +0200338 ulong entry_point;
339
Andre Przywara8baa3812017-04-26 01:32:36 +0100340 image_info->load_addr = load_addr;
341 image_info->size = length;
Michal Simekcaa7fc22020-09-03 11:24:28 +0200342
343 if (!fit_image_get_entry(fit, node, &entry_point))
344 image_info->entry_point = entry_point;
345 else
346 image_info->entry_point = FDT_ERROR;
Andre Przywara8baa3812017-04-26 01:32:36 +0100347 }
348
349 return 0;
350}
351
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600352static bool os_takes_devicetree(uint8_t os)
353{
354 switch (os) {
355 case IH_OS_U_BOOT:
356 return true;
357 case IH_OS_LINUX:
358 return IS_ENABLED(CONFIG_SPL_OS_BOOT);
359 default:
360 return false;
361 }
362}
363
Philipp Tomsichd8796162017-09-13 21:29:32 +0200364static int spl_fit_append_fdt(struct spl_image_info *spl_image,
365 struct spl_load_info *info, ulong sector,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600366 const struct spl_fit_info *ctx)
Philipp Tomsichd8796162017-09-13 21:29:32 +0200367{
368 struct spl_image_info image_info;
Michal Simek9d13b872019-10-22 16:39:11 +0200369 int node, ret = 0, index = 0;
Lukas Auerb83edfb2019-08-21 21:14:42 +0200370
371 /*
372 * Use the address following the image as target address for the
Marek Vasut5675ed72020-10-19 23:40:26 +0200373 * device tree.
Lukas Auerb83edfb2019-08-21 21:14:42 +0200374 */
Marek Vasut5675ed72020-10-19 23:40:26 +0200375 image_info.load_addr = spl_image->load_addr + spl_image->size;
Philipp Tomsichd8796162017-09-13 21:29:32 +0200376
377 /* Figure out which device tree the board wants to use */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600378 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index++);
Philipp Tomsichd8796162017-09-13 21:29:32 +0200379 if (node < 0) {
380 debug("%s: cannot find FDT node\n", __func__);
Lukas Auerb83edfb2019-08-21 21:14:42 +0200381
382 /*
383 * U-Boot did not find a device tree inside the FIT image. Use
384 * the U-Boot device tree instead.
385 */
386 if (gd->fdt_blob)
387 memcpy((void *)image_info.load_addr, gd->fdt_blob,
388 fdt_totalsize(gd->fdt_blob));
389 else
390 return node;
391 } else {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600392 ret = spl_load_fit_image(info, sector, ctx, node,
Lukas Auerb83edfb2019-08-21 21:14:42 +0200393 &image_info);
394 if (ret < 0)
395 return ret;
Philipp Tomsichd8796162017-09-13 21:29:32 +0200396 }
397
Philipp Tomsicha616c782017-09-13 21:29:34 +0200398 /* Make the load-address of the FDT available for the SPL framework */
Simon Glass891d9e82021-03-07 17:35:14 -0700399 spl_image->fdt_addr = map_sysmem(image_info.load_addr, 0);
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600400 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
401 return 0;
402
Tom Rinia3fda0d2023-01-10 11:19:28 -0500403#if CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200404 void *tmpbuffer = NULL;
405
Michal Simek9d13b872019-10-22 16:39:11 +0200406 for (; ; index++) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600407 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index);
Jean-Jacques Hiblot24bf44c2019-10-22 16:39:14 +0200408 if (node == -E2BIG) {
Michal Simek9d13b872019-10-22 16:39:11 +0200409 debug("%s: No additional FDT node\n", __func__);
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200410 break;
Jean-Jacques Hiblot24bf44c2019-10-22 16:39:14 +0200411 } else if (node < 0) {
412 debug("%s: unable to find FDT node %d\n",
413 __func__, index);
414 continue;
Michal Simek9d13b872019-10-22 16:39:11 +0200415 }
Philipp Tomsicha616c782017-09-13 21:29:34 +0200416
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200417 if (!tmpbuffer) {
418 /*
419 * allocate memory to store the DT overlay
420 * before it is applied. It may not be used
421 * depending on how the overlay is stored, so
422 * don't fail yet if the allocation failed.
423 */
Stefan Herbrechtsmeier77253c52022-06-14 16:12:00 +0200424 size_t size = CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ;
425
426 tmpbuffer = malloc_cache_aligned(size);
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200427 if (!tmpbuffer)
428 debug("%s: unable to allocate space for overlays\n",
429 __func__);
430 }
431 image_info.load_addr = (ulong)tmpbuffer;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600432 ret = spl_load_fit_image(info, sector, ctx,
Michal Simek9d13b872019-10-22 16:39:11 +0200433 node, &image_info);
434 if (ret < 0)
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200435 break;
Michal Simek9d13b872019-10-22 16:39:11 +0200436
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200437 /* Make room in FDT for changes from the overlay */
438 ret = fdt_increase_size(spl_image->fdt_addr,
439 image_info.size);
440 if (ret < 0)
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200441 break;
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200442
Michal Simek9d13b872019-10-22 16:39:11 +0200443 ret = fdt_overlay_apply_verbose(spl_image->fdt_addr,
444 (void *)image_info.load_addr);
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200445 if (ret) {
446 pr_err("failed to apply DT overlay %s\n",
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600447 fit_get_name(ctx->fit, node, NULL));
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200448 break;
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200449 }
Michal Simek9d13b872019-10-22 16:39:11 +0200450
451 debug("%s: DT overlay %s applied\n", __func__,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600452 fit_get_name(ctx->fit, node, NULL));
Michal Simek9d13b872019-10-22 16:39:11 +0200453 }
Heinrich Schuchardt077e72c2020-04-20 12:44:01 +0200454 free(tmpbuffer);
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200455 if (ret)
456 return ret;
Tom Rinia3fda0d2023-01-10 11:19:28 -0500457#endif
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200458 /* Try to make space, so we can inject details on the loadables */
459 ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192);
460 if (ret < 0)
461 return ret;
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200462
Philipp Tomsicha616c782017-09-13 21:29:34 +0200463 return ret;
464}
465
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600466static int spl_fit_record_loadable(const struct spl_fit_info *ctx, int index,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200467 void *blob, struct spl_image_info *image)
468{
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100469 int ret = 0;
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +0200470 const char *name;
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100471 int node;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200472
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600473 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
474 return 0;
475
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600476 ret = spl_fit_get_image_name(ctx, "loadables", index, &name);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200477 if (ret < 0)
478 return ret;
479
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600480 node = spl_fit_get_image_node(ctx, "loadables", index);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200481
482 ret = fdt_record_loadable(blob, index, name, image->load_addr,
483 image->size, image->entry_point,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600484 fdt_getprop(ctx->fit, node, "type", NULL),
Michal Simekbe2d1a82021-05-27 11:40:09 +0200485 fdt_getprop(ctx->fit, node, "os", NULL),
486 fdt_getprop(ctx->fit, node, "arch", NULL));
Philipp Tomsichd8796162017-09-13 21:29:32 +0200487 return ret;
488}
489
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500490static int spl_fit_image_is_fpga(const void *fit, int node)
491{
492 const char *type;
493
494 if (!IS_ENABLED(CONFIG_SPL_FPGA))
495 return 0;
496
497 type = fdt_getprop(fit, node, FIT_TYPE_PROP, NULL);
498 if (!type)
499 return 0;
500
501 return !strcmp(type, "fpga");
502}
503
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100504static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os)
505{
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600506 if (!CONFIG_IS_ENABLED(FIT_IMAGE_TINY) || CONFIG_IS_ENABLED(OS_BOOT))
507 return fit_image_get_os(fit, noffset, os);
Samuel Hollandcf705532020-10-21 21:12:13 -0500508
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600509 const char *name = fdt_getprop(fit, noffset, FIT_OS_PROP, NULL);
Samuel Hollandcf705532020-10-21 21:12:13 -0500510 if (!name)
511 return -ENOENT;
512
513 /*
514 * We don't care what the type of the image actually is,
515 * only whether or not it is U-Boot. This saves some
516 * space by omitting the large table of OS types.
517 */
518 if (!strcmp(name, "u-boot"))
519 *os = IH_OS_U_BOOT;
520 else
521 *os = IH_OS_INVALID;
522
523 return 0;
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100524}
525
Andreas Dannenberge1eb6ad2019-06-04 17:55:46 -0500526/*
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500527 * The purpose of the FIT load buffer is to provide a memory location that is
528 * independent of the load address of any FIT component.
529 */
530static void *spl_get_fit_load_buffer(size_t size)
531{
532 void *buf;
533
Stefan Herbrechtsmeier77253c52022-06-14 16:12:00 +0200534 buf = malloc_cache_aligned(size);
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500535 if (!buf) {
536 pr_err("Could not get FIT buffer of %lu bytes\n", (ulong)size);
537 pr_err("\tcheck CONFIG_SYS_SPL_MALLOC_SIZE\n");
538 buf = spl_get_load_buffer(0, size);
539 }
540 return buf;
541}
542
Heiko Schocherdeb80ec2021-08-17 08:17:18 +0200543__weak void *board_spl_fit_buffer_addr(ulong fit_size, int sectors, int bl_len)
544{
545 return spl_get_fit_load_buffer(sectors * bl_len);
546}
547
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500548/*
Andreas Dannenberge1eb6ad2019-06-04 17:55:46 -0500549 * Weak default function to allow customizing SPL fit loading for load-only
550 * use cases by allowing to skip the parsing/processing of the FIT contents
551 * (so that this can be done separately in a more customized fashion)
552 */
553__weak bool spl_load_simple_fit_skip_processing(void)
554{
555 return false;
556}
557
Heiko Schocher884ba502021-08-06 06:44:26 +0200558/*
559 * Weak default function to allow fixes after fit header
560 * is loaded.
561 */
562__weak void *spl_load_simple_fit_fix_load(const void *fit)
563{
564 return (void *)fit;
565}
566
Alexandru Gagniucd8a39512021-03-29 12:05:13 -0500567static void warn_deprecated(const char *msg)
568{
569 printf("DEPRECATED: %s\n", msg);
570 printf("\tSee doc/uImage.FIT/source_file_format.txt\n");
571}
572
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500573static int spl_fit_upload_fpga(struct spl_fit_info *ctx, int node,
574 struct spl_image_info *fpga_image)
575{
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500576 const char *compatible;
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500577 int ret;
Oleksandr Suvorov282eed52022-07-22 17:16:07 +0300578 int devnum = 0;
579 int flags = 0;
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500580
581 debug("FPGA bitstream at: %x, size: %x\n",
582 (u32)fpga_image->load_addr, fpga_image->size);
583
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500584 compatible = fdt_getprop(ctx->fit, node, "compatible", NULL);
Oleksandr Suvorov71f1a532022-07-22 17:16:09 +0300585 if (!compatible) {
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500586 warn_deprecated("'fpga' image without 'compatible' property");
Oleksandr Suvorov71f1a532022-07-22 17:16:09 +0300587 } else {
588 if (CONFIG_IS_ENABLED(FPGA_LOAD_SECURE))
589 flags = fpga_compatible2flag(devnum, compatible);
590 if (strcmp(compatible, "u-boot,fpga-legacy"))
591 debug("Ignoring compatible = %s property\n",
592 compatible);
593 }
Simon Glass33c60a32022-12-21 16:08:15 -0700594 return 0;
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500595
Oleksandr Suvorov282eed52022-07-22 17:16:07 +0300596 ret = fpga_load(devnum, (void *)fpga_image->load_addr,
597 fpga_image->size, BIT_FULL, flags);
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500598 if (ret) {
599 printf("%s: Cannot load the image to the FPGA\n", __func__);
600 return ret;
601 }
602
603 puts("FPGA image loaded from FIT\n");
604
605 return 0;
606}
607
608static int spl_fit_load_fpga(struct spl_fit_info *ctx,
609 struct spl_load_info *info, ulong sector)
610{
611 int node, ret;
612
613 struct spl_image_info fpga_image = {
614 .load_addr = 0,
615 };
616
617 node = spl_fit_get_image_node(ctx, "fpga", 0);
618 if (node < 0)
619 return node;
620
Alexandru Gagniucd8a39512021-03-29 12:05:13 -0500621 warn_deprecated("'fpga' property in config node. Use 'loadables'");
622
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500623 /* Load the image and set up the fpga_image structure */
624 ret = spl_load_fit_image(info, sector, ctx, node, &fpga_image);
625 if (ret) {
626 printf("%s: Cannot load the FPGA: %i\n", __func__, ret);
627 return ret;
628 }
629
630 return spl_fit_upload_fpga(ctx, node, &fpga_image);
631}
632
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600633static int spl_simple_fit_read(struct spl_fit_info *ctx,
634 struct spl_load_info *info, ulong sector,
635 const void *fit_header)
Simon Glassf1dcee52016-02-22 22:55:56 -0700636{
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600637 unsigned long count, size;
Simon Glassf1dcee52016-02-22 22:55:56 -0700638 int sectors;
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600639 void *buf;
Simon Glassf1dcee52016-02-22 22:55:56 -0700640
641 /*
York Sunc8bc3c02017-08-15 11:14:45 -0700642 * For FIT with external data, figure out where the external images
643 * start. This is the base for the data-offset properties in each
644 * image.
Simon Glassf1dcee52016-02-22 22:55:56 -0700645 */
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600646 size = ALIGN(fdt_totalsize(fit_header), 4);
Ye Lie246bfc2018-11-17 09:10:25 +0000647 size = board_spl_fit_size_align(size);
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600648 ctx->ext_data_offset = ALIGN(size, 4);
Simon Glassf1dcee52016-02-22 22:55:56 -0700649
650 /*
651 * So far we only have one block of data from the FIT. Read the entire
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500652 * thing, including that first block.
York Sunc8bc3c02017-08-15 11:14:45 -0700653 *
654 * For FIT with data embedded, data is loaded as part of FIT image.
655 * For FIT with external data, data is not loaded in this step.
Simon Glassf1dcee52016-02-22 22:55:56 -0700656 */
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530657 sectors = get_aligned_image_size(info, size, 0);
Heiko Schocherdeb80ec2021-08-17 08:17:18 +0200658 buf = board_spl_fit_buffer_addr(size, sectors, info->bl_len);
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600659
660 count = info->read(info, sector, sectors, buf);
661 ctx->fit = buf;
Ye Lie246bfc2018-11-17 09:10:25 +0000662 debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu, size=0x%lx\n",
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600663 sector, sectors, buf, count, size);
Ye Lie246bfc2018-11-17 09:10:25 +0000664
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600665 return (count == 0) ? -EIO : 0;
666}
Simon Glassf1dcee52016-02-22 22:55:56 -0700667
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600668static int spl_simple_fit_parse(struct spl_fit_info *ctx)
669{
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -0600670 /* Find the correct subnode under "/configurations" */
671 ctx->conf_node = fit_find_config_node(ctx->fit);
672 if (ctx->conf_node < 0)
673 return -EINVAL;
Philippe Reynes7d5b1bf2020-10-29 18:50:29 +0100674
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -0600675 if (IS_ENABLED(CONFIG_SPL_FIT_SIGNATURE)) {
Philippe Reynes7d5b1bf2020-10-29 18:50:29 +0100676 printf("## Checking hash(es) for config %s ... ",
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -0600677 fit_get_name(ctx->fit, ctx->conf_node, NULL));
678 if (fit_config_verify(ctx->fit, ctx->conf_node))
Philippe Reynes7d5b1bf2020-10-29 18:50:29 +0100679 return -EPERM;
680 puts("OK\n");
681 }
682
Andre Przywara736806f2017-04-26 01:32:34 +0100683 /* find the node holding the images information */
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600684 ctx->images_node = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
685 if (ctx->images_node < 0) {
686 debug("%s: Cannot find /images node: %d\n", __func__,
687 ctx->images_node);
688 return -EINVAL;
Simon Glassf1dcee52016-02-22 22:55:56 -0700689 }
Andre Przywara736806f2017-04-26 01:32:34 +0100690
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600691 return 0;
692}
693
694int spl_load_simple_fit(struct spl_image_info *spl_image,
695 struct spl_load_info *info, ulong sector, void *fit)
696{
697 struct spl_image_info image_info;
698 struct spl_fit_info ctx;
699 int node = -1;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600700 int ret;
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600701 int index = 0;
702 int firmware_node;
703
704 ret = spl_simple_fit_read(&ctx, info, sector, fit);
705 if (ret < 0)
706 return ret;
707
708 /* skip further processing if requested to enable load-only use cases */
709 if (spl_load_simple_fit_skip_processing())
710 return 0;
711
Heiko Schocher884ba502021-08-06 06:44:26 +0200712 ctx.fit = spl_load_simple_fit_fix_load(ctx.fit);
713
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600714 ret = spl_simple_fit_parse(&ctx);
715 if (ret < 0)
716 return ret;
717
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500718 if (IS_ENABLED(CONFIG_SPL_FPGA))
719 spl_fit_load_fpga(&ctx, info, sector);
Marek Vasut26a64222018-05-12 22:25:28 +0200720
Philipp Tomsichd8796162017-09-13 21:29:32 +0200721 /*
722 * Find the U-Boot image using the following search order:
723 * - start at 'firmware' (e.g. an ARM Trusted Firmware)
724 * - fall back 'kernel' (e.g. a Falcon-mode OS boot
725 * - fall back to using the first 'loadables' entry
726 */
York Sunc8bc3c02017-08-15 11:14:45 -0700727 if (node < 0)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600728 node = spl_fit_get_image_node(&ctx, FIT_FIRMWARE_PROP, 0);
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600729
730 if (node < 0 && IS_ENABLED(CONFIG_SPL_OS_BOOT))
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600731 node = spl_fit_get_image_node(&ctx, FIT_KERNEL_PROP, 0);
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600732
Simon Glassf1dcee52016-02-22 22:55:56 -0700733 if (node < 0) {
Andre Przywara736806f2017-04-26 01:32:34 +0100734 debug("could not find firmware image, trying loadables...\n");
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600735 node = spl_fit_get_image_node(&ctx, "loadables", 0);
Andre Przywara411cf322017-04-26 01:32:37 +0100736 /*
737 * If we pick the U-Boot image from "loadables", start at
738 * the second image when later loading additional images.
739 */
740 index = 1;
Andre Przywara736806f2017-04-26 01:32:34 +0100741 }
742 if (node < 0) {
743 debug("%s: Cannot find u-boot image node: %d\n",
744 __func__, node);
Simon Glassf1dcee52016-02-22 22:55:56 -0700745 return -1;
746 }
747
Andre Przywara8baa3812017-04-26 01:32:36 +0100748 /* Load the image and set up the spl_image structure */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600749 ret = spl_load_fit_image(info, sector, &ctx, node, spl_image);
Andre Przywara8baa3812017-04-26 01:32:36 +0100750 if (ret)
751 return ret;
752
Philipp Tomsichd8796162017-09-13 21:29:32 +0200753 /*
754 * For backward compatibility, we treat the first node that is
755 * as a U-Boot image, if no OS-type has been declared.
756 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600757 if (!spl_fit_image_get_os(ctx.fit, node, &spl_image->os))
York Sunc8bc3c02017-08-15 11:14:45 -0700758 debug("Image OS is %s\n", genimg_get_os_name(spl_image->os));
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600759 else if (!IS_ENABLED(CONFIG_SPL_OS_BOOT))
Philipp Tomsichd8796162017-09-13 21:29:32 +0200760 spl_image->os = IH_OS_U_BOOT;
Simon Glassf1dcee52016-02-22 22:55:56 -0700761
Philipp Tomsichd8796162017-09-13 21:29:32 +0200762 /*
763 * Booting a next-stage U-Boot may require us to append the FDT.
764 * We allow this to fail, as the U-Boot image might embed its FDT.
765 */
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600766 if (os_takes_devicetree(spl_image->os)) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600767 ret = spl_fit_append_fdt(spl_image, info, sector, &ctx);
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600768 if (ret < 0 && spl_image->os != IH_OS_U_BOOT)
Dario Binacchi585b4682020-05-27 13:56:19 +0200769 return ret;
770 }
Simon Glassf1dcee52016-02-22 22:55:56 -0700771
Jean-Jacques Hiblot6b8b98d2019-10-22 16:39:10 +0200772 firmware_node = node;
Andre Przywara411cf322017-04-26 01:32:37 +0100773 /* Now check if there are more images for us to load */
774 for (; ; index++) {
Philipp Tomsichd8796162017-09-13 21:29:32 +0200775 uint8_t os_type = IH_OS_INVALID;
776
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600777 node = spl_fit_get_image_node(&ctx, "loadables", index);
Andre Przywara411cf322017-04-26 01:32:37 +0100778 if (node < 0)
779 break;
780
Jean-Jacques Hiblot6b8b98d2019-10-22 16:39:10 +0200781 /*
782 * if the firmware is also a loadable, skip it because
783 * it already has been loaded. This is typically the case with
784 * u-boot.img generated by mkimage.
785 */
786 if (firmware_node == node)
787 continue;
788
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500789 image_info.load_addr = 0;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600790 ret = spl_load_fit_image(info, sector, &ctx, node, &image_info);
Philippe Reynesc61b2bf2020-11-24 16:15:05 +0100791 if (ret < 0) {
792 printf("%s: can't load image loadables index %d (ret = %d)\n",
793 __func__, index, ret);
794 return ret;
795 }
Andre Przywara411cf322017-04-26 01:32:37 +0100796
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500797 if (spl_fit_image_is_fpga(ctx.fit, node))
798 spl_fit_upload_fpga(&ctx, node, &image_info);
799
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600800 if (!spl_fit_image_get_os(ctx.fit, node, &os_type))
Philipp Tomsichd8796162017-09-13 21:29:32 +0200801 debug("Loadable is %s\n", genimg_get_os_name(os_type));
802
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600803 if (os_takes_devicetree(os_type)) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600804 spl_fit_append_fdt(&image_info, info, sector, &ctx);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200805 spl_image->fdt_addr = image_info.fdt_addr;
806 }
Philipp Tomsichd8796162017-09-13 21:29:32 +0200807
Andre Przywara411cf322017-04-26 01:32:37 +0100808 /*
809 * If the "firmware" image did not provide an entry point,
810 * use the first valid entry point from the loadables.
811 */
812 if (spl_image->entry_point == FDT_ERROR &&
813 image_info.entry_point != FDT_ERROR)
814 spl_image->entry_point = image_info.entry_point;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200815
816 /* Record our loadables into the FDT */
817 if (spl_image->fdt_addr)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600818 spl_fit_record_loadable(&ctx, index,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200819 spl_image->fdt_addr,
820 &image_info);
Andre Przywara411cf322017-04-26 01:32:37 +0100821 }
822
823 /*
Tom Rini65cc0e22022-11-16 13:10:41 -0500824 * If a platform does not provide CFG_SYS_UBOOT_START, U-Boot's
Andre Przywara411cf322017-04-26 01:32:37 +0100825 * Makefile will set it to 0 and it will end up as the entry point
826 * here. What it actually means is: use the load address.
827 */
828 if (spl_image->entry_point == FDT_ERROR || spl_image->entry_point == 0)
829 spl_image->entry_point = spl_image->load_addr;
830
Ye Lie246bfc2018-11-17 09:10:25 +0000831 spl_image->flags |= SPL_FIT_FOUND;
832
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600833 if (IS_ENABLED(CONFIG_IMX_HAB))
834 board_spl_fit_post_load(ctx.fit);
Ye Lie246bfc2018-11-17 09:10:25 +0000835
Andre Przywara411cf322017-04-26 01:32:37 +0100836 return 0;
Simon Glassf1dcee52016-02-22 22:55:56 -0700837}