1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2000-2009
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
13 #include <fdt_support.h>
20 #include <asm/cache.h>
22 #if defined(CONFIG_CMD_USB)
33 #ifndef CONFIG_SYS_BOOTM_LEN
34 /* use 8MByte as default max gunzip size */
35 #define CONFIG_SYS_BOOTM_LEN 0x800000
38 #define IH_INITRD_ARCH IH_ARCH_DEFAULT
42 DECLARE_GLOBAL_DATA_PTR;
44 bootm_headers_t images; /* pointers to os/initrd/fdt images */
46 static const void *boot_get_kernel(struct cmd_tbl *cmdtp, int flag, int argc,
47 char *const argv[], bootm_headers_t *images,
48 ulong *os_data, ulong *os_len);
50 __weak void board_quiesce_devices(void)
55 static void boot_start_lmb(bootm_headers_t *images)
60 mem_start = env_get_bootm_low();
61 mem_size = env_get_bootm_size();
63 lmb_init_and_reserve_range(&images->lmb, (phys_addr_t)mem_start,
67 #define lmb_reserve(lmb, base, size)
68 static inline void boot_start_lmb(bootm_headers_t *images) { }
71 static int bootm_start(struct cmd_tbl *cmdtp, int flag, int argc,
74 memset((void *)&images, 0, sizeof(images));
75 images.verify = env_get_yesno("verify");
77 boot_start_lmb(&images);
79 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_START, "bootm_start");
80 images.state = BOOTM_STATE_START;
85 static int bootm_find_os(struct cmd_tbl *cmdtp, int flag, int argc,
89 bool ep_found = false;
92 /* get kernel image header, start address and length */
93 os_hdr = boot_get_kernel(cmdtp, flag, argc, argv,
94 &images, &images.os.image_start, &images.os.image_len);
95 if (images.os.image_len == 0) {
96 puts("ERROR: can't get kernel image!\n");
100 /* get image parameters */
101 switch (genimg_get_format(os_hdr)) {
102 #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
103 case IMAGE_FORMAT_LEGACY:
104 images.os.type = image_get_type(os_hdr);
105 images.os.comp = image_get_comp(os_hdr);
106 images.os.os = image_get_os(os_hdr);
108 images.os.end = image_get_image_end(os_hdr);
109 images.os.load = image_get_load(os_hdr);
110 images.os.arch = image_get_arch(os_hdr);
114 case IMAGE_FORMAT_FIT:
115 if (fit_image_get_type(images.fit_hdr_os,
116 images.fit_noffset_os,
118 puts("Can't get image type!\n");
119 bootstage_error(BOOTSTAGE_ID_FIT_TYPE);
123 if (fit_image_get_comp(images.fit_hdr_os,
124 images.fit_noffset_os,
126 puts("Can't get image compression!\n");
127 bootstage_error(BOOTSTAGE_ID_FIT_COMPRESSION);
131 if (fit_image_get_os(images.fit_hdr_os, images.fit_noffset_os,
133 puts("Can't get image OS!\n");
134 bootstage_error(BOOTSTAGE_ID_FIT_OS);
138 if (fit_image_get_arch(images.fit_hdr_os,
139 images.fit_noffset_os,
141 puts("Can't get image ARCH!\n");
145 images.os.end = fit_get_end(images.fit_hdr_os);
147 if (fit_image_get_load(images.fit_hdr_os, images.fit_noffset_os,
149 puts("Can't get image load address!\n");
150 bootstage_error(BOOTSTAGE_ID_FIT_LOADADDR);
155 #ifdef CONFIG_ANDROID_BOOT_IMAGE
156 case IMAGE_FORMAT_ANDROID:
157 images.os.type = IH_TYPE_KERNEL;
158 images.os.comp = android_image_get_kcomp(os_hdr);
159 images.os.os = IH_OS_LINUX;
161 images.os.end = android_image_get_end(os_hdr);
162 images.os.load = android_image_get_kload(os_hdr);
163 images.ep = images.os.load;
168 puts("ERROR: unknown image format type!\n");
172 /* If we have a valid setup.bin, we will use that for entry (x86) */
173 if (images.os.arch == IH_ARCH_I386 ||
174 images.os.arch == IH_ARCH_X86_64) {
177 ret = boot_get_setup(&images, IH_ARCH_I386, &images.ep, &len);
178 if (ret < 0 && ret != -ENOENT) {
179 puts("Could not find a valid setup.bin for x86\n");
182 /* Kernel entry point is the setup.bin */
183 } else if (images.legacy_hdr_valid) {
184 images.ep = image_get_ep(&images.legacy_hdr_os_copy);
186 } else if (images.fit_uname_os) {
189 ret = fit_image_get_entry(images.fit_hdr_os,
190 images.fit_noffset_os, &images.ep);
192 puts("Can't get entry point property!\n");
196 } else if (!ep_found) {
197 puts("Could not find kernel entry point!\n");
201 if (images.os.type == IH_TYPE_KERNEL_NOLOAD) {
202 if (CONFIG_IS_ENABLED(CMD_BOOTI) &&
203 images.os.arch == IH_ARCH_ARM64) {
207 ret = booti_setup(images.os.image_start, &image_addr,
212 images.os.type = IH_TYPE_KERNEL;
213 images.os.load = image_addr;
214 images.ep = image_addr;
216 images.os.load = images.os.image_start;
217 images.ep += images.os.image_start;
221 images.os.start = map_to_sysmem(os_hdr);
227 * bootm_find_images - wrapper to find and locate various images
228 * @flag: Ignored Argument
229 * @argc: command argument count
230 * @argv: command argument list
231 * @start: OS image start address
232 * @size: OS image size
234 * boot_find_images() will attempt to load an available ramdisk,
235 * flattened device tree, as well as specifically marked
236 * "loadable" images (loadables are FIT only)
238 * Note: bootm_find_images will skip an image if it is not found
241 * 0, if all existing images were loaded correctly
242 * 1, if an image is found but corrupted, or invalid
244 int bootm_find_images(int flag, int argc, char *const argv[], ulong start,
250 ret = boot_get_ramdisk(argc, argv, &images, IH_INITRD_ARCH,
251 &images.rd_start, &images.rd_end);
253 puts("Ramdisk image is corrupt or invalid\n");
257 /* check if ramdisk overlaps OS image */
258 if (images.rd_start && (((ulong)images.rd_start >= start &&
259 (ulong)images.rd_start < start + size) ||
260 ((ulong)images.rd_end > start &&
261 (ulong)images.rd_end <= start + size) ||
262 ((ulong)images.rd_start < start &&
263 (ulong)images.rd_end >= start + size))) {
264 printf("ERROR: RD image overlaps OS image (OS=0x%lx..0x%lx)\n",
265 start, start + size);
269 #if IMAGE_ENABLE_OF_LIBFDT
270 /* find flattened device tree */
271 ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images,
272 &images.ft_addr, &images.ft_len);
274 puts("Could not find a valid device tree\n");
278 /* check if FDT overlaps OS image */
279 if (images.ft_addr &&
280 (((ulong)images.ft_addr >= start &&
281 (ulong)images.ft_addr <= start + size) ||
282 ((ulong)images.ft_addr + images.ft_len >= start &&
283 (ulong)images.ft_addr + images.ft_len <= start + size))) {
284 printf("ERROR: FDT image overlaps OS image (OS=0x%lx..0x%lx)\n",
285 start, start + size);
289 if (CONFIG_IS_ENABLED(CMD_FDT))
290 set_working_fdt_addr(map_to_sysmem(images.ft_addr));
294 #if defined(CONFIG_FPGA)
295 /* find bitstreams */
296 ret = boot_get_fpga(argc, argv, &images, IH_ARCH_DEFAULT,
299 printf("FPGA image is corrupted or invalid\n");
304 /* find all of the loadables */
305 ret = boot_get_loadable(argc, argv, &images, IH_ARCH_DEFAULT,
308 printf("Loadable(s) is corrupt or invalid\n");
316 static int bootm_find_other(struct cmd_tbl *cmdtp, int flag, int argc,
319 if (((images.os.type == IH_TYPE_KERNEL) ||
320 (images.os.type == IH_TYPE_KERNEL_NOLOAD) ||
321 (images.os.type == IH_TYPE_MULTI)) &&
322 (images.os.os == IH_OS_LINUX ||
323 images.os.os == IH_OS_VXWORKS))
324 return bootm_find_images(flag, argc, argv, 0, 0);
328 #endif /* USE_HOSTC */
330 #if !defined(USE_HOSTCC) || defined(CONFIG_FIT_SIGNATURE)
332 * handle_decomp_error() - display a decompression error
334 * This function tries to produce a useful message. In the case where the
335 * uncompressed size is the same as the available space, we can assume that
336 * the image is too large for the buffer.
338 * @comp_type: Compression type being used (IH_COMP_...)
339 * @uncomp_size: Number of bytes uncompressed
340 * @ret: errno error code received from compression library
341 * @return Appropriate BOOTM_ERR_ error code
343 static int handle_decomp_error(int comp_type, size_t uncomp_size, int ret)
345 const char *name = genimg_get_comp_name(comp_type);
347 /* ENOSYS means unimplemented compression type, don't reset. */
349 return BOOTM_ERR_UNIMPLEMENTED;
351 if (uncomp_size >= CONFIG_SYS_BOOTM_LEN)
352 printf("Image too large: increase CONFIG_SYS_BOOTM_LEN\n");
354 printf("%s: uncompress error %d\n", name, ret);
357 * The decompression routines are now safe, so will not write beyond
358 * their bounds. Probably it is not necessary to reset, but maintain
359 * the current behaviour for now.
361 printf("Must RESET board to recover\n");
363 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
366 return BOOTM_ERR_RESET;
371 static int bootm_load_os(bootm_headers_t *images, int boot_progress)
373 image_info_t os = images->os;
374 ulong load = os.load;
376 ulong blob_start = os.start;
377 ulong blob_end = os.end;
378 ulong image_start = os.image_start;
379 ulong image_len = os.image_len;
380 ulong flush_start = ALIGN_DOWN(load, ARCH_DMA_MINALIGN);
382 void *load_buf, *image_buf;
385 load_buf = map_sysmem(load, 0);
386 image_buf = map_sysmem(os.image_start, image_len);
387 err = image_decomp(os.comp, load, os.image_start, os.type,
388 load_buf, image_buf, image_len,
389 CONFIG_SYS_BOOTM_LEN, &load_end);
391 err = handle_decomp_error(os.comp, load_end - load, err);
392 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
395 /* We need the decompressed image size in the next steps */
396 images->os.image_len = load_end - load;
398 flush_cache(flush_start, ALIGN(load_end, ARCH_DMA_MINALIGN) - flush_start);
400 debug(" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, load_end);
401 bootstage_mark(BOOTSTAGE_ID_KERNEL_LOADED);
403 no_overlap = (os.comp == IH_COMP_NONE && load == image_start);
405 if (!no_overlap && load < blob_end && load_end > blob_start) {
406 debug("images.os.start = 0x%lX, images.os.end = 0x%lx\n",
407 blob_start, blob_end);
408 debug("images.os.load = 0x%lx, load_end = 0x%lx\n", load,
411 /* Check what type of image this is. */
412 if (images->legacy_hdr_valid) {
413 if (image_get_type(&images->legacy_hdr_os_copy)
415 puts("WARNING: legacy format multi component image overwritten\n");
416 return BOOTM_ERR_OVERLAP;
418 puts("ERROR: new format image overwritten - must RESET the board to recover\n");
419 bootstage_error(BOOTSTAGE_ID_OVERWRITTEN);
420 return BOOTM_ERR_RESET;
424 lmb_reserve(&images->lmb, images->os.load, (load_end -
430 * bootm_disable_interrupts() - Disable interrupts in preparation for load/boot
432 * @return interrupt flag (0 if interrupts were disabled, non-zero if they were
435 ulong bootm_disable_interrupts(void)
440 * We have reached the point of no return: we are going to
441 * overwrite all exception vector code, so we cannot easily
442 * recover from any failures any more...
444 iflag = disable_interrupts();
445 #ifdef CONFIG_NETCONSOLE
446 /* Stop the ethernet stack if NetConsole could have left it up */
448 # ifndef CONFIG_DM_ETH
449 eth_unregister(eth_get_dev());
453 #if defined(CONFIG_CMD_USB)
455 * turn off USB to prevent the host controller from writing to the
456 * SDRAM while Linux is booting. This could happen (at least for OHCI
457 * controller), because the HCCA (Host Controller Communication Area)
458 * lies within the SDRAM and the host controller writes continously to
459 * this area (as busmaster!). The HccaFrameNumber is for example
460 * updated every 1 ms within the HCCA structure in SDRAM! For more
461 * details see the OpenHCI specification.
468 #if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
470 #define CONSOLE_ARG "console="
471 #define CONSOLE_ARG_LEN (sizeof(CONSOLE_ARG) - 1)
473 static void fixup_silent_linux(void)
477 char *cmdline = env_get("bootargs");
481 * Only fix cmdline when requested. The environment variable can be:
483 * no - we never fixup
484 * yes - we always fixup
485 * unset - we rely on the console silent flag
487 want_silent = env_get_yesno("silent_linux");
488 if (want_silent == 0)
490 else if (want_silent == -1 && !(gd->flags & GD_FLG_SILENT))
493 debug("before silent fix-up: %s\n", cmdline);
494 if (cmdline && (cmdline[0] != '\0')) {
495 char *start = strstr(cmdline, CONSOLE_ARG);
497 /* Allocate space for maximum possible new command line */
498 buf = malloc(strlen(cmdline) + 1 + CONSOLE_ARG_LEN + 1);
500 debug("%s: out of memory\n", __func__);
505 char *end = strchr(start, ' ');
506 int num_start_bytes = start - cmdline + CONSOLE_ARG_LEN;
508 strncpy(buf, cmdline, num_start_bytes);
510 strcpy(buf + num_start_bytes, end);
512 buf[num_start_bytes] = '\0';
514 sprintf(buf, "%s %s", cmdline, CONSOLE_ARG);
519 env_val = CONSOLE_ARG;
522 env_set("bootargs", env_val);
523 debug("after silent fix-up: %s\n", env_val);
526 #endif /* CONFIG_SILENT_CONSOLE */
529 * Execute selected states of the bootm command.
531 * Note the arguments to this state must be the first argument, Any 'bootm'
532 * or sub-command arguments must have already been taken.
534 * Note that if states contains more than one flag it MUST contain
535 * BOOTM_STATE_START, since this handles and consumes the command line args.
537 * Also note that aside from boot_os_fn functions and bootm_load_os no other
538 * functions we store the return value of in 'ret' may use a negative return
539 * value, without special handling.
541 * @param cmdtp Pointer to bootm command table entry
542 * @param flag Command flags (CMD_FLAG_...)
543 * @param argc Number of subcommand arguments (0 = no arguments)
544 * @param argv Arguments
545 * @param states Mask containing states to run (BOOTM_STATE_...)
546 * @param images Image header information
547 * @param boot_progress 1 to show boot progress, 0 to not do this
548 * @return 0 if ok, something else on error. Some errors will cause this
549 * function to perform a reboot! If states contains BOOTM_STATE_OS_GO
550 * then the intent is to boot an OS, so this function will not return
551 * unless the image type is standalone.
553 int do_bootm_states(struct cmd_tbl *cmdtp, int flag, int argc,
554 char *const argv[], int states, bootm_headers_t *images,
559 int ret = 0, need_boot_fn;
561 images->state |= states;
564 * Work through the states and see how far we get. We stop on
567 if (states & BOOTM_STATE_START)
568 ret = bootm_start(cmdtp, flag, argc, argv);
570 if (!ret && (states & BOOTM_STATE_FINDOS))
571 ret = bootm_find_os(cmdtp, flag, argc, argv);
573 if (!ret && (states & BOOTM_STATE_FINDOTHER))
574 ret = bootm_find_other(cmdtp, flag, argc, argv);
577 if (!ret && (states & BOOTM_STATE_LOADOS)) {
578 iflag = bootm_disable_interrupts();
579 ret = bootm_load_os(images, 0);
580 if (ret && ret != BOOTM_ERR_OVERLAP)
582 else if (ret == BOOTM_ERR_OVERLAP)
586 /* Relocate the ramdisk */
587 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
588 if (!ret && (states & BOOTM_STATE_RAMDISK)) {
589 ulong rd_len = images->rd_end - images->rd_start;
591 ret = boot_ramdisk_high(&images->lmb, images->rd_start,
592 rd_len, &images->initrd_start, &images->initrd_end);
594 env_set_hex("initrd_start", images->initrd_start);
595 env_set_hex("initrd_end", images->initrd_end);
599 #if IMAGE_ENABLE_OF_LIBFDT && defined(CONFIG_LMB)
600 if (!ret && (states & BOOTM_STATE_FDT)) {
601 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr);
602 ret = boot_relocate_fdt(&images->lmb, &images->ft_addr,
607 /* From now on, we need the OS boot function */
610 boot_fn = bootm_os_get_boot_func(images->os.os);
611 need_boot_fn = states & (BOOTM_STATE_OS_CMDLINE |
612 BOOTM_STATE_OS_BD_T | BOOTM_STATE_OS_PREP |
613 BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO);
614 if (boot_fn == NULL && need_boot_fn) {
617 printf("ERROR: booting os '%s' (%d) is not supported\n",
618 genimg_get_os_name(images->os.os), images->os.os);
619 bootstage_error(BOOTSTAGE_ID_CHECK_BOOT_OS);
624 /* Call various other states that are not generally used */
625 if (!ret && (states & BOOTM_STATE_OS_CMDLINE))
626 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, images);
627 if (!ret && (states & BOOTM_STATE_OS_BD_T))
628 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, images);
629 if (!ret && (states & BOOTM_STATE_OS_PREP)) {
630 #if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
631 if (images->os.os == IH_OS_LINUX)
632 fixup_silent_linux();
634 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, images);
638 /* Pretend to run the OS, then run a user command */
639 if (!ret && (states & BOOTM_STATE_OS_FAKE_GO)) {
640 char *cmd_list = env_get("fakegocmd");
642 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_FAKE_GO,
644 if (!ret && cmd_list)
645 ret = run_command_list(cmd_list, -1, flag);
649 /* Check for unsupported subcommand. */
651 puts("subcommand not supported\n");
655 /* Now run the OS! We hope this doesn't return */
656 if (!ret && (states & BOOTM_STATE_OS_GO))
657 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_GO,
660 /* Deal with any fallout */
665 if (ret == BOOTM_ERR_UNIMPLEMENTED)
666 bootstage_error(BOOTSTAGE_ID_DECOMP_UNIMPL);
667 else if (ret == BOOTM_ERR_RESET)
668 do_reset(cmdtp, flag, argc, argv);
673 #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
675 * image_get_kernel - verify legacy format kernel image
676 * @img_addr: in RAM address of the legacy format image to be verified
677 * @verify: data CRC verification flag
679 * image_get_kernel() verifies legacy image integrity and returns pointer to
680 * legacy image header if image verification was completed successfully.
683 * pointer to a legacy image header if valid image was found
684 * otherwise return NULL
686 static image_header_t *image_get_kernel(ulong img_addr, int verify)
688 image_header_t *hdr = (image_header_t *)img_addr;
690 if (!image_check_magic(hdr)) {
691 puts("Bad Magic Number\n");
692 bootstage_error(BOOTSTAGE_ID_CHECK_MAGIC);
695 bootstage_mark(BOOTSTAGE_ID_CHECK_HEADER);
697 if (!image_check_hcrc(hdr)) {
698 puts("Bad Header Checksum\n");
699 bootstage_error(BOOTSTAGE_ID_CHECK_HEADER);
703 bootstage_mark(BOOTSTAGE_ID_CHECK_CHECKSUM);
704 image_print_contents(hdr);
707 puts(" Verifying Checksum ... ");
708 if (!image_check_dcrc(hdr)) {
709 printf("Bad Data CRC\n");
710 bootstage_error(BOOTSTAGE_ID_CHECK_CHECKSUM);
715 bootstage_mark(BOOTSTAGE_ID_CHECK_ARCH);
717 if (!image_check_target_arch(hdr)) {
718 printf("Unsupported Architecture 0x%x\n", image_get_arch(hdr));
719 bootstage_error(BOOTSTAGE_ID_CHECK_ARCH);
727 * boot_get_kernel - find kernel image
728 * @os_data: pointer to a ulong variable, will hold os data start address
729 * @os_len: pointer to a ulong variable, will hold os data length
731 * boot_get_kernel() tries to find a kernel image, verifies its integrity
732 * and locates kernel data.
735 * pointer to image header if valid image was found, plus kernel start
736 * address and length, otherwise NULL
738 static const void *boot_get_kernel(struct cmd_tbl *cmdtp, int flag, int argc,
739 char *const argv[], bootm_headers_t *images,
740 ulong *os_data, ulong *os_len)
742 #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
747 const char *fit_uname_config = NULL;
748 const char *fit_uname_kernel = NULL;
753 img_addr = genimg_get_kernel_addr_fit(argc < 1 ? NULL : argv[0],
757 bootstage_mark(BOOTSTAGE_ID_CHECK_MAGIC);
759 /* check image type, for FIT images get FIT kernel node */
760 *os_data = *os_len = 0;
761 buf = map_sysmem(img_addr, 0);
762 switch (genimg_get_format(buf)) {
763 #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
764 case IMAGE_FORMAT_LEGACY:
765 printf("## Booting kernel from Legacy Image at %08lx ...\n",
767 hdr = image_get_kernel(img_addr, images->verify);
770 bootstage_mark(BOOTSTAGE_ID_CHECK_IMAGETYPE);
772 /* get os_data and os_len */
773 switch (image_get_type(hdr)) {
775 case IH_TYPE_KERNEL_NOLOAD:
776 *os_data = image_get_data(hdr);
777 *os_len = image_get_data_size(hdr);
780 image_multi_getimg(hdr, 0, os_data, os_len);
782 case IH_TYPE_STANDALONE:
783 *os_data = image_get_data(hdr);
784 *os_len = image_get_data_size(hdr);
787 printf("Wrong Image Type for %s command\n",
789 bootstage_error(BOOTSTAGE_ID_CHECK_IMAGETYPE);
794 * copy image header to allow for image overwrites during
795 * kernel decompression.
797 memmove(&images->legacy_hdr_os_copy, hdr,
798 sizeof(image_header_t));
800 /* save pointer to image header */
801 images->legacy_hdr_os = hdr;
803 images->legacy_hdr_valid = 1;
804 bootstage_mark(BOOTSTAGE_ID_DECOMP_IMAGE);
808 case IMAGE_FORMAT_FIT:
809 os_noffset = fit_image_load(images, img_addr,
810 &fit_uname_kernel, &fit_uname_config,
811 IH_ARCH_DEFAULT, IH_TYPE_KERNEL,
812 BOOTSTAGE_ID_FIT_KERNEL_START,
813 FIT_LOAD_IGNORED, os_data, os_len);
817 images->fit_hdr_os = map_sysmem(img_addr, 0);
818 images->fit_uname_os = fit_uname_kernel;
819 images->fit_uname_cfg = fit_uname_config;
820 images->fit_noffset_os = os_noffset;
823 #ifdef CONFIG_ANDROID_BOOT_IMAGE
824 case IMAGE_FORMAT_ANDROID:
825 printf("## Booting Android Image at 0x%08lx ...\n", img_addr);
826 if (android_image_get_kernel(buf, images->verify,
832 printf("Wrong Image Format for %s command\n", cmdtp->name);
833 bootstage_error(BOOTSTAGE_ID_FIT_KERNEL_INFO);
837 debug(" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
838 *os_data, *os_len, *os_len);
844 * switch_to_non_secure_mode() - switch to non-secure mode
846 * This routine is overridden by architectures requiring this feature.
848 void __weak switch_to_non_secure_mode(void)
852 #else /* USE_HOSTCC */
854 #if defined(CONFIG_FIT_SIGNATURE)
855 static int bootm_host_load_image(const void *fit, int req_image_type,
858 const char *fit_uname_config = NULL;
860 bootm_headers_t images;
868 fit_uname_config = fdt_get_name(fit, cfg_noffset, NULL);
869 memset(&images, '\0', sizeof(images));
871 noffset = fit_image_load(&images, (ulong)fit,
872 NULL, &fit_uname_config,
873 IH_ARCH_DEFAULT, req_image_type, -1,
874 FIT_LOAD_IGNORED, &data, &len);
877 if (fit_image_get_type(fit, noffset, &image_type)) {
878 puts("Can't get image type!\n");
882 if (fit_image_get_comp(fit, noffset, &imape_comp)) {
883 puts("Can't get image compression!\n");
887 /* Allow the image to expand by a factor of 4, should be safe */
888 load_buf = malloc((1 << 20) + len * 4);
889 ret = image_decomp(imape_comp, 0, data, image_type, load_buf,
890 (void *)data, len, CONFIG_SYS_BOOTM_LEN,
895 ret = handle_decomp_error(imape_comp, load_end - 0, ret);
896 if (ret != BOOTM_ERR_UNIMPLEMENTED)
903 int bootm_host_load_images(const void *fit, int cfg_noffset)
905 static uint8_t image_types[] = {
913 for (i = 0; i < ARRAY_SIZE(image_types); i++) {
916 ret = bootm_host_load_image(fit, image_types[i], cfg_noffset);
917 if (!err && ret && ret != -ENOENT)
921 /* Return the first error we found */
926 #endif /* ndef USE_HOSTCC */