blob: 4288f571fcd1998c36290a2b76d2800611d32281 [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 Glass891d9e82021-03-07 17:35:14 -070014#include <mapmem.h>
Simon Glassf1dcee52016-02-22 22:55:56 -070015#include <spl.h>
Simon Glass3a8ee3d2020-11-05 06:32:05 -070016#include <sysinfo.h>
Simon Glass90526e92020-05-10 11:39:56 -060017#include <asm/cache.h>
Simon Glass401d1c42020-10-30 21:38:53 -060018#include <asm/global_data.h>
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +020019#include <linux/libfdt.h>
Simon Glassf1dcee52016-02-22 22:55:56 -070020
Lukas Auerb83edfb2019-08-21 21:14:42 +020021DECLARE_GLOBAL_DATA_PTR;
22
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +020023#ifndef CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ
24#define CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ (64 * 1024)
25#endif
26
York Sun7264f292017-08-15 11:14:43 -070027#ifndef CONFIG_SYS_BOOTM_LEN
28#define CONFIG_SYS_BOOTM_LEN (64 << 20)
29#endif
30
Alexandru Gagniuc917fa362021-01-20 10:46:50 -060031struct spl_fit_info {
32 const void *fit; /* Pointer to a valid FIT blob */
33 size_t ext_data_offset; /* Offset to FIT external data (end of FIT) */
34 int images_node; /* FDT offset to "/images" node */
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -060035 int conf_node; /* FDT offset to selected configuration node */
Alexandru Gagniuc917fa362021-01-20 10:46:50 -060036};
37
Alexandru Gagniucefc4ad0bc2021-01-20 10:46:49 -060038__weak void board_spl_fit_post_load(const void *fit)
Ye Lie246bfc2018-11-17 09:10:25 +000039{
40}
41
42__weak ulong board_spl_fit_size_align(ulong size)
43{
44 return size;
45}
46
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +020047static int find_node_from_desc(const void *fit, int node, const char *str)
48{
49 int child;
50
51 if (node < 0)
52 return -EINVAL;
53
54 /* iterate the FIT nodes and find a matching description */
55 for (child = fdt_first_subnode(fit, node); child >= 0;
56 child = fdt_next_subnode(fit, child)) {
57 int len;
58 const char *desc = fdt_getprop(fit, child, "description", &len);
59
60 if (!desc)
61 continue;
62
63 if (!strcmp(desc, str))
64 return child;
65 }
66
67 return -ENOENT;
68}
69
Andre Przywara736806f2017-04-26 01:32:34 +010070/**
Philipp Tomsicha616c782017-09-13 21:29:34 +020071 * spl_fit_get_image_name(): By using the matching configuration subnode,
Andre Przywara736806f2017-04-26 01:32:34 +010072 * retrieve the name of an image, specified by a property name and an index
73 * into that.
74 * @fit: Pointer to the FDT blob.
75 * @images: Offset of the /images subnode.
76 * @type: Name of the property within the configuration subnode.
77 * @index: Index into the list of strings in this property.
Philipp Tomsicha616c782017-09-13 21:29:34 +020078 * @outname: Name of the image
Andre Przywara736806f2017-04-26 01:32:34 +010079 *
Philipp Tomsicha616c782017-09-13 21:29:34 +020080 * Return: 0 on success, or a negative error number
Andre Przywara736806f2017-04-26 01:32:34 +010081 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -060082static int spl_fit_get_image_name(const struct spl_fit_info *ctx,
Philipp Tomsicha616c782017-09-13 21:29:34 +020083 const char *type, int index,
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +020084 const char **outname)
Andre Przywara4b9340a2017-04-26 01:32:33 +010085{
Simon Glass3a8ee3d2020-11-05 06:32:05 -070086 struct udevice *sysinfo;
Andre Przywara4b9340a2017-04-26 01:32:33 +010087 const char *name, *str;
Philipp Tomsicha616c782017-09-13 21:29:34 +020088 __maybe_unused int node;
Andre Przywara4b9340a2017-04-26 01:32:33 +010089 int len, i;
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +020090 bool found = true;
Andre Przywara4b9340a2017-04-26 01:32:33 +010091
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -060092 name = fdt_getprop(ctx->fit, ctx->conf_node, type, &len);
Andre Przywara4b9340a2017-04-26 01:32:33 +010093 if (!name) {
94 debug("cannot find property '%s': %d\n", type, len);
95 return -EINVAL;
96 }
97
98 str = name;
99 for (i = 0; i < index; i++) {
100 str = strchr(str, '\0') + 1;
101 if (!str || (str - name >= len)) {
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200102 found = false;
103 break;
Andre Przywara4b9340a2017-04-26 01:32:33 +0100104 }
105 }
106
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700107 if (!found && CONFIG_IS_ENABLED(SYSINFO) && !sysinfo_get(&sysinfo)) {
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200108 int rc;
109 /*
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700110 * no string in the property for this index. Check if the
111 * sysinfo-level code can supply one.
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200112 */
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700113 rc = sysinfo_get_fit_loadable(sysinfo, index - i - 1, type,
114 &str);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200115 if (rc && rc != -ENOENT)
116 return rc;
117
118 if (!rc) {
119 /*
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700120 * The sysinfo provided a name for a loadable.
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200121 * Try to match it against the description properties
122 * first. If no matching node is found, use it as a
123 * node name.
124 */
125 int node;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600126 int images = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200127
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600128 node = find_node_from_desc(ctx->fit, images, str);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200129 if (node > 0)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600130 str = fdt_get_name(ctx->fit, node, NULL);
Jean-Jacques Hiblot152781d2019-10-22 16:39:22 +0200131
132 found = true;
133 }
134 }
135
136 if (!found) {
137 debug("no string for index %d\n", index);
138 return -E2BIG;
139 }
140
141 *outname = str;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200142 return 0;
143}
144
145/**
146 * spl_fit_get_image_node(): By using the matching configuration subnode,
147 * retrieve the name of an image, specified by a property name and an index
148 * into that.
149 * @fit: Pointer to the FDT blob.
150 * @images: Offset of the /images subnode.
151 * @type: Name of the property within the configuration subnode.
152 * @index: Index into the list of strings in this property.
153 *
154 * Return: the node offset of the respective image node or a negative
155 * error number.
156 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600157static int spl_fit_get_image_node(const struct spl_fit_info *ctx,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200158 const char *type, int index)
159{
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +0200160 const char *str;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200161 int err;
162 int node;
163
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600164 err = spl_fit_get_image_name(ctx, type, index, &str);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200165 if (err)
166 return err;
167
Andre Przywara4b9340a2017-04-26 01:32:33 +0100168 debug("%s: '%s'\n", type, str);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200169
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600170 node = fdt_subnode_offset(ctx->fit, ctx->images_node, str);
Andre Przywara4b9340a2017-04-26 01:32:33 +0100171 if (node < 0) {
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200172 pr_err("cannot find image node '%s': %d\n", str, node);
Andre Przywara4b9340a2017-04-26 01:32:33 +0100173 return -EINVAL;
174 }
175
Andre Przywara736806f2017-04-26 01:32:34 +0100176 return node;
Andre Przywara4b9340a2017-04-26 01:32:33 +0100177}
178
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530179static int get_aligned_image_offset(struct spl_load_info *info, int offset)
180{
181 /*
182 * If it is a FS read, get the first address before offset which is
183 * aligned to ARCH_DMA_MINALIGN. If it is raw read return the
184 * block number to which offset belongs.
185 */
186 if (info->filename)
187 return offset & ~(ARCH_DMA_MINALIGN - 1);
188
189 return offset / info->bl_len;
190}
191
192static int get_aligned_image_overhead(struct spl_load_info *info, int offset)
193{
194 /*
195 * If it is a FS read, get the difference between the offset and
196 * the first address before offset which is aligned to
197 * ARCH_DMA_MINALIGN. If it is raw read return the offset within the
198 * block.
199 */
200 if (info->filename)
201 return offset & (ARCH_DMA_MINALIGN - 1);
202
203 return offset % info->bl_len;
204}
205
206static int get_aligned_image_size(struct spl_load_info *info, int data_size,
207 int offset)
208{
Lokesh Vutla3cc1f382016-07-19 14:56:14 +0530209 data_size = data_size + get_aligned_image_overhead(info, offset);
210
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530211 if (info->filename)
Lokesh Vutla3cc1f382016-07-19 14:56:14 +0530212 return data_size;
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530213
214 return (data_size + info->bl_len - 1) / info->bl_len;
215}
216
Andre Przywara8baa3812017-04-26 01:32:36 +0100217/**
218 * spl_load_fit_image(): load the image described in a certain FIT node
219 * @info: points to information about the device to load data from
220 * @sector: the start sector of the FIT image on the device
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600221 * @ctx: points to the FIT context structure
Andre Przywara8baa3812017-04-26 01:32:36 +0100222 * @node: offset of the DT node describing the image to load (relative
Philipp Tomsicha616c782017-09-13 21:29:34 +0200223 * to @fit)
Andre Przywara8baa3812017-04-26 01:32:36 +0100224 * @image_info: will be filled with information about the loaded image
Philipp Tomsicha616c782017-09-13 21:29:34 +0200225 * If the FIT node does not contain a "load" (address) property,
226 * the image gets loaded to the address pointed to by the
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500227 * load_addr member in this struct, if load_addr is not 0
Andre Przywara8baa3812017-04-26 01:32:36 +0100228 *
229 * Return: 0 on success or a negative error number.
230 */
231static int spl_load_fit_image(struct spl_load_info *info, ulong sector,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600232 const struct spl_fit_info *ctx, int node,
Andre Przywara8baa3812017-04-26 01:32:36 +0100233 struct spl_image_info *image_info)
234{
Michal Simek3313ae62018-07-18 14:33:15 +0200235 int offset;
Andre Przywara8baa3812017-04-26 01:32:36 +0100236 size_t length;
York Sun5fd13d92017-08-15 11:14:44 -0700237 int len;
York Sun933f67a2017-09-15 08:21:13 -0700238 ulong size;
Simon Glass891d9e82021-03-07 17:35:14 -0700239 ulong load_addr;
240 void *load_ptr;
Andre Przywara8baa3812017-04-26 01:32:36 +0100241 void *src;
242 ulong overhead;
243 int nr_sectors;
York Sun7264f292017-08-15 11:14:43 -0700244 uint8_t image_comp = -1, type = -1;
York Sun5fd13d92017-08-15 11:14:44 -0700245 const void *data;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600246 const void *fit = ctx->fit;
Peng Fana1be94b2017-12-05 13:20:59 +0800247 bool external_data = false;
York Sun7264f292017-08-15 11:14:43 -0700248
Michal Simek29bd8ad2020-09-09 14:41:56 +0200249 if (IS_ENABLED(CONFIG_SPL_FPGA) ||
Marek Vasut56419ea2018-06-01 23:19:29 +0200250 (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP))) {
251 if (fit_image_get_type(fit, node, &type))
252 puts("Cannot get image type.\n");
253 else
254 debug("%s ", genimg_get_type_name(type));
255 }
256
Klaus H. Sorensen602ce1d2019-12-11 11:03:33 +0000257 if (IS_ENABLED(CONFIG_SPL_GZIP)) {
258 fit_image_get_comp(fit, node, &image_comp);
259 debug("%s ", genimg_get_comp_name(image_comp));
York Sun7264f292017-08-15 11:14:43 -0700260 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100261
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500262 if (fit_image_get_load(fit, node, &load_addr)) {
263 if (!image_info->load_addr) {
264 printf("Can't load %s: No load address and no buffer\n",
265 fit_get_name(fit, node, NULL));
266 return -ENOBUFS;
267 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100268 load_addr = image_info->load_addr;
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500269 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100270
Peng Fana1be94b2017-12-05 13:20:59 +0800271 if (!fit_image_get_data_position(fit, node, &offset)) {
272 external_data = true;
273 } else if (!fit_image_get_data_offset(fit, node, &offset)) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600274 offset += ctx->ext_data_offset;
Peng Fana1be94b2017-12-05 13:20:59 +0800275 external_data = true;
276 }
277
278 if (external_data) {
Simon Glass891d9e82021-03-07 17:35:14 -0700279 void *src_ptr;
280
Peng Fana1be94b2017-12-05 13:20:59 +0800281 /* External data */
York Sun5fd13d92017-08-15 11:14:44 -0700282 if (fit_image_get_data_size(fit, node, &len))
283 return -ENOENT;
Andre Przywara8baa3812017-04-26 01:32:36 +0100284
Simon Glass891d9e82021-03-07 17:35:14 -0700285 src_ptr = map_sysmem(ALIGN(load_addr, ARCH_DMA_MINALIGN), len);
York Sun5fd13d92017-08-15 11:14:44 -0700286 length = len;
Andre Przywara8baa3812017-04-26 01:32:36 +0100287
York Sun5fd13d92017-08-15 11:14:44 -0700288 overhead = get_aligned_image_overhead(info, offset);
289 nr_sectors = get_aligned_image_size(info, length, offset);
290
Michal Simek3313ae62018-07-18 14:33:15 +0200291 if (info->read(info,
292 sector + get_aligned_image_offset(info, offset),
Simon Glass891d9e82021-03-07 17:35:14 -0700293 nr_sectors, src_ptr) != nr_sectors)
York Sun5fd13d92017-08-15 11:14:44 -0700294 return -EIO;
295
Simon Glass891d9e82021-03-07 17:35:14 -0700296 debug("External data: dst=%p, offset=%x, size=%lx\n",
297 src_ptr, offset, (unsigned long)length);
298 src = src_ptr + overhead;
York Sun5fd13d92017-08-15 11:14:44 -0700299 } else {
300 /* Embedded data */
301 if (fit_image_get_data(fit, node, &data, &length)) {
302 puts("Cannot get image data/size\n");
303 return -ENOENT;
304 }
305 debug("Embedded data: dst=%lx, size=%lx\n", load_addr,
306 (unsigned long)length);
Simon Glass891d9e82021-03-07 17:35:14 -0700307 src = (void *)data; /* cast away const */
York Sun5fd13d92017-08-15 11:14:44 -0700308 }
309
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600310 if (CONFIG_IS_ENABLED(FIT_SIGNATURE)) {
311 printf("## Checking hash(es) for Image %s ... ",
312 fit_get_name(fit, node, NULL));
313 if (!fit_image_verify_with_data(fit, node, src, length))
314 return -EPERM;
315 puts("OK\n");
316 }
Ben Whittend154ca62018-06-07 11:37:27 +0100317
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600318 if (CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS))
319 board_fit_image_post_process(&src, &length);
Andre Przywara8baa3812017-04-26 01:32:36 +0100320
Simon Glass891d9e82021-03-07 17:35:14 -0700321 load_ptr = map_sysmem(load_addr, length);
Michal Simek975e7892018-07-24 15:05:00 +0200322 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
York Sun933f67a2017-09-15 08:21:13 -0700323 size = length;
Simon Glass891d9e82021-03-07 17:35:14 -0700324 if (gunzip(load_ptr, CONFIG_SYS_BOOTM_LEN, src, &size)) {
York Sun7264f292017-08-15 11:14:43 -0700325 puts("Uncompressing error\n");
326 return -EIO;
327 }
York Sun933f67a2017-09-15 08:21:13 -0700328 length = size;
York Sun7264f292017-08-15 11:14:43 -0700329 } else {
Simon Glass891d9e82021-03-07 17:35:14 -0700330 memcpy(load_ptr, src, length);
York Sun7264f292017-08-15 11:14:43 -0700331 }
Andre Przywara8baa3812017-04-26 01:32:36 +0100332
333 if (image_info) {
Michal Simekcaa7fc22020-09-03 11:24:28 +0200334 ulong entry_point;
335
Andre Przywara8baa3812017-04-26 01:32:36 +0100336 image_info->load_addr = load_addr;
337 image_info->size = length;
Michal Simekcaa7fc22020-09-03 11:24:28 +0200338
339 if (!fit_image_get_entry(fit, node, &entry_point))
340 image_info->entry_point = entry_point;
341 else
342 image_info->entry_point = FDT_ERROR;
Andre Przywara8baa3812017-04-26 01:32:36 +0100343 }
344
345 return 0;
346}
347
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600348static bool os_takes_devicetree(uint8_t os)
349{
350 switch (os) {
351 case IH_OS_U_BOOT:
352 return true;
353 case IH_OS_LINUX:
354 return IS_ENABLED(CONFIG_SPL_OS_BOOT);
355 default:
356 return false;
357 }
358}
359
Philipp Tomsichd8796162017-09-13 21:29:32 +0200360static int spl_fit_append_fdt(struct spl_image_info *spl_image,
361 struct spl_load_info *info, ulong sector,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600362 const struct spl_fit_info *ctx)
Philipp Tomsichd8796162017-09-13 21:29:32 +0200363{
364 struct spl_image_info image_info;
Michal Simek9d13b872019-10-22 16:39:11 +0200365 int node, ret = 0, index = 0;
Lukas Auerb83edfb2019-08-21 21:14:42 +0200366
367 /*
368 * Use the address following the image as target address for the
Marek Vasut5675ed72020-10-19 23:40:26 +0200369 * device tree.
Lukas Auerb83edfb2019-08-21 21:14:42 +0200370 */
Marek Vasut5675ed72020-10-19 23:40:26 +0200371 image_info.load_addr = spl_image->load_addr + spl_image->size;
Philipp Tomsichd8796162017-09-13 21:29:32 +0200372
373 /* Figure out which device tree the board wants to use */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600374 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index++);
Philipp Tomsichd8796162017-09-13 21:29:32 +0200375 if (node < 0) {
376 debug("%s: cannot find FDT node\n", __func__);
Lukas Auerb83edfb2019-08-21 21:14:42 +0200377
378 /*
379 * U-Boot did not find a device tree inside the FIT image. Use
380 * the U-Boot device tree instead.
381 */
382 if (gd->fdt_blob)
383 memcpy((void *)image_info.load_addr, gd->fdt_blob,
384 fdt_totalsize(gd->fdt_blob));
385 else
386 return node;
387 } else {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600388 ret = spl_load_fit_image(info, sector, ctx, node,
Lukas Auerb83edfb2019-08-21 21:14:42 +0200389 &image_info);
390 if (ret < 0)
391 return ret;
Philipp Tomsichd8796162017-09-13 21:29:32 +0200392 }
393
Philipp Tomsicha616c782017-09-13 21:29:34 +0200394 /* Make the load-address of the FDT available for the SPL framework */
Simon Glass891d9e82021-03-07 17:35:14 -0700395 spl_image->fdt_addr = map_sysmem(image_info.load_addr, 0);
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600396 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
397 return 0;
398
Michal Simek9d13b872019-10-22 16:39:11 +0200399 if (CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)) {
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200400 void *tmpbuffer = NULL;
401
Michal Simek9d13b872019-10-22 16:39:11 +0200402 for (; ; index++) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600403 node = spl_fit_get_image_node(ctx, FIT_FDT_PROP, index);
Jean-Jacques Hiblot24bf44c2019-10-22 16:39:14 +0200404 if (node == -E2BIG) {
Michal Simek9d13b872019-10-22 16:39:11 +0200405 debug("%s: No additional FDT node\n", __func__);
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200406 break;
Jean-Jacques Hiblot24bf44c2019-10-22 16:39:14 +0200407 } else if (node < 0) {
408 debug("%s: unable to find FDT node %d\n",
409 __func__, index);
410 continue;
Michal Simek9d13b872019-10-22 16:39:11 +0200411 }
Philipp Tomsicha616c782017-09-13 21:29:34 +0200412
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200413 if (!tmpbuffer) {
414 /*
415 * allocate memory to store the DT overlay
416 * before it is applied. It may not be used
417 * depending on how the overlay is stored, so
418 * don't fail yet if the allocation failed.
419 */
420 tmpbuffer = malloc(CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ);
421 if (!tmpbuffer)
422 debug("%s: unable to allocate space for overlays\n",
423 __func__);
424 }
425 image_info.load_addr = (ulong)tmpbuffer;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600426 ret = spl_load_fit_image(info, sector, ctx,
Michal Simek9d13b872019-10-22 16:39:11 +0200427 node, &image_info);
428 if (ret < 0)
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200429 break;
Michal Simek9d13b872019-10-22 16:39:11 +0200430
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200431 /* Make room in FDT for changes from the overlay */
432 ret = fdt_increase_size(spl_image->fdt_addr,
433 image_info.size);
434 if (ret < 0)
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200435 break;
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200436
Michal Simek9d13b872019-10-22 16:39:11 +0200437 ret = fdt_overlay_apply_verbose(spl_image->fdt_addr,
438 (void *)image_info.load_addr);
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200439 if (ret) {
440 pr_err("failed to apply DT overlay %s\n",
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600441 fit_get_name(ctx->fit, node, NULL));
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200442 break;
Jean-Jacques Hiblot19141d62019-10-22 16:39:15 +0200443 }
Michal Simek9d13b872019-10-22 16:39:11 +0200444
445 debug("%s: DT overlay %s applied\n", __func__,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600446 fit_get_name(ctx->fit, node, NULL));
Michal Simek9d13b872019-10-22 16:39:11 +0200447 }
Heinrich Schuchardt077e72c2020-04-20 12:44:01 +0200448 free(tmpbuffer);
Jean-Jacques Hiblotea376eb2019-10-22 16:39:13 +0200449 if (ret)
450 return ret;
Michal Simek9d13b872019-10-22 16:39:11 +0200451 }
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200452 /* Try to make space, so we can inject details on the loadables */
453 ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192);
454 if (ret < 0)
455 return ret;
Jean-Jacques Hiblot99329be2019-10-22 16:39:12 +0200456
Philipp Tomsicha616c782017-09-13 21:29:34 +0200457 return ret;
458}
459
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600460static int spl_fit_record_loadable(const struct spl_fit_info *ctx, int index,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200461 void *blob, struct spl_image_info *image)
462{
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100463 int ret = 0;
Jean-Jacques Hiblotc1648d02019-10-22 16:39:17 +0200464 const char *name;
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100465 int node;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200466
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600467 if (CONFIG_IS_ENABLED(FIT_IMAGE_TINY))
468 return 0;
469
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600470 ret = spl_fit_get_image_name(ctx, "loadables", index, &name);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200471 if (ret < 0)
472 return ret;
473
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600474 node = spl_fit_get_image_node(ctx, "loadables", index);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200475
476 ret = fdt_record_loadable(blob, index, name, image->load_addr,
477 image->size, image->entry_point,
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600478 fdt_getprop(ctx->fit, node, "type", NULL),
479 fdt_getprop(ctx->fit, node, "os", NULL));
Philipp Tomsichd8796162017-09-13 21:29:32 +0200480 return ret;
481}
482
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500483static int spl_fit_image_is_fpga(const void *fit, int node)
484{
485 const char *type;
486
487 if (!IS_ENABLED(CONFIG_SPL_FPGA))
488 return 0;
489
490 type = fdt_getprop(fit, node, FIT_TYPE_PROP, NULL);
491 if (!type)
492 return 0;
493
494 return !strcmp(type, "fpga");
495}
496
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100497static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os)
498{
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600499 if (!CONFIG_IS_ENABLED(FIT_IMAGE_TINY) || CONFIG_IS_ENABLED(OS_BOOT))
500 return fit_image_get_os(fit, noffset, os);
Samuel Hollandcf705532020-10-21 21:12:13 -0500501
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600502 const char *name = fdt_getprop(fit, noffset, FIT_OS_PROP, NULL);
Samuel Hollandcf705532020-10-21 21:12:13 -0500503 if (!name)
504 return -ENOENT;
505
506 /*
507 * We don't care what the type of the image actually is,
508 * only whether or not it is U-Boot. This saves some
509 * space by omitting the large table of OS types.
510 */
511 if (!strcmp(name, "u-boot"))
512 *os = IH_OS_U_BOOT;
513 else
514 *os = IH_OS_INVALID;
515
516 return 0;
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100517}
518
Andreas Dannenberge1eb6ad2019-06-04 17:55:46 -0500519/*
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500520 * The purpose of the FIT load buffer is to provide a memory location that is
521 * independent of the load address of any FIT component.
522 */
523static void *spl_get_fit_load_buffer(size_t size)
524{
525 void *buf;
526
527 buf = malloc(size);
528 if (!buf) {
529 pr_err("Could not get FIT buffer of %lu bytes\n", (ulong)size);
530 pr_err("\tcheck CONFIG_SYS_SPL_MALLOC_SIZE\n");
531 buf = spl_get_load_buffer(0, size);
532 }
533 return buf;
534}
535
536/*
Andreas Dannenberge1eb6ad2019-06-04 17:55:46 -0500537 * Weak default function to allow customizing SPL fit loading for load-only
538 * use cases by allowing to skip the parsing/processing of the FIT contents
539 * (so that this can be done separately in a more customized fashion)
540 */
541__weak bool spl_load_simple_fit_skip_processing(void)
542{
543 return false;
544}
545
Alexandru Gagniucd8a39512021-03-29 12:05:13 -0500546static void warn_deprecated(const char *msg)
547{
548 printf("DEPRECATED: %s\n", msg);
549 printf("\tSee doc/uImage.FIT/source_file_format.txt\n");
550}
551
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500552static int spl_fit_upload_fpga(struct spl_fit_info *ctx, int node,
553 struct spl_image_info *fpga_image)
554{
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500555 const char *compatible;
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500556 int ret;
557
558 debug("FPGA bitstream at: %x, size: %x\n",
559 (u32)fpga_image->load_addr, fpga_image->size);
560
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500561 compatible = fdt_getprop(ctx->fit, node, "compatible", NULL);
562 if (!compatible)
563 warn_deprecated("'fpga' image without 'compatible' property");
564 else if (strcmp(compatible, "u-boot,fpga-legacy"))
565 printf("Ignoring compatible = %s property\n", compatible);
566
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500567 ret = fpga_load(0, (void *)fpga_image->load_addr, fpga_image->size,
568 BIT_FULL);
569 if (ret) {
570 printf("%s: Cannot load the image to the FPGA\n", __func__);
571 return ret;
572 }
573
574 puts("FPGA image loaded from FIT\n");
575
576 return 0;
577}
578
579static int spl_fit_load_fpga(struct spl_fit_info *ctx,
580 struct spl_load_info *info, ulong sector)
581{
582 int node, ret;
583
584 struct spl_image_info fpga_image = {
585 .load_addr = 0,
586 };
587
588 node = spl_fit_get_image_node(ctx, "fpga", 0);
589 if (node < 0)
590 return node;
591
Alexandru Gagniucd8a39512021-03-29 12:05:13 -0500592 warn_deprecated("'fpga' property in config node. Use 'loadables'");
593
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500594 /* Load the image and set up the fpga_image structure */
595 ret = spl_load_fit_image(info, sector, ctx, node, &fpga_image);
596 if (ret) {
597 printf("%s: Cannot load the FPGA: %i\n", __func__, ret);
598 return ret;
599 }
600
601 return spl_fit_upload_fpga(ctx, node, &fpga_image);
602}
603
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600604static int spl_simple_fit_read(struct spl_fit_info *ctx,
605 struct spl_load_info *info, ulong sector,
606 const void *fit_header)
Simon Glassf1dcee52016-02-22 22:55:56 -0700607{
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600608 unsigned long count, size;
Simon Glassf1dcee52016-02-22 22:55:56 -0700609 int sectors;
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600610 void *buf;
Simon Glassf1dcee52016-02-22 22:55:56 -0700611
612 /*
York Sunc8bc3c02017-08-15 11:14:45 -0700613 * For FIT with external data, figure out where the external images
614 * start. This is the base for the data-offset properties in each
615 * image.
Simon Glassf1dcee52016-02-22 22:55:56 -0700616 */
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600617 size = ALIGN(fdt_totalsize(fit_header), 4);
Ye Lie246bfc2018-11-17 09:10:25 +0000618 size = board_spl_fit_size_align(size);
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600619 ctx->ext_data_offset = ALIGN(size, 4);
Simon Glassf1dcee52016-02-22 22:55:56 -0700620
621 /*
622 * So far we only have one block of data from the FIT. Read the entire
Alexandru Gagniuc03f1f782020-10-21 18:32:58 -0500623 * thing, including that first block.
York Sunc8bc3c02017-08-15 11:14:45 -0700624 *
625 * For FIT with data embedded, data is loaded as part of FIT image.
626 * For FIT with external data, data is not loaded in this step.
Simon Glassf1dcee52016-02-22 22:55:56 -0700627 */
Lokesh Vutlaeafd5412016-05-24 10:34:38 +0530628 sectors = get_aligned_image_size(info, size, 0);
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600629 buf = spl_get_fit_load_buffer(sectors * info->bl_len);
630
631 count = info->read(info, sector, sectors, buf);
632 ctx->fit = buf;
Ye Lie246bfc2018-11-17 09:10:25 +0000633 debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu, size=0x%lx\n",
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600634 sector, sectors, buf, count, size);
Ye Lie246bfc2018-11-17 09:10:25 +0000635
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600636 return (count == 0) ? -EIO : 0;
637}
Simon Glassf1dcee52016-02-22 22:55:56 -0700638
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600639static int spl_simple_fit_parse(struct spl_fit_info *ctx)
640{
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -0600641 /* Find the correct subnode under "/configurations" */
642 ctx->conf_node = fit_find_config_node(ctx->fit);
643 if (ctx->conf_node < 0)
644 return -EINVAL;
Philippe Reynes7d5b1bf2020-10-29 18:50:29 +0100645
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -0600646 if (IS_ENABLED(CONFIG_SPL_FIT_SIGNATURE)) {
Philippe Reynes7d5b1bf2020-10-29 18:50:29 +0100647 printf("## Checking hash(es) for config %s ... ",
Alexandru Gagniuc9e9aa0b2021-01-20 10:46:53 -0600648 fit_get_name(ctx->fit, ctx->conf_node, NULL));
649 if (fit_config_verify(ctx->fit, ctx->conf_node))
Philippe Reynes7d5b1bf2020-10-29 18:50:29 +0100650 return -EPERM;
651 puts("OK\n");
652 }
653
Andre Przywara736806f2017-04-26 01:32:34 +0100654 /* find the node holding the images information */
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600655 ctx->images_node = fdt_path_offset(ctx->fit, FIT_IMAGES_PATH);
656 if (ctx->images_node < 0) {
657 debug("%s: Cannot find /images node: %d\n", __func__,
658 ctx->images_node);
659 return -EINVAL;
Simon Glassf1dcee52016-02-22 22:55:56 -0700660 }
Andre Przywara736806f2017-04-26 01:32:34 +0100661
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600662 return 0;
663}
664
665int spl_load_simple_fit(struct spl_image_info *spl_image,
666 struct spl_load_info *info, ulong sector, void *fit)
667{
668 struct spl_image_info image_info;
669 struct spl_fit_info ctx;
670 int node = -1;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600671 int ret;
Alexandru Gagniuc917fa362021-01-20 10:46:50 -0600672 int index = 0;
673 int firmware_node;
674
675 ret = spl_simple_fit_read(&ctx, info, sector, fit);
676 if (ret < 0)
677 return ret;
678
679 /* skip further processing if requested to enable load-only use cases */
680 if (spl_load_simple_fit_skip_processing())
681 return 0;
682
683 ret = spl_simple_fit_parse(&ctx);
684 if (ret < 0)
685 return ret;
686
Alexandru Gagniuc55e7a1a2021-03-29 12:05:12 -0500687 if (IS_ENABLED(CONFIG_SPL_FPGA))
688 spl_fit_load_fpga(&ctx, info, sector);
Marek Vasut26a64222018-05-12 22:25:28 +0200689
Philipp Tomsichd8796162017-09-13 21:29:32 +0200690 /*
691 * Find the U-Boot image using the following search order:
692 * - start at 'firmware' (e.g. an ARM Trusted Firmware)
693 * - fall back 'kernel' (e.g. a Falcon-mode OS boot
694 * - fall back to using the first 'loadables' entry
695 */
York Sunc8bc3c02017-08-15 11:14:45 -0700696 if (node < 0)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600697 node = spl_fit_get_image_node(&ctx, FIT_FIRMWARE_PROP, 0);
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600698
699 if (node < 0 && IS_ENABLED(CONFIG_SPL_OS_BOOT))
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600700 node = spl_fit_get_image_node(&ctx, FIT_KERNEL_PROP, 0);
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600701
Simon Glassf1dcee52016-02-22 22:55:56 -0700702 if (node < 0) {
Andre Przywara736806f2017-04-26 01:32:34 +0100703 debug("could not find firmware image, trying loadables...\n");
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600704 node = spl_fit_get_image_node(&ctx, "loadables", 0);
Andre Przywara411cf322017-04-26 01:32:37 +0100705 /*
706 * If we pick the U-Boot image from "loadables", start at
707 * the second image when later loading additional images.
708 */
709 index = 1;
Andre Przywara736806f2017-04-26 01:32:34 +0100710 }
711 if (node < 0) {
712 debug("%s: Cannot find u-boot image node: %d\n",
713 __func__, node);
Simon Glassf1dcee52016-02-22 22:55:56 -0700714 return -1;
715 }
716
Andre Przywara8baa3812017-04-26 01:32:36 +0100717 /* Load the image and set up the spl_image structure */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600718 ret = spl_load_fit_image(info, sector, &ctx, node, spl_image);
Andre Przywara8baa3812017-04-26 01:32:36 +0100719 if (ret)
720 return ret;
721
Philipp Tomsichd8796162017-09-13 21:29:32 +0200722 /*
723 * For backward compatibility, we treat the first node that is
724 * as a U-Boot image, if no OS-type has been declared.
725 */
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600726 if (!spl_fit_image_get_os(ctx.fit, node, &spl_image->os))
York Sunc8bc3c02017-08-15 11:14:45 -0700727 debug("Image OS is %s\n", genimg_get_os_name(spl_image->os));
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600728 else if (!IS_ENABLED(CONFIG_SPL_OS_BOOT))
Philipp Tomsichd8796162017-09-13 21:29:32 +0200729 spl_image->os = IH_OS_U_BOOT;
Simon Glassf1dcee52016-02-22 22:55:56 -0700730
Philipp Tomsichd8796162017-09-13 21:29:32 +0200731 /*
732 * Booting a next-stage U-Boot may require us to append the FDT.
733 * We allow this to fail, as the U-Boot image might embed its FDT.
734 */
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600735 if (os_takes_devicetree(spl_image->os)) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600736 ret = spl_fit_append_fdt(spl_image, info, sector, &ctx);
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600737 if (ret < 0 && spl_image->os != IH_OS_U_BOOT)
Dario Binacchi585b4682020-05-27 13:56:19 +0200738 return ret;
739 }
Simon Glassf1dcee52016-02-22 22:55:56 -0700740
Jean-Jacques Hiblot6b8b98d2019-10-22 16:39:10 +0200741 firmware_node = node;
Andre Przywara411cf322017-04-26 01:32:37 +0100742 /* Now check if there are more images for us to load */
743 for (; ; index++) {
Philipp Tomsichd8796162017-09-13 21:29:32 +0200744 uint8_t os_type = IH_OS_INVALID;
745
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600746 node = spl_fit_get_image_node(&ctx, "loadables", index);
Andre Przywara411cf322017-04-26 01:32:37 +0100747 if (node < 0)
748 break;
749
Jean-Jacques Hiblot6b8b98d2019-10-22 16:39:10 +0200750 /*
751 * if the firmware is also a loadable, skip it because
752 * it already has been loaded. This is typically the case with
753 * u-boot.img generated by mkimage.
754 */
755 if (firmware_node == node)
756 continue;
757
Alexandru Gagniucf0a6ec32021-03-29 12:05:10 -0500758 image_info.load_addr = 0;
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600759 ret = spl_load_fit_image(info, sector, &ctx, node, &image_info);
Philippe Reynesc61b2bf2020-11-24 16:15:05 +0100760 if (ret < 0) {
761 printf("%s: can't load image loadables index %d (ret = %d)\n",
762 __func__, index, ret);
763 return ret;
764 }
Andre Przywara411cf322017-04-26 01:32:37 +0100765
Alexandru Gagniuc35f4f8e2021-03-29 12:05:14 -0500766 if (spl_fit_image_is_fpga(ctx.fit, node))
767 spl_fit_upload_fpga(&ctx, node, &image_info);
768
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600769 if (!spl_fit_image_get_os(ctx.fit, node, &os_type))
Philipp Tomsichd8796162017-09-13 21:29:32 +0200770 debug("Loadable is %s\n", genimg_get_os_name(os_type));
771
Alexandru Gagniuc71551052021-01-20 10:46:56 -0600772 if (os_takes_devicetree(os_type)) {
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600773 spl_fit_append_fdt(&image_info, info, sector, &ctx);
Philipp Tomsicha616c782017-09-13 21:29:34 +0200774 spl_image->fdt_addr = image_info.fdt_addr;
775 }
Philipp Tomsichd8796162017-09-13 21:29:32 +0200776
Andre Przywara411cf322017-04-26 01:32:37 +0100777 /*
778 * If the "firmware" image did not provide an entry point,
779 * use the first valid entry point from the loadables.
780 */
781 if (spl_image->entry_point == FDT_ERROR &&
782 image_info.entry_point != FDT_ERROR)
783 spl_image->entry_point = image_info.entry_point;
Philipp Tomsicha616c782017-09-13 21:29:34 +0200784
785 /* Record our loadables into the FDT */
786 if (spl_image->fdt_addr)
Alexandru Gagniuc3dc20792021-01-20 10:46:51 -0600787 spl_fit_record_loadable(&ctx, index,
Philipp Tomsicha616c782017-09-13 21:29:34 +0200788 spl_image->fdt_addr,
789 &image_info);
Andre Przywara411cf322017-04-26 01:32:37 +0100790 }
791
792 /*
793 * If a platform does not provide CONFIG_SYS_UBOOT_START, U-Boot's
794 * Makefile will set it to 0 and it will end up as the entry point
795 * here. What it actually means is: use the load address.
796 */
797 if (spl_image->entry_point == FDT_ERROR || spl_image->entry_point == 0)
798 spl_image->entry_point = spl_image->load_addr;
799
Ye Lie246bfc2018-11-17 09:10:25 +0000800 spl_image->flags |= SPL_FIT_FOUND;
801
Alexandru Gagniucaeedeae2021-01-20 10:46:55 -0600802 if (IS_ENABLED(CONFIG_IMX_HAB))
803 board_spl_fit_post_load(ctx.fit);
Ye Lie246bfc2018-11-17 09:10:25 +0000804
Andre Przywara411cf322017-04-26 01:32:37 +0100805 return 0;
Simon Glassf1dcee52016-02-22 22:55:56 -0700806}