2 * (C) Copyright 2000-2009
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
33 #include <u-boot/zlib.h>
35 #include <environment.h>
37 #include <linux/ctype.h>
38 #include <asm/byteorder.h>
40 #if defined(CONFIG_CMD_USB)
44 #ifdef CONFIG_SYS_HUSH_PARSER
48 #if defined(CONFIG_OF_LIBFDT)
51 #include <fdt_support.h>
55 #include <lzma/LzmaTypes.h>
56 #include <lzma/LzmaDec.h>
57 #include <lzma/LzmaTools.h>
58 #endif /* CONFIG_LZMA */
61 #include <linux/lzo.h>
62 #endif /* CONFIG_LZO */
64 DECLARE_GLOBAL_DATA_PTR;
66 #ifndef CONFIG_SYS_BOOTM_LEN
67 #define CONFIG_SYS_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
71 extern void bz_internal_error(int);
74 #if defined(CONFIG_CMD_IMI)
75 static int image_info (unsigned long addr);
78 #if defined(CONFIG_CMD_IMLS)
80 #include <mtd/cfi_flash.h>
81 extern flash_info_t flash_info[]; /* info for FLASH chips */
82 static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
85 #ifdef CONFIG_SILENT_CONSOLE
86 static void fixup_silent_linux (void);
89 static image_header_t *image_get_kernel (ulong img_addr, int verify);
90 #if defined(CONFIG_FIT)
91 static int fit_check_kernel (const void *fit, int os_noffset, int verify);
94 static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char * const argv[],
95 bootm_headers_t *images, ulong *os_data, ulong *os_len);
96 extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
99 * Continue booting an OS image; caller already has:
100 * - copied image header to global variable `header'
101 * - checked header magic number, checksums (both header & image),
102 * - verified image architecture (PPC) and type (KERNEL or MULTI),
103 * - loaded (first part of) image to header load address,
104 * - disabled interrupts.
106 typedef int boot_os_fn (int flag, int argc, char * const argv[],
107 bootm_headers_t *images); /* pointers to os/initrd/fdt */
109 #ifdef CONFIG_BOOTM_LINUX
110 extern boot_os_fn do_bootm_linux;
112 #ifdef CONFIG_BOOTM_NETBSD
113 static boot_os_fn do_bootm_netbsd;
115 #if defined(CONFIG_LYNXKDI)
116 static boot_os_fn do_bootm_lynxkdi;
117 extern void lynxkdi_boot (image_header_t *);
119 #ifdef CONFIG_BOOTM_RTEMS
120 static boot_os_fn do_bootm_rtems;
122 #if defined(CONFIG_BOOTM_OSE)
123 static boot_os_fn do_bootm_ose;
125 #if defined(CONFIG_CMD_ELF)
126 static boot_os_fn do_bootm_vxworks;
127 static boot_os_fn do_bootm_qnxelf;
128 int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
129 int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
131 #if defined(CONFIG_INTEGRITY)
132 static boot_os_fn do_bootm_integrity;
135 static boot_os_fn *boot_os[] = {
136 #ifdef CONFIG_BOOTM_LINUX
137 [IH_OS_LINUX] = do_bootm_linux,
139 #ifdef CONFIG_BOOTM_NETBSD
140 [IH_OS_NETBSD] = do_bootm_netbsd,
142 #ifdef CONFIG_LYNXKDI
143 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
145 #ifdef CONFIG_BOOTM_RTEMS
146 [IH_OS_RTEMS] = do_bootm_rtems,
148 #if defined(CONFIG_BOOTM_OSE)
149 [IH_OS_OSE] = do_bootm_ose,
151 #if defined(CONFIG_CMD_ELF)
152 [IH_OS_VXWORKS] = do_bootm_vxworks,
153 [IH_OS_QNX] = do_bootm_qnxelf,
155 #ifdef CONFIG_INTEGRITY
156 [IH_OS_INTEGRITY] = do_bootm_integrity,
160 ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
161 static bootm_headers_t images; /* pointers to os/initrd/fdt images */
163 /* Allow for arch specific config before we boot */
164 void __arch_preboot_os(void)
166 /* please define platform specific arch_preboot_os() */
168 void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
171 #define IH_INITRD_ARCH IH_ARCH_ARM
172 #elif defined(__avr32__)
173 #define IH_INITRD_ARCH IH_ARCH_AVR32
174 #elif defined(__bfin__)
175 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
176 #elif defined(__I386__)
177 #define IH_INITRD_ARCH IH_ARCH_I386
178 #elif defined(__M68K__)
179 #define IH_INITRD_ARCH IH_ARCH_M68K
180 #elif defined(__microblaze__)
181 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
182 #elif defined(__mips__)
183 #define IH_INITRD_ARCH IH_ARCH_MIPS
184 #elif defined(__nios2__)
185 #define IH_INITRD_ARCH IH_ARCH_NIOS2
186 #elif defined(__PPC__)
187 #define IH_INITRD_ARCH IH_ARCH_PPC
188 #elif defined(__sh__)
189 #define IH_INITRD_ARCH IH_ARCH_SH
190 #elif defined(__sparc__)
191 #define IH_INITRD_ARCH IH_ARCH_SPARC
193 # error Unknown CPU type
196 static void bootm_start_lmb(void)
200 phys_size_t mem_size;
202 lmb_init(&images.lmb);
204 mem_start = getenv_bootm_low();
205 mem_size = getenv_bootm_size();
207 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
209 arch_lmb_reserve(&images.lmb);
210 board_lmb_reserve(&images.lmb);
212 # define lmb_reserve(lmb, base, size)
216 static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
221 memset ((void *)&images, 0, sizeof (images));
222 images.verify = getenv_yesno ("verify");
226 /* get kernel image header, start address and length */
227 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
228 &images, &images.os.image_start, &images.os.image_len);
229 if (images.os.image_len == 0) {
230 puts ("ERROR: can't get kernel image!\n");
234 /* get image parameters */
235 switch (genimg_get_format (os_hdr)) {
236 case IMAGE_FORMAT_LEGACY:
237 images.os.type = image_get_type (os_hdr);
238 images.os.comp = image_get_comp (os_hdr);
239 images.os.os = image_get_os (os_hdr);
241 images.os.end = image_get_image_end (os_hdr);
242 images.os.load = image_get_load (os_hdr);
244 #if defined(CONFIG_FIT)
245 case IMAGE_FORMAT_FIT:
246 if (fit_image_get_type (images.fit_hdr_os,
247 images.fit_noffset_os, &images.os.type)) {
248 puts ("Can't get image type!\n");
249 show_boot_progress (-109);
253 if (fit_image_get_comp (images.fit_hdr_os,
254 images.fit_noffset_os, &images.os.comp)) {
255 puts ("Can't get image compression!\n");
256 show_boot_progress (-110);
260 if (fit_image_get_os (images.fit_hdr_os,
261 images.fit_noffset_os, &images.os.os)) {
262 puts ("Can't get image OS!\n");
263 show_boot_progress (-111);
267 images.os.end = fit_get_end (images.fit_hdr_os);
269 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
271 puts ("Can't get image load address!\n");
272 show_boot_progress (-112);
278 puts ("ERROR: unknown image format type!\n");
282 /* find kernel entry point */
283 if (images.legacy_hdr_valid) {
284 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
285 #if defined(CONFIG_FIT)
286 } else if (images.fit_uname_os) {
287 ret = fit_image_get_entry (images.fit_hdr_os,
288 images.fit_noffset_os, &images.ep);
290 puts ("Can't get entry point property!\n");
295 puts ("Could not find kernel entry point!\n");
299 if (((images.os.type == IH_TYPE_KERNEL) ||
300 (images.os.type == IH_TYPE_MULTI)) &&
301 (images.os.os == IH_OS_LINUX)) {
303 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
304 &images.rd_start, &images.rd_end);
306 puts ("Ramdisk image is corrupt or invalid\n");
310 #if defined(CONFIG_OF_LIBFDT)
311 /* find flattened device tree */
312 ret = boot_get_fdt (flag, argc, argv, &images,
313 &images.ft_addr, &images.ft_len);
315 puts ("Could not find a valid device tree\n");
319 set_working_fdt_addr(images.ft_addr);
323 images.os.start = (ulong)os_hdr;
324 images.state = BOOTM_STATE_START;
329 #define BOOTM_ERR_RESET -1
330 #define BOOTM_ERR_OVERLAP -2
331 #define BOOTM_ERR_UNIMPLEMENTED -3
332 static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
334 uint8_t comp = os.comp;
335 ulong load = os.load;
336 ulong blob_start = os.start;
337 ulong blob_end = os.end;
338 ulong image_start = os.image_start;
339 ulong image_len = os.image_len;
340 uint unc_len = CONFIG_SYS_BOOTM_LEN;
341 #if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
343 #endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
345 const char *type_name = genimg_get_type_name (os.type);
349 if (load == blob_start) {
350 printf (" XIP %s ... ", type_name);
352 printf (" Loading %s ... ", type_name);
353 memmove_wd ((void *)load, (void *)image_start,
356 *load_end = load + image_len;
361 printf (" Uncompressing %s ... ", type_name);
362 if (gunzip ((void *)load, unc_len,
363 (uchar *)image_start, &image_len) != 0) {
364 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
365 "- must RESET board to recover\n");
367 show_boot_progress (-6);
368 return BOOTM_ERR_RESET;
371 *load_end = load + image_len;
373 #endif /* CONFIG_GZIP */
376 printf (" Uncompressing %s ... ", type_name);
378 * If we've got less than 4 MB of malloc() space,
379 * use slower decompression algorithm which requires
380 * at most 2300 KB of memory.
382 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
383 &unc_len, (char *)image_start, image_len,
384 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
386 printf ("BUNZIP2: uncompress or overwrite error %d "
387 "- must RESET board to recover\n", i);
389 show_boot_progress (-6);
390 return BOOTM_ERR_RESET;
393 *load_end = load + unc_len;
395 #endif /* CONFIG_BZIP2 */
398 SizeT lzma_len = unc_len;
399 printf (" Uncompressing %s ... ", type_name);
401 ret = lzmaBuffToBuffDecompress(
402 (unsigned char *)load, &lzma_len,
403 (unsigned char *)image_start, image_len);
406 printf ("LZMA: uncompress or overwrite error %d "
407 "- must RESET board to recover\n", ret);
408 show_boot_progress (-6);
409 return BOOTM_ERR_RESET;
411 *load_end = load + unc_len;
414 #endif /* CONFIG_LZMA */
417 printf (" Uncompressing %s ... ", type_name);
419 ret = lzop_decompress((const unsigned char *)image_start,
420 image_len, (unsigned char *)load,
422 if (ret != LZO_E_OK) {
423 printf ("LZO: uncompress or overwrite error %d "
424 "- must RESET board to recover\n", ret);
426 show_boot_progress (-6);
427 return BOOTM_ERR_RESET;
430 *load_end = load + unc_len;
432 #endif /* CONFIG_LZO */
434 printf ("Unimplemented compression type %d\n", comp);
435 return BOOTM_ERR_UNIMPLEMENTED;
438 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
440 show_boot_progress (7);
442 if ((load < blob_end) && (*load_end > blob_start)) {
443 debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end);
444 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
446 return BOOTM_ERR_OVERLAP;
452 static int bootm_start_standalone(ulong iflag, int argc, char * const argv[])
455 int (*appl)(int, char * const []);
457 /* Don't start if "autostart" is set to "no" */
458 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
460 sprintf(buf, "%lX", images.os.image_len);
461 setenv("filesize", buf);
464 appl = (int (*)(int, char * const []))ntohl(images.ep);
465 (*appl)(argc-1, &argv[1]);
470 /* we overload the cmd field with our state machine info instead of a
471 * function pointer */
472 static cmd_tbl_t cmd_bootm_sub[] = {
473 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
474 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
475 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
476 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
478 #ifdef CONFIG_OF_LIBFDT
479 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
481 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
482 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
483 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
484 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
487 int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
494 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
499 /* treat start special since it resets the state machine */
500 if (state == BOOTM_STATE_START) {
503 return bootm_start(cmdtp, flag, argc, argv);
506 /* Unrecognized command */
507 return cmd_usage(cmdtp);
510 if (images.state >= state) {
511 printf ("Trying to execute a command out of order\n");
512 return cmd_usage(cmdtp);
515 images.state |= state;
516 boot_fn = boot_os[images.os.os];
520 case BOOTM_STATE_START:
521 /* should never occur */
523 case BOOTM_STATE_LOADOS:
524 ret = bootm_load_os(images.os, &load_end, 0);
528 lmb_reserve(&images.lmb, images.os.load,
529 (load_end - images.os.load));
531 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
532 case BOOTM_STATE_RAMDISK:
534 ulong rd_len = images.rd_end - images.rd_start;
537 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
538 rd_len, &images.initrd_start, &images.initrd_end);
542 sprintf(str, "%lx", images.initrd_start);
543 setenv("initrd_start", str);
544 sprintf(str, "%lx", images.initrd_end);
545 setenv("initrd_end", str);
549 #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ)
550 case BOOTM_STATE_FDT:
552 ulong bootmap_base = getenv_bootm_low();
553 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
554 &images.ft_addr, &images.ft_len);
558 case BOOTM_STATE_OS_CMDLINE:
559 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
561 printf ("cmdline subcommand not supported\n");
563 case BOOTM_STATE_OS_BD_T:
564 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
566 printf ("bdt subcommand not supported\n");
568 case BOOTM_STATE_OS_PREP:
569 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
571 printf ("prep subcommand not supported\n");
573 case BOOTM_STATE_OS_GO:
574 disable_interrupts();
576 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
583 /*******************************************************************/
584 /* bootm - boot application image from image in memory */
585 /*******************************************************************/
587 int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
593 #ifdef CONFIG_NEEDS_MANUAL_RELOC
594 static int relocated = 0;
596 /* relocate boot function table */
599 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
600 if (boot_os[i] != NULL)
601 boot_os[i] += gd->reloc_off;
606 /* determine if we have a sub command */
610 simple_strtoul(argv[1], &endp, 16);
611 /* endp pointing to NULL means that argv[1] was just a
612 * valid number, pass it along to the normal bootm processing
614 * If endp is ':' or '#' assume a FIT identifier so pass
615 * along for normal processing.
617 * Right now we assume the first arg should never be '-'
619 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
620 return do_bootm_subcommand(cmdtp, flag, argc, argv);
623 if (bootm_start(cmdtp, flag, argc, argv))
627 * We have reached the point of no return: we are going to
628 * overwrite all exception vector code, so we cannot easily
629 * recover from any failures any more...
631 iflag = disable_interrupts();
633 #if defined(CONFIG_CMD_USB)
635 * turn off USB to prevent the host controller from writing to the
636 * SDRAM while Linux is booting. This could happen (at least for OHCI
637 * controller), because the HCCA (Host Controller Communication Area)
638 * lies within the SDRAM and the host controller writes continously to
639 * this area (as busmaster!). The HccaFrameNumber is for example
640 * updated every 1 ms within the HCCA structure in SDRAM! For more
641 * details see the OpenHCI specification.
646 ret = bootm_load_os(images.os, &load_end, 1);
649 if (ret == BOOTM_ERR_RESET)
650 do_reset (cmdtp, flag, argc, argv);
651 if (ret == BOOTM_ERR_OVERLAP) {
652 if (images.legacy_hdr_valid) {
653 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
654 puts ("WARNING: legacy format multi component "
655 "image overwritten\n");
657 puts ("ERROR: new format image overwritten - "
658 "must RESET the board to recover\n");
659 show_boot_progress (-113);
660 do_reset (cmdtp, flag, argc, argv);
663 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
666 show_boot_progress (-7);
671 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
673 if (images.os.type == IH_TYPE_STANDALONE) {
676 /* This may return when 'autostart' is 'no' */
677 bootm_start_standalone(iflag, argc, argv);
681 show_boot_progress (8);
683 #ifdef CONFIG_SILENT_CONSOLE
684 if (images.os.os == IH_OS_LINUX)
685 fixup_silent_linux();
688 boot_fn = boot_os[images.os.os];
690 if (boot_fn == NULL) {
693 printf ("ERROR: booting os '%s' (%d) is not supported\n",
694 genimg_get_os_name(images.os.os), images.os.os);
695 show_boot_progress (-8);
701 boot_fn(0, argc, argv, &images);
703 show_boot_progress (-9);
705 puts ("\n## Control returned to monitor - resetting...\n");
707 do_reset (cmdtp, flag, argc, argv);
713 * image_get_kernel - verify legacy format kernel image
714 * @img_addr: in RAM address of the legacy format image to be verified
715 * @verify: data CRC verification flag
717 * image_get_kernel() verifies legacy image integrity and returns pointer to
718 * legacy image header if image verification was completed successfully.
721 * pointer to a legacy image header if valid image was found
722 * otherwise return NULL
724 static image_header_t *image_get_kernel (ulong img_addr, int verify)
726 image_header_t *hdr = (image_header_t *)img_addr;
728 if (!image_check_magic(hdr)) {
729 puts ("Bad Magic Number\n");
730 show_boot_progress (-1);
733 show_boot_progress (2);
735 if (!image_check_hcrc (hdr)) {
736 puts ("Bad Header Checksum\n");
737 show_boot_progress (-2);
741 show_boot_progress (3);
742 image_print_contents (hdr);
745 puts (" Verifying Checksum ... ");
746 if (!image_check_dcrc (hdr)) {
747 printf ("Bad Data CRC\n");
748 show_boot_progress (-3);
753 show_boot_progress (4);
755 if (!image_check_target_arch (hdr)) {
756 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
757 show_boot_progress (-4);
764 * fit_check_kernel - verify FIT format kernel subimage
765 * @fit_hdr: pointer to the FIT image header
766 * os_noffset: kernel subimage node offset within FIT image
767 * @verify: data CRC verification flag
769 * fit_check_kernel() verifies integrity of the kernel subimage and from
770 * specified FIT image.
776 #if defined (CONFIG_FIT)
777 static int fit_check_kernel (const void *fit, int os_noffset, int verify)
779 fit_image_print (fit, os_noffset, " ");
782 puts (" Verifying Hash Integrity ... ");
783 if (!fit_image_check_hashes (fit, os_noffset)) {
784 puts ("Bad Data Hash\n");
785 show_boot_progress (-104);
790 show_boot_progress (105);
792 if (!fit_image_check_target_arch (fit, os_noffset)) {
793 puts ("Unsupported Architecture\n");
794 show_boot_progress (-105);
798 show_boot_progress (106);
799 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
800 puts ("Not a kernel image\n");
801 show_boot_progress (-106);
805 show_boot_progress (107);
808 #endif /* CONFIG_FIT */
811 * boot_get_kernel - find kernel image
812 * @os_data: pointer to a ulong variable, will hold os data start address
813 * @os_len: pointer to a ulong variable, will hold os data length
815 * boot_get_kernel() tries to find a kernel image, verifies its integrity
816 * and locates kernel data.
819 * pointer to image header if valid image was found, plus kernel start
820 * address and length, otherwise NULL
822 static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
823 bootm_headers_t *images, ulong *os_data, ulong *os_len)
827 #if defined(CONFIG_FIT)
829 const char *fit_uname_config = NULL;
830 const char *fit_uname_kernel = NULL;
837 /* find out kernel image address */
839 img_addr = load_addr;
840 debug ("* kernel: default image load address = 0x%08lx\n",
842 #if defined(CONFIG_FIT)
843 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
844 &fit_uname_config)) {
845 debug ("* kernel: config '%s' from image at 0x%08lx\n",
846 fit_uname_config, img_addr);
847 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
848 &fit_uname_kernel)) {
849 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
850 fit_uname_kernel, img_addr);
853 img_addr = simple_strtoul(argv[1], NULL, 16);
854 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
857 show_boot_progress (1);
859 /* copy from dataflash if needed */
860 img_addr = genimg_get_image (img_addr);
862 /* check image type, for FIT images get FIT kernel node */
863 *os_data = *os_len = 0;
864 switch (genimg_get_format ((void *)img_addr)) {
865 case IMAGE_FORMAT_LEGACY:
866 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
868 hdr = image_get_kernel (img_addr, images->verify);
871 show_boot_progress (5);
873 /* get os_data and os_len */
874 switch (image_get_type (hdr)) {
876 *os_data = image_get_data (hdr);
877 *os_len = image_get_data_size (hdr);
880 image_multi_getimg (hdr, 0, os_data, os_len);
882 case IH_TYPE_STANDALONE:
883 *os_data = image_get_data (hdr);
884 *os_len = image_get_data_size (hdr);
887 printf ("Wrong Image Type for %s command\n", cmdtp->name);
888 show_boot_progress (-5);
893 * copy image header to allow for image overwrites during kernel
896 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
898 /* save pointer to image header */
899 images->legacy_hdr_os = hdr;
901 images->legacy_hdr_valid = 1;
902 show_boot_progress (6);
904 #if defined(CONFIG_FIT)
905 case IMAGE_FORMAT_FIT:
906 fit_hdr = (void *)img_addr;
907 printf ("## Booting kernel from FIT Image at %08lx ...\n",
910 if (!fit_check_format (fit_hdr)) {
911 puts ("Bad FIT kernel image format!\n");
912 show_boot_progress (-100);
915 show_boot_progress (100);
917 if (!fit_uname_kernel) {
919 * no kernel image node unit name, try to get config
920 * node first. If config unit node name is NULL
921 * fit_conf_get_node() will try to find default config node
923 show_boot_progress (101);
924 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
925 if (cfg_noffset < 0) {
926 show_boot_progress (-101);
929 /* save configuration uname provided in the first
932 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
933 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
934 show_boot_progress (103);
936 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
937 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
939 /* get kernel component image node offset */
940 show_boot_progress (102);
941 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
943 if (os_noffset < 0) {
944 show_boot_progress (-103);
948 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
950 show_boot_progress (104);
951 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
954 /* get kernel image data address and length */
955 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
956 puts ("Could not find kernel subimage data!\n");
957 show_boot_progress (-107);
960 show_boot_progress (108);
963 *os_data = (ulong)data;
964 images->fit_hdr_os = fit_hdr;
965 images->fit_uname_os = fit_uname_kernel;
966 images->fit_noffset_os = os_noffset;
970 printf ("Wrong Image Format for %s command\n", cmdtp->name);
971 show_boot_progress (-108);
975 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
976 *os_data, *os_len, *os_len);
978 return (void *)img_addr;
982 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
983 "boot application image from memory",
984 "[addr [arg ...]]\n - boot application image stored in memory\n"
985 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
986 "\t'arg' can be the address of an initrd image\n"
987 #if defined(CONFIG_OF_LIBFDT)
988 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
989 "\ta third argument is required which is the address of the\n"
990 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
991 "\tuse a '-' for the second argument. If you do not pass a third\n"
992 "\ta bd_info struct will be passed instead\n"
994 #if defined(CONFIG_FIT)
995 "\t\nFor the new multi component uImage format (FIT) addresses\n"
996 "\tmust be extened to include component or configuration unit name:\n"
997 "\taddr:<subimg_uname> - direct component image specification\n"
998 "\taddr#<conf_uname> - configuration specification\n"
999 "\tUse iminfo command to get the list of existing component\n"
1000 "\timages and configurations.\n"
1002 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1004 "issued in the order below (it's ok to not issue all sub-commands):\n"
1005 "\tstart [addr [arg ...]]\n"
1006 "\tloados - load OS image\n"
1007 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1008 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1010 #if defined(CONFIG_OF_LIBFDT)
1011 "\tfdt - relocate flat device tree\n"
1013 "\tcmdline - OS specific command line processing/setup\n"
1014 "\tbdt - OS specific bd_t processing\n"
1015 "\tprep - OS specific prep before relocation or go\n"
1019 /*******************************************************************/
1020 /* bootd - boot default image */
1021 /*******************************************************************/
1022 #if defined(CONFIG_CMD_BOOTD)
1023 int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1027 #ifndef CONFIG_SYS_HUSH_PARSER
1028 if (run_command (getenv ("bootcmd"), flag) < 0)
1031 if (parse_string_outer (getenv ("bootcmd"),
1032 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1039 boot, 1, 1, do_bootd,
1040 "boot default, i.e., run 'bootcmd'",
1044 /* keep old command name "bootd" for backward compatibility */
1046 bootd, 1, 1, do_bootd,
1047 "boot default, i.e., run 'bootcmd'",
1054 /*******************************************************************/
1055 /* iminfo - print header info for a requested image */
1056 /*******************************************************************/
1057 #if defined(CONFIG_CMD_IMI)
1058 int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1065 return image_info (load_addr);
1068 for (arg = 1; arg < argc; ++arg) {
1069 addr = simple_strtoul (argv[arg], NULL, 16);
1070 if (image_info (addr) != 0)
1076 static int image_info (ulong addr)
1078 void *hdr = (void *)addr;
1080 printf ("\n## Checking Image at %08lx ...\n", addr);
1082 switch (genimg_get_format (hdr)) {
1083 case IMAGE_FORMAT_LEGACY:
1084 puts (" Legacy image found\n");
1085 if (!image_check_magic (hdr)) {
1086 puts (" Bad Magic Number\n");
1090 if (!image_check_hcrc (hdr)) {
1091 puts (" Bad Header Checksum\n");
1095 image_print_contents (hdr);
1097 puts (" Verifying Checksum ... ");
1098 if (!image_check_dcrc (hdr)) {
1099 puts (" Bad Data CRC\n");
1104 #if defined(CONFIG_FIT)
1105 case IMAGE_FORMAT_FIT:
1106 puts (" FIT image found\n");
1108 if (!fit_check_format (hdr)) {
1109 puts ("Bad FIT image format!\n");
1113 fit_print_contents (hdr);
1115 if (!fit_all_image_check_hashes (hdr)) {
1116 puts ("Bad hash in FIT image!\n");
1123 puts ("Unknown image format!\n");
1131 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
1132 "print header information for application image",
1134 " - print header information for application image starting at\n"
1135 " address 'addr' in memory; this includes verification of the\n"
1136 " image contents (magic number, header and payload checksums)"
1141 /*******************************************************************/
1142 /* imls - list all images found in flash */
1143 /*******************************************************************/
1144 #if defined(CONFIG_CMD_IMLS)
1145 int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1151 for (i = 0, info = &flash_info[0];
1152 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
1154 if (info->flash_id == FLASH_UNKNOWN)
1156 for (j = 0; j < info->sector_count; ++j) {
1158 hdr = (void *)info->start[j];
1162 switch (genimg_get_format (hdr)) {
1163 case IMAGE_FORMAT_LEGACY:
1164 if (!image_check_hcrc (hdr))
1167 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1168 image_print_contents (hdr);
1170 puts (" Verifying Checksum ... ");
1171 if (!image_check_dcrc (hdr)) {
1172 puts ("Bad Data CRC\n");
1177 #if defined(CONFIG_FIT)
1178 case IMAGE_FORMAT_FIT:
1179 if (!fit_check_format (hdr))
1182 printf ("FIT Image at %08lX:\n", (ulong)hdr);
1183 fit_print_contents (hdr);
1199 imls, 1, 1, do_imls,
1200 "list all images found in flash",
1202 " - Prints information about all images found at sector\n"
1203 " boundaries in flash."
1207 /*******************************************************************/
1208 /* helper routines */
1209 /*******************************************************************/
1210 #ifdef CONFIG_SILENT_CONSOLE
1211 static void fixup_silent_linux ()
1213 char buf[256], *start, *end;
1214 char *cmdline = getenv ("bootargs");
1216 /* Only fix cmdline when requested */
1217 if (!(gd->flags & GD_FLG_SILENT))
1220 debug ("before silent fix-up: %s\n", cmdline);
1222 if ((start = strstr (cmdline, "console=")) != NULL) {
1223 end = strchr (start, ' ');
1224 strncpy (buf, cmdline, (start - cmdline + 8));
1226 strcpy (buf + (start - cmdline + 8), end);
1228 buf[start - cmdline + 8] = '\0';
1230 strcpy (buf, cmdline);
1231 strcat (buf, " console=");
1234 strcpy (buf, "console=");
1237 setenv ("bootargs", buf);
1238 debug ("after silent fix-up: %s\n", buf);
1240 #endif /* CONFIG_SILENT_CONSOLE */
1243 /*******************************************************************/
1244 /* OS booting routines */
1245 /*******************************************************************/
1247 #ifdef CONFIG_BOOTM_NETBSD
1248 static int do_bootm_netbsd (int flag, int argc, char * const argv[],
1249 bootm_headers_t *images)
1251 void (*loader)(bd_t *, image_header_t *, char *, char *);
1252 image_header_t *os_hdr, *hdr;
1253 ulong kernel_data, kernel_len;
1257 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1260 #if defined(CONFIG_FIT)
1261 if (!images->legacy_hdr_valid) {
1262 fit_unsupported_reset ("NetBSD");
1266 hdr = images->legacy_hdr_os;
1269 * Booting a (NetBSD) kernel image
1271 * This process is pretty similar to a standalone application:
1272 * The (first part of an multi-) image must be a stage-2 loader,
1273 * which in turn is responsible for loading & invoking the actual
1274 * kernel. The only differences are the parameters being passed:
1275 * besides the board info strucure, the loader expects a command
1276 * line, the name of the console device, and (optionally) the
1277 * address of the original image header.
1280 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
1281 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1287 #if defined (CONFIG_8xx_CONS_SMC1)
1289 #elif defined (CONFIG_8xx_CONS_SMC2)
1291 #elif defined (CONFIG_8xx_CONS_SCC2)
1293 #elif defined (CONFIG_8xx_CONS_SCC3)
1301 for (i = 2, len = 0; i < argc; i += 1)
1302 len += strlen (argv[i]) + 1;
1303 cmdline = malloc (len);
1305 for (i = 2, len = 0; i < argc; i += 1) {
1307 cmdline[len++] = ' ';
1308 strcpy (&cmdline[len], argv[i]);
1309 len += strlen (argv[i]);
1311 } else if ((cmdline = getenv ("bootargs")) == NULL) {
1315 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
1317 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1320 show_boot_progress (15);
1323 * NetBSD Stage-2 Loader Parameters:
1324 * r3: ptr to board info data
1326 * r5: console device
1327 * r6: boot args string
1329 (*loader) (gd->bd, os_hdr, consdev, cmdline);
1333 #endif /* CONFIG_BOOTM_NETBSD*/
1335 #ifdef CONFIG_LYNXKDI
1336 static int do_bootm_lynxkdi (int flag, int argc, char * const argv[],
1337 bootm_headers_t *images)
1339 image_header_t *hdr = &images->legacy_hdr_os_copy;
1341 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1344 #if defined(CONFIG_FIT)
1345 if (!images->legacy_hdr_valid) {
1346 fit_unsupported_reset ("Lynx");
1351 lynxkdi_boot ((image_header_t *)hdr);
1355 #endif /* CONFIG_LYNXKDI */
1357 #ifdef CONFIG_BOOTM_RTEMS
1358 static int do_bootm_rtems (int flag, int argc, char * const argv[],
1359 bootm_headers_t *images)
1361 void (*entry_point)(bd_t *);
1363 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1366 #if defined(CONFIG_FIT)
1367 if (!images->legacy_hdr_valid) {
1368 fit_unsupported_reset ("RTEMS");
1373 entry_point = (void (*)(bd_t *))images->ep;
1375 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1376 (ulong)entry_point);
1378 show_boot_progress (15);
1382 * r3: ptr to board info data
1384 (*entry_point)(gd->bd);
1388 #endif /* CONFIG_BOOTM_RTEMS */
1390 #if defined(CONFIG_BOOTM_OSE)
1391 static int do_bootm_ose (int flag, int argc, char * const argv[],
1392 bootm_headers_t *images)
1394 void (*entry_point)(void);
1396 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1399 #if defined(CONFIG_FIT)
1400 if (!images->legacy_hdr_valid) {
1401 fit_unsupported_reset ("OSE");
1406 entry_point = (void (*)(void))images->ep;
1408 printf ("## Transferring control to OSE (at address %08lx) ...\n",
1409 (ulong)entry_point);
1411 show_boot_progress (15);
1421 #endif /* CONFIG_BOOTM_OSE */
1423 #if defined(CONFIG_CMD_ELF)
1424 static int do_bootm_vxworks (int flag, int argc, char * const argv[],
1425 bootm_headers_t *images)
1429 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1432 #if defined(CONFIG_FIT)
1433 if (!images->legacy_hdr_valid) {
1434 fit_unsupported_reset ("VxWorks");
1439 sprintf(str, "%lx", images->ep); /* write entry-point into string */
1440 setenv("loadaddr", str);
1441 do_bootvx(NULL, 0, 0, NULL);
1446 static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
1447 bootm_headers_t *images)
1449 char *local_args[2];
1452 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1455 #if defined(CONFIG_FIT)
1456 if (!images->legacy_hdr_valid) {
1457 fit_unsupported_reset ("QNX");
1462 sprintf(str, "%lx", images->ep); /* write entry-point into string */
1463 local_args[0] = argv[0];
1464 local_args[1] = str; /* and provide it via the arguments */
1465 do_bootelf(NULL, 0, 2, local_args);
1471 #ifdef CONFIG_INTEGRITY
1472 static int do_bootm_integrity (int flag, int argc, char * const argv[],
1473 bootm_headers_t *images)
1475 void (*entry_point)(void);
1477 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1480 #if defined(CONFIG_FIT)
1481 if (!images->legacy_hdr_valid) {
1482 fit_unsupported_reset ("INTEGRITY");
1487 entry_point = (void (*)(void))images->ep;
1489 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1490 (ulong)entry_point);
1492 show_boot_progress (15);
1495 * INTEGRITY Parameters: