blob: 91091b651b8be7848f9d002cdca5198175eaac86 [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 Glassa6131a22016-02-22 22:55:56 -070014#include <spl.h>
Simon Glass458b66a2020-11-05 06:32:05 -070015#include <sysinfo.h>
Simon Glass274e0b02020-05-10 11:39:56 -060016#include <asm/cache.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060017#include <asm/global_data.h>
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +020018#include <linux/libfdt.h>
Simon Glassa6131a22016-02-22 22:55:56 -070019
Lukas Auer80afee72019-08-21 21:14:42 +020020DECLARE_GLOBAL_DATA_PTR;
21
Jean-Jacques Hiblot0da58152019-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 Suna6945fe2017-08-15 11:14:43 -070026#ifndef CONFIG_SYS_BOOTM_LEN
27#define CONFIG_SYS_BOOTM_LEN (64 << 20)
28#endif
29
Alexandru Gagniuc23243c92021-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 Gagniuc44af2a52021-01-20 10:46:49 -060036__weak void board_spl_fit_post_load(const void *fit)
Ye Li9d5b0f42018-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 Hiblot9037b7f2019-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 Przywara525e9c92017-04-26 01:32:34 +010068/**
Philipp Tomsiche61eff92017-09-13 21:29:34 +020069 * spl_fit_get_image_name(): By using the matching configuration subnode,
Andre Przywara525e9c92017-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 Tomsiche61eff92017-09-13 21:29:34 +020076 * @outname: Name of the image
Andre Przywara525e9c92017-04-26 01:32:34 +010077 *
Philipp Tomsiche61eff92017-09-13 21:29:34 +020078 * Return: 0 on success, or a negative error number
Andre Przywara525e9c92017-04-26 01:32:34 +010079 */
Philipp Tomsiche61eff92017-09-13 21:29:34 +020080static int spl_fit_get_image_name(const void *fit, int images,
81 const char *type, int index,
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +020082 const char **outname)
Andre Przywara1e329b62017-04-26 01:32:33 +010083{
Simon Glass458b66a2020-11-05 06:32:05 -070084 struct udevice *sysinfo;
Andre Przywara1e329b62017-04-26 01:32:33 +010085 const char *name, *str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +020086 __maybe_unused int node;
87 int conf_node;
Andre Przywara1e329b62017-04-26 01:32:33 +010088 int len, i;
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020089 bool found = true;
Andre Przywara1e329b62017-04-26 01:32:33 +010090
Cooper Jr., Frankline6792402017-06-16 17:25:05 -050091 conf_node = fit_find_config_node(fit);
Andre Przywara1e329b62017-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");
95 for (node = fdt_first_subnode(fit, conf_node);
96 node >= 0;
97 node = fdt_next_subnode(fit, node)) {
98 name = fdt_getprop(fit, node, "description", &len);
99 printf(" %s\n", name);
Simon Glassa6131a22016-02-22 22:55:56 -0700100 }
Andre Przywara1e329b62017-04-26 01:32:33 +0100101#endif
102 return conf_node;
103 }
Simon Glassa6131a22016-02-22 22:55:56 -0700104
Andre Przywara1e329b62017-04-26 01:32:33 +0100105 name = fdt_getprop(fit, conf_node, type, &len);
106 if (!name) {
107 debug("cannot find property '%s': %d\n", type, len);
108 return -EINVAL;
109 }
Simon Glassa6131a22016-02-22 22:55:56 -0700110
Andre Przywara1e329b62017-04-26 01:32:33 +0100111 str = name;
112 for (i = 0; i < index; i++) {
113 str = strchr(str, '\0') + 1;
114 if (!str || (str - name >= len)) {
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200115 found = false;
116 break;
Andre Przywara1e329b62017-04-26 01:32:33 +0100117 }
Simon Glassa6131a22016-02-22 22:55:56 -0700118 }
119
Simon Glass458b66a2020-11-05 06:32:05 -0700120 if (!found && CONFIG_IS_ENABLED(SYSINFO) && !sysinfo_get(&sysinfo)) {
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200121 int rc;
122 /*
Simon Glass458b66a2020-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 Hiblot9037b7f2019-10-22 16:39:22 +0200125 */
Simon Glass458b66a2020-11-05 06:32:05 -0700126 rc = sysinfo_get_fit_loadable(sysinfo, index - i - 1, type,
127 &str);
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200128 if (rc && rc != -ENOENT)
129 return rc;
130
131 if (!rc) {
132 /*
Simon Glass458b66a2020-11-05 06:32:05 -0700133 * The sysinfo provided a name for a loadable.
Jean-Jacques Hiblot9037b7f2019-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;
139 int images = fdt_path_offset(fit, FIT_IMAGES_PATH);
140
141 node = find_node_from_desc(fit, images, str);
142 if (node > 0)
143 str = fdt_get_name(fit, node, NULL);
144
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 Tomsiche61eff92017-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 */
170static int spl_fit_get_image_node(const void *fit, int images,
171 const char *type, int index)
172{
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +0200173 const char *str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200174 int err;
175 int node;
176
177 err = spl_fit_get_image_name(fit, images, type, index, &str);
178 if (err)
179 return err;
180
Andre Przywara1e329b62017-04-26 01:32:33 +0100181 debug("%s: '%s'\n", type, str);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200182
Andre Przywara1e329b62017-04-26 01:32:33 +0100183 node = fdt_subnode_offset(fit, images, str);
184 if (node < 0) {
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200185 pr_err("cannot find image node '%s': %d\n", str, node);
Andre Przywara1e329b62017-04-26 01:32:33 +0100186 return -EINVAL;
Simon Glassa6131a22016-02-22 22:55:56 -0700187 }
Simon Glassa6131a22016-02-22 22:55:56 -0700188
Andre Przywara525e9c92017-04-26 01:32:34 +0100189 return node;
Simon Glassa6131a22016-02-22 22:55:56 -0700190}
191
Lokesh Vutlaf62cef12016-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 Vutlaf0531a62016-07-19 14:56:14 +0530222 data_size = data_size + get_aligned_image_overhead(info, offset);
223
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530224 if (info->filename)
Lokesh Vutlaf0531a62016-07-19 14:56:14 +0530225 return data_size;
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530226
227 return (data_size + info->bl_len - 1) / info->bl_len;
228}
229
Andre Przywara29053e92017-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
234 * @fit: points to the flattened device tree blob describing the FIT
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200235 * image
Andre Przywara29053e92017-04-26 01:32:36 +0100236 * @base_offset: the beginning of the data area containing the actual
237 * image data, relative to the beginning of the FIT
238 * @node: offset of the DT node describing the image to load (relative
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200239 * to @fit)
Andre Przywara29053e92017-04-26 01:32:36 +0100240 * @image_info: will be filled with information about the loaded image
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200241 * If the FIT node does not contain a "load" (address) property,
242 * the image gets loaded to the address pointed to by the
243 * load_addr member in this struct.
Andre Przywara29053e92017-04-26 01:32:36 +0100244 *
245 * Return: 0 on success or a negative error number.
246 */
247static int spl_load_fit_image(struct spl_load_info *info, ulong sector,
248 void *fit, ulong base_offset, int node,
249 struct spl_image_info *image_info)
250{
Michal Simekf707b5a2018-07-18 14:33:15 +0200251 int offset;
Andre Przywara29053e92017-04-26 01:32:36 +0100252 size_t length;
York Sunadf99fa2017-08-15 11:14:44 -0700253 int len;
York Sun25d65f12017-09-15 08:21:13 -0700254 ulong size;
Andre Przywara29053e92017-04-26 01:32:36 +0100255 ulong load_addr, load_ptr;
256 void *src;
257 ulong overhead;
258 int nr_sectors;
259 int align_len = ARCH_DMA_MINALIGN - 1;
York Suna6945fe2017-08-15 11:14:43 -0700260 uint8_t image_comp = -1, type = -1;
York Sunadf99fa2017-08-15 11:14:44 -0700261 const void *data;
Peng Fan8876c7e2017-12-05 13:20:59 +0800262 bool external_data = false;
York Suna6945fe2017-08-15 11:14:43 -0700263
Michal Simek1aab1142020-09-09 14:41:56 +0200264 if (IS_ENABLED(CONFIG_SPL_FPGA) ||
Marek Vasut72bc5d52018-06-01 23:19:29 +0200265 (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP))) {
266 if (fit_image_get_type(fit, node, &type))
267 puts("Cannot get image type.\n");
268 else
269 debug("%s ", genimg_get_type_name(type));
270 }
271
Klaus H. Sorensen4a9a0422019-12-11 11:03:33 +0000272 if (IS_ENABLED(CONFIG_SPL_GZIP)) {
273 fit_image_get_comp(fit, node, &image_comp);
274 debug("%s ", genimg_get_comp_name(image_comp));
York Suna6945fe2017-08-15 11:14:43 -0700275 }
Andre Przywara29053e92017-04-26 01:32:36 +0100276
York Sunadf99fa2017-08-15 11:14:44 -0700277 if (fit_image_get_load(fit, node, &load_addr))
Andre Przywara29053e92017-04-26 01:32:36 +0100278 load_addr = image_info->load_addr;
Andre Przywara29053e92017-04-26 01:32:36 +0100279
Peng Fan8876c7e2017-12-05 13:20:59 +0800280 if (!fit_image_get_data_position(fit, node, &offset)) {
281 external_data = true;
282 } else if (!fit_image_get_data_offset(fit, node, &offset)) {
York Sunadf99fa2017-08-15 11:14:44 -0700283 offset += base_offset;
Peng Fan8876c7e2017-12-05 13:20:59 +0800284 external_data = true;
285 }
286
287 if (external_data) {
288 /* External data */
York Sunadf99fa2017-08-15 11:14:44 -0700289 if (fit_image_get_data_size(fit, node, &len))
290 return -ENOENT;
Andre Przywara29053e92017-04-26 01:32:36 +0100291
York Sunadf99fa2017-08-15 11:14:44 -0700292 load_ptr = (load_addr + align_len) & ~align_len;
293 length = len;
294
295 overhead = get_aligned_image_overhead(info, offset);
296 nr_sectors = get_aligned_image_size(info, length, offset);
297
Michal Simekf707b5a2018-07-18 14:33:15 +0200298 if (info->read(info,
299 sector + get_aligned_image_offset(info, offset),
York Sunadf99fa2017-08-15 11:14:44 -0700300 nr_sectors, (void *)load_ptr) != nr_sectors)
301 return -EIO;
302
303 debug("External data: dst=%lx, offset=%x, size=%lx\n",
304 load_ptr, offset, (unsigned long)length);
305 src = (void *)load_ptr + overhead;
306 } else {
307 /* Embedded data */
308 if (fit_image_get_data(fit, node, &data, &length)) {
309 puts("Cannot get image data/size\n");
310 return -ENOENT;
311 }
312 debug("Embedded data: dst=%lx, size=%lx\n", load_addr,
313 (unsigned long)length);
314 src = (void *)data;
315 }
Andre Przywara29053e92017-04-26 01:32:36 +0100316
Ben Whitten54a91192018-06-07 11:37:27 +0100317#ifdef CONFIG_SPL_FIT_SIGNATURE
318 printf("## Checking hash(es) for Image %s ... ",
319 fit_get_name(fit, node, NULL));
320 if (!fit_image_verify_with_data(fit, node,
321 src, length))
322 return -EPERM;
323 puts("OK\n");
324#endif
325
Andre Przywara29053e92017-04-26 01:32:36 +0100326#ifdef CONFIG_SPL_FIT_IMAGE_POST_PROCESS
327 board_fit_image_post_process(&src, &length);
328#endif
329
Michal Simekf354c3f2018-07-24 15:05:00 +0200330 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
York Sun25d65f12017-09-15 08:21:13 -0700331 size = length;
York Suna6945fe2017-08-15 11:14:43 -0700332 if (gunzip((void *)load_addr, CONFIG_SYS_BOOTM_LEN,
York Sun25d65f12017-09-15 08:21:13 -0700333 src, &size)) {
York Suna6945fe2017-08-15 11:14:43 -0700334 puts("Uncompressing error\n");
335 return -EIO;
336 }
York Sun25d65f12017-09-15 08:21:13 -0700337 length = size;
York Suna6945fe2017-08-15 11:14:43 -0700338 } else {
339 memcpy((void *)load_addr, src, length);
340 }
Andre Przywara29053e92017-04-26 01:32:36 +0100341
342 if (image_info) {
Michal Simek9e64a552020-09-03 11:24:28 +0200343 ulong entry_point;
344
Andre Przywara29053e92017-04-26 01:32:36 +0100345 image_info->load_addr = load_addr;
346 image_info->size = length;
Michal Simek9e64a552020-09-03 11:24:28 +0200347
348 if (!fit_image_get_entry(fit, node, &entry_point))
349 image_info->entry_point = entry_point;
350 else
351 image_info->entry_point = FDT_ERROR;
Andre Przywara29053e92017-04-26 01:32:36 +0100352 }
353
354 return 0;
355}
356
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200357static int spl_fit_append_fdt(struct spl_image_info *spl_image,
358 struct spl_load_info *info, ulong sector,
359 void *fit, int images, ulong base_offset)
360{
361 struct spl_image_info image_info;
Michal Simekbf703df2019-10-22 16:39:11 +0200362 int node, ret = 0, index = 0;
Lukas Auer80afee72019-08-21 21:14:42 +0200363
364 /*
365 * Use the address following the image as target address for the
Marek Vasutc27cbe82020-10-19 23:40:26 +0200366 * device tree.
Lukas Auer80afee72019-08-21 21:14:42 +0200367 */
Marek Vasutc27cbe82020-10-19 23:40:26 +0200368 image_info.load_addr = spl_image->load_addr + spl_image->size;
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200369
370 /* Figure out which device tree the board wants to use */
Michal Simekbf703df2019-10-22 16:39:11 +0200371 node = spl_fit_get_image_node(fit, images, FIT_FDT_PROP, index++);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200372 if (node < 0) {
373 debug("%s: cannot find FDT node\n", __func__);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200374
Lukas Auer80afee72019-08-21 21:14:42 +0200375 /*
376 * U-Boot did not find a device tree inside the FIT image. Use
377 * the U-Boot device tree instead.
378 */
379 if (gd->fdt_blob)
380 memcpy((void *)image_info.load_addr, gd->fdt_blob,
381 fdt_totalsize(gd->fdt_blob));
382 else
383 return node;
384 } else {
385 ret = spl_load_fit_image(info, sector, fit, base_offset, node,
386 &image_info);
387 if (ret < 0)
388 return ret;
389 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200390
391 /* Make the load-address of the FDT available for the SPL framework */
392 spl_image->fdt_addr = (void *)image_info.load_addr;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100393#if !CONFIG_IS_ENABLED(FIT_IMAGE_TINY)
Michal Simekbf703df2019-10-22 16:39:11 +0200394 if (CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)) {
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200395 void *tmpbuffer = NULL;
396
Michal Simekbf703df2019-10-22 16:39:11 +0200397 for (; ; index++) {
398 node = spl_fit_get_image_node(fit, images, FIT_FDT_PROP,
399 index);
Jean-Jacques Hiblotc6ab6a12019-10-22 16:39:14 +0200400 if (node == -E2BIG) {
Michal Simekbf703df2019-10-22 16:39:11 +0200401 debug("%s: No additional FDT node\n", __func__);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200402 break;
Jean-Jacques Hiblotc6ab6a12019-10-22 16:39:14 +0200403 } else if (node < 0) {
404 debug("%s: unable to find FDT node %d\n",
405 __func__, index);
406 continue;
Michal Simekbf703df2019-10-22 16:39:11 +0200407 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200408
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200409 if (!tmpbuffer) {
410 /*
411 * allocate memory to store the DT overlay
412 * before it is applied. It may not be used
413 * depending on how the overlay is stored, so
414 * don't fail yet if the allocation failed.
415 */
416 tmpbuffer = malloc(CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ);
417 if (!tmpbuffer)
418 debug("%s: unable to allocate space for overlays\n",
419 __func__);
420 }
421 image_info.load_addr = (ulong)tmpbuffer;
Michal Simekbf703df2019-10-22 16:39:11 +0200422 ret = spl_load_fit_image(info, sector, fit, base_offset,
423 node, &image_info);
424 if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200425 break;
Michal Simekbf703df2019-10-22 16:39:11 +0200426
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200427 /* Make room in FDT for changes from the overlay */
428 ret = fdt_increase_size(spl_image->fdt_addr,
429 image_info.size);
430 if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200431 break;
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200432
Michal Simekbf703df2019-10-22 16:39:11 +0200433 ret = fdt_overlay_apply_verbose(spl_image->fdt_addr,
434 (void *)image_info.load_addr);
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200435 if (ret) {
436 pr_err("failed to apply DT overlay %s\n",
437 fit_get_name(fit, node, NULL));
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200438 break;
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200439 }
Michal Simekbf703df2019-10-22 16:39:11 +0200440
441 debug("%s: DT overlay %s applied\n", __func__,
442 fit_get_name(fit, node, NULL));
443 }
Heinrich Schuchardt939a9612020-04-20 12:44:01 +0200444 free(tmpbuffer);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200445 if (ret)
446 return ret;
Michal Simekbf703df2019-10-22 16:39:11 +0200447 }
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200448 /* Try to make space, so we can inject details on the loadables */
449 ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192);
450 if (ret < 0)
451 return ret;
452#endif
453
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200454 return ret;
455}
456
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200457static int spl_fit_record_loadable(const void *fit, int images, int index,
458 void *blob, struct spl_image_info *image)
459{
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100460 int ret = 0;
461#if !CONFIG_IS_ENABLED(FIT_IMAGE_TINY)
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +0200462 const char *name;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100463 int node;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200464
465 ret = spl_fit_get_image_name(fit, images, "loadables",
466 index, &name);
467 if (ret < 0)
468 return ret;
469
470 node = spl_fit_get_image_node(fit, images, "loadables", index);
471
472 ret = fdt_record_loadable(blob, index, name, image->load_addr,
473 image->size, image->entry_point,
474 fdt_getprop(fit, node, "type", NULL),
475 fdt_getprop(fit, node, "os", NULL));
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100476#endif
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200477 return ret;
478}
479
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100480static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os)
481{
Jean-Jacques Hiblot943ec252019-04-26 15:21:25 +0200482#if CONFIG_IS_ENABLED(FIT_IMAGE_TINY) && !defined(CONFIG_SPL_OS_BOOT)
Samuel Hollande646f512020-10-21 21:12:13 -0500483 const char *name = fdt_getprop(fit, noffset, FIT_OS_PROP, NULL);
484
485 if (!name)
486 return -ENOENT;
487
488 /*
489 * We don't care what the type of the image actually is,
490 * only whether or not it is U-Boot. This saves some
491 * space by omitting the large table of OS types.
492 */
493 if (!strcmp(name, "u-boot"))
494 *os = IH_OS_U_BOOT;
495 else
496 *os = IH_OS_INVALID;
497
498 return 0;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100499#else
500 return fit_image_get_os(fit, noffset, os);
501#endif
502}
503
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500504/*
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500505 * The purpose of the FIT load buffer is to provide a memory location that is
506 * independent of the load address of any FIT component.
507 */
508static void *spl_get_fit_load_buffer(size_t size)
509{
510 void *buf;
511
512 buf = malloc(size);
513 if (!buf) {
514 pr_err("Could not get FIT buffer of %lu bytes\n", (ulong)size);
515 pr_err("\tcheck CONFIG_SYS_SPL_MALLOC_SIZE\n");
516 buf = spl_get_load_buffer(0, size);
517 }
518 return buf;
519}
520
521/*
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500522 * Weak default function to allow customizing SPL fit loading for load-only
523 * use cases by allowing to skip the parsing/processing of the FIT contents
524 * (so that this can be done separately in a more customized fashion)
525 */
526__weak bool spl_load_simple_fit_skip_processing(void)
527{
528 return false;
529}
530
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600531static int spl_simple_fit_read(struct spl_fit_info *ctx,
532 struct spl_load_info *info, ulong sector,
533 const void *fit_header)
Simon Glassa6131a22016-02-22 22:55:56 -0700534{
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600535 unsigned long count, size;
Simon Glassa6131a22016-02-22 22:55:56 -0700536 int sectors;
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600537 void *buf;
Simon Glassa6131a22016-02-22 22:55:56 -0700538
539 /*
York Suna058b8a2017-08-15 11:14:45 -0700540 * For FIT with external data, figure out where the external images
541 * start. This is the base for the data-offset properties in each
542 * image.
Simon Glassa6131a22016-02-22 22:55:56 -0700543 */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600544 size = ALIGN(fdt_totalsize(fit_header), 4);
Ye Li9d5b0f42018-11-17 09:10:25 +0000545 size = board_spl_fit_size_align(size);
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600546 ctx->ext_data_offset = ALIGN(size, 4);
Simon Glassa6131a22016-02-22 22:55:56 -0700547
548 /*
549 * So far we only have one block of data from the FIT. Read the entire
Alexandru Gagniuc02560172020-10-21 18:32:58 -0500550 * thing, including that first block.
York Suna058b8a2017-08-15 11:14:45 -0700551 *
552 * For FIT with data embedded, data is loaded as part of FIT image.
553 * For FIT with external data, data is not loaded in this step.
Simon Glassa6131a22016-02-22 22:55:56 -0700554 */
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530555 sectors = get_aligned_image_size(info, size, 0);
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600556 buf = spl_get_fit_load_buffer(sectors * info->bl_len);
Ye Li9d5b0f42018-11-17 09:10:25 +0000557
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600558 count = info->read(info, sector, sectors, buf);
559 ctx->fit = buf;
560 debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu, size=0x%lx\n",
561 sector, sectors, buf, count, size);
Simon Glassa6131a22016-02-22 22:55:56 -0700562
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600563 return (count == 0) ? -EIO : 0;
564}
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500565
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600566static int spl_simple_fit_parse(struct spl_fit_info *ctx)
567{
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100568 if (IS_ENABLED(CONFIG_SPL_FIT_SIGNATURE)) {
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600569 int conf_offset = fit_find_config_node(ctx->fit);
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100570
571 printf("## Checking hash(es) for config %s ... ",
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600572 fit_get_name(ctx->fit, conf_offset, NULL));
573 if (fit_config_verify(ctx->fit, conf_offset))
Philippe Reynes6c5c03c2020-10-29 18:50:29 +0100574 return -EPERM;
575 puts("OK\n");
576 }
577
Andre Przywara525e9c92017-04-26 01:32:34 +0100578 /* find the node holding the images information */
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600579 ctx->images_node = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
580 if (ctx->images_node < 0) {
581 debug("%s: Cannot find /images node: %d\n", __func__,
582 ctx->images_node);
583 return -EINVAL;
Simon Glassa6131a22016-02-22 22:55:56 -0700584 }
Marek Vasut33dd00e2018-05-12 22:25:28 +0200585
Alexandru Gagniuc23243c92021-01-20 10:46:50 -0600586 return 0;
587}
588
589int spl_load_simple_fit(struct spl_image_info *spl_image,
590 struct spl_load_info *info, ulong sector, void *fit)
591{
592 struct spl_image_info image_info;
593 struct spl_fit_info ctx;
594 int node = -1;
595 int images, ret;
596 int base_offset;
597 int index = 0;
598 int firmware_node;
599
600 ret = spl_simple_fit_read(&ctx, info, sector, fit);
601 if (ret < 0)
602 return ret;
603
604 /* skip further processing if requested to enable load-only use cases */
605 if (spl_load_simple_fit_skip_processing())
606 return 0;
607
608 ret = spl_simple_fit_parse(&ctx);
609 if (ret < 0)
610 return ret;
611
612 images = ctx.images_node;
613 fit = (void *)ctx.fit;
614 base_offset = ctx.ext_data_offset;
615
Michal Simek1aab1142020-09-09 14:41:56 +0200616#ifdef CONFIG_SPL_FPGA
Marek Vasut33dd00e2018-05-12 22:25:28 +0200617 node = spl_fit_get_image_node(fit, images, "fpga", 0);
618 if (node >= 0) {
619 /* Load the image and set up the spl_image structure */
620 ret = spl_load_fit_image(info, sector, fit, base_offset, node,
621 spl_image);
622 if (ret) {
623 printf("%s: Cannot load the FPGA: %i\n", __func__, ret);
624 return ret;
625 }
Michal Simekf707b5a2018-07-18 14:33:15 +0200626
627 debug("FPGA bitstream at: %x, size: %x\n",
628 (u32)spl_image->load_addr, spl_image->size);
629
630 ret = fpga_load(0, (const void *)spl_image->load_addr,
631 spl_image->size, BIT_FULL);
632 if (ret) {
633 printf("%s: Cannot load the image to the FPGA\n",
634 __func__);
635 return ret;
636 }
637
Luis Aranedaeece6232018-07-19 03:10:16 -0400638 puts("FPGA image loaded from FIT\n");
Marek Vasut33dd00e2018-05-12 22:25:28 +0200639 node = -1;
640 }
641#endif
Andre Przywara525e9c92017-04-26 01:32:34 +0100642
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200643 /*
644 * Find the U-Boot image using the following search order:
645 * - start at 'firmware' (e.g. an ARM Trusted Firmware)
646 * - fall back 'kernel' (e.g. a Falcon-mode OS boot
647 * - fall back to using the first 'loadables' entry
648 */
649 if (node < 0)
Michal Simekb766e8f2018-03-26 16:31:26 +0200650 node = spl_fit_get_image_node(fit, images, FIT_FIRMWARE_PROP,
651 0);
York Suna058b8a2017-08-15 11:14:45 -0700652#ifdef CONFIG_SPL_OS_BOOT
York Suna058b8a2017-08-15 11:14:45 -0700653 if (node < 0)
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200654 node = spl_fit_get_image_node(fit, images, FIT_KERNEL_PROP, 0);
York Suna058b8a2017-08-15 11:14:45 -0700655#endif
Andre Przywara525e9c92017-04-26 01:32:34 +0100656 if (node < 0) {
657 debug("could not find firmware image, trying loadables...\n");
658 node = spl_fit_get_image_node(fit, images, "loadables", 0);
Andre Przywarae7c58562017-04-26 01:32:37 +0100659 /*
660 * If we pick the U-Boot image from "loadables", start at
661 * the second image when later loading additional images.
662 */
663 index = 1;
Andre Przywara525e9c92017-04-26 01:32:34 +0100664 }
Simon Glassa6131a22016-02-22 22:55:56 -0700665 if (node < 0) {
Andre Przywara525e9c92017-04-26 01:32:34 +0100666 debug("%s: Cannot find u-boot image node: %d\n",
667 __func__, node);
Simon Glassa6131a22016-02-22 22:55:56 -0700668 return -1;
669 }
670
Andre Przywara29053e92017-04-26 01:32:36 +0100671 /* Load the image and set up the spl_image structure */
672 ret = spl_load_fit_image(info, sector, fit, base_offset, node,
673 spl_image);
674 if (ret)
675 return ret;
Daniel Allredcf839bd2016-06-27 09:19:21 -0500676
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200677 /*
678 * For backward compatibility, we treat the first node that is
679 * as a U-Boot image, if no OS-type has been declared.
680 */
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100681 if (!spl_fit_image_get_os(fit, node, &spl_image->os))
York Suna058b8a2017-08-15 11:14:45 -0700682 debug("Image OS is %s\n", genimg_get_os_name(spl_image->os));
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200683#if !defined(CONFIG_SPL_OS_BOOT)
684 else
685 spl_image->os = IH_OS_U_BOOT;
York Suna058b8a2017-08-15 11:14:45 -0700686#endif
Simon Glassa6131a22016-02-22 22:55:56 -0700687
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200688 /*
689 * Booting a next-stage U-Boot may require us to append the FDT.
690 * We allow this to fail, as the U-Boot image might embed its FDT.
691 */
Dario Binacchifaf8d142020-05-27 13:56:19 +0200692 if (spl_image->os == IH_OS_U_BOOT) {
693 ret = spl_fit_append_fdt(spl_image, info, sector, fit,
694 images, base_offset);
695 if (!IS_ENABLED(CONFIG_OF_EMBED) && ret < 0)
696 return ret;
697 }
Andre Przywarae7c58562017-04-26 01:32:37 +0100698
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200699 firmware_node = node;
Andre Przywarae7c58562017-04-26 01:32:37 +0100700 /* Now check if there are more images for us to load */
701 for (; ; index++) {
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200702 uint8_t os_type = IH_OS_INVALID;
703
Andre Przywarae7c58562017-04-26 01:32:37 +0100704 node = spl_fit_get_image_node(fit, images, "loadables", index);
705 if (node < 0)
706 break;
707
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200708 /*
709 * if the firmware is also a loadable, skip it because
710 * it already has been loaded. This is typically the case with
711 * u-boot.img generated by mkimage.
712 */
713 if (firmware_node == node)
714 continue;
715
Andre Przywarae7c58562017-04-26 01:32:37 +0100716 ret = spl_load_fit_image(info, sector, fit, base_offset, node,
717 &image_info);
Philippe Reynesba87da42020-11-24 16:15:05 +0100718 if (ret < 0) {
719 printf("%s: can't load image loadables index %d (ret = %d)\n",
720 __func__, index, ret);
721 return ret;
722 }
Andre Przywarae7c58562017-04-26 01:32:37 +0100723
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100724 if (!spl_fit_image_get_os(fit, node, &os_type))
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200725 debug("Loadable is %s\n", genimg_get_os_name(os_type));
726
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200727 if (os_type == IH_OS_U_BOOT) {
728 spl_fit_append_fdt(&image_info, info, sector,
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200729 fit, images, base_offset);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200730 spl_image->fdt_addr = image_info.fdt_addr;
731 }
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200732
Andre Przywarae7c58562017-04-26 01:32:37 +0100733 /*
734 * If the "firmware" image did not provide an entry point,
735 * use the first valid entry point from the loadables.
736 */
737 if (spl_image->entry_point == FDT_ERROR &&
738 image_info.entry_point != FDT_ERROR)
739 spl_image->entry_point = image_info.entry_point;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200740
741 /* Record our loadables into the FDT */
742 if (spl_image->fdt_addr)
743 spl_fit_record_loadable(fit, images, index,
744 spl_image->fdt_addr,
745 &image_info);
Andre Przywarae7c58562017-04-26 01:32:37 +0100746 }
747
748 /*
749 * If a platform does not provide CONFIG_SYS_UBOOT_START, U-Boot's
750 * Makefile will set it to 0 and it will end up as the entry point
751 * here. What it actually means is: use the load address.
752 */
753 if (spl_image->entry_point == FDT_ERROR || spl_image->entry_point == 0)
754 spl_image->entry_point = spl_image->load_addr;
755
Ye Li9d5b0f42018-11-17 09:10:25 +0000756 spl_image->flags |= SPL_FIT_FOUND;
757
Stefano Babicf8b509b2019-09-20 08:47:53 +0200758#ifdef CONFIG_IMX_HAB
Alexandru Gagniuc44af2a52021-01-20 10:46:49 -0600759 board_spl_fit_post_load(fit);
Ye Li9d5b0f42018-11-17 09:10:25 +0000760#endif
761
Andre Przywarae7c58562017-04-26 01:32:37 +0100762 return 0;
Simon Glassa6131a22016-02-22 22:55:56 -0700763}