blob: ac69d8312ee96aa46d718d82c032f80f8fae8651 [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>
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +02009#include <board.h>
Michal Simekf707b5a2018-07-18 14:33:15 +020010#include <fpga.h>
Simon Glass1a974af2019-08-01 09:46:36 -060011#include <gzip.h>
Simon Glassa6131a22016-02-22 22:55:56 -070012#include <image.h>
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +020013#include <malloc.h>
Simon Glassa6131a22016-02-22 22:55:56 -070014#include <spl.h>
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +020015#include <linux/libfdt.h>
Simon Glassa6131a22016-02-22 22:55:56 -070016
Lukas Auer80afee72019-08-21 21:14:42 +020017DECLARE_GLOBAL_DATA_PTR;
18
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +020019#ifndef CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ
20#define CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ (64 * 1024)
21#endif
22
York Suna6945fe2017-08-15 11:14:43 -070023#ifndef CONFIG_SYS_BOOTM_LEN
24#define CONFIG_SYS_BOOTM_LEN (64 << 20)
25#endif
26
Ye Li9d5b0f42018-11-17 09:10:25 +000027__weak void board_spl_fit_post_load(ulong load_addr, size_t length)
28{
29}
30
31__weak ulong board_spl_fit_size_align(ulong size)
32{
33 return size;
34}
35
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020036static int find_node_from_desc(const void *fit, int node, const char *str)
37{
38 int child;
39
40 if (node < 0)
41 return -EINVAL;
42
43 /* iterate the FIT nodes and find a matching description */
44 for (child = fdt_first_subnode(fit, node); child >= 0;
45 child = fdt_next_subnode(fit, child)) {
46 int len;
47 const char *desc = fdt_getprop(fit, child, "description", &len);
48
49 if (!desc)
50 continue;
51
52 if (!strcmp(desc, str))
53 return child;
54 }
55
56 return -ENOENT;
57}
58
Andre Przywara525e9c92017-04-26 01:32:34 +010059/**
Philipp Tomsiche61eff92017-09-13 21:29:34 +020060 * spl_fit_get_image_name(): By using the matching configuration subnode,
Andre Przywara525e9c92017-04-26 01:32:34 +010061 * retrieve the name of an image, specified by a property name and an index
62 * into that.
63 * @fit: Pointer to the FDT blob.
64 * @images: Offset of the /images subnode.
65 * @type: Name of the property within the configuration subnode.
66 * @index: Index into the list of strings in this property.
Philipp Tomsiche61eff92017-09-13 21:29:34 +020067 * @outname: Name of the image
Andre Przywara525e9c92017-04-26 01:32:34 +010068 *
Philipp Tomsiche61eff92017-09-13 21:29:34 +020069 * Return: 0 on success, or a negative error number
Andre Przywara525e9c92017-04-26 01:32:34 +010070 */
Philipp Tomsiche61eff92017-09-13 21:29:34 +020071static int spl_fit_get_image_name(const void *fit, int images,
72 const char *type, int index,
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +020073 const char **outname)
Andre Przywara1e329b62017-04-26 01:32:33 +010074{
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020075 struct udevice *board;
Andre Przywara1e329b62017-04-26 01:32:33 +010076 const char *name, *str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +020077 __maybe_unused int node;
78 int conf_node;
Andre Przywara1e329b62017-04-26 01:32:33 +010079 int len, i;
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +020080 bool found = true;
Andre Przywara1e329b62017-04-26 01:32:33 +010081
Cooper Jr., Frankline6792402017-06-16 17:25:05 -050082 conf_node = fit_find_config_node(fit);
Andre Przywara1e329b62017-04-26 01:32:33 +010083 if (conf_node < 0) {
84#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
85 printf("No matching DT out of these options:\n");
86 for (node = fdt_first_subnode(fit, conf_node);
87 node >= 0;
88 node = fdt_next_subnode(fit, node)) {
89 name = fdt_getprop(fit, node, "description", &len);
90 printf(" %s\n", name);
Simon Glassa6131a22016-02-22 22:55:56 -070091 }
Andre Przywara1e329b62017-04-26 01:32:33 +010092#endif
93 return conf_node;
94 }
Simon Glassa6131a22016-02-22 22:55:56 -070095
Andre Przywara1e329b62017-04-26 01:32:33 +010096 name = fdt_getprop(fit, conf_node, type, &len);
97 if (!name) {
98 debug("cannot find property '%s': %d\n", type, len);
99 return -EINVAL;
100 }
Simon Glassa6131a22016-02-22 22:55:56 -0700101
Andre Przywara1e329b62017-04-26 01:32:33 +0100102 str = name;
103 for (i = 0; i < index; i++) {
104 str = strchr(str, '\0') + 1;
105 if (!str || (str - name >= len)) {
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200106 found = false;
107 break;
Andre Przywara1e329b62017-04-26 01:32:33 +0100108 }
Simon Glassa6131a22016-02-22 22:55:56 -0700109 }
110
Jean-Jacques Hiblot9037b7f2019-10-22 16:39:22 +0200111 if (!found && !board_get(&board)) {
112 int rc;
113 /*
114 * no string in the property for this index. Check if the board
115 * level code can supply one.
116 */
117 rc = board_get_fit_loadable(board, index - i - 1, type, &str);
118 if (rc && rc != -ENOENT)
119 return rc;
120
121 if (!rc) {
122 /*
123 * The board provided a name for a loadable.
124 * Try to match it against the description properties
125 * first. If no matching node is found, use it as a
126 * node name.
127 */
128 int node;
129 int images = fdt_path_offset(fit, FIT_IMAGES_PATH);
130
131 node = find_node_from_desc(fit, images, str);
132 if (node > 0)
133 str = fdt_get_name(fit, node, NULL);
134
135 found = true;
136 }
137 }
138
139 if (!found) {
140 debug("no string for index %d\n", index);
141 return -E2BIG;
142 }
143
144 *outname = str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200145 return 0;
146}
147
148/**
149 * spl_fit_get_image_node(): By using the matching configuration subnode,
150 * retrieve the name of an image, specified by a property name and an index
151 * into that.
152 * @fit: Pointer to the FDT blob.
153 * @images: Offset of the /images subnode.
154 * @type: Name of the property within the configuration subnode.
155 * @index: Index into the list of strings in this property.
156 *
157 * Return: the node offset of the respective image node or a negative
158 * error number.
159 */
160static int spl_fit_get_image_node(const void *fit, int images,
161 const char *type, int index)
162{
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +0200163 const char *str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200164 int err;
165 int node;
166
167 err = spl_fit_get_image_name(fit, images, type, index, &str);
168 if (err)
169 return err;
170
Andre Przywara1e329b62017-04-26 01:32:33 +0100171 debug("%s: '%s'\n", type, str);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200172
Andre Przywara1e329b62017-04-26 01:32:33 +0100173 node = fdt_subnode_offset(fit, images, str);
174 if (node < 0) {
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200175 pr_err("cannot find image node '%s': %d\n", str, node);
Andre Przywara1e329b62017-04-26 01:32:33 +0100176 return -EINVAL;
Simon Glassa6131a22016-02-22 22:55:56 -0700177 }
Simon Glassa6131a22016-02-22 22:55:56 -0700178
Andre Przywara525e9c92017-04-26 01:32:34 +0100179 return node;
Simon Glassa6131a22016-02-22 22:55:56 -0700180}
181
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530182static int get_aligned_image_offset(struct spl_load_info *info, int offset)
183{
184 /*
185 * If it is a FS read, get the first address before offset which is
186 * aligned to ARCH_DMA_MINALIGN. If it is raw read return the
187 * block number to which offset belongs.
188 */
189 if (info->filename)
190 return offset & ~(ARCH_DMA_MINALIGN - 1);
191
192 return offset / info->bl_len;
193}
194
195static int get_aligned_image_overhead(struct spl_load_info *info, int offset)
196{
197 /*
198 * If it is a FS read, get the difference between the offset and
199 * the first address before offset which is aligned to
200 * ARCH_DMA_MINALIGN. If it is raw read return the offset within the
201 * block.
202 */
203 if (info->filename)
204 return offset & (ARCH_DMA_MINALIGN - 1);
205
206 return offset % info->bl_len;
207}
208
209static int get_aligned_image_size(struct spl_load_info *info, int data_size,
210 int offset)
211{
Lokesh Vutlaf0531a62016-07-19 14:56:14 +0530212 data_size = data_size + get_aligned_image_overhead(info, offset);
213
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530214 if (info->filename)
Lokesh Vutlaf0531a62016-07-19 14:56:14 +0530215 return data_size;
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530216
217 return (data_size + info->bl_len - 1) / info->bl_len;
218}
219
Andre Przywara29053e92017-04-26 01:32:36 +0100220/**
221 * spl_load_fit_image(): load the image described in a certain FIT node
222 * @info: points to information about the device to load data from
223 * @sector: the start sector of the FIT image on the device
224 * @fit: points to the flattened device tree blob describing the FIT
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200225 * image
Andre Przywara29053e92017-04-26 01:32:36 +0100226 * @base_offset: the beginning of the data area containing the actual
227 * image data, relative to the beginning of the FIT
228 * @node: offset of the DT node describing the image to load (relative
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200229 * to @fit)
Andre Przywara29053e92017-04-26 01:32:36 +0100230 * @image_info: will be filled with information about the loaded image
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200231 * If the FIT node does not contain a "load" (address) property,
232 * the image gets loaded to the address pointed to by the
233 * load_addr member in this struct.
Andre Przywara29053e92017-04-26 01:32:36 +0100234 *
235 * Return: 0 on success or a negative error number.
236 */
237static int spl_load_fit_image(struct spl_load_info *info, ulong sector,
238 void *fit, ulong base_offset, int node,
239 struct spl_image_info *image_info)
240{
Michal Simekf707b5a2018-07-18 14:33:15 +0200241 int offset;
Andre Przywara29053e92017-04-26 01:32:36 +0100242 size_t length;
York Sunadf99fa2017-08-15 11:14:44 -0700243 int len;
York Sun25d65f12017-09-15 08:21:13 -0700244 ulong size;
Andre Przywara29053e92017-04-26 01:32:36 +0100245 ulong load_addr, load_ptr;
246 void *src;
247 ulong overhead;
248 int nr_sectors;
249 int align_len = ARCH_DMA_MINALIGN - 1;
York Suna6945fe2017-08-15 11:14:43 -0700250 uint8_t image_comp = -1, type = -1;
York Sunadf99fa2017-08-15 11:14:44 -0700251 const void *data;
Peng Fan8876c7e2017-12-05 13:20:59 +0800252 bool external_data = false;
York Suna6945fe2017-08-15 11:14:43 -0700253
Marek Vasut72bc5d52018-06-01 23:19:29 +0200254 if (IS_ENABLED(CONFIG_SPL_FPGA_SUPPORT) ||
255 (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP))) {
256 if (fit_image_get_type(fit, node, &type))
257 puts("Cannot get image type.\n");
258 else
259 debug("%s ", genimg_get_type_name(type));
260 }
261
York Suna6945fe2017-08-15 11:14:43 -0700262 if (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP)) {
263 if (fit_image_get_comp(fit, node, &image_comp))
264 puts("Cannot get image compression format.\n");
265 else
266 debug("%s ", genimg_get_comp_name(image_comp));
York Suna6945fe2017-08-15 11:14:43 -0700267 }
Andre Przywara29053e92017-04-26 01:32:36 +0100268
York Sunadf99fa2017-08-15 11:14:44 -0700269 if (fit_image_get_load(fit, node, &load_addr))
Andre Przywara29053e92017-04-26 01:32:36 +0100270 load_addr = image_info->load_addr;
Andre Przywara29053e92017-04-26 01:32:36 +0100271
Peng Fan8876c7e2017-12-05 13:20:59 +0800272 if (!fit_image_get_data_position(fit, node, &offset)) {
273 external_data = true;
274 } else if (!fit_image_get_data_offset(fit, node, &offset)) {
York Sunadf99fa2017-08-15 11:14:44 -0700275 offset += base_offset;
Peng Fan8876c7e2017-12-05 13:20:59 +0800276 external_data = true;
277 }
278
279 if (external_data) {
280 /* External data */
York Sunadf99fa2017-08-15 11:14:44 -0700281 if (fit_image_get_data_size(fit, node, &len))
282 return -ENOENT;
Andre Przywara29053e92017-04-26 01:32:36 +0100283
York Sunadf99fa2017-08-15 11:14:44 -0700284 load_ptr = (load_addr + align_len) & ~align_len;
285 length = len;
286
287 overhead = get_aligned_image_overhead(info, offset);
288 nr_sectors = get_aligned_image_size(info, length, offset);
289
Michal Simekf707b5a2018-07-18 14:33:15 +0200290 if (info->read(info,
291 sector + get_aligned_image_offset(info, offset),
York Sunadf99fa2017-08-15 11:14:44 -0700292 nr_sectors, (void *)load_ptr) != nr_sectors)
293 return -EIO;
294
295 debug("External data: dst=%lx, offset=%x, size=%lx\n",
296 load_ptr, offset, (unsigned long)length);
297 src = (void *)load_ptr + overhead;
298 } else {
299 /* Embedded data */
300 if (fit_image_get_data(fit, node, &data, &length)) {
301 puts("Cannot get image data/size\n");
302 return -ENOENT;
303 }
304 debug("Embedded data: dst=%lx, size=%lx\n", load_addr,
305 (unsigned long)length);
306 src = (void *)data;
307 }
Andre Przywara29053e92017-04-26 01:32:36 +0100308
Ben Whitten54a91192018-06-07 11:37:27 +0100309#ifdef CONFIG_SPL_FIT_SIGNATURE
310 printf("## Checking hash(es) for Image %s ... ",
311 fit_get_name(fit, node, NULL));
312 if (!fit_image_verify_with_data(fit, node,
313 src, length))
314 return -EPERM;
315 puts("OK\n");
316#endif
317
Andre Przywara29053e92017-04-26 01:32:36 +0100318#ifdef CONFIG_SPL_FIT_IMAGE_POST_PROCESS
319 board_fit_image_post_process(&src, &length);
320#endif
321
Michal Simekf354c3f2018-07-24 15:05:00 +0200322 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
York Sun25d65f12017-09-15 08:21:13 -0700323 size = length;
York Suna6945fe2017-08-15 11:14:43 -0700324 if (gunzip((void *)load_addr, CONFIG_SYS_BOOTM_LEN,
York Sun25d65f12017-09-15 08:21:13 -0700325 src, &size)) {
York Suna6945fe2017-08-15 11:14:43 -0700326 puts("Uncompressing error\n");
327 return -EIO;
328 }
York Sun25d65f12017-09-15 08:21:13 -0700329 length = size;
York Suna6945fe2017-08-15 11:14:43 -0700330 } else {
331 memcpy((void *)load_addr, src, length);
332 }
Andre Przywara29053e92017-04-26 01:32:36 +0100333
334 if (image_info) {
335 image_info->load_addr = load_addr;
336 image_info->size = length;
337 image_info->entry_point = fdt_getprop_u32(fit, node, "entry");
338 }
339
340 return 0;
341}
342
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200343static int spl_fit_append_fdt(struct spl_image_info *spl_image,
344 struct spl_load_info *info, ulong sector,
345 void *fit, int images, ulong base_offset)
346{
347 struct spl_image_info image_info;
Michal Simekbf703df2019-10-22 16:39:11 +0200348 int node, ret = 0, index = 0;
Lukas Auer80afee72019-08-21 21:14:42 +0200349
350 /*
351 * Use the address following the image as target address for the
352 * device tree.
353 */
354 image_info.load_addr = spl_image->load_addr + spl_image->size;
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200355
356 /* Figure out which device tree the board wants to use */
Michal Simekbf703df2019-10-22 16:39:11 +0200357 node = spl_fit_get_image_node(fit, images, FIT_FDT_PROP, index++);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200358 if (node < 0) {
359 debug("%s: cannot find FDT node\n", __func__);
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200360
Lukas Auer80afee72019-08-21 21:14:42 +0200361 /*
362 * U-Boot did not find a device tree inside the FIT image. Use
363 * the U-Boot device tree instead.
364 */
365 if (gd->fdt_blob)
366 memcpy((void *)image_info.load_addr, gd->fdt_blob,
367 fdt_totalsize(gd->fdt_blob));
368 else
369 return node;
370 } else {
371 ret = spl_load_fit_image(info, sector, fit, base_offset, node,
372 &image_info);
373 if (ret < 0)
374 return ret;
375 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200376
377 /* Make the load-address of the FDT available for the SPL framework */
378 spl_image->fdt_addr = (void *)image_info.load_addr;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100379#if !CONFIG_IS_ENABLED(FIT_IMAGE_TINY)
Michal Simekbf703df2019-10-22 16:39:11 +0200380 if (CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)) {
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200381 void *tmpbuffer = NULL;
382
Michal Simekbf703df2019-10-22 16:39:11 +0200383 for (; ; index++) {
384 node = spl_fit_get_image_node(fit, images, FIT_FDT_PROP,
385 index);
Jean-Jacques Hiblotc6ab6a12019-10-22 16:39:14 +0200386 if (node == -E2BIG) {
Michal Simekbf703df2019-10-22 16:39:11 +0200387 debug("%s: No additional FDT node\n", __func__);
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200388 break;
Jean-Jacques Hiblotc6ab6a12019-10-22 16:39:14 +0200389 } else if (node < 0) {
390 debug("%s: unable to find FDT node %d\n",
391 __func__, index);
392 continue;
Michal Simekbf703df2019-10-22 16:39:11 +0200393 }
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200394
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200395 if (!tmpbuffer) {
396 /*
397 * allocate memory to store the DT overlay
398 * before it is applied. It may not be used
399 * depending on how the overlay is stored, so
400 * don't fail yet if the allocation failed.
401 */
402 tmpbuffer = malloc(CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ);
403 if (!tmpbuffer)
404 debug("%s: unable to allocate space for overlays\n",
405 __func__);
406 }
407 image_info.load_addr = (ulong)tmpbuffer;
Michal Simekbf703df2019-10-22 16:39:11 +0200408 ret = spl_load_fit_image(info, sector, fit, base_offset,
409 node, &image_info);
410 if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200411 break;
Michal Simekbf703df2019-10-22 16:39:11 +0200412
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200413 /* Make room in FDT for changes from the overlay */
414 ret = fdt_increase_size(spl_image->fdt_addr,
415 image_info.size);
416 if (ret < 0)
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200417 break;
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200418
Michal Simekbf703df2019-10-22 16:39:11 +0200419 ret = fdt_overlay_apply_verbose(spl_image->fdt_addr,
420 (void *)image_info.load_addr);
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200421 if (ret) {
422 pr_err("failed to apply DT overlay %s\n",
423 fit_get_name(fit, node, NULL));
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200424 break;
Jean-Jacques Hiblot9443a732019-10-22 16:39:15 +0200425 }
Michal Simekbf703df2019-10-22 16:39:11 +0200426
427 debug("%s: DT overlay %s applied\n", __func__,
428 fit_get_name(fit, node, NULL));
429 }
Jean-Jacques Hiblot0da58152019-10-22 16:39:13 +0200430 if (tmpbuffer)
431 free(tmpbuffer);
432 if (ret)
433 return ret;
Michal Simekbf703df2019-10-22 16:39:11 +0200434 }
Jean-Jacques Hiblot74addb62019-10-22 16:39:12 +0200435 /* Try to make space, so we can inject details on the loadables */
436 ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192);
437 if (ret < 0)
438 return ret;
439#endif
440
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200441 return ret;
442}
443
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200444static int spl_fit_record_loadable(const void *fit, int images, int index,
445 void *blob, struct spl_image_info *image)
446{
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100447 int ret = 0;
448#if !CONFIG_IS_ENABLED(FIT_IMAGE_TINY)
Jean-Jacques Hiblot64e82dc2019-10-22 16:39:17 +0200449 const char *name;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100450 int node;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200451
452 ret = spl_fit_get_image_name(fit, images, "loadables",
453 index, &name);
454 if (ret < 0)
455 return ret;
456
457 node = spl_fit_get_image_node(fit, images, "loadables", index);
458
459 ret = fdt_record_loadable(blob, index, name, image->load_addr,
460 image->size, image->entry_point,
461 fdt_getprop(fit, node, "type", NULL),
462 fdt_getprop(fit, node, "os", NULL));
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100463#endif
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200464 return ret;
465}
466
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100467static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os)
468{
Jean-Jacques Hiblot943ec252019-04-26 15:21:25 +0200469#if CONFIG_IS_ENABLED(FIT_IMAGE_TINY) && !defined(CONFIG_SPL_OS_BOOT)
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100470 return -ENOTSUPP;
471#else
472 return fit_image_get_os(fit, noffset, os);
473#endif
474}
475
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500476/*
477 * Weak default function to allow customizing SPL fit loading for load-only
478 * use cases by allowing to skip the parsing/processing of the FIT contents
479 * (so that this can be done separately in a more customized fashion)
480 */
481__weak bool spl_load_simple_fit_skip_processing(void)
482{
483 return false;
484}
485
Simon Glass43a734f2016-09-24 18:20:16 -0600486int spl_load_simple_fit(struct spl_image_info *spl_image,
487 struct spl_load_info *info, ulong sector, void *fit)
Simon Glassa6131a22016-02-22 22:55:56 -0700488{
489 int sectors;
Andre Przywara29053e92017-04-26 01:32:36 +0100490 ulong size;
Simon Glassa6131a22016-02-22 22:55:56 -0700491 unsigned long count;
Andre Przywara29053e92017-04-26 01:32:36 +0100492 struct spl_image_info image_info;
York Suna058b8a2017-08-15 11:14:45 -0700493 int node = -1;
494 int images, ret;
Marek Vasut1dda46f2018-08-14 11:27:02 +0200495 int base_offset, hsize, align_len = ARCH_DMA_MINALIGN - 1;
Andre Przywarae7c58562017-04-26 01:32:37 +0100496 int index = 0;
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200497 int firmware_node;
Simon Glassa6131a22016-02-22 22:55:56 -0700498
499 /*
York Suna058b8a2017-08-15 11:14:45 -0700500 * For FIT with external data, figure out where the external images
501 * start. This is the base for the data-offset properties in each
502 * image.
Simon Glassa6131a22016-02-22 22:55:56 -0700503 */
504 size = fdt_totalsize(fit);
505 size = (size + 3) & ~3;
Ye Li9d5b0f42018-11-17 09:10:25 +0000506 size = board_spl_fit_size_align(size);
Simon Glassa6131a22016-02-22 22:55:56 -0700507 base_offset = (size + 3) & ~3;
508
509 /*
510 * So far we only have one block of data from the FIT. Read the entire
511 * thing, including that first block, placing it so it finishes before
512 * where we will load the image.
513 *
514 * Note that we will load the image such that its first byte will be
515 * at the load address. Since that byte may be part-way through a
516 * block, we may load the image up to one block before the load
517 * address. So take account of that here by subtracting an addition
518 * block length from the FIT start position.
519 *
520 * In fact the FIT has its own load address, but we assume it cannot
521 * be before CONFIG_SYS_TEXT_BASE.
York Suna058b8a2017-08-15 11:14:45 -0700522 *
523 * For FIT with data embedded, data is loaded as part of FIT image.
524 * For FIT with external data, data is not loaded in this step.
Simon Glassa6131a22016-02-22 22:55:56 -0700525 */
Marek Vasut1dda46f2018-08-14 11:27:02 +0200526 hsize = (size + info->bl_len + align_len) & ~align_len;
527 fit = spl_get_load_buffer(-hsize, hsize);
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530528 sectors = get_aligned_image_size(info, size, 0);
Simon Glassa6131a22016-02-22 22:55:56 -0700529 count = info->read(info, sector, sectors, fit);
Ye Li9d5b0f42018-11-17 09:10:25 +0000530 debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu, size=0x%lx\n",
531 sector, sectors, fit, count, size);
532
Simon Glassa6131a22016-02-22 22:55:56 -0700533 if (count == 0)
534 return -EIO;
535
Andreas Dannenberg8d9f7f12019-06-04 17:55:46 -0500536 /* skip further processing if requested to enable load-only use cases */
537 if (spl_load_simple_fit_skip_processing())
538 return 0;
539
Andre Przywara525e9c92017-04-26 01:32:34 +0100540 /* find the node holding the images information */
Simon Glassa6131a22016-02-22 22:55:56 -0700541 images = fdt_path_offset(fit, FIT_IMAGES_PATH);
542 if (images < 0) {
543 debug("%s: Cannot find /images node: %d\n", __func__, images);
544 return -1;
545 }
Marek Vasut33dd00e2018-05-12 22:25:28 +0200546
547#ifdef CONFIG_SPL_FPGA_SUPPORT
548 node = spl_fit_get_image_node(fit, images, "fpga", 0);
549 if (node >= 0) {
550 /* Load the image and set up the spl_image structure */
551 ret = spl_load_fit_image(info, sector, fit, base_offset, node,
552 spl_image);
553 if (ret) {
554 printf("%s: Cannot load the FPGA: %i\n", __func__, ret);
555 return ret;
556 }
Michal Simekf707b5a2018-07-18 14:33:15 +0200557
558 debug("FPGA bitstream at: %x, size: %x\n",
559 (u32)spl_image->load_addr, spl_image->size);
560
561 ret = fpga_load(0, (const void *)spl_image->load_addr,
562 spl_image->size, BIT_FULL);
563 if (ret) {
564 printf("%s: Cannot load the image to the FPGA\n",
565 __func__);
566 return ret;
567 }
568
Luis Aranedaeece6232018-07-19 03:10:16 -0400569 puts("FPGA image loaded from FIT\n");
Marek Vasut33dd00e2018-05-12 22:25:28 +0200570 node = -1;
571 }
572#endif
Andre Przywara525e9c92017-04-26 01:32:34 +0100573
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200574 /*
575 * Find the U-Boot image using the following search order:
576 * - start at 'firmware' (e.g. an ARM Trusted Firmware)
577 * - fall back 'kernel' (e.g. a Falcon-mode OS boot
578 * - fall back to using the first 'loadables' entry
579 */
580 if (node < 0)
Michal Simekb766e8f2018-03-26 16:31:26 +0200581 node = spl_fit_get_image_node(fit, images, FIT_FIRMWARE_PROP,
582 0);
York Suna058b8a2017-08-15 11:14:45 -0700583#ifdef CONFIG_SPL_OS_BOOT
York Suna058b8a2017-08-15 11:14:45 -0700584 if (node < 0)
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200585 node = spl_fit_get_image_node(fit, images, FIT_KERNEL_PROP, 0);
York Suna058b8a2017-08-15 11:14:45 -0700586#endif
Andre Przywara525e9c92017-04-26 01:32:34 +0100587 if (node < 0) {
588 debug("could not find firmware image, trying loadables...\n");
589 node = spl_fit_get_image_node(fit, images, "loadables", 0);
Andre Przywarae7c58562017-04-26 01:32:37 +0100590 /*
591 * If we pick the U-Boot image from "loadables", start at
592 * the second image when later loading additional images.
593 */
594 index = 1;
Andre Przywara525e9c92017-04-26 01:32:34 +0100595 }
Simon Glassa6131a22016-02-22 22:55:56 -0700596 if (node < 0) {
Andre Przywara525e9c92017-04-26 01:32:34 +0100597 debug("%s: Cannot find u-boot image node: %d\n",
598 __func__, node);
Simon Glassa6131a22016-02-22 22:55:56 -0700599 return -1;
600 }
601
Andre Przywara29053e92017-04-26 01:32:36 +0100602 /* Load the image and set up the spl_image structure */
603 ret = spl_load_fit_image(info, sector, fit, base_offset, node,
604 spl_image);
605 if (ret)
606 return ret;
Daniel Allredcf839bd2016-06-27 09:19:21 -0500607
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200608 /*
609 * For backward compatibility, we treat the first node that is
610 * as a U-Boot image, if no OS-type has been declared.
611 */
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100612 if (!spl_fit_image_get_os(fit, node, &spl_image->os))
York Suna058b8a2017-08-15 11:14:45 -0700613 debug("Image OS is %s\n", genimg_get_os_name(spl_image->os));
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200614#if !defined(CONFIG_SPL_OS_BOOT)
615 else
616 spl_image->os = IH_OS_U_BOOT;
York Suna058b8a2017-08-15 11:14:45 -0700617#endif
Simon Glassa6131a22016-02-22 22:55:56 -0700618
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200619 /*
620 * Booting a next-stage U-Boot may require us to append the FDT.
621 * We allow this to fail, as the U-Boot image might embed its FDT.
622 */
623 if (spl_image->os == IH_OS_U_BOOT)
624 spl_fit_append_fdt(spl_image, info, sector, fit,
625 images, base_offset);
Andre Przywarae7c58562017-04-26 01:32:37 +0100626
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200627 firmware_node = node;
Andre Przywarae7c58562017-04-26 01:32:37 +0100628 /* Now check if there are more images for us to load */
629 for (; ; index++) {
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200630 uint8_t os_type = IH_OS_INVALID;
631
Andre Przywarae7c58562017-04-26 01:32:37 +0100632 node = spl_fit_get_image_node(fit, images, "loadables", index);
633 if (node < 0)
634 break;
635
Jean-Jacques Hiblot776ce602019-10-22 16:39:10 +0200636 /*
637 * if the firmware is also a loadable, skip it because
638 * it already has been loaded. This is typically the case with
639 * u-boot.img generated by mkimage.
640 */
641 if (firmware_node == node)
642 continue;
643
Andre Przywarae7c58562017-04-26 01:32:37 +0100644 ret = spl_load_fit_image(info, sector, fit, base_offset, node,
645 &image_info);
646 if (ret < 0)
647 continue;
648
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100649 if (!spl_fit_image_get_os(fit, node, &os_type))
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200650 debug("Loadable is %s\n", genimg_get_os_name(os_type));
Abel Vesa53420dc2019-03-12 08:34:31 +0000651#if CONFIG_IS_ENABLED(FIT_IMAGE_TINY)
652 else
653 os_type = IH_OS_U_BOOT;
654#endif
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200655
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200656 if (os_type == IH_OS_U_BOOT) {
657 spl_fit_append_fdt(&image_info, info, sector,
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200658 fit, images, base_offset);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200659 spl_image->fdt_addr = image_info.fdt_addr;
660 }
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200661
Andre Przywarae7c58562017-04-26 01:32:37 +0100662 /*
663 * If the "firmware" image did not provide an entry point,
664 * use the first valid entry point from the loadables.
665 */
666 if (spl_image->entry_point == FDT_ERROR &&
667 image_info.entry_point != FDT_ERROR)
668 spl_image->entry_point = image_info.entry_point;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200669
670 /* Record our loadables into the FDT */
671 if (spl_image->fdt_addr)
672 spl_fit_record_loadable(fit, images, index,
673 spl_image->fdt_addr,
674 &image_info);
Andre Przywarae7c58562017-04-26 01:32:37 +0100675 }
676
677 /*
678 * If a platform does not provide CONFIG_SYS_UBOOT_START, U-Boot's
679 * Makefile will set it to 0 and it will end up as the entry point
680 * here. What it actually means is: use the load address.
681 */
682 if (spl_image->entry_point == FDT_ERROR || spl_image->entry_point == 0)
683 spl_image->entry_point = spl_image->load_addr;
684
Ye Li9d5b0f42018-11-17 09:10:25 +0000685 spl_image->flags |= SPL_FIT_FOUND;
686
Stefano Babicf8b509b2019-09-20 08:47:53 +0200687#ifdef CONFIG_IMX_HAB
Ye Li9d5b0f42018-11-17 09:10:25 +0000688 board_spl_fit_post_load((ulong)fit, size);
689#endif
690
Andre Przywarae7c58562017-04-26 01:32:37 +0100691 return 0;
Simon Glassa6131a22016-02-22 22:55:56 -0700692}