2 * (C) Copyright 2000-2009
5 * SPDX-License-Identifier: GPL-2.0+
10 #include <bootstage.h>
13 #include <fdt_support.h>
17 #include <linux/lzo.h>
18 #include <lzma/LzmaTypes.h>
19 #include <lzma/LzmaDec.h>
20 #include <lzma/LzmaTools.h>
21 #if defined(CONFIG_CMD_USB)
32 #ifndef CONFIG_SYS_BOOTM_LEN
33 /* use 8MByte as default max gunzip size */
34 #define CONFIG_SYS_BOOTM_LEN 0x800000
37 #define IH_INITRD_ARCH IH_ARCH_DEFAULT
41 DECLARE_GLOBAL_DATA_PTR;
43 static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
44 char * const argv[], bootm_headers_t *images,
45 ulong *os_data, ulong *os_len);
48 static void boot_start_lmb(bootm_headers_t *images)
53 lmb_init(&images->lmb);
55 mem_start = getenv_bootm_low();
56 mem_size = getenv_bootm_size();
58 lmb_add(&images->lmb, (phys_addr_t)mem_start, mem_size);
60 arch_lmb_reserve(&images->lmb);
61 board_lmb_reserve(&images->lmb);
64 #define lmb_reserve(lmb, base, size)
65 static inline void boot_start_lmb(bootm_headers_t *images) { }
68 static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc,
71 memset((void *)&images, 0, sizeof(images));
72 images.verify = getenv_yesno("verify");
74 boot_start_lmb(&images);
76 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_START, "bootm_start");
77 images.state = BOOTM_STATE_START;
82 static int bootm_find_os(cmd_tbl_t *cmdtp, int flag, int argc,
86 bool ep_found = false;
89 /* get kernel image header, start address and length */
90 os_hdr = boot_get_kernel(cmdtp, flag, argc, argv,
91 &images, &images.os.image_start, &images.os.image_len);
92 if (images.os.image_len == 0) {
93 puts("ERROR: can't get kernel image!\n");
97 /* get image parameters */
98 switch (genimg_get_format(os_hdr)) {
99 #if defined(CONFIG_IMAGE_FORMAT_LEGACY)
100 case IMAGE_FORMAT_LEGACY:
101 images.os.type = image_get_type(os_hdr);
102 images.os.comp = image_get_comp(os_hdr);
103 images.os.os = image_get_os(os_hdr);
105 images.os.end = image_get_image_end(os_hdr);
106 images.os.load = image_get_load(os_hdr);
107 images.os.arch = image_get_arch(os_hdr);
110 #if defined(CONFIG_FIT)
111 case IMAGE_FORMAT_FIT:
112 if (fit_image_get_type(images.fit_hdr_os,
113 images.fit_noffset_os,
115 puts("Can't get image type!\n");
116 bootstage_error(BOOTSTAGE_ID_FIT_TYPE);
120 if (fit_image_get_comp(images.fit_hdr_os,
121 images.fit_noffset_os,
123 puts("Can't get image compression!\n");
124 bootstage_error(BOOTSTAGE_ID_FIT_COMPRESSION);
128 if (fit_image_get_os(images.fit_hdr_os, images.fit_noffset_os,
130 puts("Can't get image OS!\n");
131 bootstage_error(BOOTSTAGE_ID_FIT_OS);
135 if (fit_image_get_arch(images.fit_hdr_os,
136 images.fit_noffset_os,
138 puts("Can't get image ARCH!\n");
142 images.os.end = fit_get_end(images.fit_hdr_os);
144 if (fit_image_get_load(images.fit_hdr_os, images.fit_noffset_os,
146 puts("Can't get image load address!\n");
147 bootstage_error(BOOTSTAGE_ID_FIT_LOADADDR);
152 #ifdef CONFIG_ANDROID_BOOT_IMAGE
153 case IMAGE_FORMAT_ANDROID:
154 images.os.type = IH_TYPE_KERNEL;
155 images.os.comp = IH_COMP_NONE;
156 images.os.os = IH_OS_LINUX;
158 images.os.end = android_image_get_end(os_hdr);
159 images.os.load = android_image_get_kload(os_hdr);
160 images.ep = images.os.load;
165 puts("ERROR: unknown image format type!\n");
169 /* If we have a valid setup.bin, we will use that for entry (x86) */
170 if (images.os.arch == IH_ARCH_I386 ||
171 images.os.arch == IH_ARCH_X86_64) {
174 ret = boot_get_setup(&images, IH_ARCH_I386, &images.ep, &len);
175 if (ret < 0 && ret != -ENOENT) {
176 puts("Could not find a valid setup.bin for x86\n");
179 /* Kernel entry point is the setup.bin */
180 } else if (images.legacy_hdr_valid) {
181 images.ep = image_get_ep(&images.legacy_hdr_os_copy);
182 #if defined(CONFIG_FIT)
183 } else if (images.fit_uname_os) {
186 ret = fit_image_get_entry(images.fit_hdr_os,
187 images.fit_noffset_os, &images.ep);
189 puts("Can't get entry point property!\n");
193 } else if (!ep_found) {
194 puts("Could not find kernel entry point!\n");
198 if (images.os.type == IH_TYPE_KERNEL_NOLOAD) {
199 images.os.load = images.os.image_start;
200 images.ep += images.os.load;
203 images.os.start = (ulong)os_hdr;
208 static int bootm_find_ramdisk(int flag, int argc, char * const argv[])
213 ret = boot_get_ramdisk(argc, argv, &images, IH_INITRD_ARCH,
214 &images.rd_start, &images.rd_end);
216 puts("Ramdisk image is corrupt or invalid\n");
223 #if defined(CONFIG_OF_LIBFDT)
224 static int bootm_find_fdt(int flag, int argc, char * const argv[])
228 /* find flattened device tree */
229 ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images,
230 &images.ft_addr, &images.ft_len);
232 puts("Could not find a valid device tree\n");
236 set_working_fdt_addr(images.ft_addr);
242 int bootm_find_ramdisk_fdt(int flag, int argc, char * const argv[])
244 if (bootm_find_ramdisk(flag, argc, argv))
247 #if defined(CONFIG_OF_LIBFDT)
248 if (bootm_find_fdt(flag, argc, argv))
255 static int bootm_find_other(cmd_tbl_t *cmdtp, int flag, int argc,
258 if (((images.os.type == IH_TYPE_KERNEL) ||
259 (images.os.type == IH_TYPE_KERNEL_NOLOAD) ||
260 (images.os.type == IH_TYPE_MULTI)) &&
261 (images.os.os == IH_OS_LINUX ||
262 images.os.os == IH_OS_VXWORKS))
263 return bootm_find_ramdisk_fdt(flag, argc, argv);
267 #endif /* USE_HOSTC */
270 * print_decomp_msg() - Print a suitable decompression/loading message
272 * @type: OS type (IH_OS_...)
273 * @comp_type: Compression type being used (IH_COMP_...)
274 * @is_xip: true if the load address matches the image start
276 static void print_decomp_msg(int comp_type, int type, bool is_xip)
278 const char *name = genimg_get_type_name(type);
280 if (comp_type == IH_COMP_NONE)
281 printf(" %s %s ... ", is_xip ? "XIP" : "Loading", name);
283 printf(" Uncompressing %s ... ", name);
286 #if defined(CONFIG_GZIP) || defined(CONFIG_GZIP) || defined(CONFIG_BZIP2) || \
287 defined(CONFIG_LZMA) || defined(CONFIG_LZO)
288 static int handle_decomp_error(const char *algo, size_t size, size_t unc_len,
292 puts("Image too large: increase CONFIG_SYS_BOOTM_LEN\n");
294 printf("%s: uncompress or overwrite error %d\n", algo, ret);
295 puts("Must RESET board to recover\n");
297 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
300 return BOOTM_ERR_RESET;
304 int bootm_decomp_image(int comp, ulong load, ulong image_start, int type,
305 void *load_buf, void *image_buf, ulong image_len,
306 uint unc_len, ulong *load_end)
309 print_decomp_msg(comp, type, load == image_start);
312 if (load != image_start)
313 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
314 *load_end = load + image_len;
320 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
322 return handle_decomp_error("GUNZIP", image_len,
326 *load_end = load + image_len;
329 #endif /* CONFIG_GZIP */
331 case IH_COMP_BZIP2: {
332 size_t size = unc_len;
335 * If we've got less than 4 MB of malloc() space,
336 * use slower decompression algorithm which requires
337 * at most 2300 KB of memory.
339 int i = BZ2_bzBuffToBuffDecompress(load_buf, &unc_len,
340 image_buf, image_len,
341 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
343 return handle_decomp_error("BUNZIP2", size, unc_len,
347 *load_end = load + unc_len;
350 #endif /* CONFIG_BZIP2 */
353 SizeT lzma_len = unc_len;
356 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
357 image_buf, image_len);
359 return handle_decomp_error("LZMA", lzma_len, unc_len,
363 *load_end = load + unc_len;
366 #endif /* CONFIG_LZMA */
369 size_t size = unc_len;
372 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
374 return handle_decomp_error("LZO", size, unc_len, ret);
376 *load_end = load + size;
379 #endif /* CONFIG_LZO */
381 printf("Unimplemented compression type %d\n", comp);
382 return BOOTM_ERR_UNIMPLEMENTED;
391 static int bootm_load_os(bootm_headers_t *images, unsigned long *load_end,
394 image_info_t os = images->os;
395 ulong load = os.load;
396 ulong blob_start = os.start;
397 ulong blob_end = os.end;
398 ulong image_start = os.image_start;
399 ulong image_len = os.image_len;
401 void *load_buf, *image_buf;
404 load_buf = map_sysmem(load, 0);
405 image_buf = map_sysmem(os.image_start, image_len);
406 err = bootm_decomp_image(os.comp, load, os.image_start, os.type,
407 load_buf, image_buf, image_len,
408 CONFIG_SYS_BOOTM_LEN, load_end);
410 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
413 flush_cache(load, (*load_end - load) * sizeof(ulong));
415 debug(" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
416 bootstage_mark(BOOTSTAGE_ID_KERNEL_LOADED);
418 no_overlap = (os.comp == IH_COMP_NONE && load == image_start);
420 if (!no_overlap && (load < blob_end) && (*load_end > blob_start)) {
421 debug("images.os.start = 0x%lX, images.os.end = 0x%lx\n",
422 blob_start, blob_end);
423 debug("images.os.load = 0x%lx, load_end = 0x%lx\n", load,
426 /* Check what type of image this is. */
427 if (images->legacy_hdr_valid) {
428 if (image_get_type(&images->legacy_hdr_os_copy)
430 puts("WARNING: legacy format multi component image overwritten\n");
431 return BOOTM_ERR_OVERLAP;
433 puts("ERROR: new format image overwritten - must RESET the board to recover\n");
434 bootstage_error(BOOTSTAGE_ID_OVERWRITTEN);
435 return BOOTM_ERR_RESET;
443 * bootm_disable_interrupts() - Disable interrupts in preparation for load/boot
445 * @return interrupt flag (0 if interrupts were disabled, non-zero if they were
448 ulong bootm_disable_interrupts(void)
453 * We have reached the point of no return: we are going to
454 * overwrite all exception vector code, so we cannot easily
455 * recover from any failures any more...
457 iflag = disable_interrupts();
458 #ifdef CONFIG_NETCONSOLE
459 /* Stop the ethernet stack if NetConsole could have left it up */
461 eth_unregister(eth_get_dev());
464 #if defined(CONFIG_CMD_USB)
466 * turn off USB to prevent the host controller from writing to the
467 * SDRAM while Linux is booting. This could happen (at least for OHCI
468 * controller), because the HCCA (Host Controller Communication Area)
469 * lies within the SDRAM and the host controller writes continously to
470 * this area (as busmaster!). The HccaFrameNumber is for example
471 * updated every 1 ms within the HCCA structure in SDRAM! For more
472 * details see the OpenHCI specification.
479 #if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
481 #define CONSOLE_ARG "console="
482 #define CONSOLE_ARG_LEN (sizeof(CONSOLE_ARG) - 1)
484 static void fixup_silent_linux(void)
488 char *cmdline = getenv("bootargs");
492 * Only fix cmdline when requested. The environment variable can be:
494 * no - we never fixup
495 * yes - we always fixup
496 * unset - we rely on the console silent flag
498 want_silent = getenv_yesno("silent_linux");
499 if (want_silent == 0)
501 else if (want_silent == -1 && !(gd->flags & GD_FLG_SILENT))
504 debug("before silent fix-up: %s\n", cmdline);
505 if (cmdline && (cmdline[0] != '\0')) {
506 char *start = strstr(cmdline, CONSOLE_ARG);
508 /* Allocate space for maximum possible new command line */
509 buf = malloc(strlen(cmdline) + 1 + CONSOLE_ARG_LEN + 1);
511 debug("%s: out of memory\n", __func__);
516 char *end = strchr(start, ' ');
517 int num_start_bytes = start - cmdline + CONSOLE_ARG_LEN;
519 strncpy(buf, cmdline, num_start_bytes);
521 strcpy(buf + num_start_bytes, end);
523 buf[num_start_bytes] = '\0';
525 sprintf(buf, "%s %s", cmdline, CONSOLE_ARG);
530 env_val = CONSOLE_ARG;
533 setenv("bootargs", env_val);
534 debug("after silent fix-up: %s\n", env_val);
537 #endif /* CONFIG_SILENT_CONSOLE */
540 * Execute selected states of the bootm command.
542 * Note the arguments to this state must be the first argument, Any 'bootm'
543 * or sub-command arguments must have already been taken.
545 * Note that if states contains more than one flag it MUST contain
546 * BOOTM_STATE_START, since this handles and consumes the command line args.
548 * Also note that aside from boot_os_fn functions and bootm_load_os no other
549 * functions we store the return value of in 'ret' may use a negative return
550 * value, without special handling.
552 * @param cmdtp Pointer to bootm command table entry
553 * @param flag Command flags (CMD_FLAG_...)
554 * @param argc Number of subcommand arguments (0 = no arguments)
555 * @param argv Arguments
556 * @param states Mask containing states to run (BOOTM_STATE_...)
557 * @param images Image header information
558 * @param boot_progress 1 to show boot progress, 0 to not do this
559 * @return 0 if ok, something else on error. Some errors will cause this
560 * function to perform a reboot! If states contains BOOTM_STATE_OS_GO
561 * then the intent is to boot an OS, so this function will not return
562 * unless the image type is standalone.
564 int do_bootm_states(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
565 int states, bootm_headers_t *images, int boot_progress)
569 int ret = 0, need_boot_fn;
571 images->state |= states;
574 * Work through the states and see how far we get. We stop on
577 if (states & BOOTM_STATE_START)
578 ret = bootm_start(cmdtp, flag, argc, argv);
580 if (!ret && (states & BOOTM_STATE_FINDOS))
581 ret = bootm_find_os(cmdtp, flag, argc, argv);
583 if (!ret && (states & BOOTM_STATE_FINDOTHER)) {
584 ret = bootm_find_other(cmdtp, flag, argc, argv);
585 argc = 0; /* consume the args */
589 if (!ret && (states & BOOTM_STATE_LOADOS)) {
592 iflag = bootm_disable_interrupts();
593 ret = bootm_load_os(images, &load_end, 0);
595 lmb_reserve(&images->lmb, images->os.load,
596 (load_end - images->os.load));
597 else if (ret && ret != BOOTM_ERR_OVERLAP)
599 else if (ret == BOOTM_ERR_OVERLAP)
601 #if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
602 if (images->os.os == IH_OS_LINUX)
603 fixup_silent_linux();
607 /* Relocate the ramdisk */
608 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
609 if (!ret && (states & BOOTM_STATE_RAMDISK)) {
610 ulong rd_len = images->rd_end - images->rd_start;
612 ret = boot_ramdisk_high(&images->lmb, images->rd_start,
613 rd_len, &images->initrd_start, &images->initrd_end);
615 setenv_hex("initrd_start", images->initrd_start);
616 setenv_hex("initrd_end", images->initrd_end);
620 #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_LMB)
621 if (!ret && (states & BOOTM_STATE_FDT)) {
622 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr);
623 ret = boot_relocate_fdt(&images->lmb, &images->ft_addr,
628 /* From now on, we need the OS boot function */
631 boot_fn = bootm_os_get_boot_func(images->os.os);
632 need_boot_fn = states & (BOOTM_STATE_OS_CMDLINE |
633 BOOTM_STATE_OS_BD_T | BOOTM_STATE_OS_PREP |
634 BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO);
635 if (boot_fn == NULL && need_boot_fn) {
638 printf("ERROR: booting os '%s' (%d) is not supported\n",
639 genimg_get_os_name(images->os.os), images->os.os);
640 bootstage_error(BOOTSTAGE_ID_CHECK_BOOT_OS);
644 /* Call various other states that are not generally used */
645 if (!ret && (states & BOOTM_STATE_OS_CMDLINE))
646 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, images);
647 if (!ret && (states & BOOTM_STATE_OS_BD_T))
648 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, images);
649 if (!ret && (states & BOOTM_STATE_OS_PREP))
650 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, images);
653 /* Pretend to run the OS, then run a user command */
654 if (!ret && (states & BOOTM_STATE_OS_FAKE_GO)) {
655 char *cmd_list = getenv("fakegocmd");
657 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_FAKE_GO,
659 if (!ret && cmd_list)
660 ret = run_command_list(cmd_list, -1, flag);
664 /* Check for unsupported subcommand. */
666 puts("subcommand not supported\n");
670 /* Now run the OS! We hope this doesn't return */
671 if (!ret && (states & BOOTM_STATE_OS_GO))
672 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_GO,
675 /* Deal with any fallout */
680 if (ret == BOOTM_ERR_UNIMPLEMENTED)
681 bootstage_error(BOOTSTAGE_ID_DECOMP_UNIMPL);
682 else if (ret == BOOTM_ERR_RESET)
683 do_reset(cmdtp, flag, argc, argv);
688 #if defined(CONFIG_IMAGE_FORMAT_LEGACY)
690 * image_get_kernel - verify legacy format kernel image
691 * @img_addr: in RAM address of the legacy format image to be verified
692 * @verify: data CRC verification flag
694 * image_get_kernel() verifies legacy image integrity and returns pointer to
695 * legacy image header if image verification was completed successfully.
698 * pointer to a legacy image header if valid image was found
699 * otherwise return NULL
701 static image_header_t *image_get_kernel(ulong img_addr, int verify)
703 image_header_t *hdr = (image_header_t *)img_addr;
705 if (!image_check_magic(hdr)) {
706 puts("Bad Magic Number\n");
707 bootstage_error(BOOTSTAGE_ID_CHECK_MAGIC);
710 bootstage_mark(BOOTSTAGE_ID_CHECK_HEADER);
712 if (!image_check_hcrc(hdr)) {
713 puts("Bad Header Checksum\n");
714 bootstage_error(BOOTSTAGE_ID_CHECK_HEADER);
718 bootstage_mark(BOOTSTAGE_ID_CHECK_CHECKSUM);
719 image_print_contents(hdr);
722 puts(" Verifying Checksum ... ");
723 if (!image_check_dcrc(hdr)) {
724 printf("Bad Data CRC\n");
725 bootstage_error(BOOTSTAGE_ID_CHECK_CHECKSUM);
730 bootstage_mark(BOOTSTAGE_ID_CHECK_ARCH);
732 if (!image_check_target_arch(hdr)) {
733 printf("Unsupported Architecture 0x%x\n", image_get_arch(hdr));
734 bootstage_error(BOOTSTAGE_ID_CHECK_ARCH);
742 * boot_get_kernel - find kernel image
743 * @os_data: pointer to a ulong variable, will hold os data start address
744 * @os_len: pointer to a ulong variable, will hold os data length
746 * boot_get_kernel() tries to find a kernel image, verifies its integrity
747 * and locates kernel data.
750 * pointer to image header if valid image was found, plus kernel start
751 * address and length, otherwise NULL
753 static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
754 char * const argv[], bootm_headers_t *images,
755 ulong *os_data, ulong *os_len)
757 #if defined(CONFIG_IMAGE_FORMAT_LEGACY)
762 const char *fit_uname_config = NULL;
763 const char *fit_uname_kernel = NULL;
764 #if defined(CONFIG_FIT)
768 img_addr = genimg_get_kernel_addr_fit(argc < 1 ? NULL : argv[0],
772 bootstage_mark(BOOTSTAGE_ID_CHECK_MAGIC);
774 /* copy from dataflash if needed */
775 img_addr = genimg_get_image(img_addr);
777 /* check image type, for FIT images get FIT kernel node */
778 *os_data = *os_len = 0;
779 buf = map_sysmem(img_addr, 0);
780 switch (genimg_get_format(buf)) {
781 #if defined(CONFIG_IMAGE_FORMAT_LEGACY)
782 case IMAGE_FORMAT_LEGACY:
783 printf("## Booting kernel from Legacy Image at %08lx ...\n",
785 hdr = image_get_kernel(img_addr, images->verify);
788 bootstage_mark(BOOTSTAGE_ID_CHECK_IMAGETYPE);
790 /* get os_data and os_len */
791 switch (image_get_type(hdr)) {
793 case IH_TYPE_KERNEL_NOLOAD:
794 *os_data = image_get_data(hdr);
795 *os_len = image_get_data_size(hdr);
798 image_multi_getimg(hdr, 0, os_data, os_len);
800 case IH_TYPE_STANDALONE:
801 *os_data = image_get_data(hdr);
802 *os_len = image_get_data_size(hdr);
805 printf("Wrong Image Type for %s command\n",
807 bootstage_error(BOOTSTAGE_ID_CHECK_IMAGETYPE);
812 * copy image header to allow for image overwrites during
813 * kernel decompression.
815 memmove(&images->legacy_hdr_os_copy, hdr,
816 sizeof(image_header_t));
818 /* save pointer to image header */
819 images->legacy_hdr_os = hdr;
821 images->legacy_hdr_valid = 1;
822 bootstage_mark(BOOTSTAGE_ID_DECOMP_IMAGE);
825 #if defined(CONFIG_FIT)
826 case IMAGE_FORMAT_FIT:
827 os_noffset = fit_image_load(images, img_addr,
828 &fit_uname_kernel, &fit_uname_config,
829 IH_ARCH_DEFAULT, IH_TYPE_KERNEL,
830 BOOTSTAGE_ID_FIT_KERNEL_START,
831 FIT_LOAD_IGNORED, os_data, os_len);
835 images->fit_hdr_os = map_sysmem(img_addr, 0);
836 images->fit_uname_os = fit_uname_kernel;
837 images->fit_uname_cfg = fit_uname_config;
838 images->fit_noffset_os = os_noffset;
841 #ifdef CONFIG_ANDROID_BOOT_IMAGE
842 case IMAGE_FORMAT_ANDROID:
843 printf("## Booting Android Image at 0x%08lx ...\n", img_addr);
844 if (android_image_get_kernel(buf, images->verify,
850 printf("Wrong Image Format for %s command\n", cmdtp->name);
851 bootstage_error(BOOTSTAGE_ID_FIT_KERNEL_INFO);
855 debug(" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
856 *os_data, *os_len, *os_len);
860 #else /* USE_HOSTCC */
862 void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
864 memmove(to, from, len);
867 static int bootm_host_load_image(const void *fit, int req_image_type)
869 const char *fit_uname_config = NULL;
871 bootm_headers_t images;
879 memset(&images, '\0', sizeof(images));
881 noffset = fit_image_load(&images, (ulong)fit,
882 NULL, &fit_uname_config,
883 IH_ARCH_DEFAULT, req_image_type, -1,
884 FIT_LOAD_IGNORED, &data, &len);
887 if (fit_image_get_type(fit, noffset, &image_type)) {
888 puts("Can't get image type!\n");
892 if (fit_image_get_comp(fit, noffset, &imape_comp)) {
893 puts("Can't get image compression!\n");
897 /* Allow the image to expand by a factor of 4, should be safe */
898 load_buf = malloc((1 << 20) + len * 4);
899 ret = bootm_decomp_image(imape_comp, 0, data, image_type, load_buf,
900 (void *)data, len, CONFIG_SYS_BOOTM_LEN,
904 if (ret && ret != BOOTM_ERR_UNIMPLEMENTED)
910 int bootm_host_load_images(const void *fit, int cfg_noffset)
912 static uint8_t image_types[] = {
920 for (i = 0; i < ARRAY_SIZE(image_types); i++) {
923 ret = bootm_host_load_image(fit, image_types[i]);
924 if (!err && ret && ret != -ENOENT)
928 /* Return the first error we found */
932 #endif /* ndef USE_HOSTCC */