2 * (C) Copyright 2000-2009
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);
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.
105 typedef int boot_os_fn (int flag, int argc, char * const argv[],
106 bootm_headers_t *images); /* pointers to os/initrd/fdt */
108 #ifdef CONFIG_BOOTM_LINUX
109 extern boot_os_fn do_bootm_linux;
111 #ifdef CONFIG_BOOTM_NETBSD
112 static boot_os_fn do_bootm_netbsd;
114 #if defined(CONFIG_LYNXKDI)
115 static boot_os_fn do_bootm_lynxkdi;
116 extern void lynxkdi_boot (image_header_t *);
118 #ifdef CONFIG_BOOTM_RTEMS
119 static boot_os_fn do_bootm_rtems;
121 #if defined(CONFIG_BOOTM_OSE)
122 static boot_os_fn do_bootm_ose;
124 #if defined(CONFIG_CMD_ELF)
125 static boot_os_fn do_bootm_vxworks;
126 static boot_os_fn do_bootm_qnxelf;
127 int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
128 int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
130 #if defined(CONFIG_INTEGRITY)
131 static boot_os_fn do_bootm_integrity;
134 static boot_os_fn *boot_os[] = {
135 #ifdef CONFIG_BOOTM_LINUX
136 [IH_OS_LINUX] = do_bootm_linux,
138 #ifdef CONFIG_BOOTM_NETBSD
139 [IH_OS_NETBSD] = do_bootm_netbsd,
141 #ifdef CONFIG_LYNXKDI
142 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
144 #ifdef CONFIG_BOOTM_RTEMS
145 [IH_OS_RTEMS] = do_bootm_rtems,
147 #if defined(CONFIG_BOOTM_OSE)
148 [IH_OS_OSE] = do_bootm_ose,
150 #if defined(CONFIG_CMD_ELF)
151 [IH_OS_VXWORKS] = do_bootm_vxworks,
152 [IH_OS_QNX] = do_bootm_qnxelf,
154 #ifdef CONFIG_INTEGRITY
155 [IH_OS_INTEGRITY] = do_bootm_integrity,
159 static bootm_headers_t images; /* pointers to os/initrd/fdt images */
161 /* Allow for arch specific config before we boot */
162 void __arch_preboot_os(void)
164 /* please define platform specific arch_preboot_os() */
166 void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
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
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
191 # error Unknown CPU type
194 static void bootm_start_lmb(void)
198 phys_size_t mem_size;
200 lmb_init(&images.lmb);
202 mem_start = getenv_bootm_low();
203 mem_size = getenv_bootm_size();
205 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
207 arch_lmb_reserve(&images.lmb);
208 board_lmb_reserve(&images.lmb);
210 # define lmb_reserve(lmb, base, size)
214 static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
219 memset ((void *)&images, 0, sizeof (images));
220 images.verify = getenv_yesno ("verify");
224 /* get kernel image header, start address and length */
225 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
226 &images, &images.os.image_start, &images.os.image_len);
227 if (images.os.image_len == 0) {
228 puts ("ERROR: can't get kernel image!\n");
232 /* get image parameters */
233 switch (genimg_get_format (os_hdr)) {
234 case IMAGE_FORMAT_LEGACY:
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);
239 images.os.end = image_get_image_end (os_hdr);
240 images.os.load = image_get_load (os_hdr);
242 #if defined(CONFIG_FIT)
243 case IMAGE_FORMAT_FIT:
244 if (fit_image_get_type (images.fit_hdr_os,
245 images.fit_noffset_os, &images.os.type)) {
246 puts ("Can't get image type!\n");
247 show_boot_progress (-109);
251 if (fit_image_get_comp (images.fit_hdr_os,
252 images.fit_noffset_os, &images.os.comp)) {
253 puts ("Can't get image compression!\n");
254 show_boot_progress (-110);
258 if (fit_image_get_os (images.fit_hdr_os,
259 images.fit_noffset_os, &images.os.os)) {
260 puts ("Can't get image OS!\n");
261 show_boot_progress (-111);
265 images.os.end = fit_get_end (images.fit_hdr_os);
267 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
269 puts ("Can't get image load address!\n");
270 show_boot_progress (-112);
276 puts ("ERROR: unknown image format type!\n");
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);
288 puts ("Can't get entry point property!\n");
293 puts ("Could not find kernel entry point!\n");
297 if (((images.os.type == IH_TYPE_KERNEL) ||
298 (images.os.type == IH_TYPE_MULTI)) &&
299 (images.os.os == IH_OS_LINUX)) {
301 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
302 &images.rd_start, &images.rd_end);
304 puts ("Ramdisk image is corrupt or invalid\n");
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);
313 puts ("Could not find a valid device tree\n");
317 set_working_fdt_addr(images.ft_addr);
321 images.os.start = (ulong)os_hdr;
322 images.state = BOOTM_STATE_START;
327 #define BOOTM_ERR_RESET -1
328 #define BOOTM_ERR_OVERLAP -2
329 #define BOOTM_ERR_UNIMPLEMENTED -3
330 static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
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;
338 uint unc_len = CONFIG_SYS_BOOTM_LEN;
339 #if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
341 #endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
343 const char *type_name = genimg_get_type_name (os.type);
347 if (load == blob_start || load == image_start) {
348 printf (" XIP %s ... ", type_name);
350 printf (" Loading %s ... ", type_name);
351 memmove_wd ((void *)load, (void *)image_start,
354 *load_end = load + image_len;
359 printf (" Uncompressing %s ... ", type_name);
360 if (gunzip ((void *)load, unc_len,
361 (uchar *)image_start, &image_len) != 0) {
362 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
363 "- must RESET board to recover\n");
365 show_boot_progress (-6);
366 return BOOTM_ERR_RESET;
369 *load_end = load + image_len;
371 #endif /* CONFIG_GZIP */
374 printf (" Uncompressing %s ... ", type_name);
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.
380 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
381 &unc_len, (char *)image_start, image_len,
382 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
384 printf ("BUNZIP2: uncompress or overwrite error %d "
385 "- must RESET board to recover\n", i);
387 show_boot_progress (-6);
388 return BOOTM_ERR_RESET;
391 *load_end = load + unc_len;
393 #endif /* CONFIG_BZIP2 */
396 SizeT lzma_len = unc_len;
397 printf (" Uncompressing %s ... ", type_name);
399 ret = lzmaBuffToBuffDecompress(
400 (unsigned char *)load, &lzma_len,
401 (unsigned char *)image_start, image_len);
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;
409 *load_end = load + unc_len;
412 #endif /* CONFIG_LZMA */
415 printf (" Uncompressing %s ... ", type_name);
417 ret = lzop_decompress((const unsigned char *)image_start,
418 image_len, (unsigned char *)load,
420 if (ret != LZO_E_OK) {
421 printf ("LZO: uncompress or overwrite error %d "
422 "- must RESET board to recover\n", ret);
424 show_boot_progress (-6);
425 return BOOTM_ERR_RESET;
428 *load_end = load + unc_len;
430 #endif /* CONFIG_LZO */
432 printf ("Unimplemented compression type %d\n", comp);
433 return BOOTM_ERR_UNIMPLEMENTED;
436 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
438 show_boot_progress (7);
440 if ((load < blob_end) && (*load_end > blob_start)) {
441 debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end);
442 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
444 return BOOTM_ERR_OVERLAP;
450 static int bootm_start_standalone(ulong iflag, int argc, char * const argv[])
453 int (*appl)(int, char * const []);
455 /* Don't start if "autostart" is set to "no" */
456 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
458 sprintf(buf, "%lX", images.os.image_len);
459 setenv("filesize", buf);
462 appl = (int (*)(int, char * const []))ntohl(images.ep);
463 (*appl)(argc-1, &argv[1]);
468 /* we overload the cmd field with our state machine info instead of a
469 * function pointer */
470 static cmd_tbl_t cmd_bootm_sub[] = {
471 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
472 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
473 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
474 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
476 #ifdef CONFIG_OF_LIBFDT
477 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
479 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
480 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
481 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
482 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
485 int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
492 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
497 /* treat start special since it resets the state machine */
498 if (state == BOOTM_STATE_START) {
501 return bootm_start(cmdtp, flag, argc, argv);
504 /* Unrecognized command */
505 return cmd_usage(cmdtp);
508 if (images.state >= state) {
509 printf ("Trying to execute a command out of order\n");
510 return cmd_usage(cmdtp);
513 images.state |= state;
514 boot_fn = boot_os[images.os.os];
518 case BOOTM_STATE_START:
519 /* should never occur */
521 case BOOTM_STATE_LOADOS:
522 ret = bootm_load_os(images.os, &load_end, 0);
526 lmb_reserve(&images.lmb, images.os.load,
527 (load_end - images.os.load));
529 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
530 case BOOTM_STATE_RAMDISK:
532 ulong rd_len = images.rd_end - images.rd_start;
535 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
536 rd_len, &images.initrd_start, &images.initrd_end);
540 sprintf(str, "%lx", images.initrd_start);
541 setenv("initrd_start", str);
542 sprintf(str, "%lx", images.initrd_end);
543 setenv("initrd_end", str);
547 #if defined(CONFIG_OF_LIBFDT)
548 case BOOTM_STATE_FDT:
550 boot_fdt_add_mem_rsv_regions(&images.lmb,
552 ret = boot_relocate_fdt(&images.lmb,
553 &images.ft_addr, &images.ft_len);
557 case BOOTM_STATE_OS_CMDLINE:
558 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
560 printf ("cmdline subcommand not supported\n");
562 case BOOTM_STATE_OS_BD_T:
563 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
565 printf ("bdt subcommand not supported\n");
567 case BOOTM_STATE_OS_PREP:
568 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
570 printf ("prep subcommand not supported\n");
572 case BOOTM_STATE_OS_GO:
573 disable_interrupts();
575 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
582 /*******************************************************************/
583 /* bootm - boot application image from image in memory */
584 /*******************************************************************/
586 int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
592 #ifdef CONFIG_NEEDS_MANUAL_RELOC
593 static int relocated = 0;
595 /* relocate boot function table */
598 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
599 if (boot_os[i] != NULL)
600 boot_os[i] += gd->reloc_off;
605 /* determine if we have a sub command */
609 simple_strtoul(argv[1], &endp, 16);
610 /* endp pointing to NULL means that argv[1] was just a
611 * valid number, pass it along to the normal bootm processing
613 * If endp is ':' or '#' assume a FIT identifier so pass
614 * along for normal processing.
616 * Right now we assume the first arg should never be '-'
618 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
619 return do_bootm_subcommand(cmdtp, flag, argc, argv);
622 if (bootm_start(cmdtp, flag, argc, argv))
626 * We have reached the point of no return: we are going to
627 * overwrite all exception vector code, so we cannot easily
628 * recover from any failures any more...
630 iflag = disable_interrupts();
632 #if defined(CONFIG_CMD_USB)
634 * turn off USB to prevent the host controller from writing to the
635 * SDRAM while Linux is booting. This could happen (at least for OHCI
636 * controller), because the HCCA (Host Controller Communication Area)
637 * lies within the SDRAM and the host controller writes continously to
638 * this area (as busmaster!). The HccaFrameNumber is for example
639 * updated every 1 ms within the HCCA structure in SDRAM! For more
640 * details see the OpenHCI specification.
645 ret = bootm_load_os(images.os, &load_end, 1);
648 if (ret == BOOTM_ERR_RESET)
649 do_reset (cmdtp, flag, argc, argv);
650 if (ret == BOOTM_ERR_OVERLAP) {
651 if (images.legacy_hdr_valid) {
652 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
653 puts ("WARNING: legacy format multi component "
654 "image overwritten\n");
656 puts ("ERROR: new format image overwritten - "
657 "must RESET the board to recover\n");
658 show_boot_progress (-113);
659 do_reset (cmdtp, flag, argc, argv);
662 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
665 show_boot_progress (-7);
670 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
672 if (images.os.type == IH_TYPE_STANDALONE) {
675 /* This may return when 'autostart' is 'no' */
676 bootm_start_standalone(iflag, argc, argv);
680 show_boot_progress (8);
682 #ifdef CONFIG_SILENT_CONSOLE
683 if (images.os.os == IH_OS_LINUX)
684 fixup_silent_linux();
687 boot_fn = boot_os[images.os.os];
689 if (boot_fn == NULL) {
692 printf ("ERROR: booting os '%s' (%d) is not supported\n",
693 genimg_get_os_name(images.os.os), images.os.os);
694 show_boot_progress (-8);
700 boot_fn(0, argc, argv, &images);
702 show_boot_progress (-9);
704 puts ("\n## Control returned to monitor - resetting...\n");
706 do_reset (cmdtp, flag, argc, argv);
711 int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
713 const char *ep = getenv("autostart");
715 if (ep && !strcmp(ep, "yes")) {
717 local_args[0] = (char *)cmd;
718 local_args[1] = NULL;
719 printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr);
720 return do_bootm(cmdtp, 0, 1, local_args);
727 * image_get_kernel - verify legacy format kernel image
728 * @img_addr: in RAM address of the legacy format image to be verified
729 * @verify: data CRC verification flag
731 * image_get_kernel() verifies legacy image integrity and returns pointer to
732 * legacy image header if image verification was completed successfully.
735 * pointer to a legacy image header if valid image was found
736 * otherwise return NULL
738 static image_header_t *image_get_kernel (ulong img_addr, int verify)
740 image_header_t *hdr = (image_header_t *)img_addr;
742 if (!image_check_magic(hdr)) {
743 puts ("Bad Magic Number\n");
744 show_boot_progress (-1);
747 show_boot_progress (2);
749 if (!image_check_hcrc (hdr)) {
750 puts ("Bad Header Checksum\n");
751 show_boot_progress (-2);
755 show_boot_progress (3);
756 image_print_contents (hdr);
759 puts (" Verifying Checksum ... ");
760 if (!image_check_dcrc (hdr)) {
761 printf ("Bad Data CRC\n");
762 show_boot_progress (-3);
767 show_boot_progress (4);
769 if (!image_check_target_arch (hdr)) {
770 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
771 show_boot_progress (-4);
778 * fit_check_kernel - verify FIT format kernel subimage
779 * @fit_hdr: pointer to the FIT image header
780 * os_noffset: kernel subimage node offset within FIT image
781 * @verify: data CRC verification flag
783 * fit_check_kernel() verifies integrity of the kernel subimage and from
784 * specified FIT image.
790 #if defined (CONFIG_FIT)
791 static int fit_check_kernel (const void *fit, int os_noffset, int verify)
793 fit_image_print (fit, os_noffset, " ");
796 puts (" Verifying Hash Integrity ... ");
797 if (!fit_image_check_hashes (fit, os_noffset)) {
798 puts ("Bad Data Hash\n");
799 show_boot_progress (-104);
804 show_boot_progress (105);
806 if (!fit_image_check_target_arch (fit, os_noffset)) {
807 puts ("Unsupported Architecture\n");
808 show_boot_progress (-105);
812 show_boot_progress (106);
813 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
814 puts ("Not a kernel image\n");
815 show_boot_progress (-106);
819 show_boot_progress (107);
822 #endif /* CONFIG_FIT */
825 * boot_get_kernel - find kernel image
826 * @os_data: pointer to a ulong variable, will hold os data start address
827 * @os_len: pointer to a ulong variable, will hold os data length
829 * boot_get_kernel() tries to find a kernel image, verifies its integrity
830 * and locates kernel data.
833 * pointer to image header if valid image was found, plus kernel start
834 * address and length, otherwise NULL
836 static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
837 bootm_headers_t *images, ulong *os_data, ulong *os_len)
841 #if defined(CONFIG_FIT)
843 const char *fit_uname_config = NULL;
844 const char *fit_uname_kernel = NULL;
851 /* find out kernel image address */
853 img_addr = load_addr;
854 debug ("* kernel: default image load address = 0x%08lx\n",
856 #if defined(CONFIG_FIT)
857 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
858 &fit_uname_config)) {
859 debug ("* kernel: config '%s' from image at 0x%08lx\n",
860 fit_uname_config, img_addr);
861 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
862 &fit_uname_kernel)) {
863 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
864 fit_uname_kernel, img_addr);
867 img_addr = simple_strtoul(argv[1], NULL, 16);
868 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
871 show_boot_progress (1);
873 /* copy from dataflash if needed */
874 img_addr = genimg_get_image (img_addr);
876 /* check image type, for FIT images get FIT kernel node */
877 *os_data = *os_len = 0;
878 switch (genimg_get_format ((void *)img_addr)) {
879 case IMAGE_FORMAT_LEGACY:
880 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
882 hdr = image_get_kernel (img_addr, images->verify);
885 show_boot_progress (5);
887 /* get os_data and os_len */
888 switch (image_get_type (hdr)) {
890 *os_data = image_get_data (hdr);
891 *os_len = image_get_data_size (hdr);
894 image_multi_getimg (hdr, 0, os_data, os_len);
896 case IH_TYPE_STANDALONE:
897 *os_data = image_get_data (hdr);
898 *os_len = image_get_data_size (hdr);
901 printf ("Wrong Image Type for %s command\n", cmdtp->name);
902 show_boot_progress (-5);
907 * copy image header to allow for image overwrites during kernel
910 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
912 /* save pointer to image header */
913 images->legacy_hdr_os = hdr;
915 images->legacy_hdr_valid = 1;
916 show_boot_progress (6);
918 #if defined(CONFIG_FIT)
919 case IMAGE_FORMAT_FIT:
920 fit_hdr = (void *)img_addr;
921 printf ("## Booting kernel from FIT Image at %08lx ...\n",
924 if (!fit_check_format (fit_hdr)) {
925 puts ("Bad FIT kernel image format!\n");
926 show_boot_progress (-100);
929 show_boot_progress (100);
931 if (!fit_uname_kernel) {
933 * no kernel image node unit name, try to get config
934 * node first. If config unit node name is NULL
935 * fit_conf_get_node() will try to find default config node
937 show_boot_progress (101);
938 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
939 if (cfg_noffset < 0) {
940 show_boot_progress (-101);
943 /* save configuration uname provided in the first
946 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
947 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
948 show_boot_progress (103);
950 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
951 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
953 /* get kernel component image node offset */
954 show_boot_progress (102);
955 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
957 if (os_noffset < 0) {
958 show_boot_progress (-103);
962 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
964 show_boot_progress (104);
965 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
968 /* get kernel image data address and length */
969 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
970 puts ("Could not find kernel subimage data!\n");
971 show_boot_progress (-107);
974 show_boot_progress (108);
977 *os_data = (ulong)data;
978 images->fit_hdr_os = fit_hdr;
979 images->fit_uname_os = fit_uname_kernel;
980 images->fit_noffset_os = os_noffset;
984 printf ("Wrong Image Format for %s command\n", cmdtp->name);
985 show_boot_progress (-108);
989 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
990 *os_data, *os_len, *os_len);
992 return (void *)img_addr;
996 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
997 "boot application image from memory",
998 "[addr [arg ...]]\n - boot application image stored in memory\n"
999 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
1000 "\t'arg' can be the address of an initrd image\n"
1001 #if defined(CONFIG_OF_LIBFDT)
1002 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
1003 "\ta third argument is required which is the address of the\n"
1004 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1005 "\tuse a '-' for the second argument. If you do not pass a third\n"
1006 "\ta bd_info struct will be passed instead\n"
1008 #if defined(CONFIG_FIT)
1009 "\t\nFor the new multi component uImage format (FIT) addresses\n"
1010 "\tmust be extened to include component or configuration unit name:\n"
1011 "\taddr:<subimg_uname> - direct component image specification\n"
1012 "\taddr#<conf_uname> - configuration specification\n"
1013 "\tUse iminfo command to get the list of existing component\n"
1014 "\timages and configurations.\n"
1016 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1018 "issued in the order below (it's ok to not issue all sub-commands):\n"
1019 "\tstart [addr [arg ...]]\n"
1020 "\tloados - load OS image\n"
1021 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1022 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1024 #if defined(CONFIG_OF_LIBFDT)
1025 "\tfdt - relocate flat device tree\n"
1027 "\tcmdline - OS specific command line processing/setup\n"
1028 "\tbdt - OS specific bd_t processing\n"
1029 "\tprep - OS specific prep before relocation or go\n"
1033 /*******************************************************************/
1034 /* bootd - boot default image */
1035 /*******************************************************************/
1036 #if defined(CONFIG_CMD_BOOTD)
1037 int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1041 #ifndef CONFIG_SYS_HUSH_PARSER
1042 if (run_command (getenv ("bootcmd"), flag) < 0)
1045 if (parse_string_outer (getenv ("bootcmd"),
1046 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1053 boot, 1, 1, do_bootd,
1054 "boot default, i.e., run 'bootcmd'",
1058 /* keep old command name "bootd" for backward compatibility */
1060 bootd, 1, 1, do_bootd,
1061 "boot default, i.e., run 'bootcmd'",
1068 /*******************************************************************/
1069 /* iminfo - print header info for a requested image */
1070 /*******************************************************************/
1071 #if defined(CONFIG_CMD_IMI)
1072 int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1079 return image_info (load_addr);
1082 for (arg = 1; arg < argc; ++arg) {
1083 addr = simple_strtoul (argv[arg], NULL, 16);
1084 if (image_info (addr) != 0)
1090 static int image_info (ulong addr)
1092 void *hdr = (void *)addr;
1094 printf ("\n## Checking Image at %08lx ...\n", addr);
1096 switch (genimg_get_format (hdr)) {
1097 case IMAGE_FORMAT_LEGACY:
1098 puts (" Legacy image found\n");
1099 if (!image_check_magic (hdr)) {
1100 puts (" Bad Magic Number\n");
1104 if (!image_check_hcrc (hdr)) {
1105 puts (" Bad Header Checksum\n");
1109 image_print_contents (hdr);
1111 puts (" Verifying Checksum ... ");
1112 if (!image_check_dcrc (hdr)) {
1113 puts (" Bad Data CRC\n");
1118 #if defined(CONFIG_FIT)
1119 case IMAGE_FORMAT_FIT:
1120 puts (" FIT image found\n");
1122 if (!fit_check_format (hdr)) {
1123 puts ("Bad FIT image format!\n");
1127 fit_print_contents (hdr);
1129 if (!fit_all_image_check_hashes (hdr)) {
1130 puts ("Bad hash in FIT image!\n");
1137 puts ("Unknown image format!\n");
1145 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
1146 "print header information for application image",
1148 " - print header information for application image starting at\n"
1149 " address 'addr' in memory; this includes verification of the\n"
1150 " image contents (magic number, header and payload checksums)"
1155 /*******************************************************************/
1156 /* imls - list all images found in flash */
1157 /*******************************************************************/
1158 #if defined(CONFIG_CMD_IMLS)
1159 int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1165 for (i = 0, info = &flash_info[0];
1166 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
1168 if (info->flash_id == FLASH_UNKNOWN)
1170 for (j = 0; j < info->sector_count; ++j) {
1172 hdr = (void *)info->start[j];
1176 switch (genimg_get_format (hdr)) {
1177 case IMAGE_FORMAT_LEGACY:
1178 if (!image_check_hcrc (hdr))
1181 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1182 image_print_contents (hdr);
1184 puts (" Verifying Checksum ... ");
1185 if (!image_check_dcrc (hdr)) {
1186 puts ("Bad Data CRC\n");
1191 #if defined(CONFIG_FIT)
1192 case IMAGE_FORMAT_FIT:
1193 if (!fit_check_format (hdr))
1196 printf ("FIT Image at %08lX:\n", (ulong)hdr);
1197 fit_print_contents (hdr);
1213 imls, 1, 1, do_imls,
1214 "list all images found in flash",
1216 " - Prints information about all images found at sector\n"
1217 " boundaries in flash."
1221 /*******************************************************************/
1222 /* helper routines */
1223 /*******************************************************************/
1224 #ifdef CONFIG_SILENT_CONSOLE
1225 static void fixup_silent_linux ()
1227 char buf[256], *start, *end;
1228 char *cmdline = getenv ("bootargs");
1230 /* Only fix cmdline when requested */
1231 if (!(gd->flags & GD_FLG_SILENT))
1234 debug ("before silent fix-up: %s\n", cmdline);
1236 if ((start = strstr (cmdline, "console=")) != NULL) {
1237 end = strchr (start, ' ');
1238 strncpy (buf, cmdline, (start - cmdline + 8));
1240 strcpy (buf + (start - cmdline + 8), end);
1242 buf[start - cmdline + 8] = '\0';
1244 strcpy (buf, cmdline);
1245 strcat (buf, " console=");
1248 strcpy (buf, "console=");
1251 setenv ("bootargs", buf);
1252 debug ("after silent fix-up: %s\n", buf);
1254 #endif /* CONFIG_SILENT_CONSOLE */
1257 /*******************************************************************/
1258 /* OS booting routines */
1259 /*******************************************************************/
1261 #ifdef CONFIG_BOOTM_NETBSD
1262 static int do_bootm_netbsd (int flag, int argc, char * const argv[],
1263 bootm_headers_t *images)
1265 void (*loader)(bd_t *, image_header_t *, char *, char *);
1266 image_header_t *os_hdr, *hdr;
1267 ulong kernel_data, kernel_len;
1271 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1274 #if defined(CONFIG_FIT)
1275 if (!images->legacy_hdr_valid) {
1276 fit_unsupported_reset ("NetBSD");
1280 hdr = images->legacy_hdr_os;
1283 * Booting a (NetBSD) kernel image
1285 * This process is pretty similar to a standalone application:
1286 * The (first part of an multi-) image must be a stage-2 loader,
1287 * which in turn is responsible for loading & invoking the actual
1288 * kernel. The only differences are the parameters being passed:
1289 * besides the board info strucure, the loader expects a command
1290 * line, the name of the console device, and (optionally) the
1291 * address of the original image header.
1294 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
1295 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1301 #if defined (CONFIG_8xx_CONS_SMC1)
1303 #elif defined (CONFIG_8xx_CONS_SMC2)
1305 #elif defined (CONFIG_8xx_CONS_SCC2)
1307 #elif defined (CONFIG_8xx_CONS_SCC3)
1315 for (i = 2, len = 0; i < argc; i += 1)
1316 len += strlen (argv[i]) + 1;
1317 cmdline = malloc (len);
1319 for (i = 2, len = 0; i < argc; i += 1) {
1321 cmdline[len++] = ' ';
1322 strcpy (&cmdline[len], argv[i]);
1323 len += strlen (argv[i]);
1325 } else if ((cmdline = getenv ("bootargs")) == NULL) {
1329 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
1331 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1334 show_boot_progress (15);
1337 * NetBSD Stage-2 Loader Parameters:
1338 * r3: ptr to board info data
1340 * r5: console device
1341 * r6: boot args string
1343 (*loader) (gd->bd, os_hdr, consdev, cmdline);
1347 #endif /* CONFIG_BOOTM_NETBSD*/
1349 #ifdef CONFIG_LYNXKDI
1350 static int do_bootm_lynxkdi (int flag, int argc, char * const argv[],
1351 bootm_headers_t *images)
1353 image_header_t *hdr = &images->legacy_hdr_os_copy;
1355 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1358 #if defined(CONFIG_FIT)
1359 if (!images->legacy_hdr_valid) {
1360 fit_unsupported_reset ("Lynx");
1365 lynxkdi_boot ((image_header_t *)hdr);
1369 #endif /* CONFIG_LYNXKDI */
1371 #ifdef CONFIG_BOOTM_RTEMS
1372 static int do_bootm_rtems (int flag, int argc, char * const argv[],
1373 bootm_headers_t *images)
1375 void (*entry_point)(bd_t *);
1377 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1380 #if defined(CONFIG_FIT)
1381 if (!images->legacy_hdr_valid) {
1382 fit_unsupported_reset ("RTEMS");
1387 entry_point = (void (*)(bd_t *))images->ep;
1389 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1390 (ulong)entry_point);
1392 show_boot_progress (15);
1396 * r3: ptr to board info data
1398 (*entry_point)(gd->bd);
1402 #endif /* CONFIG_BOOTM_RTEMS */
1404 #if defined(CONFIG_BOOTM_OSE)
1405 static int do_bootm_ose (int flag, int argc, char * const argv[],
1406 bootm_headers_t *images)
1408 void (*entry_point)(void);
1410 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1413 #if defined(CONFIG_FIT)
1414 if (!images->legacy_hdr_valid) {
1415 fit_unsupported_reset ("OSE");
1420 entry_point = (void (*)(void))images->ep;
1422 printf ("## Transferring control to OSE (at address %08lx) ...\n",
1423 (ulong)entry_point);
1425 show_boot_progress (15);
1435 #endif /* CONFIG_BOOTM_OSE */
1437 #if defined(CONFIG_CMD_ELF)
1438 static int do_bootm_vxworks (int flag, int argc, char * const argv[],
1439 bootm_headers_t *images)
1443 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1446 #if defined(CONFIG_FIT)
1447 if (!images->legacy_hdr_valid) {
1448 fit_unsupported_reset ("VxWorks");
1453 sprintf(str, "%lx", images->ep); /* write entry-point into string */
1454 setenv("loadaddr", str);
1455 do_bootvx(NULL, 0, 0, NULL);
1460 static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
1461 bootm_headers_t *images)
1463 char *local_args[2];
1466 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1469 #if defined(CONFIG_FIT)
1470 if (!images->legacy_hdr_valid) {
1471 fit_unsupported_reset ("QNX");
1476 sprintf(str, "%lx", images->ep); /* write entry-point into string */
1477 local_args[0] = argv[0];
1478 local_args[1] = str; /* and provide it via the arguments */
1479 do_bootelf(NULL, 0, 2, local_args);
1485 #ifdef CONFIG_INTEGRITY
1486 static int do_bootm_integrity (int flag, int argc, char * const argv[],
1487 bootm_headers_t *images)
1489 void (*entry_point)(void);
1491 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1494 #if defined(CONFIG_FIT)
1495 if (!images->legacy_hdr_valid) {
1496 fit_unsupported_reset ("INTEGRITY");
1501 entry_point = (void (*)(void))images->ep;
1503 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1504 (ulong)entry_point);
1506 show_boot_progress (15);
1509 * INTEGRITY Parameters: