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