]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/cmd_bootm.c
common: convert makefiles to Kbuild style
[people/ms/u-boot.git] / common / cmd_bootm.c
CommitLineData
47d1a6e1 1/*
ca95c9df 2 * (C) Copyright 2000-2009
47d1a6e1
WD
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
47d1a6e1
WD
6 */
7
b97a2a0a 8
47d1a6e1
WD
9/*
10 * Boot support
11 */
12#include <common.h>
13#include <watchdog.h>
14#include <command.h>
47d1a6e1
WD
15#include <image.h>
16#include <malloc.h>
a31e091a 17#include <u-boot/zlib.h>
c29fdfc1 18#include <bzlib.h>
7f70e853 19#include <environment.h>
4ed6552f 20#include <lmb.h>
49c3a861 21#include <linux/ctype.h>
47d1a6e1 22#include <asm/byteorder.h>
35e7b0f1 23#include <asm/io.h>
5bf2766b 24#include <linux/compiler.h>
8bde7f77 25
ebb86c4e 26#if defined(CONFIG_CMD_USB)
3d71c81a
MK
27#include <usb.h>
28#endif
29
6d0f6bcf 30#ifdef CONFIG_SYS_HUSH_PARSER
47d1a6e1
WD
31#include <hush.h>
32#endif
33
54f9c866 34#if defined(CONFIG_OF_LIBFDT)
54f9c866
KG
35#include <libfdt.h>
36#include <fdt_support.h>
37#endif
38
fc9c1727 39#ifdef CONFIG_LZMA
fc9c1727 40#include <lzma/LzmaTypes.h>
caf72ff3 41#include <lzma/LzmaDec.h>
fc9c1727
LCM
42#include <lzma/LzmaTools.h>
43#endif /* CONFIG_LZMA */
44
20dde48b
PK
45#ifdef CONFIG_LZO
46#include <linux/lzo.h>
47#endif /* CONFIG_LZO */
48
1ee1180b 49DECLARE_GLOBAL_DATA_PTR;
228f29ac 50
6d0f6bcf
JCPV
51#ifndef CONFIG_SYS_BOOTM_LEN
52#define CONFIG_SYS_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
2abbe075
WD
53#endif
54
321359f2
MB
55#ifdef CONFIG_BZIP2
56extern void bz_internal_error(int);
47d1a6e1
WD
57#endif
58
baa26db4 59#if defined(CONFIG_CMD_IMI)
712fbcf3 60static int image_info(unsigned long addr);
47d1a6e1 61#endif
27b207fd 62
baa26db4 63#if defined(CONFIG_CMD_IMLS)
27b207fd 64#include <flash.h>
ca5def3f 65#include <mtd/cfi_flash.h>
e6f2e902 66extern flash_info_t flash_info[]; /* info for FLASH chips */
8fdf1e0f
VK
67#endif
68
69#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
712fbcf3 70static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
27b207fd
WD
71#endif
72
8fdf1e0f
VK
73#include <linux/err.h>
74#include <nand.h>
75
be2e5a09 76#if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
712fbcf3 77static void fixup_silent_linux(void);
1ee1180b 78#endif
47d1a6e1 79
35e7b0f1 80static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
712fbcf3
SW
81 char * const argv[], bootm_headers_t *images,
82 ulong *os_data, ulong *os_len);
47d1a6e1
WD
83
84/*
85 * Continue booting an OS image; caller already has:
86 * - copied image header to global variable `header'
87 * - checked header magic number, checksums (both header & image),
88 * - verified image architecture (PPC) and type (KERNEL or MULTI),
89 * - loaded (first part of) image to header load address,
90 * - disabled interrupts.
983c72f4 91 *
35fc84fa 92 * @flag: Flags indicating what to do (BOOTM_STATE_...)
983c72f4
SG
93 * @argc: Number of arguments. Note that the arguments are shifted down
94 * so that 0 is the first argument not processed by U-Boot, and
95 * argc is adjusted accordingly. This avoids confusion as to how
96 * many arguments are available for the OS.
97 * @images: Pointers to os/initrd/fdt
98 * @return 1 on error. On success the OS boots so this function does
99 * not return.
47d1a6e1 100 */
712fbcf3 101typedef int boot_os_fn(int flag, int argc, char * const argv[],
983c72f4 102 bootm_headers_t *images);
1ee1180b 103
b1d0db18 104#ifdef CONFIG_BOOTM_LINUX
1ee1180b 105extern boot_os_fn do_bootm_linux;
b1d0db18
KG
106#endif
107#ifdef CONFIG_BOOTM_NETBSD
1ee1180b 108static boot_os_fn do_bootm_netbsd;
b1d0db18 109#endif
f13e7b2e 110#if defined(CONFIG_LYNXKDI)
1ee1180b 111static boot_os_fn do_bootm_lynxkdi;
712fbcf3 112extern void lynxkdi_boot(image_header_t *);
47d1a6e1 113#endif
b1d0db18 114#ifdef CONFIG_BOOTM_RTEMS
1ee1180b 115static boot_os_fn do_bootm_rtems;
b1d0db18 116#endif
3df61957
TL
117#if defined(CONFIG_BOOTM_OSE)
118static boot_os_fn do_bootm_ose;
119#endif
04d41409
SS
120#if defined(CONFIG_BOOTM_PLAN9)
121static boot_os_fn do_bootm_plan9;
122#endif
baa26db4 123#if defined(CONFIG_CMD_ELF)
1ee1180b
MB
124static boot_os_fn do_bootm_vxworks;
125static boot_os_fn do_bootm_qnxelf;
712fbcf3
SW
126int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
127int do_bootelf(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
90253178 128#endif
f5ed9e39
PT
129#if defined(CONFIG_INTEGRITY)
130static boot_os_fn do_bootm_integrity;
131#endif
47d1a6e1 132
0008555f 133static boot_os_fn *boot_os[] = {
b1d0db18 134#ifdef CONFIG_BOOTM_LINUX
be083159 135 [IH_OS_LINUX] = do_bootm_linux,
b1d0db18
KG
136#endif
137#ifdef CONFIG_BOOTM_NETBSD
be083159 138 [IH_OS_NETBSD] = do_bootm_netbsd,
b1d0db18 139#endif
be083159
KG
140#ifdef CONFIG_LYNXKDI
141 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
142#endif
b1d0db18 143#ifdef CONFIG_BOOTM_RTEMS
be083159 144 [IH_OS_RTEMS] = do_bootm_rtems,
b1d0db18 145#endif
3df61957
TL
146#if defined(CONFIG_BOOTM_OSE)
147 [IH_OS_OSE] = do_bootm_ose,
148#endif
04d41409
SS
149#if defined(CONFIG_BOOTM_PLAN9)
150 [IH_OS_PLAN9] = do_bootm_plan9,
151#endif
be083159
KG
152#if defined(CONFIG_CMD_ELF)
153 [IH_OS_VXWORKS] = do_bootm_vxworks,
154 [IH_OS_QNX] = do_bootm_qnxelf,
155#endif
156#ifdef CONFIG_INTEGRITY
157 [IH_OS_INTEGRITY] = do_bootm_integrity,
158#endif
159};
160
dee17768 161bootm_headers_t images; /* pointers to os/initrd/fdt images */
15940c9a 162
3dfad40a 163/* Allow for arch specific config before we boot */
088f1b19 164static void __arch_preboot_os(void)
3dfad40a
KG
165{
166 /* please define platform specific arch_preboot_os() */
167}
168void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
169
476af299 170#define IH_INITRD_ARCH IH_ARCH_DEFAULT
47d1a6e1 171
a16028da 172#ifdef CONFIG_LMB
44f074c7
MV
173static void boot_start_lmb(bootm_headers_t *images)
174{
391fd93a
BB
175 ulong mem_start;
176 phys_size_t mem_size;
47d1a6e1 177
44f074c7 178 lmb_init(&images->lmb);
47d1a6e1 179
d3f2fa0d
KG
180 mem_start = getenv_bootm_low();
181 mem_size = getenv_bootm_size();
47d1a6e1 182
44f074c7 183 lmb_add(&images->lmb, (phys_addr_t)mem_start, mem_size);
47d1a6e1 184
44f074c7
MV
185 arch_lmb_reserve(&images->lmb);
186 board_lmb_reserve(&images->lmb);
187}
a16028da 188#else
35cf5fe5 189#define lmb_reserve(lmb, base, size)
44f074c7 190static inline void boot_start_lmb(bootm_headers_t *images) { }
a16028da 191#endif
a16028da 192
54841ab5 193static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
a16028da 194{
712fbcf3
SW
195 memset((void *)&images, 0, sizeof(images));
196 images.verify = getenv_yesno("verify");
a16028da 197
44f074c7 198 boot_start_lmb(&images);
47d1a6e1 199
573f14fe 200 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_START, "bootm_start");
35fc84fa
SG
201 images.state = BOOTM_STATE_START;
202
203 return 0;
204}
205
206static int bootm_find_os(cmd_tbl_t *cmdtp, int flag, int argc,
207 char * const argv[])
208{
209 const void *os_hdr;
573f14fe 210
5cf746c3 211 /* get kernel image header, start address and length */
712fbcf3 212 os_hdr = boot_get_kernel(cmdtp, flag, argc, argv,
396f635b
KG
213 &images, &images.os.image_start, &images.os.image_len);
214 if (images.os.image_len == 0) {
712fbcf3 215 puts("ERROR: can't get kernel image!\n");
47d1a6e1 216 return 1;
bccae903 217 }
bccae903 218
d5934ad7 219 /* get image parameters */
712fbcf3 220 switch (genimg_get_format(os_hdr)) {
d5934ad7 221 case IMAGE_FORMAT_LEGACY:
712fbcf3
SW
222 images.os.type = image_get_type(os_hdr);
223 images.os.comp = image_get_comp(os_hdr);
224 images.os.os = image_get_os(os_hdr);
bccae903 225
712fbcf3
SW
226 images.os.end = image_get_image_end(os_hdr);
227 images.os.load = image_get_load(os_hdr);
d5934ad7
MB
228 break;
229#if defined(CONFIG_FIT)
230 case IMAGE_FORMAT_FIT:
712fbcf3 231 if (fit_image_get_type(images.fit_hdr_os,
396f635b 232 images.fit_noffset_os, &images.os.type)) {
712fbcf3 233 puts("Can't get image type!\n");
770605e4 234 bootstage_error(BOOTSTAGE_ID_FIT_TYPE);
6986a385
MB
235 return 1;
236 }
47d1a6e1 237
712fbcf3 238 if (fit_image_get_comp(images.fit_hdr_os,
396f635b 239 images.fit_noffset_os, &images.os.comp)) {
712fbcf3 240 puts("Can't get image compression!\n");
770605e4 241 bootstage_error(BOOTSTAGE_ID_FIT_COMPRESSION);
6986a385
MB
242 return 1;
243 }
47d1a6e1 244
712fbcf3 245 if (fit_image_get_os(images.fit_hdr_os,
396f635b 246 images.fit_noffset_os, &images.os.os)) {
712fbcf3 247 puts("Can't get image OS!\n");
770605e4 248 bootstage_error(BOOTSTAGE_ID_FIT_OS);
47d1a6e1
WD
249 return 1;
250 }
47d1a6e1 251
712fbcf3 252 images.os.end = fit_get_end(images.fit_hdr_os);
6986a385 253
712fbcf3 254 if (fit_image_get_load(images.fit_hdr_os, images.fit_noffset_os,
396f635b 255 &images.os.load)) {
712fbcf3 256 puts("Can't get image load address!\n");
770605e4 257 bootstage_error(BOOTSTAGE_ID_FIT_LOADADDR);
6986a385 258 return 1;
b13fb01a
WD
259 }
260 break;
d5934ad7
MB
261#endif
262 default:
712fbcf3 263 puts("ERROR: unknown image format type!\n");
47d1a6e1
WD
264 return 1;
265 }
d5934ad7 266
c160a954
KG
267 /* find kernel entry point */
268 if (images.legacy_hdr_valid) {
712fbcf3 269 images.ep = image_get_ep(&images.legacy_hdr_os_copy);
c160a954
KG
270#if defined(CONFIG_FIT)
271 } else if (images.fit_uname_os) {
35fc84fa
SG
272 int ret;
273
712fbcf3 274 ret = fit_image_get_entry(images.fit_hdr_os,
c19d13b0 275 images.fit_noffset_os, &images.ep);
c160a954 276 if (ret) {
712fbcf3 277 puts("Can't get entry point property!\n");
c160a954
KG
278 return 1;
279 }
280#endif
281 } else {
712fbcf3 282 puts("Could not find kernel entry point!\n");
c160a954
KG
283 return 1;
284 }
285
b9b50e89
SW
286 if (images.os.type == IH_TYPE_KERNEL_NOLOAD) {
287 images.os.load = images.os.image_start;
288 images.ep += images.os.load;
289 }
290
35fc84fa
SG
291 images.os.start = (ulong)os_hdr;
292
293 return 0;
294}
295
225fd8c5
TR
296static int bootm_find_ramdisk(int flag, int argc, char * const argv[])
297{
298 int ret;
299
300 /* find ramdisk */
301 ret = boot_get_ramdisk(argc, argv, &images, IH_INITRD_ARCH,
302 &images.rd_start, &images.rd_end);
303 if (ret) {
304 puts("Ramdisk image is corrupt or invalid\n");
305 return 1;
306 }
307
308 return 0;
309}
310
311#if defined(CONFIG_OF_LIBFDT)
312static int bootm_find_fdt(int flag, int argc, char * const argv[])
35fc84fa
SG
313{
314 int ret;
315
225fd8c5
TR
316 /* find flattened device tree */
317 ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images,
318 &images.ft_addr, &images.ft_len);
319 if (ret) {
320 puts("Could not find a valid device tree\n");
321 return 1;
322 }
323
324 set_working_fdt_addr(images.ft_addr);
325
326 return 0;
327}
328#endif
329
330static int bootm_find_other(cmd_tbl_t *cmdtp, int flag, int argc,
331 char * const argv[])
332{
24de2f4b 333 if (((images.os.type == IH_TYPE_KERNEL) ||
b9b50e89 334 (images.os.type == IH_TYPE_KERNEL_NOLOAD) ||
24de2f4b 335 (images.os.type == IH_TYPE_MULTI)) &&
8b828a8f 336 (images.os.os == IH_OS_LINUX)) {
225fd8c5 337 if (bootm_find_ramdisk(flag, argc, argv))
c4f9419c 338 return 1;
06a09918
KG
339
340#if defined(CONFIG_OF_LIBFDT)
225fd8c5 341 if (bootm_find_fdt(flag, argc, argv))
06a09918 342 return 1;
06a09918 343#endif
c4f9419c
KG
344 }
345
396f635b
KG
346 return 0;
347}
3d71c81a 348
396f635b
KG
349#define BOOTM_ERR_RESET -1
350#define BOOTM_ERR_OVERLAP -2
351#define BOOTM_ERR_UNIMPLEMENTED -3
d366438d
TR
352static int bootm_load_os(bootm_headers_t *images, unsigned long *load_end,
353 int boot_progress)
396f635b 354{
d366438d 355 image_info_t os = images->os;
396f635b
KG
356 uint8_t comp = os.comp;
357 ulong load = os.load;
358 ulong blob_start = os.start;
359 ulong blob_end = os.end;
360 ulong image_start = os.image_start;
361 ulong image_len = os.image_len;
5bf2766b 362 __maybe_unused uint unc_len = CONFIG_SYS_BOOTM_LEN;
d510859b 363 int no_overlap = 0;
aed161e5 364 void *load_buf, *image_buf;
60fdc5f2
MW
365#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
366 int ret;
367#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
3d71c81a 368
712fbcf3 369 const char *type_name = genimg_get_type_name(os.type);
c7de829c 370
315c0ace 371 load_buf = map_sysmem(load, unc_len);
aed161e5 372 image_buf = map_sysmem(image_start, image_len);
d5934ad7 373 switch (comp) {
47d1a6e1 374 case IH_COMP_NONE:
02cf3459 375 if (load == blob_start || load == image_start) {
712fbcf3 376 printf(" XIP %s ... ", type_name);
d510859b 377 no_overlap = 1;
47d1a6e1 378 } else {
712fbcf3 379 printf(" Loading %s ... ", type_name);
aed161e5 380 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
47d1a6e1 381 }
396f635b 382 *load_end = load + image_len;
47d1a6e1 383 break;
44431cab 384#ifdef CONFIG_GZIP
47d1a6e1 385 case IH_COMP_GZIP:
712fbcf3 386 printf(" Uncompressing %s ... ", type_name);
aed161e5 387 if (gunzip(load_buf, unc_len, image_buf, &image_len) != 0) {
712fbcf3
SW
388 puts("GUNZIP: uncompress, out-of-mem or overwrite "
389 "error - must RESET board to recover\n");
396f635b 390 if (boot_progress)
770605e4 391 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
396f635b 392 return BOOTM_ERR_RESET;
47d1a6e1 393 }
7582438c 394
396f635b 395 *load_end = load + image_len;
47d1a6e1 396 break;
44431cab 397#endif /* CONFIG_GZIP */
c29fdfc1
WD
398#ifdef CONFIG_BZIP2
399 case IH_COMP_BZIP2:
712fbcf3 400 printf(" Uncompressing %s ... ", type_name);
5653fc33
WD
401 /*
402 * If we've got less than 4 MB of malloc() space,
403 * use slower decompression algorithm which requires
404 * at most 2300 KB of memory.
405 */
aed161e5
SG
406 int i = BZ2_bzBuffToBuffDecompress(load_buf, &unc_len,
407 image_buf, image_len,
408 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
c29fdfc1 409 if (i != BZ_OK) {
712fbcf3 410 printf("BUNZIP2: uncompress or overwrite error %d "
2682ce8a 411 "- must RESET board to recover\n", i);
396f635b 412 if (boot_progress)
770605e4 413 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
396f635b 414 return BOOTM_ERR_RESET;
c29fdfc1 415 }
7582438c 416
396f635b 417 *load_end = load + unc_len;
c29fdfc1
WD
418 break;
419#endif /* CONFIG_BZIP2 */
fc9c1727 420#ifdef CONFIG_LZMA
78e1e846
MF
421 case IH_COMP_LZMA: {
422 SizeT lzma_len = unc_len;
712fbcf3 423 printf(" Uncompressing %s ... ", type_name);
fc9c1727 424
aed161e5
SG
425 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
426 image_buf, image_len);
78e1e846 427 unc_len = lzma_len;
caf72ff3 428 if (ret != SZ_OK) {
712fbcf3 429 printf("LZMA: uncompress or overwrite error %d "
fc9c1727 430 "- must RESET board to recover\n", ret);
770605e4 431 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
fc9c1727
LCM
432 return BOOTM_ERR_RESET;
433 }
434 *load_end = load + unc_len;
435 break;
78e1e846 436 }
fc9c1727 437#endif /* CONFIG_LZMA */
20dde48b 438#ifdef CONFIG_LZO
628af179
SG
439 case IH_COMP_LZO: {
440 size_t size;
441
712fbcf3 442 printf(" Uncompressing %s ... ", type_name);
20dde48b 443
628af179 444 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
20dde48b 445 if (ret != LZO_E_OK) {
712fbcf3 446 printf("LZO: uncompress or overwrite error %d "
20dde48b
PK
447 "- must RESET board to recover\n", ret);
448 if (boot_progress)
770605e4 449 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
20dde48b
PK
450 return BOOTM_ERR_RESET;
451 }
452
628af179 453 *load_end = load + size;
20dde48b 454 break;
628af179 455 }
20dde48b 456#endif /* CONFIG_LZO */
47d1a6e1 457 default:
712fbcf3 458 printf("Unimplemented compression type %d\n", comp);
396f635b 459 return BOOTM_ERR_UNIMPLEMENTED;
47d1a6e1 460 }
99ffccbd
DC
461
462 flush_cache(load, (*load_end - load) * sizeof(ulong));
463
712fbcf3
SW
464 puts("OK\n");
465 debug(" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
770605e4 466 bootstage_mark(BOOTSTAGE_ID_KERNEL_LOADED);
47d1a6e1 467
d510859b 468 if (!no_overlap && (load < blob_end) && (*load_end > blob_start)) {
712fbcf3
SW
469 debug("images.os.start = 0x%lX, images.os.end = 0x%lx\n",
470 blob_start, blob_end);
471 debug("images.os.load = 0x%lx, load_end = 0x%lx\n", load,
472 *load_end);
47d1a6e1 473
d366438d
TR
474 /* Check what type of image this is. */
475 if (images->legacy_hdr_valid) {
476 if (image_get_type(&images->legacy_hdr_os_copy)
477 == IH_TYPE_MULTI)
478 puts("WARNING: legacy format multi component image overwritten\n");
479 return BOOTM_ERR_OVERLAP;
480 } else {
481 puts("ERROR: new format image overwritten - must RESET the board to recover\n");
482 bootstage_error(BOOTSTAGE_ID_OVERWRITTEN);
483 return BOOTM_ERR_RESET;
484 }
396f635b
KG
485 }
486
487 return 0;
488}
489
35fc84fa 490static int bootm_start_standalone(int argc, char * const argv[])
f97ec30b
DZ
491{
492 char *s;
54841ab5 493 int (*appl)(int, char * const []);
f97ec30b
DZ
494
495 /* Don't start if "autostart" is set to "no" */
496 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
41ef372c 497 setenv_hex("filesize", images.os.image_len);
f97ec30b
DZ
498 return 0;
499 }
6d6f1236 500 appl = (int (*)(int, char * const []))(ulong)ntohl(images.ep);
983c72f4 501 (*appl)(argc, argv);
f97ec30b
DZ
502 return 0;
503}
504
49c3a861
KG
505/* we overload the cmd field with our state machine info instead of a
506 * function pointer */
f74d9bd2 507static cmd_tbl_t cmd_bootm_sub[] = {
49c3a861
KG
508 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
509 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
fca43cc8 510#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
49c3a861
KG
511 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
512#endif
513#ifdef CONFIG_OF_LIBFDT
514 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
515#endif
49c3a861 516 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
224c90d1 517 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
49c3a861 518 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
d0ae31eb 519 U_BOOT_CMD_MKENT(fake, 0, 1, (void *)BOOTM_STATE_OS_FAKE_GO, "", ""),
49c3a861
KG
520 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
521};
522
35fc84fa 523static int boot_selected_os(int argc, char * const argv[], int state,
5ff0d083 524 bootm_headers_t *images, boot_os_fn *boot_fn)
35fc84fa
SG
525{
526 if (images->os.type == IH_TYPE_STANDALONE) {
527 /* This may return when 'autostart' is 'no' */
528 bootm_start_standalone(argc, argv);
529 return 0;
530 }
35fc84fa
SG
531 arch_preboot_os();
532 boot_fn(state, argc, argv, images);
d0ae31eb
SG
533 if (state == BOOTM_STATE_OS_FAKE_GO) /* We expect to return */
534 return 0;
35fc84fa
SG
535 bootstage_error(BOOTSTAGE_ID_BOOT_OS_RETURNED);
536#ifdef DEBUG
537 puts("\n## Control returned to monitor - resetting...\n");
538#endif
539 return BOOTM_ERR_RESET;
540}
541
385501d3
SG
542/**
543 * bootm_disable_interrupts() - Disable interrupts in preparation for load/boot
544 *
545 * @return interrupt flag (0 if interrupts were disabled, non-zero if they were
546 * enabled)
547 */
548static ulong bootm_disable_interrupts(void)
549{
550 ulong iflag;
551
552 /*
553 * We have reached the point of no return: we are going to
554 * overwrite all exception vector code, so we cannot easily
555 * recover from any failures any more...
556 */
557 iflag = disable_interrupts();
558#ifdef CONFIG_NETCONSOLE
559 /* Stop the ethernet stack if NetConsole could have left it up */
560 eth_halt();
8094972d 561 eth_unregister(eth_get_dev());
385501d3
SG
562#endif
563
564#if defined(CONFIG_CMD_USB)
565 /*
566 * turn off USB to prevent the host controller from writing to the
567 * SDRAM while Linux is booting. This could happen (at least for OHCI
568 * controller), because the HCCA (Host Controller Communication Area)
569 * lies within the SDRAM and the host controller writes continously to
570 * this area (as busmaster!). The HccaFrameNumber is for example
571 * updated every 1 ms within the HCCA structure in SDRAM! For more
572 * details see the OpenHCI specification.
573 */
574 usb_stop();
575#endif
576 return iflag;
577}
578
35fc84fa
SG
579/**
580 * Execute selected states of the bootm command.
581 *
582 * Note the arguments to this state must be the first argument, Any 'bootm'
583 * or sub-command arguments must have already been taken.
584 *
585 * Note that if states contains more than one flag it MUST contain
586 * BOOTM_STATE_START, since this handles and consumes the command line args.
587 *
d366438d
TR
588 * Also note that aside from boot_os_fn functions and bootm_load_os no other
589 * functions we store the return value of in 'ret' may use a negative return
590 * value, without special handling.
591 *
35fc84fa
SG
592 * @param cmdtp Pointer to bootm command table entry
593 * @param flag Command flags (CMD_FLAG_...)
594 * @param argc Number of subcommand arguments (0 = no arguments)
595 * @param argv Arguments
596 * @param states Mask containing states to run (BOOTM_STATE_...)
597 * @param images Image header information
598 * @param boot_progress 1 to show boot progress, 0 to not do this
599 * @return 0 if ok, something else on error. Some errors will cause this
600 * function to perform a reboot! If states contains BOOTM_STATE_OS_GO
601 * then the intent is to boot an OS, so this function will not return
602 * unless the image type is standalone.
603 */
604static int do_bootm_states(cmd_tbl_t *cmdtp, int flag, int argc,
605 char * const argv[], int states, bootm_headers_t *images,
606 int boot_progress)
607{
608 boot_os_fn *boot_fn;
609 ulong iflag = 0;
a26913f3 610 int ret = 0, need_boot_fn;
35fc84fa
SG
611
612 images->state |= states;
613
614 /*
615 * Work through the states and see how far we get. We stop on
616 * any error.
617 */
618 if (states & BOOTM_STATE_START)
619 ret = bootm_start(cmdtp, flag, argc, argv);
620
621 if (!ret && (states & BOOTM_STATE_FINDOS))
622 ret = bootm_find_os(cmdtp, flag, argc, argv);
623
624 if (!ret && (states & BOOTM_STATE_FINDOTHER)) {
625 ret = bootm_find_other(cmdtp, flag, argc, argv);
626 argc = 0; /* consume the args */
627 }
628
629 /* Load the OS */
630 if (!ret && (states & BOOTM_STATE_LOADOS)) {
631 ulong load_end;
632
385501d3 633 iflag = bootm_disable_interrupts();
d366438d 634 ret = bootm_load_os(images, &load_end, 0);
d366438d 635 if (ret == 0)
35fc84fa
SG
636 lmb_reserve(&images->lmb, images->os.load,
637 (load_end - images->os.load));
970150a1
TR
638 else if (ret && ret != BOOTM_ERR_OVERLAP)
639 goto err;
d366438d
TR
640 else if (ret == BOOTM_ERR_OVERLAP)
641 ret = 0;
bd4a3997 642#if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
576aacdb
SG
643 if (images->os.os == IH_OS_LINUX)
644 fixup_silent_linux();
645#endif
35fc84fa
SG
646 }
647
648 /* Relocate the ramdisk */
649#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
650 if (!ret && (states & BOOTM_STATE_RAMDISK)) {
651 ulong rd_len = images->rd_end - images->rd_start;
652
653 ret = boot_ramdisk_high(&images->lmb, images->rd_start,
654 rd_len, &images->initrd_start, &images->initrd_end);
655 if (!ret) {
656 setenv_hex("initrd_start", images->initrd_start);
657 setenv_hex("initrd_end", images->initrd_end);
658 }
659 }
660#endif
661#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_LMB)
662 if (!ret && (states & BOOTM_STATE_FDT)) {
663 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr);
664 ret = boot_relocate_fdt(&images->lmb, &images->ft_addr,
665 &images->ft_len);
666 }
667#endif
668
669 /* From now on, we need the OS boot function */
670 if (ret)
671 return ret;
672 boot_fn = boot_os[images->os.os];
a26913f3
SG
673 need_boot_fn = states & (BOOTM_STATE_OS_CMDLINE |
674 BOOTM_STATE_OS_BD_T | BOOTM_STATE_OS_PREP |
675 BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO);
676 if (boot_fn == NULL && need_boot_fn) {
35fc84fa
SG
677 if (iflag)
678 enable_interrupts();
679 printf("ERROR: booting os '%s' (%d) is not supported\n",
680 genimg_get_os_name(images->os.os), images->os.os);
681 bootstage_error(BOOTSTAGE_ID_CHECK_BOOT_OS);
682 return 1;
683 }
684
685 /* Call various other states that are not generally used */
686 if (!ret && (states & BOOTM_STATE_OS_CMDLINE))
687 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, images);
688 if (!ret && (states & BOOTM_STATE_OS_BD_T))
689 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, images);
690 if (!ret && (states & BOOTM_STATE_OS_PREP))
691 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, images);
692
d0ae31eb
SG
693#ifdef CONFIG_TRACE
694 /* Pretend to run the OS, then run a user command */
695 if (!ret && (states & BOOTM_STATE_OS_FAKE_GO)) {
696 char *cmd_list = getenv("fakegocmd");
697
698 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_FAKE_GO,
5ff0d083 699 images, boot_fn);
d0ae31eb
SG
700 if (!ret && cmd_list)
701 ret = run_command_list(cmd_list, -1, flag);
702 }
703#endif
b7a1d134
SG
704
705 /* Check for unsupported subcommand. */
706 if (ret) {
707 puts("subcommand not supported\n");
708 return ret;
709 }
710
35fc84fa 711 /* Now run the OS! We hope this doesn't return */
b7a1d134 712 if (!ret && (states & BOOTM_STATE_OS_GO))
35fc84fa 713 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_GO,
5ff0d083 714 images, boot_fn);
35fc84fa
SG
715
716 /* Deal with any fallout */
d366438d 717err:
35fc84fa
SG
718 if (iflag)
719 enable_interrupts();
d366438d
TR
720
721 if (ret == BOOTM_ERR_UNIMPLEMENTED)
722 bootstage_error(BOOTSTAGE_ID_DECOMP_UNIMPL);
723 else if (ret == BOOTM_ERR_RESET)
724 do_reset(cmdtp, flag, argc, argv);
35fc84fa
SG
725
726 return ret;
727}
728
088f1b19 729static int do_bootm_subcommand(cmd_tbl_t *cmdtp, int flag, int argc,
712fbcf3 730 char * const argv[])
49c3a861
KG
731{
732 int ret = 0;
6d6f1236 733 long state;
49c3a861 734 cmd_tbl_t *c;
49c3a861 735
983c72f4
SG
736 c = find_cmd_tbl(argv[0], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
737 argc--; argv++;
49c3a861
KG
738
739 if (c) {
6d6f1236 740 state = (long)c->cmd;
983c72f4 741 if (state == BOOTM_STATE_START)
35fc84fa 742 state |= BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER;
47e26b1b
WD
743 } else {
744 /* Unrecognized command */
4c12eeb8 745 return CMD_RET_USAGE;
49c3a861
KG
746 }
747
35fc84fa 748 if (state != BOOTM_STATE_START && images.state >= state) {
712fbcf3 749 printf("Trying to execute a command out of order\n");
4c12eeb8 750 return CMD_RET_USAGE;
49c3a861
KG
751 }
752
35fc84fa 753 ret = do_bootm_states(cmdtp, flag, argc, argv, state, &images, 0);
49c3a861
KG
754
755 return ret;
756}
757
396f635b
KG
758/*******************************************************************/
759/* bootm - boot application image from image in memory */
760/*******************************************************************/
be083159 761
712fbcf3 762int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
396f635b 763{
2e5167cc 764#ifdef CONFIG_NEEDS_MANUAL_RELOC
521af04d 765 static int relocated = 0;
be083159 766
be083159
KG
767 if (!relocated) {
768 int i;
58bd77db
DS
769
770 /* relocate boot function table */
be083159 771 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
ca95c9df
DZ
772 if (boot_os[i] != NULL)
773 boot_os[i] += gd->reloc_off;
58bd77db
DS
774
775 /* relocate names of sub-command table */
776 for (i = 0; i < ARRAY_SIZE(cmd_bootm_sub); i++)
777 cmd_bootm_sub[i].name += gd->reloc_off;
778
be083159
KG
779 relocated = 1;
780 }
521af04d 781#endif
396f635b 782
49c3a861 783 /* determine if we have a sub command */
983c72f4
SG
784 argc--; argv++;
785 if (argc > 0) {
49c3a861
KG
786 char *endp;
787
983c72f4
SG
788 simple_strtoul(argv[0], &endp, 16);
789 /* endp pointing to NULL means that argv[0] was just a
49c3a861
KG
790 * valid number, pass it along to the normal bootm processing
791 *
792 * If endp is ':' or '#' assume a FIT identifier so pass
793 * along for normal processing.
794 *
795 * Right now we assume the first arg should never be '-'
796 */
797 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
798 return do_bootm_subcommand(cmdtp, flag, argc, argv);
799 }
800
35fc84fa
SG
801 return do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START |
802 BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER |
3d187b39
TR
803 BOOTM_STATE_LOADOS |
804#if defined(CONFIG_PPC) || defined(CONFIG_MIPS)
805 BOOTM_STATE_OS_CMDLINE |
806#endif
5c427e49
PB
807 BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
808 BOOTM_STATE_OS_GO, &images, 1);
47d1a6e1
WD
809}
810
67d668bf
MF
811int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
812{
813 const char *ep = getenv("autostart");
814
815 if (ep && !strcmp(ep, "yes")) {
816 char *local_args[2];
817 local_args[0] = (char *)cmd;
818 local_args[1] = NULL;
819 printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr);
820 return do_bootm(cmdtp, 0, 1, local_args);
821 }
822
823 return 0;
824}
825
1efd4360 826/**
9a4daad0
MB
827 * image_get_kernel - verify legacy format kernel image
828 * @img_addr: in RAM address of the legacy format image to be verified
829 * @verify: data CRC verification flag
1efd4360 830 *
9a4daad0
MB
831 * image_get_kernel() verifies legacy image integrity and returns pointer to
832 * legacy image header if image verification was completed successfully.
1efd4360
MB
833 *
834 * returns:
9a4daad0
MB
835 * pointer to a legacy image header if valid image was found
836 * otherwise return NULL
1efd4360 837 */
712fbcf3 838static image_header_t *image_get_kernel(ulong img_addr, int verify)
f72da340 839{
1efd4360 840 image_header_t *hdr = (image_header_t *)img_addr;
f72da340 841
1efd4360 842 if (!image_check_magic(hdr)) {
712fbcf3 843 puts("Bad Magic Number\n");
770605e4 844 bootstage_error(BOOTSTAGE_ID_CHECK_MAGIC);
1efd4360
MB
845 return NULL;
846 }
770605e4 847 bootstage_mark(BOOTSTAGE_ID_CHECK_HEADER);
f72da340 848
712fbcf3
SW
849 if (!image_check_hcrc(hdr)) {
850 puts("Bad Header Checksum\n");
770605e4 851 bootstage_error(BOOTSTAGE_ID_CHECK_HEADER);
1efd4360
MB
852 return NULL;
853 }
854
770605e4 855 bootstage_mark(BOOTSTAGE_ID_CHECK_CHECKSUM);
712fbcf3 856 image_print_contents(hdr);
1efd4360
MB
857
858 if (verify) {
712fbcf3
SW
859 puts(" Verifying Checksum ... ");
860 if (!image_check_dcrc(hdr)) {
861 printf("Bad Data CRC\n");
770605e4 862 bootstage_error(BOOTSTAGE_ID_CHECK_CHECKSUM);
1efd4360 863 return NULL;
f72da340 864 }
712fbcf3 865 puts("OK\n");
f72da340 866 }
770605e4 867 bootstage_mark(BOOTSTAGE_ID_CHECK_ARCH);
f72da340 868
712fbcf3
SW
869 if (!image_check_target_arch(hdr)) {
870 printf("Unsupported Architecture 0x%x\n", image_get_arch(hdr));
770605e4 871 bootstage_error(BOOTSTAGE_ID_CHECK_ARCH);
1efd4360
MB
872 return NULL;
873 }
874 return hdr;
f72da340 875}
f72da340 876
5cf746c3 877/**
9a4daad0 878 * boot_get_kernel - find kernel image
5cf746c3
MB
879 * @os_data: pointer to a ulong variable, will hold os data start address
880 * @os_len: pointer to a ulong variable, will hold os data length
881 *
9a4daad0 882 * boot_get_kernel() tries to find a kernel image, verifies its integrity
5cf746c3
MB
883 * and locates kernel data.
884 *
885 * returns:
886 * pointer to image header if valid image was found, plus kernel start
887 * address and length, otherwise NULL
888 */
35e7b0f1 889static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
712fbcf3
SW
890 char * const argv[], bootm_headers_t *images, ulong *os_data,
891 ulong *os_len)
5cf746c3
MB
892{
893 image_header_t *hdr;
894 ulong img_addr;
35e7b0f1 895 const void *buf;
d5934ad7 896#if defined(CONFIG_FIT)
d5934ad7
MB
897 const char *fit_uname_config = NULL;
898 const char *fit_uname_kernel = NULL;
6986a385 899 int os_noffset;
d5934ad7 900#endif
56f94be3 901
d5934ad7 902 /* find out kernel image address */
983c72f4 903 if (argc < 1) {
5cf746c3 904 img_addr = load_addr;
712fbcf3 905 debug("* kernel: default image load address = 0x%08lx\n",
d5934ad7
MB
906 load_addr);
907#if defined(CONFIG_FIT)
983c72f4 908 } else if (fit_parse_conf(argv[0], load_addr, &img_addr,
d5934ad7 909 &fit_uname_config)) {
712fbcf3 910 debug("* kernel: config '%s' from image at 0x%08lx\n",
d5934ad7 911 fit_uname_config, img_addr);
983c72f4 912 } else if (fit_parse_subimage(argv[0], load_addr, &img_addr,
d5934ad7 913 &fit_uname_kernel)) {
712fbcf3 914 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
d5934ad7
MB
915 fit_uname_kernel, img_addr);
916#endif
5cf746c3 917 } else {
983c72f4 918 img_addr = simple_strtoul(argv[0], NULL, 16);
712fbcf3 919 debug("* kernel: cmdline image address = 0x%08lx\n", img_addr);
5cf746c3 920 }
47d1a6e1 921
770605e4 922 bootstage_mark(BOOTSTAGE_ID_CHECK_MAGIC);
56f94be3 923
fff888a1 924 /* copy from dataflash if needed */
712fbcf3 925 img_addr = genimg_get_image(img_addr);
5cf746c3 926
d5934ad7 927 /* check image type, for FIT images get FIT kernel node */
6986a385 928 *os_data = *os_len = 0;
35e7b0f1
SG
929 buf = map_sysmem(img_addr, 0);
930 switch (genimg_get_format(buf)) {
d5934ad7 931 case IMAGE_FORMAT_LEGACY:
712fbcf3 932 printf("## Booting kernel from Legacy Image at %08lx ...\n",
6986a385 933 img_addr);
712fbcf3 934 hdr = image_get_kernel(img_addr, images->verify);
1efd4360 935 if (!hdr)
d5934ad7 936 return NULL;
770605e4 937 bootstage_mark(BOOTSTAGE_ID_CHECK_IMAGETYPE);
d5934ad7 938
6986a385 939 /* get os_data and os_len */
712fbcf3 940 switch (image_get_type(hdr)) {
d5934ad7 941 case IH_TYPE_KERNEL:
b9b50e89 942 case IH_TYPE_KERNEL_NOLOAD:
712fbcf3
SW
943 *os_data = image_get_data(hdr);
944 *os_len = image_get_data_size(hdr);
d5934ad7
MB
945 break;
946 case IH_TYPE_MULTI:
712fbcf3 947 image_multi_getimg(hdr, 0, os_data, os_len);
d5934ad7 948 break;
f97ec30b 949 case IH_TYPE_STANDALONE:
712fbcf3
SW
950 *os_data = image_get_data(hdr);
951 *os_len = image_get_data_size(hdr);
f97ec30b 952 break;
d5934ad7 953 default:
712fbcf3
SW
954 printf("Wrong Image Type for %s command\n",
955 cmdtp->name);
770605e4 956 bootstage_error(BOOTSTAGE_ID_CHECK_IMAGETYPE);
d5934ad7
MB
957 return NULL;
958 }
cb1c4896
MB
959
960 /*
712fbcf3
SW
961 * copy image header to allow for image overwrites during
962 * kernel decompression.
cb1c4896 963 */
712fbcf3
SW
964 memmove(&images->legacy_hdr_os_copy, hdr,
965 sizeof(image_header_t));
cb1c4896
MB
966
967 /* save pointer to image header */
d5934ad7 968 images->legacy_hdr_os = hdr;
47d1a6e1 969
cb1c4896 970 images->legacy_hdr_valid = 1;
770605e4 971 bootstage_mark(BOOTSTAGE_ID_DECOMP_IMAGE);
5cf746c3 972 break;
d5934ad7
MB
973#if defined(CONFIG_FIT)
974 case IMAGE_FORMAT_FIT:
4651800d
SG
975 os_noffset = fit_image_load(images, FIT_KERNEL_PROP,
976 img_addr,
f320a4d8 977 &fit_uname_kernel, &fit_uname_config,
4651800d
SG
978 IH_ARCH_DEFAULT, IH_TYPE_KERNEL,
979 BOOTSTAGE_ID_FIT_KERNEL_START,
980 FIT_LOAD_IGNORED, os_data, os_len);
981 if (os_noffset < 0)
6986a385 982 return NULL;
47d1a6e1 983
4651800d 984 images->fit_hdr_os = map_sysmem(img_addr, 0);
6986a385 985 images->fit_uname_os = fit_uname_kernel;
f320a4d8 986 images->fit_uname_cfg = fit_uname_config;
3dfe1101 987 images->fit_noffset_os = os_noffset;
6986a385 988 break;
9c4c5ae3 989#endif
5cf746c3 990 default:
712fbcf3 991 printf("Wrong Image Format for %s command\n", cmdtp->name);
770605e4 992 bootstage_error(BOOTSTAGE_ID_FIT_KERNEL_INFO);
5cf746c3 993 return NULL;
47d1a6e1
WD
994 }
995
712fbcf3 996 debug(" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
6986a385 997 *os_data, *os_len, *os_len);
47d1a6e1 998
35e7b0f1 999 return buf;
5cf746c3 1000}
98a9c4d4 1001
088f1b19
KP
1002#ifdef CONFIG_SYS_LONGHELP
1003static char bootm_help_text[] =
1ee1180b
MB
1004 "[addr [arg ...]]\n - boot application image stored in memory\n"
1005 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
1006 "\t'arg' can be the address of an initrd image\n"
4a2ad5ff 1007#if defined(CONFIG_OF_LIBFDT)
98a9c4d4 1008 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
5441f61a 1009 "\ta third argument is required which is the address of the\n"
98a9c4d4
MM
1010 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1011 "\tuse a '-' for the second argument. If you do not pass a third\n"
1012 "\ta bd_info struct will be passed instead\n"
98a9c4d4 1013#endif
6986a385
MB
1014#if defined(CONFIG_FIT)
1015 "\t\nFor the new multi component uImage format (FIT) addresses\n"
1016 "\tmust be extened to include component or configuration unit name:\n"
1017 "\taddr:<subimg_uname> - direct component image specification\n"
1018 "\taddr#<conf_uname> - configuration specification\n"
1019 "\tUse iminfo command to get the list of existing component\n"
1020 "\timages and configurations.\n"
1021#endif
49c3a861
KG
1022 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1023 "must be\n"
1024 "issued in the order below (it's ok to not issue all sub-commands):\n"
1025 "\tstart [addr [arg ...]]\n"
1026 "\tloados - load OS image\n"
59af76d9 1027#if defined(CONFIG_SYS_BOOT_RAMDISK_HIGH)
49c3a861
KG
1028 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1029#endif
1030#if defined(CONFIG_OF_LIBFDT)
1031 "\tfdt - relocate flat device tree\n"
1032#endif
49c3a861 1033 "\tcmdline - OS specific command line processing/setup\n"
224c90d1 1034 "\tbdt - OS specific bd_t processing\n"
49c3a861 1035 "\tprep - OS specific prep before relocation or go\n"
088f1b19
KP
1036 "\tgo - start OS";
1037#endif
1038
1039U_BOOT_CMD(
1040 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
1041 "boot application image from memory", bootm_help_text
8bde7f77 1042);
47d1a6e1 1043
1ee1180b
MB
1044/*******************************************************************/
1045/* bootd - boot default image */
1046/*******************************************************************/
baa26db4 1047#if defined(CONFIG_CMD_BOOTD)
712fbcf3 1048int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
47d1a6e1
WD
1049{
1050 int rcode = 0;
47d1a6e1 1051
53071532 1052 if (run_command(getenv("bootcmd"), flag) < 0)
1ee1180b 1053 rcode = 1;
47d1a6e1
WD
1054 return rcode;
1055}
47d1a6e1 1056
0d498393 1057U_BOOT_CMD(
1ee1180b 1058 boot, 1, 1, do_bootd,
2fb2604d 1059 "boot default, i.e., run 'bootcmd'",
a89c33db 1060 ""
9d2b18a0 1061);
47d1a6e1 1062
9d2b18a0 1063/* keep old command name "bootd" for backward compatibility */
0d498393 1064U_BOOT_CMD(
1ee1180b 1065 bootd, 1, 1, do_bootd,
2fb2604d 1066 "boot default, i.e., run 'bootcmd'",
a89c33db 1067 ""
8bde7f77 1068);
47d1a6e1 1069
47d1a6e1 1070#endif
47d1a6e1 1071
47d1a6e1 1072
1ee1180b
MB
1073/*******************************************************************/
1074/* iminfo - print header info for a requested image */
1075/*******************************************************************/
baa26db4 1076#if defined(CONFIG_CMD_IMI)
088f1b19 1077static int do_iminfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
47d1a6e1
WD
1078{
1079 int arg;
1080 ulong addr;
1ee1180b 1081 int rcode = 0;
47d1a6e1 1082
47d1a6e1 1083 if (argc < 2) {
712fbcf3 1084 return image_info(load_addr);
47d1a6e1 1085 }
47d1a6e1 1086
1ee1180b 1087 for (arg = 1; arg < argc; ++arg) {
712fbcf3
SW
1088 addr = simple_strtoul(argv[arg], NULL, 16);
1089 if (image_info(addr) != 0)
1ee1180b 1090 rcode = 1;
47d1a6e1
WD
1091 }
1092 return rcode;
1093}
47d1a6e1 1094
712fbcf3 1095static int image_info(ulong addr)
47d1a6e1 1096{
d5934ad7 1097 void *hdr = (void *)addr;
47d1a6e1 1098
712fbcf3 1099 printf("\n## Checking Image at %08lx ...\n", addr);
47d1a6e1 1100
712fbcf3 1101 switch (genimg_get_format(hdr)) {
d5934ad7 1102 case IMAGE_FORMAT_LEGACY:
712fbcf3
SW
1103 puts(" Legacy image found\n");
1104 if (!image_check_magic(hdr)) {
1105 puts(" Bad Magic Number\n");
d5934ad7
MB
1106 return 1;
1107 }
47d1a6e1 1108
712fbcf3
SW
1109 if (!image_check_hcrc(hdr)) {
1110 puts(" Bad Header Checksum\n");
d5934ad7 1111 return 1;
47d1a6e1
WD
1112 }
1113
712fbcf3 1114 image_print_contents(hdr);
47d1a6e1 1115
712fbcf3
SW
1116 puts(" Verifying Checksum ... ");
1117 if (!image_check_dcrc(hdr)) {
1118 puts(" Bad Data CRC\n");
d5934ad7 1119 return 1;
47d1a6e1 1120 }
712fbcf3 1121 puts("OK\n");
d5934ad7
MB
1122 return 0;
1123#if defined(CONFIG_FIT)
1124 case IMAGE_FORMAT_FIT:
712fbcf3 1125 puts(" FIT image found\n");
47d1a6e1 1126
712fbcf3
SW
1127 if (!fit_check_format(hdr)) {
1128 puts("Bad FIT image format!\n");
e32fea6a 1129 return 1;
47d1a6e1
WD
1130 }
1131
712fbcf3 1132 fit_print_contents(hdr);
a4f24345 1133
b8da8366 1134 if (!fit_all_image_verify(hdr)) {
712fbcf3 1135 puts("Bad hash in FIT image!\n");
a4f24345
BS
1136 return 1;
1137 }
1138
d5934ad7
MB
1139 return 0;
1140#endif
1141 default:
712fbcf3 1142 puts("Unknown image format!\n");
d5934ad7 1143 break;
47d1a6e1
WD
1144 }
1145
d5934ad7 1146 return 1;
47d1a6e1 1147}
0d498393
WD
1148
1149U_BOOT_CMD(
6d0f6bcf 1150 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
2fb2604d 1151 "print header information for application image",
8bde7f77
WD
1152 "addr [addr ...]\n"
1153 " - print header information for application image starting at\n"
1154 " address 'addr' in memory; this includes verification of the\n"
a89c33db 1155 " image contents (magic number, header and payload checksums)"
8bde7f77 1156);
25c751e9 1157#endif
87a449c8 1158
25c751e9 1159
1ee1180b
MB
1160/*******************************************************************/
1161/* imls - list all images found in flash */
1162/*******************************************************************/
baa26db4 1163#if defined(CONFIG_CMD_IMLS)
8fdf1e0f 1164static int do_imls_nor(void)
27b207fd
WD
1165{
1166 flash_info_t *info;
1167 int i, j;
d5934ad7 1168 void *hdr;
25c751e9 1169
1ee1180b 1170 for (i = 0, info = &flash_info[0];
6d0f6bcf 1171 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
25c751e9 1172
27b207fd
WD
1173 if (info->flash_id == FLASH_UNKNOWN)
1174 goto next_bank;
1ee1180b 1175 for (j = 0; j < info->sector_count; ++j) {
25c751e9 1176
d5934ad7
MB
1177 hdr = (void *)info->start[j];
1178 if (!hdr)
b97a2a0a 1179 goto next_sector;
27b207fd 1180
712fbcf3 1181 switch (genimg_get_format(hdr)) {
d5934ad7 1182 case IMAGE_FORMAT_LEGACY:
712fbcf3 1183 if (!image_check_hcrc(hdr))
d5934ad7
MB
1184 goto next_sector;
1185
712fbcf3
SW
1186 printf("Legacy Image at %08lX:\n", (ulong)hdr);
1187 image_print_contents(hdr);
d5934ad7 1188
712fbcf3
SW
1189 puts(" Verifying Checksum ... ");
1190 if (!image_check_dcrc(hdr)) {
1191 puts("Bad Data CRC\n");
d5934ad7 1192 } else {
712fbcf3 1193 puts("OK\n");
d5934ad7
MB
1194 }
1195 break;
1196#if defined(CONFIG_FIT)
1197 case IMAGE_FORMAT_FIT:
712fbcf3 1198 if (!fit_check_format(hdr))
e32fea6a
MB
1199 goto next_sector;
1200
712fbcf3
SW
1201 printf("FIT Image at %08lX:\n", (ulong)hdr);
1202 fit_print_contents(hdr);
d5934ad7 1203 break;
213bf8c8 1204#endif
d5934ad7 1205 default:
27b207fd 1206 goto next_sector;
25c751e9 1207 }
87a449c8 1208
bdccc4fe 1209next_sector: ;
c76f951a 1210 }
bdccc4fe 1211next_bank: ;
27b207fd 1212 }
8fdf1e0f
VK
1213 return 0;
1214}
1215#endif
1216
1217#if defined(CONFIG_CMD_IMLS_NAND)
1218static int nand_imls_legacyimage(nand_info_t *nand, int nand_dev, loff_t off,
1219 size_t len)
1220{
1221 void *imgdata;
1222 int ret;
1223
1224 imgdata = malloc(len);
1225 if (!imgdata) {
1226 printf("May be a Legacy Image at NAND device %d offset %08llX:\n",
1227 nand_dev, off);
1228 printf(" Low memory(cannot allocate memory for image)\n");
1229 return -ENOMEM;
1230 }
1231
1232 ret = nand_read_skip_bad(nand, off, &len,
1233 imgdata);
1234 if (ret < 0 && ret != -EUCLEAN) {
1235 free(imgdata);
1236 return ret;
1237 }
1238
1239 if (!image_check_hcrc(imgdata)) {
1240 free(imgdata);
1241 return 0;
1242 }
1243
1244 printf("Legacy Image at NAND device %d offset %08llX:\n",
1245 nand_dev, off);
1246 image_print_contents(imgdata);
1247
1248 puts(" Verifying Checksum ... ");
1249 if (!image_check_dcrc(imgdata))
1250 puts("Bad Data CRC\n");
1251 else
1252 puts("OK\n");
1253
1254 free(imgdata);
1255
1256 return 0;
1257}
1258
1259static int nand_imls_fitimage(nand_info_t *nand, int nand_dev, loff_t off,
1260 size_t len)
1261{
1262 void *imgdata;
1263 int ret;
1264
1265 imgdata = malloc(len);
1266 if (!imgdata) {
1267 printf("May be a FIT Image at NAND device %d offset %08llX:\n",
1268 nand_dev, off);
1269 printf(" Low memory(cannot allocate memory for image)\n");
1270 return -ENOMEM;
1271 }
1272
1273 ret = nand_read_skip_bad(nand, off, &len,
1274 imgdata);
1275 if (ret < 0 && ret != -EUCLEAN) {
1276 free(imgdata);
1277 return ret;
1278 }
1279
1280 if (!fit_check_format(imgdata)) {
1281 free(imgdata);
1282 return 0;
1283 }
1284
1285 printf("FIT Image at NAND device %d offset %08llX:\n", nand_dev, off);
1286
1287 fit_print_contents(imgdata);
1288 free(imgdata);
1289
1290 return 0;
1291}
1292
1293static int do_imls_nand(void)
1294{
1295 nand_info_t *nand;
1296 int nand_dev = nand_curr_device;
1297 size_t len;
1298 loff_t off;
1299 u32 buffer[16];
1300
1301 if (nand_dev < 0 || nand_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
1302 puts("\nNo NAND devices available\n");
1303 return -ENODEV;
1304 }
1305
1306 printf("\n");
1307
1308 for (nand_dev = 0; nand_dev < CONFIG_SYS_MAX_NAND_DEVICE; nand_dev++) {
1309 nand = &nand_info[nand_dev];
1310 if (!nand->name || !nand->size)
1311 continue;
1312
1313 for (off = 0; off < nand->size; off += nand->erasesize) {
1314 const image_header_t *header;
1315 int ret;
1316
1317 if (nand_block_isbad(nand, off))
1318 continue;
1319
1320 len = sizeof(buffer);
1321
1322 ret = nand_read(nand, off, &len, (u8 *)buffer);
1323 if (ret < 0 && ret != -EUCLEAN) {
1324 printf("NAND read error %d at offset %08llX\n",
1325 ret, off);
1326 continue;
1327 }
1328
1329 switch (genimg_get_format(buffer)) {
1330 case IMAGE_FORMAT_LEGACY:
1331 header = (const image_header_t *)buffer;
1332
1333 len = image_get_image_size(header);
1334 nand_imls_legacyimage(nand, nand_dev, off, len);
1335 break;
1336#if defined(CONFIG_FIT)
1337 case IMAGE_FORMAT_FIT:
1338 len = fit_get_size(buffer);
1339 nand_imls_fitimage(nand, nand_dev, off, len);
1340 break;
1341#endif
1342 }
1343 }
1344 }
1345
1346 return 0;
1347}
1348#endif
1349
1350#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
1351static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1352{
1353 int ret_nor = 0, ret_nand = 0;
1354
1355#if defined(CONFIG_CMD_IMLS)
1356 ret_nor = do_imls_nor();
1357#endif
1358
1359#if defined(CONFIG_CMD_IMLS_NAND)
1360 ret_nand = do_imls_nand();
1361#endif
1362
1363 if (ret_nor)
1364 return ret_nor;
1365
1366 if (ret_nand)
1367 return ret_nand;
c76f951a 1368
27b207fd
WD
1369 return (0);
1370}
c76f951a 1371
27b207fd
WD
1372U_BOOT_CMD(
1373 imls, 1, 1, do_imls,
2fb2604d 1374 "list all images found in flash",
27b207fd 1375 "\n"
8fdf1e0f
VK
1376 " - Prints information about all images found at sector/block\n"
1377 " boundaries in nor/nand flash."
27b207fd 1378);
98a9c4d4 1379#endif
47d1a6e1 1380
1ee1180b 1381/*******************************************************************/
5cf746c3 1382/* helper routines */
1ee1180b 1383/*******************************************************************/
be2e5a09 1384#if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
a558ad71
DA
1385
1386#define CONSOLE_ARG "console="
1387#define CONSOLE_ARG_LEN (sizeof(CONSOLE_ARG) - 1)
1388
3a8653b3 1389static void fixup_silent_linux(void)
1ee1180b 1390{
a558ad71
DA
1391 char *buf;
1392 const char *env_val;
3a8653b3 1393 char *cmdline = getenv("bootargs");
8d51aacd 1394 int want_silent;
47d1a6e1 1395
8d51aacd
SG
1396 /*
1397 * Only fix cmdline when requested. The environment variable can be:
1398 *
1399 * no - we never fixup
1400 * yes - we always fixup
1401 * unset - we rely on the console silent flag
1402 */
1403 want_silent = getenv_yesno("silent_linux");
1404 if (want_silent == 0)
1405 return;
1406 else if (want_silent == -1 && !(gd->flags & GD_FLG_SILENT))
1ee1180b 1407 return;
47d1a6e1 1408
3a8653b3 1409 debug("before silent fix-up: %s\n", cmdline);
a558ad71
DA
1410 if (cmdline && (cmdline[0] != '\0')) {
1411 char *start = strstr(cmdline, CONSOLE_ARG);
1412
1413 /* Allocate space for maximum possible new command line */
1414 buf = malloc(strlen(cmdline) + 1 + CONSOLE_ARG_LEN + 1);
1415 if (!buf) {
1416 debug("%s: out of memory\n", __func__);
1417 return;
1418 }
1419
3a8653b3 1420 if (start) {
a558ad71
DA
1421 char *end = strchr(start, ' ');
1422 int num_start_bytes = start - cmdline + CONSOLE_ARG_LEN;
1423
1424 strncpy(buf, cmdline, num_start_bytes);
1ee1180b 1425 if (end)
a558ad71 1426 strcpy(buf + num_start_bytes, end);
1ee1180b 1427 else
a558ad71 1428 buf[num_start_bytes] = '\0';
1ee1180b 1429 } else {
a558ad71 1430 sprintf(buf, "%s %s", cmdline, CONSOLE_ARG);
47d1a6e1 1431 }
a558ad71 1432 env_val = buf;
47d1a6e1 1433 } else {
a558ad71
DA
1434 buf = NULL;
1435 env_val = CONSOLE_ARG;
e7902122 1436 }
10aaf716 1437
a558ad71
DA
1438 setenv("bootargs", env_val);
1439 debug("after silent fix-up: %s\n", env_val);
1440 free(buf);
1ee1180b
MB
1441}
1442#endif /* CONFIG_SILENT_CONSOLE */
38eb508e 1443
eeaef5e4
SS
1444#if defined(CONFIG_BOOTM_NETBSD) || defined(CONFIG_BOOTM_PLAN9)
1445static void copy_args(char *dest, int argc, char * const argv[], char delim)
1446{
1447 int i;
1448
1449 for (i = 0; i < argc; i++) {
1450 if (i > 0)
1451 *dest++ = delim;
1452 strcpy(dest, argv[i]);
1453 dest += strlen(argv[i]);
1454 }
1455}
1456#endif
38eb508e 1457
1ee1180b
MB
1458/*******************************************************************/
1459/* OS booting routines */
1460/*******************************************************************/
c76f951a 1461
b1d0db18 1462#ifdef CONFIG_BOOTM_NETBSD
712fbcf3 1463static int do_bootm_netbsd(int flag, int argc, char * const argv[],
8a5ea3e6 1464 bootm_headers_t *images)
d791b1dc 1465{
1ee1180b 1466 void (*loader)(bd_t *, image_header_t *, char *, char *);
d5934ad7 1467 image_header_t *os_hdr, *hdr;
f13e7b2e 1468 ulong kernel_data, kernel_len;
1ee1180b
MB
1469 char *consdev;
1470 char *cmdline;
1471
7af26b16
SG
1472 if (flag & BOOTM_STATE_OS_PREP)
1473 return 0;
49c3a861
KG
1474 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1475 return 1;
1476
d5934ad7
MB
1477#if defined(CONFIG_FIT)
1478 if (!images->legacy_hdr_valid) {
712fbcf3 1479 fit_unsupported_reset("NetBSD");
40d7e99d 1480 return 1;
38eb508e
GVB
1481 }
1482#endif
d5934ad7 1483 hdr = images->legacy_hdr_os;
47d1a6e1
WD
1484
1485 /*
1486 * Booting a (NetBSD) kernel image
1487 *
1488 * This process is pretty similar to a standalone application:
1489 * The (first part of an multi-) image must be a stage-2 loader,
1490 * which in turn is responsible for loading & invoking the actual
1491 * kernel. The only differences are the parameters being passed:
1492 * besides the board info strucure, the loader expects a command
1493 * line, the name of the console device, and (optionally) the
1494 * address of the original image header.
1495 */
d5934ad7 1496 os_hdr = NULL;
712fbcf3
SW
1497 if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
1498 image_multi_getimg(hdr, 1, &kernel_data, &kernel_len);
f13e7b2e 1499 if (kernel_len)
d5934ad7 1500 os_hdr = hdr;
f13e7b2e 1501 }
47d1a6e1
WD
1502
1503 consdev = "";
712fbcf3 1504#if defined(CONFIG_8xx_CONS_SMC1)
47d1a6e1 1505 consdev = "smc1";
712fbcf3 1506#elif defined(CONFIG_8xx_CONS_SMC2)
47d1a6e1 1507 consdev = "smc2";
712fbcf3 1508#elif defined(CONFIG_8xx_CONS_SCC2)
47d1a6e1 1509 consdev = "scc2";
712fbcf3 1510#elif defined(CONFIG_8xx_CONS_SCC3)
47d1a6e1
WD
1511 consdev = "scc3";
1512#endif
1513
983c72f4 1514 if (argc > 0) {
47d1a6e1
WD
1515 ulong len;
1516 int i;
1517
983c72f4 1518 for (i = 0, len = 0; i < argc; i += 1)
712fbcf3
SW
1519 len += strlen(argv[i]) + 1;
1520 cmdline = malloc(len);
eeaef5e4 1521 copy_args(cmdline, argc, argv, ' ');
712fbcf3 1522 } else if ((cmdline = getenv("bootargs")) == NULL) {
47d1a6e1
WD
1523 cmdline = "";
1524 }
1525
c160a954 1526 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
47d1a6e1 1527
712fbcf3
SW
1528 printf("## Transferring control to NetBSD stage-2 loader "
1529 "(at address %08lx) ...\n",
47d1a6e1
WD
1530 (ulong)loader);
1531
770605e4 1532 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
47d1a6e1
WD
1533
1534 /*
1535 * NetBSD Stage-2 Loader Parameters:
1536 * r3: ptr to board info data
1537 * r4: image address
1538 * r5: console device
1539 * r6: boot args string
1540 */
712fbcf3 1541 (*loader)(gd->bd, os_hdr, consdev, cmdline);
40d7e99d
KG
1542
1543 return 1;
47d1a6e1 1544}
b1d0db18 1545#endif /* CONFIG_BOOTM_NETBSD*/
47d1a6e1 1546
1ee1180b 1547#ifdef CONFIG_LYNXKDI
712fbcf3 1548static int do_bootm_lynxkdi(int flag, int argc, char * const argv[],
8a5ea3e6 1549 bootm_headers_t *images)
1ee1180b 1550{
cb1c4896 1551 image_header_t *hdr = &images->legacy_hdr_os_copy;
d5934ad7 1552
7af26b16
SG
1553 if (flag & BOOTM_STATE_OS_PREP)
1554 return 0;
49c3a861
KG
1555 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1556 return 1;
1557
d5934ad7
MB
1558#if defined(CONFIG_FIT)
1559 if (!images->legacy_hdr_valid) {
712fbcf3 1560 fit_unsupported_reset("Lynx");
40d7e99d 1561 return 1;
d5934ad7
MB
1562 }
1563#endif
1564
712fbcf3 1565 lynxkdi_boot((image_header_t *)hdr);
40d7e99d
KG
1566
1567 return 1;
1ee1180b
MB
1568}
1569#endif /* CONFIG_LYNXKDI */
1570
b1d0db18 1571#ifdef CONFIG_BOOTM_RTEMS
712fbcf3 1572static int do_bootm_rtems(int flag, int argc, char * const argv[],
8a5ea3e6 1573 bootm_headers_t *images)
1ee1180b 1574{
1ee1180b 1575 void (*entry_point)(bd_t *);
d791b1dc 1576
7af26b16
SG
1577 if (flag & BOOTM_STATE_OS_PREP)
1578 return 0;
49c3a861
KG
1579 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1580 return 1;
1581
d5934ad7
MB
1582#if defined(CONFIG_FIT)
1583 if (!images->legacy_hdr_valid) {
712fbcf3 1584 fit_unsupported_reset("RTEMS");
40d7e99d 1585 return 1;
d5934ad7
MB
1586 }
1587#endif
1588
c160a954 1589 entry_point = (void (*)(bd_t *))images->ep;
d791b1dc 1590
712fbcf3 1591 printf("## Transferring control to RTEMS (at address %08lx) ...\n",
d791b1dc
WD
1592 (ulong)entry_point);
1593
770605e4 1594 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
d791b1dc
WD
1595
1596 /*
1597 * RTEMS Parameters:
1598 * r3: ptr to board info data
1599 */
1ee1180b 1600 (*entry_point)(gd->bd);
40d7e99d
KG
1601
1602 return 1;
d791b1dc 1603}
b1d0db18 1604#endif /* CONFIG_BOOTM_RTEMS */
7f70e853 1605
3df61957 1606#if defined(CONFIG_BOOTM_OSE)
712fbcf3 1607static int do_bootm_ose(int flag, int argc, char * const argv[],
3df61957
TL
1608 bootm_headers_t *images)
1609{
1610 void (*entry_point)(void);
1611
7af26b16
SG
1612 if (flag & BOOTM_STATE_OS_PREP)
1613 return 0;
3df61957
TL
1614 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1615 return 1;
1616
1617#if defined(CONFIG_FIT)
1618 if (!images->legacy_hdr_valid) {
712fbcf3 1619 fit_unsupported_reset("OSE");
3df61957
TL
1620 return 1;
1621 }
1622#endif
1623
1624 entry_point = (void (*)(void))images->ep;
1625
712fbcf3 1626 printf("## Transferring control to OSE (at address %08lx) ...\n",
3df61957
TL
1627 (ulong)entry_point);
1628
770605e4 1629 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
3df61957
TL
1630
1631 /*
1632 * OSE Parameters:
1633 * None
1634 */
1635 (*entry_point)();
1636
1637 return 1;
1638}
1639#endif /* CONFIG_BOOTM_OSE */
1640
04d41409
SS
1641#if defined(CONFIG_BOOTM_PLAN9)
1642static int do_bootm_plan9(int flag, int argc, char * const argv[],
1643 bootm_headers_t *images)
1644{
1645 void (*entry_point)(void);
eeaef5e4 1646 char *s;
04d41409 1647
7af26b16
SG
1648 if (flag & BOOTM_STATE_OS_PREP)
1649 return 0;
04d41409
SS
1650 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1651 return 1;
1652
1653#if defined(CONFIG_FIT)
1654 if (!images->legacy_hdr_valid) {
1655 fit_unsupported_reset("Plan 9");
1656 return 1;
1657 }
1658#endif
1659
eeaef5e4
SS
1660 /* See README.plan9 */
1661 s = getenv("confaddr");
1662 if (s != NULL) {
1663 char *confaddr = (char *)simple_strtoul(s, NULL, 16);
1664
1665 if (argc > 0) {
1666 copy_args(confaddr, argc, argv, '\n');
1667 } else {
1668 s = getenv("bootargs");
1669 if (s != NULL)
1670 strcpy(confaddr, s);
1671 }
1672 }
1673
04d41409
SS
1674 entry_point = (void (*)(void))images->ep;
1675
1676 printf("## Transferring control to Plan 9 (at address %08lx) ...\n",
1677 (ulong)entry_point);
1678
1679 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1680
1681 /*
1682 * Plan 9 Parameters:
1683 * None
1684 */
1685 (*entry_point)();
1686
1687 return 1;
1688}
1689#endif /* CONFIG_BOOTM_PLAN9 */
1690
baa26db4 1691#if defined(CONFIG_CMD_ELF)
712fbcf3 1692static int do_bootm_vxworks(int flag, int argc, char * const argv[],
8a5ea3e6 1693 bootm_headers_t *images)
47d1a6e1 1694{
47d1a6e1 1695 char str[80];
7f70e853 1696
7af26b16
SG
1697 if (flag & BOOTM_STATE_OS_PREP)
1698 return 0;
49c3a861
KG
1699 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1700 return 1;
1701
d5934ad7 1702#if defined(CONFIG_FIT)
cb1c4896 1703 if (!images->legacy_hdr_valid) {
712fbcf3 1704 fit_unsupported_reset("VxWorks");
40d7e99d 1705 return 1;
d5934ad7
MB
1706 }
1707#endif
47d1a6e1 1708
c160a954 1709 sprintf(str, "%lx", images->ep); /* write entry-point into string */
47d1a6e1 1710 setenv("loadaddr", str);
40d7e99d
KG
1711 do_bootvx(NULL, 0, 0, NULL);
1712
1713 return 1;
47d1a6e1
WD
1714}
1715
54841ab5 1716static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
8a5ea3e6 1717 bootm_headers_t *images)
47d1a6e1 1718{
47d1a6e1
WD
1719 char *local_args[2];
1720 char str[16];
d5934ad7 1721
7af26b16
SG
1722 if (flag & BOOTM_STATE_OS_PREP)
1723 return 0;
49c3a861
KG
1724 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1725 return 1;
1726
d5934ad7
MB
1727#if defined(CONFIG_FIT)
1728 if (!images->legacy_hdr_valid) {
712fbcf3 1729 fit_unsupported_reset("QNX");
40d7e99d 1730 return 1;
d5934ad7
MB
1731 }
1732#endif
47d1a6e1 1733
c160a954 1734 sprintf(str, "%lx", images->ep); /* write entry-point into string */
47d1a6e1
WD
1735 local_args[0] = argv[0];
1736 local_args[1] = str; /* and provide it via the arguments */
40d7e99d
KG
1737 do_bootelf(NULL, 0, 2, local_args);
1738
1739 return 1;
47d1a6e1 1740}
90253178 1741#endif
f5ed9e39
PT
1742
1743#ifdef CONFIG_INTEGRITY
712fbcf3 1744static int do_bootm_integrity(int flag, int argc, char * const argv[],
f5ed9e39
PT
1745 bootm_headers_t *images)
1746{
1747 void (*entry_point)(void);
1748
7af26b16
SG
1749 if (flag & BOOTM_STATE_OS_PREP)
1750 return 0;
49c3a861
KG
1751 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1752 return 1;
1753
f5ed9e39
PT
1754#if defined(CONFIG_FIT)
1755 if (!images->legacy_hdr_valid) {
712fbcf3 1756 fit_unsupported_reset("INTEGRITY");
f5ed9e39
PT
1757 return 1;
1758 }
1759#endif
1760
1761 entry_point = (void (*)(void))images->ep;
1762
712fbcf3 1763 printf("## Transferring control to INTEGRITY (at address %08lx) ...\n",
f5ed9e39
PT
1764 (ulong)entry_point);
1765
770605e4 1766 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
f5ed9e39
PT
1767
1768 /*
1769 * INTEGRITY Parameters:
1770 * None
1771 */
1772 (*entry_point)();
1773
1774 return 1;
1775}
1776#endif
44f074c7
MV
1777
1778#ifdef CONFIG_CMD_BOOTZ
1779
a5266d6b 1780int __weak bootz_setup(ulong image, ulong *start, ulong *end)
44f074c7
MV
1781{
1782 /* Please define bootz_setup() for your platform */
1783
1784 puts("Your platform's zImage format isn't supported yet!\n");
1785 return -1;
1786}
44f074c7
MV
1787
1788/*
1789 * zImage booting support
1790 */
1791static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc,
1792 char * const argv[], bootm_headers_t *images)
1793{
1794 int ret;
a5266d6b 1795 ulong zi_start, zi_end;
44f074c7 1796
35fc84fa
SG
1797 ret = do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START,
1798 images, 1);
44f074c7
MV
1799
1800 /* Setup Linux kernel zImage entry point */
2b9599e0 1801 if (!argc) {
44f074c7
MV
1802 images->ep = load_addr;
1803 debug("* kernel: default image load address = 0x%08lx\n",
1804 load_addr);
1805 } else {
2b9599e0 1806 images->ep = simple_strtoul(argv[0], NULL, 16);
44f074c7
MV
1807 debug("* kernel: cmdline image address = 0x%08lx\n",
1808 images->ep);
1809 }
1810
a5266d6b 1811 ret = bootz_setup(images->ep, &zi_start, &zi_end);
44f074c7
MV
1812 if (ret != 0)
1813 return 1;
1814
1815 lmb_reserve(&images->lmb, images->ep, zi_end - zi_start);
1816
225fd8c5
TR
1817 /*
1818 * Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not
1819 * have a header that provide this informaiton.
1820 */
2b9599e0
TR
1821 if (bootm_find_ramdisk(flag, argc, argv))
1822 return 1;
44f074c7 1823
2b9599e0
TR
1824#if defined(CONFIG_OF_LIBFDT)
1825 if (bootm_find_fdt(flag, argc, argv))
1826 return 1;
1827#endif
1828
1829 return 0;
44f074c7
MV
1830}
1831
da620222 1832int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
44f074c7 1833{
35fc84fa 1834 int ret;
44f074c7 1835
2b9599e0
TR
1836 /* Consume 'bootz' */
1837 argc--; argv++;
1838
44f074c7
MV
1839 if (bootz_start(cmdtp, flag, argc, argv, &images))
1840 return 1;
1841
385501d3
SG
1842 /*
1843 * We are doing the BOOTM_STATE_LOADOS state ourselves, so must
1844 * disable interrupts ourselves
1845 */
1846 bootm_disable_interrupts();
1847
fb1b139b 1848 images.os.os = IH_OS_LINUX;
35fc84fa 1849 ret = do_bootm_states(cmdtp, flag, argc, argv,
fb1b139b
SG
1850 BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
1851 BOOTM_STATE_OS_GO,
d0ae31eb 1852 &images, 1);
f8be7d65 1853
35fc84fa 1854 return ret;
44f074c7
MV
1855}
1856
088f1b19
KP
1857#ifdef CONFIG_SYS_LONGHELP
1858static char bootz_help_text[] =
017e1f3f
MV
1859 "[addr [initrd[:size]] [fdt]]\n"
1860 " - boot Linux zImage stored in memory\n"
44f074c7 1861 "\tThe argument 'initrd' is optional and specifies the address\n"
017e1f3f
MV
1862 "\tof the initrd in memory. The optional argument ':size' allows\n"
1863 "\tspecifying the size of RAW initrd.\n"
44f074c7
MV
1864#if defined(CONFIG_OF_LIBFDT)
1865 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
1866 "\ta third argument is required which is the address of the\n"
1867 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1868 "\tuse a '-' for the second argument. If you do not pass a third\n"
1869 "\ta bd_info struct will be passed instead\n"
1870#endif
088f1b19
KP
1871 "";
1872#endif
1873
1874U_BOOT_CMD(
1875 bootz, CONFIG_SYS_MAXARGS, 1, do_bootz,
1876 "boot Linux zImage image from memory", bootz_help_text
44f074c7
MV
1877);
1878#endif /* CONFIG_CMD_BOOTZ */