1 // SPDX-License-Identifier: GPL-2.0+
4 * Texas Instruments, <www.ti.com>
11 #include <binman_sym.h>
12 #include <bootstage.h>
22 #include <system-constants.h>
23 #include <asm/global_data.h>
24 #include <asm-generic/gpio.h>
25 #include <asm/u-boot.h>
28 #include <u-boot/crc.h>
29 #if CONFIG_IS_ENABLED(BANNER_PRINT)
30 #include <timestamp.h>
38 #include <linux/compiler.h>
39 #include <fdt_support.h>
40 #include <bootcount.h>
43 DECLARE_GLOBAL_DATA_PTR;
44 DECLARE_BINMAN_MAGIC_SYM;
46 #ifndef CONFIG_SYS_UBOOT_START
47 #define CONFIG_SYS_UBOOT_START CONFIG_TEXT_BASE
50 u32 *boot_params_ptr = NULL;
52 #if CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS)
53 /* See spl.h for information about this */
54 binman_sym_declare(ulong, u_boot_any, image_pos);
55 binman_sym_declare(ulong, u_boot_any, size);
58 binman_sym_declare(ulong, u_boot_spl_any, image_pos);
59 binman_sym_declare(ulong, u_boot_spl_any, size);
63 binman_sym_declare(ulong, u_boot_vpl_any, image_pos);
64 binman_sym_declare(ulong, u_boot_vpl_any, size);
67 #endif /* BINMAN_UBOOT_SYMBOLS */
69 /* Define board data structure */
70 static struct bd_info bdata __attribute__ ((section(".data")));
72 #if CONFIG_IS_ENABLED(SHOW_BOOT_PROGRESS)
74 * Board-specific Platform code can reimplement show_boot_progress () if needed
76 __weak void show_boot_progress(int val) {}
79 #if defined(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF) || \
80 defined(CONFIG_SPL_ATF)
81 /* weak, default platform-specific function to initialize dram banks */
82 __weak int dram_init_banksize(void)
89 * Default function to determine if u-boot or the OS should
90 * be started. This implementation always returns 1.
92 * Please implement your own board specific funcion to do this.
95 * 0 to not start u-boot
96 * positive if u-boot should start
98 #if CONFIG_IS_ENABLED(OS_BOOT)
99 __weak int spl_start_uboot(void)
102 "Please implement spl_start_uboot() for your board\n");
103 puts(SPL_TPL_PROMPT "Direct Linux boot not active!\n");
108 * Weak default function for arch specific zImage check. Return zero
109 * and fill start and end address if image is recognized.
111 int __weak bootz_setup(ulong image, ulong *start, ulong *end)
116 int __weak booti_setup(ulong image, ulong *relocated_addr, ulong *size, bool force_reloc)
122 /* Weak default function for arch/board-specific fixups to the spl_image_info */
123 void __weak spl_perform_fixups(struct spl_image_info *spl_image)
127 void spl_fixup_fdt(void *fdt_blob)
129 #if defined(CONFIG_SPL_OF_LIBFDT)
135 err = fdt_check_header(fdt_blob);
137 printf("fdt_root: %s\n", fdt_strerror(err));
141 /* fixup the memory dt node */
142 err = fdt_shrink_to_minimum(fdt_blob, 0);
144 printf(SPL_TPL_PROMPT "fdt_shrink_to_minimum err - %d\n", err);
148 err = arch_fixup_fdt(fdt_blob);
150 printf(SPL_TPL_PROMPT "arch_fixup_fdt err - %d\n", err);
156 ulong spl_get_image_pos(void)
158 if (!CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS))
159 return BINMAN_SYM_MISSING;
162 if (spl_next_phase() == PHASE_VPL)
163 return binman_sym(ulong, u_boot_vpl_any, image_pos);
165 return spl_next_phase() == PHASE_SPL ?
166 binman_sym(ulong, u_boot_spl_any, image_pos) :
167 binman_sym(ulong, u_boot_any, image_pos);
170 ulong spl_get_image_size(void)
172 if (!CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS))
173 return BINMAN_SYM_MISSING;
176 if (spl_next_phase() == PHASE_VPL)
177 return binman_sym(ulong, u_boot_vpl_any, size);
179 return spl_next_phase() == PHASE_SPL ?
180 binman_sym(ulong, u_boot_spl_any, size) :
181 binman_sym(ulong, u_boot_any, size);
184 ulong spl_get_image_text_base(void)
187 if (spl_next_phase() == PHASE_VPL)
188 return CONFIG_VPL_TEXT_BASE;
190 return spl_next_phase() == PHASE_SPL ? CONFIG_SPL_TEXT_BASE :
195 * Weak default function for board specific cleanup/preparation before
196 * Linux boot. Some boards/platforms might not need it, so just provide
197 * an empty stub here.
199 __weak void spl_board_prepare_for_linux(void)
204 __weak void spl_board_prepare_for_optee(void *fdt)
208 __weak const char *spl_board_loader_name(u32 boot_device)
213 #if CONFIG_IS_ENABLED(OPTEE_IMAGE)
214 __weak void __noreturn jump_to_image_optee(struct spl_image_info *spl_image)
216 spl_optee_entry(NULL, NULL, spl_image->fdt_addr,
217 (void *)spl_image->entry_point);
221 __weak void spl_board_prepare_for_boot(void)
226 __weak struct legacy_img_hdr *spl_get_load_buffer(ssize_t offset, size_t size)
228 return map_sysmem(CONFIG_TEXT_BASE + offset, 0);
231 #ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT
232 void spl_set_header_raw_uboot(struct spl_image_info *spl_image)
234 ulong u_boot_pos = spl_get_image_pos();
236 #if CONFIG_SYS_MONITOR_LEN != 0
237 spl_image->size = CONFIG_SYS_MONITOR_LEN;
239 /* Unknown U-Boot size, let's assume it will not be more than 200 KB */
240 spl_image->size = 200 * 1024;
244 * Binman error cases: address of the end of the previous region or the
245 * start of the image's entry area (usually 0) if there is no previous
248 if (u_boot_pos && u_boot_pos != BINMAN_SYM_MISSING) {
249 /* Binman does not support separated entry addresses */
250 spl_image->entry_point = u_boot_pos;
251 spl_image->load_addr = u_boot_pos;
253 spl_image->entry_point = CONFIG_SYS_UBOOT_START;
254 spl_image->load_addr = CONFIG_TEXT_BASE;
256 spl_image->os = IH_OS_U_BOOT;
257 spl_image->name = "U-Boot";
261 #if CONFIG_IS_ENABLED(LOAD_FIT_FULL)
262 /* Parse and load full fitImage in SPL */
263 static int spl_load_fit_image(struct spl_image_info *spl_image,
264 const struct legacy_img_hdr *header)
266 struct bootm_headers images;
267 const char *fit_uname_config = NULL;
270 ulong fw_data = 0, dt_data = 0, img_data = 0;
271 ulong fw_len = 0, dt_len = 0, img_len = 0;
272 int idx, conf_noffset;
275 #ifdef CONFIG_SPL_FIT_SIGNATURE
278 ret = fit_image_load(&images, (ulong)header,
279 NULL, &fit_uname_config,
280 IH_ARCH_DEFAULT, IH_TYPE_STANDALONE, -1,
281 FIT_LOAD_OPTIONAL, &fw_data, &fw_len);
283 printf("DEPRECATED: 'standalone = ' property.");
284 printf("Please use either 'firmware =' or 'kernel ='\n");
286 ret = fit_image_load(&images, (ulong)header, NULL,
287 &fit_uname_config, IH_ARCH_DEFAULT,
288 IH_TYPE_FIRMWARE, -1, FIT_LOAD_OPTIONAL,
293 ret = fit_image_load(&images, (ulong)header, NULL,
294 &fit_uname_config, IH_ARCH_DEFAULT,
295 IH_TYPE_KERNEL, -1, FIT_LOAD_OPTIONAL,
302 spl_image->size = fw_len;
303 spl_image->entry_point = fw_data;
304 spl_image->load_addr = fw_data;
305 if (fit_image_get_os(header, ret, &spl_image->os))
306 spl_image->os = IH_OS_INVALID;
307 spl_image->name = genimg_get_os_name(spl_image->os);
309 debug(SPL_TPL_PROMPT "payload image: %32s load addr: 0x%lx size: %d\n",
310 spl_image->name, spl_image->load_addr, spl_image->size);
312 #ifdef CONFIG_SPL_FIT_SIGNATURE
315 ret = fit_image_load(&images, (ulong)header, NULL, &fit_uname_config,
316 IH_ARCH_DEFAULT, IH_TYPE_FLATDT, -1,
317 FIT_LOAD_OPTIONAL, &dt_data, &dt_len);
319 spl_image->fdt_addr = (void *)dt_data;
321 if (spl_image->os == IH_OS_U_BOOT) {
322 /* HACK: U-boot expects FDT at a specific address */
323 fdt_hack = spl_image->load_addr + spl_image->size;
324 fdt_hack = (fdt_hack + 3) & ~3;
325 debug("Relocating FDT to %p\n", spl_image->fdt_addr);
326 memcpy((void *)fdt_hack, spl_image->fdt_addr, dt_len);
330 conf_noffset = fit_conf_get_node((const void *)header,
332 if (conf_noffset <= 0)
336 uname = fdt_stringlist_get((const void *)header, conf_noffset,
337 FIT_LOADABLE_PROP, idx,
341 #ifdef CONFIG_SPL_FIT_SIGNATURE
344 ret = fit_image_load(&images, (ulong)header,
345 &uname, &fit_uname_config,
346 IH_ARCH_DEFAULT, IH_TYPE_LOADABLE, -1,
347 FIT_LOAD_OPTIONAL_NON_ZERO,
348 &img_data, &img_len);
357 __weak int spl_parse_board_header(struct spl_image_info *spl_image,
358 const struct spl_boot_device *bootdev,
359 const void *image_header, size_t size)
364 __weak int spl_parse_legacy_header(struct spl_image_info *spl_image,
365 const struct legacy_img_hdr *header)
367 /* LEGACY image not supported */
368 debug("Legacy boot image support not enabled, proceeding to other boot methods\n");
372 int spl_parse_image_header(struct spl_image_info *spl_image,
373 const struct spl_boot_device *bootdev,
374 const struct legacy_img_hdr *header)
376 #if CONFIG_IS_ENABLED(LOAD_FIT_FULL)
377 int ret = spl_load_fit_image(spl_image, header);
382 if (image_get_magic(header) == IH_MAGIC) {
385 ret = spl_parse_legacy_header(spl_image, header);
389 #ifdef CONFIG_SPL_PANIC_ON_RAW_IMAGE
391 * CONFIG_SPL_PANIC_ON_RAW_IMAGE is defined when the
392 * code which loads images in SPL cannot guarantee that
393 * absolutely all read errors will be reported.
394 * An example is the LPC32XX MLC NAND driver, which
395 * will consider that a completely unreadable NAND block
396 * is bad, and thus should be skipped silently.
398 panic("** no mkimage signature but raw image not supported");
401 #if CONFIG_IS_ENABLED(OS_BOOT)
402 #if defined(CMD_BOOTI)
405 if (!booti_setup((ulong)header, &start, &size, 0)) {
406 spl_image->name = "Linux";
407 spl_image->os = IH_OS_LINUX;
408 spl_image->load_addr = start;
409 spl_image->entry_point = start;
410 spl_image->size = size;
412 "payload Image, load addr: 0x%lx size: %d\n",
413 spl_image->load_addr, spl_image->size);
416 #elif defined(CMD_BOOTZ)
419 if (!bootz_setup((ulong)header, &start, &end)) {
420 spl_image->name = "Linux";
421 spl_image->os = IH_OS_LINUX;
422 spl_image->load_addr = CONFIG_SYS_LOAD_ADDR;
423 spl_image->entry_point = CONFIG_SYS_LOAD_ADDR;
424 spl_image->size = end - start;
426 "payload zImage, load addr: 0x%lx size: %d\n",
427 spl_image->load_addr, spl_image->size);
433 if (!spl_parse_board_header(spl_image, bootdev, (const void *)header, sizeof(*header)))
436 #ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT
437 /* Signature not found - assume u-boot.bin */
438 debug("mkimage signature not found - ih_magic = %x\n",
440 spl_set_header_raw_uboot(spl_image);
442 /* RAW image not supported, proceed to other boot methods. */
443 debug("Raw boot image support not enabled, proceeding to other boot methods\n");
451 __weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
453 typedef void __noreturn (*image_entry_noargs_t)(void);
455 image_entry_noargs_t image_entry =
456 (image_entry_noargs_t)spl_image->entry_point;
458 debug("image entry point: 0x%lx\n", spl_image->entry_point);
462 #if CONFIG_IS_ENABLED(HANDOFF)
464 * Set up the SPL hand-off information
466 * This is initially empty (zero) but can be written by
468 static int setup_spl_handoff(void)
470 struct spl_handoff *ho;
472 ho = bloblist_ensure(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(struct spl_handoff));
479 __weak int handoff_arch_save(struct spl_handoff *ho)
484 static int write_spl_handoff(void)
486 struct spl_handoff *ho;
489 ho = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(struct spl_handoff));
492 handoff_save_dram(ho);
493 ret = handoff_arch_save(ho);
496 debug(SPL_TPL_PROMPT "Wrote SPL handoff\n");
501 static inline int setup_spl_handoff(void) { return 0; }
502 static inline int write_spl_handoff(void) { return 0; }
507 * get_bootstage_id() - Get the bootstage ID to emit
509 * @start: true if this is for starting SPL, false for ending it
510 * Return: bootstage ID to use
512 static enum bootstage_id get_bootstage_id(bool start)
514 enum u_boot_phase phase = spl_phase();
516 if (IS_ENABLED(CONFIG_TPL_BUILD) && phase == PHASE_TPL)
517 return start ? BOOTSTAGE_ID_START_TPL : BOOTSTAGE_ID_END_TPL;
518 else if (IS_ENABLED(CONFIG_VPL_BUILD) && phase == PHASE_VPL)
519 return start ? BOOTSTAGE_ID_START_VPL : BOOTSTAGE_ID_END_VPL;
521 return start ? BOOTSTAGE_ID_START_SPL : BOOTSTAGE_ID_END_SPL;
524 static int spl_common_init(bool setup_malloc)
528 #if CONFIG_VAL(SYS_MALLOC_F_LEN)
530 #ifdef CONFIG_MALLOC_F_ADDR
531 gd->malloc_base = CONFIG_MALLOC_F_ADDR;
533 gd->malloc_limit = CONFIG_VAL(SYS_MALLOC_F_LEN);
537 ret = bootstage_init(u_boot_first_phase());
539 debug("%s: Failed to set up bootstage: ret=%d\n", __func__,
543 #ifdef CONFIG_BOOTSTAGE_STASH
544 if (!u_boot_first_phase()) {
545 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
546 CONFIG_BOOTSTAGE_STASH_SIZE);
548 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
550 debug("%s: Failed to unstash bootstage: ret=%d\n",
553 #endif /* CONFIG_BOOTSTAGE_STASH */
554 bootstage_mark_name(get_bootstage_id(true),
555 spl_phase_name(spl_phase()));
556 #if CONFIG_IS_ENABLED(LOG)
559 debug("%s: Failed to set up logging\n", __func__);
563 if (CONFIG_IS_ENABLED(OF_REAL)) {
564 ret = fdtdec_setup();
566 debug("fdtdec_setup() returned error %d\n", ret);
570 if (CONFIG_IS_ENABLED(DM)) {
571 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_SPL,
572 spl_phase() == PHASE_TPL ? "dm tpl" : "dm_spl");
573 /* With CONFIG_SPL_OF_PLATDATA, bring in all devices */
574 ret = dm_init_and_scan(!CONFIG_IS_ENABLED(OF_PLATDATA));
575 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_SPL);
577 debug("dm_init_and_scan() returned error %d\n", ret);
585 void spl_set_bd(void)
588 * NOTE: On some platforms (e.g. x86) bdata may be in flash and not
595 int spl_early_init(void)
599 debug("%s\n", __func__);
601 ret = spl_common_init(true);
604 gd->flags |= GD_FLG_SPL_EARLY_INIT;
612 bool setup_malloc = !(IS_ENABLED(CONFIG_SPL_STACK_R) &&
613 IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIMPLE));
615 debug("%s\n", __func__);
617 if (!(gd->flags & GD_FLG_SPL_EARLY_INIT)) {
618 ret = spl_common_init(setup_malloc);
622 gd->flags |= GD_FLG_SPL_INIT;
627 #ifndef BOOT_DEVICE_NONE
628 #define BOOT_DEVICE_NONE 0xdeadbeef
631 __weak void board_boot_order(u32 *spl_boot_list)
633 spl_boot_list[0] = spl_boot_device();
636 __weak int spl_check_board_image(struct spl_image_info *spl_image,
637 const struct spl_boot_device *bootdev)
642 static int spl_load_image(struct spl_image_info *spl_image,
643 struct spl_image_loader *loader)
646 struct spl_boot_device bootdev;
648 bootdev.boot_device = loader->boot_device;
649 bootdev.boot_device_name = NULL;
651 ret = loader->load_image(spl_image, &bootdev);
652 #ifdef CONFIG_SPL_LEGACY_IMAGE_CRC_CHECK
653 if (!ret && spl_image->dcrc_length) {
655 ulong dcrc = crc32_wd(0, (unsigned char *)spl_image->dcrc_data,
656 spl_image->dcrc_length, CHUNKSZ_CRC32);
657 if (dcrc != spl_image->dcrc) {
658 puts("SPL: Image data CRC check failed!\n");
664 ret = spl_check_board_image(spl_image, &bootdev);
670 * boot_from_devices() - Try loading a booting U-Boot from a list of devices
672 * @spl_image: Place to put the image details if successful
673 * @spl_boot_list: List of boot devices to try
674 * @count: Number of elements in spl_boot_list
675 * Return: 0 if OK, -ENODEV if there were no boot devices
676 * if CONFIG_SHOW_ERRORS is enabled, returns -ENXIO if there were
677 * devices but none worked
679 static int boot_from_devices(struct spl_image_info *spl_image,
680 u32 spl_boot_list[], int count)
682 struct spl_image_loader *drv =
683 ll_entry_start(struct spl_image_loader, spl_image_loader);
685 ll_entry_count(struct spl_image_loader, spl_image_loader);
689 for (i = 0; i < count && spl_boot_list[i] != BOOT_DEVICE_NONE; i++) {
690 struct spl_image_loader *loader;
691 int bootdev = spl_boot_list[i];
693 if (CONFIG_IS_ENABLED(SHOW_ERRORS))
695 for (loader = drv; loader != drv + n_ents; loader++) {
696 if (bootdev != loader->boot_device)
698 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE)) {
700 printf("Trying to boot from %s\n",
701 spl_loader_name(loader));
702 else if (CONFIG_IS_ENABLED(SHOW_ERRORS)) {
703 printf(SPL_TPL_PROMPT
704 "Unsupported Boot Device %d\n",
708 "Unsupported Boot Device!\n");
712 !spl_load_image(spl_image, loader)) {
713 spl_image->boot_device = bootdev;
722 #if defined(CONFIG_SPL_FRAMEWORK_BOARD_INIT_F)
723 void board_init_f(ulong dummy)
725 if (CONFIG_IS_ENABLED(OF_CONTROL)) {
728 ret = spl_early_init();
730 debug("spl_early_init() failed: %d\n", ret);
735 preloader_console_init();
739 void board_init_r(gd_t *dummy1, ulong dummy2)
741 u32 spl_boot_list[] = {
748 struct spl_image_info spl_image;
751 debug(">>" SPL_TPL_PROMPT "board_init_r()\n");
755 #if defined(CONFIG_SYS_SPL_MALLOC)
756 mem_malloc_init(SYS_SPL_MALLOC_START, CONFIG_SYS_SPL_MALLOC_SIZE);
757 gd->flags |= GD_FLG_FULL_MALLOC_INIT;
759 if (!(gd->flags & GD_FLG_SPL_INIT)) {
763 #if !defined(CONFIG_PPC) && !defined(CONFIG_ARCH_MX6)
765 * timer_init() does not exist on PPC systems. The timer is initialized
766 * and enabled (decrementer) in interrupt_init() here.
770 if (CONFIG_IS_ENABLED(BLOBLIST)) {
771 ret = bloblist_init();
773 debug("%s: Failed to set up bloblist: ret=%d\n",
775 puts(SPL_TPL_PROMPT "Cannot set up bloblist\n");
779 if (CONFIG_IS_ENABLED(HANDOFF)) {
782 ret = setup_spl_handoff();
784 puts(SPL_TPL_PROMPT "Cannot set up SPL handoff\n");
789 if (CONFIG_IS_ENABLED(GPIO_HOG))
790 gpio_hog_probe_all();
792 #if CONFIG_IS_ENABLED(BOARD_INIT)
796 #if defined(CONFIG_SPL_WATCHDOG) && CONFIG_IS_ENABLED(WDT)
800 if (IS_ENABLED(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF) ||
801 IS_ENABLED(CONFIG_SPL_ATF))
802 dram_init_banksize();
806 /* Dump driver model states to aid analysis */
807 if (CONFIG_IS_ENABLED(DM_STATS)) {
814 memset(&spl_image, '\0', sizeof(spl_image));
815 #ifdef CONFIG_SYS_SPL_ARGS_ADDR
816 spl_image.arg = (void *)CONFIG_SYS_SPL_ARGS_ADDR;
818 spl_image.boot_device = BOOT_DEVICE_NONE;
819 board_boot_order(spl_boot_list);
821 ret = boot_from_devices(&spl_image, spl_boot_list,
822 ARRAY_SIZE(spl_boot_list));
824 if (CONFIG_IS_ENABLED(SHOW_ERRORS) &&
825 CONFIG_IS_ENABLED(LIBCOMMON_SUPPORT))
826 printf(SPL_TPL_PROMPT "failed to boot from all boot devices (err=%d)\n",
829 puts(SPL_TPL_PROMPT "failed to boot from all boot devices\n");
833 spl_perform_fixups(&spl_image);
834 if (CONFIG_IS_ENABLED(HANDOFF)) {
835 ret = write_spl_handoff();
837 printf(SPL_TPL_PROMPT
838 "SPL hand-off write failed (err=%d)\n", ret);
840 if (CONFIG_IS_ENABLED(BLOBLIST)) {
841 ret = bloblist_finish();
843 printf("Warning: Failed to finish bloblist (ret=%d)\n",
847 switch (spl_image.os) {
849 debug("Jumping to %s...\n", spl_phase_name(spl_next_phase()));
851 #if CONFIG_IS_ENABLED(ATF)
852 case IH_OS_ARM_TRUSTED_FIRMWARE:
853 debug("Jumping to U-Boot via ARM Trusted Firmware\n");
854 spl_fixup_fdt(spl_image.fdt_addr);
855 spl_invoke_atf(&spl_image);
858 #if CONFIG_IS_ENABLED(OPTEE_IMAGE)
860 debug("Jumping to U-Boot via OP-TEE\n");
861 spl_board_prepare_for_optee(spl_image.fdt_addr);
862 jump_to_image_optee(&spl_image);
865 #if CONFIG_IS_ENABLED(OPENSBI)
867 debug("Jumping to U-Boot via RISC-V OpenSBI\n");
868 spl_invoke_opensbi(&spl_image);
871 #if CONFIG_IS_ENABLED(OS_BOOT)
873 debug("Jumping to Linux\n");
874 #if defined(CONFIG_SYS_SPL_ARGS_ADDR)
875 spl_fixup_fdt((void *)CONFIG_SYS_SPL_ARGS_ADDR);
877 spl_board_prepare_for_linux();
878 jump_to_image_linux(&spl_image);
881 debug("Unsupported OS image.. Jumping nevertheless..\n");
883 #if CONFIG_VAL(SYS_MALLOC_F_LEN) && !defined(CONFIG_SYS_SPL_MALLOC_SIZE)
884 debug("SPL malloc() used 0x%lx bytes (%ld KB)\n", gd->malloc_ptr,
885 gd->malloc_ptr / 1024);
887 bootstage_mark_name(get_bootstage_id(false), "end phase");
888 #ifdef CONFIG_BOOTSTAGE_STASH
889 ret = bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
890 CONFIG_BOOTSTAGE_STASH_SIZE);
892 debug("Failed to stash bootstage: err=%d\n", ret);
895 spl_board_prepare_for_boot();
896 jump_to_image_no_args(&spl_image);
900 * This requires UART clocks to be enabled. In order for this to work the
901 * caller must ensure that the gd pointer is valid.
903 void preloader_console_init(void)
905 #ifdef CONFIG_SPL_SERIAL
906 gd->baudrate = CONFIG_BAUDRATE;
908 serial_init(); /* serial communications setup */
910 gd->have_console = 1;
912 #if CONFIG_IS_ENABLED(BANNER_PRINT)
913 puts("\nU-Boot " SPL_TPL_NAME " " PLAIN_VERSION " (" U_BOOT_DATE " - "
914 U_BOOT_TIME " " U_BOOT_TZ ")\n");
916 #ifdef CONFIG_SPL_DISPLAY_PRINT
923 * This function is called before the stack is changed from initial stack to
924 * relocated stack. It tries to dump the stack size used
926 __weak void spl_relocate_stack_check(void)
928 #if CONFIG_IS_ENABLED(SYS_REPORT_STACK_F_USAGE)
929 ulong init_sp = gd->start_addr_sp;
930 ulong stack_bottom = init_sp - CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK);
931 u8 *ptr = (u8 *)stack_bottom;
934 for (i = 0; i < CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK); i++) {
935 if (*ptr != CONFIG_VAL(SYS_STACK_F_CHECK_BYTE))
939 printf("SPL initial stack usage: %lu bytes\n",
940 CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK) - i);
945 * spl_relocate_stack_gd() - Relocate stack ready for board_init_r() execution
947 * Sometimes board_init_f() runs with a stack in SRAM but we want to use SDRAM
948 * for the main board_init_r() execution. This is typically because we need
949 * more stack space for things like the MMC sub-system.
951 * This function calculates the stack position, copies the global_data into
952 * place, sets the new gd (except for ARM, for which setting GD within a C
953 * function may not always work) and returns the new stack position. The
954 * caller is responsible for setting up the sp register and, in the case
955 * of ARM, setting up gd.
957 * All of this is done using the same layout and alignments as done in
958 * board_init_f_init_reserve() / board_init_f_alloc_reserve().
960 * Return: new stack location, or 0 to use the same stack
962 ulong spl_relocate_stack_gd(void)
964 #ifdef CONFIG_SPL_STACK_R
966 ulong ptr = CONFIG_SPL_STACK_R_ADDR;
968 if (CONFIG_IS_ENABLED(SYS_REPORT_STACK_F_USAGE))
969 spl_relocate_stack_check();
971 #if defined(CONFIG_SPL_SYS_MALLOC_SIMPLE) && CONFIG_VAL(SYS_MALLOC_F_LEN)
972 if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) {
973 debug("SPL malloc() before relocation used 0x%lx bytes (%ld KB)\n",
974 gd->malloc_ptr, gd->malloc_ptr / 1024);
975 ptr -= CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
976 gd->malloc_base = ptr;
977 gd->malloc_limit = CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
981 /* Get stack position: use 8-byte alignment for ABI compliance */
982 ptr = CONFIG_SPL_STACK_R_ADDR - roundup(sizeof(gd_t),16);
983 new_gd = (gd_t *)ptr;
984 memcpy(new_gd, (void *)gd, sizeof(gd_t));
985 #if CONFIG_IS_ENABLED(DM)
986 dm_fixup_for_gd_move(new_gd);
988 #if !defined(CONFIG_ARM) && !defined(CONFIG_RISCV)
997 #if defined(CONFIG_BOOTCOUNT_LIMIT) && \
998 ((!defined(CONFIG_TPL_BUILD) && !defined(CONFIG_SPL_BOOTCOUNT_LIMIT)) || \
999 (defined(CONFIG_TPL_BUILD) && !defined(CONFIG_TPL_BOOTCOUNT_LIMIT)))
1000 void bootcount_store(ulong a)
1004 ulong bootcount_load(void)