blob: 730639f7562c7e7bd640da35f3b056ef20edc23c [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
Ye Lie246bfc2018-11-17 09:10:25 +000030__weak ulong board_spl_fit_size_align(ulong size)
31{
32 return size;
33}
34
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +020035static int find_node_from_desc(const void *fit, int node, const char *str)
36{
37 int child;
38
39 if (node < 0)
40 return -EINVAL;
41
42 /* iterate the FIT nodes and find a matching description */
43 for (child = fdt_first_subnode(fit, node); child >= 0;
44 child = fdt_next_subnode(fit, child)) {
45 int len;
46 const char *desc = fdt_getprop(fit, child, "description", &len);
47
48 if (!desc)
49 continue;
50
51 if (!strcmp(desc, str))
52 return child;
53 }
54
55 return -ENOENT;
56}
57
Andre Przywara736806f2017-04-26 01:32:34 +010058/**
Philipp Tomsicha616c782017-09-13 21:29:34 +020059 * spl_fit_get_image_name(): By using the matching configuration subnode,
Andre Przywara736806f2017-04-26 01:32:34 +010060 * retrieve the name of an image, specified by a property name and an index
61 * into that.
62 * @fit: Pointer to the FDT blob.
63 * @images: Offset of the /images subnode.
64 * @type: Name of the property within the configuration subnode.
65 * @index: Index into the list of strings in this property.
Philipp Tomsicha616c782017-09-13 21:29:34 +020066 * @outname: Name of the image
Andre Przywara736806f2017-04-26 01:32:34 +010067 *
Philipp Tomsicha616c782017-09-13 21:29:34 +020068 * Return: 0 on success, or a negative error number
Andre Przywara736806f2017-04-26 01:32:34 +010069 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -060070static int spl_fit_get_image_name(const struct spl_fit_info *ctx,
Philipp Tomsicha616c782017-09-13 21:29:34 +020071 const char *type, int index,
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +020072 const char **outname)
Andre Przywara4b9340a2017-04-26 01:32:33 +010073{
Simon Glass3a8ee3d2020-11-05 06:32:05 -070074 struct udevice *sysinfo;
Andre Przywara4b9340a2017-04-26 01:32:33 +010075 const char *name, *str;
Philipp Tomsicha616c782017-09-13 21:29:34 +020076 __maybe_unused int node;
Andre Przywara4b9340a2017-04-26 01:32:33 +010077 int len, i;
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +020078 bool found = true;
Andre Przywara4b9340a2017-04-26 01:32:33 +010079
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -060080 name = fdt_getprop(ctx->fit, ctx->conf_node, type, &len);
Andre Przywara4b9340a2017-04-26 01:32:33 +010081 if (!name) {
82 debug("cannot find property '%s': %d\n", type, len);
83 return -EINVAL;
84 }
85
86 str = name;
87 for (i = 0; i < index; i++) {
88 str = strchr(str, '\0') + 1;
89 if (!str || (str - name >= len)) {
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +020090 found = false;
91 break;
Andre Przywara4b9340a2017-04-26 01:32:33 +010092 }
93 }
94
Simon Glass3a8ee3d2020-11-05 06:32:05 -070095 if (!found && CONFIG_IS_ENABLED(SYSINFO) && !sysinfo_get(&sysinfo)) {
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +020096 int rc;
97 /*
Simon Glass3a8ee3d2020-11-05 06:32:05 -070098 * no string in the property for this index. Check if the
99 * sysinfo-level code can supply one.
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200100 */
Sean Anderson4d65c6b2021-04-20 10:50:56 -0400101 rc = sysinfo_detect(sysinfo);
102 if (rc)
103 return rc;
104
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700105 rc = sysinfo_get_fit_loadable(sysinfo, index - i - 1, type,
106 &str);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200107 if (rc && rc != -ENOENT)
108 return rc;
109
110 if (!rc) {
111 /*
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700112 * The sysinfo provided a name for a loadable.
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200113 * Try to match it against the description properties
114 * first. If no matching node is found, use it as a
115 * node name.
116 */
117 int node;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600118 int images = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200119
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600120 node = find_node_from_desc(ctx->fit, images, str);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200121 if (node > 0)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600122 str = fdt_get_name(ctx->fit, node, NULL);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200123
124 found = true;
125 }
126 }
127
128 if (!found) {
129 debug("no string for index %d\n", index);
130 return -E2BIG;
131 }
132
133 *outname = str;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200134 return 0;
135}
136
137/**
138 * spl_fit_get_image_node(): By using the matching configuration subnode,
139 * retrieve the name of an image, specified by a property name and an index
140 * into that.
141 * @fit: Pointer to the FDT blob.
142 * @images: Offset of the /images subnode.
143 * @type: Name of the property within the configuration subnode.
144 * @index: Index into the list of strings in this property.
145 *
146 * Return: the node offset of the respective image node or a negative
147 * error number.
148 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600149static int spl_fit_get_image_node(const struct spl_fit_info *ctx,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200150 const char *type, int index)
151{
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +0200152 const char *str;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200153 int err;
154 int node;
155
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600156 err = spl_fit_get_image_name(ctx, type, index, &str);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200157 if (err)
158 return err;
159
Andre Przywara4b9340a2017-04-26 01:32:33 +0100160 debug("%s: '%s'\n", type, str);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200161
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600162 node = fdt_subnode_offset(ctx->fit, ctx->images_node, str);
Andre Przywara4b9340a2017-04-26 01:32:33 +0100163 if (node < 0) {
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200164 pr_err("cannot find image node '%s': %d\n", str, node);
Andre Przywara4b9340a2017-04-26 01:32:33 +0100165 return -EINVAL;
166 }
167
Andre Przywara736806f2017-04-26 01:32:34 +0100168 return node;
Andre Przywara4b9340a2017-04-26 01:32:33 +0100169}
170
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530171static int get_aligned_image_offset(struct spl_load_info *info, int offset)
172{
173 /*
174 * If it is a FS read, get the first address before offset which is
175 * aligned to ARCH_DMA_MINALIGN. If it is raw read return the
176 * block number to which offset belongs.
177 */
178 if (info->filename)
179 return offset & ~(ARCH_DMA_MINALIGN - 1);
180
181 return offset / info->bl_len;
182}
183
184static int get_aligned_image_overhead(struct spl_load_info *info, int offset)
185{
186 /*
187 * If it is a FS read, get the difference between the offset and
188 * the first address before offset which is aligned to
189 * ARCH_DMA_MINALIGN. If it is raw read return the offset within the
190 * block.
191 */
192 if (info->filename)
193 return offset & (ARCH_DMA_MINALIGN - 1);
194
195 return offset % info->bl_len;
196}
197
198static int get_aligned_image_size(struct spl_load_info *info, int data_size,
199 int offset)
200{
Lokesh Vutla3cc1f382016-07-19 14:56:14 +0530201 data_size = data_size + get_aligned_image_overhead(info, offset);
202
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530203 if (info->filename)
Lokesh Vutla3cc1f382016-07-19 14:56:14 +0530204 return data_size;
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530205
206 return (data_size + info->bl_len - 1) / info->bl_len;
207}
208
Andre Przywara8baa3812017-04-26 01:32:36 +0100209/**
210 * spl_load_fit_image(): load the image described in a certain FIT node
211 * @info: points to information about the device to load data from
212 * @sector: the start sector of the FIT image on the device
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600213 * @ctx: points to the FIT context structure
Andre Przywara8baa3812017-04-26 01:32:36 +0100214 * @node: offset of the DT node describing the image to load (relative
Philipp Tomsicha616c782017-09-13 21:29:34 +0200215 * to @fit)
Andre Przywara8baa3812017-04-26 01:32:36 +0100216 * @image_info: will be filled with information about the loaded image
Philipp Tomsicha616c782017-09-13 21:29:34 +0200217 * If the FIT node does not contain a "load" (address) property,
218 * the image gets loaded to the address pointed to by the
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500219 * load_addr member in this struct, if load_addr is not 0
Andre Przywara8baa3812017-04-26 01:32:36 +0100220 *
221 * Return: 0 on success or a negative error number.
222 */
223static int spl_load_fit_image(struct spl_load_info *info, ulong sector,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600224 const struct spl_fit_info *ctx, int node,
Andre Przywara8baa3812017-04-26 01:32:36 +0100225 struct spl_image_info *image_info)
226{
Michal Simek3313ae62018-07-18 14:33:15 +0200227 int offset;
Andre Przywara8baa3812017-04-26 01:32:36 +0100228 size_t length;
York Sun5fd13d92017-08-15 11:14:44 -0700229 int len;
York Sun933f67a2017-09-15 08:21:13 -0700230 ulong size;
Simon Glass891d9e82021-03-07 17:35:14 -0700231 ulong load_addr;
232 void *load_ptr;
Andre Przywara8baa3812017-04-26 01:32:36 +0100233 void *src;
234 ulong overhead;
235 int nr_sectors;
York Sun7264f292017-08-15 11:14:43 -0700236 uint8_t image_comp = -1, type = -1;
York Sun5fd13d92017-08-15 11:14:44 -0700237 const void *data;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600238 const void *fit = ctx->fit;
Peng Fana1be94b2017-12-05 13:20:59 +0800239 bool external_data = false;
York Sun7264f292017-08-15 11:14:43 -0700240
Michal Simek29bd8ad2020-09-09 14:41:56 +0200241 if (IS_ENABLED(CONFIG_SPL_FPGA) ||
Marek Vasut56419ea2018-06-01 23:19:29 +0200242 (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP))) {
243 if (fit_image_get_type(fit, node, &type))
244 puts("Cannot get image type.\n");
245 else
246 debug("%s ", genimg_get_type_name(type));
247 }
248
Klaus H. Sorensen602ce1d2019-12-11 11:03:33 +0000249 if (IS_ENABLED(CONFIG_SPL_GZIP)) {
250 fit_image_get_comp(fit, node, &image_comp);
251 debug("%s ", genimg_get_comp_name(image_comp));
York Sun7264f292017-08-15 11:14:43 -0700252 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100253
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500254 if (fit_image_get_load(fit, node, &load_addr)) {
255 if (!image_info->load_addr) {
256 printf("Can't load %s: No load address and no buffer\n",
257 fit_get_name(fit, node, NULL));
258 return -ENOBUFS;
259 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100260 load_addr = image_info->load_addr;
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500261 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100262
Peng Fana1be94b2017-12-05 13:20:59 +0800263 if (!fit_image_get_data_position(fit, node, &offset)) {
264 external_data = true;
265 } else if (!fit_image_get_data_offset(fit, node, &offset)) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600266 offset += ctx->ext_data_offset;
Peng Fana1be94b2017-12-05 13:20:59 +0800267 external_data = true;
268 }
269
270 if (external_data) {
Simon Glass891d9e82021-03-07 17:35:14 -0700271 void *src_ptr;
272
Peng Fana1be94b2017-12-05 13:20:59 +0800273 /* External data */
York Sun5fd13d92017-08-15 11:14:44 -0700274 if (fit_image_get_data_size(fit, node, &len))
275 return -ENOENT;
Andre Przywara8baa3812017-04-26 01:32:36 +0100276
Nishanth Menon6d99f862021-10-19 12:32:29 -0500277 /* Dont bother to copy 0 byte data, but warn, though */
278 if (!len) {
279 log_warning("%s: Skip load '%s': image size is 0!\n",
280 __func__, fit_get_name(fit, node, NULL));
281 return 0;
282 }
283
Simon Glass891d9e82021-03-07 17:35:14 -0700284 src_ptr = map_sysmem(ALIGN(load_addr, ARCH_DMA_MINALIGN), len);
York Sun5fd13d92017-08-15 11:14:44 -0700285 length = len;
Andre Przywara8baa3812017-04-26 01:32:36 +0100286
York Sun5fd13d92017-08-15 11:14:44 -0700287 overhead = get_aligned_image_overhead(info, offset);
288 nr_sectors = get_aligned_image_size(info, length, offset);
289
Michal Simek3313ae62018-07-18 14:33:15 +0200290 if (info->read(info,
291 sector + get_aligned_image_offset(info, offset),
Simon Glass891d9e82021-03-07 17:35:14 -0700292 nr_sectors, src_ptr) != nr_sectors)
York Sun5fd13d92017-08-15 11:14:44 -0700293 return -EIO;
294
Simon Glass891d9e82021-03-07 17:35:14 -0700295 debug("External data: dst=%p, offset=%x, size=%lx\n",
296 src_ptr, offset, (unsigned long)length);
297 src = src_ptr + overhead;
York Sun5fd13d92017-08-15 11:14:44 -0700298 } else {
299 /* Embedded data */
300 if (fit_image_get_data(fit, node, &data, &length)) {
301 puts("Cannot get image data/size\n");
302 return -ENOENT;
303 }
304 debug("Embedded data: dst=%lx, size=%lx\n", load_addr,
305 (unsigned long)length);
Simon Glass891d9e82021-03-07 17:35:14 -0700306 src = (void *)data; /* cast away const */
York Sun5fd13d92017-08-15 11:14:44 -0700307 }
308
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600309 if (CONFIG_IS_ENABLED(FIT_SIGNATURE)) {
310 printf("## Checking hash(es) for Image %s ... ",
311 fit_get_name(fit, node, NULL));
Simon Glass99f844b2021-11-12 12:28:10 -0700312 if (!fit_image_verify_with_data(fit, node, gd_fdt_blob(), src,
313 length))
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600314 return -EPERM;
315 puts("OK\n");
316 }
Ben Whittend154ca62018-06-07 11:37:27 +0100317
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600318 if (CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS))
Lokesh Vutla481d3942021-06-11 11:45:05 +0300319 board_fit_image_post_process(fit, node, &src, &length);
Andre Przywara8baa3812017-04-26 01:32:36 +0100320
Simon Glass891d9e82021-03-07 17:35:14 -0700321 load_ptr = map_sysmem(load_addr, length);
Michal Simek975e7892018-07-24 15:05:00 +0200322 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
York Sun933f67a2017-09-15 08:21:13 -0700323 size = length;
Simon Glass891d9e82021-03-07 17:35:14 -0700324 if (gunzip(load_ptr, CONFIG_SYS_BOOTM_LEN, src, &size)) {
York Sun7264f292017-08-15 11:14:43 -0700325 puts("Uncompressing error\n");
326 return -EIO;
327 }
York Sun933f67a2017-09-15 08:21:13 -0700328 length = size;
York Sun7264f292017-08-15 11:14:43 -0700329 } else {
Simon Glass891d9e82021-03-07 17:35:14 -0700330 memcpy(load_ptr, src, length);
York Sun7264f292017-08-15 11:14:43 -0700331 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100332
333 if (image_info) {
Michal Simekcaa7fc22020-09-03 11:24:28 +0200334 ulong entry_point;
335
Andre Przywara8baa3812017-04-26 01:32:36 +0100336 image_info->load_addr = load_addr;
337 image_info->size = length;
Michal Simekcaa7fc22020-09-03 11:24:28 +0200338
339 if (!fit_image_get_entry(fit, node, &entry_point))
340 image_info->entry_point = entry_point;
341 else
342 image_info->entry_point = FDT_ERROR;
Andre Przywara8baa3812017-04-26 01:32:36 +0100343 }
344
345 return 0;
346}
347
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600348static bool os_takes_devicetree(uint8_t os)
349{
350 switch (os) {
351 case IH_OS_U_BOOT:
352 return true;
353 case IH_OS_LINUX:
354 return IS_ENABLED(CONFIG_SPL_OS_BOOT);
355 default:
356 return false;
357 }
358}
359
Philipp Tomsichd8796162017-09-13 21:29:32 +0200360static int spl_fit_append_fdt(struct spl_image_info *spl_image,
361 struct spl_load_info *info, ulong sector,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600362 const struct spl_fit_info *ctx)
Philipp Tomsichd8796162017-09-13 21:29:32 +0200363{
364 struct spl_image_info image_info;
Michal Simek9d13b872019-10-22 16:39:11 +0200365 int node, ret = 0, index = 0;
Lukas Auerb83edfb2019-08-21 21:14:42 +0200366
367 /*
368 * Use the address following the image as target address for the
Marek Vasut5675ed72020-10-19 23:40:26 +0200369 * device tree.
Lukas Auerb83edfb2019-08-21 21:14:42 +0200370 */
Marek Vasut5675ed72020-10-19 23:40:26 +0200371 image_info.load_addr = spl_image->load_addr + spl_image->size;
Philipp Tomsichd8796162017-09-13 21:29:32 +0200372
373 /* Figure out which device tree the board wants to use */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600374 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index++);
Philipp Tomsichd8796162017-09-13 21:29:32 +0200375 if (node < 0) {
376 debug("%s: cannot find FDT node\n", __func__);
Lukas Auerb83edfb2019-08-21 21:14:42 +0200377
378 /*
379 * U-Boot did not find a device tree inside the FIT image. Use
380 * the U-Boot device tree instead.
381 */
382 if (gd->fdt_blob)
383 memcpy((void *)image_info.load_addr, gd->fdt_blob,
384 fdt_totalsize(gd->fdt_blob));
385 else
386 return node;
387 } else {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600388 ret = spl_load_fit_image(info, sector, ctx, node,
Lukas Auerb83edfb2019-08-21 21:14:42 +0200389 &image_info);
390 if (ret < 0)
391 return ret;
Philipp Tomsichd8796162017-09-13 21:29:32 +0200392 }
393
Philipp Tomsicha616c782017-09-13 21:29:34 +0200394 /* Make the load-address of the FDT available for the SPL framework */
Simon Glass891d9e82021-03-07 17:35:14 -0700395 spl_image->fdt_addr = map_sysmem(image_info.load_addr, 0);
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600396 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
397 return 0;
398
Tom Rinia3fda0d2023-01-10 11:19:28 -0500399#if CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200400 void *tmpbuffer = NULL;
401
Michal Simek9d13b872019-10-22 16:39:11 +0200402 for (; ; index++) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600403 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index);
Jean-Jacques Hiblot24bf44c2019-10-22 16:39:14 +0200404 if (node == -E2BIG) {
Michal Simek9d13b872019-10-22 16:39:11 +0200405 debug("%s: No additional FDT node\n", __func__);
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200406 break;
Jean-Jacques Hiblot24bf44c2019-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 Simek9d13b872019-10-22 16:39:11 +0200411 }
Philipp Tomsicha616c782017-09-13 21:29:34 +0200412
Jean-Jacques Hiblotea376eb2019-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 Herbrechtsmeier77253c52022-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 Hiblotea376eb2019-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;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600428 ret = spl_load_fit_image(info, sector, ctx,
Michal Simek9d13b872019-10-22 16:39:11 +0200429 node, &image_info);
430 if (ret < 0)
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200431 break;
Michal Simek9d13b872019-10-22 16:39:11 +0200432
Jean-Jacques Hiblot99329be2019-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 Hiblotea376eb2019-10-22 16:39:13 +0200437 break;
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200438
Michal Simek9d13b872019-10-22 16:39:11 +0200439 ret = fdt_overlay_apply_verbose(spl_image->fdt_addr,
440 (void *)image_info.load_addr);
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200441 if (ret) {
442 pr_err("failed to apply DT overlay %s\n",
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600443 fit_get_name(ctx->fit, node, NULL));
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200444 break;
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200445 }
Michal Simek9d13b872019-10-22 16:39:11 +0200446
447 debug("%s: DT overlay %s applied\n", __func__,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600448 fit_get_name(ctx->fit, node, NULL));
Michal Simek9d13b872019-10-22 16:39:11 +0200449 }
Heinrich Schuchardt077e72c2020-04-20 12:44:01 +0200450 free(tmpbuffer);
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200451 if (ret)
452 return ret;
Tom Rinia3fda0d2023-01-10 11:19:28 -0500453#endif
Jean-Jacques Hiblot99329be2019-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 Hiblot99329be2019-10-22 16:39:12 +0200458
Philipp Tomsicha616c782017-09-13 21:29:34 +0200459 return ret;
460}
461
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600462static int spl_fit_record_loadable(const struct spl_fit_info *ctx, int index,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200463 void *blob, struct spl_image_info *image)
464{
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100465 int ret = 0;
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +0200466 const char *name;
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100467 int node;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200468
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600469 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
470 return 0;
471
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600472 ret = spl_fit_get_image_name(ctx, "loadables", index, &name);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200473 if (ret < 0)
474 return ret;
475
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600476 node = spl_fit_get_image_node(ctx, "loadables", index);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200477
478 ret = fdt_record_loadable(blob, index, name, image->load_addr,
479 image->size, image->entry_point,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600480 fdt_getprop(ctx->fit, node, "type", NULL),
Michal Simekbe2d1a82021-05-27 11:40:09 +0200481 fdt_getprop(ctx->fit, node, "os", NULL),
482 fdt_getprop(ctx->fit, node, "arch", NULL));
Philipp Tomsichd8796162017-09-13 21:29:32 +0200483 return ret;
484}
485
Alexandru Gagniuc35f4f8e2021-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 Tomsich337bbb62017-11-24 13:26:03 +0100500static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os)
501{
Alexandru Gagniucaeedeae2021-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 Hollandcf705532020-10-21 21:12:13 -0500504
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600505 const char *name = fdt_getprop(fit, noffset, FIT_OS_PROP, NULL);
Samuel Hollandcf705532020-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 Tomsich337bbb62017-11-24 13:26:03 +0100520}
521
Andreas Dannenberge1eb6ad2019-06-04 17:55:46 -0500522/*
Alexandru Gagniuc03f1f782020-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 Herbrechtsmeier77253c52022-06-14 16:12:00 +0200530 buf = malloc_cache_aligned(size);
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500531 if (!buf) {
532 pr_err("Could not get FIT buffer of %lu bytes\n", (ulong)size);
533 pr_err("\tcheck CONFIG_SYS_SPL_MALLOC_SIZE\n");
534 buf = spl_get_load_buffer(0, size);
535 }
536 return buf;
537}
538
Heiko Schocherdeb80ec2021-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 Gagniuc03f1f782020-10-21 18:32:58 -0500544/*
Andreas Dannenberge1eb6ad2019-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 Schocher884ba502021-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 Gagniucd8a39512021-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 Gagniuc55e7a1a2021-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 Gagniuc35f4f8e2021-03-29 12:05:14 -0500572 const char *compatible;
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500573 int ret;
Oleksandr Suvorov282eed52022-07-22 17:16:07 +0300574 int devnum = 0;
575 int flags = 0;
Alexandru Gagniuc55e7a1a2021-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 Gagniuc35f4f8e2021-03-29 12:05:14 -0500580 compatible = fdt_getprop(ctx->fit, node, "compatible", NULL);
Oleksandr Suvorov71f1a532022-07-22 17:16:09 +0300581 if (!compatible) {
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500582 warn_deprecated("'fpga' image without 'compatible' property");
Oleksandr Suvorov71f1a532022-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 Gagniuc35f4f8e2021-03-29 12:05:14 -0500590
Oleksandr Suvorov282eed52022-07-22 17:16:07 +0300591 ret = fpga_load(devnum, (void *)fpga_image->load_addr,
592 fpga_image->size, BIT_FULL, flags);
Alexandru Gagniuc55e7a1a2021-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 Gagniucd8a39512021-03-29 12:05:13 -0500616 warn_deprecated("'fpga' property in config node. Use 'loadables'");
617
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500618 /* Load the image and set up the fpga_image structure */
619 ret = spl_load_fit_image(info, sector, ctx, node, &fpga_image);
620 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 Gagniuc917fa362021-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 Glassf1dcee52016-02-22 22:55:56 -0700631{
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600632 unsigned long count, size;
Simon Glassf1dcee52016-02-22 22:55:56 -0700633 int sectors;
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600634 void *buf;
Simon Glassf1dcee52016-02-22 22:55:56 -0700635
636 /*
York Sunc8bc3c02017-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 Glassf1dcee52016-02-22 22:55:56 -0700640 */
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600641 size = ALIGN(fdt_totalsize(fit_header), 4);
Ye Lie246bfc2018-11-17 09:10:25 +0000642 size = board_spl_fit_size_align(size);
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600643 ctx->ext_data_offset = ALIGN(size, 4);
Simon Glassf1dcee52016-02-22 22:55:56 -0700644
645 /*
646 * So far we only have one block of data from the FIT. Read the entire
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500647 * thing, including that first block.
York Sunc8bc3c02017-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 Glassf1dcee52016-02-22 22:55:56 -0700651 */
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530652 sectors = get_aligned_image_size(info, size, 0);
Heiko Schocherdeb80ec2021-08-17 08:17:18 +0200653 buf = board_spl_fit_buffer_addr(size, sectors, info->bl_len);
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600654
655 count = info->read(info, sector, sectors, buf);
656 ctx->fit = buf;
Ye Lie246bfc2018-11-17 09:10:25 +0000657 debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu, size=0x%lx\n",
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600658 sector, sectors, buf, count, size);
Ye Lie246bfc2018-11-17 09:10:25 +0000659
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600660 return (count == 0) ? -EIO : 0;
661}
Simon Glassf1dcee52016-02-22 22:55:56 -0700662
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600663static int spl_simple_fit_parse(struct spl_fit_info *ctx)
664{
Alexandru Gagniuc9e9aa0b2021-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 Reynes7d5b1bf2020-10-29 18:50:29 +0100669
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -0600670 if (IS_ENABLED(CONFIG_SPL_FIT_SIGNATURE)) {
Philippe Reynes7d5b1bf2020-10-29 18:50:29 +0100671 printf("## Checking hash(es) for config %s ... ",
Alexandru Gagniuc9e9aa0b2021-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 Reynes7d5b1bf2020-10-29 18:50:29 +0100674 return -EPERM;
675 puts("OK\n");
676 }
677
Andre Przywara736806f2017-04-26 01:32:34 +0100678 /* find the node holding the images information */
Alexandru Gagniuc917fa362021-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 Glassf1dcee52016-02-22 22:55:56 -0700684 }
Andre Przywara736806f2017-04-26 01:32:34 +0100685
Alexandru Gagniuc917fa362021-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 Gagniuc3dc20792021-01-20 10:46:51 -0600695 int ret;
Alexandru Gagniuc917fa362021-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 Schocher884ba502021-08-06 06:44:26 +0200707 ctx.fit = spl_load_simple_fit_fix_load(ctx.fit);
708
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600709 ret = spl_simple_fit_parse(&ctx);
710 if (ret < 0)
711 return ret;
712
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500713 if (IS_ENABLED(CONFIG_SPL_FPGA))
714 spl_fit_load_fpga(&ctx, info, sector);
Marek Vasut26a64222018-05-12 22:25:28 +0200715
Philipp Tomsichd8796162017-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 */
York Sunc8bc3c02017-08-15 11:14:45 -0700722 if (node < 0)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600723 node = spl_fit_get_image_node(&ctx, FIT_FIRMWARE_PROP, 0);
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600724
725 if (node < 0 && IS_ENABLED(CONFIG_SPL_OS_BOOT))
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600726 node = spl_fit_get_image_node(&ctx, FIT_KERNEL_PROP, 0);
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600727
Simon Glassf1dcee52016-02-22 22:55:56 -0700728 if (node < 0) {
Andre Przywara736806f2017-04-26 01:32:34 +0100729 debug("could not find firmware image, trying loadables...\n");
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600730 node = spl_fit_get_image_node(&ctx, "loadables", 0);
Andre Przywara411cf322017-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 Przywara736806f2017-04-26 01:32:34 +0100736 }
737 if (node < 0) {
738 debug("%s: Cannot find u-boot image node: %d\n",
739 __func__, node);
Simon Glassf1dcee52016-02-22 22:55:56 -0700740 return -1;
741 }
742
Andre Przywara8baa3812017-04-26 01:32:36 +0100743 /* Load the image and set up the spl_image structure */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600744 ret = spl_load_fit_image(info, sector, &ctx, node, spl_image);
Andre Przywara8baa3812017-04-26 01:32:36 +0100745 if (ret)
746 return ret;
747
Philipp Tomsichd8796162017-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 Gagniuc3dc20792021-01-20 10:46:51 -0600752 if (!spl_fit_image_get_os(ctx.fit, node, &spl_image->os))
York Sunc8bc3c02017-08-15 11:14:45 -0700753 debug("Image OS is %s\n", genimg_get_os_name(spl_image->os));
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600754 else if (!IS_ENABLED(CONFIG_SPL_OS_BOOT))
Philipp Tomsichd8796162017-09-13 21:29:32 +0200755 spl_image->os = IH_OS_U_BOOT;
Simon Glassf1dcee52016-02-22 22:55:56 -0700756
Philipp Tomsichd8796162017-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 Gagniuc71551052021-01-20 10:46:56 -0600761 if (os_takes_devicetree(spl_image->os)) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600762 ret = spl_fit_append_fdt(spl_image, info, sector, &ctx);
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600763 if (ret < 0 && spl_image->os != IH_OS_U_BOOT)
Dario Binacchi585b4682020-05-27 13:56:19 +0200764 return ret;
765 }
Simon Glassf1dcee52016-02-22 22:55:56 -0700766
Jean-Jacques Hiblot6b8b98d2019-10-22 16:39:10 +0200767 firmware_node = node;
Andre Przywara411cf322017-04-26 01:32:37 +0100768 /* Now check if there are more images for us to load */
769 for (; ; index++) {
Philipp Tomsichd8796162017-09-13 21:29:32 +0200770 uint8_t os_type = IH_OS_INVALID;
771
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600772 node = spl_fit_get_image_node(&ctx, "loadables", index);
Andre Przywara411cf322017-04-26 01:32:37 +0100773 if (node < 0)
774 break;
775
Jean-Jacques Hiblot6b8b98d2019-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 Gagniucf0a6ec32021-03-29 12:05:10 -0500784 image_info.load_addr = 0;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600785 ret = spl_load_fit_image(info, sector, &ctx, node, &image_info);
Philippe Reynesc61b2bf2020-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 Przywara411cf322017-04-26 01:32:37 +0100791
Alexandru Gagniuc35f4f8e2021-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 Gagniuc3dc20792021-01-20 10:46:51 -0600795 if (!spl_fit_image_get_os(ctx.fit, node, &os_type))
Philipp Tomsichd8796162017-09-13 21:29:32 +0200796 debug("Loadable is %s\n", genimg_get_os_name(os_type));
797
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600798 if (os_takes_devicetree(os_type)) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600799 spl_fit_append_fdt(&image_info, info, sector, &ctx);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200800 spl_image->fdt_addr = image_info.fdt_addr;
801 }
Philipp Tomsichd8796162017-09-13 21:29:32 +0200802
Andre Przywara411cf322017-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 Tomsicha616c782017-09-13 21:29:34 +0200810
811 /* Record our loadables into the FDT */
812 if (spl_image->fdt_addr)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600813 spl_fit_record_loadable(&ctx, index,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200814 spl_image->fdt_addr,
815 &image_info);
Andre Przywara411cf322017-04-26 01:32:37 +0100816 }
817
818 /*
Tom Rini65cc0e22022-11-16 13:10:41 -0500819 * If a platform does not provide CFG_SYS_UBOOT_START, U-Boot's
Andre Przywara411cf322017-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 Lie246bfc2018-11-17 09:10:25 +0000826 spl_image->flags |= SPL_FIT_FOUND;
827
Andre Przywara411cf322017-04-26 01:32:37 +0100828 return 0;
Simon Glassf1dcee52016-02-22 22:55:56 -0700829}