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 #include <linux/compiler.h>
42 #if defined(CONFIG_CMD_USB)
46 #ifdef CONFIG_SYS_HUSH_PARSER
50 #if defined(CONFIG_OF_LIBFDT)
52 #include <fdt_support.h>
56 #include <lzma/LzmaTypes.h>
57 #include <lzma/LzmaDec.h>
58 #include <lzma/LzmaTools.h>
59 #endif /* CONFIG_LZMA */
62 #include <linux/lzo.h>
63 #endif /* CONFIG_LZO */
65 DECLARE_GLOBAL_DATA_PTR;
67 #ifndef CONFIG_SYS_BOOTM_LEN
68 #define CONFIG_SYS_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
72 extern void bz_internal_error(int);
75 #if defined(CONFIG_CMD_IMI)
76 static int image_info(unsigned long addr);
79 #if defined(CONFIG_CMD_IMLS)
81 #include <mtd/cfi_flash.h>
82 extern flash_info_t flash_info[]; /* info for FLASH chips */
85 #if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
86 static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
89 #include <linux/err.h>
92 #if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
93 static void fixup_silent_linux(void);
96 static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
97 char * const argv[], bootm_headers_t *images,
98 ulong *os_data, ulong *os_len);
101 * Continue booting an OS image; caller already has:
102 * - copied image header to global variable `header'
103 * - checked header magic number, checksums (both header & image),
104 * - verified image architecture (PPC) and type (KERNEL or MULTI),
105 * - loaded (first part of) image to header load address,
106 * - disabled interrupts.
108 * @flag: Flags indicating what to do (BOOTM_STATE_...)
109 * @argc: Number of arguments. Note that the arguments are shifted down
110 * so that 0 is the first argument not processed by U-Boot, and
111 * argc is adjusted accordingly. This avoids confusion as to how
112 * many arguments are available for the OS.
113 * @images: Pointers to os/initrd/fdt
114 * @return 1 on error. On success the OS boots so this function does
117 typedef int boot_os_fn(int flag, int argc, char * const argv[],
118 bootm_headers_t *images);
120 #ifdef CONFIG_BOOTM_LINUX
121 extern boot_os_fn do_bootm_linux;
123 #ifdef CONFIG_BOOTM_NETBSD
124 static boot_os_fn do_bootm_netbsd;
126 #if defined(CONFIG_LYNXKDI)
127 static boot_os_fn do_bootm_lynxkdi;
128 extern void lynxkdi_boot(image_header_t *);
130 #ifdef CONFIG_BOOTM_RTEMS
131 static boot_os_fn do_bootm_rtems;
133 #if defined(CONFIG_BOOTM_OSE)
134 static boot_os_fn do_bootm_ose;
136 #if defined(CONFIG_BOOTM_PLAN9)
137 static boot_os_fn do_bootm_plan9;
139 #if defined(CONFIG_CMD_ELF)
140 static boot_os_fn do_bootm_vxworks;
141 static boot_os_fn do_bootm_qnxelf;
142 int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
143 int do_bootelf(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
145 #if defined(CONFIG_INTEGRITY)
146 static boot_os_fn do_bootm_integrity;
149 static boot_os_fn *boot_os[] = {
150 #ifdef CONFIG_BOOTM_LINUX
151 [IH_OS_LINUX] = do_bootm_linux,
153 #ifdef CONFIG_BOOTM_NETBSD
154 [IH_OS_NETBSD] = do_bootm_netbsd,
156 #ifdef CONFIG_LYNXKDI
157 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
159 #ifdef CONFIG_BOOTM_RTEMS
160 [IH_OS_RTEMS] = do_bootm_rtems,
162 #if defined(CONFIG_BOOTM_OSE)
163 [IH_OS_OSE] = do_bootm_ose,
165 #if defined(CONFIG_BOOTM_PLAN9)
166 [IH_OS_PLAN9] = do_bootm_plan9,
168 #if defined(CONFIG_CMD_ELF)
169 [IH_OS_VXWORKS] = do_bootm_vxworks,
170 [IH_OS_QNX] = do_bootm_qnxelf,
172 #ifdef CONFIG_INTEGRITY
173 [IH_OS_INTEGRITY] = do_bootm_integrity,
177 bootm_headers_t images; /* pointers to os/initrd/fdt images */
179 /* Allow for arch specific config before we boot */
180 static void __arch_preboot_os(void)
182 /* please define platform specific arch_preboot_os() */
184 void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
186 #define IH_INITRD_ARCH IH_ARCH_DEFAULT
189 static void boot_start_lmb(bootm_headers_t *images)
192 phys_size_t mem_size;
194 lmb_init(&images->lmb);
196 mem_start = getenv_bootm_low();
197 mem_size = getenv_bootm_size();
199 lmb_add(&images->lmb, (phys_addr_t)mem_start, mem_size);
201 arch_lmb_reserve(&images->lmb);
202 board_lmb_reserve(&images->lmb);
205 #define lmb_reserve(lmb, base, size)
206 static inline void boot_start_lmb(bootm_headers_t *images) { }
209 static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
211 memset((void *)&images, 0, sizeof(images));
212 images.verify = getenv_yesno("verify");
214 boot_start_lmb(&images);
216 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_START, "bootm_start");
217 images.state = BOOTM_STATE_START;
222 static int bootm_find_os(cmd_tbl_t *cmdtp, int flag, int argc,
227 /* get kernel image header, start address and length */
228 os_hdr = boot_get_kernel(cmdtp, flag, argc, argv,
229 &images, &images.os.image_start, &images.os.image_len);
230 if (images.os.image_len == 0) {
231 puts("ERROR: can't get kernel image!\n");
235 /* get image parameters */
236 switch (genimg_get_format(os_hdr)) {
237 case IMAGE_FORMAT_LEGACY:
238 images.os.type = image_get_type(os_hdr);
239 images.os.comp = image_get_comp(os_hdr);
240 images.os.os = image_get_os(os_hdr);
242 images.os.end = image_get_image_end(os_hdr);
243 images.os.load = image_get_load(os_hdr);
245 #if defined(CONFIG_FIT)
246 case IMAGE_FORMAT_FIT:
247 if (fit_image_get_type(images.fit_hdr_os,
248 images.fit_noffset_os, &images.os.type)) {
249 puts("Can't get image type!\n");
250 bootstage_error(BOOTSTAGE_ID_FIT_TYPE);
254 if (fit_image_get_comp(images.fit_hdr_os,
255 images.fit_noffset_os, &images.os.comp)) {
256 puts("Can't get image compression!\n");
257 bootstage_error(BOOTSTAGE_ID_FIT_COMPRESSION);
261 if (fit_image_get_os(images.fit_hdr_os,
262 images.fit_noffset_os, &images.os.os)) {
263 puts("Can't get image OS!\n");
264 bootstage_error(BOOTSTAGE_ID_FIT_OS);
268 images.os.end = fit_get_end(images.fit_hdr_os);
270 if (fit_image_get_load(images.fit_hdr_os, images.fit_noffset_os,
272 puts("Can't get image load address!\n");
273 bootstage_error(BOOTSTAGE_ID_FIT_LOADADDR);
279 puts("ERROR: unknown image format type!\n");
283 /* find kernel entry point */
284 if (images.legacy_hdr_valid) {
285 images.ep = image_get_ep(&images.legacy_hdr_os_copy);
286 #if defined(CONFIG_FIT)
287 } else if (images.fit_uname_os) {
290 ret = fit_image_get_entry(images.fit_hdr_os,
291 images.fit_noffset_os, &images.ep);
293 puts("Can't get entry point property!\n");
298 puts("Could not find kernel entry point!\n");
302 if (images.os.type == IH_TYPE_KERNEL_NOLOAD) {
303 images.os.load = images.os.image_start;
304 images.ep += images.os.load;
307 images.os.start = (ulong)os_hdr;
312 static int bootm_find_ramdisk(int flag, int argc, char * const argv[])
317 ret = boot_get_ramdisk(argc, argv, &images, IH_INITRD_ARCH,
318 &images.rd_start, &images.rd_end);
320 puts("Ramdisk image is corrupt or invalid\n");
327 #if defined(CONFIG_OF_LIBFDT)
328 static int bootm_find_fdt(int flag, int argc, char * const argv[])
332 /* find flattened device tree */
333 ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images,
334 &images.ft_addr, &images.ft_len);
336 puts("Could not find a valid device tree\n");
340 set_working_fdt_addr(images.ft_addr);
346 static int bootm_find_other(cmd_tbl_t *cmdtp, int flag, int argc,
349 if (((images.os.type == IH_TYPE_KERNEL) ||
350 (images.os.type == IH_TYPE_KERNEL_NOLOAD) ||
351 (images.os.type == IH_TYPE_MULTI)) &&
352 (images.os.os == IH_OS_LINUX)) {
353 if (bootm_find_ramdisk(flag, argc, argv))
356 #if defined(CONFIG_OF_LIBFDT)
357 if (bootm_find_fdt(flag, argc, argv))
365 #define BOOTM_ERR_RESET -1
366 #define BOOTM_ERR_OVERLAP -2
367 #define BOOTM_ERR_UNIMPLEMENTED -3
368 static int bootm_load_os(bootm_headers_t *images, unsigned long *load_end,
371 image_info_t os = images->os;
372 uint8_t comp = os.comp;
373 ulong load = os.load;
374 ulong blob_start = os.start;
375 ulong blob_end = os.end;
376 ulong image_start = os.image_start;
377 ulong image_len = os.image_len;
378 __maybe_unused uint unc_len = CONFIG_SYS_BOOTM_LEN;
380 void *load_buf, *image_buf;
381 #if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
383 #endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
385 const char *type_name = genimg_get_type_name(os.type);
387 load_buf = map_sysmem(load, image_len);
388 image_buf = map_sysmem(image_start, image_len);
391 if (load == blob_start || load == image_start) {
392 printf(" XIP %s ... ", type_name);
395 printf(" Loading %s ... ", type_name);
396 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
398 *load_end = load + image_len;
402 printf(" Uncompressing %s ... ", type_name);
403 if (gunzip(load_buf, unc_len, image_buf, &image_len) != 0) {
404 puts("GUNZIP: uncompress, out-of-mem or overwrite "
405 "error - must RESET board to recover\n");
407 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
408 return BOOTM_ERR_RESET;
411 *load_end = load + image_len;
413 #endif /* CONFIG_GZIP */
416 printf(" Uncompressing %s ... ", type_name);
418 * If we've got less than 4 MB of malloc() space,
419 * use slower decompression algorithm which requires
420 * at most 2300 KB of memory.
422 int i = BZ2_bzBuffToBuffDecompress(load_buf, &unc_len,
423 image_buf, image_len,
424 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
426 printf("BUNZIP2: uncompress or overwrite error %d "
427 "- must RESET board to recover\n", i);
429 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
430 return BOOTM_ERR_RESET;
433 *load_end = load + unc_len;
435 #endif /* CONFIG_BZIP2 */
438 SizeT lzma_len = unc_len;
439 printf(" Uncompressing %s ... ", type_name);
441 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
442 image_buf, image_len);
445 printf("LZMA: uncompress or overwrite error %d "
446 "- must RESET board to recover\n", ret);
447 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
448 return BOOTM_ERR_RESET;
450 *load_end = load + unc_len;
453 #endif /* CONFIG_LZMA */
456 printf(" Uncompressing %s ... ", type_name);
458 ret = lzop_decompress(image_buf, image_len, load_buf,
460 if (ret != LZO_E_OK) {
461 printf("LZO: uncompress or overwrite error %d "
462 "- must RESET board to recover\n", ret);
464 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
465 return BOOTM_ERR_RESET;
468 *load_end = load + unc_len;
470 #endif /* CONFIG_LZO */
472 printf("Unimplemented compression type %d\n", comp);
473 return BOOTM_ERR_UNIMPLEMENTED;
476 flush_cache(load, (*load_end - load) * sizeof(ulong));
479 debug(" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
480 bootstage_mark(BOOTSTAGE_ID_KERNEL_LOADED);
482 if (!no_overlap && (load < blob_end) && (*load_end > blob_start)) {
483 debug("images.os.start = 0x%lX, images.os.end = 0x%lx\n",
484 blob_start, blob_end);
485 debug("images.os.load = 0x%lx, load_end = 0x%lx\n", load,
488 /* Check what type of image this is. */
489 if (images->legacy_hdr_valid) {
490 if (image_get_type(&images->legacy_hdr_os_copy)
492 puts("WARNING: legacy format multi component image overwritten\n");
493 return BOOTM_ERR_OVERLAP;
495 puts("ERROR: new format image overwritten - must RESET the board to recover\n");
496 bootstage_error(BOOTSTAGE_ID_OVERWRITTEN);
497 return BOOTM_ERR_RESET;
504 static int bootm_start_standalone(int argc, char * const argv[])
507 int (*appl)(int, char * const []);
509 /* Don't start if "autostart" is set to "no" */
510 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
511 setenv_hex("filesize", images.os.image_len);
514 appl = (int (*)(int, char * const []))(ulong)ntohl(images.ep);
519 /* we overload the cmd field with our state machine info instead of a
520 * function pointer */
521 static cmd_tbl_t cmd_bootm_sub[] = {
522 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
523 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
524 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
525 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
527 #ifdef CONFIG_OF_LIBFDT
528 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
530 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
531 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
532 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
533 U_BOOT_CMD_MKENT(fake, 0, 1, (void *)BOOTM_STATE_OS_FAKE_GO, "", ""),
534 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
537 static int boot_selected_os(int argc, char * const argv[], int state,
538 bootm_headers_t *images, boot_os_fn *boot_fn)
540 if (images->os.type == IH_TYPE_STANDALONE) {
541 /* This may return when 'autostart' is 'no' */
542 bootm_start_standalone(argc, argv);
546 boot_fn(state, argc, argv, images);
547 if (state == BOOTM_STATE_OS_FAKE_GO) /* We expect to return */
549 bootstage_error(BOOTSTAGE_ID_BOOT_OS_RETURNED);
551 puts("\n## Control returned to monitor - resetting...\n");
553 return BOOTM_ERR_RESET;
557 * bootm_disable_interrupts() - Disable interrupts in preparation for load/boot
559 * @return interrupt flag (0 if interrupts were disabled, non-zero if they were
562 static ulong bootm_disable_interrupts(void)
567 * We have reached the point of no return: we are going to
568 * overwrite all exception vector code, so we cannot easily
569 * recover from any failures any more...
571 iflag = disable_interrupts();
572 #ifdef CONFIG_NETCONSOLE
573 /* Stop the ethernet stack if NetConsole could have left it up */
577 #if defined(CONFIG_CMD_USB)
579 * turn off USB to prevent the host controller from writing to the
580 * SDRAM while Linux is booting. This could happen (at least for OHCI
581 * controller), because the HCCA (Host Controller Communication Area)
582 * lies within the SDRAM and the host controller writes continously to
583 * this area (as busmaster!). The HccaFrameNumber is for example
584 * updated every 1 ms within the HCCA structure in SDRAM! For more
585 * details see the OpenHCI specification.
593 * Execute selected states of the bootm command.
595 * Note the arguments to this state must be the first argument, Any 'bootm'
596 * or sub-command arguments must have already been taken.
598 * Note that if states contains more than one flag it MUST contain
599 * BOOTM_STATE_START, since this handles and consumes the command line args.
601 * Also note that aside from boot_os_fn functions and bootm_load_os no other
602 * functions we store the return value of in 'ret' may use a negative return
603 * value, without special handling.
605 * @param cmdtp Pointer to bootm command table entry
606 * @param flag Command flags (CMD_FLAG_...)
607 * @param argc Number of subcommand arguments (0 = no arguments)
608 * @param argv Arguments
609 * @param states Mask containing states to run (BOOTM_STATE_...)
610 * @param images Image header information
611 * @param boot_progress 1 to show boot progress, 0 to not do this
612 * @return 0 if ok, something else on error. Some errors will cause this
613 * function to perform a reboot! If states contains BOOTM_STATE_OS_GO
614 * then the intent is to boot an OS, so this function will not return
615 * unless the image type is standalone.
617 static int do_bootm_states(cmd_tbl_t *cmdtp, int flag, int argc,
618 char * const argv[], int states, bootm_headers_t *images,
623 int ret = 0, need_boot_fn;
625 images->state |= states;
628 * Work through the states and see how far we get. We stop on
631 if (states & BOOTM_STATE_START)
632 ret = bootm_start(cmdtp, flag, argc, argv);
634 if (!ret && (states & BOOTM_STATE_FINDOS))
635 ret = bootm_find_os(cmdtp, flag, argc, argv);
637 if (!ret && (states & BOOTM_STATE_FINDOTHER)) {
638 ret = bootm_find_other(cmdtp, flag, argc, argv);
639 argc = 0; /* consume the args */
643 if (!ret && (states & BOOTM_STATE_LOADOS)) {
646 iflag = bootm_disable_interrupts();
647 ret = bootm_load_os(images, &load_end, 0);
649 lmb_reserve(&images->lmb, images->os.load,
650 (load_end - images->os.load));
651 else if (ret && ret != BOOTM_ERR_OVERLAP)
653 else if (ret == BOOTM_ERR_OVERLAP)
655 #ifdef CONFIG_SILENT_CONSOLE
656 if (images->os.os == IH_OS_LINUX)
657 fixup_silent_linux();
661 /* Relocate the ramdisk */
662 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
663 if (!ret && (states & BOOTM_STATE_RAMDISK)) {
664 ulong rd_len = images->rd_end - images->rd_start;
666 ret = boot_ramdisk_high(&images->lmb, images->rd_start,
667 rd_len, &images->initrd_start, &images->initrd_end);
669 setenv_hex("initrd_start", images->initrd_start);
670 setenv_hex("initrd_end", images->initrd_end);
674 #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_LMB)
675 if (!ret && (states & BOOTM_STATE_FDT)) {
676 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr);
677 ret = boot_relocate_fdt(&images->lmb, &images->ft_addr,
682 /* From now on, we need the OS boot function */
685 boot_fn = boot_os[images->os.os];
686 need_boot_fn = states & (BOOTM_STATE_OS_CMDLINE |
687 BOOTM_STATE_OS_BD_T | BOOTM_STATE_OS_PREP |
688 BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO);
689 if (boot_fn == NULL && need_boot_fn) {
692 printf("ERROR: booting os '%s' (%d) is not supported\n",
693 genimg_get_os_name(images->os.os), images->os.os);
694 bootstage_error(BOOTSTAGE_ID_CHECK_BOOT_OS);
698 /* Call various other states that are not generally used */
699 if (!ret && (states & BOOTM_STATE_OS_CMDLINE))
700 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, images);
701 if (!ret && (states & BOOTM_STATE_OS_BD_T))
702 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, images);
703 if (!ret && (states & BOOTM_STATE_OS_PREP))
704 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, images);
707 /* Pretend to run the OS, then run a user command */
708 if (!ret && (states & BOOTM_STATE_OS_FAKE_GO)) {
709 char *cmd_list = getenv("fakegocmd");
711 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_FAKE_GO,
713 if (!ret && cmd_list)
714 ret = run_command_list(cmd_list, -1, flag);
718 /* Check for unsupported subcommand. */
720 puts("subcommand not supported\n");
724 /* Now run the OS! We hope this doesn't return */
725 if (!ret && (states & BOOTM_STATE_OS_GO))
726 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_GO,
729 /* Deal with any fallout */
734 if (ret == BOOTM_ERR_UNIMPLEMENTED)
735 bootstage_error(BOOTSTAGE_ID_DECOMP_UNIMPL);
736 else if (ret == BOOTM_ERR_RESET)
737 do_reset(cmdtp, flag, argc, argv);
742 static int do_bootm_subcommand(cmd_tbl_t *cmdtp, int flag, int argc,
749 c = find_cmd_tbl(argv[0], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
753 state = (long)c->cmd;
754 if (state == BOOTM_STATE_START)
755 state |= BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER;
757 /* Unrecognized command */
758 return CMD_RET_USAGE;
761 if (state != BOOTM_STATE_START && images.state >= state) {
762 printf("Trying to execute a command out of order\n");
763 return CMD_RET_USAGE;
766 ret = do_bootm_states(cmdtp, flag, argc, argv, state, &images, 0);
771 /*******************************************************************/
772 /* bootm - boot application image from image in memory */
773 /*******************************************************************/
775 int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
777 #ifdef CONFIG_NEEDS_MANUAL_RELOC
778 static int relocated = 0;
783 /* relocate boot function table */
784 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
785 if (boot_os[i] != NULL)
786 boot_os[i] += gd->reloc_off;
788 /* relocate names of sub-command table */
789 for (i = 0; i < ARRAY_SIZE(cmd_bootm_sub); i++)
790 cmd_bootm_sub[i].name += gd->reloc_off;
796 /* determine if we have a sub command */
801 simple_strtoul(argv[0], &endp, 16);
802 /* endp pointing to NULL means that argv[0] was just a
803 * valid number, pass it along to the normal bootm processing
805 * If endp is ':' or '#' assume a FIT identifier so pass
806 * along for normal processing.
808 * Right now we assume the first arg should never be '-'
810 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
811 return do_bootm_subcommand(cmdtp, flag, argc, argv);
814 return do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START |
815 BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER |
816 BOOTM_STATE_LOADOS | BOOTM_STATE_OS_PREP |
817 BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO, &images, 1);
820 int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
822 const char *ep = getenv("autostart");
824 if (ep && !strcmp(ep, "yes")) {
826 local_args[0] = (char *)cmd;
827 local_args[1] = NULL;
828 printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr);
829 return do_bootm(cmdtp, 0, 1, local_args);
836 * image_get_kernel - verify legacy format kernel image
837 * @img_addr: in RAM address of the legacy format image to be verified
838 * @verify: data CRC verification flag
840 * image_get_kernel() verifies legacy image integrity and returns pointer to
841 * legacy image header if image verification was completed successfully.
844 * pointer to a legacy image header if valid image was found
845 * otherwise return NULL
847 static image_header_t *image_get_kernel(ulong img_addr, int verify)
849 image_header_t *hdr = (image_header_t *)img_addr;
851 if (!image_check_magic(hdr)) {
852 puts("Bad Magic Number\n");
853 bootstage_error(BOOTSTAGE_ID_CHECK_MAGIC);
856 bootstage_mark(BOOTSTAGE_ID_CHECK_HEADER);
858 if (!image_check_hcrc(hdr)) {
859 puts("Bad Header Checksum\n");
860 bootstage_error(BOOTSTAGE_ID_CHECK_HEADER);
864 bootstage_mark(BOOTSTAGE_ID_CHECK_CHECKSUM);
865 image_print_contents(hdr);
868 puts(" Verifying Checksum ... ");
869 if (!image_check_dcrc(hdr)) {
870 printf("Bad Data CRC\n");
871 bootstage_error(BOOTSTAGE_ID_CHECK_CHECKSUM);
876 bootstage_mark(BOOTSTAGE_ID_CHECK_ARCH);
878 if (!image_check_target_arch(hdr)) {
879 printf("Unsupported Architecture 0x%x\n", image_get_arch(hdr));
880 bootstage_error(BOOTSTAGE_ID_CHECK_ARCH);
887 * boot_get_kernel - find kernel image
888 * @os_data: pointer to a ulong variable, will hold os data start address
889 * @os_len: pointer to a ulong variable, will hold os data length
891 * boot_get_kernel() tries to find a kernel image, verifies its integrity
892 * and locates kernel data.
895 * pointer to image header if valid image was found, plus kernel start
896 * address and length, otherwise NULL
898 static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
899 char * const argv[], bootm_headers_t *images, ulong *os_data,
905 #if defined(CONFIG_FIT)
906 const char *fit_uname_config = NULL;
907 const char *fit_uname_kernel = NULL;
911 /* find out kernel image address */
913 img_addr = load_addr;
914 debug("* kernel: default image load address = 0x%08lx\n",
916 #if defined(CONFIG_FIT)
917 } else if (fit_parse_conf(argv[0], load_addr, &img_addr,
918 &fit_uname_config)) {
919 debug("* kernel: config '%s' from image at 0x%08lx\n",
920 fit_uname_config, img_addr);
921 } else if (fit_parse_subimage(argv[0], load_addr, &img_addr,
922 &fit_uname_kernel)) {
923 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
924 fit_uname_kernel, img_addr);
927 img_addr = simple_strtoul(argv[0], NULL, 16);
928 debug("* kernel: cmdline image address = 0x%08lx\n", img_addr);
931 bootstage_mark(BOOTSTAGE_ID_CHECK_MAGIC);
933 /* copy from dataflash if needed */
934 img_addr = genimg_get_image(img_addr);
936 /* check image type, for FIT images get FIT kernel node */
937 *os_data = *os_len = 0;
938 buf = map_sysmem(img_addr, 0);
939 switch (genimg_get_format(buf)) {
940 case IMAGE_FORMAT_LEGACY:
941 printf("## Booting kernel from Legacy Image at %08lx ...\n",
943 hdr = image_get_kernel(img_addr, images->verify);
946 bootstage_mark(BOOTSTAGE_ID_CHECK_IMAGETYPE);
948 /* get os_data and os_len */
949 switch (image_get_type(hdr)) {
951 case IH_TYPE_KERNEL_NOLOAD:
952 *os_data = image_get_data(hdr);
953 *os_len = image_get_data_size(hdr);
956 image_multi_getimg(hdr, 0, os_data, os_len);
958 case IH_TYPE_STANDALONE:
959 *os_data = image_get_data(hdr);
960 *os_len = image_get_data_size(hdr);
963 printf("Wrong Image Type for %s command\n",
965 bootstage_error(BOOTSTAGE_ID_CHECK_IMAGETYPE);
970 * copy image header to allow for image overwrites during
971 * kernel decompression.
973 memmove(&images->legacy_hdr_os_copy, hdr,
974 sizeof(image_header_t));
976 /* save pointer to image header */
977 images->legacy_hdr_os = hdr;
979 images->legacy_hdr_valid = 1;
980 bootstage_mark(BOOTSTAGE_ID_DECOMP_IMAGE);
982 #if defined(CONFIG_FIT)
983 case IMAGE_FORMAT_FIT:
984 os_noffset = fit_image_load(images, FIT_KERNEL_PROP,
986 &fit_uname_kernel, &fit_uname_config,
987 IH_ARCH_DEFAULT, IH_TYPE_KERNEL,
988 BOOTSTAGE_ID_FIT_KERNEL_START,
989 FIT_LOAD_IGNORED, os_data, os_len);
993 images->fit_hdr_os = map_sysmem(img_addr, 0);
994 images->fit_uname_os = fit_uname_kernel;
995 images->fit_uname_cfg = fit_uname_config;
996 images->fit_noffset_os = os_noffset;
1000 printf("Wrong Image Format for %s command\n", cmdtp->name);
1001 bootstage_error(BOOTSTAGE_ID_FIT_KERNEL_INFO);
1005 debug(" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
1006 *os_data, *os_len, *os_len);
1011 #ifdef CONFIG_SYS_LONGHELP
1012 static char bootm_help_text[] =
1013 "[addr [arg ...]]\n - boot application image stored in memory\n"
1014 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
1015 "\t'arg' can be the address of an initrd image\n"
1016 #if defined(CONFIG_OF_LIBFDT)
1017 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
1018 "\ta third argument is required which is the address of the\n"
1019 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1020 "\tuse a '-' for the second argument. If you do not pass a third\n"
1021 "\ta bd_info struct will be passed instead\n"
1023 #if defined(CONFIG_FIT)
1024 "\t\nFor the new multi component uImage format (FIT) addresses\n"
1025 "\tmust be extened to include component or configuration unit name:\n"
1026 "\taddr:<subimg_uname> - direct component image specification\n"
1027 "\taddr#<conf_uname> - configuration specification\n"
1028 "\tUse iminfo command to get the list of existing component\n"
1029 "\timages and configurations.\n"
1031 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1033 "issued in the order below (it's ok to not issue all sub-commands):\n"
1034 "\tstart [addr [arg ...]]\n"
1035 "\tloados - load OS image\n"
1036 #if defined(CONFIG_SYS_BOOT_RAMDISK_HIGH)
1037 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1039 #if defined(CONFIG_OF_LIBFDT)
1040 "\tfdt - relocate flat device tree\n"
1042 "\tcmdline - OS specific command line processing/setup\n"
1043 "\tbdt - OS specific bd_t processing\n"
1044 "\tprep - OS specific prep before relocation or go\n"
1049 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
1050 "boot application image from memory", bootm_help_text
1053 /*******************************************************************/
1054 /* bootd - boot default image */
1055 /*******************************************************************/
1056 #if defined(CONFIG_CMD_BOOTD)
1057 int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1061 if (run_command(getenv("bootcmd"), flag) < 0)
1067 boot, 1, 1, do_bootd,
1068 "boot default, i.e., run 'bootcmd'",
1072 /* keep old command name "bootd" for backward compatibility */
1074 bootd, 1, 1, do_bootd,
1075 "boot default, i.e., run 'bootcmd'",
1082 /*******************************************************************/
1083 /* iminfo - print header info for a requested image */
1084 /*******************************************************************/
1085 #if defined(CONFIG_CMD_IMI)
1086 static int do_iminfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1093 return image_info(load_addr);
1096 for (arg = 1; arg < argc; ++arg) {
1097 addr = simple_strtoul(argv[arg], NULL, 16);
1098 if (image_info(addr) != 0)
1104 static int image_info(ulong addr)
1106 void *hdr = (void *)addr;
1108 printf("\n## Checking Image at %08lx ...\n", addr);
1110 switch (genimg_get_format(hdr)) {
1111 case IMAGE_FORMAT_LEGACY:
1112 puts(" Legacy image found\n");
1113 if (!image_check_magic(hdr)) {
1114 puts(" Bad Magic Number\n");
1118 if (!image_check_hcrc(hdr)) {
1119 puts(" Bad Header Checksum\n");
1123 image_print_contents(hdr);
1125 puts(" Verifying Checksum ... ");
1126 if (!image_check_dcrc(hdr)) {
1127 puts(" Bad Data CRC\n");
1132 #if defined(CONFIG_FIT)
1133 case IMAGE_FORMAT_FIT:
1134 puts(" FIT image found\n");
1136 if (!fit_check_format(hdr)) {
1137 puts("Bad FIT image format!\n");
1141 fit_print_contents(hdr);
1143 if (!fit_all_image_verify(hdr)) {
1144 puts("Bad hash in FIT image!\n");
1151 puts("Unknown image format!\n");
1159 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
1160 "print header information for application image",
1162 " - print header information for application image starting at\n"
1163 " address 'addr' in memory; this includes verification of the\n"
1164 " image contents (magic number, header and payload checksums)"
1169 /*******************************************************************/
1170 /* imls - list all images found in flash */
1171 /*******************************************************************/
1172 #if defined(CONFIG_CMD_IMLS)
1173 static int do_imls_nor(void)
1179 for (i = 0, info = &flash_info[0];
1180 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
1182 if (info->flash_id == FLASH_UNKNOWN)
1184 for (j = 0; j < info->sector_count; ++j) {
1186 hdr = (void *)info->start[j];
1190 switch (genimg_get_format(hdr)) {
1191 case IMAGE_FORMAT_LEGACY:
1192 if (!image_check_hcrc(hdr))
1195 printf("Legacy Image at %08lX:\n", (ulong)hdr);
1196 image_print_contents(hdr);
1198 puts(" Verifying Checksum ... ");
1199 if (!image_check_dcrc(hdr)) {
1200 puts("Bad Data CRC\n");
1205 #if defined(CONFIG_FIT)
1206 case IMAGE_FORMAT_FIT:
1207 if (!fit_check_format(hdr))
1210 printf("FIT Image at %08lX:\n", (ulong)hdr);
1211 fit_print_contents(hdr);
1226 #if defined(CONFIG_CMD_IMLS_NAND)
1227 static int nand_imls_legacyimage(nand_info_t *nand, int nand_dev, loff_t off,
1233 imgdata = malloc(len);
1235 printf("May be a Legacy Image at NAND device %d offset %08llX:\n",
1237 printf(" Low memory(cannot allocate memory for image)\n");
1241 ret = nand_read_skip_bad(nand, off, &len,
1243 if (ret < 0 && ret != -EUCLEAN) {
1248 if (!image_check_hcrc(imgdata)) {
1253 printf("Legacy Image at NAND device %d offset %08llX:\n",
1255 image_print_contents(imgdata);
1257 puts(" Verifying Checksum ... ");
1258 if (!image_check_dcrc(imgdata))
1259 puts("Bad Data CRC\n");
1268 static int nand_imls_fitimage(nand_info_t *nand, int nand_dev, loff_t off,
1274 imgdata = malloc(len);
1276 printf("May be a FIT Image at NAND device %d offset %08llX:\n",
1278 printf(" Low memory(cannot allocate memory for image)\n");
1282 ret = nand_read_skip_bad(nand, off, &len,
1284 if (ret < 0 && ret != -EUCLEAN) {
1289 if (!fit_check_format(imgdata)) {
1294 printf("FIT Image at NAND device %d offset %08llX:\n", nand_dev, off);
1296 fit_print_contents(imgdata);
1302 static int do_imls_nand(void)
1305 int nand_dev = nand_curr_device;
1310 if (nand_dev < 0 || nand_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
1311 puts("\nNo NAND devices available\n");
1317 for (nand_dev = 0; nand_dev < CONFIG_SYS_MAX_NAND_DEVICE; nand_dev++) {
1318 nand = &nand_info[nand_dev];
1319 if (!nand->name || !nand->size)
1322 for (off = 0; off < nand->size; off += nand->erasesize) {
1323 const image_header_t *header;
1326 if (nand_block_isbad(nand, off))
1329 len = sizeof(buffer);
1331 ret = nand_read(nand, off, &len, (u8 *)buffer);
1332 if (ret < 0 && ret != -EUCLEAN) {
1333 printf("NAND read error %d at offset %08llX\n",
1338 switch (genimg_get_format(buffer)) {
1339 case IMAGE_FORMAT_LEGACY:
1340 header = (const image_header_t *)buffer;
1342 len = image_get_image_size(header);
1343 nand_imls_legacyimage(nand, nand_dev, off, len);
1345 #if defined(CONFIG_FIT)
1346 case IMAGE_FORMAT_FIT:
1347 len = fit_get_size(buffer);
1348 nand_imls_fitimage(nand, nand_dev, off, len);
1359 #if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
1360 static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1362 int ret_nor = 0, ret_nand = 0;
1364 #if defined(CONFIG_CMD_IMLS)
1365 ret_nor = do_imls_nor();
1368 #if defined(CONFIG_CMD_IMLS_NAND)
1369 ret_nand = do_imls_nand();
1382 imls, 1, 1, do_imls,
1383 "list all images found in flash",
1385 " - Prints information about all images found at sector/block\n"
1386 " boundaries in nor/nand flash."
1390 /*******************************************************************/
1391 /* helper routines */
1392 /*******************************************************************/
1393 #if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
1395 #define CONSOLE_ARG "console="
1396 #define CONSOLE_ARG_LEN (sizeof(CONSOLE_ARG) - 1)
1398 static void fixup_silent_linux(void)
1401 const char *env_val;
1402 char *cmdline = getenv("bootargs");
1404 /* Only fix cmdline when requested */
1405 if (!(gd->flags & GD_FLG_SILENT))
1408 debug("before silent fix-up: %s\n", cmdline);
1409 if (cmdline && (cmdline[0] != '\0')) {
1410 char *start = strstr(cmdline, CONSOLE_ARG);
1412 /* Allocate space for maximum possible new command line */
1413 buf = malloc(strlen(cmdline) + 1 + CONSOLE_ARG_LEN + 1);
1415 debug("%s: out of memory\n", __func__);
1420 char *end = strchr(start, ' ');
1421 int num_start_bytes = start - cmdline + CONSOLE_ARG_LEN;
1423 strncpy(buf, cmdline, num_start_bytes);
1425 strcpy(buf + num_start_bytes, end);
1427 buf[num_start_bytes] = '\0';
1429 sprintf(buf, "%s %s", cmdline, CONSOLE_ARG);
1434 env_val = CONSOLE_ARG;
1437 setenv("bootargs", env_val);
1438 debug("after silent fix-up: %s\n", env_val);
1441 #endif /* CONFIG_SILENT_CONSOLE */
1443 #if defined(CONFIG_BOOTM_NETBSD) || defined(CONFIG_BOOTM_PLAN9)
1444 static void copy_args(char *dest, int argc, char * const argv[], char delim)
1448 for (i = 0; i < argc; i++) {
1451 strcpy(dest, argv[i]);
1452 dest += strlen(argv[i]);
1457 /*******************************************************************/
1458 /* OS booting routines */
1459 /*******************************************************************/
1461 #ifdef CONFIG_BOOTM_NETBSD
1462 static int do_bootm_netbsd(int flag, int argc, char * const argv[],
1463 bootm_headers_t *images)
1465 void (*loader)(bd_t *, image_header_t *, char *, char *);
1466 image_header_t *os_hdr, *hdr;
1467 ulong kernel_data, kernel_len;
1471 if (flag & BOOTM_STATE_OS_PREP)
1473 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1476 #if defined(CONFIG_FIT)
1477 if (!images->legacy_hdr_valid) {
1478 fit_unsupported_reset("NetBSD");
1482 hdr = images->legacy_hdr_os;
1485 * Booting a (NetBSD) kernel image
1487 * This process is pretty similar to a standalone application:
1488 * The (first part of an multi-) image must be a stage-2 loader,
1489 * which in turn is responsible for loading & invoking the actual
1490 * kernel. The only differences are the parameters being passed:
1491 * besides the board info strucure, the loader expects a command
1492 * line, the name of the console device, and (optionally) the
1493 * address of the original image header.
1496 if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
1497 image_multi_getimg(hdr, 1, &kernel_data, &kernel_len);
1503 #if defined(CONFIG_8xx_CONS_SMC1)
1505 #elif defined(CONFIG_8xx_CONS_SMC2)
1507 #elif defined(CONFIG_8xx_CONS_SCC2)
1509 #elif defined(CONFIG_8xx_CONS_SCC3)
1517 for (i = 0, len = 0; i < argc; i += 1)
1518 len += strlen(argv[i]) + 1;
1519 cmdline = malloc(len);
1520 copy_args(cmdline, argc, argv, ' ');
1521 } else if ((cmdline = getenv("bootargs")) == NULL) {
1525 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
1527 printf("## Transferring control to NetBSD stage-2 loader "
1528 "(at address %08lx) ...\n",
1531 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1534 * NetBSD Stage-2 Loader Parameters:
1535 * r3: ptr to board info data
1537 * r5: console device
1538 * r6: boot args string
1540 (*loader)(gd->bd, os_hdr, consdev, cmdline);
1544 #endif /* CONFIG_BOOTM_NETBSD*/
1546 #ifdef CONFIG_LYNXKDI
1547 static int do_bootm_lynxkdi(int flag, int argc, char * const argv[],
1548 bootm_headers_t *images)
1550 image_header_t *hdr = &images->legacy_hdr_os_copy;
1552 if (flag & BOOTM_STATE_OS_PREP)
1554 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1557 #if defined(CONFIG_FIT)
1558 if (!images->legacy_hdr_valid) {
1559 fit_unsupported_reset("Lynx");
1564 lynxkdi_boot((image_header_t *)hdr);
1568 #endif /* CONFIG_LYNXKDI */
1570 #ifdef CONFIG_BOOTM_RTEMS
1571 static int do_bootm_rtems(int flag, int argc, char * const argv[],
1572 bootm_headers_t *images)
1574 void (*entry_point)(bd_t *);
1576 if (flag & BOOTM_STATE_OS_PREP)
1578 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1581 #if defined(CONFIG_FIT)
1582 if (!images->legacy_hdr_valid) {
1583 fit_unsupported_reset("RTEMS");
1588 entry_point = (void (*)(bd_t *))images->ep;
1590 printf("## Transferring control to RTEMS (at address %08lx) ...\n",
1591 (ulong)entry_point);
1593 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1597 * r3: ptr to board info data
1599 (*entry_point)(gd->bd);
1603 #endif /* CONFIG_BOOTM_RTEMS */
1605 #if defined(CONFIG_BOOTM_OSE)
1606 static int do_bootm_ose(int flag, int argc, char * const argv[],
1607 bootm_headers_t *images)
1609 void (*entry_point)(void);
1611 if (flag & BOOTM_STATE_OS_PREP)
1613 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1616 #if defined(CONFIG_FIT)
1617 if (!images->legacy_hdr_valid) {
1618 fit_unsupported_reset("OSE");
1623 entry_point = (void (*)(void))images->ep;
1625 printf("## Transferring control to OSE (at address %08lx) ...\n",
1626 (ulong)entry_point);
1628 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1638 #endif /* CONFIG_BOOTM_OSE */
1640 #if defined(CONFIG_BOOTM_PLAN9)
1641 static int do_bootm_plan9(int flag, int argc, char * const argv[],
1642 bootm_headers_t *images)
1644 void (*entry_point)(void);
1647 if (flag & BOOTM_STATE_OS_PREP)
1649 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1652 #if defined(CONFIG_FIT)
1653 if (!images->legacy_hdr_valid) {
1654 fit_unsupported_reset("Plan 9");
1659 /* See README.plan9 */
1660 s = getenv("confaddr");
1662 char *confaddr = (char *)simple_strtoul(s, NULL, 16);
1665 copy_args(confaddr, argc, argv, '\n');
1667 s = getenv("bootargs");
1669 strcpy(confaddr, s);
1673 entry_point = (void (*)(void))images->ep;
1675 printf("## Transferring control to Plan 9 (at address %08lx) ...\n",
1676 (ulong)entry_point);
1678 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1681 * Plan 9 Parameters:
1688 #endif /* CONFIG_BOOTM_PLAN9 */
1690 #if defined(CONFIG_CMD_ELF)
1691 static int do_bootm_vxworks(int flag, int argc, char * const argv[],
1692 bootm_headers_t *images)
1696 if (flag & BOOTM_STATE_OS_PREP)
1698 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1701 #if defined(CONFIG_FIT)
1702 if (!images->legacy_hdr_valid) {
1703 fit_unsupported_reset("VxWorks");
1708 sprintf(str, "%lx", images->ep); /* write entry-point into string */
1709 setenv("loadaddr", str);
1710 do_bootvx(NULL, 0, 0, NULL);
1715 static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
1716 bootm_headers_t *images)
1718 char *local_args[2];
1721 if (flag & BOOTM_STATE_OS_PREP)
1723 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1726 #if defined(CONFIG_FIT)
1727 if (!images->legacy_hdr_valid) {
1728 fit_unsupported_reset("QNX");
1733 sprintf(str, "%lx", images->ep); /* write entry-point into string */
1734 local_args[0] = argv[0];
1735 local_args[1] = str; /* and provide it via the arguments */
1736 do_bootelf(NULL, 0, 2, local_args);
1742 #ifdef CONFIG_INTEGRITY
1743 static int do_bootm_integrity(int flag, int argc, char * const argv[],
1744 bootm_headers_t *images)
1746 void (*entry_point)(void);
1748 if (flag & BOOTM_STATE_OS_PREP)
1750 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1753 #if defined(CONFIG_FIT)
1754 if (!images->legacy_hdr_valid) {
1755 fit_unsupported_reset("INTEGRITY");
1760 entry_point = (void (*)(void))images->ep;
1762 printf("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1763 (ulong)entry_point);
1765 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1768 * INTEGRITY Parameters:
1777 #ifdef CONFIG_CMD_BOOTZ
1779 int __weak bootz_setup(ulong image, ulong *start, ulong *end)
1781 /* Please define bootz_setup() for your platform */
1783 puts("Your platform's zImage format isn't supported yet!\n");
1788 * zImage booting support
1790 static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc,
1791 char * const argv[], bootm_headers_t *images)
1794 ulong zi_start, zi_end;
1796 ret = do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START,
1799 /* Setup Linux kernel zImage entry point */
1801 images->ep = load_addr;
1802 debug("* kernel: default image load address = 0x%08lx\n",
1805 images->ep = simple_strtoul(argv[0], NULL, 16);
1806 debug("* kernel: cmdline image address = 0x%08lx\n",
1810 ret = bootz_setup(images->ep, &zi_start, &zi_end);
1814 lmb_reserve(&images->lmb, images->ep, zi_end - zi_start);
1817 * Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not
1818 * have a header that provide this informaiton.
1820 if (bootm_find_ramdisk(flag, argc, argv))
1823 #if defined(CONFIG_OF_LIBFDT)
1824 if (bootm_find_fdt(flag, argc, argv))
1831 int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1835 /* Consume 'bootz' */
1838 if (bootz_start(cmdtp, flag, argc, argv, &images))
1842 * We are doing the BOOTM_STATE_LOADOS state ourselves, so must
1843 * disable interrupts ourselves
1845 bootm_disable_interrupts();
1847 images.os.os = IH_OS_LINUX;
1848 ret = do_bootm_states(cmdtp, flag, argc, argv,
1849 BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
1856 #ifdef CONFIG_SYS_LONGHELP
1857 static char bootz_help_text[] =
1858 "[addr [initrd[:size]] [fdt]]\n"
1859 " - boot Linux zImage stored in memory\n"
1860 "\tThe argument 'initrd' is optional and specifies the address\n"
1861 "\tof the initrd in memory. The optional argument ':size' allows\n"
1862 "\tspecifying the size of RAW initrd.\n"
1863 #if defined(CONFIG_OF_LIBFDT)
1864 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
1865 "\ta third argument is required which is the address of the\n"
1866 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1867 "\tuse a '-' for the second argument. If you do not pass a third\n"
1868 "\ta bd_info struct will be passed instead\n"
1874 bootz, CONFIG_SYS_MAXARGS, 1, do_bootz,
1875 "boot Linux zImage image from memory", bootz_help_text
1877 #endif /* CONFIG_CMD_BOOTZ */