blob: 49508fc51806f711909e38fe6be50eb57551b832 [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>
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +020013#include <malloc.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 Glassa6131a22016-02-22 22:55:56 -070020
Lukas Auer80afee72019-08-21 21:14:42 +020021DECLARE_GLOBAL_DATA_PTR;
22
Jean-Jacques Hiblot0da58152019-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 Suna6945fe2017-08-15 11:14:43 -070027#ifndef CONFIG_SYS_BOOTM_LEN
28#define CONFIG_SYS_BOOTM_LEN (64 << 20)
29#endif
30
Alexandru Gagniuc23243c92021-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 Gagniucfa11a442021-01-20 10:46:53 -060035 int conf_node; /* FDT offset to selected configuration node */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -060036};
37
Alexandru Gagniuc44af2a52021-01-20 10:46:49 -060038__weak void board_spl_fit_post_load(const void *fit)
Ye Li9d5b0f42018-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 Hiblot9037b7f2019-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 Przywara525e9c92017-04-26 01:32:34 +010070/**
Philipp Tomsiche61eff92017-09-13 21:29:34 +020071 * spl_fit_get_image_name(): By using the matching configuration subnode,
Andre Przywara525e9c92017-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 Tomsiche61eff92017-09-13 21:29:34 +020078 * @outname: Name of the image
Andre Przywara525e9c92017-04-26 01:32:34 +010079 *
Philipp Tomsiche61eff92017-09-13 21:29:34 +020080 * Return: 0 on success, or a negative error number
Andre Przywara525e9c92017-04-26 01:32:34 +010081 */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -060082static int spl_fit_get_image_name(const struct spl_fit_info *ctx,
Philipp Tomsiche61eff92017-09-13 21:29:34 +020083 const char *type, int index,
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +020084 const char **outname)
Andre Przywara1e329b62017-04-26 01:32:33 +010085{
Simon Glass458b66a2020-11-05 06:32:05 -070086 struct udevice *sysinfo;
Andre Przywara1e329b62017-04-26 01:32:33 +010087 const char *name, *str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +020088 __maybe_unused int node;
Andre Przywara1e329b62017-04-26 01:32:33 +010089 int len, i;
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020090 bool found = true;
Andre Przywara1e329b62017-04-26 01:32:33 +010091
Alexandru Gagniucfa11a442021-01-20 10:46:53 -060092 name = fdt_getprop(ctx->fit, ctx->conf_node, type, &len);
Andre Przywara1e329b62017-04-26 01:32:33 +010093 if (!name) {
94 debug("cannot find property '%s': %d\n", type, len);
95 return -EINVAL;
96 }
Simon Glassa6131a22016-02-22 22:55:56 -070097
Andre Przywara1e329b62017-04-26 01:32:33 +010098 str = name;
99 for (i = 0; i < index; i++) {
100 str = strchr(str, '\0') + 1;
101 if (!str || (str - name >= len)) {
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200102 found = false;
103 break;
Andre Przywara1e329b62017-04-26 01:32:33 +0100104 }
Simon Glassa6131a22016-02-22 22:55:56 -0700105 }
106
Simon Glass458b66a2020-11-05 06:32:05 -0700107 if (!found && CONFIG_IS_ENABLED(SYSINFO) && !sysinfo_get(&sysinfo)) {
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200108 int rc;
109 /*
Simon Glass458b66a2020-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 Hiblot9037b7f2019-10-22 16:39:22 +0200112 */
Simon Glass458b66a2020-11-05 06:32:05 -0700113 rc = sysinfo_get_fit_loadable(sysinfo, index - i - 1, type,
114 &str);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200115 if (rc && rc != -ENOENT)
116 return rc;
117
118 if (!rc) {
119 /*
Simon Glass458b66a2020-11-05 06:32:05 -0700120 * The sysinfo provided a name for a loadable.
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200121 * Try to match it against the description properties
122 * first. If no matching node is found, use it as a
123 * node name.
124 */
125 int node;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600126 int images = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200127
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600128 node = find_node_from_desc(ctx->fit, images, str);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200129 if (node > 0)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600130 str = fdt_get_name(ctx->fit, node, NULL);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200131
132 found = true;
133 }
134 }
135
136 if (!found) {
137 debug("no string for index %d\n", index);
138 return -E2BIG;
139 }
140
141 *outname = str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200142 return 0;
143}
144
145/**
146 * spl_fit_get_image_node(): By using the matching configuration subnode,
147 * retrieve the name of an image, specified by a property name and an index
148 * into that.
149 * @fit: Pointer to the FDT blob.
150 * @images: Offset of the /images subnode.
151 * @type: Name of the property within the configuration subnode.
152 * @index: Index into the list of strings in this property.
153 *
154 * Return: the node offset of the respective image node or a negative
155 * error number.
156 */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600157static int spl_fit_get_image_node(const struct spl_fit_info *ctx,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200158 const char *type, int index)
159{
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +0200160 const char *str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200161 int err;
162 int node;
163
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600164 err = spl_fit_get_image_name(ctx, type, index, &str);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200165 if (err)
166 return err;
167
Andre Przywara1e329b62017-04-26 01:32:33 +0100168 debug("%s: '%s'\n", type, str);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200169
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600170 node = fdt_subnode_offset(ctx->fit, ctx->images_node, str);
Andre Przywara1e329b62017-04-26 01:32:33 +0100171 if (node < 0) {
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200172 pr_err("cannot find image node '%s': %d\n", str, node);
Andre Przywara1e329b62017-04-26 01:32:33 +0100173 return -EINVAL;
Simon Glassa6131a22016-02-22 22:55:56 -0700174 }
Simon Glassa6131a22016-02-22 22:55:56 -0700175
Andre Przywara525e9c92017-04-26 01:32:34 +0100176 return node;
Simon Glassa6131a22016-02-22 22:55:56 -0700177}
178
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530179static int get_aligned_image_offset(struct spl_load_info *info, int offset)
180{
181 /*
182 * If it is a FS read, get the first address before offset which is
183 * aligned to ARCH_DMA_MINALIGN. If it is raw read return the
184 * block number to which offset belongs.
185 */
186 if (info->filename)
187 return offset & ~(ARCH_DMA_MINALIGN - 1);
188
189 return offset / info->bl_len;
190}
191
192static int get_aligned_image_overhead(struct spl_load_info *info, int offset)
193{
194 /*
195 * If it is a FS read, get the difference between the offset and
196 * the first address before offset which is aligned to
197 * ARCH_DMA_MINALIGN. If it is raw read return the offset within the
198 * block.
199 */
200 if (info->filename)
201 return offset & (ARCH_DMA_MINALIGN - 1);
202
203 return offset % info->bl_len;
204}
205
206static int get_aligned_image_size(struct spl_load_info *info, int data_size,
207 int offset)
208{
Lokesh Vutlaf0531a62016-07-19 14:56:14 +0530209 data_size = data_size + get_aligned_image_overhead(info, offset);
210
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530211 if (info->filename)
Lokesh Vutlaf0531a62016-07-19 14:56:14 +0530212 return data_size;
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530213
214 return (data_size + info->bl_len - 1) / info->bl_len;
215}
216
Andre Przywara29053e92017-04-26 01:32:36 +0100217/**
218 * spl_load_fit_image(): load the image described in a certain FIT node
219 * @info: points to information about the device to load data from
220 * @sector: the start sector of the FIT image on the device
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600221 * @ctx: points to the FIT context structure
Andre Przywara29053e92017-04-26 01:32:36 +0100222 * @node: offset of the DT node describing the image to load (relative
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200223 * to @fit)
Andre Przywara29053e92017-04-26 01:32:36 +0100224 * @image_info: will be filled with information about the loaded image
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200225 * If the FIT node does not contain a "load" (address) property,
226 * the image gets loaded to the address pointed to by the
227 * load_addr member in this struct.
Andre Przywara29053e92017-04-26 01:32:36 +0100228 *
229 * Return: 0 on success or a negative error number.
230 */
231static int spl_load_fit_image(struct spl_load_info *info, ulong sector,
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600232 const struct spl_fit_info *ctx, int node,
Andre Przywara29053e92017-04-26 01:32:36 +0100233 struct spl_image_info *image_info)
234{
Michal Simekf707b5a2018-07-18 14:33:15 +0200235 int offset;
Andre Przywara29053e92017-04-26 01:32:36 +0100236 size_t length;
York Sunadf99fa2017-08-15 11:14:44 -0700237 int len;
York Sun25d65f12017-09-15 08:21:13 -0700238 ulong size;
Simon Glass2192e982021-03-07 17:35:14 -0700239 ulong load_addr;
240 void *load_ptr;
Andre Przywara29053e92017-04-26 01:32:36 +0100241 void *src;
242 ulong overhead;
243 int nr_sectors;
York Suna6945fe2017-08-15 11:14:43 -0700244 uint8_t image_comp = -1, type = -1;
York Sunadf99fa2017-08-15 11:14:44 -0700245 const void *data;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600246 const void *fit = ctx->fit;
Peng Fan8876c7e2017-12-05 13:20:59 +0800247 bool external_data = false;
York Suna6945fe2017-08-15 11:14:43 -0700248
Michal Simek1aab1142020-09-09 14:41:56 +0200249 if (IS_ENABLED(CONFIG_SPL_FPGA) ||
Marek Vasut72bc5d52018-06-01 23:19:29 +0200250 (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP))) {
251 if (fit_image_get_type(fit, node, &type))
252 puts("Cannot get image type.\n");
253 else
254 debug("%s ", genimg_get_type_name(type));
255 }
256
Klaus H. Sorensen4a9a0422019-12-11 11:03:33 +0000257 if (IS_ENABLED(CONFIG_SPL_GZIP)) {
258 fit_image_get_comp(fit, node, &image_comp);
259 debug("%s ", genimg_get_comp_name(image_comp));
York Suna6945fe2017-08-15 11:14:43 -0700260 }
Andre Przywara29053e92017-04-26 01:32:36 +0100261
York Sunadf99fa2017-08-15 11:14:44 -0700262 if (fit_image_get_load(fit, node, &load_addr))
Andre Przywara29053e92017-04-26 01:32:36 +0100263 load_addr = image_info->load_addr;
Andre Przywara29053e92017-04-26 01:32:36 +0100264
Peng Fan8876c7e2017-12-05 13:20:59 +0800265 if (!fit_image_get_data_position(fit, node, &offset)) {
266 external_data = true;
267 } else if (!fit_image_get_data_offset(fit, node, &offset)) {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600268 offset += ctx->ext_data_offset;
Peng Fan8876c7e2017-12-05 13:20:59 +0800269 external_data = true;
270 }
271
272 if (external_data) {
Simon Glass2192e982021-03-07 17:35:14 -0700273 void *src_ptr;
274
Peng Fan8876c7e2017-12-05 13:20:59 +0800275 /* External data */
York Sunadf99fa2017-08-15 11:14:44 -0700276 if (fit_image_get_data_size(fit, node, &len))
277 return -ENOENT;
Andre Przywara29053e92017-04-26 01:32:36 +0100278
Simon Glass2192e982021-03-07 17:35:14 -0700279 src_ptr = map_sysmem(ALIGN(load_addr, ARCH_DMA_MINALIGN), len);
York Sunadf99fa2017-08-15 11:14:44 -0700280 length = len;
281
282 overhead = get_aligned_image_overhead(info, offset);
283 nr_sectors = get_aligned_image_size(info, length, offset);
284
Michal Simekf707b5a2018-07-18 14:33:15 +0200285 if (info->read(info,
286 sector + get_aligned_image_offset(info, offset),
Simon Glass2192e982021-03-07 17:35:14 -0700287 nr_sectors, src_ptr) != nr_sectors)
York Sunadf99fa2017-08-15 11:14:44 -0700288 return -EIO;
289
Simon Glass2192e982021-03-07 17:35:14 -0700290 debug("External data: dst=%p, offset=%x, size=%lx\n",
291 src_ptr, offset, (unsigned long)length);
292 src = src_ptr + overhead;
York Sunadf99fa2017-08-15 11:14:44 -0700293 } else {
294 /* Embedded data */
295 if (fit_image_get_data(fit, node, &data, &length)) {
296 puts("Cannot get image data/size\n");
297 return -ENOENT;
298 }
299 debug("Embedded data: dst=%lx, size=%lx\n", load_addr,
300 (unsigned long)length);
Simon Glass2192e982021-03-07 17:35:14 -0700301 src = (void *)data; /* cast away const */
York Sunadf99fa2017-08-15 11:14:44 -0700302 }
Andre Przywara29053e92017-04-26 01:32:36 +0100303
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600304 if (CONFIG_IS_ENABLED(FIT_SIGNATURE)) {
305 printf("## Checking hash(es) for Image %s ... ",
306 fit_get_name(fit, node, NULL));
307 if (!fit_image_verify_with_data(fit, node, src, length))
308 return -EPERM;
309 puts("OK\n");
310 }
Ben Whitten54a91192018-06-07 11:37:27 +0100311
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600312 if (CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS))
313 board_fit_image_post_process(&src, &length);
Andre Przywara29053e92017-04-26 01:32:36 +0100314
Simon Glass2192e982021-03-07 17:35:14 -0700315 load_ptr = map_sysmem(load_addr, length);
Michal Simekf354c3f2018-07-24 15:05:00 +0200316 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
York Sun25d65f12017-09-15 08:21:13 -0700317 size = length;
Simon Glass2192e982021-03-07 17:35:14 -0700318 if (gunzip(load_ptr, CONFIG_SYS_BOOTM_LEN, src, &size)) {
York Suna6945fe2017-08-15 11:14:43 -0700319 puts("Uncompressing error\n");
320 return -EIO;
321 }
York Sun25d65f12017-09-15 08:21:13 -0700322 length = size;
York Suna6945fe2017-08-15 11:14:43 -0700323 } else {
Simon Glass2192e982021-03-07 17:35:14 -0700324 memcpy(load_ptr, src, length);
York Suna6945fe2017-08-15 11:14:43 -0700325 }
Andre Przywara29053e92017-04-26 01:32:36 +0100326
327 if (image_info) {
Michal Simek9e64a552020-09-03 11:24:28 +0200328 ulong entry_point;
329
Andre Przywara29053e92017-04-26 01:32:36 +0100330 image_info->load_addr = load_addr;
331 image_info->size = length;
Michal Simek9e64a552020-09-03 11:24:28 +0200332
333 if (!fit_image_get_entry(fit, node, &entry_point))
334 image_info->entry_point = entry_point;
335 else
336 image_info->entry_point = FDT_ERROR;
Andre Przywara29053e92017-04-26 01:32:36 +0100337 }
338
339 return 0;
340}
341
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600342static bool os_takes_devicetree(uint8_t os)
343{
344 switch (os) {
345 case IH_OS_U_BOOT:
346 return true;
347 case IH_OS_LINUX:
348 return IS_ENABLED(CONFIG_SPL_OS_BOOT);
349 default:
350 return false;
351 }
352}
353
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200354static int spl_fit_append_fdt(struct spl_image_info *spl_image,
355 struct spl_load_info *info, ulong sector,
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600356 const struct spl_fit_info *ctx)
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200357{
358 struct spl_image_info image_info;
Michal Simekbf703df2019-10-22 16:39:11 +0200359 int node, ret = 0, index = 0;
Lukas Auer80afee72019-08-21 21:14:42 +0200360
361 /*
362 * Use the address following the image as target address for the
Marek Vasutc27cbe82020-10-19 23:40:26 +0200363 * device tree.
Lukas Auer80afee72019-08-21 21:14:42 +0200364 */
Marek Vasutc27cbe82020-10-19 23:40:26 +0200365 image_info.load_addr = spl_image->load_addr + spl_image->size;
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200366
367 /* Figure out which device tree the board wants to use */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600368 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index++);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200369 if (node < 0) {
370 debug("%s: cannot find FDT node\n", __func__);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200371
Lukas Auer80afee72019-08-21 21:14:42 +0200372 /*
373 * U-Boot did not find a device tree inside the FIT image. Use
374 * the U-Boot device tree instead.
375 */
376 if (gd->fdt_blob)
377 memcpy((void *)image_info.load_addr, gd->fdt_blob,
378 fdt_totalsize(gd->fdt_blob));
379 else
380 return node;
381 } else {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600382 ret = spl_load_fit_image(info, sector, ctx, node,
Lukas Auer80afee72019-08-21 21:14:42 +0200383 &image_info);
384 if (ret < 0)
385 return ret;
386 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200387
388 /* Make the load-address of the FDT available for the SPL framework */
Simon Glass2192e982021-03-07 17:35:14 -0700389 spl_image->fdt_addr = map_sysmem(image_info.load_addr, 0);
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600390 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
391 return 0;
392
Michal Simekbf703df2019-10-22 16:39:11 +0200393 if (CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)) {
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200394 void *tmpbuffer = NULL;
395
Michal Simekbf703df2019-10-22 16:39:11 +0200396 for (; ; index++) {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600397 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index);
Jean-Jacques Hiblotc6ab6a12019-10-22 16:39:14 +0200398 if (node == -E2BIG) {
Michal Simekbf703df2019-10-22 16:39:11 +0200399 debug("%s: No additional FDT node\n", __func__);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200400 break;
Jean-Jacques Hiblotc6ab6a12019-10-22 16:39:14 +0200401 } else if (node < 0) {
402 debug("%s: unable to find FDT node %d\n",
403 __func__, index);
404 continue;
Michal Simekbf703df2019-10-22 16:39:11 +0200405 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200406
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200407 if (!tmpbuffer) {
408 /*
409 * allocate memory to store the DT overlay
410 * before it is applied. It may not be used
411 * depending on how the overlay is stored, so
412 * don't fail yet if the allocation failed.
413 */
414 tmpbuffer = malloc(CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ);
415 if (!tmpbuffer)
416 debug("%s: unable to allocate space for overlays\n",
417 __func__);
418 }
419 image_info.load_addr = (ulong)tmpbuffer;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600420 ret = spl_load_fit_image(info, sector, ctx,
Michal Simekbf703df2019-10-22 16:39:11 +0200421 node, &image_info);
422 if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200423 break;
Michal Simekbf703df2019-10-22 16:39:11 +0200424
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200425 /* Make room in FDT for changes from the overlay */
426 ret = fdt_increase_size(spl_image->fdt_addr,
427 image_info.size);
428 if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200429 break;
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200430
Michal Simekbf703df2019-10-22 16:39:11 +0200431 ret = fdt_overlay_apply_verbose(spl_image->fdt_addr,
432 (void *)image_info.load_addr);
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200433 if (ret) {
434 pr_err("failed to apply DT overlay %s\n",
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600435 fit_get_name(ctx->fit, node, NULL));
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200436 break;
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200437 }
Michal Simekbf703df2019-10-22 16:39:11 +0200438
439 debug("%s: DT overlay %s applied\n", __func__,
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600440 fit_get_name(ctx->fit, node, NULL));
Michal Simekbf703df2019-10-22 16:39:11 +0200441 }
Heinrich Schuchardt939a9612020-04-20 12:44:01 +0200442 free(tmpbuffer);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200443 if (ret)
444 return ret;
Michal Simekbf703df2019-10-22 16:39:11 +0200445 }
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200446 /* Try to make space, so we can inject details on the loadables */
447 ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192);
448 if (ret < 0)
449 return ret;
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200450
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200451 return ret;
452}
453
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600454static int spl_fit_record_loadable(const struct spl_fit_info *ctx, int index,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200455 void *blob, struct spl_image_info *image)
456{
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100457 int ret = 0;
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +0200458 const char *name;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100459 int node;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200460
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600461 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
462 return 0;
463
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600464 ret = spl_fit_get_image_name(ctx, "loadables", index, &name);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200465 if (ret < 0)
466 return ret;
467
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600468 node = spl_fit_get_image_node(ctx, "loadables", index);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200469
470 ret = fdt_record_loadable(blob, index, name, image->load_addr,
471 image->size, image->entry_point,
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600472 fdt_getprop(ctx->fit, node, "type", NULL),
473 fdt_getprop(ctx->fit, node, "os", NULL));
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200474 return ret;
475}
476
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100477static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os)
478{
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600479 if (!CONFIG_IS_ENABLED(FIT_IMAGE_TINY) || CONFIG_IS_ENABLED(OS_BOOT))
480 return fit_image_get_os(fit, noffset, os);
Samuel Hollande646f512020-10-21 21:12:13 -0500481
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600482 const char *name = fdt_getprop(fit, noffset, FIT_OS_PROP, NULL);
Samuel Hollande646f512020-10-21 21:12:13 -0500483 if (!name)
484 return -ENOENT;
485
486 /*
487 * We don't care what the type of the image actually is,
488 * only whether or not it is U-Boot. This saves some
489 * space by omitting the large table of OS types.
490 */
491 if (!strcmp(name, "u-boot"))
492 *os = IH_OS_U_BOOT;
493 else
494 *os = IH_OS_INVALID;
495
496 return 0;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100497}
498
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500499/*
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500500 * The purpose of the FIT load buffer is to provide a memory location that is
501 * independent of the load address of any FIT component.
502 */
503static void *spl_get_fit_load_buffer(size_t size)
504{
505 void *buf;
506
507 buf = malloc(size);
508 if (!buf) {
509 pr_err("Could not get FIT buffer of %lu bytes\n", (ulong)size);
510 pr_err("\tcheck CONFIG_SYS_SPL_MALLOC_SIZE\n");
511 buf = spl_get_load_buffer(0, size);
512 }
513 return buf;
514}
515
516/*
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500517 * Weak default function to allow customizing SPL fit loading for load-only
518 * use cases by allowing to skip the parsing/processing of the FIT contents
519 * (so that this can be done separately in a more customized fashion)
520 */
521__weak bool spl_load_simple_fit_skip_processing(void)
522{
523 return false;
524}
525
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600526static int spl_simple_fit_read(struct spl_fit_info *ctx,
527 struct spl_load_info *info, ulong sector,
528 const void *fit_header)
Simon Glassa6131a22016-02-22 22:55:56 -0700529{
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600530 unsigned long count, size;
Simon Glassa6131a22016-02-22 22:55:56 -0700531 int sectors;
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600532 void *buf;
Simon Glassa6131a22016-02-22 22:55:56 -0700533
534 /*
York Suna058b8a2017-08-15 11:14:45 -0700535 * For FIT with external data, figure out where the external images
536 * start. This is the base for the data-offset properties in each
537 * image.
Simon Glassa6131a22016-02-22 22:55:56 -0700538 */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600539 size = ALIGN(fdt_totalsize(fit_header), 4);
Ye Li9d5b0f42018-11-17 09:10:25 +0000540 size = board_spl_fit_size_align(size);
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600541 ctx->ext_data_offset = ALIGN(size, 4);
Simon Glassa6131a22016-02-22 22:55:56 -0700542
543 /*
544 * So far we only have one block of data from the FIT. Read the entire
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500545 * thing, including that first block.
York Suna058b8a2017-08-15 11:14:45 -0700546 *
547 * For FIT with data embedded, data is loaded as part of FIT image.
548 * For FIT with external data, data is not loaded in this step.
Simon Glassa6131a22016-02-22 22:55:56 -0700549 */
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530550 sectors = get_aligned_image_size(info, size, 0);
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600551 buf = spl_get_fit_load_buffer(sectors * info->bl_len);
Ye Li9d5b0f42018-11-17 09:10:25 +0000552
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600553 count = info->read(info, sector, sectors, buf);
554 ctx->fit = buf;
555 debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu, size=0x%lx\n",
556 sector, sectors, buf, count, size);
Simon Glassa6131a22016-02-22 22:55:56 -0700557
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600558 return (count == 0) ? -EIO : 0;
559}
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500560
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600561static int spl_simple_fit_parse(struct spl_fit_info *ctx)
562{
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600563 /* Find the correct subnode under "/configurations" */
564 ctx->conf_node = fit_find_config_node(ctx->fit);
565 if (ctx->conf_node < 0)
566 return -EINVAL;
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100567
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600568 if (IS_ENABLED(CONFIG_SPL_FIT_SIGNATURE)) {
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100569 printf("## Checking hash(es) for config %s ... ",
Alexandru Gagniucfa11a442021-01-20 10:46:53 -0600570 fit_get_name(ctx->fit, ctx->conf_node, NULL));
571 if (fit_config_verify(ctx->fit, ctx->conf_node))
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100572 return -EPERM;
573 puts("OK\n");
574 }
575
Andre Przywara525e9c92017-04-26 01:32:34 +0100576 /* find the node holding the images information */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600577 ctx->images_node = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
578 if (ctx->images_node < 0) {
579 debug("%s: Cannot find /images node: %d\n", __func__,
580 ctx->images_node);
581 return -EINVAL;
Simon Glassa6131a22016-02-22 22:55:56 -0700582 }
Marek Vasut33dd00e2018-05-12 22:25:28 +0200583
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600584 return 0;
585}
586
587int spl_load_simple_fit(struct spl_image_info *spl_image,
588 struct spl_load_info *info, ulong sector, void *fit)
589{
590 struct spl_image_info image_info;
591 struct spl_fit_info ctx;
592 int node = -1;
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600593 int ret;
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600594 int index = 0;
595 int firmware_node;
596
597 ret = spl_simple_fit_read(&ctx, info, sector, fit);
598 if (ret < 0)
599 return ret;
600
601 /* skip further processing if requested to enable load-only use cases */
602 if (spl_load_simple_fit_skip_processing())
603 return 0;
604
605 ret = spl_simple_fit_parse(&ctx);
606 if (ret < 0)
607 return ret;
608
Michal Simek1aab1142020-09-09 14:41:56 +0200609#ifdef CONFIG_SPL_FPGA
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600610 node = spl_fit_get_image_node(&ctx, "fpga", 0);
Marek Vasut33dd00e2018-05-12 22:25:28 +0200611 if (node >= 0) {
612 /* Load the image and set up the spl_image structure */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600613 ret = spl_load_fit_image(info, sector, &ctx, node, spl_image);
Marek Vasut33dd00e2018-05-12 22:25:28 +0200614 if (ret) {
615 printf("%s: Cannot load the FPGA: %i\n", __func__, ret);
616 return ret;
617 }
Michal Simekf707b5a2018-07-18 14:33:15 +0200618
619 debug("FPGA bitstream at: %x, size: %x\n",
620 (u32)spl_image->load_addr, spl_image->size);
621
622 ret = fpga_load(0, (const void *)spl_image->load_addr,
623 spl_image->size, BIT_FULL);
624 if (ret) {
625 printf("%s: Cannot load the image to the FPGA\n",
626 __func__);
627 return ret;
628 }
629
Luis Aranedaeece6232018-07-19 03:10:16 -0400630 puts("FPGA image loaded from FIT\n");
Marek Vasut33dd00e2018-05-12 22:25:28 +0200631 node = -1;
632 }
633#endif
Andre Przywara525e9c92017-04-26 01:32:34 +0100634
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200635 /*
636 * Find the U-Boot image using the following search order:
637 * - start at 'firmware' (e.g. an ARM Trusted Firmware)
638 * - fall back 'kernel' (e.g. a Falcon-mode OS boot
639 * - fall back to using the first 'loadables' entry
640 */
641 if (node < 0)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600642 node = spl_fit_get_image_node(&ctx, FIT_FIRMWARE_PROP, 0);
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600643
644 if (node < 0 && IS_ENABLED(CONFIG_SPL_OS_BOOT))
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600645 node = spl_fit_get_image_node(&ctx, FIT_KERNEL_PROP, 0);
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600646
Andre Przywara525e9c92017-04-26 01:32:34 +0100647 if (node < 0) {
648 debug("could not find firmware image, trying loadables...\n");
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600649 node = spl_fit_get_image_node(&ctx, "loadables", 0);
Andre Przywarae7c58562017-04-26 01:32:37 +0100650 /*
651 * If we pick the U-Boot image from "loadables", start at
652 * the second image when later loading additional images.
653 */
654 index = 1;
Andre Przywara525e9c92017-04-26 01:32:34 +0100655 }
Simon Glassa6131a22016-02-22 22:55:56 -0700656 if (node < 0) {
Andre Przywara525e9c92017-04-26 01:32:34 +0100657 debug("%s: Cannot find u-boot image node: %d\n",
658 __func__, node);
Simon Glassa6131a22016-02-22 22:55:56 -0700659 return -1;
660 }
661
Andre Przywara29053e92017-04-26 01:32:36 +0100662 /* Load the image and set up the spl_image structure */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600663 ret = spl_load_fit_image(info, sector, &ctx, node, spl_image);
Andre Przywara29053e92017-04-26 01:32:36 +0100664 if (ret)
665 return ret;
Daniel Allredcf839bd2016-06-27 09:19:21 -0500666
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200667 /*
668 * For backward compatibility, we treat the first node that is
669 * as a U-Boot image, if no OS-type has been declared.
670 */
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600671 if (!spl_fit_image_get_os(ctx.fit, node, &spl_image->os))
York Suna058b8a2017-08-15 11:14:45 -0700672 debug("Image OS is %s\n", genimg_get_os_name(spl_image->os));
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600673 else if (!IS_ENABLED(CONFIG_SPL_OS_BOOT))
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200674 spl_image->os = IH_OS_U_BOOT;
Simon Glassa6131a22016-02-22 22:55:56 -0700675
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200676 /*
677 * Booting a next-stage U-Boot may require us to append the FDT.
678 * We allow this to fail, as the U-Boot image might embed its FDT.
679 */
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600680 if (os_takes_devicetree(spl_image->os)) {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600681 ret = spl_fit_append_fdt(spl_image, info, sector, &ctx);
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600682 if (ret < 0 && spl_image->os != IH_OS_U_BOOT)
Dario Binacchifaf8d142020-05-27 13:56:19 +0200683 return ret;
684 }
Andre Przywarae7c58562017-04-26 01:32:37 +0100685
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200686 firmware_node = node;
Andre Przywarae7c58562017-04-26 01:32:37 +0100687 /* Now check if there are more images for us to load */
688 for (; ; index++) {
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200689 uint8_t os_type = IH_OS_INVALID;
690
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600691 node = spl_fit_get_image_node(&ctx, "loadables", index);
Andre Przywarae7c58562017-04-26 01:32:37 +0100692 if (node < 0)
693 break;
694
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200695 /*
696 * if the firmware is also a loadable, skip it because
697 * it already has been loaded. This is typically the case with
698 * u-boot.img generated by mkimage.
699 */
700 if (firmware_node == node)
701 continue;
702
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600703 ret = spl_load_fit_image(info, sector, &ctx, node, &image_info);
Philippe Reynesba87da42020-11-24 16:15:05 +0100704 if (ret < 0) {
705 printf("%s: can't load image loadables index %d (ret = %d)\n",
706 __func__, index, ret);
707 return ret;
708 }
Andre Przywarae7c58562017-04-26 01:32:37 +0100709
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600710 if (!spl_fit_image_get_os(ctx.fit, node, &os_type))
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200711 debug("Loadable is %s\n", genimg_get_os_name(os_type));
712
Alexandru Gagniuc769ed252021-01-20 10:46:56 -0600713 if (os_takes_devicetree(os_type)) {
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600714 spl_fit_append_fdt(&image_info, info, sector, &ctx);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200715 spl_image->fdt_addr = image_info.fdt_addr;
716 }
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200717
Andre Przywarae7c58562017-04-26 01:32:37 +0100718 /*
719 * If the "firmware" image did not provide an entry point,
720 * use the first valid entry point from the loadables.
721 */
722 if (spl_image->entry_point == FDT_ERROR &&
723 image_info.entry_point != FDT_ERROR)
724 spl_image->entry_point = image_info.entry_point;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200725
726 /* Record our loadables into the FDT */
727 if (spl_image->fdt_addr)
Alexandru Gagniuc93d15572021-01-20 10:46:51 -0600728 spl_fit_record_loadable(&ctx, index,
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200729 spl_image->fdt_addr,
730 &image_info);
Andre Przywarae7c58562017-04-26 01:32:37 +0100731 }
732
733 /*
734 * If a platform does not provide CONFIG_SYS_UBOOT_START, U-Boot's
735 * Makefile will set it to 0 and it will end up as the entry point
736 * here. What it actually means is: use the load address.
737 */
738 if (spl_image->entry_point == FDT_ERROR || spl_image->entry_point == 0)
739 spl_image->entry_point = spl_image->load_addr;
740
Ye Li9d5b0f42018-11-17 09:10:25 +0000741 spl_image->flags |= SPL_FIT_FOUND;
742
Alexandru Gagniuca4fed792021-01-20 10:46:55 -0600743 if (IS_ENABLED(CONFIG_IMX_HAB))
744 board_spl_fit_post_load(ctx.fit);
Ye Li9d5b0f42018-11-17 09:10:25 +0000745
Andre Przywarae7c58562017-04-26 01:32:37 +0100746 return 0;
Simon Glassa6131a22016-02-22 22:55:56 -0700747}