blob: 950ff7cff6250591fd5a25d19a6bec637b8e122e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass3b5866d2014-06-12 07:24:46 -06002/*
3 * (C) Copyright 2000-2009
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Simon Glass3b5866d2014-06-12 07:24:46 -06005 */
6
Simon Glass0232ba72014-06-12 07:24:51 -06007#ifndef USE_HOSTCC
Simon Glass3b5866d2014-06-12 07:24:46 -06008#include <common.h>
Simon Glass0232ba72014-06-12 07:24:51 -06009#include <bootstage.h>
Simon Glass63334482019-11-14 12:57:39 -070010#include <cpu_func.h>
Simon Glass313112a2019-08-01 09:46:46 -060011#include <env.h>
Simon Glass0129b522014-10-19 21:11:24 -060012#include <errno.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060013#include <fdt_support.h>
Simon Glass8f3f7612019-11-14 12:57:42 -070014#include <irq_func.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060015#include <lmb.h>
Simon Glass0f2af882020-05-10 11:40:05 -060016#include <log.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060017#include <malloc.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050018#include <mapmem.h>
Simon Glass274e0b02020-05-10 11:39:56 -060019#include <net.h>
20#include <asm/cache.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060021#include <asm/io.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060022#if defined(CONFIG_CMD_USB)
23#include <usb.h>
24#endif
Simon Glass0232ba72014-06-12 07:24:51 -060025#else
26#include "mkimage.h"
27#endif
Simon Glass3b5866d2014-06-12 07:24:46 -060028
Simon Glass0232ba72014-06-12 07:24:51 -060029#include <command.h>
30#include <bootm.h>
31#include <image.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060032
33#ifndef CONFIG_SYS_BOOTM_LEN
34/* use 8MByte as default max gunzip size */
35#define CONFIG_SYS_BOOTM_LEN 0x800000
36#endif
37
38#define IH_INITRD_ARCH IH_ARCH_DEFAULT
39
Simon Glass0232ba72014-06-12 07:24:51 -060040#ifndef USE_HOSTCC
41
42DECLARE_GLOBAL_DATA_PTR;
43
Tom Rini36f067f2016-08-12 08:31:15 -040044bootm_headers_t images; /* pointers to os/initrd/fdt images */
45
Simon Glassed38aef2020-05-10 11:40:03 -060046static const void *boot_get_kernel(struct cmd_tbl *cmdtp, int flag, int argc,
47 char *const argv[], bootm_headers_t *images,
Simon Glass3b5866d2014-06-12 07:24:46 -060048 ulong *os_data, ulong *os_len);
49
Simon Glassf55305a2018-05-16 09:42:25 -060050__weak void board_quiesce_devices(void)
51{
52}
53
Simon Glass3b5866d2014-06-12 07:24:46 -060054#ifdef CONFIG_LMB
55static void boot_start_lmb(bootm_headers_t *images)
56{
57 ulong mem_start;
58 phys_size_t mem_size;
59
Simon Glassda1a1342017-08-03 12:22:15 -060060 mem_start = env_get_bootm_low();
61 mem_size = env_get_bootm_size();
Simon Glass3b5866d2014-06-12 07:24:46 -060062
Simon Goldschmidt8890e7d2019-01-26 22:13:04 +010063 lmb_init_and_reserve_range(&images->lmb, (phys_addr_t)mem_start,
64 mem_size, NULL);
Simon Glass3b5866d2014-06-12 07:24:46 -060065}
66#else
67#define lmb_reserve(lmb, base, size)
68static inline void boot_start_lmb(bootm_headers_t *images) { }
69#endif
70
Simon Glassed38aef2020-05-10 11:40:03 -060071static int bootm_start(struct cmd_tbl *cmdtp, int flag, int argc,
72 char *const argv[])
Simon Glass3b5866d2014-06-12 07:24:46 -060073{
74 memset((void *)&images, 0, sizeof(images));
Simon Glass22c34c22017-08-03 12:22:13 -060075 images.verify = env_get_yesno("verify");
Simon Glass3b5866d2014-06-12 07:24:46 -060076
77 boot_start_lmb(&images);
78
79 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_START, "bootm_start");
80 images.state = BOOTM_STATE_START;
81
82 return 0;
83}
84
Simon Glassed38aef2020-05-10 11:40:03 -060085static int bootm_find_os(struct cmd_tbl *cmdtp, int flag, int argc,
86 char *const argv[])
Simon Glass3b5866d2014-06-12 07:24:46 -060087{
88 const void *os_hdr;
89 bool ep_found = false;
Simon Glass0129b522014-10-19 21:11:24 -060090 int ret;
Simon Glass3b5866d2014-06-12 07:24:46 -060091
92 /* get kernel image header, start address and length */
93 os_hdr = boot_get_kernel(cmdtp, flag, argc, argv,
94 &images, &images.os.image_start, &images.os.image_len);
95 if (images.os.image_len == 0) {
96 puts("ERROR: can't get kernel image!\n");
97 return 1;
98 }
99
100 /* get image parameters */
101 switch (genimg_get_format(os_hdr)) {
Tom Rinic220bd92019-05-23 07:14:07 -0400102#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Simon Glass3b5866d2014-06-12 07:24:46 -0600103 case IMAGE_FORMAT_LEGACY:
104 images.os.type = image_get_type(os_hdr);
105 images.os.comp = image_get_comp(os_hdr);
106 images.os.os = image_get_os(os_hdr);
107
108 images.os.end = image_get_image_end(os_hdr);
109 images.os.load = image_get_load(os_hdr);
Simon Glass0129b522014-10-19 21:11:24 -0600110 images.os.arch = image_get_arch(os_hdr);
Simon Glass3b5866d2014-06-12 07:24:46 -0600111 break;
112#endif
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700113#if IMAGE_ENABLE_FIT
Simon Glass3b5866d2014-06-12 07:24:46 -0600114 case IMAGE_FORMAT_FIT:
115 if (fit_image_get_type(images.fit_hdr_os,
116 images.fit_noffset_os,
117 &images.os.type)) {
118 puts("Can't get image type!\n");
119 bootstage_error(BOOTSTAGE_ID_FIT_TYPE);
120 return 1;
121 }
122
123 if (fit_image_get_comp(images.fit_hdr_os,
124 images.fit_noffset_os,
125 &images.os.comp)) {
126 puts("Can't get image compression!\n");
127 bootstage_error(BOOTSTAGE_ID_FIT_COMPRESSION);
128 return 1;
129 }
130
131 if (fit_image_get_os(images.fit_hdr_os, images.fit_noffset_os,
132 &images.os.os)) {
133 puts("Can't get image OS!\n");
134 bootstage_error(BOOTSTAGE_ID_FIT_OS);
135 return 1;
136 }
137
Simon Glass0129b522014-10-19 21:11:24 -0600138 if (fit_image_get_arch(images.fit_hdr_os,
139 images.fit_noffset_os,
140 &images.os.arch)) {
141 puts("Can't get image ARCH!\n");
142 return 1;
143 }
144
Simon Glass3b5866d2014-06-12 07:24:46 -0600145 images.os.end = fit_get_end(images.fit_hdr_os);
146
147 if (fit_image_get_load(images.fit_hdr_os, images.fit_noffset_os,
148 &images.os.load)) {
149 puts("Can't get image load address!\n");
150 bootstage_error(BOOTSTAGE_ID_FIT_LOADADDR);
151 return 1;
152 }
153 break;
154#endif
155#ifdef CONFIG_ANDROID_BOOT_IMAGE
156 case IMAGE_FORMAT_ANDROID:
157 images.os.type = IH_TYPE_KERNEL;
Eugeniu Rosca1403f392019-04-08 17:35:27 +0200158 images.os.comp = android_image_get_kcomp(os_hdr);
Simon Glass3b5866d2014-06-12 07:24:46 -0600159 images.os.os = IH_OS_LINUX;
Simon Glass3b5866d2014-06-12 07:24:46 -0600160
161 images.os.end = android_image_get_end(os_hdr);
162 images.os.load = android_image_get_kload(os_hdr);
Ahmad Draidi9a1cb5d2014-10-23 20:50:07 +0300163 images.ep = images.os.load;
164 ep_found = true;
Simon Glass3b5866d2014-06-12 07:24:46 -0600165 break;
166#endif
167 default:
168 puts("ERROR: unknown image format type!\n");
169 return 1;
170 }
171
Simon Glass0129b522014-10-19 21:11:24 -0600172 /* If we have a valid setup.bin, we will use that for entry (x86) */
Simon Glass9d428302014-10-10 08:21:57 -0600173 if (images.os.arch == IH_ARCH_I386 ||
174 images.os.arch == IH_ARCH_X86_64) {
Simon Glass0129b522014-10-19 21:11:24 -0600175 ulong len;
176
177 ret = boot_get_setup(&images, IH_ARCH_I386, &images.ep, &len);
178 if (ret < 0 && ret != -ENOENT) {
179 puts("Could not find a valid setup.bin for x86\n");
180 return 1;
181 }
182 /* Kernel entry point is the setup.bin */
183 } else if (images.legacy_hdr_valid) {
Simon Glass3b5866d2014-06-12 07:24:46 -0600184 images.ep = image_get_ep(&images.legacy_hdr_os_copy);
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700185#if IMAGE_ENABLE_FIT
Simon Glass3b5866d2014-06-12 07:24:46 -0600186 } else if (images.fit_uname_os) {
187 int ret;
188
189 ret = fit_image_get_entry(images.fit_hdr_os,
190 images.fit_noffset_os, &images.ep);
191 if (ret) {
192 puts("Can't get entry point property!\n");
193 return 1;
194 }
195#endif
196 } else if (!ep_found) {
197 puts("Could not find kernel entry point!\n");
198 return 1;
199 }
200
201 if (images.os.type == IH_TYPE_KERNEL_NOLOAD) {
Marek Vasut21425792018-06-13 06:13:33 +0200202 if (CONFIG_IS_ENABLED(CMD_BOOTI) &&
203 images.os.arch == IH_ARCH_ARM64) {
204 ulong image_addr;
205 ulong image_size;
206
207 ret = booti_setup(images.os.image_start, &image_addr,
208 &image_size, true);
209 if (ret != 0)
210 return 1;
211
212 images.os.type = IH_TYPE_KERNEL;
213 images.os.load = image_addr;
214 images.ep = image_addr;
215 } else {
216 images.os.load = images.os.image_start;
217 images.ep += images.os.image_start;
218 }
Simon Glass3b5866d2014-06-12 07:24:46 -0600219 }
220
Simon Glass5b539a02016-02-24 09:14:42 -0700221 images.os.start = map_to_sysmem(os_hdr);
Simon Glass3b5866d2014-06-12 07:24:46 -0600222
223 return 0;
224}
225
Karl Apsited686ce92015-05-21 09:52:49 -0400226/**
227 * bootm_find_images - wrapper to find and locate various images
228 * @flag: Ignored Argument
229 * @argc: command argument count
230 * @argv: command argument list
Tero Kristo06086942020-06-12 15:41:20 +0300231 * @start: OS image start address
232 * @size: OS image size
Karl Apsited686ce92015-05-21 09:52:49 -0400233 *
234 * boot_find_images() will attempt to load an available ramdisk,
235 * flattened device tree, as well as specifically marked
236 * "loadable" images (loadables are FIT only)
237 *
238 * Note: bootm_find_images will skip an image if it is not found
239 *
240 * @return:
241 * 0, if all existing images were loaded correctly
242 * 1, if an image is found but corrupted, or invalid
243 */
Tero Kristo06086942020-06-12 15:41:20 +0300244int bootm_find_images(int flag, int argc, char *const argv[], ulong start,
245 ulong size)
Simon Glass3b5866d2014-06-12 07:24:46 -0600246{
247 int ret;
248
249 /* find ramdisk */
250 ret = boot_get_ramdisk(argc, argv, &images, IH_INITRD_ARCH,
251 &images.rd_start, &images.rd_end);
252 if (ret) {
253 puts("Ramdisk image is corrupt or invalid\n");
254 return 1;
255 }
256
Tero Kristo06086942020-06-12 15:41:20 +0300257 /* check if ramdisk overlaps OS image */
258 if (images.rd_start && (((ulong)images.rd_start >= start &&
Jaehoon Chung80ffb812020-10-21 14:17:03 +0900259 (ulong)images.rd_start < start + size) ||
260 ((ulong)images.rd_end > start &&
261 (ulong)images.rd_end <= start + size) ||
262 ((ulong)images.rd_start < start &&
263 (ulong)images.rd_end >= start + size))) {
Tero Kristo06086942020-06-12 15:41:20 +0300264 printf("ERROR: RD image overlaps OS image (OS=0x%lx..0x%lx)\n",
265 start, start + size);
266 return 1;
267 }
268
Simon Glass8b426922016-02-22 22:55:45 -0700269#if IMAGE_ENABLE_OF_LIBFDT
Simon Glass3b5866d2014-06-12 07:24:46 -0600270 /* find flattened device tree */
271 ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images,
272 &images.ft_addr, &images.ft_len);
273 if (ret) {
274 puts("Could not find a valid device tree\n");
275 return 1;
276 }
Tero Kristo06086942020-06-12 15:41:20 +0300277
278 /* check if FDT overlaps OS image */
279 if (images.ft_addr &&
280 (((ulong)images.ft_addr >= start &&
281 (ulong)images.ft_addr <= start + size) ||
282 ((ulong)images.ft_addr + images.ft_len >= start &&
283 (ulong)images.ft_addr + images.ft_len <= start + size))) {
284 printf("ERROR: FDT image overlaps OS image (OS=0x%lx..0x%lx)\n",
285 start, start + size);
286 return 1;
287 }
288
Simon Goldschmidt6127ac02018-12-17 20:14:42 +0100289 if (CONFIG_IS_ENABLED(CMD_FDT))
290 set_working_fdt_addr(map_to_sysmem(images.ft_addr));
Simon Glass3b5866d2014-06-12 07:24:46 -0600291#endif
292
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700293#if IMAGE_ENABLE_FIT
Goldschmidt Simon9179c812017-11-10 14:17:41 +0000294#if defined(CONFIG_FPGA)
Michal Simekebae78b2016-05-17 14:03:50 +0200295 /* find bitstreams */
296 ret = boot_get_fpga(argc, argv, &images, IH_ARCH_DEFAULT,
297 NULL, NULL);
298 if (ret) {
299 printf("FPGA image is corrupted or invalid\n");
300 return 1;
301 }
302#endif
303
Karl Apsite1b21c282015-05-21 09:52:48 -0400304 /* find all of the loadables */
305 ret = boot_get_loadable(argc, argv, &images, IH_ARCH_DEFAULT,
306 NULL, NULL);
307 if (ret) {
308 printf("Loadable(s) is corrupt or invalid\n");
309 return 1;
310 }
Karl Apsite1b21c282015-05-21 09:52:48 -0400311#endif
312
Simon Glass3b5866d2014-06-12 07:24:46 -0600313 return 0;
314}
315
Simon Glassed38aef2020-05-10 11:40:03 -0600316static int bootm_find_other(struct cmd_tbl *cmdtp, int flag, int argc,
317 char *const argv[])
Simon Glass3b5866d2014-06-12 07:24:46 -0600318{
319 if (((images.os.type == IH_TYPE_KERNEL) ||
320 (images.os.type == IH_TYPE_KERNEL_NOLOAD) ||
321 (images.os.type == IH_TYPE_MULTI)) &&
322 (images.os.os == IH_OS_LINUX ||
323 images.os.os == IH_OS_VXWORKS))
Tero Kristo06086942020-06-12 15:41:20 +0300324 return bootm_find_images(flag, argc, argv, 0, 0);
Simon Glass3b5866d2014-06-12 07:24:46 -0600325
326 return 0;
327}
Simon Glass10ae4192014-12-02 13:17:30 -0700328#endif /* USE_HOSTC */
329
Julius Werner47ef9862019-07-24 19:37:54 -0700330#if !defined(USE_HOSTCC) || defined(CONFIG_FIT_SIGNATURE)
Simon Glass4f6e6d72014-12-02 13:17:37 -0700331/**
332 * handle_decomp_error() - display a decompression error
333 *
334 * This function tries to produce a useful message. In the case where the
335 * uncompressed size is the same as the available space, we can assume that
336 * the image is too large for the buffer.
337 *
338 * @comp_type: Compression type being used (IH_COMP_...)
339 * @uncomp_size: Number of bytes uncompressed
Julius Werner47ef9862019-07-24 19:37:54 -0700340 * @ret: errno error code received from compression library
341 * @return Appropriate BOOTM_ERR_ error code
Simon Glass4f6e6d72014-12-02 13:17:37 -0700342 */
Julius Werner47ef9862019-07-24 19:37:54 -0700343static int handle_decomp_error(int comp_type, size_t uncomp_size, int ret)
Simon Glass10ae4192014-12-02 13:17:30 -0700344{
Simon Glass4f6e6d72014-12-02 13:17:37 -0700345 const char *name = genimg_get_comp_name(comp_type);
346
Julius Werner47ef9862019-07-24 19:37:54 -0700347 /* ENOSYS means unimplemented compression type, don't reset. */
348 if (ret == -ENOSYS)
349 return BOOTM_ERR_UNIMPLEMENTED;
350
351 if (uncomp_size >= CONFIG_SYS_BOOTM_LEN)
Simon Glass4f6e6d72014-12-02 13:17:37 -0700352 printf("Image too large: increase CONFIG_SYS_BOOTM_LEN\n");
Simon Glass10ae4192014-12-02 13:17:30 -0700353 else
Simon Glass4f6e6d72014-12-02 13:17:37 -0700354 printf("%s: uncompress error %d\n", name, ret);
355
356 /*
357 * The decompression routines are now safe, so will not write beyond
358 * their bounds. Probably it is not necessary to reset, but maintain
359 * the current behaviour for now.
360 */
361 printf("Must RESET board to recover\n");
Simon Glass10ae4192014-12-02 13:17:30 -0700362#ifndef USE_HOSTCC
363 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
364#endif
365
366 return BOOTM_ERR_RESET;
367}
Julius Werner47ef9862019-07-24 19:37:54 -0700368#endif
Simon Glass686f3bb2014-06-12 07:24:52 -0600369
Simon Glassa51991d2014-06-12 07:24:53 -0600370#ifndef USE_HOSTCC
Tom Rini6c96f5d2018-05-01 12:32:37 -0400371static int bootm_load_os(bootm_headers_t *images, int boot_progress)
Simon Glass686f3bb2014-06-12 07:24:52 -0600372{
373 image_info_t os = images->os;
374 ulong load = os.load;
Tom Rini6c96f5d2018-05-01 12:32:37 -0400375 ulong load_end;
Simon Glass686f3bb2014-06-12 07:24:52 -0600376 ulong blob_start = os.start;
377 ulong blob_end = os.end;
378 ulong image_start = os.image_start;
379 ulong image_len = os.image_len;
Bryan O'Donoghue600388e2018-04-15 11:48:17 +0100380 ulong flush_start = ALIGN_DOWN(load, ARCH_DMA_MINALIGN);
Simon Glass686f3bb2014-06-12 07:24:52 -0600381 bool no_overlap;
382 void *load_buf, *image_buf;
383 int err;
384
385 load_buf = map_sysmem(load, 0);
386 image_buf = map_sysmem(os.image_start, image_len);
Julius Werner47ef9862019-07-24 19:37:54 -0700387 err = image_decomp(os.comp, load, os.image_start, os.type,
388 load_buf, image_buf, image_len,
389 CONFIG_SYS_BOOTM_LEN, &load_end);
Simon Glass686f3bb2014-06-12 07:24:52 -0600390 if (err) {
Julius Werner47ef9862019-07-24 19:37:54 -0700391 err = handle_decomp_error(os.comp, load_end - load, err);
Simon Glass686f3bb2014-06-12 07:24:52 -0600392 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
393 return err;
394 }
Heinrich Schuchardt6d29e0d2020-08-30 11:34:12 +0200395 /* We need the decompressed image size in the next steps */
396 images->os.image_len = load_end - load;
Bryan O'Donoghue600388e2018-04-15 11:48:17 +0100397
Trent Piepho92e51d02019-03-27 23:50:09 +0000398 flush_cache(flush_start, ALIGN(load_end, ARCH_DMA_MINALIGN) - flush_start);
Simon Glass3b5866d2014-06-12 07:24:46 -0600399
Tom Rini6c96f5d2018-05-01 12:32:37 -0400400 debug(" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, load_end);
Simon Glass3b5866d2014-06-12 07:24:46 -0600401 bootstage_mark(BOOTSTAGE_ID_KERNEL_LOADED);
402
Simon Glass686f3bb2014-06-12 07:24:52 -0600403 no_overlap = (os.comp == IH_COMP_NONE && load == image_start);
404
Tom Rini6c96f5d2018-05-01 12:32:37 -0400405 if (!no_overlap && load < blob_end && load_end > blob_start) {
Simon Glass3b5866d2014-06-12 07:24:46 -0600406 debug("images.os.start = 0x%lX, images.os.end = 0x%lx\n",
407 blob_start, blob_end);
408 debug("images.os.load = 0x%lx, load_end = 0x%lx\n", load,
Tom Rini6c96f5d2018-05-01 12:32:37 -0400409 load_end);
Simon Glass3b5866d2014-06-12 07:24:46 -0600410
411 /* Check what type of image this is. */
412 if (images->legacy_hdr_valid) {
413 if (image_get_type(&images->legacy_hdr_os_copy)
414 == IH_TYPE_MULTI)
415 puts("WARNING: legacy format multi component image overwritten\n");
416 return BOOTM_ERR_OVERLAP;
417 } else {
418 puts("ERROR: new format image overwritten - must RESET the board to recover\n");
419 bootstage_error(BOOTSTAGE_ID_OVERWRITTEN);
420 return BOOTM_ERR_RESET;
421 }
422 }
423
Tom Rini6c96f5d2018-05-01 12:32:37 -0400424 lmb_reserve(&images->lmb, images->os.load, (load_end -
425 images->os.load));
Simon Glass3b5866d2014-06-12 07:24:46 -0600426 return 0;
427}
428
429/**
430 * bootm_disable_interrupts() - Disable interrupts in preparation for load/boot
431 *
432 * @return interrupt flag (0 if interrupts were disabled, non-zero if they were
433 * enabled)
434 */
435ulong bootm_disable_interrupts(void)
436{
437 ulong iflag;
438
439 /*
440 * We have reached the point of no return: we are going to
441 * overwrite all exception vector code, so we cannot easily
442 * recover from any failures any more...
443 */
444 iflag = disable_interrupts();
445#ifdef CONFIG_NETCONSOLE
446 /* Stop the ethernet stack if NetConsole could have left it up */
447 eth_halt();
Bernhard Nortmann1167a6c2015-09-14 15:29:45 +0200448# ifndef CONFIG_DM_ETH
Simon Glass3b5866d2014-06-12 07:24:46 -0600449 eth_unregister(eth_get_dev());
Bernhard Nortmann1167a6c2015-09-14 15:29:45 +0200450# endif
Simon Glass3b5866d2014-06-12 07:24:46 -0600451#endif
452
453#if defined(CONFIG_CMD_USB)
454 /*
455 * turn off USB to prevent the host controller from writing to the
456 * SDRAM while Linux is booting. This could happen (at least for OHCI
457 * controller), because the HCCA (Host Controller Communication Area)
458 * lies within the SDRAM and the host controller writes continously to
459 * this area (as busmaster!). The HccaFrameNumber is for example
460 * updated every 1 ms within the HCCA structure in SDRAM! For more
461 * details see the OpenHCI specification.
462 */
463 usb_stop();
464#endif
465 return iflag;
466}
467
Simon Glass3b5866d2014-06-12 07:24:46 -0600468#define CONSOLE_ARG "console="
469#define CONSOLE_ARG_LEN (sizeof(CONSOLE_ARG) - 1)
470
Simon Glass2eab0172020-11-05 10:33:39 -0700471int fixup_silent_linux(void)
Simon Glass3b5866d2014-06-12 07:24:46 -0600472{
473 char *buf;
474 const char *env_val;
Simon Glass07a88862020-11-05 10:33:38 -0700475 char *cmdline;
Simon Glass3b5866d2014-06-12 07:24:46 -0600476 int want_silent;
477
Simon Glass07a88862020-11-05 10:33:38 -0700478 if (!IS_ENABLED(CONFIG_SILENT_CONSOLE) &&
479 !IS_ENABLED(CONFIG_SILENT_U_BOOT_ONLY))
Simon Glass2eab0172020-11-05 10:33:39 -0700480 return 0;
Simon Glass07a88862020-11-05 10:33:38 -0700481 cmdline = env_get("bootargs");
482
Simon Glass3b5866d2014-06-12 07:24:46 -0600483 /*
484 * Only fix cmdline when requested. The environment variable can be:
485 *
486 * no - we never fixup
487 * yes - we always fixup
488 * unset - we rely on the console silent flag
489 */
Simon Glass22c34c22017-08-03 12:22:13 -0600490 want_silent = env_get_yesno("silent_linux");
Simon Glass3b5866d2014-06-12 07:24:46 -0600491 if (want_silent == 0)
Simon Glass2eab0172020-11-05 10:33:39 -0700492 return 0;
Simon Glass3b5866d2014-06-12 07:24:46 -0600493 else if (want_silent == -1 && !(gd->flags & GD_FLG_SILENT))
Simon Glass2eab0172020-11-05 10:33:39 -0700494 return 0;
Simon Glass3b5866d2014-06-12 07:24:46 -0600495
496 debug("before silent fix-up: %s\n", cmdline);
497 if (cmdline && (cmdline[0] != '\0')) {
498 char *start = strstr(cmdline, CONSOLE_ARG);
499
500 /* Allocate space for maximum possible new command line */
501 buf = malloc(strlen(cmdline) + 1 + CONSOLE_ARG_LEN + 1);
502 if (!buf) {
503 debug("%s: out of memory\n", __func__);
Simon Glass2eab0172020-11-05 10:33:39 -0700504 return -ENOSPC;
Simon Glass3b5866d2014-06-12 07:24:46 -0600505 }
506
507 if (start) {
508 char *end = strchr(start, ' ');
509 int num_start_bytes = start - cmdline + CONSOLE_ARG_LEN;
510
511 strncpy(buf, cmdline, num_start_bytes);
512 if (end)
513 strcpy(buf + num_start_bytes, end);
514 else
515 buf[num_start_bytes] = '\0';
516 } else {
517 sprintf(buf, "%s %s", cmdline, CONSOLE_ARG);
518 }
519 env_val = buf;
520 } else {
521 buf = NULL;
522 env_val = CONSOLE_ARG;
523 }
524
Simon Glass6a38e412017-08-03 12:22:09 -0600525 env_set("bootargs", env_val);
Simon Glass3b5866d2014-06-12 07:24:46 -0600526 debug("after silent fix-up: %s\n", env_val);
527 free(buf);
Simon Glass2eab0172020-11-05 10:33:39 -0700528
529 return 0;
Simon Glass3b5866d2014-06-12 07:24:46 -0600530}
Simon Glass3b5866d2014-06-12 07:24:46 -0600531
532/**
533 * Execute selected states of the bootm command.
534 *
535 * Note the arguments to this state must be the first argument, Any 'bootm'
536 * or sub-command arguments must have already been taken.
537 *
538 * Note that if states contains more than one flag it MUST contain
539 * BOOTM_STATE_START, since this handles and consumes the command line args.
540 *
541 * Also note that aside from boot_os_fn functions and bootm_load_os no other
542 * functions we store the return value of in 'ret' may use a negative return
543 * value, without special handling.
544 *
545 * @param cmdtp Pointer to bootm command table entry
546 * @param flag Command flags (CMD_FLAG_...)
547 * @param argc Number of subcommand arguments (0 = no arguments)
548 * @param argv Arguments
549 * @param states Mask containing states to run (BOOTM_STATE_...)
550 * @param images Image header information
551 * @param boot_progress 1 to show boot progress, 0 to not do this
552 * @return 0 if ok, something else on error. Some errors will cause this
553 * function to perform a reboot! If states contains BOOTM_STATE_OS_GO
554 * then the intent is to boot an OS, so this function will not return
555 * unless the image type is standalone.
556 */
Simon Glassed38aef2020-05-10 11:40:03 -0600557int do_bootm_states(struct cmd_tbl *cmdtp, int flag, int argc,
558 char *const argv[], int states, bootm_headers_t *images,
559 int boot_progress)
Simon Glass3b5866d2014-06-12 07:24:46 -0600560{
561 boot_os_fn *boot_fn;
562 ulong iflag = 0;
563 int ret = 0, need_boot_fn;
564
565 images->state |= states;
566
567 /*
568 * Work through the states and see how far we get. We stop on
569 * any error.
570 */
571 if (states & BOOTM_STATE_START)
572 ret = bootm_start(cmdtp, flag, argc, argv);
573
574 if (!ret && (states & BOOTM_STATE_FINDOS))
575 ret = bootm_find_os(cmdtp, flag, argc, argv);
576
Zubair Lutfullah Kakakhel31eb47d2016-09-09 09:18:58 +0100577 if (!ret && (states & BOOTM_STATE_FINDOTHER))
Simon Glass3b5866d2014-06-12 07:24:46 -0600578 ret = bootm_find_other(cmdtp, flag, argc, argv);
Simon Glass3b5866d2014-06-12 07:24:46 -0600579
580 /* Load the OS */
581 if (!ret && (states & BOOTM_STATE_LOADOS)) {
Simon Glass3b5866d2014-06-12 07:24:46 -0600582 iflag = bootm_disable_interrupts();
Tom Rini6c96f5d2018-05-01 12:32:37 -0400583 ret = bootm_load_os(images, 0);
584 if (ret && ret != BOOTM_ERR_OVERLAP)
Simon Glass3b5866d2014-06-12 07:24:46 -0600585 goto err;
586 else if (ret == BOOTM_ERR_OVERLAP)
587 ret = 0;
Simon Glass3b5866d2014-06-12 07:24:46 -0600588 }
589
590 /* Relocate the ramdisk */
591#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
592 if (!ret && (states & BOOTM_STATE_RAMDISK)) {
593 ulong rd_len = images->rd_end - images->rd_start;
594
595 ret = boot_ramdisk_high(&images->lmb, images->rd_start,
596 rd_len, &images->initrd_start, &images->initrd_end);
597 if (!ret) {
Simon Glass4d949a22017-08-03 12:22:10 -0600598 env_set_hex("initrd_start", images->initrd_start);
599 env_set_hex("initrd_end", images->initrd_end);
Simon Glass3b5866d2014-06-12 07:24:46 -0600600 }
601 }
602#endif
Simon Glass8b426922016-02-22 22:55:45 -0700603#if IMAGE_ENABLE_OF_LIBFDT && defined(CONFIG_LMB)
Simon Glass3b5866d2014-06-12 07:24:46 -0600604 if (!ret && (states & BOOTM_STATE_FDT)) {
605 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr);
606 ret = boot_relocate_fdt(&images->lmb, &images->ft_addr,
607 &images->ft_len);
608 }
609#endif
610
611 /* From now on, we need the OS boot function */
612 if (ret)
613 return ret;
614 boot_fn = bootm_os_get_boot_func(images->os.os);
615 need_boot_fn = states & (BOOTM_STATE_OS_CMDLINE |
616 BOOTM_STATE_OS_BD_T | BOOTM_STATE_OS_PREP |
617 BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO);
618 if (boot_fn == NULL && need_boot_fn) {
619 if (iflag)
620 enable_interrupts();
621 printf("ERROR: booting os '%s' (%d) is not supported\n",
622 genimg_get_os_name(images->os.os), images->os.os);
623 bootstage_error(BOOTSTAGE_ID_CHECK_BOOT_OS);
624 return 1;
625 }
626
Hector Palacios8f9cc4c2016-07-11 12:34:37 +0200627
Simon Glass3b5866d2014-06-12 07:24:46 -0600628 /* Call various other states that are not generally used */
629 if (!ret && (states & BOOTM_STATE_OS_CMDLINE))
630 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, images);
631 if (!ret && (states & BOOTM_STATE_OS_BD_T))
632 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, images);
Hector Palacios8f9cc4c2016-07-11 12:34:37 +0200633 if (!ret && (states & BOOTM_STATE_OS_PREP)) {
Simon Glass2eab0172020-11-05 10:33:39 -0700634 if (images->os.os == IH_OS_LINUX) {
635 ret = fixup_silent_linux();
636 if (ret) {
637 printf("Cmdline setup failed (err=%d)\n", ret);
638 ret = CMD_RET_FAILURE;
639 goto err;
640 }
641 }
Simon Glass3b5866d2014-06-12 07:24:46 -0600642 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, images);
Hector Palacios8f9cc4c2016-07-11 12:34:37 +0200643 }
Simon Glass3b5866d2014-06-12 07:24:46 -0600644
645#ifdef CONFIG_TRACE
646 /* Pretend to run the OS, then run a user command */
647 if (!ret && (states & BOOTM_STATE_OS_FAKE_GO)) {
Simon Glass64b723f2017-08-03 12:22:12 -0600648 char *cmd_list = env_get("fakegocmd");
Simon Glass3b5866d2014-06-12 07:24:46 -0600649
650 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_FAKE_GO,
651 images, boot_fn);
652 if (!ret && cmd_list)
653 ret = run_command_list(cmd_list, -1, flag);
654 }
655#endif
656
657 /* Check for unsupported subcommand. */
658 if (ret) {
659 puts("subcommand not supported\n");
660 return ret;
661 }
662
663 /* Now run the OS! We hope this doesn't return */
664 if (!ret && (states & BOOTM_STATE_OS_GO))
665 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_GO,
666 images, boot_fn);
667
668 /* Deal with any fallout */
669err:
670 if (iflag)
671 enable_interrupts();
672
673 if (ret == BOOTM_ERR_UNIMPLEMENTED)
674 bootstage_error(BOOTSTAGE_ID_DECOMP_UNIMPL);
675 else if (ret == BOOTM_ERR_RESET)
676 do_reset(cmdtp, flag, argc, argv);
677
678 return ret;
679}
680
Tom Rinic220bd92019-05-23 07:14:07 -0400681#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Simon Glass3b5866d2014-06-12 07:24:46 -0600682/**
683 * image_get_kernel - verify legacy format kernel image
684 * @img_addr: in RAM address of the legacy format image to be verified
685 * @verify: data CRC verification flag
686 *
687 * image_get_kernel() verifies legacy image integrity and returns pointer to
688 * legacy image header if image verification was completed successfully.
689 *
690 * returns:
691 * pointer to a legacy image header if valid image was found
692 * otherwise return NULL
693 */
694static image_header_t *image_get_kernel(ulong img_addr, int verify)
695{
696 image_header_t *hdr = (image_header_t *)img_addr;
697
698 if (!image_check_magic(hdr)) {
699 puts("Bad Magic Number\n");
700 bootstage_error(BOOTSTAGE_ID_CHECK_MAGIC);
701 return NULL;
702 }
703 bootstage_mark(BOOTSTAGE_ID_CHECK_HEADER);
704
705 if (!image_check_hcrc(hdr)) {
706 puts("Bad Header Checksum\n");
707 bootstage_error(BOOTSTAGE_ID_CHECK_HEADER);
708 return NULL;
709 }
710
711 bootstage_mark(BOOTSTAGE_ID_CHECK_CHECKSUM);
712 image_print_contents(hdr);
713
714 if (verify) {
715 puts(" Verifying Checksum ... ");
716 if (!image_check_dcrc(hdr)) {
717 printf("Bad Data CRC\n");
718 bootstage_error(BOOTSTAGE_ID_CHECK_CHECKSUM);
719 return NULL;
720 }
721 puts("OK\n");
722 }
723 bootstage_mark(BOOTSTAGE_ID_CHECK_ARCH);
724
725 if (!image_check_target_arch(hdr)) {
726 printf("Unsupported Architecture 0x%x\n", image_get_arch(hdr));
727 bootstage_error(BOOTSTAGE_ID_CHECK_ARCH);
728 return NULL;
729 }
730 return hdr;
731}
732#endif
733
734/**
735 * boot_get_kernel - find kernel image
736 * @os_data: pointer to a ulong variable, will hold os data start address
737 * @os_len: pointer to a ulong variable, will hold os data length
738 *
739 * boot_get_kernel() tries to find a kernel image, verifies its integrity
740 * and locates kernel data.
741 *
742 * returns:
743 * pointer to image header if valid image was found, plus kernel start
744 * address and length, otherwise NULL
745 */
Simon Glassed38aef2020-05-10 11:40:03 -0600746static const void *boot_get_kernel(struct cmd_tbl *cmdtp, int flag, int argc,
747 char *const argv[], bootm_headers_t *images,
Simon Glass3b5866d2014-06-12 07:24:46 -0600748 ulong *os_data, ulong *os_len)
749{
Tom Rinic220bd92019-05-23 07:14:07 -0400750#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Simon Glass3b5866d2014-06-12 07:24:46 -0600751 image_header_t *hdr;
752#endif
753 ulong img_addr;
754 const void *buf;
Simon Glass3b5866d2014-06-12 07:24:46 -0600755 const char *fit_uname_config = NULL;
756 const char *fit_uname_kernel = NULL;
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700757#if IMAGE_ENABLE_FIT
Simon Glass3b5866d2014-06-12 07:24:46 -0600758 int os_noffset;
759#endif
760
Bryan Wuc82ea372014-08-15 16:51:39 -0700761 img_addr = genimg_get_kernel_addr_fit(argc < 1 ? NULL : argv[0],
762 &fit_uname_config,
763 &fit_uname_kernel);
Simon Glass3b5866d2014-06-12 07:24:46 -0600764
765 bootstage_mark(BOOTSTAGE_ID_CHECK_MAGIC);
766
Simon Glass3b5866d2014-06-12 07:24:46 -0600767 /* check image type, for FIT images get FIT kernel node */
768 *os_data = *os_len = 0;
769 buf = map_sysmem(img_addr, 0);
770 switch (genimg_get_format(buf)) {
Tom Rinic220bd92019-05-23 07:14:07 -0400771#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Simon Glass3b5866d2014-06-12 07:24:46 -0600772 case IMAGE_FORMAT_LEGACY:
773 printf("## Booting kernel from Legacy Image at %08lx ...\n",
774 img_addr);
775 hdr = image_get_kernel(img_addr, images->verify);
776 if (!hdr)
777 return NULL;
778 bootstage_mark(BOOTSTAGE_ID_CHECK_IMAGETYPE);
779
780 /* get os_data and os_len */
781 switch (image_get_type(hdr)) {
782 case IH_TYPE_KERNEL:
783 case IH_TYPE_KERNEL_NOLOAD:
784 *os_data = image_get_data(hdr);
785 *os_len = image_get_data_size(hdr);
786 break;
787 case IH_TYPE_MULTI:
788 image_multi_getimg(hdr, 0, os_data, os_len);
789 break;
790 case IH_TYPE_STANDALONE:
791 *os_data = image_get_data(hdr);
792 *os_len = image_get_data_size(hdr);
793 break;
794 default:
795 printf("Wrong Image Type for %s command\n",
796 cmdtp->name);
797 bootstage_error(BOOTSTAGE_ID_CHECK_IMAGETYPE);
798 return NULL;
799 }
800
801 /*
802 * copy image header to allow for image overwrites during
803 * kernel decompression.
804 */
805 memmove(&images->legacy_hdr_os_copy, hdr,
806 sizeof(image_header_t));
807
808 /* save pointer to image header */
809 images->legacy_hdr_os = hdr;
810
811 images->legacy_hdr_valid = 1;
812 bootstage_mark(BOOTSTAGE_ID_DECOMP_IMAGE);
813 break;
814#endif
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700815#if IMAGE_ENABLE_FIT
Simon Glass3b5866d2014-06-12 07:24:46 -0600816 case IMAGE_FORMAT_FIT:
Simon Glassa0c0b632014-06-12 07:24:47 -0600817 os_noffset = fit_image_load(images, img_addr,
Simon Glass3b5866d2014-06-12 07:24:46 -0600818 &fit_uname_kernel, &fit_uname_config,
819 IH_ARCH_DEFAULT, IH_TYPE_KERNEL,
820 BOOTSTAGE_ID_FIT_KERNEL_START,
821 FIT_LOAD_IGNORED, os_data, os_len);
822 if (os_noffset < 0)
823 return NULL;
824
825 images->fit_hdr_os = map_sysmem(img_addr, 0);
826 images->fit_uname_os = fit_uname_kernel;
827 images->fit_uname_cfg = fit_uname_config;
828 images->fit_noffset_os = os_noffset;
829 break;
830#endif
831#ifdef CONFIG_ANDROID_BOOT_IMAGE
832 case IMAGE_FORMAT_ANDROID:
833 printf("## Booting Android Image at 0x%08lx ...\n", img_addr);
Simon Glass95040102014-06-12 07:24:48 -0600834 if (android_image_get_kernel(buf, images->verify,
Simon Glass3b5866d2014-06-12 07:24:46 -0600835 os_data, os_len))
836 return NULL;
837 break;
838#endif
839 default:
840 printf("Wrong Image Format for %s command\n", cmdtp->name);
841 bootstage_error(BOOTSTAGE_ID_FIT_KERNEL_INFO);
842 return NULL;
843 }
844
845 debug(" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
846 *os_data, *os_len, *os_len);
847
848 return buf;
849}
Heinrich Schuchardtaa0b11b2019-01-08 18:13:06 +0100850
851/**
852 * switch_to_non_secure_mode() - switch to non-secure mode
853 *
854 * This routine is overridden by architectures requiring this feature.
855 */
856void __weak switch_to_non_secure_mode(void)
857{
858}
859
Simon Glassa51991d2014-06-12 07:24:53 -0600860#else /* USE_HOSTCC */
861
Fabrice Fontained00d6b52019-05-03 22:37:05 +0200862#if defined(CONFIG_FIT_SIGNATURE)
Simon Glass81d13872020-03-18 11:44:02 -0600863static int bootm_host_load_image(const void *fit, int req_image_type,
864 int cfg_noffset)
Simon Glassa51991d2014-06-12 07:24:53 -0600865{
866 const char *fit_uname_config = NULL;
867 ulong data, len;
868 bootm_headers_t images;
869 int noffset;
870 ulong load_end;
871 uint8_t image_type;
872 uint8_t imape_comp;
873 void *load_buf;
874 int ret;
875
Simon Glass81d13872020-03-18 11:44:02 -0600876 fit_uname_config = fdt_get_name(fit, cfg_noffset, NULL);
Simon Glassa51991d2014-06-12 07:24:53 -0600877 memset(&images, '\0', sizeof(images));
878 images.verify = 1;
879 noffset = fit_image_load(&images, (ulong)fit,
880 NULL, &fit_uname_config,
881 IH_ARCH_DEFAULT, req_image_type, -1,
882 FIT_LOAD_IGNORED, &data, &len);
883 if (noffset < 0)
884 return noffset;
885 if (fit_image_get_type(fit, noffset, &image_type)) {
886 puts("Can't get image type!\n");
887 return -EINVAL;
888 }
889
890 if (fit_image_get_comp(fit, noffset, &imape_comp)) {
891 puts("Can't get image compression!\n");
892 return -EINVAL;
893 }
894
895 /* Allow the image to expand by a factor of 4, should be safe */
896 load_buf = malloc((1 << 20) + len * 4);
Julius Werner47ef9862019-07-24 19:37:54 -0700897 ret = image_decomp(imape_comp, 0, data, image_type, load_buf,
898 (void *)data, len, CONFIG_SYS_BOOTM_LEN,
899 &load_end);
Simon Glassa51991d2014-06-12 07:24:53 -0600900 free(load_buf);
Simon Glass5aeccc22014-12-02 13:17:33 -0700901
Julius Werner47ef9862019-07-24 19:37:54 -0700902 if (ret) {
903 ret = handle_decomp_error(imape_comp, load_end - 0, ret);
904 if (ret != BOOTM_ERR_UNIMPLEMENTED)
905 return ret;
906 }
Simon Glassa51991d2014-06-12 07:24:53 -0600907
908 return 0;
909}
910
911int bootm_host_load_images(const void *fit, int cfg_noffset)
912{
913 static uint8_t image_types[] = {
914 IH_TYPE_KERNEL,
915 IH_TYPE_FLATDT,
916 IH_TYPE_RAMDISK,
917 };
918 int err = 0;
919 int i;
920
921 for (i = 0; i < ARRAY_SIZE(image_types); i++) {
922 int ret;
923
Simon Glass81d13872020-03-18 11:44:02 -0600924 ret = bootm_host_load_image(fit, image_types[i], cfg_noffset);
Simon Glassa51991d2014-06-12 07:24:53 -0600925 if (!err && ret && ret != -ENOENT)
926 err = ret;
927 }
928
929 /* Return the first error we found */
930 return err;
931}
Fabrice Fontained00d6b52019-05-03 22:37:05 +0200932#endif
Simon Glass0232ba72014-06-12 07:24:51 -0600933
934#endif /* ndef USE_HOSTCC */