Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016 Google, Inc |
| 4 | * Written by Simon Glass <sjg@chromium.org> |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <errno.h> |
Michal Simek | f707b5a | 2018-07-18 14:33:15 +0200 | [diff] [blame] | 9 | #include <fpga.h> |
Simon Glass | 1a974af | 2019-08-01 09:46:36 -0600 | [diff] [blame] | 10 | #include <gzip.h> |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 11 | #include <image.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Jean-Jacques Hiblot | 0da5815 | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 13 | #include <malloc.h> |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 14 | #include <spl.h> |
Simon Glass | 458b66a | 2020-11-05 06:32:05 -0700 | [diff] [blame] | 15 | #include <sysinfo.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 16 | #include <asm/cache.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 17 | #include <asm/global_data.h> |
Jean-Jacques Hiblot | 0da5815 | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 18 | #include <linux/libfdt.h> |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 19 | |
Lukas Auer | 80afee7 | 2019-08-21 21:14:42 +0200 | [diff] [blame] | 20 | DECLARE_GLOBAL_DATA_PTR; |
| 21 | |
Jean-Jacques Hiblot | 0da5815 | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 22 | #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 Sun | a6945fe | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 26 | #ifndef CONFIG_SYS_BOOTM_LEN |
| 27 | #define CONFIG_SYS_BOOTM_LEN (64 << 20) |
| 28 | #endif |
| 29 | |
Ye Li | 9d5b0f4 | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 30 | __weak void board_spl_fit_post_load(ulong load_addr, size_t length) |
| 31 | { |
| 32 | } |
| 33 | |
| 34 | __weak ulong board_spl_fit_size_align(ulong size) |
| 35 | { |
| 36 | return size; |
| 37 | } |
| 38 | |
Jean-Jacques Hiblot | 9037b7f | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 39 | static int find_node_from_desc(const void *fit, int node, const char *str) |
| 40 | { |
| 41 | int child; |
| 42 | |
| 43 | if (node < 0) |
| 44 | return -EINVAL; |
| 45 | |
| 46 | /* iterate the FIT nodes and find a matching description */ |
| 47 | for (child = fdt_first_subnode(fit, node); child >= 0; |
| 48 | child = fdt_next_subnode(fit, child)) { |
| 49 | int len; |
| 50 | const char *desc = fdt_getprop(fit, child, "description", &len); |
| 51 | |
| 52 | if (!desc) |
| 53 | continue; |
| 54 | |
| 55 | if (!strcmp(desc, str)) |
| 56 | return child; |
| 57 | } |
| 58 | |
| 59 | return -ENOENT; |
| 60 | } |
| 61 | |
Andre Przywara | 525e9c9 | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 62 | /** |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 63 | * spl_fit_get_image_name(): By using the matching configuration subnode, |
Andre Przywara | 525e9c9 | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 64 | * retrieve the name of an image, specified by a property name and an index |
| 65 | * into that. |
| 66 | * @fit: Pointer to the FDT blob. |
| 67 | * @images: Offset of the /images subnode. |
| 68 | * @type: Name of the property within the configuration subnode. |
| 69 | * @index: Index into the list of strings in this property. |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 70 | * @outname: Name of the image |
Andre Przywara | 525e9c9 | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 71 | * |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 72 | * Return: 0 on success, or a negative error number |
Andre Przywara | 525e9c9 | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 73 | */ |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 74 | static int spl_fit_get_image_name(const void *fit, int images, |
| 75 | const char *type, int index, |
Jean-Jacques Hiblot | 64e82dc | 2019-10-22 16:39:17 +0200 | [diff] [blame] | 76 | const char **outname) |
Andre Przywara | 1e329b6 | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 77 | { |
Simon Glass | 458b66a | 2020-11-05 06:32:05 -0700 | [diff] [blame] | 78 | struct udevice *sysinfo; |
Andre Przywara | 1e329b6 | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 79 | const char *name, *str; |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 80 | __maybe_unused int node; |
| 81 | int conf_node; |
Andre Przywara | 1e329b6 | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 82 | int len, i; |
Jean-Jacques Hiblot | 9037b7f | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 83 | bool found = true; |
Andre Przywara | 1e329b6 | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 84 | |
Cooper Jr., Franklin | e679240 | 2017-06-16 17:25:05 -0500 | [diff] [blame] | 85 | conf_node = fit_find_config_node(fit); |
Andre Przywara | 1e329b6 | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 86 | if (conf_node < 0) { |
| 87 | #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT |
| 88 | printf("No matching DT out of these options:\n"); |
| 89 | for (node = fdt_first_subnode(fit, conf_node); |
| 90 | node >= 0; |
| 91 | node = fdt_next_subnode(fit, node)) { |
| 92 | name = fdt_getprop(fit, node, "description", &len); |
| 93 | printf(" %s\n", name); |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 94 | } |
Andre Przywara | 1e329b6 | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 95 | #endif |
| 96 | return conf_node; |
| 97 | } |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 98 | |
Andre Przywara | 1e329b6 | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 99 | name = fdt_getprop(fit, conf_node, type, &len); |
| 100 | if (!name) { |
| 101 | debug("cannot find property '%s': %d\n", type, len); |
| 102 | return -EINVAL; |
| 103 | } |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 104 | |
Andre Przywara | 1e329b6 | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 105 | str = name; |
| 106 | for (i = 0; i < index; i++) { |
| 107 | str = strchr(str, '\0') + 1; |
| 108 | if (!str || (str - name >= len)) { |
Jean-Jacques Hiblot | 9037b7f | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 109 | found = false; |
| 110 | break; |
Andre Przywara | 1e329b6 | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 111 | } |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 112 | } |
| 113 | |
Simon Glass | 458b66a | 2020-11-05 06:32:05 -0700 | [diff] [blame] | 114 | if (!found && CONFIG_IS_ENABLED(SYSINFO) && !sysinfo_get(&sysinfo)) { |
Jean-Jacques Hiblot | 9037b7f | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 115 | int rc; |
| 116 | /* |
Simon Glass | 458b66a | 2020-11-05 06:32:05 -0700 | [diff] [blame] | 117 | * no string in the property for this index. Check if the |
| 118 | * sysinfo-level code can supply one. |
Jean-Jacques Hiblot | 9037b7f | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 119 | */ |
Simon Glass | 458b66a | 2020-11-05 06:32:05 -0700 | [diff] [blame] | 120 | rc = sysinfo_get_fit_loadable(sysinfo, index - i - 1, type, |
| 121 | &str); |
Jean-Jacques Hiblot | 9037b7f | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 122 | if (rc && rc != -ENOENT) |
| 123 | return rc; |
| 124 | |
| 125 | if (!rc) { |
| 126 | /* |
Simon Glass | 458b66a | 2020-11-05 06:32:05 -0700 | [diff] [blame] | 127 | * The sysinfo provided a name for a loadable. |
Jean-Jacques Hiblot | 9037b7f | 2019-10-22 16:39:22 +0200 | [diff] [blame] | 128 | * Try to match it against the description properties |
| 129 | * first. If no matching node is found, use it as a |
| 130 | * node name. |
| 131 | */ |
| 132 | int node; |
| 133 | int images = fdt_path_offset(fit, FIT_IMAGES_PATH); |
| 134 | |
| 135 | node = find_node_from_desc(fit, images, str); |
| 136 | if (node > 0) |
| 137 | str = fdt_get_name(fit, node, NULL); |
| 138 | |
| 139 | found = true; |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | if (!found) { |
| 144 | debug("no string for index %d\n", index); |
| 145 | return -E2BIG; |
| 146 | } |
| 147 | |
| 148 | *outname = str; |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 149 | return 0; |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * spl_fit_get_image_node(): By using the matching configuration subnode, |
| 154 | * retrieve the name of an image, specified by a property name and an index |
| 155 | * into that. |
| 156 | * @fit: Pointer to the FDT blob. |
| 157 | * @images: Offset of the /images subnode. |
| 158 | * @type: Name of the property within the configuration subnode. |
| 159 | * @index: Index into the list of strings in this property. |
| 160 | * |
| 161 | * Return: the node offset of the respective image node or a negative |
| 162 | * error number. |
| 163 | */ |
| 164 | static int spl_fit_get_image_node(const void *fit, int images, |
| 165 | const char *type, int index) |
| 166 | { |
Jean-Jacques Hiblot | 64e82dc | 2019-10-22 16:39:17 +0200 | [diff] [blame] | 167 | const char *str; |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 168 | int err; |
| 169 | int node; |
| 170 | |
| 171 | err = spl_fit_get_image_name(fit, images, type, index, &str); |
| 172 | if (err) |
| 173 | return err; |
| 174 | |
Andre Przywara | 1e329b6 | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 175 | debug("%s: '%s'\n", type, str); |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 176 | |
Andre Przywara | 1e329b6 | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 177 | node = fdt_subnode_offset(fit, images, str); |
| 178 | if (node < 0) { |
Jean-Jacques Hiblot | 9443a73 | 2019-10-22 16:39:15 +0200 | [diff] [blame] | 179 | pr_err("cannot find image node '%s': %d\n", str, node); |
Andre Przywara | 1e329b6 | 2017-04-26 01:32:33 +0100 | [diff] [blame] | 180 | return -EINVAL; |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 181 | } |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 182 | |
Andre Przywara | 525e9c9 | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 183 | return node; |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 184 | } |
| 185 | |
Lokesh Vutla | f62cef1 | 2016-05-24 10:34:38 +0530 | [diff] [blame] | 186 | static int get_aligned_image_offset(struct spl_load_info *info, int offset) |
| 187 | { |
| 188 | /* |
| 189 | * If it is a FS read, get the first address before offset which is |
| 190 | * aligned to ARCH_DMA_MINALIGN. If it is raw read return the |
| 191 | * block number to which offset belongs. |
| 192 | */ |
| 193 | if (info->filename) |
| 194 | return offset & ~(ARCH_DMA_MINALIGN - 1); |
| 195 | |
| 196 | return offset / info->bl_len; |
| 197 | } |
| 198 | |
| 199 | static int get_aligned_image_overhead(struct spl_load_info *info, int offset) |
| 200 | { |
| 201 | /* |
| 202 | * If it is a FS read, get the difference between the offset and |
| 203 | * the first address before offset which is aligned to |
| 204 | * ARCH_DMA_MINALIGN. If it is raw read return the offset within the |
| 205 | * block. |
| 206 | */ |
| 207 | if (info->filename) |
| 208 | return offset & (ARCH_DMA_MINALIGN - 1); |
| 209 | |
| 210 | return offset % info->bl_len; |
| 211 | } |
| 212 | |
| 213 | static int get_aligned_image_size(struct spl_load_info *info, int data_size, |
| 214 | int offset) |
| 215 | { |
Lokesh Vutla | f0531a6 | 2016-07-19 14:56:14 +0530 | [diff] [blame] | 216 | data_size = data_size + get_aligned_image_overhead(info, offset); |
| 217 | |
Lokesh Vutla | f62cef1 | 2016-05-24 10:34:38 +0530 | [diff] [blame] | 218 | if (info->filename) |
Lokesh Vutla | f0531a6 | 2016-07-19 14:56:14 +0530 | [diff] [blame] | 219 | return data_size; |
Lokesh Vutla | f62cef1 | 2016-05-24 10:34:38 +0530 | [diff] [blame] | 220 | |
| 221 | return (data_size + info->bl_len - 1) / info->bl_len; |
| 222 | } |
| 223 | |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 224 | /** |
| 225 | * spl_load_fit_image(): load the image described in a certain FIT node |
| 226 | * @info: points to information about the device to load data from |
| 227 | * @sector: the start sector of the FIT image on the device |
| 228 | * @fit: points to the flattened device tree blob describing the FIT |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 229 | * image |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 230 | * @base_offset: the beginning of the data area containing the actual |
| 231 | * image data, relative to the beginning of the FIT |
| 232 | * @node: offset of the DT node describing the image to load (relative |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 233 | * to @fit) |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 234 | * @image_info: will be filled with information about the loaded image |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 235 | * If the FIT node does not contain a "load" (address) property, |
| 236 | * the image gets loaded to the address pointed to by the |
| 237 | * load_addr member in this struct. |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 238 | * |
| 239 | * Return: 0 on success or a negative error number. |
| 240 | */ |
| 241 | static int spl_load_fit_image(struct spl_load_info *info, ulong sector, |
| 242 | void *fit, ulong base_offset, int node, |
| 243 | struct spl_image_info *image_info) |
| 244 | { |
Michal Simek | f707b5a | 2018-07-18 14:33:15 +0200 | [diff] [blame] | 245 | int offset; |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 246 | size_t length; |
York Sun | adf99fa | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 247 | int len; |
York Sun | 25d65f1 | 2017-09-15 08:21:13 -0700 | [diff] [blame] | 248 | ulong size; |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 249 | ulong load_addr, load_ptr; |
| 250 | void *src; |
| 251 | ulong overhead; |
| 252 | int nr_sectors; |
| 253 | int align_len = ARCH_DMA_MINALIGN - 1; |
York Sun | a6945fe | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 254 | uint8_t image_comp = -1, type = -1; |
York Sun | adf99fa | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 255 | const void *data; |
Peng Fan | 8876c7e | 2017-12-05 13:20:59 +0800 | [diff] [blame] | 256 | bool external_data = false; |
York Sun | a6945fe | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 257 | |
Michal Simek | 1aab114 | 2020-09-09 14:41:56 +0200 | [diff] [blame] | 258 | if (IS_ENABLED(CONFIG_SPL_FPGA) || |
Marek Vasut | 72bc5d5 | 2018-06-01 23:19:29 +0200 | [diff] [blame] | 259 | (IS_ENABLED(CONFIG_SPL_OS_BOOT) && IS_ENABLED(CONFIG_SPL_GZIP))) { |
| 260 | if (fit_image_get_type(fit, node, &type)) |
| 261 | puts("Cannot get image type.\n"); |
| 262 | else |
| 263 | debug("%s ", genimg_get_type_name(type)); |
| 264 | } |
| 265 | |
Klaus H. Sorensen | 4a9a042 | 2019-12-11 11:03:33 +0000 | [diff] [blame] | 266 | if (IS_ENABLED(CONFIG_SPL_GZIP)) { |
| 267 | fit_image_get_comp(fit, node, &image_comp); |
| 268 | debug("%s ", genimg_get_comp_name(image_comp)); |
York Sun | a6945fe | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 269 | } |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 270 | |
York Sun | adf99fa | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 271 | if (fit_image_get_load(fit, node, &load_addr)) |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 272 | load_addr = image_info->load_addr; |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 273 | |
Peng Fan | 8876c7e | 2017-12-05 13:20:59 +0800 | [diff] [blame] | 274 | if (!fit_image_get_data_position(fit, node, &offset)) { |
| 275 | external_data = true; |
| 276 | } else if (!fit_image_get_data_offset(fit, node, &offset)) { |
York Sun | adf99fa | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 277 | offset += base_offset; |
Peng Fan | 8876c7e | 2017-12-05 13:20:59 +0800 | [diff] [blame] | 278 | external_data = true; |
| 279 | } |
| 280 | |
| 281 | if (external_data) { |
| 282 | /* External data */ |
York Sun | adf99fa | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 283 | if (fit_image_get_data_size(fit, node, &len)) |
| 284 | return -ENOENT; |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 285 | |
York Sun | adf99fa | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 286 | load_ptr = (load_addr + align_len) & ~align_len; |
| 287 | length = len; |
| 288 | |
| 289 | overhead = get_aligned_image_overhead(info, offset); |
| 290 | nr_sectors = get_aligned_image_size(info, length, offset); |
| 291 | |
Michal Simek | f707b5a | 2018-07-18 14:33:15 +0200 | [diff] [blame] | 292 | if (info->read(info, |
| 293 | sector + get_aligned_image_offset(info, offset), |
York Sun | adf99fa | 2017-08-15 11:14:44 -0700 | [diff] [blame] | 294 | nr_sectors, (void *)load_ptr) != nr_sectors) |
| 295 | return -EIO; |
| 296 | |
| 297 | debug("External data: dst=%lx, offset=%x, size=%lx\n", |
| 298 | load_ptr, offset, (unsigned long)length); |
| 299 | src = (void *)load_ptr + overhead; |
| 300 | } else { |
| 301 | /* Embedded data */ |
| 302 | if (fit_image_get_data(fit, node, &data, &length)) { |
| 303 | puts("Cannot get image data/size\n"); |
| 304 | return -ENOENT; |
| 305 | } |
| 306 | debug("Embedded data: dst=%lx, size=%lx\n", load_addr, |
| 307 | (unsigned long)length); |
| 308 | src = (void *)data; |
| 309 | } |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 310 | |
Ben Whitten | 54a9119 | 2018-06-07 11:37:27 +0100 | [diff] [blame] | 311 | #ifdef CONFIG_SPL_FIT_SIGNATURE |
| 312 | printf("## Checking hash(es) for Image %s ... ", |
| 313 | fit_get_name(fit, node, NULL)); |
| 314 | if (!fit_image_verify_with_data(fit, node, |
| 315 | src, length)) |
| 316 | return -EPERM; |
| 317 | puts("OK\n"); |
| 318 | #endif |
| 319 | |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 320 | #ifdef CONFIG_SPL_FIT_IMAGE_POST_PROCESS |
| 321 | board_fit_image_post_process(&src, &length); |
| 322 | #endif |
| 323 | |
Michal Simek | f354c3f | 2018-07-24 15:05:00 +0200 | [diff] [blame] | 324 | if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) { |
York Sun | 25d65f1 | 2017-09-15 08:21:13 -0700 | [diff] [blame] | 325 | size = length; |
York Sun | a6945fe | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 326 | if (gunzip((void *)load_addr, CONFIG_SYS_BOOTM_LEN, |
York Sun | 25d65f1 | 2017-09-15 08:21:13 -0700 | [diff] [blame] | 327 | src, &size)) { |
York Sun | a6945fe | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 328 | puts("Uncompressing error\n"); |
| 329 | return -EIO; |
| 330 | } |
York Sun | 25d65f1 | 2017-09-15 08:21:13 -0700 | [diff] [blame] | 331 | length = size; |
York Sun | a6945fe | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 332 | } else { |
| 333 | memcpy((void *)load_addr, src, length); |
| 334 | } |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 335 | |
| 336 | if (image_info) { |
Michal Simek | 9e64a55 | 2020-09-03 11:24:28 +0200 | [diff] [blame] | 337 | ulong entry_point; |
| 338 | |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 339 | image_info->load_addr = load_addr; |
| 340 | image_info->size = length; |
Michal Simek | 9e64a55 | 2020-09-03 11:24:28 +0200 | [diff] [blame] | 341 | |
| 342 | if (!fit_image_get_entry(fit, node, &entry_point)) |
| 343 | image_info->entry_point = entry_point; |
| 344 | else |
| 345 | image_info->entry_point = FDT_ERROR; |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | return 0; |
| 349 | } |
| 350 | |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 351 | static int spl_fit_append_fdt(struct spl_image_info *spl_image, |
| 352 | struct spl_load_info *info, ulong sector, |
| 353 | void *fit, int images, ulong base_offset) |
| 354 | { |
| 355 | struct spl_image_info image_info; |
Michal Simek | bf703df | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 356 | int node, ret = 0, index = 0; |
Lukas Auer | 80afee7 | 2019-08-21 21:14:42 +0200 | [diff] [blame] | 357 | |
| 358 | /* |
| 359 | * Use the address following the image as target address for the |
Marek Vasut | c27cbe8 | 2020-10-19 23:40:26 +0200 | [diff] [blame] | 360 | * device tree. |
Lukas Auer | 80afee7 | 2019-08-21 21:14:42 +0200 | [diff] [blame] | 361 | */ |
Marek Vasut | c27cbe8 | 2020-10-19 23:40:26 +0200 | [diff] [blame] | 362 | image_info.load_addr = spl_image->load_addr + spl_image->size; |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 363 | |
| 364 | /* Figure out which device tree the board wants to use */ |
Michal Simek | bf703df | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 365 | node = spl_fit_get_image_node(fit, images, FIT_FDT_PROP, index++); |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 366 | if (node < 0) { |
| 367 | debug("%s: cannot find FDT node\n", __func__); |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 368 | |
Lukas Auer | 80afee7 | 2019-08-21 21:14:42 +0200 | [diff] [blame] | 369 | /* |
| 370 | * U-Boot did not find a device tree inside the FIT image. Use |
| 371 | * the U-Boot device tree instead. |
| 372 | */ |
| 373 | if (gd->fdt_blob) |
| 374 | memcpy((void *)image_info.load_addr, gd->fdt_blob, |
| 375 | fdt_totalsize(gd->fdt_blob)); |
| 376 | else |
| 377 | return node; |
| 378 | } else { |
| 379 | ret = spl_load_fit_image(info, sector, fit, base_offset, node, |
| 380 | &image_info); |
| 381 | if (ret < 0) |
| 382 | return ret; |
| 383 | } |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 384 | |
| 385 | /* Make the load-address of the FDT available for the SPL framework */ |
| 386 | spl_image->fdt_addr = (void *)image_info.load_addr; |
Philipp Tomsich | 4faa011 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 387 | #if !CONFIG_IS_ENABLED(FIT_IMAGE_TINY) |
Michal Simek | bf703df | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 388 | if (CONFIG_IS_ENABLED(LOAD_FIT_APPLY_OVERLAY)) { |
Jean-Jacques Hiblot | 0da5815 | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 389 | void *tmpbuffer = NULL; |
| 390 | |
Michal Simek | bf703df | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 391 | for (; ; index++) { |
| 392 | node = spl_fit_get_image_node(fit, images, FIT_FDT_PROP, |
| 393 | index); |
Jean-Jacques Hiblot | c6ab6a1 | 2019-10-22 16:39:14 +0200 | [diff] [blame] | 394 | if (node == -E2BIG) { |
Michal Simek | bf703df | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 395 | debug("%s: No additional FDT node\n", __func__); |
Jean-Jacques Hiblot | 0da5815 | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 396 | break; |
Jean-Jacques Hiblot | c6ab6a1 | 2019-10-22 16:39:14 +0200 | [diff] [blame] | 397 | } else if (node < 0) { |
| 398 | debug("%s: unable to find FDT node %d\n", |
| 399 | __func__, index); |
| 400 | continue; |
Michal Simek | bf703df | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 401 | } |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 402 | |
Jean-Jacques Hiblot | 0da5815 | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 403 | if (!tmpbuffer) { |
| 404 | /* |
| 405 | * allocate memory to store the DT overlay |
| 406 | * before it is applied. It may not be used |
| 407 | * depending on how the overlay is stored, so |
| 408 | * don't fail yet if the allocation failed. |
| 409 | */ |
| 410 | tmpbuffer = malloc(CONFIG_SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ); |
| 411 | if (!tmpbuffer) |
| 412 | debug("%s: unable to allocate space for overlays\n", |
| 413 | __func__); |
| 414 | } |
| 415 | image_info.load_addr = (ulong)tmpbuffer; |
Michal Simek | bf703df | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 416 | ret = spl_load_fit_image(info, sector, fit, base_offset, |
| 417 | node, &image_info); |
| 418 | if (ret < 0) |
Jean-Jacques Hiblot | 0da5815 | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 419 | break; |
Michal Simek | bf703df | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 420 | |
Jean-Jacques Hiblot | 74addb6 | 2019-10-22 16:39:12 +0200 | [diff] [blame] | 421 | /* Make room in FDT for changes from the overlay */ |
| 422 | ret = fdt_increase_size(spl_image->fdt_addr, |
| 423 | image_info.size); |
| 424 | if (ret < 0) |
Jean-Jacques Hiblot | 0da5815 | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 425 | break; |
Jean-Jacques Hiblot | 74addb6 | 2019-10-22 16:39:12 +0200 | [diff] [blame] | 426 | |
Michal Simek | bf703df | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 427 | ret = fdt_overlay_apply_verbose(spl_image->fdt_addr, |
| 428 | (void *)image_info.load_addr); |
Jean-Jacques Hiblot | 9443a73 | 2019-10-22 16:39:15 +0200 | [diff] [blame] | 429 | if (ret) { |
| 430 | pr_err("failed to apply DT overlay %s\n", |
| 431 | fit_get_name(fit, node, NULL)); |
Jean-Jacques Hiblot | 0da5815 | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 432 | break; |
Jean-Jacques Hiblot | 9443a73 | 2019-10-22 16:39:15 +0200 | [diff] [blame] | 433 | } |
Michal Simek | bf703df | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 434 | |
| 435 | debug("%s: DT overlay %s applied\n", __func__, |
| 436 | fit_get_name(fit, node, NULL)); |
| 437 | } |
Heinrich Schuchardt | 939a961 | 2020-04-20 12:44:01 +0200 | [diff] [blame] | 438 | free(tmpbuffer); |
Jean-Jacques Hiblot | 0da5815 | 2019-10-22 16:39:13 +0200 | [diff] [blame] | 439 | if (ret) |
| 440 | return ret; |
Michal Simek | bf703df | 2019-10-22 16:39:11 +0200 | [diff] [blame] | 441 | } |
Jean-Jacques Hiblot | 74addb6 | 2019-10-22 16:39:12 +0200 | [diff] [blame] | 442 | /* Try to make space, so we can inject details on the loadables */ |
| 443 | ret = fdt_shrink_to_minimum(spl_image->fdt_addr, 8192); |
| 444 | if (ret < 0) |
| 445 | return ret; |
| 446 | #endif |
| 447 | |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 448 | return ret; |
| 449 | } |
| 450 | |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 451 | static int spl_fit_record_loadable(const void *fit, int images, int index, |
| 452 | void *blob, struct spl_image_info *image) |
| 453 | { |
Philipp Tomsich | 4faa011 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 454 | int ret = 0; |
| 455 | #if !CONFIG_IS_ENABLED(FIT_IMAGE_TINY) |
Jean-Jacques Hiblot | 64e82dc | 2019-10-22 16:39:17 +0200 | [diff] [blame] | 456 | const char *name; |
Philipp Tomsich | 4faa011 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 457 | int node; |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 458 | |
| 459 | ret = spl_fit_get_image_name(fit, images, "loadables", |
| 460 | index, &name); |
| 461 | if (ret < 0) |
| 462 | return ret; |
| 463 | |
| 464 | node = spl_fit_get_image_node(fit, images, "loadables", index); |
| 465 | |
| 466 | ret = fdt_record_loadable(blob, index, name, image->load_addr, |
| 467 | image->size, image->entry_point, |
| 468 | fdt_getprop(fit, node, "type", NULL), |
| 469 | fdt_getprop(fit, node, "os", NULL)); |
Philipp Tomsich | 4faa011 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 470 | #endif |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 471 | return ret; |
| 472 | } |
| 473 | |
Philipp Tomsich | 4faa011 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 474 | static int spl_fit_image_get_os(const void *fit, int noffset, uint8_t *os) |
| 475 | { |
Jean-Jacques Hiblot | 943ec25 | 2019-04-26 15:21:25 +0200 | [diff] [blame] | 476 | #if CONFIG_IS_ENABLED(FIT_IMAGE_TINY) && !defined(CONFIG_SPL_OS_BOOT) |
Samuel Holland | e646f51 | 2020-10-21 21:12:13 -0500 | [diff] [blame] | 477 | const char *name = fdt_getprop(fit, noffset, FIT_OS_PROP, NULL); |
| 478 | |
| 479 | if (!name) |
| 480 | return -ENOENT; |
| 481 | |
| 482 | /* |
| 483 | * We don't care what the type of the image actually is, |
| 484 | * only whether or not it is U-Boot. This saves some |
| 485 | * space by omitting the large table of OS types. |
| 486 | */ |
| 487 | if (!strcmp(name, "u-boot")) |
| 488 | *os = IH_OS_U_BOOT; |
| 489 | else |
| 490 | *os = IH_OS_INVALID; |
| 491 | |
| 492 | return 0; |
Philipp Tomsich | 4faa011 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 493 | #else |
| 494 | return fit_image_get_os(fit, noffset, os); |
| 495 | #endif |
| 496 | } |
| 497 | |
Andreas Dannenberg | 8d9f7f1 | 2019-06-04 17:55:46 -0500 | [diff] [blame] | 498 | /* |
Alexandru Gagniuc | 0256017 | 2020-10-21 18:32:58 -0500 | [diff] [blame] | 499 | * The purpose of the FIT load buffer is to provide a memory location that is |
| 500 | * independent of the load address of any FIT component. |
| 501 | */ |
| 502 | static void *spl_get_fit_load_buffer(size_t size) |
| 503 | { |
| 504 | void *buf; |
| 505 | |
| 506 | buf = malloc(size); |
| 507 | if (!buf) { |
| 508 | pr_err("Could not get FIT buffer of %lu bytes\n", (ulong)size); |
| 509 | pr_err("\tcheck CONFIG_SYS_SPL_MALLOC_SIZE\n"); |
| 510 | buf = spl_get_load_buffer(0, size); |
| 511 | } |
| 512 | return buf; |
| 513 | } |
| 514 | |
| 515 | /* |
Andreas Dannenberg | 8d9f7f1 | 2019-06-04 17:55:46 -0500 | [diff] [blame] | 516 | * Weak default function to allow customizing SPL fit loading for load-only |
| 517 | * use cases by allowing to skip the parsing/processing of the FIT contents |
| 518 | * (so that this can be done separately in a more customized fashion) |
| 519 | */ |
| 520 | __weak bool spl_load_simple_fit_skip_processing(void) |
| 521 | { |
| 522 | return false; |
| 523 | } |
| 524 | |
Simon Glass | 43a734f | 2016-09-24 18:20:16 -0600 | [diff] [blame] | 525 | int spl_load_simple_fit(struct spl_image_info *spl_image, |
| 526 | struct spl_load_info *info, ulong sector, void *fit) |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 527 | { |
| 528 | int sectors; |
Alexandru Gagniuc | 0256017 | 2020-10-21 18:32:58 -0500 | [diff] [blame] | 529 | ulong size, hsize; |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 530 | unsigned long count; |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 531 | struct spl_image_info image_info; |
York Sun | a058b8a | 2017-08-15 11:14:45 -0700 | [diff] [blame] | 532 | int node = -1; |
| 533 | int images, ret; |
Alexandru Gagniuc | 0256017 | 2020-10-21 18:32:58 -0500 | [diff] [blame] | 534 | int base_offset; |
Andre Przywara | e7c5856 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 535 | int index = 0; |
Jean-Jacques Hiblot | 776ce60 | 2019-10-22 16:39:10 +0200 | [diff] [blame] | 536 | int firmware_node; |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 537 | |
| 538 | /* |
York Sun | a058b8a | 2017-08-15 11:14:45 -0700 | [diff] [blame] | 539 | * For FIT with external data, figure out where the external images |
| 540 | * start. This is the base for the data-offset properties in each |
| 541 | * image. |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 542 | */ |
| 543 | size = fdt_totalsize(fit); |
| 544 | size = (size + 3) & ~3; |
Ye Li | 9d5b0f4 | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 545 | size = board_spl_fit_size_align(size); |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 546 | base_offset = (size + 3) & ~3; |
| 547 | |
| 548 | /* |
| 549 | * So far we only have one block of data from the FIT. Read the entire |
Alexandru Gagniuc | 0256017 | 2020-10-21 18:32:58 -0500 | [diff] [blame] | 550 | * thing, including that first block. |
York Sun | a058b8a | 2017-08-15 11:14:45 -0700 | [diff] [blame] | 551 | * |
| 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 Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 554 | */ |
Lokesh Vutla | f62cef1 | 2016-05-24 10:34:38 +0530 | [diff] [blame] | 555 | sectors = get_aligned_image_size(info, size, 0); |
Alexandru Gagniuc | 0256017 | 2020-10-21 18:32:58 -0500 | [diff] [blame] | 556 | hsize = sectors * info->bl_len; |
| 557 | fit = spl_get_fit_load_buffer(hsize); |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 558 | count = info->read(info, sector, sectors, fit); |
Ye Li | 9d5b0f4 | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 559 | debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu, size=0x%lx\n", |
| 560 | sector, sectors, fit, count, size); |
| 561 | |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 562 | if (count == 0) |
| 563 | return -EIO; |
| 564 | |
Andreas Dannenberg | 8d9f7f1 | 2019-06-04 17:55:46 -0500 | [diff] [blame] | 565 | /* skip further processing if requested to enable load-only use cases */ |
| 566 | if (spl_load_simple_fit_skip_processing()) |
| 567 | return 0; |
| 568 | |
Philippe Reynes | 6c5c03c | 2020-10-29 18:50:29 +0100 | [diff] [blame] | 569 | if (IS_ENABLED(CONFIG_SPL_FIT_SIGNATURE)) { |
| 570 | int conf_offset = fit_find_config_node(fit); |
| 571 | |
| 572 | printf("## Checking hash(es) for config %s ... ", |
| 573 | fit_get_name(fit, conf_offset, NULL)); |
| 574 | if (fit_config_verify(fit, conf_offset)) |
| 575 | return -EPERM; |
| 576 | puts("OK\n"); |
| 577 | } |
| 578 | |
Andre Przywara | 525e9c9 | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 579 | /* find the node holding the images information */ |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 580 | images = fdt_path_offset(fit, FIT_IMAGES_PATH); |
| 581 | if (images < 0) { |
| 582 | debug("%s: Cannot find /images node: %d\n", __func__, images); |
| 583 | return -1; |
| 584 | } |
Marek Vasut | 33dd00e | 2018-05-12 22:25:28 +0200 | [diff] [blame] | 585 | |
Michal Simek | 1aab114 | 2020-09-09 14:41:56 +0200 | [diff] [blame] | 586 | #ifdef CONFIG_SPL_FPGA |
Marek Vasut | 33dd00e | 2018-05-12 22:25:28 +0200 | [diff] [blame] | 587 | node = spl_fit_get_image_node(fit, images, "fpga", 0); |
| 588 | if (node >= 0) { |
| 589 | /* Load the image and set up the spl_image structure */ |
| 590 | ret = spl_load_fit_image(info, sector, fit, base_offset, node, |
| 591 | spl_image); |
| 592 | if (ret) { |
| 593 | printf("%s: Cannot load the FPGA: %i\n", __func__, ret); |
| 594 | return ret; |
| 595 | } |
Michal Simek | f707b5a | 2018-07-18 14:33:15 +0200 | [diff] [blame] | 596 | |
| 597 | debug("FPGA bitstream at: %x, size: %x\n", |
| 598 | (u32)spl_image->load_addr, spl_image->size); |
| 599 | |
| 600 | ret = fpga_load(0, (const void *)spl_image->load_addr, |
| 601 | spl_image->size, BIT_FULL); |
| 602 | if (ret) { |
| 603 | printf("%s: Cannot load the image to the FPGA\n", |
| 604 | __func__); |
| 605 | return ret; |
| 606 | } |
| 607 | |
Luis Araneda | eece623 | 2018-07-19 03:10:16 -0400 | [diff] [blame] | 608 | puts("FPGA image loaded from FIT\n"); |
Marek Vasut | 33dd00e | 2018-05-12 22:25:28 +0200 | [diff] [blame] | 609 | node = -1; |
| 610 | } |
| 611 | #endif |
Andre Przywara | 525e9c9 | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 612 | |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 613 | /* |
| 614 | * Find the U-Boot image using the following search order: |
| 615 | * - start at 'firmware' (e.g. an ARM Trusted Firmware) |
| 616 | * - fall back 'kernel' (e.g. a Falcon-mode OS boot |
| 617 | * - fall back to using the first 'loadables' entry |
| 618 | */ |
| 619 | if (node < 0) |
Michal Simek | b766e8f | 2018-03-26 16:31:26 +0200 | [diff] [blame] | 620 | node = spl_fit_get_image_node(fit, images, FIT_FIRMWARE_PROP, |
| 621 | 0); |
York Sun | a058b8a | 2017-08-15 11:14:45 -0700 | [diff] [blame] | 622 | #ifdef CONFIG_SPL_OS_BOOT |
York Sun | a058b8a | 2017-08-15 11:14:45 -0700 | [diff] [blame] | 623 | if (node < 0) |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 624 | node = spl_fit_get_image_node(fit, images, FIT_KERNEL_PROP, 0); |
York Sun | a058b8a | 2017-08-15 11:14:45 -0700 | [diff] [blame] | 625 | #endif |
Andre Przywara | 525e9c9 | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 626 | if (node < 0) { |
| 627 | debug("could not find firmware image, trying loadables...\n"); |
| 628 | node = spl_fit_get_image_node(fit, images, "loadables", 0); |
Andre Przywara | e7c5856 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 629 | /* |
| 630 | * If we pick the U-Boot image from "loadables", start at |
| 631 | * the second image when later loading additional images. |
| 632 | */ |
| 633 | index = 1; |
Andre Przywara | 525e9c9 | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 634 | } |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 635 | if (node < 0) { |
Andre Przywara | 525e9c9 | 2017-04-26 01:32:34 +0100 | [diff] [blame] | 636 | debug("%s: Cannot find u-boot image node: %d\n", |
| 637 | __func__, node); |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 638 | return -1; |
| 639 | } |
| 640 | |
Andre Przywara | 29053e9 | 2017-04-26 01:32:36 +0100 | [diff] [blame] | 641 | /* Load the image and set up the spl_image structure */ |
| 642 | ret = spl_load_fit_image(info, sector, fit, base_offset, node, |
| 643 | spl_image); |
| 644 | if (ret) |
| 645 | return ret; |
Daniel Allred | cf839bd | 2016-06-27 09:19:21 -0500 | [diff] [blame] | 646 | |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 647 | /* |
| 648 | * For backward compatibility, we treat the first node that is |
| 649 | * as a U-Boot image, if no OS-type has been declared. |
| 650 | */ |
Philipp Tomsich | 4faa011 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 651 | if (!spl_fit_image_get_os(fit, node, &spl_image->os)) |
York Sun | a058b8a | 2017-08-15 11:14:45 -0700 | [diff] [blame] | 652 | debug("Image OS is %s\n", genimg_get_os_name(spl_image->os)); |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 653 | #if !defined(CONFIG_SPL_OS_BOOT) |
| 654 | else |
| 655 | spl_image->os = IH_OS_U_BOOT; |
York Sun | a058b8a | 2017-08-15 11:14:45 -0700 | [diff] [blame] | 656 | #endif |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 657 | |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 658 | /* |
| 659 | * Booting a next-stage U-Boot may require us to append the FDT. |
| 660 | * We allow this to fail, as the U-Boot image might embed its FDT. |
| 661 | */ |
Dario Binacchi | faf8d14 | 2020-05-27 13:56:19 +0200 | [diff] [blame] | 662 | if (spl_image->os == IH_OS_U_BOOT) { |
| 663 | ret = spl_fit_append_fdt(spl_image, info, sector, fit, |
| 664 | images, base_offset); |
| 665 | if (!IS_ENABLED(CONFIG_OF_EMBED) && ret < 0) |
| 666 | return ret; |
| 667 | } |
Andre Przywara | e7c5856 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 668 | |
Jean-Jacques Hiblot | 776ce60 | 2019-10-22 16:39:10 +0200 | [diff] [blame] | 669 | firmware_node = node; |
Andre Przywara | e7c5856 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 670 | /* Now check if there are more images for us to load */ |
| 671 | for (; ; index++) { |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 672 | uint8_t os_type = IH_OS_INVALID; |
| 673 | |
Andre Przywara | e7c5856 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 674 | node = spl_fit_get_image_node(fit, images, "loadables", index); |
| 675 | if (node < 0) |
| 676 | break; |
| 677 | |
Jean-Jacques Hiblot | 776ce60 | 2019-10-22 16:39:10 +0200 | [diff] [blame] | 678 | /* |
| 679 | * if the firmware is also a loadable, skip it because |
| 680 | * it already has been loaded. This is typically the case with |
| 681 | * u-boot.img generated by mkimage. |
| 682 | */ |
| 683 | if (firmware_node == node) |
| 684 | continue; |
| 685 | |
Andre Przywara | e7c5856 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 686 | ret = spl_load_fit_image(info, sector, fit, base_offset, node, |
| 687 | &image_info); |
Philippe Reynes | ba87da4 | 2020-11-24 16:15:05 +0100 | [diff] [blame] | 688 | if (ret < 0) { |
| 689 | printf("%s: can't load image loadables index %d (ret = %d)\n", |
| 690 | __func__, index, ret); |
| 691 | return ret; |
| 692 | } |
Andre Przywara | e7c5856 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 693 | |
Philipp Tomsich | 4faa011 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 694 | if (!spl_fit_image_get_os(fit, node, &os_type)) |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 695 | debug("Loadable is %s\n", genimg_get_os_name(os_type)); |
| 696 | |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 697 | if (os_type == IH_OS_U_BOOT) { |
| 698 | spl_fit_append_fdt(&image_info, info, sector, |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 699 | fit, images, base_offset); |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 700 | spl_image->fdt_addr = image_info.fdt_addr; |
| 701 | } |
Philipp Tomsich | 1345ffa | 2017-09-13 21:29:32 +0200 | [diff] [blame] | 702 | |
Andre Przywara | e7c5856 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 703 | /* |
| 704 | * If the "firmware" image did not provide an entry point, |
| 705 | * use the first valid entry point from the loadables. |
| 706 | */ |
| 707 | if (spl_image->entry_point == FDT_ERROR && |
| 708 | image_info.entry_point != FDT_ERROR) |
| 709 | spl_image->entry_point = image_info.entry_point; |
Philipp Tomsich | e61eff9 | 2017-09-13 21:29:34 +0200 | [diff] [blame] | 710 | |
| 711 | /* Record our loadables into the FDT */ |
| 712 | if (spl_image->fdt_addr) |
| 713 | spl_fit_record_loadable(fit, images, index, |
| 714 | spl_image->fdt_addr, |
| 715 | &image_info); |
Andre Przywara | e7c5856 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 716 | } |
| 717 | |
| 718 | /* |
| 719 | * If a platform does not provide CONFIG_SYS_UBOOT_START, U-Boot's |
| 720 | * Makefile will set it to 0 and it will end up as the entry point |
| 721 | * here. What it actually means is: use the load address. |
| 722 | */ |
| 723 | if (spl_image->entry_point == FDT_ERROR || spl_image->entry_point == 0) |
| 724 | spl_image->entry_point = spl_image->load_addr; |
| 725 | |
Ye Li | 9d5b0f4 | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 726 | spl_image->flags |= SPL_FIT_FOUND; |
| 727 | |
Stefano Babic | f8b509b | 2019-09-20 08:47:53 +0200 | [diff] [blame] | 728 | #ifdef CONFIG_IMX_HAB |
Ye Li | 9d5b0f4 | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 729 | board_spl_fit_post_load((ulong)fit, size); |
| 730 | #endif |
| 731 | |
Andre Przywara | e7c5856 | 2017-04-26 01:32:37 +0100 | [diff] [blame] | 732 | return 0; |
Simon Glass | a6131a2 | 2016-02-22 22:55:56 -0700 | [diff] [blame] | 733 | } |