MAKEALL: rename coldfire list to m68k to match arch
[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, 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>
8bde7f77 39
ebb86c4e 40#if defined(CONFIG_CMD_USB)
3d71c81a
MK
41#include <usb.h>
42#endif
43
6d0f6bcf 44#ifdef CONFIG_SYS_HUSH_PARSER
47d1a6e1
WD
45#include <hush.h>
46#endif
47
54f9c866
KG
48#if defined(CONFIG_OF_LIBFDT)
49#include <fdt.h>
50#include <libfdt.h>
51#include <fdt_support.h>
52#endif
53
fc9c1727 54#ifdef CONFIG_LZMA
fc9c1727 55#include <lzma/LzmaTypes.h>
caf72ff3 56#include <lzma/LzmaDec.h>
fc9c1727
LCM
57#include <lzma/LzmaTools.h>
58#endif /* CONFIG_LZMA */
59
20dde48b
PK
60#ifdef CONFIG_LZO
61#include <linux/lzo.h>
62#endif /* CONFIG_LZO */
63
1ee1180b 64DECLARE_GLOBAL_DATA_PTR;
228f29ac 65
6d0f6bcf
JCPV
66#ifndef CONFIG_SYS_BOOTM_LEN
67#define CONFIG_SYS_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
2abbe075
WD
68#endif
69
321359f2
MB
70#ifdef CONFIG_BZIP2
71extern void bz_internal_error(int);
47d1a6e1
WD
72#endif
73
baa26db4 74#if defined(CONFIG_CMD_IMI)
47d1a6e1
WD
75static int image_info (unsigned long addr);
76#endif
27b207fd 77
baa26db4 78#if defined(CONFIG_CMD_IMLS)
27b207fd 79#include <flash.h>
ca5def3f 80#include <mtd/cfi_flash.h>
e6f2e902 81extern flash_info_t flash_info[]; /* info for FLASH chips */
54841ab5 82static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
27b207fd
WD
83#endif
84
1ee1180b
MB
85#ifdef CONFIG_SILENT_CONSOLE
86static void fixup_silent_linux (void);
87#endif
47d1a6e1 88
6986a385
MB
89static image_header_t *image_get_kernel (ulong img_addr, int verify);
90#if defined(CONFIG_FIT)
91static int fit_check_kernel (const void *fit, int os_noffset, int verify);
2262cfee
WD
92#endif
93
54841ab5 94static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char * const argv[],
8a5ea3e6 95 bootm_headers_t *images, ulong *os_data, ulong *os_len);
47d1a6e1
WD
96
97/*
98 * Continue booting an OS image; caller already has:
99 * - copied image header to global variable `header'
100 * - checked header magic number, checksums (both header & image),
101 * - verified image architecture (PPC) and type (KERNEL or MULTI),
102 * - loaded (first part of) image to header load address,
103 * - disabled interrupts.
104 */
54841ab5 105typedef int boot_os_fn (int flag, int argc, char * const argv[],
8a5ea3e6 106 bootm_headers_t *images); /* pointers to os/initrd/fdt */
1ee1180b 107
b1d0db18 108#ifdef CONFIG_BOOTM_LINUX
1ee1180b 109extern boot_os_fn do_bootm_linux;
b1d0db18
KG
110#endif
111#ifdef CONFIG_BOOTM_NETBSD
1ee1180b 112static boot_os_fn do_bootm_netbsd;
b1d0db18 113#endif
f13e7b2e 114#if defined(CONFIG_LYNXKDI)
1ee1180b
MB
115static boot_os_fn do_bootm_lynxkdi;
116extern void lynxkdi_boot (image_header_t *);
47d1a6e1 117#endif
b1d0db18 118#ifdef CONFIG_BOOTM_RTEMS
1ee1180b 119static boot_os_fn do_bootm_rtems;
b1d0db18 120#endif
3df61957
TL
121#if defined(CONFIG_BOOTM_OSE)
122static boot_os_fn do_bootm_ose;
123#endif
baa26db4 124#if defined(CONFIG_CMD_ELF)
1ee1180b
MB
125static boot_os_fn do_bootm_vxworks;
126static boot_os_fn do_bootm_qnxelf;
54841ab5
WD
127int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
128int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
90253178 129#endif
f5ed9e39
PT
130#if defined(CONFIG_INTEGRITY)
131static boot_os_fn do_bootm_integrity;
132#endif
47d1a6e1 133
0008555f 134static boot_os_fn *boot_os[] = {
b1d0db18 135#ifdef CONFIG_BOOTM_LINUX
be083159 136 [IH_OS_LINUX] = do_bootm_linux,
b1d0db18
KG
137#endif
138#ifdef CONFIG_BOOTM_NETBSD
be083159 139 [IH_OS_NETBSD] = do_bootm_netbsd,
b1d0db18 140#endif
be083159
KG
141#ifdef CONFIG_LYNXKDI
142 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
143#endif
b1d0db18 144#ifdef CONFIG_BOOTM_RTEMS
be083159 145 [IH_OS_RTEMS] = do_bootm_rtems,
b1d0db18 146#endif
3df61957
TL
147#if defined(CONFIG_BOOTM_OSE)
148 [IH_OS_OSE] = do_bootm_ose,
149#endif
be083159
KG
150#if defined(CONFIG_CMD_ELF)
151 [IH_OS_VXWORKS] = do_bootm_vxworks,
152 [IH_OS_QNX] = do_bootm_qnxelf,
153#endif
154#ifdef CONFIG_INTEGRITY
155 [IH_OS_INTEGRITY] = do_bootm_integrity,
156#endif
157};
158
d5934ad7 159static bootm_headers_t images; /* pointers to os/initrd/fdt images */
15940c9a 160
3dfad40a
KG
161/* Allow for arch specific config before we boot */
162void __arch_preboot_os(void)
163{
164 /* please define platform specific arch_preboot_os() */
165}
166void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
167
c4f9419c
KG
168#if defined(__ARM__)
169 #define IH_INITRD_ARCH IH_ARCH_ARM
170#elif defined(__avr32__)
171 #define IH_INITRD_ARCH IH_ARCH_AVR32
172#elif defined(__bfin__)
173 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
174#elif defined(__I386__)
175 #define IH_INITRD_ARCH IH_ARCH_I386
176#elif defined(__M68K__)
177 #define IH_INITRD_ARCH IH_ARCH_M68K
178#elif defined(__microblaze__)
179 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
180#elif defined(__mips__)
181 #define IH_INITRD_ARCH IH_ARCH_MIPS
c4f9419c
KG
182#elif defined(__nios2__)
183 #define IH_INITRD_ARCH IH_ARCH_NIOS2
184#elif defined(__PPC__)
185 #define IH_INITRD_ARCH IH_ARCH_PPC
186#elif defined(__sh__)
187 #define IH_INITRD_ARCH IH_ARCH_SH
188#elif defined(__sparc__)
189 #define IH_INITRD_ARCH IH_ARCH_SPARC
190#else
191# error Unknown CPU type
192#endif
47d1a6e1 193
a16028da 194static void bootm_start_lmb(void)
47d1a6e1 195{
a16028da 196#ifdef CONFIG_LMB
391fd93a
BB
197 ulong mem_start;
198 phys_size_t mem_size;
47d1a6e1 199
e906cfae 200 lmb_init(&images.lmb);
47d1a6e1 201
d3f2fa0d
KG
202 mem_start = getenv_bootm_low();
203 mem_size = getenv_bootm_size();
47d1a6e1 204
e906cfae 205 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
47d1a6e1 206
76da19df 207 arch_lmb_reserve(&images.lmb);
e906cfae 208 board_lmb_reserve(&images.lmb);
a16028da
MF
209#else
210# define lmb_reserve(lmb, base, size)
211#endif
212}
213
54841ab5 214static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
a16028da
MF
215{
216 void *os_hdr;
217 int ret;
218
219 memset ((void *)&images, 0, sizeof (images));
220 images.verify = getenv_yesno ("verify");
221
222 bootm_start_lmb();
47d1a6e1 223
5cf746c3 224 /* get kernel image header, start address and length */
9a4daad0 225 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
396f635b
KG
226 &images, &images.os.image_start, &images.os.image_len);
227 if (images.os.image_len == 0) {
6986a385 228 puts ("ERROR: can't get kernel image!\n");
47d1a6e1 229 return 1;
bccae903 230 }
bccae903 231
d5934ad7 232 /* get image parameters */
9a4daad0 233 switch (genimg_get_format (os_hdr)) {
d5934ad7 234 case IMAGE_FORMAT_LEGACY:
396f635b
KG
235 images.os.type = image_get_type (os_hdr);
236 images.os.comp = image_get_comp (os_hdr);
237 images.os.os = image_get_os (os_hdr);
bccae903 238
396f635b
KG
239 images.os.end = image_get_image_end (os_hdr);
240 images.os.load = image_get_load (os_hdr);
d5934ad7
MB
241 break;
242#if defined(CONFIG_FIT)
243 case IMAGE_FORMAT_FIT:
3dfe1101 244 if (fit_image_get_type (images.fit_hdr_os,
396f635b 245 images.fit_noffset_os, &images.os.type)) {
6986a385 246 puts ("Can't get image type!\n");
1372cce2 247 show_boot_progress (-109);
6986a385
MB
248 return 1;
249 }
47d1a6e1 250
3dfe1101 251 if (fit_image_get_comp (images.fit_hdr_os,
396f635b 252 images.fit_noffset_os, &images.os.comp)) {
6986a385 253 puts ("Can't get image compression!\n");
1372cce2 254 show_boot_progress (-110);
6986a385
MB
255 return 1;
256 }
47d1a6e1 257
3dfe1101 258 if (fit_image_get_os (images.fit_hdr_os,
396f635b 259 images.fit_noffset_os, &images.os.os)) {
6986a385 260 puts ("Can't get image OS!\n");
1372cce2 261 show_boot_progress (-111);
47d1a6e1
WD
262 return 1;
263 }
47d1a6e1 264
396f635b 265 images.os.end = fit_get_end (images.fit_hdr_os);
6986a385 266
3dfe1101 267 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
396f635b 268 &images.os.load)) {
6986a385 269 puts ("Can't get image load address!\n");
1372cce2 270 show_boot_progress (-112);
6986a385 271 return 1;
b13fb01a
WD
272 }
273 break;
d5934ad7
MB
274#endif
275 default:
276 puts ("ERROR: unknown image format type!\n");
47d1a6e1
WD
277 return 1;
278 }
d5934ad7 279
c160a954
KG
280 /* find kernel entry point */
281 if (images.legacy_hdr_valid) {
282 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
283#if defined(CONFIG_FIT)
284 } else if (images.fit_uname_os) {
285 ret = fit_image_get_entry (images.fit_hdr_os,
286 images.fit_noffset_os, &images.ep);
287 if (ret) {
288 puts ("Can't get entry point property!\n");
289 return 1;
290 }
291#endif
292 } else {
293 puts ("Could not find kernel entry point!\n");
294 return 1;
295 }
296
24de2f4b
HS
297 if (((images.os.type == IH_TYPE_KERNEL) ||
298 (images.os.type == IH_TYPE_MULTI)) &&
8b828a8f 299 (images.os.os == IH_OS_LINUX)) {
c4f9419c
KG
300 /* find ramdisk */
301 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
302 &images.rd_start, &images.rd_end);
303 if (ret) {
ea86b9e6 304 puts ("Ramdisk image is corrupt or invalid\n");
c4f9419c
KG
305 return 1;
306 }
06a09918
KG
307
308#if defined(CONFIG_OF_LIBFDT)
309 /* find flattened device tree */
310 ret = boot_get_fdt (flag, argc, argv, &images,
311 &images.ft_addr, &images.ft_len);
312 if (ret) {
313 puts ("Could not find a valid device tree\n");
314 return 1;
315 }
54f9c866
KG
316
317 set_working_fdt_addr(images.ft_addr);
06a09918 318#endif
c4f9419c
KG
319 }
320
396f635b 321 images.os.start = (ulong)os_hdr;
49c3a861 322 images.state = BOOTM_STATE_START;
47d1a6e1 323
396f635b
KG
324 return 0;
325}
3d71c81a 326
396f635b
KG
327#define BOOTM_ERR_RESET -1
328#define BOOTM_ERR_OVERLAP -2
329#define BOOTM_ERR_UNIMPLEMENTED -3
330static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
331{
332 uint8_t comp = os.comp;
333 ulong load = os.load;
334 ulong blob_start = os.start;
335 ulong blob_end = os.end;
336 ulong image_start = os.image_start;
337 ulong image_len = os.image_len;
6d0f6bcf 338 uint unc_len = CONFIG_SYS_BOOTM_LEN;
60fdc5f2
MW
339#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
340 int ret;
341#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
3d71c81a 342
396f635b 343 const char *type_name = genimg_get_type_name (os.type);
c7de829c 344
d5934ad7 345 switch (comp) {
47d1a6e1 346 case IH_COMP_NONE:
02cf3459 347 if (load == blob_start || load == image_start) {
42b73e8e 348 printf (" XIP %s ... ", type_name);
47d1a6e1 349 } else {
42b73e8e 350 printf (" Loading %s ... ", type_name);
54fa2c5b
LJ
351 memmove_wd ((void *)load, (void *)image_start,
352 image_len, CHUNKSZ);
47d1a6e1 353 }
396f635b 354 *load_end = load + image_len;
2e752be3 355 puts("OK\n");
47d1a6e1 356 break;
44431cab 357#ifdef CONFIG_GZIP
47d1a6e1 358 case IH_COMP_GZIP:
42b73e8e 359 printf (" Uncompressing %s ... ", type_name);
396f635b
KG
360 if (gunzip ((void *)load, unc_len,
361 (uchar *)image_start, &image_len) != 0) {
107b801c 362 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
2682ce8a 363 "- must RESET board to recover\n");
396f635b
KG
364 if (boot_progress)
365 show_boot_progress (-6);
366 return BOOTM_ERR_RESET;
47d1a6e1 367 }
7582438c 368
396f635b 369 *load_end = load + image_len;
47d1a6e1 370 break;
44431cab 371#endif /* CONFIG_GZIP */
c29fdfc1
WD
372#ifdef CONFIG_BZIP2
373 case IH_COMP_BZIP2:
42b73e8e 374 printf (" Uncompressing %s ... ", type_name);
5653fc33
WD
375 /*
376 * If we've got less than 4 MB of malloc() space,
377 * use slower decompression algorithm which requires
378 * at most 2300 KB of memory.
379 */
396f635b
KG
380 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
381 &unc_len, (char *)image_start, image_len,
6d0f6bcf 382 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
c29fdfc1 383 if (i != BZ_OK) {
2682ce8a
MB
384 printf ("BUNZIP2: uncompress or overwrite error %d "
385 "- must RESET board to recover\n", i);
396f635b
KG
386 if (boot_progress)
387 show_boot_progress (-6);
388 return BOOTM_ERR_RESET;
c29fdfc1 389 }
7582438c 390
396f635b 391 *load_end = load + unc_len;
c29fdfc1
WD
392 break;
393#endif /* CONFIG_BZIP2 */
fc9c1727 394#ifdef CONFIG_LZMA
78e1e846
MF
395 case IH_COMP_LZMA: {
396 SizeT lzma_len = unc_len;
fc9c1727
LCM
397 printf (" Uncompressing %s ... ", type_name);
398
60fdc5f2 399 ret = lzmaBuffToBuffDecompress(
78e1e846 400 (unsigned char *)load, &lzma_len,
d977a573 401 (unsigned char *)image_start, image_len);
78e1e846 402 unc_len = lzma_len;
caf72ff3 403 if (ret != SZ_OK) {
fc9c1727
LCM
404 printf ("LZMA: uncompress or overwrite error %d "
405 "- must RESET board to recover\n", ret);
406 show_boot_progress (-6);
407 return BOOTM_ERR_RESET;
408 }
409 *load_end = load + unc_len;
410 break;
78e1e846 411 }
fc9c1727 412#endif /* CONFIG_LZMA */
20dde48b
PK
413#ifdef CONFIG_LZO
414 case IH_COMP_LZO:
415 printf (" Uncompressing %s ... ", type_name);
416
60fdc5f2 417 ret = lzop_decompress((const unsigned char *)image_start,
20dde48b
PK
418 image_len, (unsigned char *)load,
419 &unc_len);
420 if (ret != LZO_E_OK) {
421 printf ("LZO: uncompress or overwrite error %d "
422 "- must RESET board to recover\n", ret);
423 if (boot_progress)
424 show_boot_progress (-6);
425 return BOOTM_ERR_RESET;
426 }
427
428 *load_end = load + unc_len;
429 break;
430#endif /* CONFIG_LZO */
47d1a6e1 431 default:
d5934ad7 432 printf ("Unimplemented compression type %d\n", comp);
396f635b 433 return BOOTM_ERR_UNIMPLEMENTED;
47d1a6e1 434 }
99ffccbd
DC
435
436 flush_cache(load, (*load_end - load) * sizeof(ulong));
437
4b9206ed 438 puts ("OK\n");
54b4ab3c 439 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
396f635b
KG
440 if (boot_progress)
441 show_boot_progress (7);
47d1a6e1 442
396f635b
KG
443 if ((load < blob_end) && (*load_end > blob_start)) {
444 debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end);
54b4ab3c 445 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
47d1a6e1 446
396f635b
KG
447 return BOOTM_ERR_OVERLAP;
448 }
449
450 return 0;
451}
452
54841ab5 453static int bootm_start_standalone(ulong iflag, int argc, char * const argv[])
f97ec30b
DZ
454{
455 char *s;
54841ab5 456 int (*appl)(int, char * const []);
f97ec30b
DZ
457
458 /* Don't start if "autostart" is set to "no" */
459 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
460 char buf[32];
461 sprintf(buf, "%lX", images.os.image_len);
462 setenv("filesize", buf);
463 return 0;
464 }
54841ab5 465 appl = (int (*)(int, char * const []))ntohl(images.ep);
f97ec30b
DZ
466 (*appl)(argc-1, &argv[1]);
467
468 return 0;
469}
470
49c3a861
KG
471/* we overload the cmd field with our state machine info instead of a
472 * function pointer */
f74d9bd2 473static cmd_tbl_t cmd_bootm_sub[] = {
49c3a861
KG
474 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
475 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
fca43cc8 476#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
49c3a861
KG
477 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
478#endif
479#ifdef CONFIG_OF_LIBFDT
480 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
481#endif
49c3a861 482 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
224c90d1 483 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
49c3a861
KG
484 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
485 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
486};
487
54841ab5 488int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
49c3a861
KG
489{
490 int ret = 0;
491 int state;
492 cmd_tbl_t *c;
493 boot_os_fn *boot_fn;
494
495 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
496
497 if (c) {
498 state = (int)c->cmd;
499
500 /* treat start special since it resets the state machine */
501 if (state == BOOTM_STATE_START) {
502 argc--;
503 argv++;
504 return bootm_start(cmdtp, flag, argc, argv);
505 }
47e26b1b
WD
506 } else {
507 /* Unrecognized command */
508 return cmd_usage(cmdtp);
49c3a861
KG
509 }
510
511 if (images.state >= state) {
512 printf ("Trying to execute a command out of order\n");
47e26b1b 513 return cmd_usage(cmdtp);
49c3a861
KG
514 }
515
516 images.state |= state;
517 boot_fn = boot_os[images.os.os];
518
519 switch (state) {
520 ulong load_end;
521 case BOOTM_STATE_START:
522 /* should never occur */
523 break;
524 case BOOTM_STATE_LOADOS:
525 ret = bootm_load_os(images.os, &load_end, 0);
526 if (ret)
527 return ret;
528
529 lmb_reserve(&images.lmb, images.os.load,
530 (load_end - images.os.load));
531 break;
fca43cc8 532#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
49c3a861
KG
533 case BOOTM_STATE_RAMDISK:
534 {
535 ulong rd_len = images.rd_end - images.rd_start;
536 char str[17];
537
538 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
539 rd_len, &images.initrd_start, &images.initrd_end);
540 if (ret)
541 return ret;
542
543 sprintf(str, "%lx", images.initrd_start);
544 setenv("initrd_start", str);
545 sprintf(str, "%lx", images.initrd_end);
546 setenv("initrd_end", str);
547 }
548 break;
549#endif
ed59e587 550#if defined(CONFIG_OF_LIBFDT)
49c3a861
KG
551 case BOOTM_STATE_FDT:
552 {
55b0a393
GL
553 boot_fdt_add_mem_rsv_regions(&images.lmb,
554 images.ft_addr);
590d3cac 555 ret = boot_relocate_fdt(&images.lmb,
49c3a861
KG
556 &images.ft_addr, &images.ft_len);
557 break;
558 }
559#endif
560 case BOOTM_STATE_OS_CMDLINE:
561 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
562 if (ret)
563 printf ("cmdline subcommand not supported\n");
564 break;
565 case BOOTM_STATE_OS_BD_T:
566 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
567 if (ret)
568 printf ("bdt subcommand not supported\n");
569 break;
570 case BOOTM_STATE_OS_PREP:
571 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
572 if (ret)
573 printf ("prep subcommand not supported\n");
574 break;
575 case BOOTM_STATE_OS_GO:
576 disable_interrupts();
3dfad40a 577 arch_preboot_os();
49c3a861
KG
578 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
579 break;
580 }
581
582 return ret;
583}
584
396f635b
KG
585/*******************************************************************/
586/* bootm - boot application image from image in memory */
587/*******************************************************************/
be083159 588
54841ab5 589int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
396f635b 590{
396f635b
KG
591 ulong iflag;
592 ulong load_end = 0;
593 int ret;
be083159 594 boot_os_fn *boot_fn;
2e5167cc 595#ifdef CONFIG_NEEDS_MANUAL_RELOC
521af04d 596 static int relocated = 0;
be083159
KG
597
598 /* relocate boot function table */
599 if (!relocated) {
600 int i;
601 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
ca95c9df
DZ
602 if (boot_os[i] != NULL)
603 boot_os[i] += gd->reloc_off;
be083159
KG
604 relocated = 1;
605 }
521af04d 606#endif
396f635b 607
49c3a861
KG
608 /* determine if we have a sub command */
609 if (argc > 1) {
610 char *endp;
611
612 simple_strtoul(argv[1], &endp, 16);
613 /* endp pointing to NULL means that argv[1] was just a
614 * valid number, pass it along to the normal bootm processing
615 *
616 * If endp is ':' or '#' assume a FIT identifier so pass
617 * along for normal processing.
618 *
619 * Right now we assume the first arg should never be '-'
620 */
621 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
622 return do_bootm_subcommand(cmdtp, flag, argc, argv);
623 }
624
8e02494e
AG
625 if (bootm_start(cmdtp, flag, argc, argv))
626 return 1;
396f635b
KG
627
628 /*
629 * We have reached the point of no return: we are going to
630 * overwrite all exception vector code, so we cannot easily
631 * recover from any failures any more...
632 */
633 iflag = disable_interrupts();
634
635#if defined(CONFIG_CMD_USB)
636 /*
637 * turn off USB to prevent the host controller from writing to the
638 * SDRAM while Linux is booting. This could happen (at least for OHCI
639 * controller), because the HCCA (Host Controller Communication Area)
640 * lies within the SDRAM and the host controller writes continously to
641 * this area (as busmaster!). The HccaFrameNumber is for example
642 * updated every 1 ms within the HCCA structure in SDRAM! For more
643 * details see the OpenHCI specification.
644 */
645 usb_stop();
646#endif
647
396f635b
KG
648 ret = bootm_load_os(images.os, &load_end, 1);
649
650 if (ret < 0) {
651 if (ret == BOOTM_ERR_RESET)
cb1c4896 652 do_reset (cmdtp, flag, argc, argv);
396f635b
KG
653 if (ret == BOOTM_ERR_OVERLAP) {
654 if (images.legacy_hdr_valid) {
655 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
656 puts ("WARNING: legacy format multi component "
657 "image overwritten\n");
658 } else {
659 puts ("ERROR: new format image overwritten - "
660 "must RESET the board to recover\n");
661 show_boot_progress (-113);
662 do_reset (cmdtp, flag, argc, argv);
663 }
664 }
665 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
666 if (iflag)
667 enable_interrupts();
668 show_boot_progress (-7);
669 return 1;
cb1c4896 670 }
47d1a6e1 671 }
7582438c 672
396f635b 673 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
47d1a6e1 674
f97ec30b
DZ
675 if (images.os.type == IH_TYPE_STANDALONE) {
676 if (iflag)
677 enable_interrupts();
678 /* This may return when 'autostart' is 'no' */
679 bootm_start_standalone(iflag, argc, argv);
680 return 0;
681 }
682
396f635b 683 show_boot_progress (8);
4ed6552f 684
f72da340 685#ifdef CONFIG_SILENT_CONSOLE
be083159
KG
686 if (images.os.os == IH_OS_LINUX)
687 fixup_silent_linux();
1f4bb37d
WD
688#endif
689
be083159 690 boot_fn = boot_os[images.os.os];
ca95c9df
DZ
691
692 if (boot_fn == NULL) {
693 if (iflag)
694 enable_interrupts();
695 printf ("ERROR: booting os '%s' (%d) is not supported\n",
696 genimg_get_os_name(images.os.os), images.os.os);
697 show_boot_progress (-8);
698 return 1;
699 }
700
3dfad40a
KG
701 arch_preboot_os();
702
be083159 703 boot_fn(0, argc, argv, &images);
47d1a6e1 704
fad63407 705 show_boot_progress (-9);
47d1a6e1 706#ifdef DEBUG
4b9206ed 707 puts ("\n## Control returned to monitor - resetting...\n");
47d1a6e1 708#endif
40d7e99d 709 do_reset (cmdtp, flag, argc, argv);
a44a269a 710
47d1a6e1
WD
711 return 1;
712}
713
67d668bf
MF
714int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
715{
716 const char *ep = getenv("autostart");
717
718 if (ep && !strcmp(ep, "yes")) {
719 char *local_args[2];
720 local_args[0] = (char *)cmd;
721 local_args[1] = NULL;
722 printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr);
723 return do_bootm(cmdtp, 0, 1, local_args);
724 }
725
726 return 0;
727}
728
1efd4360 729/**
9a4daad0
MB
730 * image_get_kernel - verify legacy format kernel image
731 * @img_addr: in RAM address of the legacy format image to be verified
732 * @verify: data CRC verification flag
1efd4360 733 *
9a4daad0
MB
734 * image_get_kernel() verifies legacy image integrity and returns pointer to
735 * legacy image header if image verification was completed successfully.
1efd4360
MB
736 *
737 * returns:
9a4daad0
MB
738 * pointer to a legacy image header if valid image was found
739 * otherwise return NULL
1efd4360
MB
740 */
741static image_header_t *image_get_kernel (ulong img_addr, int verify)
f72da340 742{
1efd4360 743 image_header_t *hdr = (image_header_t *)img_addr;
f72da340 744
1efd4360
MB
745 if (!image_check_magic(hdr)) {
746 puts ("Bad Magic Number\n");
747 show_boot_progress (-1);
748 return NULL;
749 }
750 show_boot_progress (2);
f72da340 751
1efd4360
MB
752 if (!image_check_hcrc (hdr)) {
753 puts ("Bad Header Checksum\n");
754 show_boot_progress (-2);
755 return NULL;
756 }
757
758 show_boot_progress (3);
759 image_print_contents (hdr);
760
761 if (verify) {
762 puts (" Verifying Checksum ... ");
763 if (!image_check_dcrc (hdr)) {
764 printf ("Bad Data CRC\n");
765 show_boot_progress (-3);
766 return NULL;
f72da340 767 }
1efd4360 768 puts ("OK\n");
f72da340 769 }
1efd4360 770 show_boot_progress (4);
f72da340 771
1efd4360
MB
772 if (!image_check_target_arch (hdr)) {
773 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
774 show_boot_progress (-4);
775 return NULL;
776 }
777 return hdr;
f72da340 778}
f72da340 779
6986a385
MB
780/**
781 * fit_check_kernel - verify FIT format kernel subimage
782 * @fit_hdr: pointer to the FIT image header
783 * os_noffset: kernel subimage node offset within FIT image
784 * @verify: data CRC verification flag
785 *
786 * fit_check_kernel() verifies integrity of the kernel subimage and from
787 * specified FIT image.
788 *
789 * returns:
790 * 1, on success
791 * 0, on failure
792 */
793#if defined (CONFIG_FIT)
794static int fit_check_kernel (const void *fit, int os_noffset, int verify)
47d1a6e1 795{
6986a385 796 fit_image_print (fit, os_noffset, " ");
47d1a6e1 797
6986a385
MB
798 if (verify) {
799 puts (" Verifying Hash Integrity ... ");
800 if (!fit_image_check_hashes (fit, os_noffset)) {
801 puts ("Bad Data Hash\n");
1372cce2 802 show_boot_progress (-104);
6986a385
MB
803 return 0;
804 }
805 puts ("OK\n");
47d1a6e1 806 }
1372cce2 807 show_boot_progress (105);
47d1a6e1 808
6986a385
MB
809 if (!fit_image_check_target_arch (fit, os_noffset)) {
810 puts ("Unsupported Architecture\n");
1372cce2 811 show_boot_progress (-105);
6986a385
MB
812 return 0;
813 }
56f94be3 814
1372cce2 815 show_boot_progress (106);
6986a385
MB
816 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
817 puts ("Not a kernel image\n");
1372cce2 818 show_boot_progress (-106);
6986a385
MB
819 return 0;
820 }
47d1a6e1 821
1372cce2 822 show_boot_progress (107);
6986a385
MB
823 return 1;
824}
825#endif /* CONFIG_FIT */
47d1a6e1 826
5cf746c3 827/**
9a4daad0 828 * boot_get_kernel - find kernel image
5cf746c3
MB
829 * @os_data: pointer to a ulong variable, will hold os data start address
830 * @os_len: pointer to a ulong variable, will hold os data length
831 *
9a4daad0 832 * boot_get_kernel() tries to find a kernel image, verifies its integrity
5cf746c3
MB
833 * and locates kernel data.
834 *
835 * returns:
836 * pointer to image header if valid image was found, plus kernel start
837 * address and length, otherwise NULL
838 */
54841ab5 839static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
8a5ea3e6 840 bootm_headers_t *images, ulong *os_data, ulong *os_len)
5cf746c3
MB
841{
842 image_header_t *hdr;
843 ulong img_addr;
d5934ad7
MB
844#if defined(CONFIG_FIT)
845 void *fit_hdr;
846 const char *fit_uname_config = NULL;
847 const char *fit_uname_kernel = NULL;
6986a385
MB
848 const void *data;
849 size_t len;
f773bea8 850 int cfg_noffset;
6986a385 851 int os_noffset;
d5934ad7 852#endif
56f94be3 853
d5934ad7 854 /* find out kernel image address */
5cf746c3
MB
855 if (argc < 2) {
856 img_addr = load_addr;
d5934ad7
MB
857 debug ("* kernel: default image load address = 0x%08lx\n",
858 load_addr);
859#if defined(CONFIG_FIT)
860 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
861 &fit_uname_config)) {
862 debug ("* kernel: config '%s' from image at 0x%08lx\n",
863 fit_uname_config, img_addr);
864 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
865 &fit_uname_kernel)) {
866 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
867 fit_uname_kernel, img_addr);
868#endif
5cf746c3
MB
869 } else {
870 img_addr = simple_strtoul(argv[1], NULL, 16);
d5934ad7 871 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
5cf746c3 872 }
47d1a6e1 873
5cf746c3 874 show_boot_progress (1);
56f94be3 875
fff888a1 876 /* copy from dataflash if needed */
9a4daad0 877 img_addr = genimg_get_image (img_addr);
5cf746c3 878
d5934ad7 879 /* check image type, for FIT images get FIT kernel node */
6986a385 880 *os_data = *os_len = 0;
9a4daad0 881 switch (genimg_get_format ((void *)img_addr)) {
d5934ad7 882 case IMAGE_FORMAT_LEGACY:
6986a385
MB
883 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
884 img_addr);
1efd4360
MB
885 hdr = image_get_kernel (img_addr, images->verify);
886 if (!hdr)
d5934ad7 887 return NULL;
d5934ad7
MB
888 show_boot_progress (5);
889
6986a385 890 /* get os_data and os_len */
d5934ad7
MB
891 switch (image_get_type (hdr)) {
892 case IH_TYPE_KERNEL:
893 *os_data = image_get_data (hdr);
894 *os_len = image_get_data_size (hdr);
895 break;
896 case IH_TYPE_MULTI:
897 image_multi_getimg (hdr, 0, os_data, os_len);
898 break;
f97ec30b 899 case IH_TYPE_STANDALONE:
f97ec30b
DZ
900 *os_data = image_get_data (hdr);
901 *os_len = image_get_data_size (hdr);
902 break;
d5934ad7
MB
903 default:
904 printf ("Wrong Image Type for %s command\n", cmdtp->name);
905 show_boot_progress (-5);
906 return NULL;
907 }
cb1c4896
MB
908
909 /*
910 * copy image header to allow for image overwrites during kernel
911 * decompression.
912 */
913 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
914
915 /* save pointer to image header */
d5934ad7 916 images->legacy_hdr_os = hdr;
47d1a6e1 917
cb1c4896 918 images->legacy_hdr_valid = 1;
1372cce2 919 show_boot_progress (6);
5cf746c3 920 break;
d5934ad7
MB
921#if defined(CONFIG_FIT)
922 case IMAGE_FORMAT_FIT:
923 fit_hdr = (void *)img_addr;
6986a385
MB
924 printf ("## Booting kernel from FIT Image at %08lx ...\n",
925 img_addr);
926
927 if (!fit_check_format (fit_hdr)) {
928 puts ("Bad FIT kernel image format!\n");
1372cce2 929 show_boot_progress (-100);
6986a385
MB
930 return NULL;
931 }
1372cce2 932 show_boot_progress (100);
47d1a6e1 933
6986a385
MB
934 if (!fit_uname_kernel) {
935 /*
936 * no kernel image node unit name, try to get config
937 * node first. If config unit node name is NULL
938 * fit_conf_get_node() will try to find default config node
939 */
1372cce2 940 show_boot_progress (101);
f773bea8
MB
941 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
942 if (cfg_noffset < 0) {
1372cce2 943 show_boot_progress (-101);
6986a385 944 return NULL;
1372cce2 945 }
f773bea8
MB
946 /* save configuration uname provided in the first
947 * bootm argument
948 */
949 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
950 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
951 show_boot_progress (103);
47d1a6e1 952
f773bea8 953 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
6986a385
MB
954 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
955 } else {
956 /* get kernel component image node offset */
1372cce2 957 show_boot_progress (102);
6986a385
MB
958 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
959 }
1372cce2
MB
960 if (os_noffset < 0) {
961 show_boot_progress (-103);
6986a385 962 return NULL;
1372cce2 963 }
47d1a6e1 964
6986a385 965 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
47d1a6e1 966
1372cce2 967 show_boot_progress (104);
6986a385
MB
968 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
969 return NULL;
47d1a6e1 970
6986a385
MB
971 /* get kernel image data address and length */
972 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
973 puts ("Could not find kernel subimage data!\n");
1372cce2 974 show_boot_progress (-107);
6986a385
MB
975 return NULL;
976 }
1372cce2 977 show_boot_progress (108);
47d1a6e1 978
6986a385
MB
979 *os_len = len;
980 *os_data = (ulong)data;
981 images->fit_hdr_os = fit_hdr;
982 images->fit_uname_os = fit_uname_kernel;
3dfe1101 983 images->fit_noffset_os = os_noffset;
6986a385 984 break;
9c4c5ae3 985#endif
5cf746c3 986 default:
d5934ad7 987 printf ("Wrong Image Format for %s command\n", cmdtp->name);
1372cce2 988 show_boot_progress (-108);
5cf746c3 989 return NULL;
47d1a6e1
WD
990 }
991
06c53bea 992 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
6986a385 993 *os_data, *os_len, *os_len);
47d1a6e1 994
d5934ad7 995 return (void *)img_addr;
5cf746c3 996}
98a9c4d4 997
0d498393 998U_BOOT_CMD(
6d0f6bcf 999 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
2fb2604d 1000 "boot application image from memory",
1ee1180b
MB
1001 "[addr [arg ...]]\n - boot application image stored in memory\n"
1002 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
1003 "\t'arg' can be the address of an initrd image\n"
4a2ad5ff 1004#if defined(CONFIG_OF_LIBFDT)
98a9c4d4 1005 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
5441f61a 1006 "\ta third argument is required which is the address of the\n"
98a9c4d4
MM
1007 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1008 "\tuse a '-' for the second argument. If you do not pass a third\n"
1009 "\ta bd_info struct will be passed instead\n"
98a9c4d4 1010#endif
6986a385
MB
1011#if defined(CONFIG_FIT)
1012 "\t\nFor the new multi component uImage format (FIT) addresses\n"
1013 "\tmust be extened to include component or configuration unit name:\n"
1014 "\taddr:<subimg_uname> - direct component image specification\n"
1015 "\taddr#<conf_uname> - configuration specification\n"
1016 "\tUse iminfo command to get the list of existing component\n"
1017 "\timages and configurations.\n"
1018#endif
49c3a861
KG
1019 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1020 "must be\n"
1021 "issued in the order below (it's ok to not issue all sub-commands):\n"
1022 "\tstart [addr [arg ...]]\n"
1023 "\tloados - load OS image\n"
1024#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1025 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1026#endif
1027#if defined(CONFIG_OF_LIBFDT)
1028 "\tfdt - relocate flat device tree\n"
1029#endif
49c3a861 1030 "\tcmdline - OS specific command line processing/setup\n"
224c90d1 1031 "\tbdt - OS specific bd_t processing\n"
49c3a861 1032 "\tprep - OS specific prep before relocation or go\n"
a89c33db 1033 "\tgo - start OS"
8bde7f77 1034);
47d1a6e1 1035
1ee1180b
MB
1036/*******************************************************************/
1037/* bootd - boot default image */
1038/*******************************************************************/
baa26db4 1039#if defined(CONFIG_CMD_BOOTD)
54841ab5 1040int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
47d1a6e1
WD
1041{
1042 int rcode = 0;
47d1a6e1 1043
6d0f6bcf 1044#ifndef CONFIG_SYS_HUSH_PARSER
1ee1180b
MB
1045 if (run_command (getenv ("bootcmd"), flag) < 0)
1046 rcode = 1;
47d1a6e1 1047#else
1ee1180b
MB
1048 if (parse_string_outer (getenv ("bootcmd"),
1049 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1050 rcode = 1;
47d1a6e1
WD
1051#endif
1052 return rcode;
1053}
47d1a6e1 1054
0d498393 1055U_BOOT_CMD(
1ee1180b 1056 boot, 1, 1, do_bootd,
2fb2604d 1057 "boot default, i.e., run 'bootcmd'",
a89c33db 1058 ""
9d2b18a0 1059);
47d1a6e1 1060
9d2b18a0 1061/* keep old command name "bootd" for backward compatibility */
0d498393 1062U_BOOT_CMD(
1ee1180b 1063 bootd, 1, 1, do_bootd,
2fb2604d 1064 "boot default, i.e., run 'bootcmd'",
a89c33db 1065 ""
8bde7f77 1066);
47d1a6e1 1067
47d1a6e1 1068#endif
47d1a6e1 1069
47d1a6e1 1070
1ee1180b
MB
1071/*******************************************************************/
1072/* iminfo - print header info for a requested image */
1073/*******************************************************************/
baa26db4 1074#if defined(CONFIG_CMD_IMI)
54841ab5 1075int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
47d1a6e1
WD
1076{
1077 int arg;
1078 ulong addr;
1ee1180b 1079 int rcode = 0;
47d1a6e1 1080
47d1a6e1
WD
1081 if (argc < 2) {
1082 return image_info (load_addr);
1083 }
47d1a6e1 1084
1ee1180b
MB
1085 for (arg = 1; arg < argc; ++arg) {
1086 addr = simple_strtoul (argv[arg], NULL, 16);
1087 if (image_info (addr) != 0)
1088 rcode = 1;
47d1a6e1
WD
1089 }
1090 return rcode;
1091}
47d1a6e1 1092
47d1a6e1
WD
1093static int image_info (ulong addr)
1094{
d5934ad7 1095 void *hdr = (void *)addr;
47d1a6e1 1096
47d1a6e1 1097 printf ("\n## Checking Image at %08lx ...\n", addr);
47d1a6e1 1098
9a4daad0 1099 switch (genimg_get_format (hdr)) {
d5934ad7
MB
1100 case IMAGE_FORMAT_LEGACY:
1101 puts (" Legacy image found\n");
1102 if (!image_check_magic (hdr)) {
1103 puts (" Bad Magic Number\n");
1104 return 1;
1105 }
47d1a6e1 1106
d5934ad7
MB
1107 if (!image_check_hcrc (hdr)) {
1108 puts (" Bad Header Checksum\n");
1109 return 1;
47d1a6e1
WD
1110 }
1111
d5934ad7 1112 image_print_contents (hdr);
47d1a6e1 1113
d5934ad7
MB
1114 puts (" Verifying Checksum ... ");
1115 if (!image_check_dcrc (hdr)) {
1116 puts (" Bad Data CRC\n");
1117 return 1;
47d1a6e1 1118 }
d5934ad7
MB
1119 puts ("OK\n");
1120 return 0;
1121#if defined(CONFIG_FIT)
1122 case IMAGE_FORMAT_FIT:
1123 puts (" FIT image found\n");
47d1a6e1 1124
e32fea6a
MB
1125 if (!fit_check_format (hdr)) {
1126 puts ("Bad FIT image format!\n");
1127 return 1;
47d1a6e1
WD
1128 }
1129
e32fea6a 1130 fit_print_contents (hdr);
a4f24345
BS
1131
1132 if (!fit_all_image_check_hashes (hdr)) {
1133 puts ("Bad hash in FIT image!\n");
1134 return 1;
1135 }
1136
d5934ad7
MB
1137 return 0;
1138#endif
1139 default:
1140 puts ("Unknown image format!\n");
1141 break;
47d1a6e1
WD
1142 }
1143
d5934ad7 1144 return 1;
47d1a6e1 1145}
0d498393
WD
1146
1147U_BOOT_CMD(
6d0f6bcf 1148 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
2fb2604d 1149 "print header information for application image",
8bde7f77
WD
1150 "addr [addr ...]\n"
1151 " - print header information for application image starting at\n"
1152 " address 'addr' in memory; this includes verification of the\n"
a89c33db 1153 " image contents (magic number, header and payload checksums)"
8bde7f77 1154);
25c751e9 1155#endif
87a449c8 1156
25c751e9 1157
1ee1180b
MB
1158/*******************************************************************/
1159/* imls - list all images found in flash */
1160/*******************************************************************/
baa26db4 1161#if defined(CONFIG_CMD_IMLS)
54841ab5 1162int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
27b207fd
WD
1163{
1164 flash_info_t *info;
1165 int i, j;
d5934ad7 1166 void *hdr;
25c751e9 1167
1ee1180b 1168 for (i = 0, info = &flash_info[0];
6d0f6bcf 1169 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
25c751e9 1170
27b207fd
WD
1171 if (info->flash_id == FLASH_UNKNOWN)
1172 goto next_bank;
1ee1180b 1173 for (j = 0; j < info->sector_count; ++j) {
25c751e9 1174
d5934ad7
MB
1175 hdr = (void *)info->start[j];
1176 if (!hdr)
b97a2a0a 1177 goto next_sector;
27b207fd 1178
9a4daad0 1179 switch (genimg_get_format (hdr)) {
d5934ad7 1180 case IMAGE_FORMAT_LEGACY:
d5934ad7
MB
1181 if (!image_check_hcrc (hdr))
1182 goto next_sector;
1183
1184 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1185 image_print_contents (hdr);
1186
1187 puts (" Verifying Checksum ... ");
1188 if (!image_check_dcrc (hdr)) {
1189 puts ("Bad Data CRC\n");
1190 } else {
1191 puts ("OK\n");
1192 }
1193 break;
1194#if defined(CONFIG_FIT)
1195 case IMAGE_FORMAT_FIT:
e32fea6a
MB
1196 if (!fit_check_format (hdr))
1197 goto next_sector;
1198
d5934ad7 1199 printf ("FIT Image at %08lX:\n", (ulong)hdr);
e32fea6a 1200 fit_print_contents (hdr);
d5934ad7 1201 break;
213bf8c8 1202#endif
d5934ad7 1203 default:
27b207fd 1204 goto next_sector;
25c751e9 1205 }
87a449c8 1206
bdccc4fe 1207next_sector: ;
c76f951a 1208 }
bdccc4fe 1209next_bank: ;
27b207fd 1210 }
c76f951a 1211
27b207fd
WD
1212 return (0);
1213}
c76f951a 1214
27b207fd
WD
1215U_BOOT_CMD(
1216 imls, 1, 1, do_imls,
2fb2604d 1217 "list all images found in flash",
27b207fd
WD
1218 "\n"
1219 " - Prints information about all images found at sector\n"
a89c33db 1220 " boundaries in flash."
27b207fd 1221);
98a9c4d4 1222#endif
47d1a6e1 1223
1ee1180b 1224/*******************************************************************/
5cf746c3 1225/* helper routines */
1ee1180b 1226/*******************************************************************/
1ee1180b
MB
1227#ifdef CONFIG_SILENT_CONSOLE
1228static void fixup_silent_linux ()
1229{
1230 char buf[256], *start, *end;
1231 char *cmdline = getenv ("bootargs");
47d1a6e1 1232
1ee1180b
MB
1233 /* Only fix cmdline when requested */
1234 if (!(gd->flags & GD_FLG_SILENT))
1235 return;
47d1a6e1 1236
1ee1180b
MB
1237 debug ("before silent fix-up: %s\n", cmdline);
1238 if (cmdline) {
1239 if ((start = strstr (cmdline, "console=")) != NULL) {
1240 end = strchr (start, ' ');
1241 strncpy (buf, cmdline, (start - cmdline + 8));
1242 if (end)
1243 strcpy (buf + (start - cmdline + 8), end);
1244 else
1245 buf[start - cmdline + 8] = '\0';
1246 } else {
1247 strcpy (buf, cmdline);
1248 strcat (buf, " console=");
47d1a6e1 1249 }
47d1a6e1 1250 } else {
1ee1180b 1251 strcpy (buf, "console=");
e7902122 1252 }
10aaf716 1253
1ee1180b
MB
1254 setenv ("bootargs", buf);
1255 debug ("after silent fix-up: %s\n", buf);
1256}
1257#endif /* CONFIG_SILENT_CONSOLE */
38eb508e 1258
38eb508e 1259
1ee1180b
MB
1260/*******************************************************************/
1261/* OS booting routines */
1262/*******************************************************************/
c76f951a 1263
b1d0db18 1264#ifdef CONFIG_BOOTM_NETBSD
54841ab5 1265static int do_bootm_netbsd (int flag, int argc, char * const argv[],
8a5ea3e6 1266 bootm_headers_t *images)
d791b1dc 1267{
1ee1180b 1268 void (*loader)(bd_t *, image_header_t *, char *, char *);
d5934ad7 1269 image_header_t *os_hdr, *hdr;
f13e7b2e 1270 ulong kernel_data, kernel_len;
1ee1180b
MB
1271 char *consdev;
1272 char *cmdline;
1273
49c3a861
KG
1274 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1275 return 1;
1276
d5934ad7
MB
1277#if defined(CONFIG_FIT)
1278 if (!images->legacy_hdr_valid) {
1279 fit_unsupported_reset ("NetBSD");
40d7e99d 1280 return 1;
38eb508e
GVB
1281 }
1282#endif
d5934ad7 1283 hdr = images->legacy_hdr_os;
47d1a6e1
WD
1284
1285 /*
1286 * Booting a (NetBSD) kernel image
1287 *
1288 * This process is pretty similar to a standalone application:
1289 * The (first part of an multi-) image must be a stage-2 loader,
1290 * which in turn is responsible for loading & invoking the actual
1291 * kernel. The only differences are the parameters being passed:
1292 * besides the board info strucure, the loader expects a command
1293 * line, the name of the console device, and (optionally) the
1294 * address of the original image header.
1295 */
d5934ad7 1296 os_hdr = NULL;
cb1c4896 1297 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
f13e7b2e
MB
1298 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1299 if (kernel_len)
d5934ad7 1300 os_hdr = hdr;
f13e7b2e 1301 }
47d1a6e1
WD
1302
1303 consdev = "";
1304#if defined (CONFIG_8xx_CONS_SMC1)
1305 consdev = "smc1";
1306#elif defined (CONFIG_8xx_CONS_SMC2)
1307 consdev = "smc2";
1308#elif defined (CONFIG_8xx_CONS_SCC2)
1309 consdev = "scc2";
1310#elif defined (CONFIG_8xx_CONS_SCC3)
1311 consdev = "scc3";
1312#endif
1313
1314 if (argc > 2) {
1315 ulong len;
1316 int i;
1317
1ee1180b 1318 for (i = 2, len = 0; i < argc; i += 1)
47d1a6e1
WD
1319 len += strlen (argv[i]) + 1;
1320 cmdline = malloc (len);
1321
1ee1180b 1322 for (i = 2, len = 0; i < argc; i += 1) {
47d1a6e1
WD
1323 if (i > 2)
1324 cmdline[len++] = ' ';
1325 strcpy (&cmdline[len], argv[i]);
1326 len += strlen (argv[i]);
1327 }
1ee1180b 1328 } else if ((cmdline = getenv ("bootargs")) == NULL) {
47d1a6e1
WD
1329 cmdline = "";
1330 }
1331
c160a954 1332 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
47d1a6e1
WD
1333
1334 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1335 (ulong)loader);
1336
fad63407 1337 show_boot_progress (15);
47d1a6e1
WD
1338
1339 /*
1340 * NetBSD Stage-2 Loader Parameters:
1341 * r3: ptr to board info data
1342 * r4: image address
1343 * r5: console device
1344 * r6: boot args string
1345 */
d5934ad7 1346 (*loader) (gd->bd, os_hdr, consdev, cmdline);
40d7e99d
KG
1347
1348 return 1;
47d1a6e1 1349}
b1d0db18 1350#endif /* CONFIG_BOOTM_NETBSD*/
47d1a6e1 1351
1ee1180b 1352#ifdef CONFIG_LYNXKDI
54841ab5 1353static int do_bootm_lynxkdi (int flag, int argc, char * const argv[],
8a5ea3e6 1354 bootm_headers_t *images)
1ee1180b 1355{
cb1c4896 1356 image_header_t *hdr = &images->legacy_hdr_os_copy;
d5934ad7 1357
49c3a861
KG
1358 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1359 return 1;
1360
d5934ad7
MB
1361#if defined(CONFIG_FIT)
1362 if (!images->legacy_hdr_valid) {
1363 fit_unsupported_reset ("Lynx");
40d7e99d 1364 return 1;
d5934ad7
MB
1365 }
1366#endif
1367
1368 lynxkdi_boot ((image_header_t *)hdr);
40d7e99d
KG
1369
1370 return 1;
1ee1180b
MB
1371}
1372#endif /* CONFIG_LYNXKDI */
1373
b1d0db18 1374#ifdef CONFIG_BOOTM_RTEMS
54841ab5 1375static int do_bootm_rtems (int flag, int argc, char * const argv[],
8a5ea3e6 1376 bootm_headers_t *images)
1ee1180b 1377{
1ee1180b 1378 void (*entry_point)(bd_t *);
d791b1dc 1379
49c3a861
KG
1380 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1381 return 1;
1382
d5934ad7
MB
1383#if defined(CONFIG_FIT)
1384 if (!images->legacy_hdr_valid) {
1385 fit_unsupported_reset ("RTEMS");
40d7e99d 1386 return 1;
d5934ad7
MB
1387 }
1388#endif
1389
c160a954 1390 entry_point = (void (*)(bd_t *))images->ep;
d791b1dc
WD
1391
1392 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1393 (ulong)entry_point);
1394
fad63407 1395 show_boot_progress (15);
d791b1dc
WD
1396
1397 /*
1398 * RTEMS Parameters:
1399 * r3: ptr to board info data
1400 */
1ee1180b 1401 (*entry_point)(gd->bd);
40d7e99d
KG
1402
1403 return 1;
d791b1dc 1404}
b1d0db18 1405#endif /* CONFIG_BOOTM_RTEMS */
7f70e853 1406
3df61957
TL
1407#if defined(CONFIG_BOOTM_OSE)
1408static int do_bootm_ose (int flag, int argc, char * const argv[],
1409 bootm_headers_t *images)
1410{
1411 void (*entry_point)(void);
1412
1413 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1414 return 1;
1415
1416#if defined(CONFIG_FIT)
1417 if (!images->legacy_hdr_valid) {
1418 fit_unsupported_reset ("OSE");
1419 return 1;
1420 }
1421#endif
1422
1423 entry_point = (void (*)(void))images->ep;
1424
1425 printf ("## Transferring control to OSE (at address %08lx) ...\n",
1426 (ulong)entry_point);
1427
1428 show_boot_progress (15);
1429
1430 /*
1431 * OSE Parameters:
1432 * None
1433 */
1434 (*entry_point)();
1435
1436 return 1;
1437}
1438#endif /* CONFIG_BOOTM_OSE */
1439
baa26db4 1440#if defined(CONFIG_CMD_ELF)
54841ab5 1441static int do_bootm_vxworks (int flag, int argc, char * const argv[],
8a5ea3e6 1442 bootm_headers_t *images)
47d1a6e1 1443{
47d1a6e1 1444 char str[80];
7f70e853 1445
49c3a861
KG
1446 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1447 return 1;
1448
d5934ad7 1449#if defined(CONFIG_FIT)
cb1c4896 1450 if (!images->legacy_hdr_valid) {
d5934ad7 1451 fit_unsupported_reset ("VxWorks");
40d7e99d 1452 return 1;
d5934ad7
MB
1453 }
1454#endif
47d1a6e1 1455
c160a954 1456 sprintf(str, "%lx", images->ep); /* write entry-point into string */
47d1a6e1 1457 setenv("loadaddr", str);
40d7e99d
KG
1458 do_bootvx(NULL, 0, 0, NULL);
1459
1460 return 1;
47d1a6e1
WD
1461}
1462
54841ab5 1463static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
8a5ea3e6 1464 bootm_headers_t *images)
47d1a6e1 1465{
47d1a6e1
WD
1466 char *local_args[2];
1467 char str[16];
d5934ad7 1468
49c3a861
KG
1469 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1470 return 1;
1471
d5934ad7
MB
1472#if defined(CONFIG_FIT)
1473 if (!images->legacy_hdr_valid) {
1474 fit_unsupported_reset ("QNX");
40d7e99d 1475 return 1;
d5934ad7
MB
1476 }
1477#endif
47d1a6e1 1478
c160a954 1479 sprintf(str, "%lx", images->ep); /* write entry-point into string */
47d1a6e1
WD
1480 local_args[0] = argv[0];
1481 local_args[1] = str; /* and provide it via the arguments */
40d7e99d
KG
1482 do_bootelf(NULL, 0, 2, local_args);
1483
1484 return 1;
47d1a6e1 1485}
90253178 1486#endif
f5ed9e39
PT
1487
1488#ifdef CONFIG_INTEGRITY
54841ab5 1489static int do_bootm_integrity (int flag, int argc, char * const argv[],
f5ed9e39
PT
1490 bootm_headers_t *images)
1491{
1492 void (*entry_point)(void);
1493
49c3a861
KG
1494 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1495 return 1;
1496
f5ed9e39
PT
1497#if defined(CONFIG_FIT)
1498 if (!images->legacy_hdr_valid) {
1499 fit_unsupported_reset ("INTEGRITY");
1500 return 1;
1501 }
1502#endif
1503
1504 entry_point = (void (*)(void))images->ep;
1505
1506 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1507 (ulong)entry_point);
1508
1509 show_boot_progress (15);
1510
1511 /*
1512 * INTEGRITY Parameters:
1513 * None
1514 */
1515 (*entry_point)();
1516
1517 return 1;
1518}
1519#endif
This page took 0.476238 seconds and 4 git commands to generate.