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