blob: 6fad7361bddff57ec404c85e1026d4d5a07d29fb [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>
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +020013#include <malloc.h>
Simon Glassf1dcee52016-02-22 22:55:56 -070014#include <spl.h>
Simon Glass3a8ee3d2020-11-05 06:32:05 -070015#include <sysinfo.h>
Simon Glass90526e92020-05-10 11:39:56 -060016#include <asm/cache.h>
Simon Glass401d1c42020-10-30 21:38:53 -060017#include <asm/global_data.h>
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +020018#include <linux/libfdt.h>
Simon Glassf1dcee52016-02-22 22:55:56 -070019
Lukas Auerb83edfb2019-08-21 21:14:42 +020020DECLARE_GLOBAL_DATA_PTR;
21
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +020022#ifndef CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ
23#define CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ (64 * 1024)
24#endif
25
York Sun7264f292017-08-15 11:14:43 -070026#ifndef CONFIG_SYS_BOOTM_LEN
27#define CONFIG_SYS_BOOTM_LEN (64 << 20)
28#endif
29
Alexandru Gagniuc917fa362021-01-20 10:46:50 -060030struct spl_fit_info {
31 const void *fit; /* Pointer to a valid FIT blob */
32 size_t ext_data_offset; /* Offset to FIT external data (end of FIT) */
33 int images_node; /* FDT offset to "/images" node */
34};
35
Alexandru Gagniucefc4ad0bc2021-01-20 10:46:49 -060036__weak void board_spl_fit_post_load(const void *fit)
Ye Lie246bfc2018-11-17 09:10:25 +000037{
38}
39
40__weak ulong board_spl_fit_size_align(ulong size)
41{
42 return size;
43}
44
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +020045static int find_node_from_desc(const void *fit, int node, const char *str)
46{
47 int child;
48
49 if (node < 0)
50 return -EINVAL;
51
52 /* iterate the FIT nodes and find a matching description */
53 for (child = fdt_first_subnode(fit, node); child >= 0;
54 child = fdt_next_subnode(fit, child)) {
55 int len;
56 const char *desc = fdt_getprop(fit, child, "description", &len);
57
58 if (!desc)
59 continue;
60
61 if (!strcmp(desc, str))
62 return child;
63 }
64
65 return -ENOENT;
66}
67
Andre Przywara736806f2017-04-26 01:32:34 +010068/**
Philipp Tomsicha616c782017-09-13 21:29:34 +020069 * spl_fit_get_image_name(): By using the matching configuration subnode,
Andre Przywara736806f2017-04-26 01:32:34 +010070 * retrieve the name of an image, specified by a property name and an index
71 * into that.
72 * @fit: Pointer to the FDT blob.
73 * @images: Offset of the /images subnode.
74 * @type: Name of the property within the configuration subnode.
75 * @index: Index into the list of strings in this property.
Philipp Tomsicha616c782017-09-13 21:29:34 +020076 * @outname: Name of the image
Andre Przywara736806f2017-04-26 01:32:34 +010077 *
Philipp Tomsicha616c782017-09-13 21:29:34 +020078 * Return: 0 on success, or a negative error number
Andre Przywara736806f2017-04-26 01:32:34 +010079 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -060080static int spl_fit_get_image_name(const struct spl_fit_info *ctx,
Philipp Tomsicha616c782017-09-13 21:29:34 +020081 const char *type, int index,
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +020082 const char **outname)
Andre Przywara4b9340a2017-04-26 01:32:33 +010083{
Simon Glass3a8ee3d2020-11-05 06:32:05 -070084 struct udevice *sysinfo;
Andre Przywara4b9340a2017-04-26 01:32:33 +010085 const char *name, *str;
Philipp Tomsicha616c782017-09-13 21:29:34 +020086 __maybe_unused int node;
87 int conf_node;
Andre Przywara4b9340a2017-04-26 01:32:33 +010088 int len, i;
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +020089 bool found = true;
Andre Przywara4b9340a2017-04-26 01:32:33 +010090
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -060091 conf_node = fit_find_config_node(ctx->fit);
Andre Przywara4b9340a2017-04-26 01:32:33 +010092 if (conf_node < 0) {
93#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
94 printf("No matching DT out of these options:\n");
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -060095 for (node = fdt_first_subnode(ctx->fit, conf_node);
Andre Przywara4b9340a2017-04-26 01:32:33 +010096 node >= 0;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -060097 node = fdt_next_subnode(ctx->fit, node)) {
98 name = fdt_getprop(ctx->fit, node, "description", &len);
Andre Przywara4b9340a2017-04-26 01:32:33 +010099 printf(" %s\n", name);
100 }
101#endif
102 return conf_node;
103 }
104
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600105 name = fdt_getprop(ctx->fit, conf_node, type, &len);
Andre Przywara4b9340a2017-04-26 01:32:33 +0100106 if (!name) {
107 debug("cannot find property '%s': %d\n", type, len);
108 return -EINVAL;
109 }
110
111 str = name;
112 for (i = 0; i < index; i++) {
113 str = strchr(str, '\0') + 1;
114 if (!str || (str - name >= len)) {
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200115 found = false;
116 break;
Andre Przywara4b9340a2017-04-26 01:32:33 +0100117 }
118 }
119
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700120 if (!found && CONFIG_IS_ENABLED(SYSINFO) && !sysinfo_get(&sysinfo)) {
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200121 int rc;
122 /*
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700123 * no string in the property for this index. Check if the
124 * sysinfo-level code can supply one.
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200125 */
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700126 rc = sysinfo_get_fit_loadable(sysinfo, index - i - 1, type,
127 &str);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200128 if (rc && rc != -ENOENT)
129 return rc;
130
131 if (!rc) {
132 /*
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700133 * The sysinfo provided a name for a loadable.
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200134 * Try to match it against the description properties
135 * first. If no matching node is found, use it as a
136 * node name.
137 */
138 int node;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600139 int images = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200140
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600141 node = find_node_from_desc(ctx->fit, images, str);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200142 if (node > 0)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600143 str = fdt_get_name(ctx->fit, node, NULL);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200144
145 found = true;
146 }
147 }
148
149 if (!found) {
150 debug("no string for index %d\n", index);
151 return -E2BIG;
152 }
153
154 *outname = str;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200155 return 0;
156}
157
158/**
159 * spl_fit_get_image_node(): By using the matching configuration subnode,
160 * retrieve the name of an image, specified by a property name and an index
161 * into that.
162 * @fit: Pointer to the FDT blob.
163 * @images: Offset of the /images subnode.
164 * @type: Name of the property within the configuration subnode.
165 * @index: Index into the list of strings in this property.
166 *
167 * Return: the node offset of the respective image node or a negative
168 * error number.
169 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600170static int spl_fit_get_image_node(const struct spl_fit_info *ctx,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200171 const char *type, int index)
172{
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +0200173 const char *str;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200174 int err;
175 int node;
176
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600177 err = spl_fit_get_image_name(ctx, type, index, &str);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200178 if (err)
179 return err;
180
Andre Przywara4b9340a2017-04-26 01:32:33 +0100181 debug("%s: '%s'\n", type, str);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200182
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600183 node = fdt_subnode_offset(ctx->fit, ctx->images_node, str);
Andre Przywara4b9340a2017-04-26 01:32:33 +0100184 if (node < 0) {
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200185 pr_err("cannot find image node '%s': %d\n", str, node);
Andre Przywara4b9340a2017-04-26 01:32:33 +0100186 return -EINVAL;
187 }
188
Andre Przywara736806f2017-04-26 01:32:34 +0100189 return node;
Andre Przywara4b9340a2017-04-26 01:32:33 +0100190}
191
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530192static int get_aligned_image_offset(struct spl_load_info *info, int offset)
193{
194 /*
195 * If it is a FS read, get the first address before offset which is
196 * aligned to ARCH_DMA_MINALIGN. If it is raw read return the
197 * block number to which offset belongs.
198 */
199 if (info->filename)
200 return offset & ~(ARCH_DMA_MINALIGN - 1);
201
202 return offset / info->bl_len;
203}
204
205static int get_aligned_image_overhead(struct spl_load_info *info, int offset)
206{
207 /*
208 * If it is a FS read, get the difference between the offset and
209 * the first address before offset which is aligned to
210 * ARCH_DMA_MINALIGN. If it is raw read return the offset within the
211 * block.
212 */
213 if (info->filename)
214 return offset & (ARCH_DMA_MINALIGN - 1);
215
216 return offset % info->bl_len;
217}
218
219static int get_aligned_image_size(struct spl_load_info *info, int data_size,
220 int offset)
221{
Lokesh Vutla3cc1f382016-07-19 14:56:14 +0530222 data_size = data_size + get_aligned_image_overhead(info, offset);
223
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530224 if (info->filename)
Lokesh Vutla3cc1f382016-07-19 14:56:14 +0530225 return data_size;
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530226
227 return (data_size + info->bl_len - 1) / info->bl_len;
228}
229
Andre Przywara8baa3812017-04-26 01:32:36 +0100230/**
231 * spl_load_fit_image(): load the image described in a certain FIT node
232 * @info: points to information about the device to load data from
233 * @sector: the start sector of the FIT image on the device
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600234 * @ctx: points to the FIT context structure
Andre Przywara8baa3812017-04-26 01:32:36 +0100235 * @node: offset of the DT node describing the image to load (relative
Philipp Tomsicha616c782017-09-13 21:29:34 +0200236 * to @fit)
Andre Przywara8baa3812017-04-26 01:32:36 +0100237 * @image_info: will be filled with information about the loaded image
Philipp Tomsicha616c782017-09-13 21:29:34 +0200238 * If the FIT node does not contain a "load" (address) property,
239 * the image gets loaded to the address pointed to by the
240 * load_addr member in this struct.
Andre Przywara8baa3812017-04-26 01:32:36 +0100241 *
242 * Return: 0 on success or a negative error number.
243 */
244static int spl_load_fit_image(struct spl_load_info *info, ulong sector,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600245 const struct spl_fit_info *ctx, int node,
Andre Przywara8baa3812017-04-26 01:32:36 +0100246 struct spl_image_info *image_info)
247{
Michal Simek3313ae62018-07-18 14:33:15 +0200248 int offset;
Andre Przywara8baa3812017-04-26 01:32:36 +0100249 size_t length;
York Sun5fd13d92017-08-15 11:14:44 -0700250 int len;
York Sun933f67a2017-09-15 08:21:13 -0700251 ulong size;
Andre Przywara8baa3812017-04-26 01:32:36 +0100252 ulong load_addr, load_ptr;
253 void *src;
254 ulong overhead;
255 int nr_sectors;
256 int align_len = ARCH_DMA_MINALIGN - 1;
York Sun7264f292017-08-15 11:14:43 -0700257 uint8_t image_comp = -1, type = -1;
York Sun5fd13d92017-08-15 11:14:44 -0700258 const void *data;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600259 const void *fit = ctx->fit;
Peng Fana1be94b2017-12-05 13:20:59 +0800260 bool external_data = false;
York Sun7264f292017-08-15 11:14:43 -0700261
Michal Simek29bd8ad2020-09-09 14:41:56 +0200262 if (IS_ENABLED(CONFIG_SPL_FPGA) ||
Marek Vasut56419ea2018-06-01 23:19:29 +0200263 (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP))) {
264 if (fit_image_get_type(fit, node, &type))
265 puts("Cannot get image type.\n");
266 else
267 debug("%s ", genimg_get_type_name(type));
268 }
269
Klaus H. Sorensen602ce1d2019-12-11 11:03:33 +0000270 if (IS_ENABLED(CONFIG_SPL_GZIP)) {
271 fit_image_get_comp(fit, node, &image_comp);
272 debug("%s ", genimg_get_comp_name(image_comp));
York Sun7264f292017-08-15 11:14:43 -0700273 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100274
York Sun5fd13d92017-08-15 11:14:44 -0700275 if (fit_image_get_load(fit, node, &load_addr))
Andre Przywara8baa3812017-04-26 01:32:36 +0100276 load_addr = image_info->load_addr;
Andre Przywara8baa3812017-04-26 01:32:36 +0100277
Peng Fana1be94b2017-12-05 13:20:59 +0800278 if (!fit_image_get_data_position(fit, node, &offset)) {
279 external_data = true;
280 } else if (!fit_image_get_data_offset(fit, node, &offset)) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600281 offset += ctx->ext_data_offset;
Peng Fana1be94b2017-12-05 13:20:59 +0800282 external_data = true;
283 }
284
285 if (external_data) {
286 /* External data */
York Sun5fd13d92017-08-15 11:14:44 -0700287 if (fit_image_get_data_size(fit, node, &len))
288 return -ENOENT;
Andre Przywara8baa3812017-04-26 01:32:36 +0100289
York Sun5fd13d92017-08-15 11:14:44 -0700290 load_ptr = (load_addr + align_len) & ~align_len;
291 length = len;
Andre Przywara8baa3812017-04-26 01:32:36 +0100292
York Sun5fd13d92017-08-15 11:14:44 -0700293 overhead = get_aligned_image_overhead(info, offset);
294 nr_sectors = get_aligned_image_size(info, length, offset);
295
Michal Simek3313ae62018-07-18 14:33:15 +0200296 if (info->read(info,
297 sector + get_aligned_image_offset(info, offset),
York Sun5fd13d92017-08-15 11:14:44 -0700298 nr_sectors, (void *)load_ptr) != nr_sectors)
299 return -EIO;
300
301 debug("External data: dst=%lx, offset=%x, size=%lx\n",
302 load_ptr, offset, (unsigned long)length);
303 src = (void *)load_ptr + overhead;
304 } else {
305 /* Embedded data */
306 if (fit_image_get_data(fit, node, &data, &length)) {
307 puts("Cannot get image data/size\n");
308 return -ENOENT;
309 }
310 debug("Embedded data: dst=%lx, size=%lx\n", load_addr,
311 (unsigned long)length);
312 src = (void *)data;
313 }
314
Ben Whittend154ca62018-06-07 11:37:27 +0100315#ifdef CONFIG_SPL_FIT_SIGNATURE
316 printf("## Checking hash(es) for Image %s ... ",
317 fit_get_name(fit, node, NULL));
318 if (!fit_image_verify_with_data(fit, node,
319 src, length))
320 return -EPERM;
321 puts("OK\n");
322#endif
323
Andre Przywara8baa3812017-04-26 01:32:36 +0100324#ifdef CONFIG_SPL_FIT_IMAGE_POST_PROCESS
325 board_fit_image_post_process(&src, &length);
326#endif
327
Michal Simek975e7892018-07-24 15:05:00 +0200328 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
York Sun933f67a2017-09-15 08:21:13 -0700329 size = length;
York Sun7264f292017-08-15 11:14:43 -0700330 if (gunzip((void *)load_addr, CONFIG_SYS_BOOTM_LEN,
York Sun933f67a2017-09-15 08:21:13 -0700331 src, &size)) {
York Sun7264f292017-08-15 11:14:43 -0700332 puts("Uncompressing error\n");
333 return -EIO;
334 }
York Sun933f67a2017-09-15 08:21:13 -0700335 length = size;
York Sun7264f292017-08-15 11:14:43 -0700336 } else {
337 memcpy((void *)load_addr, src, length);
338 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100339
340 if (image_info) {
Michal Simekcaa7fc22020-09-03 11:24:28 +0200341 ulong entry_point;
342
Andre Przywara8baa3812017-04-26 01:32:36 +0100343 image_info->load_addr = load_addr;
344 image_info->size = length;
Michal Simekcaa7fc22020-09-03 11:24:28 +0200345
346 if (!fit_image_get_entry(fit, node, &entry_point))
347 image_info->entry_point = entry_point;
348 else
349 image_info->entry_point = FDT_ERROR;
Andre Przywara8baa3812017-04-26 01:32:36 +0100350 }
351
352 return 0;
353}
354
Philipp Tomsichd8796162017-09-13 21:29:32 +0200355static int spl_fit_append_fdt(struct spl_image_info *spl_image,
356 struct spl_load_info *info, ulong sector,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600357 const struct spl_fit_info *ctx)
Philipp Tomsichd8796162017-09-13 21:29:32 +0200358{
359 struct spl_image_info image_info;
Michal Simek9d13b872019-10-22 16:39:11 +0200360 int node, ret = 0, index = 0;
Lukas Auerb83edfb2019-08-21 21:14:42 +0200361
362 /*
363 * Use the address following the image as target address for the
Marek Vasut5675ed72020-10-19 23:40:26 +0200364 * device tree.
Lukas Auerb83edfb2019-08-21 21:14:42 +0200365 */
Marek Vasut5675ed72020-10-19 23:40:26 +0200366 image_info.load_addr = spl_image->load_addr + spl_image->size;
Philipp Tomsichd8796162017-09-13 21:29:32 +0200367
368 /* Figure out which device tree the board wants to use */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600369 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index++);
Philipp Tomsichd8796162017-09-13 21:29:32 +0200370 if (node < 0) {
371 debug("%s: cannot find FDT node\n", __func__);
Lukas Auerb83edfb2019-08-21 21:14:42 +0200372
373 /*
374 * U-Boot did not find a device tree inside the FIT image. Use
375 * the U-Boot device tree instead.
376 */
377 if (gd->fdt_blob)
378 memcpy((void *)image_info.load_addr, gd->fdt_blob,
379 fdt_totalsize(gd->fdt_blob));
380 else
381 return node;
382 } else {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600383 ret = spl_load_fit_image(info, sector, ctx, node,
Lukas Auerb83edfb2019-08-21 21:14:42 +0200384 &image_info);
385 if (ret < 0)
386 return ret;
Philipp Tomsichd8796162017-09-13 21:29:32 +0200387 }
388
Philipp Tomsicha616c782017-09-13 21:29:34 +0200389 /* Make the load-address of the FDT available for the SPL framework */
390 spl_image->fdt_addr = (void *)image_info.load_addr;
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100391#if !CONFIG_IS_ENABLED(FIT_IMAGE_TINY)
Michal Simek9d13b872019-10-22 16:39:11 +0200392 if (CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)) {
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200393 void *tmpbuffer = NULL;
394
Michal Simek9d13b872019-10-22 16:39:11 +0200395 for (; ; index++) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600396 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index);
Jean-Jacques Hiblot24bf44c2019-10-22 16:39:14 +0200397 if (node == -E2BIG) {
Michal Simek9d13b872019-10-22 16:39:11 +0200398 debug("%s: No additional FDT node\n", __func__);
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200399 break;
Jean-Jacques Hiblot24bf44c2019-10-22 16:39:14 +0200400 } else if (node < 0) {
401 debug("%s: unable to find FDT node %d\n",
402 __func__, index);
403 continue;
Michal Simek9d13b872019-10-22 16:39:11 +0200404 }
Philipp Tomsicha616c782017-09-13 21:29:34 +0200405
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200406 if (!tmpbuffer) {
407 /*
408 * allocate memory to store the DT overlay
409 * before it is applied. It may not be used
410 * depending on how the overlay is stored, so
411 * don't fail yet if the allocation failed.
412 */
413 tmpbuffer = malloc(CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ);
414 if (!tmpbuffer)
415 debug("%s: unable to allocate space for overlays\n",
416 __func__);
417 }
418 image_info.load_addr = (ulong)tmpbuffer;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600419 ret = spl_load_fit_image(info, sector, ctx,
Michal Simek9d13b872019-10-22 16:39:11 +0200420 node, &image_info);
421 if (ret < 0)
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200422 break;
Michal Simek9d13b872019-10-22 16:39:11 +0200423
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200424 /* Make room in FDT for changes from the overlay */
425 ret = fdt_increase_size(spl_image->fdt_addr,
426 image_info.size);
427 if (ret < 0)
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200428 break;
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200429
Michal Simek9d13b872019-10-22 16:39:11 +0200430 ret = fdt_overlay_apply_verbose(spl_image->fdt_addr,
431 (void *)image_info.load_addr);
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200432 if (ret) {
433 pr_err("failed to apply DT overlay %s\n",
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600434 fit_get_name(ctx->fit, node, NULL));
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200435 break;
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200436 }
Michal Simek9d13b872019-10-22 16:39:11 +0200437
438 debug("%s: DT overlay %s applied\n", __func__,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600439 fit_get_name(ctx->fit, node, NULL));
Michal Simek9d13b872019-10-22 16:39:11 +0200440 }
Heinrich Schuchardt077e72c2020-04-20 12:44:01 +0200441 free(tmpbuffer);
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200442 if (ret)
443 return ret;
Michal Simek9d13b872019-10-22 16:39:11 +0200444 }
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200445 /* Try to make space, so we can inject details on the loadables */
446 ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192);
447 if (ret < 0)
448 return ret;
449#endif
450
Philipp Tomsicha616c782017-09-13 21:29:34 +0200451 return ret;
452}
453
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600454static int spl_fit_record_loadable(const struct spl_fit_info *ctx, int index,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200455 void *blob, struct spl_image_info *image)
456{
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100457 int ret = 0;
458#if !CONFIG_IS_ENABLED(FIT_IMAGE_TINY)
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +0200459 const char *name;
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100460 int node;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200461
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600462 ret = spl_fit_get_image_name(ctx, "loadables", index, &name);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200463 if (ret < 0)
464 return ret;
465
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600466 node = spl_fit_get_image_node(ctx, "loadables", index);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200467
468 ret = fdt_record_loadable(blob, index, name, image->load_addr,
469 image->size, image->entry_point,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600470 fdt_getprop(ctx->fit, node, "type", NULL),
471 fdt_getprop(ctx->fit, node, "os", NULL));
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100472#endif
Philipp Tomsichd8796162017-09-13 21:29:32 +0200473 return ret;
474}
475
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100476static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os)
477{
Jean-Jacques Hiblot7296a332019-04-26 15:21:25 +0200478#if CONFIG_IS_ENABLED(FIT_IMAGE_TINY) && !defined(CONFIG_SPL_OS_BOOT)
Samuel Hollandcf705532020-10-21 21:12:13 -0500479 const char *name = fdt_getprop(fit, noffset, FIT_OS_PROP, NULL);
480
481 if (!name)
482 return -ENOENT;
483
484 /*
485 * We don't care what the type of the image actually is,
486 * only whether or not it is U-Boot. This saves some
487 * space by omitting the large table of OS types.
488 */
489 if (!strcmp(name, "u-boot"))
490 *os = IH_OS_U_BOOT;
491 else
492 *os = IH_OS_INVALID;
493
494 return 0;
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100495#else
496 return fit_image_get_os(fit, noffset, os);
497#endif
498}
499
Andreas Dannenberge1eb6ad2019-06-04 17:55:46 -0500500/*
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500501 * The purpose of the FIT load buffer is to provide a memory location that is
502 * independent of the load address of any FIT component.
503 */
504static void *spl_get_fit_load_buffer(size_t size)
505{
506 void *buf;
507
508 buf = malloc(size);
509 if (!buf) {
510 pr_err("Could not get FIT buffer of %lu bytes\n", (ulong)size);
511 pr_err("\tcheck CONFIG_SYS_SPL_MALLOC_SIZE\n");
512 buf = spl_get_load_buffer(0, size);
513 }
514 return buf;
515}
516
517/*
Andreas Dannenberge1eb6ad2019-06-04 17:55:46 -0500518 * Weak default function to allow customizing SPL fit loading for load-only
519 * use cases by allowing to skip the parsing/processing of the FIT contents
520 * (so that this can be done separately in a more customized fashion)
521 */
522__weak bool spl_load_simple_fit_skip_processing(void)
523{
524 return false;
525}
526
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600527static int spl_simple_fit_read(struct spl_fit_info *ctx,
528 struct spl_load_info *info, ulong sector,
529 const void *fit_header)
Simon Glassf1dcee52016-02-22 22:55:56 -0700530{
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600531 unsigned long count, size;
Simon Glassf1dcee52016-02-22 22:55:56 -0700532 int sectors;
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600533 void *buf;
Simon Glassf1dcee52016-02-22 22:55:56 -0700534
535 /*
York Sunc8bc3c02017-08-15 11:14:45 -0700536 * For FIT with external data, figure out where the external images
537 * start. This is the base for the data-offset properties in each
538 * image.
Simon Glassf1dcee52016-02-22 22:55:56 -0700539 */
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600540 size = ALIGN(fdt_totalsize(fit_header), 4);
Ye Lie246bfc2018-11-17 09:10:25 +0000541 size = board_spl_fit_size_align(size);
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600542 ctx->ext_data_offset = ALIGN(size, 4);
Simon Glassf1dcee52016-02-22 22:55:56 -0700543
544 /*
545 * So far we only have one block of data from the FIT. Read the entire
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500546 * thing, including that first block.
York Sunc8bc3c02017-08-15 11:14:45 -0700547 *
548 * For FIT with data embedded, data is loaded as part of FIT image.
549 * For FIT with external data, data is not loaded in this step.
Simon Glassf1dcee52016-02-22 22:55:56 -0700550 */
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530551 sectors = get_aligned_image_size(info, size, 0);
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600552 buf = spl_get_fit_load_buffer(sectors * info->bl_len);
553
554 count = info->read(info, sector, sectors, buf);
555 ctx->fit = buf;
Ye Lie246bfc2018-11-17 09:10:25 +0000556 debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu, size=0x%lx\n",
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600557 sector, sectors, buf, count, size);
Ye Lie246bfc2018-11-17 09:10:25 +0000558
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600559 return (count == 0) ? -EIO : 0;
560}
Simon Glassf1dcee52016-02-22 22:55:56 -0700561
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600562static int spl_simple_fit_parse(struct spl_fit_info *ctx)
563{
Philippe Reynes7d5b1bf2020-10-29 18:50:29 +0100564 if (IS_ENABLED(CONFIG_SPL_FIT_SIGNATURE)) {
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600565 int conf_offset = fit_find_config_node(ctx->fit);
Philippe Reynes7d5b1bf2020-10-29 18:50:29 +0100566
567 printf("## Checking hash(es) for config %s ... ",
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600568 fit_get_name(ctx->fit, conf_offset, NULL));
569 if (fit_config_verify(ctx->fit, conf_offset))
Philippe Reynes7d5b1bf2020-10-29 18:50:29 +0100570 return -EPERM;
571 puts("OK\n");
572 }
573
Andre Przywara736806f2017-04-26 01:32:34 +0100574 /* find the node holding the images information */
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600575 ctx->images_node = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
576 if (ctx->images_node < 0) {
577 debug("%s: Cannot find /images node: %d\n", __func__,
578 ctx->images_node);
579 return -EINVAL;
Simon Glassf1dcee52016-02-22 22:55:56 -0700580 }
Andre Przywara736806f2017-04-26 01:32:34 +0100581
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600582 return 0;
583}
584
585int spl_load_simple_fit(struct spl_image_info *spl_image,
586 struct spl_load_info *info, ulong sector, void *fit)
587{
588 struct spl_image_info image_info;
589 struct spl_fit_info ctx;
590 int node = -1;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600591 int ret;
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600592 int index = 0;
593 int firmware_node;
594
595 ret = spl_simple_fit_read(&ctx, info, sector, fit);
596 if (ret < 0)
597 return ret;
598
599 /* skip further processing if requested to enable load-only use cases */
600 if (spl_load_simple_fit_skip_processing())
601 return 0;
602
603 ret = spl_simple_fit_parse(&ctx);
604 if (ret < 0)
605 return ret;
606
Michal Simek29bd8ad2020-09-09 14:41:56 +0200607#ifdef CONFIG_SPL_FPGA
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600608 node = spl_fit_get_image_node(&ctx, "fpga", 0);
Marek Vasut26a64222018-05-12 22:25:28 +0200609 if (node >= 0) {
610 /* Load the image and set up the spl_image structure */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600611 ret = spl_load_fit_image(info, sector, &ctx, node, spl_image);
Marek Vasut26a64222018-05-12 22:25:28 +0200612 if (ret) {
613 printf("%s: Cannot load the FPGA: %i\n", __func__, ret);
614 return ret;
615 }
Michal Simek3313ae62018-07-18 14:33:15 +0200616
617 debug("FPGA bitstream at: %x, size: %x\n",
618 (u32)spl_image->load_addr, spl_image->size);
619
620 ret = fpga_load(0, (const void *)spl_image->load_addr,
621 spl_image->size, BIT_FULL);
622 if (ret) {
623 printf("%s: Cannot load the image to the FPGA\n",
624 __func__);
625 return ret;
626 }
627
Luis Araneda3907eef2018-07-19 03:10:16 -0400628 puts("FPGA image loaded from FIT\n");
Marek Vasut26a64222018-05-12 22:25:28 +0200629 node = -1;
630 }
631#endif
632
Philipp Tomsichd8796162017-09-13 21:29:32 +0200633 /*
634 * Find the U-Boot image using the following search order:
635 * - start at 'firmware' (e.g. an ARM Trusted Firmware)
636 * - fall back 'kernel' (e.g. a Falcon-mode OS boot
637 * - fall back to using the first 'loadables' entry
638 */
York Sunc8bc3c02017-08-15 11:14:45 -0700639 if (node < 0)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600640 node = spl_fit_get_image_node(&ctx, FIT_FIRMWARE_PROP, 0);
Philipp Tomsichd8796162017-09-13 21:29:32 +0200641#ifdef CONFIG_SPL_OS_BOOT
642 if (node < 0)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600643 node = spl_fit_get_image_node(&ctx, FIT_KERNEL_PROP, 0);
Philipp Tomsichd8796162017-09-13 21:29:32 +0200644#endif
Simon Glassf1dcee52016-02-22 22:55:56 -0700645 if (node < 0) {
Andre Przywara736806f2017-04-26 01:32:34 +0100646 debug("could not find firmware image, trying loadables...\n");
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600647 node = spl_fit_get_image_node(&ctx, "loadables", 0);
Andre Przywara411cf322017-04-26 01:32:37 +0100648 /*
649 * If we pick the U-Boot image from "loadables", start at
650 * the second image when later loading additional images.
651 */
652 index = 1;
Andre Przywara736806f2017-04-26 01:32:34 +0100653 }
654 if (node < 0) {
655 debug("%s: Cannot find u-boot image node: %d\n",
656 __func__, node);
Simon Glassf1dcee52016-02-22 22:55:56 -0700657 return -1;
658 }
659
Andre Przywara8baa3812017-04-26 01:32:36 +0100660 /* Load the image and set up the spl_image structure */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600661 ret = spl_load_fit_image(info, sector, &ctx, node, spl_image);
Andre Przywara8baa3812017-04-26 01:32:36 +0100662 if (ret)
663 return ret;
664
Philipp Tomsichd8796162017-09-13 21:29:32 +0200665 /*
666 * For backward compatibility, we treat the first node that is
667 * as a U-Boot image, if no OS-type has been declared.
668 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600669 if (!spl_fit_image_get_os(ctx.fit, node, &spl_image->os))
York Sunc8bc3c02017-08-15 11:14:45 -0700670 debug("Image OS is %s\n", genimg_get_os_name(spl_image->os));
Philipp Tomsichd8796162017-09-13 21:29:32 +0200671#if !defined(CONFIG_SPL_OS_BOOT)
672 else
673 spl_image->os = IH_OS_U_BOOT;
York Sunc8bc3c02017-08-15 11:14:45 -0700674#endif
Simon Glassf1dcee52016-02-22 22:55:56 -0700675
Philipp Tomsichd8796162017-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 */
Dario Binacchi585b4682020-05-27 13:56:19 +0200680 if (spl_image->os == IH_OS_U_BOOT) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600681 ret = spl_fit_append_fdt(spl_image, info, sector, &ctx);
Dario Binacchi585b4682020-05-27 13:56:19 +0200682 if (!IS_ENABLED(CONFIG_OF_EMBED) && ret < 0)
683 return ret;
684 }
Simon Glassf1dcee52016-02-22 22:55:56 -0700685
Jean-Jacques Hiblot6b8b98d2019-10-22 16:39:10 +0200686 firmware_node = node;
Andre Przywara411cf322017-04-26 01:32:37 +0100687 /* Now check if there are more images for us to load */
688 for (; ; index++) {
Philipp Tomsichd8796162017-09-13 21:29:32 +0200689 uint8_t os_type = IH_OS_INVALID;
690
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600691 node = spl_fit_get_image_node(&ctx, "loadables", index);
Andre Przywara411cf322017-04-26 01:32:37 +0100692 if (node < 0)
693 break;
694
Jean-Jacques Hiblot6b8b98d2019-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 Gagniuc3dc20792021-01-20 10:46:51 -0600703 ret = spl_load_fit_image(info, sector, &ctx, node, &image_info);
Philippe Reynesc61b2bf2020-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 Przywara411cf322017-04-26 01:32:37 +0100709
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600710 if (!spl_fit_image_get_os(ctx.fit, node, &os_type))
Philipp Tomsichd8796162017-09-13 21:29:32 +0200711 debug("Loadable is %s\n", genimg_get_os_name(os_type));
712
Philipp Tomsicha616c782017-09-13 21:29:34 +0200713 if (os_type == IH_OS_U_BOOT) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600714 spl_fit_append_fdt(&image_info, info, sector, &ctx);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200715 spl_image->fdt_addr = image_info.fdt_addr;
716 }
Philipp Tomsichd8796162017-09-13 21:29:32 +0200717
Andre Przywara411cf322017-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 Tomsicha616c782017-09-13 21:29:34 +0200725
726 /* Record our loadables into the FDT */
727 if (spl_image->fdt_addr)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600728 spl_fit_record_loadable(&ctx, index,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200729 spl_image->fdt_addr,
730 &image_info);
Andre Przywara411cf322017-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 Lie246bfc2018-11-17 09:10:25 +0000741 spl_image->flags |= SPL_FIT_FOUND;
742
Stefano Babicd714a752019-09-20 08:47:53 +0200743#ifdef CONFIG_IMX_HAB
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600744 board_spl_fit_post_load(ctx.fit);
Ye Lie246bfc2018-11-17 09:10:25 +0000745#endif
746
Andre Przywara411cf322017-04-26 01:32:37 +0100747 return 0;
Simon Glassf1dcee52016-02-22 22:55:56 -0700748}