blob: cb0cc5299bc5e941825cceae0636be527c164dea [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>
9#include <image.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090010#include <linux/libfdt.h>
Simon Glassa6131a22016-02-22 22:55:56 -070011#include <spl.h>
12
York Suna6945fe2017-08-15 11:14:43 -070013#ifndef CONFIG_SYS_BOOTM_LEN
14#define CONFIG_SYS_BOOTM_LEN (64 << 20)
15#endif
16
Andre Przywara525e9c92017-04-26 01:32:34 +010017/**
Philipp Tomsiche61eff92017-09-13 21:29:34 +020018 * spl_fit_get_image_name(): By using the matching configuration subnode,
Andre Przywara525e9c92017-04-26 01:32:34 +010019 * retrieve the name of an image, specified by a property name and an index
20 * into that.
21 * @fit: Pointer to the FDT blob.
22 * @images: Offset of the /images subnode.
23 * @type: Name of the property within the configuration subnode.
24 * @index: Index into the list of strings in this property.
Philipp Tomsiche61eff92017-09-13 21:29:34 +020025 * @outname: Name of the image
Andre Przywara525e9c92017-04-26 01:32:34 +010026 *
Philipp Tomsiche61eff92017-09-13 21:29:34 +020027 * Return: 0 on success, or a negative error number
Andre Przywara525e9c92017-04-26 01:32:34 +010028 */
Philipp Tomsiche61eff92017-09-13 21:29:34 +020029static int spl_fit_get_image_name(const void *fit, int images,
30 const char *type, int index,
31 char **outname)
Andre Przywara1e329b62017-04-26 01:32:33 +010032{
33 const char *name, *str;
Philipp Tomsiche61eff92017-09-13 21:29:34 +020034 __maybe_unused int node;
35 int conf_node;
Andre Przywara1e329b62017-04-26 01:32:33 +010036 int len, i;
37
Cooper Jr., Frankline6792402017-06-16 17:25:05 -050038 conf_node = fit_find_config_node(fit);
Andre Przywara1e329b62017-04-26 01:32:33 +010039 if (conf_node < 0) {
40#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
41 printf("No matching DT out of these options:\n");
42 for (node = fdt_first_subnode(fit, conf_node);
43 node >= 0;
44 node = fdt_next_subnode(fit, node)) {
45 name = fdt_getprop(fit, node, "description", &len);
46 printf(" %s\n", name);
Simon Glassa6131a22016-02-22 22:55:56 -070047 }
Andre Przywara1e329b62017-04-26 01:32:33 +010048#endif
49 return conf_node;
50 }
Simon Glassa6131a22016-02-22 22:55:56 -070051
Andre Przywara1e329b62017-04-26 01:32:33 +010052 name = fdt_getprop(fit, conf_node, type, &len);
53 if (!name) {
54 debug("cannot find property '%s': %d\n", type, len);
55 return -EINVAL;
56 }
Simon Glassa6131a22016-02-22 22:55:56 -070057
Andre Przywara1e329b62017-04-26 01:32:33 +010058 str = name;
59 for (i = 0; i < index; i++) {
60 str = strchr(str, '\0') + 1;
61 if (!str || (str - name >= len)) {
62 debug("no string for index %d\n", index);
63 return -E2BIG;
64 }
Simon Glassa6131a22016-02-22 22:55:56 -070065 }
66
Philipp Tomsiche61eff92017-09-13 21:29:34 +020067 *outname = (char *)str;
68 return 0;
69}
70
71/**
72 * spl_fit_get_image_node(): By using the matching configuration subnode,
73 * retrieve the name of an image, specified by a property name and an index
74 * into that.
75 * @fit: Pointer to the FDT blob.
76 * @images: Offset of the /images subnode.
77 * @type: Name of the property within the configuration subnode.
78 * @index: Index into the list of strings in this property.
79 *
80 * Return: the node offset of the respective image node or a negative
81 * error number.
82 */
83static int spl_fit_get_image_node(const void *fit, int images,
84 const char *type, int index)
85{
86 char *str;
87 int err;
88 int node;
89
90 err = spl_fit_get_image_name(fit, images, type, index, &str);
91 if (err)
92 return err;
93
Andre Przywara1e329b62017-04-26 01:32:33 +010094 debug("%s: '%s'\n", type, str);
Philipp Tomsiche61eff92017-09-13 21:29:34 +020095
Andre Przywara1e329b62017-04-26 01:32:33 +010096 node = fdt_subnode_offset(fit, images, str);
97 if (node < 0) {
98 debug("cannot find image node '%s': %d\n", str, node);
99 return -EINVAL;
Simon Glassa6131a22016-02-22 22:55:56 -0700100 }
Simon Glassa6131a22016-02-22 22:55:56 -0700101
Andre Przywara525e9c92017-04-26 01:32:34 +0100102 return node;
Simon Glassa6131a22016-02-22 22:55:56 -0700103}
104
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530105static int get_aligned_image_offset(struct spl_load_info *info, int offset)
106{
107 /*
108 * If it is a FS read, get the first address before offset which is
109 * aligned to ARCH_DMA_MINALIGN. If it is raw read return the
110 * block number to which offset belongs.
111 */
112 if (info->filename)
113 return offset & ~(ARCH_DMA_MINALIGN - 1);
114
115 return offset / info->bl_len;
116}
117
118static int get_aligned_image_overhead(struct spl_load_info *info, int offset)
119{
120 /*
121 * If it is a FS read, get the difference between the offset and
122 * the first address before offset which is aligned to
123 * ARCH_DMA_MINALIGN. If it is raw read return the offset within the
124 * block.
125 */
126 if (info->filename)
127 return offset & (ARCH_DMA_MINALIGN - 1);
128
129 return offset % info->bl_len;
130}
131
132static int get_aligned_image_size(struct spl_load_info *info, int data_size,
133 int offset)
134{
Lokesh Vutlaf0531a62016-07-19 14:56:14 +0530135 data_size = data_size + get_aligned_image_overhead(info, offset);
136
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530137 if (info->filename)
Lokesh Vutlaf0531a62016-07-19 14:56:14 +0530138 return data_size;
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530139
140 return (data_size + info->bl_len - 1) / info->bl_len;
141}
142
Marek Vasut33dd00e2018-05-12 22:25:28 +0200143#ifdef CONFIG_SPL_FPGA_SUPPORT
144__weak int spl_load_fpga_image(struct spl_load_info *info, size_t length,
145 int nr_sectors, int sector_offset)
146{
147 return 0;
148}
149#endif
150
Andre Przywara29053e92017-04-26 01:32:36 +0100151/**
152 * spl_load_fit_image(): load the image described in a certain FIT node
153 * @info: points to information about the device to load data from
154 * @sector: the start sector of the FIT image on the device
155 * @fit: points to the flattened device tree blob describing the FIT
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200156 * image
Andre Przywara29053e92017-04-26 01:32:36 +0100157 * @base_offset: the beginning of the data area containing the actual
158 * image data, relative to the beginning of the FIT
159 * @node: offset of the DT node describing the image to load (relative
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200160 * to @fit)
Andre Przywara29053e92017-04-26 01:32:36 +0100161 * @image_info: will be filled with information about the loaded image
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200162 * If the FIT node does not contain a "load" (address) property,
163 * the image gets loaded to the address pointed to by the
164 * load_addr member in this struct.
Andre Przywara29053e92017-04-26 01:32:36 +0100165 *
166 * Return: 0 on success or a negative error number.
167 */
168static int spl_load_fit_image(struct spl_load_info *info, ulong sector,
169 void *fit, ulong base_offset, int node,
170 struct spl_image_info *image_info)
171{
Marek Vasut33dd00e2018-05-12 22:25:28 +0200172 int offset, sector_offset;
Andre Przywara29053e92017-04-26 01:32:36 +0100173 size_t length;
York Sunadf99fa2017-08-15 11:14:44 -0700174 int len;
York Sun25d65f12017-09-15 08:21:13 -0700175 ulong size;
Andre Przywara29053e92017-04-26 01:32:36 +0100176 ulong load_addr, load_ptr;
177 void *src;
178 ulong overhead;
179 int nr_sectors;
180 int align_len = ARCH_DMA_MINALIGN - 1;
York Suna6945fe2017-08-15 11:14:43 -0700181 uint8_t image_comp = -1, type = -1;
York Sunadf99fa2017-08-15 11:14:44 -0700182 const void *data;
Peng Fan8876c7e2017-12-05 13:20:59 +0800183 bool external_data = false;
York Suna6945fe2017-08-15 11:14:43 -0700184
Marek Vasut72bc5d52018-06-01 23:19:29 +0200185 if (IS_ENABLED(CONFIG_SPL_FPGA_SUPPORT) ||
186 (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP))) {
187 if (fit_image_get_type(fit, node, &type))
188 puts("Cannot get image type.\n");
189 else
190 debug("%s ", genimg_get_type_name(type));
191 }
192
York Suna6945fe2017-08-15 11:14:43 -0700193 if (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP)) {
194 if (fit_image_get_comp(fit, node, &image_comp))
195 puts("Cannot get image compression format.\n");
196 else
197 debug("%s ", genimg_get_comp_name(image_comp));
York Suna6945fe2017-08-15 11:14:43 -0700198 }
Andre Przywara29053e92017-04-26 01:32:36 +0100199
York Sunadf99fa2017-08-15 11:14:44 -0700200 if (fit_image_get_load(fit, node, &load_addr))
Andre Przywara29053e92017-04-26 01:32:36 +0100201 load_addr = image_info->load_addr;
Andre Przywara29053e92017-04-26 01:32:36 +0100202
Peng Fan8876c7e2017-12-05 13:20:59 +0800203 if (!fit_image_get_data_position(fit, node, &offset)) {
204 external_data = true;
205 } else if (!fit_image_get_data_offset(fit, node, &offset)) {
York Sunadf99fa2017-08-15 11:14:44 -0700206 offset += base_offset;
Peng Fan8876c7e2017-12-05 13:20:59 +0800207 external_data = true;
208 }
209
210 if (external_data) {
211 /* External data */
York Sunadf99fa2017-08-15 11:14:44 -0700212 if (fit_image_get_data_size(fit, node, &len))
213 return -ENOENT;
Andre Przywara29053e92017-04-26 01:32:36 +0100214
York Sunadf99fa2017-08-15 11:14:44 -0700215 load_ptr = (load_addr + align_len) & ~align_len;
216 length = len;
217
218 overhead = get_aligned_image_overhead(info, offset);
219 nr_sectors = get_aligned_image_size(info, length, offset);
Marek Vasut33dd00e2018-05-12 22:25:28 +0200220 sector_offset = sector + get_aligned_image_offset(info, offset);
221
222#ifdef CONFIG_SPL_FPGA_SUPPORT
223 if (type == IH_TYPE_FPGA) {
224 return spl_load_fpga_image(info, length, nr_sectors,
225 sector_offset);
226 }
227#endif
York Sunadf99fa2017-08-15 11:14:44 -0700228
Marek Vasut33dd00e2018-05-12 22:25:28 +0200229 if (info->read(info, sector_offset,
York Sunadf99fa2017-08-15 11:14:44 -0700230 nr_sectors, (void *)load_ptr) != nr_sectors)
231 return -EIO;
232
233 debug("External data: dst=%lx, offset=%x, size=%lx\n",
234 load_ptr, offset, (unsigned long)length);
235 src = (void *)load_ptr + overhead;
236 } else {
237 /* Embedded data */
238 if (fit_image_get_data(fit, node, &data, &length)) {
239 puts("Cannot get image data/size\n");
240 return -ENOENT;
241 }
242 debug("Embedded data: dst=%lx, size=%lx\n", load_addr,
243 (unsigned long)length);
244 src = (void *)data;
245 }
Andre Przywara29053e92017-04-26 01:32:36 +0100246
Ben Whitten54a91192018-06-07 11:37:27 +0100247#ifdef CONFIG_SPL_FIT_SIGNATURE
248 printf("## Checking hash(es) for Image %s ... ",
249 fit_get_name(fit, node, NULL));
250 if (!fit_image_verify_with_data(fit, node,
251 src, length))
252 return -EPERM;
253 puts("OK\n");
254#endif
255
Andre Przywara29053e92017-04-26 01:32:36 +0100256#ifdef CONFIG_SPL_FIT_IMAGE_POST_PROCESS
257 board_fit_image_post_process(&src, &length);
258#endif
259
Michal Simekf354c3f2018-07-24 15:05:00 +0200260 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
York Sun25d65f12017-09-15 08:21:13 -0700261 size = length;
York Suna6945fe2017-08-15 11:14:43 -0700262 if (gunzip((void *)load_addr, CONFIG_SYS_BOOTM_LEN,
York Sun25d65f12017-09-15 08:21:13 -0700263 src, &size)) {
York Suna6945fe2017-08-15 11:14:43 -0700264 puts("Uncompressing error\n");
265 return -EIO;
266 }
York Sun25d65f12017-09-15 08:21:13 -0700267 length = size;
York Suna6945fe2017-08-15 11:14:43 -0700268 } else {
269 memcpy((void *)load_addr, src, length);
270 }
Andre Przywara29053e92017-04-26 01:32:36 +0100271
272 if (image_info) {
273 image_info->load_addr = load_addr;
274 image_info->size = length;
275 image_info->entry_point = fdt_getprop_u32(fit, node, "entry");
276 }
277
278 return 0;
279}
280
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200281static int spl_fit_append_fdt(struct spl_image_info *spl_image,
282 struct spl_load_info *info, ulong sector,
283 void *fit, int images, ulong base_offset)
284{
285 struct spl_image_info image_info;
286 int node, ret;
287
288 /* Figure out which device tree the board wants to use */
289 node = spl_fit_get_image_node(fit, images, FIT_FDT_PROP, 0);
290 if (node < 0) {
291 debug("%s: cannot find FDT node\n", __func__);
292 return node;
293 }
294
295 /*
296 * Read the device tree and place it after the image.
297 * Align the destination address to ARCH_DMA_MINALIGN.
298 */
299 image_info.load_addr = spl_image->load_addr + spl_image->size;
300 ret = spl_load_fit_image(info, sector, fit, base_offset, node,
301 &image_info);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200302
303 if (ret < 0)
304 return ret;
305
306 /* Make the load-address of the FDT available for the SPL framework */
307 spl_image->fdt_addr = (void *)image_info.load_addr;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100308#if !CONFIG_IS_ENABLED(FIT_IMAGE_TINY)
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200309 /* Try to make space, so we can inject details on the loadables */
310 ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192);
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100311#endif
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200312
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200313 return ret;
314}
315
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200316static int spl_fit_record_loadable(const void *fit, int images, int index,
317 void *blob, struct spl_image_info *image)
318{
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100319 int ret = 0;
320#if !CONFIG_IS_ENABLED(FIT_IMAGE_TINY)
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200321 char *name;
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100322 int node;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200323
324 ret = spl_fit_get_image_name(fit, images, "loadables",
325 index, &name);
326 if (ret < 0)
327 return ret;
328
329 node = spl_fit_get_image_node(fit, images, "loadables", index);
330
331 ret = fdt_record_loadable(blob, index, name, image->load_addr,
332 image->size, image->entry_point,
333 fdt_getprop(fit, node, "type", NULL),
334 fdt_getprop(fit, node, "os", NULL));
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100335#endif
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200336 return ret;
337}
338
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100339static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os)
340{
341#if CONFIG_IS_ENABLED(FIT_IMAGE_TINY)
342 return -ENOTSUPP;
343#else
344 return fit_image_get_os(fit, noffset, os);
345#endif
346}
347
Simon Glass43a734f2016-09-24 18:20:16 -0600348int spl_load_simple_fit(struct spl_image_info *spl_image,
349 struct spl_load_info *info, ulong sector, void *fit)
Simon Glassa6131a22016-02-22 22:55:56 -0700350{
351 int sectors;
Andre Przywara29053e92017-04-26 01:32:36 +0100352 ulong size;
Simon Glassa6131a22016-02-22 22:55:56 -0700353 unsigned long count;
Andre Przywara29053e92017-04-26 01:32:36 +0100354 struct spl_image_info image_info;
York Suna058b8a2017-08-15 11:14:45 -0700355 int node = -1;
356 int images, ret;
Marek Vasut1dda46f2018-08-14 11:27:02 +0200357 int base_offset, hsize, align_len = ARCH_DMA_MINALIGN - 1;
Andre Przywarae7c58562017-04-26 01:32:37 +0100358 int index = 0;
Simon Glassa6131a22016-02-22 22:55:56 -0700359
360 /*
York Suna058b8a2017-08-15 11:14:45 -0700361 * For FIT with external data, figure out where the external images
362 * start. This is the base for the data-offset properties in each
363 * image.
Simon Glassa6131a22016-02-22 22:55:56 -0700364 */
365 size = fdt_totalsize(fit);
366 size = (size + 3) & ~3;
367 base_offset = (size + 3) & ~3;
368
369 /*
370 * So far we only have one block of data from the FIT. Read the entire
371 * thing, including that first block, placing it so it finishes before
372 * where we will load the image.
373 *
374 * Note that we will load the image such that its first byte will be
375 * at the load address. Since that byte may be part-way through a
376 * block, we may load the image up to one block before the load
377 * address. So take account of that here by subtracting an addition
378 * block length from the FIT start position.
379 *
380 * In fact the FIT has its own load address, but we assume it cannot
381 * be before CONFIG_SYS_TEXT_BASE.
York Suna058b8a2017-08-15 11:14:45 -0700382 *
383 * For FIT with data embedded, data is loaded as part of FIT image.
384 * For FIT with external data, data is not loaded in this step.
Simon Glassa6131a22016-02-22 22:55:56 -0700385 */
Marek Vasut1dda46f2018-08-14 11:27:02 +0200386 hsize = (size + info->bl_len + align_len) & ~align_len;
387 fit = spl_get_load_buffer(-hsize, hsize);
Lokesh Vutlaf62cef12016-05-24 10:34:38 +0530388 sectors = get_aligned_image_size(info, size, 0);
Simon Glassa6131a22016-02-22 22:55:56 -0700389 count = info->read(info, sector, sectors, fit);
390 debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu\n",
391 sector, sectors, fit, count);
392 if (count == 0)
393 return -EIO;
394
Andre Przywara525e9c92017-04-26 01:32:34 +0100395 /* find the node holding the images information */
Simon Glassa6131a22016-02-22 22:55:56 -0700396 images = fdt_path_offset(fit, FIT_IMAGES_PATH);
397 if (images < 0) {
398 debug("%s: Cannot find /images node: %d\n", __func__, images);
399 return -1;
400 }
Marek Vasut33dd00e2018-05-12 22:25:28 +0200401
402#ifdef CONFIG_SPL_FPGA_SUPPORT
403 node = spl_fit_get_image_node(fit, images, "fpga", 0);
404 if (node >= 0) {
405 /* Load the image and set up the spl_image structure */
406 ret = spl_load_fit_image(info, sector, fit, base_offset, node,
407 spl_image);
408 if (ret) {
409 printf("%s: Cannot load the FPGA: %i\n", __func__, ret);
410 return ret;
411 }
Luis Aranedaeece6232018-07-19 03:10:16 -0400412 puts("FPGA image loaded from FIT\n");
Marek Vasut33dd00e2018-05-12 22:25:28 +0200413 node = -1;
414 }
415#endif
Andre Przywara525e9c92017-04-26 01:32:34 +0100416
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200417 /*
418 * Find the U-Boot image using the following search order:
419 * - start at 'firmware' (e.g. an ARM Trusted Firmware)
420 * - fall back 'kernel' (e.g. a Falcon-mode OS boot
421 * - fall back to using the first 'loadables' entry
422 */
423 if (node < 0)
Michal Simekb766e8f2018-03-26 16:31:26 +0200424 node = spl_fit_get_image_node(fit, images, FIT_FIRMWARE_PROP,
425 0);
York Suna058b8a2017-08-15 11:14:45 -0700426#ifdef CONFIG_SPL_OS_BOOT
York Suna058b8a2017-08-15 11:14:45 -0700427 if (node < 0)
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200428 node = spl_fit_get_image_node(fit, images, FIT_KERNEL_PROP, 0);
York Suna058b8a2017-08-15 11:14:45 -0700429#endif
Andre Przywara525e9c92017-04-26 01:32:34 +0100430 if (node < 0) {
431 debug("could not find firmware image, trying loadables...\n");
432 node = spl_fit_get_image_node(fit, images, "loadables", 0);
Andre Przywarae7c58562017-04-26 01:32:37 +0100433 /*
434 * If we pick the U-Boot image from "loadables", start at
435 * the second image when later loading additional images.
436 */
437 index = 1;
Andre Przywara525e9c92017-04-26 01:32:34 +0100438 }
Simon Glassa6131a22016-02-22 22:55:56 -0700439 if (node < 0) {
Andre Przywara525e9c92017-04-26 01:32:34 +0100440 debug("%s: Cannot find u-boot image node: %d\n",
441 __func__, node);
Simon Glassa6131a22016-02-22 22:55:56 -0700442 return -1;
443 }
444
Andre Przywara29053e92017-04-26 01:32:36 +0100445 /* Load the image and set up the spl_image structure */
446 ret = spl_load_fit_image(info, sector, fit, base_offset, node,
447 spl_image);
448 if (ret)
449 return ret;
Daniel Allredcf839bd2016-06-27 09:19:21 -0500450
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200451 /*
452 * For backward compatibility, we treat the first node that is
453 * as a U-Boot image, if no OS-type has been declared.
454 */
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100455 if (!spl_fit_image_get_os(fit, node, &spl_image->os))
York Suna058b8a2017-08-15 11:14:45 -0700456 debug("Image OS is %s\n", genimg_get_os_name(spl_image->os));
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200457#if !defined(CONFIG_SPL_OS_BOOT)
458 else
459 spl_image->os = IH_OS_U_BOOT;
York Suna058b8a2017-08-15 11:14:45 -0700460#endif
Simon Glassa6131a22016-02-22 22:55:56 -0700461
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200462 /*
463 * Booting a next-stage U-Boot may require us to append the FDT.
464 * We allow this to fail, as the U-Boot image might embed its FDT.
465 */
466 if (spl_image->os == IH_OS_U_BOOT)
467 spl_fit_append_fdt(spl_image, info, sector, fit,
468 images, base_offset);
Andre Przywarae7c58562017-04-26 01:32:37 +0100469
470 /* Now check if there are more images for us to load */
471 for (; ; index++) {
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200472 uint8_t os_type = IH_OS_INVALID;
473
Andre Przywarae7c58562017-04-26 01:32:37 +0100474 node = spl_fit_get_image_node(fit, images, "loadables", index);
475 if (node < 0)
476 break;
477
478 ret = spl_load_fit_image(info, sector, fit, base_offset, node,
479 &image_info);
480 if (ret < 0)
481 continue;
482
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100483 if (!spl_fit_image_get_os(fit, node, &os_type))
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200484 debug("Loadable is %s\n", genimg_get_os_name(os_type));
485
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200486 if (os_type == IH_OS_U_BOOT) {
487 spl_fit_append_fdt(&image_info, info, sector,
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200488 fit, images, base_offset);
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200489 spl_image->fdt_addr = image_info.fdt_addr;
490 }
Philipp Tomsich1345ffa2017-09-13 21:29:32 +0200491
Andre Przywarae7c58562017-04-26 01:32:37 +0100492 /*
493 * If the "firmware" image did not provide an entry point,
494 * use the first valid entry point from the loadables.
495 */
496 if (spl_image->entry_point == FDT_ERROR &&
497 image_info.entry_point != FDT_ERROR)
498 spl_image->entry_point = image_info.entry_point;
Philipp Tomsiche61eff92017-09-13 21:29:34 +0200499
500 /* Record our loadables into the FDT */
501 if (spl_image->fdt_addr)
502 spl_fit_record_loadable(fit, images, index,
503 spl_image->fdt_addr,
504 &image_info);
Andre Przywarae7c58562017-04-26 01:32:37 +0100505 }
506
507 /*
508 * If a platform does not provide CONFIG_SYS_UBOOT_START, U-Boot's
509 * Makefile will set it to 0 and it will end up as the entry point
510 * here. What it actually means is: use the load address.
511 */
512 if (spl_image->entry_point == FDT_ERROR || spl_image->entry_point == 0)
513 spl_image->entry_point = spl_image->load_addr;
514
515 return 0;
Simon Glassa6131a22016-02-22 22:55:56 -0700516}