blob: c1ed31e367c764a4c129accb9e64b835b182acdc [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
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +020023#ifndef CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ
24#define CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ (64 * 1024)
25#endif
26
York Sun7264f292017-08-15 11:14:43 -070027#ifndef CONFIG_SYS_BOOTM_LEN
28#define CONFIG_SYS_BOOTM_LEN (64 << 20)
29#endif
30
Alexandru Gagniuc917fa362021-01-20 10:46:50 -060031struct spl_fit_info {
32 const void *fit; /* Pointer to a valid FIT blob */
33 size_t ext_data_offset; /* Offset to FIT external data (end of FIT) */
34 int images_node; /* FDT offset to "/images" node */
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -060035 int conf_node; /* FDT offset to selected configuration node */
Alexandru Gagniuc917fa362021-01-20 10:46:50 -060036};
37
Alexandru Gagniucefc4ad0bc2021-01-20 10:46:49 -060038__weak void board_spl_fit_post_load(const void *fit)
Ye Lie246bfc2018-11-17 09:10:25 +000039{
40}
41
42__weak ulong board_spl_fit_size_align(ulong size)
43{
44 return size;
45}
46
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +020047static int find_node_from_desc(const void *fit, int node, const char *str)
48{
49 int child;
50
51 if (node < 0)
52 return -EINVAL;
53
54 /* iterate the FIT nodes and find a matching description */
55 for (child = fdt_first_subnode(fit, node); child >= 0;
56 child = fdt_next_subnode(fit, child)) {
57 int len;
58 const char *desc = fdt_getprop(fit, child, "description", &len);
59
60 if (!desc)
61 continue;
62
63 if (!strcmp(desc, str))
64 return child;
65 }
66
67 return -ENOENT;
68}
69
Andre Przywara736806f2017-04-26 01:32:34 +010070/**
Philipp Tomsicha616c782017-09-13 21:29:34 +020071 * spl_fit_get_image_name(): By using the matching configuration subnode,
Andre Przywara736806f2017-04-26 01:32:34 +010072 * retrieve the name of an image, specified by a property name and an index
73 * into that.
74 * @fit: Pointer to the FDT blob.
75 * @images: Offset of the /images subnode.
76 * @type: Name of the property within the configuration subnode.
77 * @index: Index into the list of strings in this property.
Philipp Tomsicha616c782017-09-13 21:29:34 +020078 * @outname: Name of the image
Andre Przywara736806f2017-04-26 01:32:34 +010079 *
Philipp Tomsicha616c782017-09-13 21:29:34 +020080 * Return: 0 on success, or a negative error number
Andre Przywara736806f2017-04-26 01:32:34 +010081 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -060082static int spl_fit_get_image_name(const struct spl_fit_info *ctx,
Philipp Tomsicha616c782017-09-13 21:29:34 +020083 const char *type, int index,
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +020084 const char **outname)
Andre Przywara4b9340a2017-04-26 01:32:33 +010085{
Simon Glass3a8ee3d2020-11-05 06:32:05 -070086 struct udevice *sysinfo;
Andre Przywara4b9340a2017-04-26 01:32:33 +010087 const char *name, *str;
Philipp Tomsicha616c782017-09-13 21:29:34 +020088 __maybe_unused int node;
Andre Przywara4b9340a2017-04-26 01:32:33 +010089 int len, i;
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +020090 bool found = true;
Andre Przywara4b9340a2017-04-26 01:32:33 +010091
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -060092 name = fdt_getprop(ctx->fit, ctx->conf_node, type, &len);
Andre Przywara4b9340a2017-04-26 01:32:33 +010093 if (!name) {
94 debug("cannot find property '%s': %d\n", type, len);
95 return -EINVAL;
96 }
97
98 str = name;
99 for (i = 0; i < index; i++) {
100 str = strchr(str, '\0') + 1;
101 if (!str || (str - name >= len)) {
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200102 found = false;
103 break;
Andre Przywara4b9340a2017-04-26 01:32:33 +0100104 }
105 }
106
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700107 if (!found && CONFIG_IS_ENABLED(SYSINFO) && !sysinfo_get(&sysinfo)) {
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200108 int rc;
109 /*
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700110 * no string in the property for this index. Check if the
111 * sysinfo-level code can supply one.
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200112 */
Sean Anderson4d65c6b2021-04-20 10:50:56 -0400113 rc = sysinfo_detect(sysinfo);
114 if (rc)
115 return rc;
116
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700117 rc = sysinfo_get_fit_loadable(sysinfo, index - i - 1, type,
118 &str);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200119 if (rc && rc != -ENOENT)
120 return rc;
121
122 if (!rc) {
123 /*
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700124 * The sysinfo provided a name for a loadable.
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200125 * Try to match it against the description properties
126 * first. If no matching node is found, use it as a
127 * node name.
128 */
129 int node;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600130 int images = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200131
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600132 node = find_node_from_desc(ctx->fit, images, str);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200133 if (node > 0)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600134 str = fdt_get_name(ctx->fit, node, NULL);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200135
136 found = true;
137 }
138 }
139
140 if (!found) {
141 debug("no string for index %d\n", index);
142 return -E2BIG;
143 }
144
145 *outname = str;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200146 return 0;
147}
148
149/**
150 * spl_fit_get_image_node(): By using the matching configuration subnode,
151 * retrieve the name of an image, specified by a property name and an index
152 * into that.
153 * @fit: Pointer to the FDT blob.
154 * @images: Offset of the /images subnode.
155 * @type: Name of the property within the configuration subnode.
156 * @index: Index into the list of strings in this property.
157 *
158 * Return: the node offset of the respective image node or a negative
159 * error number.
160 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600161static int spl_fit_get_image_node(const struct spl_fit_info *ctx,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200162 const char *type, int index)
163{
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +0200164 const char *str;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200165 int err;
166 int node;
167
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600168 err = spl_fit_get_image_name(ctx, type, index, &str);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200169 if (err)
170 return err;
171
Andre Przywara4b9340a2017-04-26 01:32:33 +0100172 debug("%s: '%s'\n", type, str);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200173
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600174 node = fdt_subnode_offset(ctx->fit, ctx->images_node, str);
Andre Przywara4b9340a2017-04-26 01:32:33 +0100175 if (node < 0) {
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200176 pr_err("cannot find image node '%s': %d\n", str, node);
Andre Przywara4b9340a2017-04-26 01:32:33 +0100177 return -EINVAL;
178 }
179
Andre Przywara736806f2017-04-26 01:32:34 +0100180 return node;
Andre Przywara4b9340a2017-04-26 01:32:33 +0100181}
182
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530183static int get_aligned_image_offset(struct spl_load_info *info, int offset)
184{
185 /*
186 * If it is a FS read, get the first address before offset which is
187 * aligned to ARCH_DMA_MINALIGN. If it is raw read return the
188 * block number to which offset belongs.
189 */
190 if (info->filename)
191 return offset & ~(ARCH_DMA_MINALIGN - 1);
192
193 return offset / info->bl_len;
194}
195
196static int get_aligned_image_overhead(struct spl_load_info *info, int offset)
197{
198 /*
199 * If it is a FS read, get the difference between the offset and
200 * the first address before offset which is aligned to
201 * ARCH_DMA_MINALIGN. If it is raw read return the offset within the
202 * block.
203 */
204 if (info->filename)
205 return offset & (ARCH_DMA_MINALIGN - 1);
206
207 return offset % info->bl_len;
208}
209
210static int get_aligned_image_size(struct spl_load_info *info, int data_size,
211 int offset)
212{
Lokesh Vutla3cc1f382016-07-19 14:56:14 +0530213 data_size = data_size + get_aligned_image_overhead(info, offset);
214
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530215 if (info->filename)
Lokesh Vutla3cc1f382016-07-19 14:56:14 +0530216 return data_size;
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530217
218 return (data_size + info->bl_len - 1) / info->bl_len;
219}
220
Andre Przywara8baa3812017-04-26 01:32:36 +0100221/**
222 * spl_load_fit_image(): load the image described in a certain FIT node
223 * @info: points to information about the device to load data from
224 * @sector: the start sector of the FIT image on the device
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600225 * @ctx: points to the FIT context structure
Andre Przywara8baa3812017-04-26 01:32:36 +0100226 * @node: offset of the DT node describing the image to load (relative
Philipp Tomsicha616c782017-09-13 21:29:34 +0200227 * to @fit)
Andre Przywara8baa3812017-04-26 01:32:36 +0100228 * @image_info: will be filled with information about the loaded image
Philipp Tomsicha616c782017-09-13 21:29:34 +0200229 * If the FIT node does not contain a "load" (address) property,
230 * the image gets loaded to the address pointed to by the
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500231 * load_addr member in this struct, if load_addr is not 0
Andre Przywara8baa3812017-04-26 01:32:36 +0100232 *
233 * Return: 0 on success or a negative error number.
234 */
235static int spl_load_fit_image(struct spl_load_info *info, ulong sector,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600236 const struct spl_fit_info *ctx, int node,
Andre Przywara8baa3812017-04-26 01:32:36 +0100237 struct spl_image_info *image_info)
238{
Michal Simek3313ae62018-07-18 14:33:15 +0200239 int offset;
Andre Przywara8baa3812017-04-26 01:32:36 +0100240 size_t length;
York Sun5fd13d92017-08-15 11:14:44 -0700241 int len;
York Sun933f67a2017-09-15 08:21:13 -0700242 ulong size;
Simon Glass891d9e82021-03-07 17:35:14 -0700243 ulong load_addr;
244 void *load_ptr;
Andre Przywara8baa3812017-04-26 01:32:36 +0100245 void *src;
246 ulong overhead;
247 int nr_sectors;
York Sun7264f292017-08-15 11:14:43 -0700248 uint8_t image_comp = -1, type = -1;
York Sun5fd13d92017-08-15 11:14:44 -0700249 const void *data;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600250 const void *fit = ctx->fit;
Peng Fana1be94b2017-12-05 13:20:59 +0800251 bool external_data = false;
York Sun7264f292017-08-15 11:14:43 -0700252
Michal Simek29bd8ad2020-09-09 14:41:56 +0200253 if (IS_ENABLED(CONFIG_SPL_FPGA) ||
Marek Vasut56419ea2018-06-01 23:19:29 +0200254 (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP))) {
255 if (fit_image_get_type(fit, node, &type))
256 puts("Cannot get image type.\n");
257 else
258 debug("%s ", genimg_get_type_name(type));
259 }
260
Klaus H. Sorensen602ce1d2019-12-11 11:03:33 +0000261 if (IS_ENABLED(CONFIG_SPL_GZIP)) {
262 fit_image_get_comp(fit, node, &image_comp);
263 debug("%s ", genimg_get_comp_name(image_comp));
York Sun7264f292017-08-15 11:14:43 -0700264 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100265
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500266 if (fit_image_get_load(fit, node, &load_addr)) {
267 if (!image_info->load_addr) {
268 printf("Can't load %s: No load address and no buffer\n",
269 fit_get_name(fit, node, NULL));
270 return -ENOBUFS;
271 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100272 load_addr = image_info->load_addr;
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500273 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100274
Peng Fana1be94b2017-12-05 13:20:59 +0800275 if (!fit_image_get_data_position(fit, node, &offset)) {
276 external_data = true;
277 } else if (!fit_image_get_data_offset(fit, node, &offset)) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600278 offset += ctx->ext_data_offset;
Peng Fana1be94b2017-12-05 13:20:59 +0800279 external_data = true;
280 }
281
282 if (external_data) {
Simon Glass891d9e82021-03-07 17:35:14 -0700283 void *src_ptr;
284
Peng Fana1be94b2017-12-05 13:20:59 +0800285 /* External data */
York Sun5fd13d92017-08-15 11:14:44 -0700286 if (fit_image_get_data_size(fit, node, &len))
287 return -ENOENT;
Andre Przywara8baa3812017-04-26 01:32:36 +0100288
Nishanth Menon6d99f862021-10-19 12:32:29 -0500289 /* Dont bother to copy 0 byte data, but warn, though */
290 if (!len) {
291 log_warning("%s: Skip load '%s': image size is 0!\n",
292 __func__, fit_get_name(fit, node, NULL));
293 return 0;
294 }
295
Simon Glass891d9e82021-03-07 17:35:14 -0700296 src_ptr = map_sysmem(ALIGN(load_addr, ARCH_DMA_MINALIGN), len);
York Sun5fd13d92017-08-15 11:14:44 -0700297 length = len;
Andre Przywara8baa3812017-04-26 01:32:36 +0100298
York Sun5fd13d92017-08-15 11:14:44 -0700299 overhead = get_aligned_image_overhead(info, offset);
300 nr_sectors = get_aligned_image_size(info, length, offset);
301
Michal Simek3313ae62018-07-18 14:33:15 +0200302 if (info->read(info,
303 sector + get_aligned_image_offset(info, offset),
Simon Glass891d9e82021-03-07 17:35:14 -0700304 nr_sectors, src_ptr) != nr_sectors)
York Sun5fd13d92017-08-15 11:14:44 -0700305 return -EIO;
306
Simon Glass891d9e82021-03-07 17:35:14 -0700307 debug("External data: dst=%p, offset=%x, size=%lx\n",
308 src_ptr, offset, (unsigned long)length);
309 src = src_ptr + overhead;
York Sun5fd13d92017-08-15 11:14:44 -0700310 } else {
311 /* Embedded data */
312 if (fit_image_get_data(fit, node, &data, &length)) {
313 puts("Cannot get image data/size\n");
314 return -ENOENT;
315 }
316 debug("Embedded data: dst=%lx, size=%lx\n", load_addr,
317 (unsigned long)length);
Simon Glass891d9e82021-03-07 17:35:14 -0700318 src = (void *)data; /* cast away const */
York Sun5fd13d92017-08-15 11:14:44 -0700319 }
320
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600321 if (CONFIG_IS_ENABLED(FIT_SIGNATURE)) {
322 printf("## Checking hash(es) for Image %s ... ",
323 fit_get_name(fit, node, NULL));
Simon Glass99f844b2021-11-12 12:28:10 -0700324 if (!fit_image_verify_with_data(fit, node, gd_fdt_blob(), src,
325 length))
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600326 return -EPERM;
327 puts("OK\n");
328 }
Ben Whittend154ca62018-06-07 11:37:27 +0100329
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600330 if (CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS))
Lokesh Vutla481d3942021-06-11 11:45:05 +0300331 board_fit_image_post_process(fit, node, &src, &length);
Andre Przywara8baa3812017-04-26 01:32:36 +0100332
Simon Glass891d9e82021-03-07 17:35:14 -0700333 load_ptr = map_sysmem(load_addr, length);
Michal Simek975e7892018-07-24 15:05:00 +0200334 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
York Sun933f67a2017-09-15 08:21:13 -0700335 size = length;
Simon Glass891d9e82021-03-07 17:35:14 -0700336 if (gunzip(load_ptr, CONFIG_SYS_BOOTM_LEN, src, &size)) {
York Sun7264f292017-08-15 11:14:43 -0700337 puts("Uncompressing error\n");
338 return -EIO;
339 }
York Sun933f67a2017-09-15 08:21:13 -0700340 length = size;
York Sun7264f292017-08-15 11:14:43 -0700341 } else {
Simon Glass891d9e82021-03-07 17:35:14 -0700342 memcpy(load_ptr, src, length);
York Sun7264f292017-08-15 11:14:43 -0700343 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100344
345 if (image_info) {
Michal Simekcaa7fc22020-09-03 11:24:28 +0200346 ulong entry_point;
347
Andre Przywara8baa3812017-04-26 01:32:36 +0100348 image_info->load_addr = load_addr;
349 image_info->size = length;
Michal Simekcaa7fc22020-09-03 11:24:28 +0200350
351 if (!fit_image_get_entry(fit, node, &entry_point))
352 image_info->entry_point = entry_point;
353 else
354 image_info->entry_point = FDT_ERROR;
Andre Przywara8baa3812017-04-26 01:32:36 +0100355 }
356
357 return 0;
358}
359
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600360static bool os_takes_devicetree(uint8_t os)
361{
362 switch (os) {
363 case IH_OS_U_BOOT:
364 return true;
365 case IH_OS_LINUX:
366 return IS_ENABLED(CONFIG_SPL_OS_BOOT);
367 default:
368 return false;
369 }
370}
371
Philipp Tomsichd8796162017-09-13 21:29:32 +0200372static int spl_fit_append_fdt(struct spl_image_info *spl_image,
373 struct spl_load_info *info, ulong sector,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600374 const struct spl_fit_info *ctx)
Philipp Tomsichd8796162017-09-13 21:29:32 +0200375{
376 struct spl_image_info image_info;
Michal Simek9d13b872019-10-22 16:39:11 +0200377 int node, ret = 0, index = 0;
Lukas Auerb83edfb2019-08-21 21:14:42 +0200378
379 /*
380 * Use the address following the image as target address for the
Marek Vasut5675ed72020-10-19 23:40:26 +0200381 * device tree.
Lukas Auerb83edfb2019-08-21 21:14:42 +0200382 */
Marek Vasut5675ed72020-10-19 23:40:26 +0200383 image_info.load_addr = spl_image->load_addr + spl_image->size;
Philipp Tomsichd8796162017-09-13 21:29:32 +0200384
385 /* Figure out which device tree the board wants to use */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600386 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index++);
Philipp Tomsichd8796162017-09-13 21:29:32 +0200387 if (node < 0) {
388 debug("%s: cannot find FDT node\n", __func__);
Lukas Auerb83edfb2019-08-21 21:14:42 +0200389
390 /*
391 * U-Boot did not find a device tree inside the FIT image. Use
392 * the U-Boot device tree instead.
393 */
394 if (gd->fdt_blob)
395 memcpy((void *)image_info.load_addr, gd->fdt_blob,
396 fdt_totalsize(gd->fdt_blob));
397 else
398 return node;
399 } else {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600400 ret = spl_load_fit_image(info, sector, ctx, node,
Lukas Auerb83edfb2019-08-21 21:14:42 +0200401 &image_info);
402 if (ret < 0)
403 return ret;
Philipp Tomsichd8796162017-09-13 21:29:32 +0200404 }
405
Philipp Tomsicha616c782017-09-13 21:29:34 +0200406 /* Make the load-address of the FDT available for the SPL framework */
Simon Glass891d9e82021-03-07 17:35:14 -0700407 spl_image->fdt_addr = map_sysmem(image_info.load_addr, 0);
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600408 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
409 return 0;
410
Michal Simek9d13b872019-10-22 16:39:11 +0200411 if (CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)) {
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200412 void *tmpbuffer = NULL;
413
Michal Simek9d13b872019-10-22 16:39:11 +0200414 for (; ; index++) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600415 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index);
Jean-Jacques Hiblot24bf44c2019-10-22 16:39:14 +0200416 if (node == -E2BIG) {
Michal Simek9d13b872019-10-22 16:39:11 +0200417 debug("%s: No additional FDT node\n", __func__);
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200418 break;
Jean-Jacques Hiblot24bf44c2019-10-22 16:39:14 +0200419 } else if (node < 0) {
420 debug("%s: unable to find FDT node %d\n",
421 __func__, index);
422 continue;
Michal Simek9d13b872019-10-22 16:39:11 +0200423 }
Philipp Tomsicha616c782017-09-13 21:29:34 +0200424
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200425 if (!tmpbuffer) {
426 /*
427 * allocate memory to store the DT overlay
428 * before it is applied. It may not be used
429 * depending on how the overlay is stored, so
430 * don't fail yet if the allocation failed.
431 */
Stefan Herbrechtsmeier77253c52022-06-14 16:12:00 +0200432 size_t size = CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ;
433
434 tmpbuffer = malloc_cache_aligned(size);
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200435 if (!tmpbuffer)
436 debug("%s: unable to allocate space for overlays\n",
437 __func__);
438 }
439 image_info.load_addr = (ulong)tmpbuffer;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600440 ret = spl_load_fit_image(info, sector, ctx,
Michal Simek9d13b872019-10-22 16:39:11 +0200441 node, &image_info);
442 if (ret < 0)
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200443 break;
Michal Simek9d13b872019-10-22 16:39:11 +0200444
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200445 /* Make room in FDT for changes from the overlay */
446 ret = fdt_increase_size(spl_image->fdt_addr,
447 image_info.size);
448 if (ret < 0)
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200449 break;
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200450
Michal Simek9d13b872019-10-22 16:39:11 +0200451 ret = fdt_overlay_apply_verbose(spl_image->fdt_addr,
452 (void *)image_info.load_addr);
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200453 if (ret) {
454 pr_err("failed to apply DT overlay %s\n",
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600455 fit_get_name(ctx->fit, node, NULL));
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200456 break;
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200457 }
Michal Simek9d13b872019-10-22 16:39:11 +0200458
459 debug("%s: DT overlay %s applied\n", __func__,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600460 fit_get_name(ctx->fit, node, NULL));
Michal Simek9d13b872019-10-22 16:39:11 +0200461 }
Heinrich Schuchardt077e72c2020-04-20 12:44:01 +0200462 free(tmpbuffer);
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200463 if (ret)
464 return ret;
Michal Simek9d13b872019-10-22 16:39:11 +0200465 }
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200466 /* Try to make space, so we can inject details on the loadables */
467 ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192);
468 if (ret < 0)
469 return ret;
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200470
Philipp Tomsicha616c782017-09-13 21:29:34 +0200471 return ret;
472}
473
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600474static int spl_fit_record_loadable(const struct spl_fit_info *ctx, int index,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200475 void *blob, struct spl_image_info *image)
476{
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100477 int ret = 0;
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +0200478 const char *name;
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100479 int node;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200480
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600481 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
482 return 0;
483
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600484 ret = spl_fit_get_image_name(ctx, "loadables", index, &name);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200485 if (ret < 0)
486 return ret;
487
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600488 node = spl_fit_get_image_node(ctx, "loadables", index);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200489
490 ret = fdt_record_loadable(blob, index, name, image->load_addr,
491 image->size, image->entry_point,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600492 fdt_getprop(ctx->fit, node, "type", NULL),
Michal Simekbe2d1a82021-05-27 11:40:09 +0200493 fdt_getprop(ctx->fit, node, "os", NULL),
494 fdt_getprop(ctx->fit, node, "arch", NULL));
Philipp Tomsichd8796162017-09-13 21:29:32 +0200495 return ret;
496}
497
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500498static int spl_fit_image_is_fpga(const void *fit, int node)
499{
500 const char *type;
501
502 if (!IS_ENABLED(CONFIG_SPL_FPGA))
503 return 0;
504
505 type = fdt_getprop(fit, node, FIT_TYPE_PROP, NULL);
506 if (!type)
507 return 0;
508
509 return !strcmp(type, "fpga");
510}
511
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100512static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os)
513{
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600514 if (!CONFIG_IS_ENABLED(FIT_IMAGE_TINY) || CONFIG_IS_ENABLED(OS_BOOT))
515 return fit_image_get_os(fit, noffset, os);
Samuel Hollandcf705532020-10-21 21:12:13 -0500516
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600517 const char *name = fdt_getprop(fit, noffset, FIT_OS_PROP, NULL);
Samuel Hollandcf705532020-10-21 21:12:13 -0500518 if (!name)
519 return -ENOENT;
520
521 /*
522 * We don't care what the type of the image actually is,
523 * only whether or not it is U-Boot. This saves some
524 * space by omitting the large table of OS types.
525 */
526 if (!strcmp(name, "u-boot"))
527 *os = IH_OS_U_BOOT;
528 else
529 *os = IH_OS_INVALID;
530
531 return 0;
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100532}
533
Andreas Dannenberge1eb6ad2019-06-04 17:55:46 -0500534/*
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500535 * The purpose of the FIT load buffer is to provide a memory location that is
536 * independent of the load address of any FIT component.
537 */
538static void *spl_get_fit_load_buffer(size_t size)
539{
540 void *buf;
541
Stefan Herbrechtsmeier77253c52022-06-14 16:12:00 +0200542 buf = malloc_cache_aligned(size);
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500543 if (!buf) {
544 pr_err("Could not get FIT buffer of %lu bytes\n", (ulong)size);
545 pr_err("\tcheck CONFIG_SYS_SPL_MALLOC_SIZE\n");
546 buf = spl_get_load_buffer(0, size);
547 }
548 return buf;
549}
550
Heiko Schocherdeb80ec2021-08-17 08:17:18 +0200551__weak void *board_spl_fit_buffer_addr(ulong fit_size, int sectors, int bl_len)
552{
553 return spl_get_fit_load_buffer(sectors * bl_len);
554}
555
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500556/*
Andreas Dannenberge1eb6ad2019-06-04 17:55:46 -0500557 * Weak default function to allow customizing SPL fit loading for load-only
558 * use cases by allowing to skip the parsing/processing of the FIT contents
559 * (so that this can be done separately in a more customized fashion)
560 */
561__weak bool spl_load_simple_fit_skip_processing(void)
562{
563 return false;
564}
565
Heiko Schocher884ba502021-08-06 06:44:26 +0200566/*
567 * Weak default function to allow fixes after fit header
568 * is loaded.
569 */
570__weak void *spl_load_simple_fit_fix_load(const void *fit)
571{
572 return (void *)fit;
573}
574
Alexandru Gagniucd8a39512021-03-29 12:05:13 -0500575static void warn_deprecated(const char *msg)
576{
577 printf("DEPRECATED: %s\n", msg);
578 printf("\tSee doc/uImage.FIT/source_file_format.txt\n");
579}
580
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500581static int spl_fit_upload_fpga(struct spl_fit_info *ctx, int node,
582 struct spl_image_info *fpga_image)
583{
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500584 const char *compatible;
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500585 int ret;
Oleksandr Suvorov282eed52022-07-22 17:16:07 +0300586 int devnum = 0;
587 int flags = 0;
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500588
589 debug("FPGA bitstream at: %x, size: %x\n",
590 (u32)fpga_image->load_addr, fpga_image->size);
591
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500592 compatible = fdt_getprop(ctx->fit, node, "compatible", NULL);
Oleksandr Suvorov71f1a532022-07-22 17:16:09 +0300593 if (!compatible) {
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500594 warn_deprecated("'fpga' image without 'compatible' property");
Oleksandr Suvorov71f1a532022-07-22 17:16:09 +0300595 } else {
596 if (CONFIG_IS_ENABLED(FPGA_LOAD_SECURE))
597 flags = fpga_compatible2flag(devnum, compatible);
598 if (strcmp(compatible, "u-boot,fpga-legacy"))
599 debug("Ignoring compatible = %s property\n",
600 compatible);
601 }
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500602
Oleksandr Suvorov282eed52022-07-22 17:16:07 +0300603 ret = fpga_load(devnum, (void *)fpga_image->load_addr,
604 fpga_image->size, BIT_FULL, flags);
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500605 if (ret) {
606 printf("%s: Cannot load the image to the FPGA\n", __func__);
607 return ret;
608 }
609
610 puts("FPGA image loaded from FIT\n");
611
612 return 0;
613}
614
615static int spl_fit_load_fpga(struct spl_fit_info *ctx,
616 struct spl_load_info *info, ulong sector)
617{
618 int node, ret;
619
620 struct spl_image_info fpga_image = {
621 .load_addr = 0,
622 };
623
624 node = spl_fit_get_image_node(ctx, "fpga", 0);
625 if (node < 0)
626 return node;
627
Alexandru Gagniucd8a39512021-03-29 12:05:13 -0500628 warn_deprecated("'fpga' property in config node. Use 'loadables'");
629
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500630 /* Load the image and set up the fpga_image structure */
631 ret = spl_load_fit_image(info, sector, ctx, node, &fpga_image);
632 if (ret) {
633 printf("%s: Cannot load the FPGA: %i\n", __func__, ret);
634 return ret;
635 }
636
637 return spl_fit_upload_fpga(ctx, node, &fpga_image);
638}
639
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600640static int spl_simple_fit_read(struct spl_fit_info *ctx,
641 struct spl_load_info *info, ulong sector,
642 const void *fit_header)
Simon Glassf1dcee52016-02-22 22:55:56 -0700643{
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600644 unsigned long count, size;
Simon Glassf1dcee52016-02-22 22:55:56 -0700645 int sectors;
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600646 void *buf;
Simon Glassf1dcee52016-02-22 22:55:56 -0700647
648 /*
York Sunc8bc3c02017-08-15 11:14:45 -0700649 * For FIT with external data, figure out where the external images
650 * start. This is the base for the data-offset properties in each
651 * image.
Simon Glassf1dcee52016-02-22 22:55:56 -0700652 */
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600653 size = ALIGN(fdt_totalsize(fit_header), 4);
Ye Lie246bfc2018-11-17 09:10:25 +0000654 size = board_spl_fit_size_align(size);
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600655 ctx->ext_data_offset = ALIGN(size, 4);
Simon Glassf1dcee52016-02-22 22:55:56 -0700656
657 /*
658 * So far we only have one block of data from the FIT. Read the entire
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500659 * thing, including that first block.
York Sunc8bc3c02017-08-15 11:14:45 -0700660 *
661 * For FIT with data embedded, data is loaded as part of FIT image.
662 * For FIT with external data, data is not loaded in this step.
Simon Glassf1dcee52016-02-22 22:55:56 -0700663 */
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530664 sectors = get_aligned_image_size(info, size, 0);
Heiko Schocherdeb80ec2021-08-17 08:17:18 +0200665 buf = board_spl_fit_buffer_addr(size, sectors, info->bl_len);
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600666
667 count = info->read(info, sector, sectors, buf);
668 ctx->fit = buf;
Ye Lie246bfc2018-11-17 09:10:25 +0000669 debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu, size=0x%lx\n",
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600670 sector, sectors, buf, count, size);
Ye Lie246bfc2018-11-17 09:10:25 +0000671
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600672 return (count == 0) ? -EIO : 0;
673}
Simon Glassf1dcee52016-02-22 22:55:56 -0700674
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600675static int spl_simple_fit_parse(struct spl_fit_info *ctx)
676{
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -0600677 /* Find the correct subnode under "/configurations" */
678 ctx->conf_node = fit_find_config_node(ctx->fit);
679 if (ctx->conf_node < 0)
680 return -EINVAL;
Philippe Reynes7d5b1bf2020-10-29 18:50:29 +0100681
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -0600682 if (IS_ENABLED(CONFIG_SPL_FIT_SIGNATURE)) {
Philippe Reynes7d5b1bf2020-10-29 18:50:29 +0100683 printf("## Checking hash(es) for config %s ... ",
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -0600684 fit_get_name(ctx->fit, ctx->conf_node, NULL));
685 if (fit_config_verify(ctx->fit, ctx->conf_node))
Philippe Reynes7d5b1bf2020-10-29 18:50:29 +0100686 return -EPERM;
687 puts("OK\n");
688 }
689
Andre Przywara736806f2017-04-26 01:32:34 +0100690 /* find the node holding the images information */
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600691 ctx->images_node = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
692 if (ctx->images_node < 0) {
693 debug("%s: Cannot find /images node: %d\n", __func__,
694 ctx->images_node);
695 return -EINVAL;
Simon Glassf1dcee52016-02-22 22:55:56 -0700696 }
Andre Przywara736806f2017-04-26 01:32:34 +0100697
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600698 return 0;
699}
700
701int spl_load_simple_fit(struct spl_image_info *spl_image,
702 struct spl_load_info *info, ulong sector, void *fit)
703{
704 struct spl_image_info image_info;
705 struct spl_fit_info ctx;
706 int node = -1;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600707 int ret;
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600708 int index = 0;
709 int firmware_node;
710
711 ret = spl_simple_fit_read(&ctx, info, sector, fit);
712 if (ret < 0)
713 return ret;
714
715 /* skip further processing if requested to enable load-only use cases */
716 if (spl_load_simple_fit_skip_processing())
717 return 0;
718
Heiko Schocher884ba502021-08-06 06:44:26 +0200719 ctx.fit = spl_load_simple_fit_fix_load(ctx.fit);
720
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600721 ret = spl_simple_fit_parse(&ctx);
722 if (ret < 0)
723 return ret;
724
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500725 if (IS_ENABLED(CONFIG_SPL_FPGA))
726 spl_fit_load_fpga(&ctx, info, sector);
Marek Vasut26a64222018-05-12 22:25:28 +0200727
Philipp Tomsichd8796162017-09-13 21:29:32 +0200728 /*
729 * Find the U-Boot image using the following search order:
730 * - start at 'firmware' (e.g. an ARM Trusted Firmware)
731 * - fall back 'kernel' (e.g. a Falcon-mode OS boot
732 * - fall back to using the first 'loadables' entry
733 */
York Sunc8bc3c02017-08-15 11:14:45 -0700734 if (node < 0)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600735 node = spl_fit_get_image_node(&ctx, FIT_FIRMWARE_PROP, 0);
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600736
737 if (node < 0 && IS_ENABLED(CONFIG_SPL_OS_BOOT))
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600738 node = spl_fit_get_image_node(&ctx, FIT_KERNEL_PROP, 0);
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600739
Simon Glassf1dcee52016-02-22 22:55:56 -0700740 if (node < 0) {
Andre Przywara736806f2017-04-26 01:32:34 +0100741 debug("could not find firmware image, trying loadables...\n");
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600742 node = spl_fit_get_image_node(&ctx, "loadables", 0);
Andre Przywara411cf322017-04-26 01:32:37 +0100743 /*
744 * If we pick the U-Boot image from "loadables", start at
745 * the second image when later loading additional images.
746 */
747 index = 1;
Andre Przywara736806f2017-04-26 01:32:34 +0100748 }
749 if (node < 0) {
750 debug("%s: Cannot find u-boot image node: %d\n",
751 __func__, node);
Simon Glassf1dcee52016-02-22 22:55:56 -0700752 return -1;
753 }
754
Andre Przywara8baa3812017-04-26 01:32:36 +0100755 /* Load the image and set up the spl_image structure */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600756 ret = spl_load_fit_image(info, sector, &ctx, node, spl_image);
Andre Przywara8baa3812017-04-26 01:32:36 +0100757 if (ret)
758 return ret;
759
Philipp Tomsichd8796162017-09-13 21:29:32 +0200760 /*
761 * For backward compatibility, we treat the first node that is
762 * as a U-Boot image, if no OS-type has been declared.
763 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600764 if (!spl_fit_image_get_os(ctx.fit, node, &spl_image->os))
York Sunc8bc3c02017-08-15 11:14:45 -0700765 debug("Image OS is %s\n", genimg_get_os_name(spl_image->os));
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600766 else if (!IS_ENABLED(CONFIG_SPL_OS_BOOT))
Philipp Tomsichd8796162017-09-13 21:29:32 +0200767 spl_image->os = IH_OS_U_BOOT;
Simon Glassf1dcee52016-02-22 22:55:56 -0700768
Philipp Tomsichd8796162017-09-13 21:29:32 +0200769 /*
770 * Booting a next-stage U-Boot may require us to append the FDT.
771 * We allow this to fail, as the U-Boot image might embed its FDT.
772 */
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600773 if (os_takes_devicetree(spl_image->os)) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600774 ret = spl_fit_append_fdt(spl_image, info, sector, &ctx);
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600775 if (ret < 0 && spl_image->os != IH_OS_U_BOOT)
Dario Binacchi585b4682020-05-27 13:56:19 +0200776 return ret;
777 }
Simon Glassf1dcee52016-02-22 22:55:56 -0700778
Jean-Jacques Hiblot6b8b98d2019-10-22 16:39:10 +0200779 firmware_node = node;
Andre Przywara411cf322017-04-26 01:32:37 +0100780 /* Now check if there are more images for us to load */
781 for (; ; index++) {
Philipp Tomsichd8796162017-09-13 21:29:32 +0200782 uint8_t os_type = IH_OS_INVALID;
783
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600784 node = spl_fit_get_image_node(&ctx, "loadables", index);
Andre Przywara411cf322017-04-26 01:32:37 +0100785 if (node < 0)
786 break;
787
Jean-Jacques Hiblot6b8b98d2019-10-22 16:39:10 +0200788 /*
789 * if the firmware is also a loadable, skip it because
790 * it already has been loaded. This is typically the case with
791 * u-boot.img generated by mkimage.
792 */
793 if (firmware_node == node)
794 continue;
795
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500796 image_info.load_addr = 0;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600797 ret = spl_load_fit_image(info, sector, &ctx, node, &image_info);
Philippe Reynesc61b2bf2020-11-24 16:15:05 +0100798 if (ret < 0) {
799 printf("%s: can't load image loadables index %d (ret = %d)\n",
800 __func__, index, ret);
801 return ret;
802 }
Andre Przywara411cf322017-04-26 01:32:37 +0100803
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500804 if (spl_fit_image_is_fpga(ctx.fit, node))
805 spl_fit_upload_fpga(&ctx, node, &image_info);
806
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600807 if (!spl_fit_image_get_os(ctx.fit, node, &os_type))
Philipp Tomsichd8796162017-09-13 21:29:32 +0200808 debug("Loadable is %s\n", genimg_get_os_name(os_type));
809
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600810 if (os_takes_devicetree(os_type)) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600811 spl_fit_append_fdt(&image_info, info, sector, &ctx);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200812 spl_image->fdt_addr = image_info.fdt_addr;
813 }
Philipp Tomsichd8796162017-09-13 21:29:32 +0200814
Andre Przywara411cf322017-04-26 01:32:37 +0100815 /*
816 * If the "firmware" image did not provide an entry point,
817 * use the first valid entry point from the loadables.
818 */
819 if (spl_image->entry_point == FDT_ERROR &&
820 image_info.entry_point != FDT_ERROR)
821 spl_image->entry_point = image_info.entry_point;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200822
823 /* Record our loadables into the FDT */
824 if (spl_image->fdt_addr)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600825 spl_fit_record_loadable(&ctx, index,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200826 spl_image->fdt_addr,
827 &image_info);
Andre Przywara411cf322017-04-26 01:32:37 +0100828 }
829
830 /*
831 * If a platform does not provide CONFIG_SYS_UBOOT_START, U-Boot's
832 * Makefile will set it to 0 and it will end up as the entry point
833 * here. What it actually means is: use the load address.
834 */
835 if (spl_image->entry_point == FDT_ERROR || spl_image->entry_point == 0)
836 spl_image->entry_point = spl_image->load_addr;
837
Ye Lie246bfc2018-11-17 09:10:25 +0000838 spl_image->flags |= SPL_FIT_FOUND;
839
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600840 if (IS_ENABLED(CONFIG_IMX_HAB))
841 board_spl_fit_post_load(ctx.fit);
Ye Lie246bfc2018-11-17 09:10:25 +0000842
Andre Przywara411cf322017-04-26 01:32:37 +0100843 return 0;
Simon Glassf1dcee52016-02-22 22:55:56 -0700844}