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 extern flash_info_t flash_info[]; /* info for FLASH chips */
81 static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
84 #ifdef CONFIG_SILENT_CONSOLE
85 static void fixup_silent_linux (void);
88 static image_header_t *image_get_kernel (ulong img_addr, int verify);
89 #if defined(CONFIG_FIT)
90 static int fit_check_kernel (const void *fit, int os_noffset, int verify);
93 static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char *argv[],
94 bootm_headers_t *images, ulong *os_data, ulong *os_len);
95 extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
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 *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_CMD_ELF)
122 static boot_os_fn do_bootm_vxworks;
123 static boot_os_fn do_bootm_qnxelf;
124 int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
125 int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
127 #if defined(CONFIG_INTEGRITY)
128 static boot_os_fn do_bootm_integrity;
131 static boot_os_fn *boot_os[] = {
132 #ifdef CONFIG_BOOTM_LINUX
133 [IH_OS_LINUX] = do_bootm_linux,
135 #ifdef CONFIG_BOOTM_NETBSD
136 [IH_OS_NETBSD] = do_bootm_netbsd,
138 #ifdef CONFIG_LYNXKDI
139 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
141 #ifdef CONFIG_BOOTM_RTEMS
142 [IH_OS_RTEMS] = do_bootm_rtems,
144 #if defined(CONFIG_CMD_ELF)
145 [IH_OS_VXWORKS] = do_bootm_vxworks,
146 [IH_OS_QNX] = do_bootm_qnxelf,
148 #ifdef CONFIG_INTEGRITY
149 [IH_OS_INTEGRITY] = do_bootm_integrity,
153 ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
154 static bootm_headers_t images; /* pointers to os/initrd/fdt images */
156 /* Allow for arch specific config before we boot */
157 void __arch_preboot_os(void)
159 /* please define platform specific arch_preboot_os() */
161 void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
164 #define IH_INITRD_ARCH IH_ARCH_ARM
165 #elif defined(__avr32__)
166 #define IH_INITRD_ARCH IH_ARCH_AVR32
167 #elif defined(__bfin__)
168 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
169 #elif defined(__I386__)
170 #define IH_INITRD_ARCH IH_ARCH_I386
171 #elif defined(__M68K__)
172 #define IH_INITRD_ARCH IH_ARCH_M68K
173 #elif defined(__microblaze__)
174 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
175 #elif defined(__mips__)
176 #define IH_INITRD_ARCH IH_ARCH_MIPS
177 #elif defined(__nios__)
178 #define IH_INITRD_ARCH IH_ARCH_NIOS
179 #elif defined(__nios2__)
180 #define IH_INITRD_ARCH IH_ARCH_NIOS2
181 #elif defined(__PPC__)
182 #define IH_INITRD_ARCH IH_ARCH_PPC
183 #elif defined(__sh__)
184 #define IH_INITRD_ARCH IH_ARCH_SH
185 #elif defined(__sparc__)
186 #define IH_INITRD_ARCH IH_ARCH_SPARC
188 # error Unknown CPU type
191 static void bootm_start_lmb(void)
195 phys_size_t mem_size;
197 lmb_init(&images.lmb);
199 mem_start = getenv_bootm_low();
200 mem_size = getenv_bootm_size();
202 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
204 arch_lmb_reserve(&images.lmb);
205 board_lmb_reserve(&images.lmb);
207 # define lmb_reserve(lmb, base, size)
211 static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
216 memset ((void *)&images, 0, sizeof (images));
217 images.verify = getenv_yesno ("verify");
221 /* get kernel image header, start address and length */
222 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
223 &images, &images.os.image_start, &images.os.image_len);
224 if (images.os.image_len == 0) {
225 puts ("ERROR: can't get kernel image!\n");
229 /* get image parameters */
230 switch (genimg_get_format (os_hdr)) {
231 case IMAGE_FORMAT_LEGACY:
232 images.os.type = image_get_type (os_hdr);
233 images.os.comp = image_get_comp (os_hdr);
234 images.os.os = image_get_os (os_hdr);
236 images.os.end = image_get_image_end (os_hdr);
237 images.os.load = image_get_load (os_hdr);
239 #if defined(CONFIG_FIT)
240 case IMAGE_FORMAT_FIT:
241 if (fit_image_get_type (images.fit_hdr_os,
242 images.fit_noffset_os, &images.os.type)) {
243 puts ("Can't get image type!\n");
244 show_boot_progress (-109);
248 if (fit_image_get_comp (images.fit_hdr_os,
249 images.fit_noffset_os, &images.os.comp)) {
250 puts ("Can't get image compression!\n");
251 show_boot_progress (-110);
255 if (fit_image_get_os (images.fit_hdr_os,
256 images.fit_noffset_os, &images.os.os)) {
257 puts ("Can't get image OS!\n");
258 show_boot_progress (-111);
262 images.os.end = fit_get_end (images.fit_hdr_os);
264 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
266 puts ("Can't get image load address!\n");
267 show_boot_progress (-112);
273 puts ("ERROR: unknown image format type!\n");
277 /* find kernel entry point */
278 if (images.legacy_hdr_valid) {
279 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
280 #if defined(CONFIG_FIT)
281 } else if (images.fit_uname_os) {
282 ret = fit_image_get_entry (images.fit_hdr_os,
283 images.fit_noffset_os, &images.ep);
285 puts ("Can't get entry point property!\n");
290 puts ("Could not find kernel entry point!\n");
294 if (((images.os.type == IH_TYPE_KERNEL) ||
295 (images.os.type == IH_TYPE_MULTI)) &&
296 (images.os.os == IH_OS_LINUX)) {
298 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
299 &images.rd_start, &images.rd_end);
301 puts ("Ramdisk image is corrupt or invalid\n");
305 #if defined(CONFIG_OF_LIBFDT)
306 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
307 /* find flattened device tree */
308 ret = boot_get_fdt (flag, argc, argv, &images,
309 &images.ft_addr, &images.ft_len);
311 puts ("Could not find a valid device tree\n");
315 set_working_fdt_addr(images.ft_addr);
320 images.os.start = (ulong)os_hdr;
321 images.state = BOOTM_STATE_START;
326 #define BOOTM_ERR_RESET -1
327 #define BOOTM_ERR_OVERLAP -2
328 #define BOOTM_ERR_UNIMPLEMENTED -3
329 static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
331 uint8_t comp = os.comp;
332 ulong load = os.load;
333 ulong blob_start = os.start;
334 ulong blob_end = os.end;
335 ulong image_start = os.image_start;
336 ulong image_len = os.image_len;
337 uint unc_len = CONFIG_SYS_BOOTM_LEN;
339 const char *type_name = genimg_get_type_name (os.type);
343 if (load == blob_start) {
344 printf (" XIP %s ... ", type_name);
346 printf (" Loading %s ... ", type_name);
348 if (load != image_start) {
349 memmove_wd ((void *)load,
350 (void *)image_start, image_len, CHUNKSZ);
353 *load_end = load + image_len;
358 printf (" Uncompressing %s ... ", type_name);
359 if (gunzip ((void *)load, unc_len,
360 (uchar *)image_start, &image_len) != 0) {
361 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
362 "- must RESET board to recover\n");
364 show_boot_progress (-6);
365 return BOOTM_ERR_RESET;
368 *load_end = load + image_len;
370 #endif /* CONFIG_GZIP */
373 printf (" Uncompressing %s ... ", type_name);
375 * If we've got less than 4 MB of malloc() space,
376 * use slower decompression algorithm which requires
377 * at most 2300 KB of memory.
379 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
380 &unc_len, (char *)image_start, image_len,
381 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
383 printf ("BUNZIP2: uncompress or overwrite error %d "
384 "- must RESET board to recover\n", i);
386 show_boot_progress (-6);
387 return BOOTM_ERR_RESET;
390 *load_end = load + unc_len;
392 #endif /* CONFIG_BZIP2 */
395 printf (" Uncompressing %s ... ", type_name);
397 int ret = lzmaBuffToBuffDecompress(
398 (unsigned char *)load, &unc_len,
399 (unsigned char *)image_start, image_len);
401 printf ("LZMA: uncompress or overwrite error %d "
402 "- must RESET board to recover\n", ret);
403 show_boot_progress (-6);
404 return BOOTM_ERR_RESET;
406 *load_end = load + unc_len;
408 #endif /* CONFIG_LZMA */
411 printf (" Uncompressing %s ... ", type_name);
413 int ret = lzop_decompress((const unsigned char *)image_start,
414 image_len, (unsigned char *)load,
416 if (ret != LZO_E_OK) {
417 printf ("LZO: uncompress or overwrite error %d "
418 "- must RESET board to recover\n", ret);
420 show_boot_progress (-6);
421 return BOOTM_ERR_RESET;
424 *load_end = load + unc_len;
426 #endif /* CONFIG_LZO */
428 printf ("Unimplemented compression type %d\n", comp);
429 return BOOTM_ERR_UNIMPLEMENTED;
432 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
434 show_boot_progress (7);
436 if ((load < blob_end) && (*load_end > blob_start)) {
437 debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end);
438 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
440 return BOOTM_ERR_OVERLAP;
446 static int bootm_start_standalone(ulong iflag, int argc, char *argv[])
449 int (*appl)(int, char *[]);
451 /* Don't start if "autostart" is set to "no" */
452 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
454 sprintf(buf, "%lX", images.os.image_len);
455 setenv("filesize", buf);
458 appl = (int (*)(int, char *[]))ntohl(images.ep);
459 (*appl)(argc-1, &argv[1]);
464 /* we overload the cmd field with our state machine info instead of a
465 * function pointer */
466 static cmd_tbl_t cmd_bootm_sub[] = {
467 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
468 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
469 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
470 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
472 #ifdef CONFIG_OF_LIBFDT
473 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
475 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
476 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
477 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
478 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
481 int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
488 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
493 /* treat start special since it resets the state machine */
494 if (state == BOOTM_STATE_START) {
497 return bootm_start(cmdtp, flag, argc, argv);
500 /* Unrecognized command */
506 if (images.state >= state) {
507 printf ("Trying to execute a command out of order\n");
512 images.state |= state;
513 boot_fn = boot_os[images.os.os];
517 case BOOTM_STATE_START:
518 /* should never occur */
520 case BOOTM_STATE_LOADOS:
521 ret = bootm_load_os(images.os, &load_end, 0);
525 lmb_reserve(&images.lmb, images.os.load,
526 (load_end - images.os.load));
528 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
529 case BOOTM_STATE_RAMDISK:
531 ulong rd_len = images.rd_end - images.rd_start;
534 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
535 rd_len, &images.initrd_start, &images.initrd_end);
539 sprintf(str, "%lx", images.initrd_start);
540 setenv("initrd_start", str);
541 sprintf(str, "%lx", images.initrd_end);
542 setenv("initrd_end", str);
546 #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ)
547 case BOOTM_STATE_FDT:
549 ulong bootmap_base = getenv_bootm_low();
550 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
551 &images.ft_addr, &images.ft_len);
555 case BOOTM_STATE_OS_CMDLINE:
556 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
558 printf ("cmdline subcommand not supported\n");
560 case BOOTM_STATE_OS_BD_T:
561 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
563 printf ("bdt subcommand not supported\n");
565 case BOOTM_STATE_OS_PREP:
566 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
568 printf ("prep subcommand not supported\n");
570 case BOOTM_STATE_OS_GO:
571 disable_interrupts();
573 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
580 /*******************************************************************/
581 /* bootm - boot application image from image in memory */
582 /*******************************************************************/
584 int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
590 #ifndef CONFIG_RELOC_FIXUP_WORKS
591 static int relocated = 0;
593 /* relocate boot function table */
596 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
597 if (boot_os[i] != NULL)
598 boot_os[i] += gd->reloc_off;
603 /* determine if we have a sub command */
607 simple_strtoul(argv[1], &endp, 16);
608 /* endp pointing to NULL means that argv[1] was just a
609 * valid number, pass it along to the normal bootm processing
611 * If endp is ':' or '#' assume a FIT identifier so pass
612 * along for normal processing.
614 * Right now we assume the first arg should never be '-'
616 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
617 return do_bootm_subcommand(cmdtp, flag, argc, argv);
620 if (bootm_start(cmdtp, flag, argc, argv))
624 * We have reached the point of no return: we are going to
625 * overwrite all exception vector code, so we cannot easily
626 * recover from any failures any more...
628 iflag = disable_interrupts();
630 #if defined(CONFIG_CMD_USB)
632 * turn off USB to prevent the host controller from writing to the
633 * SDRAM while Linux is booting. This could happen (at least for OHCI
634 * controller), because the HCCA (Host Controller Communication Area)
635 * lies within the SDRAM and the host controller writes continously to
636 * this area (as busmaster!). The HccaFrameNumber is for example
637 * updated every 1 ms within the HCCA structure in SDRAM! For more
638 * details see the OpenHCI specification.
643 #ifdef CONFIG_AMIGAONEG3SE
645 * We've possible left the caches enabled during
646 * bios emulation, so turn them off again
652 ret = bootm_load_os(images.os, &load_end, 1);
655 if (ret == BOOTM_ERR_RESET)
656 do_reset (cmdtp, flag, argc, argv);
657 if (ret == BOOTM_ERR_OVERLAP) {
658 if (images.legacy_hdr_valid) {
659 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
660 puts ("WARNING: legacy format multi component "
661 "image overwritten\n");
663 puts ("ERROR: new format image overwritten - "
664 "must RESET the board to recover\n");
665 show_boot_progress (-113);
666 do_reset (cmdtp, flag, argc, argv);
669 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
672 show_boot_progress (-7);
677 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
679 if (images.os.type == IH_TYPE_STANDALONE) {
682 /* This may return when 'autostart' is 'no' */
683 bootm_start_standalone(iflag, argc, argv);
687 show_boot_progress (8);
689 #ifdef CONFIG_SILENT_CONSOLE
690 if (images.os.os == IH_OS_LINUX)
691 fixup_silent_linux();
694 boot_fn = boot_os[images.os.os];
696 if (boot_fn == NULL) {
699 printf ("ERROR: booting os '%s' (%d) is not supported\n",
700 genimg_get_os_name(images.os.os), images.os.os);
701 show_boot_progress (-8);
707 boot_fn(0, argc, argv, &images);
709 show_boot_progress (-9);
711 puts ("\n## Control returned to monitor - resetting...\n");
713 do_reset (cmdtp, flag, argc, argv);
719 * image_get_kernel - verify legacy format kernel image
720 * @img_addr: in RAM address of the legacy format image to be verified
721 * @verify: data CRC verification flag
723 * image_get_kernel() verifies legacy image integrity and returns pointer to
724 * legacy image header if image verification was completed successfully.
727 * pointer to a legacy image header if valid image was found
728 * otherwise return NULL
730 static image_header_t *image_get_kernel (ulong img_addr, int verify)
732 image_header_t *hdr = (image_header_t *)img_addr;
734 if (!image_check_magic(hdr)) {
735 puts ("Bad Magic Number\n");
736 show_boot_progress (-1);
739 show_boot_progress (2);
741 if (!image_check_hcrc (hdr)) {
742 puts ("Bad Header Checksum\n");
743 show_boot_progress (-2);
747 show_boot_progress (3);
748 image_print_contents (hdr);
751 puts (" Verifying Checksum ... ");
752 if (!image_check_dcrc (hdr)) {
753 printf ("Bad Data CRC\n");
754 show_boot_progress (-3);
759 show_boot_progress (4);
761 if (!image_check_target_arch (hdr)) {
762 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
763 show_boot_progress (-4);
770 * fit_check_kernel - verify FIT format kernel subimage
771 * @fit_hdr: pointer to the FIT image header
772 * os_noffset: kernel subimage node offset within FIT image
773 * @verify: data CRC verification flag
775 * fit_check_kernel() verifies integrity of the kernel subimage and from
776 * specified FIT image.
782 #if defined (CONFIG_FIT)
783 static int fit_check_kernel (const void *fit, int os_noffset, int verify)
785 fit_image_print (fit, os_noffset, " ");
788 puts (" Verifying Hash Integrity ... ");
789 if (!fit_image_check_hashes (fit, os_noffset)) {
790 puts ("Bad Data Hash\n");
791 show_boot_progress (-104);
796 show_boot_progress (105);
798 if (!fit_image_check_target_arch (fit, os_noffset)) {
799 puts ("Unsupported Architecture\n");
800 show_boot_progress (-105);
804 show_boot_progress (106);
805 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
806 puts ("Not a kernel image\n");
807 show_boot_progress (-106);
811 show_boot_progress (107);
814 #endif /* CONFIG_FIT */
817 * boot_get_kernel - find kernel image
818 * @os_data: pointer to a ulong variable, will hold os data start address
819 * @os_len: pointer to a ulong variable, will hold os data length
821 * boot_get_kernel() tries to find a kernel image, verifies its integrity
822 * and locates kernel data.
825 * pointer to image header if valid image was found, plus kernel start
826 * address and length, otherwise NULL
828 static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
829 bootm_headers_t *images, ulong *os_data, ulong *os_len)
833 #if defined(CONFIG_FIT)
835 const char *fit_uname_config = NULL;
836 const char *fit_uname_kernel = NULL;
843 /* find out kernel image address */
845 img_addr = load_addr;
846 debug ("* kernel: default image load address = 0x%08lx\n",
848 #if defined(CONFIG_FIT)
849 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
850 &fit_uname_config)) {
851 debug ("* kernel: config '%s' from image at 0x%08lx\n",
852 fit_uname_config, img_addr);
853 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
854 &fit_uname_kernel)) {
855 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
856 fit_uname_kernel, img_addr);
859 img_addr = simple_strtoul(argv[1], NULL, 16);
860 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
863 show_boot_progress (1);
865 /* copy from dataflash if needed */
866 img_addr = genimg_get_image (img_addr);
868 /* check image type, for FIT images get FIT kernel node */
869 *os_data = *os_len = 0;
870 switch (genimg_get_format ((void *)img_addr)) {
871 case IMAGE_FORMAT_LEGACY:
872 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
874 hdr = image_get_kernel (img_addr, images->verify);
877 show_boot_progress (5);
879 /* get os_data and os_len */
880 switch (image_get_type (hdr)) {
882 *os_data = image_get_data (hdr);
883 *os_len = image_get_data_size (hdr);
886 image_multi_getimg (hdr, 0, os_data, os_len);
888 case IH_TYPE_STANDALONE:
889 *os_data = image_get_data (hdr);
890 *os_len = image_get_data_size (hdr);
893 printf ("Wrong Image Type for %s command\n", cmdtp->name);
894 show_boot_progress (-5);
899 * copy image header to allow for image overwrites during kernel
902 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
904 /* save pointer to image header */
905 images->legacy_hdr_os = hdr;
907 images->legacy_hdr_valid = 1;
908 show_boot_progress (6);
910 #if defined(CONFIG_FIT)
911 case IMAGE_FORMAT_FIT:
912 fit_hdr = (void *)img_addr;
913 printf ("## Booting kernel from FIT Image at %08lx ...\n",
916 if (!fit_check_format (fit_hdr)) {
917 puts ("Bad FIT kernel image format!\n");
918 show_boot_progress (-100);
921 show_boot_progress (100);
923 if (!fit_uname_kernel) {
925 * no kernel image node unit name, try to get config
926 * node first. If config unit node name is NULL
927 * fit_conf_get_node() will try to find default config node
929 show_boot_progress (101);
930 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
931 if (cfg_noffset < 0) {
932 show_boot_progress (-101);
935 /* save configuration uname provided in the first
938 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
939 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
940 show_boot_progress (103);
942 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
943 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
945 /* get kernel component image node offset */
946 show_boot_progress (102);
947 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
949 if (os_noffset < 0) {
950 show_boot_progress (-103);
954 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
956 show_boot_progress (104);
957 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
960 /* get kernel image data address and length */
961 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
962 puts ("Could not find kernel subimage data!\n");
963 show_boot_progress (-107);
966 show_boot_progress (108);
969 *os_data = (ulong)data;
970 images->fit_hdr_os = fit_hdr;
971 images->fit_uname_os = fit_uname_kernel;
972 images->fit_noffset_os = os_noffset;
976 printf ("Wrong Image Format for %s command\n", cmdtp->name);
977 show_boot_progress (-108);
981 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
982 *os_data, *os_len, *os_len);
984 return (void *)img_addr;
988 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
989 "boot application image from memory",
990 "[addr [arg ...]]\n - boot application image stored in memory\n"
991 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
992 "\t'arg' can be the address of an initrd image\n"
993 #if defined(CONFIG_OF_LIBFDT)
994 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
995 "\ta third argument is required which is the address of the\n"
996 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
997 "\tuse a '-' for the second argument. If you do not pass a third\n"
998 "\ta bd_info struct will be passed instead\n"
1000 #if defined(CONFIG_FIT)
1001 "\t\nFor the new multi component uImage format (FIT) addresses\n"
1002 "\tmust be extened to include component or configuration unit name:\n"
1003 "\taddr:<subimg_uname> - direct component image specification\n"
1004 "\taddr#<conf_uname> - configuration specification\n"
1005 "\tUse iminfo command to get the list of existing component\n"
1006 "\timages and configurations.\n"
1008 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1010 "issued in the order below (it's ok to not issue all sub-commands):\n"
1011 "\tstart [addr [arg ...]]\n"
1012 "\tloados - load OS image\n"
1013 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1014 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1016 #if defined(CONFIG_OF_LIBFDT)
1017 "\tfdt - relocate flat device tree\n"
1019 "\tcmdline - OS specific command line processing/setup\n"
1020 "\tbdt - OS specific bd_t processing\n"
1021 "\tprep - OS specific prep before relocation or go\n"
1025 /*******************************************************************/
1026 /* bootd - boot default image */
1027 /*******************************************************************/
1028 #if defined(CONFIG_CMD_BOOTD)
1029 int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1033 #ifndef CONFIG_SYS_HUSH_PARSER
1034 if (run_command (getenv ("bootcmd"), flag) < 0)
1037 if (parse_string_outer (getenv ("bootcmd"),
1038 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1045 boot, 1, 1, do_bootd,
1046 "boot default, i.e., run 'bootcmd'",
1050 /* keep old command name "bootd" for backward compatibility */
1052 bootd, 1, 1, do_bootd,
1053 "boot default, i.e., run 'bootcmd'",
1060 /*******************************************************************/
1061 /* iminfo - print header info for a requested image */
1062 /*******************************************************************/
1063 #if defined(CONFIG_CMD_IMI)
1064 int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1071 return image_info (load_addr);
1074 for (arg = 1; arg < argc; ++arg) {
1075 addr = simple_strtoul (argv[arg], NULL, 16);
1076 if (image_info (addr) != 0)
1082 static int image_info (ulong addr)
1084 void *hdr = (void *)addr;
1086 printf ("\n## Checking Image at %08lx ...\n", addr);
1088 switch (genimg_get_format (hdr)) {
1089 case IMAGE_FORMAT_LEGACY:
1090 puts (" Legacy image found\n");
1091 if (!image_check_magic (hdr)) {
1092 puts (" Bad Magic Number\n");
1096 if (!image_check_hcrc (hdr)) {
1097 puts (" Bad Header Checksum\n");
1101 image_print_contents (hdr);
1103 puts (" Verifying Checksum ... ");
1104 if (!image_check_dcrc (hdr)) {
1105 puts (" Bad Data CRC\n");
1110 #if defined(CONFIG_FIT)
1111 case IMAGE_FORMAT_FIT:
1112 puts (" FIT image found\n");
1114 if (!fit_check_format (hdr)) {
1115 puts ("Bad FIT image format!\n");
1119 fit_print_contents (hdr);
1121 if (!fit_all_image_check_hashes (hdr)) {
1122 puts ("Bad hash in FIT image!\n");
1129 puts ("Unknown image format!\n");
1137 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
1138 "print header information for application image",
1140 " - print header information for application image starting at\n"
1141 " address 'addr' in memory; this includes verification of the\n"
1142 " image contents (magic number, header and payload checksums)"
1147 /*******************************************************************/
1148 /* imls - list all images found in flash */
1149 /*******************************************************************/
1150 #if defined(CONFIG_CMD_IMLS)
1151 int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1157 for (i = 0, info = &flash_info[0];
1158 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
1160 if (info->flash_id == FLASH_UNKNOWN)
1162 for (j = 0; j < info->sector_count; ++j) {
1164 hdr = (void *)info->start[j];
1168 switch (genimg_get_format (hdr)) {
1169 case IMAGE_FORMAT_LEGACY:
1170 if (!image_check_hcrc (hdr))
1173 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1174 image_print_contents (hdr);
1176 puts (" Verifying Checksum ... ");
1177 if (!image_check_dcrc (hdr)) {
1178 puts ("Bad Data CRC\n");
1183 #if defined(CONFIG_FIT)
1184 case IMAGE_FORMAT_FIT:
1185 if (!fit_check_format (hdr))
1188 printf ("FIT Image at %08lX:\n", (ulong)hdr);
1189 fit_print_contents (hdr);
1205 imls, 1, 1, do_imls,
1206 "list all images found in flash",
1208 " - Prints information about all images found at sector\n"
1209 " boundaries in flash."
1213 /*******************************************************************/
1214 /* helper routines */
1215 /*******************************************************************/
1216 #ifdef CONFIG_SILENT_CONSOLE
1217 static void fixup_silent_linux ()
1219 char buf[256], *start, *end;
1220 char *cmdline = getenv ("bootargs");
1222 /* Only fix cmdline when requested */
1223 if (!(gd->flags & GD_FLG_SILENT))
1226 debug ("before silent fix-up: %s\n", cmdline);
1228 if ((start = strstr (cmdline, "console=")) != NULL) {
1229 end = strchr (start, ' ');
1230 strncpy (buf, cmdline, (start - cmdline + 8));
1232 strcpy (buf + (start - cmdline + 8), end);
1234 buf[start - cmdline + 8] = '\0';
1236 strcpy (buf, cmdline);
1237 strcat (buf, " console=");
1240 strcpy (buf, "console=");
1243 setenv ("bootargs", buf);
1244 debug ("after silent fix-up: %s\n", buf);
1246 #endif /* CONFIG_SILENT_CONSOLE */
1249 /*******************************************************************/
1250 /* OS booting routines */
1251 /*******************************************************************/
1253 #ifdef CONFIG_BOOTM_NETBSD
1254 static int do_bootm_netbsd (int flag, int argc, char *argv[],
1255 bootm_headers_t *images)
1257 void (*loader)(bd_t *, image_header_t *, char *, char *);
1258 image_header_t *os_hdr, *hdr;
1259 ulong kernel_data, kernel_len;
1263 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1266 #if defined(CONFIG_FIT)
1267 if (!images->legacy_hdr_valid) {
1268 fit_unsupported_reset ("NetBSD");
1272 hdr = images->legacy_hdr_os;
1275 * Booting a (NetBSD) kernel image
1277 * This process is pretty similar to a standalone application:
1278 * The (first part of an multi-) image must be a stage-2 loader,
1279 * which in turn is responsible for loading & invoking the actual
1280 * kernel. The only differences are the parameters being passed:
1281 * besides the board info strucure, the loader expects a command
1282 * line, the name of the console device, and (optionally) the
1283 * address of the original image header.
1286 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
1287 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1293 #if defined (CONFIG_8xx_CONS_SMC1)
1295 #elif defined (CONFIG_8xx_CONS_SMC2)
1297 #elif defined (CONFIG_8xx_CONS_SCC2)
1299 #elif defined (CONFIG_8xx_CONS_SCC3)
1307 for (i = 2, len = 0; i < argc; i += 1)
1308 len += strlen (argv[i]) + 1;
1309 cmdline = malloc (len);
1311 for (i = 2, len = 0; i < argc; i += 1) {
1313 cmdline[len++] = ' ';
1314 strcpy (&cmdline[len], argv[i]);
1315 len += strlen (argv[i]);
1317 } else if ((cmdline = getenv ("bootargs")) == NULL) {
1321 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
1323 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1326 show_boot_progress (15);
1329 * NetBSD Stage-2 Loader Parameters:
1330 * r3: ptr to board info data
1332 * r5: console device
1333 * r6: boot args string
1335 (*loader) (gd->bd, os_hdr, consdev, cmdline);
1339 #endif /* CONFIG_BOOTM_NETBSD*/
1341 #ifdef CONFIG_LYNXKDI
1342 static int do_bootm_lynxkdi (int flag, int argc, char *argv[],
1343 bootm_headers_t *images)
1345 image_header_t *hdr = &images->legacy_hdr_os_copy;
1347 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1350 #if defined(CONFIG_FIT)
1351 if (!images->legacy_hdr_valid) {
1352 fit_unsupported_reset ("Lynx");
1357 lynxkdi_boot ((image_header_t *)hdr);
1361 #endif /* CONFIG_LYNXKDI */
1363 #ifdef CONFIG_BOOTM_RTEMS
1364 static int do_bootm_rtems (int flag, int argc, char *argv[],
1365 bootm_headers_t *images)
1367 void (*entry_point)(bd_t *);
1369 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1372 #if defined(CONFIG_FIT)
1373 if (!images->legacy_hdr_valid) {
1374 fit_unsupported_reset ("RTEMS");
1379 entry_point = (void (*)(bd_t *))images->ep;
1381 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1382 (ulong)entry_point);
1384 show_boot_progress (15);
1388 * r3: ptr to board info data
1390 (*entry_point)(gd->bd);
1394 #endif /* CONFIG_BOOTM_RTEMS */
1396 #if defined(CONFIG_CMD_ELF)
1397 static int do_bootm_vxworks (int flag, int argc, char *argv[],
1398 bootm_headers_t *images)
1402 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1405 #if defined(CONFIG_FIT)
1406 if (!images->legacy_hdr_valid) {
1407 fit_unsupported_reset ("VxWorks");
1412 sprintf(str, "%lx", images->ep); /* write entry-point into string */
1413 setenv("loadaddr", str);
1414 do_bootvx(NULL, 0, 0, NULL);
1419 static int do_bootm_qnxelf(int flag, int argc, char *argv[],
1420 bootm_headers_t *images)
1422 char *local_args[2];
1425 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1428 #if defined(CONFIG_FIT)
1429 if (!images->legacy_hdr_valid) {
1430 fit_unsupported_reset ("QNX");
1435 sprintf(str, "%lx", images->ep); /* write entry-point into string */
1436 local_args[0] = argv[0];
1437 local_args[1] = str; /* and provide it via the arguments */
1438 do_bootelf(NULL, 0, 2, local_args);
1444 #ifdef CONFIG_INTEGRITY
1445 static int do_bootm_integrity (int flag, int argc, char *argv[],
1446 bootm_headers_t *images)
1448 void (*entry_point)(void);
1450 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1453 #if defined(CONFIG_FIT)
1454 if (!images->legacy_hdr_valid) {
1455 fit_unsupported_reset ("INTEGRITY");
1460 entry_point = (void (*)(void))images->ep;
1462 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1463 (ulong)entry_point);
1465 show_boot_progress (15);
1468 * INTEGRITY Parameters: