1 // SPDX-License-Identifier: GPL-2.0+
4 * Texas Instruments, <www.ti.com>
11 #include <binman_sym.h>
12 #include <bootstage.h>
23 #include <system-constants.h>
24 #include <asm/global_data.h>
25 #include <asm-generic/gpio.h>
28 #include <u-boot/crc.h>
29 #if CONFIG_IS_ENABLED(BANNER_PRINT)
30 #include <timestamp.h>
38 #include <dm/device-internal.h>
39 #include <dm/uclass-internal.h>
40 #include <linux/compiler.h>
41 #include <fdt_support.h>
42 #include <bootcount.h>
46 DECLARE_GLOBAL_DATA_PTR;
47 DECLARE_BINMAN_MAGIC_SYM;
49 u32 *boot_params_ptr = NULL;
51 #if CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS)
52 /* See spl.h for information about this */
53 binman_sym_declare(ulong, u_boot_any, image_pos);
54 binman_sym_declare(ulong, u_boot_any, size);
57 binman_sym_declare(ulong, u_boot_spl_any, image_pos);
58 binman_sym_declare(ulong, u_boot_spl_any, size);
62 binman_sym_declare(ulong, u_boot_vpl_any, image_pos);
63 binman_sym_declare(ulong, u_boot_vpl_any, size);
66 #endif /* BINMAN_UBOOT_SYMBOLS */
68 /* Define board data structure */
69 static struct bd_info bdata __attribute__ ((section(".data")));
71 #if CONFIG_IS_ENABLED(SHOW_BOOT_PROGRESS)
73 * Board-specific Platform code can reimplement show_boot_progress () if needed
75 __weak void show_boot_progress(int val) {}
78 #if defined(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF) || \
79 defined(CONFIG_SPL_ATF)
80 /* weak, default platform-specific function to initialize dram banks */
81 __weak int dram_init_banksize(void)
88 * Default function to determine if u-boot or the OS should
89 * be started. This implementation always returns 1.
91 * Please implement your own board specific funcion to do this.
94 * 0 to not start u-boot
95 * positive if u-boot should start
97 #if CONFIG_IS_ENABLED(OS_BOOT)
98 __weak int spl_start_uboot(void)
101 "Please implement spl_start_uboot() for your board\n");
102 puts(SPL_TPL_PROMPT "Direct Linux boot not active!\n");
107 * Weak default function for arch specific zImage check. Return zero
108 * and fill start and end address if image is recognized.
110 int __weak bootz_setup(ulong image, ulong *start, ulong *end)
115 int __weak booti_setup(ulong image, ulong *relocated_addr, ulong *size, bool force_reloc)
121 /* Weak default function for arch/board-specific fixups to the spl_image_info */
122 void __weak spl_perform_fixups(struct spl_image_info *spl_image)
126 void spl_fixup_fdt(void *fdt_blob)
128 #if defined(CONFIG_SPL_OF_LIBFDT)
134 err = fdt_check_header(fdt_blob);
136 printf("fdt_root: %s\n", fdt_strerror(err));
140 /* fixup the memory dt node */
141 err = fdt_shrink_to_minimum(fdt_blob, 0);
143 printf(SPL_TPL_PROMPT "fdt_shrink_to_minimum err - %d\n", err);
147 err = arch_fixup_fdt(fdt_blob);
149 printf(SPL_TPL_PROMPT "arch_fixup_fdt err - %d\n", err);
155 int spl_reserve_video_from_ram_top(void)
157 if (CONFIG_IS_ENABLED(VIDEO)) {
162 ret = video_reserve(&addr);
165 debug("Reserving %luk for video at: %08lx\n",
166 ((unsigned long)gd->relocaddr - addr) >> 10, addr);
167 gd->relocaddr = addr;
173 ulong spl_get_image_pos(void)
175 if (!CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS))
176 return BINMAN_SYM_MISSING;
179 if (spl_next_phase() == PHASE_VPL)
180 return binman_sym(ulong, u_boot_vpl_any, image_pos);
182 return spl_next_phase() == PHASE_SPL ?
183 binman_sym(ulong, u_boot_spl_any, image_pos) :
184 binman_sym(ulong, u_boot_any, image_pos);
187 ulong spl_get_image_size(void)
189 if (!CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS))
190 return BINMAN_SYM_MISSING;
193 if (spl_next_phase() == PHASE_VPL)
194 return binman_sym(ulong, u_boot_vpl_any, size);
196 return spl_next_phase() == PHASE_SPL ?
197 binman_sym(ulong, u_boot_spl_any, size) :
198 binman_sym(ulong, u_boot_any, size);
201 ulong spl_get_image_text_base(void)
204 if (spl_next_phase() == PHASE_VPL)
205 return CONFIG_VPL_TEXT_BASE;
207 return spl_next_phase() == PHASE_SPL ? CONFIG_SPL_TEXT_BASE :
212 * Weak default function for board specific cleanup/preparation before
213 * Linux boot. Some boards/platforms might not need it, so just provide
214 * an empty stub here.
216 __weak void spl_board_prepare_for_linux(void)
221 __weak void spl_board_prepare_for_optee(void *fdt)
225 __weak const char *spl_board_loader_name(u32 boot_device)
230 #if CONFIG_IS_ENABLED(OPTEE_IMAGE)
231 __weak void __noreturn jump_to_image_optee(struct spl_image_info *spl_image)
233 spl_optee_entry(NULL, NULL, spl_image->fdt_addr,
234 (void *)spl_image->entry_point);
238 __weak void spl_board_prepare_for_boot(void)
243 __weak struct legacy_img_hdr *spl_get_load_buffer(ssize_t offset, size_t size)
245 return map_sysmem(CONFIG_TEXT_BASE + offset, 0);
248 #ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT
249 void spl_set_header_raw_uboot(struct spl_image_info *spl_image)
251 ulong u_boot_pos = spl_get_image_pos();
253 #if CONFIG_SYS_MONITOR_LEN != 0
254 spl_image->size = CONFIG_SYS_MONITOR_LEN;
256 /* Unknown U-Boot size, let's assume it will not be more than 200 KB */
257 spl_image->size = 200 * 1024;
261 * Binman error cases: address of the end of the previous region or the
262 * start of the image's entry area (usually 0) if there is no previous
265 if (u_boot_pos && u_boot_pos != BINMAN_SYM_MISSING) {
266 /* Binman does not support separated entry addresses */
267 spl_image->entry_point = u_boot_pos;
268 spl_image->load_addr = u_boot_pos;
270 spl_image->entry_point = CONFIG_SYS_UBOOT_START;
271 spl_image->load_addr = CONFIG_TEXT_BASE;
273 spl_image->os = IH_OS_U_BOOT;
274 spl_image->name = "U-Boot";
278 __weak int spl_parse_board_header(struct spl_image_info *spl_image,
279 const struct spl_boot_device *bootdev,
280 const void *image_header, size_t size)
285 __weak int spl_parse_legacy_header(struct spl_image_info *spl_image,
286 const struct legacy_img_hdr *header)
288 /* LEGACY image not supported */
289 debug("Legacy boot image support not enabled, proceeding to other boot methods\n");
293 int spl_parse_image_header(struct spl_image_info *spl_image,
294 const struct spl_boot_device *bootdev,
295 const struct legacy_img_hdr *header)
299 if (CONFIG_IS_ENABLED(LOAD_FIT_FULL)) {
300 ret = spl_load_fit_image(spl_image, header);
305 if (image_get_magic(header) == IH_MAGIC) {
308 ret = spl_parse_legacy_header(spl_image, header);
312 #ifdef CONFIG_SPL_PANIC_ON_RAW_IMAGE
314 * CONFIG_SPL_PANIC_ON_RAW_IMAGE is defined when the
315 * code which loads images in SPL cannot guarantee that
316 * absolutely all read errors will be reported.
317 * An example is the LPC32XX MLC NAND driver, which
318 * will consider that a completely unreadable NAND block
319 * is bad, and thus should be skipped silently.
321 panic("** no mkimage signature but raw image not supported");
324 #if CONFIG_IS_ENABLED(OS_BOOT)
325 #if defined(CMD_BOOTI)
328 if (!booti_setup((ulong)header, &start, &size, 0)) {
329 spl_image->name = "Linux";
330 spl_image->os = IH_OS_LINUX;
331 spl_image->load_addr = start;
332 spl_image->entry_point = start;
333 spl_image->size = size;
335 "payload Image, load addr: 0x%lx size: %d\n",
336 spl_image->load_addr, spl_image->size);
339 #elif defined(CMD_BOOTZ)
342 if (!bootz_setup((ulong)header, &start, &end)) {
343 spl_image->name = "Linux";
344 spl_image->os = IH_OS_LINUX;
345 spl_image->load_addr = CONFIG_SYS_LOAD_ADDR;
346 spl_image->entry_point = CONFIG_SYS_LOAD_ADDR;
347 spl_image->size = end - start;
349 "payload zImage, load addr: 0x%lx size: %d\n",
350 spl_image->load_addr, spl_image->size);
356 if (!spl_parse_board_header(spl_image, bootdev, (const void *)header, sizeof(*header)))
359 #ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT
360 /* Signature not found - assume u-boot.bin */
361 debug("mkimage signature not found - ih_magic = %x\n",
363 spl_set_header_raw_uboot(spl_image);
365 /* RAW image not supported, proceed to other boot methods. */
366 debug("Raw boot image support not enabled, proceeding to other boot methods\n");
374 #if SPL_LOAD_USERS > 1
375 int spl_load(struct spl_image_info *spl_image,
376 const struct spl_boot_device *bootdev, struct spl_load_info *info,
377 size_t size, size_t offset)
379 return _spl_load(spl_image, bootdev, info, size, offset);
383 __weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
385 typedef void __noreturn (*image_entry_noargs_t)(void);
387 image_entry_noargs_t image_entry =
388 (image_entry_noargs_t)spl_image->entry_point;
390 debug("image entry point: 0x%lx\n", spl_image->entry_point);
394 #if CONFIG_IS_ENABLED(HANDOFF)
396 * Set up the SPL hand-off information
398 * This is initially empty (zero) but can be written by
400 static int setup_spl_handoff(void)
402 struct spl_handoff *ho;
404 ho = bloblist_ensure(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(struct spl_handoff));
411 __weak int handoff_arch_save(struct spl_handoff *ho)
416 static int write_spl_handoff(void)
418 struct spl_handoff *ho;
421 ho = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(struct spl_handoff));
424 handoff_save_dram(ho);
425 ret = handoff_arch_save(ho);
428 debug(SPL_TPL_PROMPT "Wrote SPL handoff\n");
433 static inline int setup_spl_handoff(void) { return 0; }
434 static inline int write_spl_handoff(void) { return 0; }
439 * get_bootstage_id() - Get the bootstage ID to emit
441 * @start: true if this is for starting SPL, false for ending it
442 * Return: bootstage ID to use
444 static enum bootstage_id get_bootstage_id(bool start)
446 enum u_boot_phase phase = spl_phase();
448 if (IS_ENABLED(CONFIG_TPL_BUILD) && phase == PHASE_TPL)
449 return start ? BOOTSTAGE_ID_START_TPL : BOOTSTAGE_ID_END_TPL;
450 else if (IS_ENABLED(CONFIG_VPL_BUILD) && phase == PHASE_VPL)
451 return start ? BOOTSTAGE_ID_START_VPL : BOOTSTAGE_ID_END_VPL;
453 return start ? BOOTSTAGE_ID_START_SPL : BOOTSTAGE_ID_END_SPL;
456 static int spl_common_init(bool setup_malloc)
460 #if CONFIG_IS_ENABLED(SYS_MALLOC_F)
462 #ifdef CFG_MALLOC_F_ADDR
463 gd->malloc_base = CFG_MALLOC_F_ADDR;
465 gd->malloc_limit = CONFIG_VAL(SYS_MALLOC_F_LEN);
469 ret = bootstage_init(u_boot_first_phase());
471 debug("%s: Failed to set up bootstage: ret=%d\n", __func__,
475 if (!u_boot_first_phase()) {
476 ret = bootstage_unstash_default();
478 log_debug("Failed to unstash bootstage: ret=%d\n", ret);
480 bootstage_mark_name(get_bootstage_id(true),
481 spl_phase_name(spl_phase()));
482 #if CONFIG_IS_ENABLED(LOG)
485 debug("%s: Failed to set up logging\n", __func__);
489 if (CONFIG_IS_ENABLED(OF_REAL)) {
490 ret = fdtdec_setup();
492 debug("fdtdec_setup() returned error %d\n", ret);
496 if (CONFIG_IS_ENABLED(DM)) {
497 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_SPL,
498 spl_phase() == PHASE_TPL ? "dm tpl" : "dm_spl");
499 /* With CONFIG_SPL_OF_PLATDATA, bring in all devices */
500 ret = dm_init_and_scan(!CONFIG_IS_ENABLED(OF_PLATDATA));
501 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_SPL);
503 debug("dm_init_and_scan() returned error %d\n", ret);
511 void spl_set_bd(void)
514 * NOTE: On some platforms (e.g. x86) bdata may be in flash and not
521 int spl_early_init(void)
525 debug("%s\n", __func__);
527 ret = spl_common_init(true);
530 gd->flags |= GD_FLG_SPL_EARLY_INIT;
538 bool setup_malloc = !(IS_ENABLED(CONFIG_SPL_STACK_R) &&
539 IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIMPLE));
541 debug("%s\n", __func__);
543 if (!(gd->flags & GD_FLG_SPL_EARLY_INIT)) {
544 ret = spl_common_init(setup_malloc);
548 gd->flags |= GD_FLG_SPL_INIT;
553 #ifndef BOOT_DEVICE_NONE
554 #define BOOT_DEVICE_NONE 0xdeadbeef
557 __weak void board_boot_order(u32 *spl_boot_list)
559 spl_boot_list[0] = spl_boot_device();
562 __weak int spl_check_board_image(struct spl_image_info *spl_image,
563 const struct spl_boot_device *bootdev)
568 static int spl_load_image(struct spl_image_info *spl_image,
569 struct spl_image_loader *loader)
572 struct spl_boot_device bootdev;
574 bootdev.boot_device = loader->boot_device;
575 bootdev.boot_device_name = NULL;
577 ret = loader->load_image(spl_image, &bootdev);
578 #ifdef CONFIG_SPL_LEGACY_IMAGE_CRC_CHECK
579 if (!ret && spl_image->dcrc_length) {
581 ulong dcrc = crc32_wd(0, (unsigned char *)spl_image->dcrc_data,
582 spl_image->dcrc_length, CHUNKSZ_CRC32);
583 if (dcrc != spl_image->dcrc) {
584 puts("SPL: Image data CRC check failed!\n");
590 ret = spl_check_board_image(spl_image, &bootdev);
596 * boot_from_devices() - Try loading a booting U-Boot from a list of devices
598 * @spl_image: Place to put the image details if successful
599 * @spl_boot_list: List of boot devices to try
600 * @count: Number of elements in spl_boot_list
601 * Return: 0 if OK, -ENODEV if there were no boot devices
602 * if CONFIG_SHOW_ERRORS is enabled, returns -ENXIO if there were
603 * devices but none worked
605 static int boot_from_devices(struct spl_image_info *spl_image,
606 u32 spl_boot_list[], int count)
608 struct spl_image_loader *drv =
609 ll_entry_start(struct spl_image_loader, spl_image_loader);
611 ll_entry_count(struct spl_image_loader, spl_image_loader);
615 for (i = 0; i < count && spl_boot_list[i] != BOOT_DEVICE_NONE; i++) {
616 struct spl_image_loader *loader;
617 int bootdev = spl_boot_list[i];
619 if (CONFIG_IS_ENABLED(SHOW_ERRORS))
621 for (loader = drv; loader != drv + n_ents; loader++) {
622 if (bootdev != loader->boot_device)
624 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE)) {
626 printf("Trying to boot from %s\n",
627 spl_loader_name(loader));
628 else if (CONFIG_IS_ENABLED(SHOW_ERRORS)) {
629 printf(SPL_TPL_PROMPT
630 "Unsupported Boot Device %d\n",
634 "Unsupported Boot Device!\n");
638 !spl_load_image(spl_image, loader)) {
639 spl_image->boot_device = bootdev;
648 #if defined(CONFIG_SPL_FRAMEWORK_BOARD_INIT_F)
649 void board_init_f(ulong dummy)
651 if (CONFIG_IS_ENABLED(OF_CONTROL)) {
654 ret = spl_early_init();
656 debug("spl_early_init() failed: %d\n", ret);
661 preloader_console_init();
665 void board_init_r(gd_t *dummy1, ulong dummy2)
667 u32 spl_boot_list[] = {
674 typedef void __noreturn (*jump_to_image_t)(struct spl_image_info *);
675 jump_to_image_t jump_to_image = &jump_to_image_no_args;
676 struct spl_image_info spl_image;
679 debug(">>" SPL_TPL_PROMPT "board_init_r()\n");
683 if (IS_ENABLED(CONFIG_SPL_SYS_MALLOC)) {
684 mem_malloc_init((ulong)map_sysmem(SPL_SYS_MALLOC_START,
685 SPL_SYS_MALLOC_SIZE),
686 SPL_SYS_MALLOC_SIZE);
687 gd->flags |= GD_FLG_FULL_MALLOC_INIT;
689 if (!(gd->flags & GD_FLG_SPL_INIT)) {
694 if (CONFIG_IS_ENABLED(BLOBLIST)) {
695 ret = bloblist_init();
697 debug("%s: Failed to set up bloblist: ret=%d\n",
699 puts(SPL_TPL_PROMPT "Cannot set up bloblist\n");
703 if (CONFIG_IS_ENABLED(HANDOFF)) {
706 ret = setup_spl_handoff();
708 puts(SPL_TPL_PROMPT "Cannot set up SPL handoff\n");
713 if (CONFIG_IS_ENABLED(SOC_INIT))
716 if (CONFIG_IS_ENABLED(BOARD_INIT))
719 if (IS_ENABLED(CONFIG_SPL_WATCHDOG) && CONFIG_IS_ENABLED(WDT))
722 if (IS_ENABLED(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF) ||
723 IS_ENABLED(CONFIG_SPL_ATF))
724 dram_init_banksize();
726 if (CONFIG_IS_ENABLED(PCI) && !(gd->flags & GD_FLG_DM_DEAD)) {
729 puts(SPL_TPL_PROMPT "Cannot initialize PCI\n");
730 /* Don't fail. We still can try other boot methods. */
735 /* Dump driver model states to aid analysis */
736 if (CONFIG_IS_ENABLED(DM_STATS)) {
743 memset(&spl_image, '\0', sizeof(spl_image));
744 if (IS_ENABLED(CONFIG_SPL_OS_BOOT))
745 spl_image.arg = (void *)SPL_PAYLOAD_ARGS_ADDR;
746 spl_image.boot_device = BOOT_DEVICE_NONE;
747 board_boot_order(spl_boot_list);
749 ret = boot_from_devices(&spl_image, spl_boot_list,
750 ARRAY_SIZE(spl_boot_list));
752 if (CONFIG_IS_ENABLED(SHOW_ERRORS))
753 printf(SPL_TPL_PROMPT "failed to boot from all boot devices (err=%d)\n",
756 puts(SPL_TPL_PROMPT "failed to boot from all boot devices\n");
760 spl_perform_fixups(&spl_image);
763 if (os == IH_OS_U_BOOT) {
764 debug("Jumping to %s...\n", spl_phase_name(spl_next_phase()));
765 } else if (CONFIG_IS_ENABLED(ATF) && os == IH_OS_ARM_TRUSTED_FIRMWARE) {
766 debug("Jumping to U-Boot via ARM Trusted Firmware\n");
767 spl_fixup_fdt(spl_image_fdt_addr(&spl_image));
768 jump_to_image = &spl_invoke_atf;
769 } else if (CONFIG_IS_ENABLED(OPTEE_IMAGE) && os == IH_OS_TEE) {
770 debug("Jumping to U-Boot via OP-TEE\n");
771 spl_board_prepare_for_optee(spl_image_fdt_addr(&spl_image));
772 jump_to_image = &jump_to_image_optee;
773 } else if (CONFIG_IS_ENABLED(OPENSBI) && os == IH_OS_OPENSBI) {
774 debug("Jumping to U-Boot via RISC-V OpenSBI\n");
775 jump_to_image = &spl_invoke_opensbi;
776 } else if (CONFIG_IS_ENABLED(OS_BOOT) && os == IH_OS_LINUX) {
777 debug("Jumping to Linux\n");
778 if (IS_ENABLED(CONFIG_SPL_OS_BOOT))
779 spl_fixup_fdt((void *)SPL_PAYLOAD_ARGS_ADDR);
780 spl_board_prepare_for_linux();
781 jump_to_image = &jump_to_image_linux;
783 debug("Unsupported OS image.. Jumping nevertheless..\n");
785 if (CONFIG_IS_ENABLED(SYS_MALLOC_F) &&
786 !IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIZE))
787 debug("SPL malloc() used 0x%lx bytes (%ld KB)\n",
788 gd_malloc_ptr(), gd_malloc_ptr() / 1024);
790 bootstage_mark_name(get_bootstage_id(false), "end phase");
791 ret = bootstage_stash_default();
793 debug("Failed to stash bootstage: err=%d\n", ret);
795 if (IS_ENABLED(CONFIG_SPL_VIDEO_REMOVE)) {
799 rc = uclass_find_device(UCLASS_VIDEO, 0, &dev);
801 rc = device_remove(dev, DM_REMOVE_NORMAL);
803 printf("Cannot remove video device '%s' (err=%d)\n",
807 if (CONFIG_IS_ENABLED(HANDOFF)) {
808 ret = write_spl_handoff();
810 printf(SPL_TPL_PROMPT
811 "SPL hand-off write failed (err=%d)\n", ret);
813 if (CONFIG_IS_ENABLED(BLOBLIST)) {
814 ret = bloblist_finish();
816 printf("Warning: Failed to finish bloblist (ret=%d)\n",
820 spl_board_prepare_for_boot();
821 jump_to_image(&spl_image);
825 * This requires UART clocks to be enabled. In order for this to work the
826 * caller must ensure that the gd pointer is valid.
828 void preloader_console_init(void)
830 #ifdef CONFIG_SPL_SERIAL
831 gd->baudrate = CONFIG_BAUDRATE;
833 serial_init(); /* serial communications setup */
835 gd->have_console = 1;
837 #if CONFIG_IS_ENABLED(BANNER_PRINT)
838 puts("\nU-Boot " SPL_TPL_NAME " " PLAIN_VERSION " (" U_BOOT_DATE " - "
839 U_BOOT_TIME " " U_BOOT_TZ ")\n");
841 #ifdef CONFIG_SPL_DISPLAY_PRINT
848 * This function is called before the stack is changed from initial stack to
849 * relocated stack. It tries to dump the stack size used
851 __weak void spl_relocate_stack_check(void)
853 #if CONFIG_IS_ENABLED(SYS_REPORT_STACK_F_USAGE)
854 ulong init_sp = gd->start_addr_sp;
855 ulong stack_bottom = init_sp - CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK);
856 u8 *ptr = (u8 *)stack_bottom;
859 for (i = 0; i < CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK); i++) {
860 if (*ptr != CONFIG_VAL(SYS_STACK_F_CHECK_BYTE))
864 printf("SPL initial stack usage: %lu bytes\n",
865 CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK) - i);
870 * spl_relocate_stack_gd() - Relocate stack ready for board_init_r() execution
872 * Sometimes board_init_f() runs with a stack in SRAM but we want to use SDRAM
873 * for the main board_init_r() execution. This is typically because we need
874 * more stack space for things like the MMC sub-system.
876 * This function calculates the stack position, copies the global_data into
877 * place, sets the new gd (except for ARM, for which setting GD within a C
878 * function may not always work) and returns the new stack position. The
879 * caller is responsible for setting up the sp register and, in the case
880 * of ARM, setting up gd.
882 * All of this is done using the same layout and alignments as done in
883 * board_init_f_init_reserve() / board_init_f_alloc_reserve().
885 * Return: new stack location, or 0 to use the same stack
887 ulong spl_relocate_stack_gd(void)
889 #ifdef CONFIG_SPL_STACK_R
891 ulong ptr = CONFIG_SPL_STACK_R_ADDR;
893 if (CONFIG_IS_ENABLED(SYS_REPORT_STACK_F_USAGE))
894 spl_relocate_stack_check();
896 #if defined(CONFIG_SPL_SYS_MALLOC_SIMPLE) && CONFIG_IS_ENABLED(SYS_MALLOC_F)
897 if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) {
898 debug("SPL malloc() before relocation used 0x%lx bytes (%ld KB)\n",
899 gd->malloc_ptr, gd->malloc_ptr / 1024);
900 ptr -= CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
901 gd->malloc_base = ptr;
902 gd->malloc_limit = CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
906 /* Get stack position: use 8-byte alignment for ABI compliance */
907 ptr = CONFIG_SPL_STACK_R_ADDR - roundup(sizeof(gd_t),16);
908 gd->start_addr_sp = ptr;
909 new_gd = (gd_t *)ptr;
910 memcpy(new_gd, (void *)gd, sizeof(gd_t));
911 #if CONFIG_IS_ENABLED(DM)
912 dm_fixup_for_gd_move(new_gd);
914 #if CONFIG_IS_ENABLED(LOG)
915 log_fixup_for_gd_move(new_gd);
917 #if !defined(CONFIG_ARM) && !defined(CONFIG_RISCV)
926 #if defined(CONFIG_BOOTCOUNT_LIMIT) && \
927 ((!defined(CONFIG_TPL_BUILD) && !defined(CONFIG_SPL_BOOTCOUNT_LIMIT)) || \
928 (defined(CONFIG_TPL_BUILD) && !defined(CONFIG_TPL_BOOTCOUNT_LIMIT)))
929 void bootcount_store(ulong a)
933 ulong bootcount_load(void)