blob: 93480a5a60d7e58d9da0c636db775f381344a487 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassa6131a22016-02-22 22:55:56 -07002/*
3 * Copyright (C) 2016 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glassa6131a22016-02-22 22:55:56 -07005 */
6
7#include <common.h>
8#include <errno.h>
Michal Simekf707b5a2018-07-18 14:33:15 +02009#include <fpga.h>
Simon Glass1a974af2019-08-01 09:46:36 -060010#include <gzip.h>
Simon Glassa6131a22016-02-22 22:55:56 -070011#include <image.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Stefan Herbrechtsmeier66249102022-06-14 16:12:00 +020013#include <memalign.h>
Simon Glass2192e982021-03-07 17:35:14 -070014#include <mapmem.h>
Simon Glassa6131a22016-02-22 22:55:56 -070015#include <spl.h>
Simon Glass458b66a2020-11-05 06:32:05 -070016#include <sysinfo.h>
Simon Glass274e0b02020-05-10 11:39:56 -060017#include <asm/cache.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060018#include <asm/global_data.h>
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +020019#include <linux/libfdt.h>
Simon Glassbdd5f812023-09-14 18:21:46 -060020#include <linux/printk.h>
Simon Glassa6131a22016-02-22 22:55:56 -070021
Lukas Auer80afee72019-08-21 21:14:42 +020022DECLARE_GLOBAL_DATA_PTR;
23
Alexandru Gagniuc23243c92021-01-20 10:46:50 -060024struct spl_fit_info {
25 const void *fit; /* Pointer to a valid FIT blob */
26 size_t ext_data_offset; /* Offset to FIT external data (end of FIT) */
27 int images_node; /* FDT offset to "/images" node */
Alexandru Gagniucfa11a442021-01-20 10:46:53 -060028 int conf_node; /* FDT offset to selected configuration node */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -060029};
30
Ye Li9d5b0f42018-11-17 09:10:25 +000031__weak ulong board_spl_fit_size_align(ulong size)
32{
33 return size;
34}
35
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020036static int find_node_from_desc(const void *fit, int node, const char *str)
37{
38 int child;
39
40 if (node < 0)
41 return -EINVAL;
42
43 /* iterate the FIT nodes and find a matching description */
44 for (child = fdt_first_subnode(fit, node); child >= 0;
45 child = fdt_next_subnode(fit, child)) {
46 int len;
Simon Glassdff90432023-09-26 08:14:35 -060047 const char *desc = fdt_getprop(fit, child, FIT_DESC_PROP, &len);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020048
49 if (!desc)
50 continue;
51
52 if (!strcmp(desc, str))
53 return child;
54 }
55
56 return -ENOENT;
57}
58
Andre Przywara525e9c92017-04-26 01:32:34 +010059/**
Philipp Tomsiche61eff92017-09-13 21:29:34 +020060 * spl_fit_get_image_name(): By using the matching configuration subnode,
Andre Przywara525e9c92017-04-26 01:32:34 +010061 * retrieve the name of an image, specified by a property name and an index
62 * into that.
63 * @fit: Pointer to the FDT blob.
64 * @images: Offset of the /images subnode.
65 * @type: Name of the property within the configuration subnode.
66 * @index: Index into the list of strings in this property.
Philipp Tomsiche61eff92017-09-13 21:29:34 +020067 * @outname: Name of the image
Andre Przywara525e9c92017-04-26 01:32:34 +010068 *
Philipp Tomsiche61eff92017-09-13 21:29:34 +020069 * Return: 0 on success, or a negative error number
Andre Przywara525e9c92017-04-26 01:32:34 +010070 */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -060071static int spl_fit_get_image_name(const struct spl_fit_info *ctx,
Philipp Tomsiche61eff92017-09-13 21:29:34 +020072 const char *type, int index,
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +020073 const char **outname)
Andre Przywara1e329b62017-04-26 01:32:33 +010074{
Simon Glass458b66a2020-11-05 06:32:05 -070075 struct udevice *sysinfo;
Andre Przywara1e329b62017-04-26 01:32:33 +010076 const char *name, *str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +020077 __maybe_unused int node;
Andre Przywara1e329b62017-04-26 01:32:33 +010078 int len, i;
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020079 bool found = true;
Andre Przywara1e329b62017-04-26 01:32:33 +010080
Alexandru Gagniucfa11a442021-01-20 10:46:53 -060081 name = fdt_getprop(ctx->fit, ctx->conf_node, type, &len);
Andre Przywara1e329b62017-04-26 01:32:33 +010082 if (!name) {
83 debug("cannot find property '%s': %d\n", type, len);
84 return -EINVAL;
85 }
Simon Glassa6131a22016-02-22 22:55:56 -070086
Andre Przywara1e329b62017-04-26 01:32:33 +010087 str = name;
88 for (i = 0; i < index; i++) {
89 str = strchr(str, '\0') + 1;
90 if (!str || (str - name >= len)) {
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020091 found = false;
92 break;
Andre Przywara1e329b62017-04-26 01:32:33 +010093 }
Simon Glassa6131a22016-02-22 22:55:56 -070094 }
95
Simon Glass458b66a2020-11-05 06:32:05 -070096 if (!found && CONFIG_IS_ENABLED(SYSINFO) && !sysinfo_get(&sysinfo)) {
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020097 int rc;
98 /*
Simon Glass458b66a2020-11-05 06:32:05 -070099 * no string in the property for this index. Check if the
100 * sysinfo-level code can supply one.
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200101 */
Sean Anderson6ccf10a2021-04-20 10:50:56 -0400102 rc = sysinfo_detect(sysinfo);
103 if (rc)
104 return rc;
105
Simon Glass458b66a2020-11-05 06:32:05 -0700106 rc = sysinfo_get_fit_loadable(sysinfo, index - i - 1, type,
107 &str);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200108 if (rc && rc != -ENOENT)
109 return rc;
110
111 if (!rc) {
112 /*
Simon Glass458b66a2020-11-05 06:32:05 -0700113 * The sysinfo provided a name for a loadable.
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200114 * Try to match it against the description properties
115 * first. If no matching node is found, use it as a
116 * node name.
117 */
118 int node;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600119 int images = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200120
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600121 node = find_node_from_desc(ctx->fit, images, str);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200122 if (node > 0)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600123 str = fdt_get_name(ctx->fit, node, NULL);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200124
125 found = true;
126 }
127 }
128
129 if (!found) {
130 debug("no string for index %d\n", index);
131 return -E2BIG;
132 }
133
134 *outname = str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200135 return 0;
136}
137
138/**
139 * spl_fit_get_image_node(): By using the matching configuration subnode,
140 * retrieve the name of an image, specified by a property name and an index
141 * into that.
142 * @fit: Pointer to the FDT blob.
143 * @images: Offset of the /images subnode.
144 * @type: Name of the property within the configuration subnode.
145 * @index: Index into the list of strings in this property.
146 *
147 * Return: the node offset of the respective image node or a negative
148 * error number.
149 */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600150static int spl_fit_get_image_node(const struct spl_fit_info *ctx,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200151 const char *type, int index)
152{
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +0200153 const char *str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200154 int err;
155 int node;
156
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600157 err = spl_fit_get_image_name(ctx, type, index, &str);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200158 if (err)
159 return err;
160
Andre Przywara1e329b62017-04-26 01:32:33 +0100161 debug("%s: '%s'\n", type, str);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200162
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600163 node = fdt_subnode_offset(ctx->fit, ctx->images_node, str);
Andre Przywara1e329b62017-04-26 01:32:33 +0100164 if (node < 0) {
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200165 pr_err("cannot find image node '%s': %d\n", str, node);
Andre Przywara1e329b62017-04-26 01:32:33 +0100166 return -EINVAL;
Simon Glassa6131a22016-02-22 22:55:56 -0700167 }
Simon Glassa6131a22016-02-22 22:55:56 -0700168
Andre Przywara525e9c92017-04-26 01:32:34 +0100169 return node;
Simon Glassa6131a22016-02-22 22:55:56 -0700170}
171
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530172static int get_aligned_image_offset(struct spl_load_info *info, int offset)
173{
174 /*
175 * If it is a FS read, get the first address before offset which is
176 * aligned to ARCH_DMA_MINALIGN. If it is raw read return the
177 * block number to which offset belongs.
178 */
179 if (info->filename)
180 return offset & ~(ARCH_DMA_MINALIGN - 1);
181
182 return offset / info->bl_len;
183}
184
185static int get_aligned_image_overhead(struct spl_load_info *info, int offset)
186{
187 /*
188 * If it is a FS read, get the difference between the offset and
189 * the first address before offset which is aligned to
190 * ARCH_DMA_MINALIGN. If it is raw read return the offset within the
191 * block.
192 */
193 if (info->filename)
194 return offset & (ARCH_DMA_MINALIGN - 1);
195
196 return offset % info->bl_len;
197}
198
199static int get_aligned_image_size(struct spl_load_info *info, int data_size,
200 int offset)
201{
Lokesh Vutlaf0531a62016-07-19 14:56:14 +0530202 data_size = data_size + get_aligned_image_overhead(info, offset);
203
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530204 if (info->filename)
Lokesh Vutlaf0531a62016-07-19 14:56:14 +0530205 return data_size;
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530206
207 return (data_size + info->bl_len - 1) / info->bl_len;
208}
209
Andre Przywara29053e92017-04-26 01:32:36 +0100210/**
Simon Glass205ff7b2023-09-26 08:14:33 -0600211 * load_simple_fit(): load the image described in a certain FIT node
Andre Przywara29053e92017-04-26 01:32:36 +0100212 * @info: points to information about the device to load data from
213 * @sector: the start sector of the FIT image on the device
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600214 * @ctx: points to the FIT context structure
Andre Przywara29053e92017-04-26 01:32:36 +0100215 * @node: offset of the DT node describing the image to load (relative
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200216 * to @fit)
Andre Przywara29053e92017-04-26 01:32:36 +0100217 * @image_info: will be filled with information about the loaded image
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200218 * If the FIT node does not contain a "load" (address) property,
219 * the image gets loaded to the address pointed to by the
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500220 * load_addr member in this struct, if load_addr is not 0
Andre Przywara29053e92017-04-26 01:32:36 +0100221 *
222 * Return: 0 on success or a negative error number.
223 */
Simon Glass205ff7b2023-09-26 08:14:33 -0600224static int load_simple_fit(struct spl_load_info *info, ulong sector,
225 const struct spl_fit_info *ctx, int node,
226 struct spl_image_info *image_info)
Andre Przywara29053e92017-04-26 01:32:36 +0100227{
Michal Simekf707b5a2018-07-18 14:33:15 +0200228 int offset;
Andre Przywara29053e92017-04-26 01:32:36 +0100229 size_t length;
York Sunadf99fa2017-08-15 11:14:44 -0700230 int len;
York Sun25d65f12017-09-15 08:21:13 -0700231 ulong size;
Simon Glass2192e982021-03-07 17:35:14 -0700232 ulong load_addr;
233 void *load_ptr;
Andre Przywara29053e92017-04-26 01:32:36 +0100234 void *src;
235 ulong overhead;
236 int nr_sectors;
York Suna6945fe2017-08-15 11:14:43 -0700237 uint8_t image_comp = -1, type = -1;
York Sunadf99fa2017-08-15 11:14:44 -0700238 const void *data;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600239 const void *fit = ctx->fit;
Peng Fan8876c7e2017-12-05 13:20:59 +0800240 bool external_data = false;
York Suna6945fe2017-08-15 11:14:43 -0700241
Michal Simek1aab1142020-09-09 14:41:56 +0200242 if (IS_ENABLED(CONFIG_SPL_FPGA) ||
Marek Vasut72bc5d52018-06-01 23:19:29 +0200243 (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP))) {
244 if (fit_image_get_type(fit, node, &type))
245 puts("Cannot get image type.\n");
246 else
247 debug("%s ", genimg_get_type_name(type));
248 }
249
Klaus H. Sorensen4a9a0422019-12-11 11:03:33 +0000250 if (IS_ENABLED(CONFIG_SPL_GZIP)) {
251 fit_image_get_comp(fit, node, &image_comp);
252 debug("%s ", genimg_get_comp_name(image_comp));
York Suna6945fe2017-08-15 11:14:43 -0700253 }
Andre Przywara29053e92017-04-26 01:32:36 +0100254
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500255 if (fit_image_get_load(fit, node, &load_addr)) {
256 if (!image_info->load_addr) {
257 printf("Can't load %s: No load address and no buffer\n",
258 fit_get_name(fit, node, NULL));
259 return -ENOBUFS;
260 }
Andre Przywara29053e92017-04-26 01:32:36 +0100261 load_addr = image_info->load_addr;
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500262 }
Andre Przywara29053e92017-04-26 01:32:36 +0100263
Peng Fan8876c7e2017-12-05 13:20:59 +0800264 if (!fit_image_get_data_position(fit, node, &offset)) {
265 external_data = true;
266 } else if (!fit_image_get_data_offset(fit, node, &offset)) {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600267 offset += ctx->ext_data_offset;
Peng Fan8876c7e2017-12-05 13:20:59 +0800268 external_data = true;
269 }
270
271 if (external_data) {
Simon Glass2192e982021-03-07 17:35:14 -0700272 void *src_ptr;
273
Peng Fan8876c7e2017-12-05 13:20:59 +0800274 /* External data */
York Sunadf99fa2017-08-15 11:14:44 -0700275 if (fit_image_get_data_size(fit, node, &len))
276 return -ENOENT;
Andre Przywara29053e92017-04-26 01:32:36 +0100277
Nishanth Menone4cb6452021-10-19 12:32:29 -0500278 /* Dont bother to copy 0 byte data, but warn, though */
279 if (!len) {
280 log_warning("%s: Skip load '%s': image size is 0!\n",
281 __func__, fit_get_name(fit, node, NULL));
282 return 0;
283 }
284
Simon Glass2192e982021-03-07 17:35:14 -0700285 src_ptr = map_sysmem(ALIGN(load_addr, ARCH_DMA_MINALIGN), len);
York Sunadf99fa2017-08-15 11:14:44 -0700286 length = len;
287
288 overhead = get_aligned_image_overhead(info, offset);
289 nr_sectors = get_aligned_image_size(info, length, offset);
290
Michal Simekf707b5a2018-07-18 14:33:15 +0200291 if (info->read(info,
292 sector + get_aligned_image_offset(info, offset),
Simon Glass2192e982021-03-07 17:35:14 -0700293 nr_sectors, src_ptr) != nr_sectors)
York Sunadf99fa2017-08-15 11:14:44 -0700294 return -EIO;
295
Simon Glass2192e982021-03-07 17:35:14 -0700296 debug("External data: dst=%p, offset=%x, size=%lx\n",
297 src_ptr, offset, (unsigned long)length);
298 src = src_ptr + overhead;
York Sunadf99fa2017-08-15 11:14:44 -0700299 } else {
300 /* Embedded data */
301 if (fit_image_get_data(fit, node, &data, &length)) {
302 puts("Cannot get image data/size\n");
303 return -ENOENT;
304 }
305 debug("Embedded data: dst=%lx, size=%lx\n", load_addr,
306 (unsigned long)length);
Simon Glass2192e982021-03-07 17:35:14 -0700307 src = (void *)data; /* cast away const */
York Sunadf99fa2017-08-15 11:14:44 -0700308 }
Andre Przywara29053e92017-04-26 01:32:36 +0100309
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600310 if (CONFIG_IS_ENABLED(FIT_SIGNATURE)) {
311 printf("## Checking hash(es) for Image %s ... ",
312 fit_get_name(fit, node, NULL));
Simon Glasse10e2ee2021-11-12 12:28:10 -0700313 if (!fit_image_verify_with_data(fit, node, gd_fdt_blob(), src,
314 length))
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600315 return -EPERM;
316 puts("OK\n");
317 }
Ben Whitten54a91192018-06-07 11:37:27 +0100318
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600319 if (CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS))
Lokesh Vutlab36dd3e2021-06-11 11:45:05 +0300320 board_fit_image_post_process(fit, node, &src, &length);
Andre Przywara29053e92017-04-26 01:32:36 +0100321
Simon Glass2192e982021-03-07 17:35:14 -0700322 load_ptr = map_sysmem(load_addr, length);
Michal Simekf354c3f2018-07-24 15:05:00 +0200323 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
York Sun25d65f12017-09-15 08:21:13 -0700324 size = length;
Simon Glass2192e982021-03-07 17:35:14 -0700325 if (gunzip(load_ptr, CONFIG_SYS_BOOTM_LEN, src, &size)) {
York Suna6945fe2017-08-15 11:14:43 -0700326 puts("Uncompressing error\n");
327 return -EIO;
328 }
York Sun25d65f12017-09-15 08:21:13 -0700329 length = size;
York Suna6945fe2017-08-15 11:14:43 -0700330 } else {
Simon Glass2192e982021-03-07 17:35:14 -0700331 memcpy(load_ptr, src, length);
York Suna6945fe2017-08-15 11:14:43 -0700332 }
Andre Przywara29053e92017-04-26 01:32:36 +0100333
334 if (image_info) {
Michal Simek9e64a552020-09-03 11:24:28 +0200335 ulong entry_point;
336
Andre Przywara29053e92017-04-26 01:32:36 +0100337 image_info->load_addr = load_addr;
338 image_info->size = length;
Michal Simek9e64a552020-09-03 11:24:28 +0200339
340 if (!fit_image_get_entry(fit, node, &entry_point))
341 image_info->entry_point = entry_point;
342 else
343 image_info->entry_point = FDT_ERROR;
Andre Przywara29053e92017-04-26 01:32:36 +0100344 }
345
346 return 0;
347}
348
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600349static bool os_takes_devicetree(uint8_t os)
350{
351 switch (os) {
352 case IH_OS_U_BOOT:
353 return true;
354 case IH_OS_LINUX:
355 return IS_ENABLED(CONFIG_SPL_OS_BOOT);
356 default:
357 return false;
358 }
359}
360
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200361static int spl_fit_append_fdt(struct spl_image_info *spl_image,
362 struct spl_load_info *info, ulong sector,
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600363 const struct spl_fit_info *ctx)
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200364{
365 struct spl_image_info image_info;
Michal Simekbf703df2019-10-22 16:39:11 +0200366 int node, ret = 0, index = 0;
Lukas Auer80afee72019-08-21 21:14:42 +0200367
368 /*
369 * Use the address following the image as target address for the
Marek Vasutc27cbe82020-10-19 23:40:26 +0200370 * device tree.
Lukas Auer80afee72019-08-21 21:14:42 +0200371 */
Marek Vasutc27cbe82020-10-19 23:40:26 +0200372 image_info.load_addr = spl_image->load_addr + spl_image->size;
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200373
374 /* Figure out which device tree the board wants to use */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600375 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index++);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200376 if (node < 0) {
377 debug("%s: cannot find FDT node\n", __func__);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200378
Lukas Auer80afee72019-08-21 21:14:42 +0200379 /*
380 * U-Boot did not find a device tree inside the FIT image. Use
381 * the U-Boot device tree instead.
382 */
383 if (gd->fdt_blob)
384 memcpy((void *)image_info.load_addr, gd->fdt_blob,
385 fdt_totalsize(gd->fdt_blob));
386 else
387 return node;
388 } else {
Simon Glass205ff7b2023-09-26 08:14:33 -0600389 ret = load_simple_fit(info, sector, ctx, node, &image_info);
Lukas Auer80afee72019-08-21 21:14:42 +0200390 if (ret < 0)
391 return ret;
392 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200393
394 /* Make the load-address of the FDT available for the SPL framework */
Simon Glass2192e982021-03-07 17:35:14 -0700395 spl_image->fdt_addr = map_sysmem(image_info.load_addr, 0);
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600396 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
397 return 0;
398
Tom Rinid259d9c2023-01-10 11:19:28 -0500399#if CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200400 void *tmpbuffer = NULL;
401
Michal Simekbf703df2019-10-22 16:39:11 +0200402 for (; ; index++) {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600403 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index);
Jean-Jacques Hiblotc6ab6a12019-10-22 16:39:14 +0200404 if (node == -E2BIG) {
Michal Simekbf703df2019-10-22 16:39:11 +0200405 debug("%s: No additional FDT node\n", __func__);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200406 break;
Jean-Jacques Hiblotc6ab6a12019-10-22 16:39:14 +0200407 } else if (node < 0) {
408 debug("%s: unable to find FDT node %d\n",
409 __func__, index);
410 continue;
Michal Simekbf703df2019-10-22 16:39:11 +0200411 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200412
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200413 if (!tmpbuffer) {
414 /*
415 * allocate memory to store the DT overlay
416 * before it is applied. It may not be used
417 * depending on how the overlay is stored, so
418 * don't fail yet if the allocation failed.
419 */
Stefan Herbrechtsmeier66249102022-06-14 16:12:00 +0200420 size_t size = CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ;
421
422 tmpbuffer = malloc_cache_aligned(size);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200423 if (!tmpbuffer)
424 debug("%s: unable to allocate space for overlays\n",
425 __func__);
426 }
427 image_info.load_addr = (ulong)tmpbuffer;
Simon Glass205ff7b2023-09-26 08:14:33 -0600428 ret = load_simple_fit(info, sector, ctx, node,
429 &image_info);
Michal Simekbf703df2019-10-22 16:39:11 +0200430 if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200431 break;
Michal Simekbf703df2019-10-22 16:39:11 +0200432
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200433 /* Make room in FDT for changes from the overlay */
434 ret = fdt_increase_size(spl_image->fdt_addr,
435 image_info.size);
436 if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200437 break;
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200438
Michal Simekbf703df2019-10-22 16:39:11 +0200439 ret = fdt_overlay_apply_verbose(spl_image->fdt_addr,
440 (void *)image_info.load_addr);
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200441 if (ret) {
442 pr_err("failed to apply DT overlay %s\n",
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600443 fit_get_name(ctx->fit, node, NULL));
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200444 break;
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200445 }
Michal Simekbf703df2019-10-22 16:39:11 +0200446
447 debug("%s: DT overlay %s applied\n", __func__,
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600448 fit_get_name(ctx->fit, node, NULL));
Michal Simekbf703df2019-10-22 16:39:11 +0200449 }
Heinrich Schuchardt939a9612020-04-20 12:44:01 +0200450 free(tmpbuffer);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200451 if (ret)
452 return ret;
Tom Rinid259d9c2023-01-10 11:19:28 -0500453#endif
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200454 /* Try to make space, so we can inject details on the loadables */
455 ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192);
456 if (ret < 0)
457 return ret;
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200458
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200459 return ret;
460}
461
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600462static int spl_fit_record_loadable(const struct spl_fit_info *ctx, int index,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200463 void *blob, struct spl_image_info *image)
464{
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100465 int ret = 0;
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +0200466 const char *name;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100467 int node;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200468
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600469 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
470 return 0;
471
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600472 ret = spl_fit_get_image_name(ctx, "loadables", index, &name);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200473 if (ret < 0)
474 return ret;
475
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600476 node = spl_fit_get_image_node(ctx, "loadables", index);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200477
478 ret = fdt_record_loadable(blob, index, name, image->load_addr,
Simon Glassdff90432023-09-26 08:14:35 -0600479 image->size, image->entry_point,
480 fdt_getprop(ctx->fit, node, FIT_TYPE_PROP, NULL),
481 fdt_getprop(ctx->fit, node, FIT_OS_PROP, NULL),
482 fdt_getprop(ctx->fit, node, FIT_ARCH_PROP, NULL));
483
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200484 return ret;
485}
486
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500487static int spl_fit_image_is_fpga(const void *fit, int node)
488{
489 const char *type;
490
491 if (!IS_ENABLED(CONFIG_SPL_FPGA))
492 return 0;
493
494 type = fdt_getprop(fit, node, FIT_TYPE_PROP, NULL);
495 if (!type)
496 return 0;
497
498 return !strcmp(type, "fpga");
499}
500
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100501static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os)
502{
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600503 if (!CONFIG_IS_ENABLED(FIT_IMAGE_TINY) || CONFIG_IS_ENABLED(OS_BOOT))
504 return fit_image_get_os(fit, noffset, os);
Samuel Hollande646f512020-10-21 21:12:13 -0500505
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600506 const char *name = fdt_getprop(fit, noffset, FIT_OS_PROP, NULL);
Samuel Hollande646f512020-10-21 21:12:13 -0500507 if (!name)
508 return -ENOENT;
509
510 /*
511 * We don't care what the type of the image actually is,
512 * only whether or not it is U-Boot. This saves some
513 * space by omitting the large table of OS types.
514 */
515 if (!strcmp(name, "u-boot"))
516 *os = IH_OS_U_BOOT;
517 else
518 *os = IH_OS_INVALID;
519
520 return 0;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100521}
522
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500523/*
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500524 * The purpose of the FIT load buffer is to provide a memory location that is
525 * independent of the load address of any FIT component.
526 */
527static void *spl_get_fit_load_buffer(size_t size)
528{
529 void *buf;
530
Stefan Herbrechtsmeier66249102022-06-14 16:12:00 +0200531 buf = malloc_cache_aligned(size);
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500532 if (!buf) {
533 pr_err("Could not get FIT buffer of %lu bytes\n", (ulong)size);
Simon Glass67e3fca2023-09-26 08:14:16 -0600534 pr_err("\tcheck CONFIG_SPL_SYS_MALLOC_SIZE\n");
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500535 buf = spl_get_load_buffer(0, size);
536 }
537 return buf;
538}
539
Heiko Schocher7d7c3672021-08-17 08:17:18 +0200540__weak void *board_spl_fit_buffer_addr(ulong fit_size, int sectors, int bl_len)
541{
542 return spl_get_fit_load_buffer(sectors * bl_len);
543}
544
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500545/*
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500546 * Weak default function to allow customizing SPL fit loading for load-only
547 * use cases by allowing to skip the parsing/processing of the FIT contents
548 * (so that this can be done separately in a more customized fashion)
549 */
550__weak bool spl_load_simple_fit_skip_processing(void)
551{
552 return false;
553}
554
Heiko Schocher67e8f5d2021-08-06 06:44:26 +0200555/*
556 * Weak default function to allow fixes after fit header
557 * is loaded.
558 */
559__weak void *spl_load_simple_fit_fix_load(const void *fit)
560{
561 return (void *)fit;
562}
563
Alexandru Gagniuc69a99662021-03-29 12:05:13 -0500564static void warn_deprecated(const char *msg)
565{
566 printf("DEPRECATED: %s\n", msg);
567 printf("\tSee doc/uImage.FIT/source_file_format.txt\n");
568}
569
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500570static int spl_fit_upload_fpga(struct spl_fit_info *ctx, int node,
571 struct spl_image_info *fpga_image)
572{
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500573 const char *compatible;
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500574 int ret;
Oleksandr Suvorov4ff163d2022-07-22 17:16:07 +0300575 int devnum = 0;
576 int flags = 0;
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500577
578 debug("FPGA bitstream at: %x, size: %x\n",
579 (u32)fpga_image->load_addr, fpga_image->size);
580
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500581 compatible = fdt_getprop(ctx->fit, node, "compatible", NULL);
Oleksandr Suvorov2fddf3e2022-07-22 17:16:09 +0300582 if (!compatible) {
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500583 warn_deprecated("'fpga' image without 'compatible' property");
Oleksandr Suvorov2fddf3e2022-07-22 17:16:09 +0300584 } else {
585 if (CONFIG_IS_ENABLED(FPGA_LOAD_SECURE))
586 flags = fpga_compatible2flag(devnum, compatible);
587 if (strcmp(compatible, "u-boot,fpga-legacy"))
588 debug("Ignoring compatible = %s property\n",
589 compatible);
590 }
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500591
Oleksandr Suvorov4ff163d2022-07-22 17:16:07 +0300592 ret = fpga_load(devnum, (void *)fpga_image->load_addr,
593 fpga_image->size, BIT_FULL, flags);
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500594 if (ret) {
595 printf("%s: Cannot load the image to the FPGA\n", __func__);
596 return ret;
597 }
598
599 puts("FPGA image loaded from FIT\n");
600
601 return 0;
602}
603
604static int spl_fit_load_fpga(struct spl_fit_info *ctx,
605 struct spl_load_info *info, ulong sector)
606{
607 int node, ret;
608
609 struct spl_image_info fpga_image = {
610 .load_addr = 0,
611 };
612
613 node = spl_fit_get_image_node(ctx, "fpga", 0);
614 if (node < 0)
615 return node;
616
Alexandru Gagniuc69a99662021-03-29 12:05:13 -0500617 warn_deprecated("'fpga' property in config node. Use 'loadables'");
618
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500619 /* Load the image and set up the fpga_image structure */
Simon Glass205ff7b2023-09-26 08:14:33 -0600620 ret = load_simple_fit(info, sector, ctx, node, &fpga_image);
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500621 if (ret) {
622 printf("%s: Cannot load the FPGA: %i\n", __func__, ret);
623 return ret;
624 }
625
626 return spl_fit_upload_fpga(ctx, node, &fpga_image);
627}
628
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600629static int spl_simple_fit_read(struct spl_fit_info *ctx,
630 struct spl_load_info *info, ulong sector,
631 const void *fit_header)
Simon Glassa6131a22016-02-22 22:55:56 -0700632{
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600633 unsigned long count, size;
Simon Glassa6131a22016-02-22 22:55:56 -0700634 int sectors;
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600635 void *buf;
Simon Glassa6131a22016-02-22 22:55:56 -0700636
637 /*
York Suna058b8a2017-08-15 11:14:45 -0700638 * For FIT with external data, figure out where the external images
639 * start. This is the base for the data-offset properties in each
640 * image.
Simon Glassa6131a22016-02-22 22:55:56 -0700641 */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600642 size = ALIGN(fdt_totalsize(fit_header), 4);
Ye Li9d5b0f42018-11-17 09:10:25 +0000643 size = board_spl_fit_size_align(size);
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600644 ctx->ext_data_offset = ALIGN(size, 4);
Simon Glassa6131a22016-02-22 22:55:56 -0700645
646 /*
647 * So far we only have one block of data from the FIT. Read the entire
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500648 * thing, including that first block.
York Suna058b8a2017-08-15 11:14:45 -0700649 *
650 * For FIT with data embedded, data is loaded as part of FIT image.
651 * For FIT with external data, data is not loaded in this step.
Simon Glassa6131a22016-02-22 22:55:56 -0700652 */
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530653 sectors = get_aligned_image_size(info, size, 0);
Heiko Schocher7d7c3672021-08-17 08:17:18 +0200654 buf = board_spl_fit_buffer_addr(size, sectors, info->bl_len);
Ye Li9d5b0f42018-11-17 09:10:25 +0000655
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600656 count = info->read(info, sector, sectors, buf);
657 ctx->fit = buf;
658 debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu, size=0x%lx\n",
659 sector, sectors, buf, count, size);
Simon Glassa6131a22016-02-22 22:55:56 -0700660
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600661 return (count == 0) ? -EIO : 0;
662}
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500663
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600664static int spl_simple_fit_parse(struct spl_fit_info *ctx)
665{
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600666 /* Find the correct subnode under "/configurations" */
667 ctx->conf_node = fit_find_config_node(ctx->fit);
668 if (ctx->conf_node < 0)
669 return -EINVAL;
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100670
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600671 if (IS_ENABLED(CONFIG_SPL_FIT_SIGNATURE)) {
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100672 printf("## Checking hash(es) for config %s ... ",
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600673 fit_get_name(ctx->fit, ctx->conf_node, NULL));
674 if (fit_config_verify(ctx->fit, ctx->conf_node))
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100675 return -EPERM;
676 puts("OK\n");
677 }
678
Andre Przywara525e9c92017-04-26 01:32:34 +0100679 /* find the node holding the images information */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600680 ctx->images_node = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
681 if (ctx->images_node < 0) {
682 debug("%s: Cannot find /images node: %d\n", __func__,
683 ctx->images_node);
684 return -EINVAL;
Simon Glassa6131a22016-02-22 22:55:56 -0700685 }
Marek Vasut33dd00e2018-05-12 22:25:28 +0200686
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600687 return 0;
688}
689
690int spl_load_simple_fit(struct spl_image_info *spl_image,
691 struct spl_load_info *info, ulong sector, void *fit)
692{
693 struct spl_image_info image_info;
694 struct spl_fit_info ctx;
695 int node = -1;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600696 int ret;
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600697 int index = 0;
698 int firmware_node;
699
700 ret = spl_simple_fit_read(&ctx, info, sector, fit);
701 if (ret < 0)
702 return ret;
703
704 /* skip further processing if requested to enable load-only use cases */
705 if (spl_load_simple_fit_skip_processing())
706 return 0;
707
Heiko Schocher67e8f5d2021-08-06 06:44:26 +0200708 ctx.fit = spl_load_simple_fit_fix_load(ctx.fit);
709
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600710 ret = spl_simple_fit_parse(&ctx);
711 if (ret < 0)
712 return ret;
713
Alexandru Gagniucec2a5742021-03-29 12:05:12 -0500714 if (IS_ENABLED(CONFIG_SPL_FPGA))
715 spl_fit_load_fpga(&ctx, info, sector);
Andre Przywara525e9c92017-04-26 01:32:34 +0100716
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200717 /*
718 * Find the U-Boot image using the following search order:
719 * - start at 'firmware' (e.g. an ARM Trusted Firmware)
720 * - fall back 'kernel' (e.g. a Falcon-mode OS boot
721 * - fall back to using the first 'loadables' entry
722 */
723 if (node < 0)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600724 node = spl_fit_get_image_node(&ctx, FIT_FIRMWARE_PROP, 0);
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600725
726 if (node < 0 && IS_ENABLED(CONFIG_SPL_OS_BOOT))
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600727 node = spl_fit_get_image_node(&ctx, FIT_KERNEL_PROP, 0);
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600728
Andre Przywara525e9c92017-04-26 01:32:34 +0100729 if (node < 0) {
730 debug("could not find firmware image, trying loadables...\n");
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600731 node = spl_fit_get_image_node(&ctx, "loadables", 0);
Andre Przywarae7c58562017-04-26 01:32:37 +0100732 /*
733 * If we pick the U-Boot image from "loadables", start at
734 * the second image when later loading additional images.
735 */
736 index = 1;
Andre Przywara525e9c92017-04-26 01:32:34 +0100737 }
Simon Glassa6131a22016-02-22 22:55:56 -0700738 if (node < 0) {
Andre Przywara525e9c92017-04-26 01:32:34 +0100739 debug("%s: Cannot find u-boot image node: %d\n",
740 __func__, node);
Simon Glassa6131a22016-02-22 22:55:56 -0700741 return -1;
742 }
743
Andre Przywara29053e92017-04-26 01:32:36 +0100744 /* Load the image and set up the spl_image structure */
Simon Glass205ff7b2023-09-26 08:14:33 -0600745 ret = load_simple_fit(info, sector, &ctx, node, spl_image);
Andre Przywara29053e92017-04-26 01:32:36 +0100746 if (ret)
747 return ret;
Daniel Allredcf839bd2016-06-27 09:19:21 -0500748
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200749 /*
750 * For backward compatibility, we treat the first node that is
751 * as a U-Boot image, if no OS-type has been declared.
752 */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600753 if (!spl_fit_image_get_os(ctx.fit, node, &spl_image->os))
York Suna058b8a2017-08-15 11:14:45 -0700754 debug("Image OS is %s\n", genimg_get_os_name(spl_image->os));
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600755 else if (!IS_ENABLED(CONFIG_SPL_OS_BOOT))
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200756 spl_image->os = IH_OS_U_BOOT;
Simon Glassa6131a22016-02-22 22:55:56 -0700757
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200758 /*
759 * Booting a next-stage U-Boot may require us to append the FDT.
760 * We allow this to fail, as the U-Boot image might embed its FDT.
761 */
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600762 if (os_takes_devicetree(spl_image->os)) {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600763 ret = spl_fit_append_fdt(spl_image, info, sector, &ctx);
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600764 if (ret < 0 && spl_image->os != IH_OS_U_BOOT)
Dario Binacchifaf8d142020-05-27 13:56:19 +0200765 return ret;
766 }
Andre Przywarae7c58562017-04-26 01:32:37 +0100767
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200768 firmware_node = node;
Andre Przywarae7c58562017-04-26 01:32:37 +0100769 /* Now check if there are more images for us to load */
770 for (; ; index++) {
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200771 uint8_t os_type = IH_OS_INVALID;
772
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600773 node = spl_fit_get_image_node(&ctx, "loadables", index);
Andre Przywarae7c58562017-04-26 01:32:37 +0100774 if (node < 0)
775 break;
776
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200777 /*
778 * if the firmware is also a loadable, skip it because
779 * it already has been loaded. This is typically the case with
780 * u-boot.img generated by mkimage.
781 */
782 if (firmware_node == node)
783 continue;
784
Alexandru Gagniucc5236c32021-03-29 12:05:10 -0500785 image_info.load_addr = 0;
Simon Glass205ff7b2023-09-26 08:14:33 -0600786 ret = load_simple_fit(info, sector, &ctx, node, &image_info);
Philippe Reynesba87da42020-11-24 16:15:05 +0100787 if (ret < 0) {
788 printf("%s: can't load image loadables index %d (ret = %d)\n",
789 __func__, index, ret);
790 return ret;
791 }
Andre Przywarae7c58562017-04-26 01:32:37 +0100792
Alexandru Gagniuc0df07592021-03-29 12:05:14 -0500793 if (spl_fit_image_is_fpga(ctx.fit, node))
794 spl_fit_upload_fpga(&ctx, node, &image_info);
795
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600796 if (!spl_fit_image_get_os(ctx.fit, node, &os_type))
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200797 debug("Loadable is %s\n", genimg_get_os_name(os_type));
798
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600799 if (os_takes_devicetree(os_type)) {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600800 spl_fit_append_fdt(&image_info, info, sector, &ctx);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200801 spl_image->fdt_addr = image_info.fdt_addr;
802 }
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200803
Andre Przywarae7c58562017-04-26 01:32:37 +0100804 /*
805 * If the "firmware" image did not provide an entry point,
806 * use the first valid entry point from the loadables.
807 */
808 if (spl_image->entry_point == FDT_ERROR &&
809 image_info.entry_point != FDT_ERROR)
810 spl_image->entry_point = image_info.entry_point;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200811
812 /* Record our loadables into the FDT */
813 if (spl_image->fdt_addr)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600814 spl_fit_record_loadable(&ctx, index,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200815 spl_image->fdt_addr,
816 &image_info);
Andre Przywarae7c58562017-04-26 01:32:37 +0100817 }
818
819 /*
Jesse Taube93ee5c82023-08-24 21:59:48 -0400820 * If a platform does not provide CONFIG_SYS_UBOOT_START, U-Boot's
Andre Przywarae7c58562017-04-26 01:32:37 +0100821 * Makefile will set it to 0 and it will end up as the entry point
822 * here. What it actually means is: use the load address.
823 */
824 if (spl_image->entry_point == FDT_ERROR || spl_image->entry_point == 0)
825 spl_image->entry_point = spl_image->load_addr;
826
Ye Li9d5b0f42018-11-17 09:10:25 +0000827 spl_image->flags |= SPL_FIT_FOUND;
828
Andre Przywarae7c58562017-04-26 01:32:37 +0100829 return 0;
Simon Glassa6131a22016-02-22 22:55:56 -0700830}
Simon Glassc0bd55e2023-09-26 08:14:34 -0600831
832/* Parse and load full fitImage in SPL */
833int spl_load_fit_image(struct spl_image_info *spl_image,
834 const struct legacy_img_hdr *header)
835{
836 struct bootm_headers images;
837 const char *fit_uname_config = NULL;
838 uintptr_t fdt_hack;
839 const char *uname;
840 ulong fw_data = 0, dt_data = 0, img_data = 0;
841 ulong fw_len = 0, dt_len = 0, img_len = 0;
842 int idx, conf_noffset;
843 int ret;
844
845#ifdef CONFIG_SPL_FIT_SIGNATURE
846 images.verify = 1;
847#endif
848 ret = fit_image_load(&images, (ulong)header,
849 NULL, &fit_uname_config,
850 IH_ARCH_DEFAULT, IH_TYPE_STANDALONE, -1,
851 FIT_LOAD_OPTIONAL, &fw_data, &fw_len);
852 if (ret >= 0) {
853 printf("DEPRECATED: 'standalone = ' property.");
854 printf("Please use either 'firmware =' or 'kernel ='\n");
855 } else {
856 ret = fit_image_load(&images, (ulong)header, NULL,
857 &fit_uname_config, IH_ARCH_DEFAULT,
858 IH_TYPE_FIRMWARE, -1, FIT_LOAD_OPTIONAL,
859 &fw_data, &fw_len);
860 }
861
862 if (ret < 0) {
863 ret = fit_image_load(&images, (ulong)header, NULL,
864 &fit_uname_config, IH_ARCH_DEFAULT,
865 IH_TYPE_KERNEL, -1, FIT_LOAD_OPTIONAL,
866 &fw_data, &fw_len);
867 }
868
869 if (ret < 0)
870 return ret;
871
872 spl_image->size = fw_len;
873 spl_image->entry_point = fw_data;
874 spl_image->load_addr = fw_data;
875 if (fit_image_get_os(header, ret, &spl_image->os))
876 spl_image->os = IH_OS_INVALID;
877 spl_image->name = genimg_get_os_name(spl_image->os);
878
879 debug(SPL_TPL_PROMPT "payload image: %32s load addr: 0x%lx size: %d\n",
880 spl_image->name, spl_image->load_addr, spl_image->size);
881
882#ifdef CONFIG_SPL_FIT_SIGNATURE
883 images.verify = 1;
884#endif
885 ret = fit_image_load(&images, (ulong)header, NULL, &fit_uname_config,
886 IH_ARCH_DEFAULT, IH_TYPE_FLATDT, -1,
887 FIT_LOAD_OPTIONAL, &dt_data, &dt_len);
888 if (ret >= 0) {
889 spl_image->fdt_addr = (void *)dt_data;
890
891 if (spl_image->os == IH_OS_U_BOOT) {
892 /* HACK: U-Boot expects FDT at a specific address */
893 fdt_hack = spl_image->load_addr + spl_image->size;
894 fdt_hack = (fdt_hack + 3) & ~3;
895 debug("Relocating FDT to %p\n", spl_image->fdt_addr);
896 memcpy((void *)fdt_hack, spl_image->fdt_addr, dt_len);
897 }
898 }
899
900 conf_noffset = fit_conf_get_node((const void *)header,
901 fit_uname_config);
902 if (conf_noffset < 0)
903 return 0;
904
905 for (idx = 0;
906 uname = fdt_stringlist_get((const void *)header, conf_noffset,
907 FIT_LOADABLE_PROP, idx,
908 NULL), uname;
909 idx++) {
910#ifdef CONFIG_SPL_FIT_SIGNATURE
911 images.verify = 1;
912#endif
913 ret = fit_image_load(&images, (ulong)header,
914 &uname, &fit_uname_config,
915 IH_ARCH_DEFAULT, IH_TYPE_LOADABLE, -1,
916 FIT_LOAD_OPTIONAL_NON_ZERO,
917 &img_data, &img_len);
918 if (ret < 0)
919 return ret;
920 }
921
922 return 0;
923}