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>
26 #include <asm/u-boot.h>
29 #include <u-boot/crc.h>
30 #if CONFIG_IS_ENABLED(BANNER_PRINT)
31 #include <timestamp.h>
39 #include <dm/device-internal.h>
40 #include <dm/uclass-internal.h>
41 #include <linux/compiler.h>
42 #include <fdt_support.h>
43 #include <bootcount.h>
47 DECLARE_GLOBAL_DATA_PTR;
48 DECLARE_BINMAN_MAGIC_SYM;
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 int spl_reserve_video_from_ram_top(void)
158 if (CONFIG_IS_ENABLED(VIDEO)) {
163 ret = video_reserve(&addr);
166 debug("Reserving %luk for video at: %08lx\n",
167 ((unsigned long)gd->relocaddr - addr) >> 10, addr);
168 gd->relocaddr = addr;
174 ulong spl_get_image_pos(void)
176 if (!CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS))
177 return BINMAN_SYM_MISSING;
180 if (spl_next_phase() == PHASE_VPL)
181 return binman_sym(ulong, u_boot_vpl_any, image_pos);
183 return spl_next_phase() == PHASE_SPL ?
184 binman_sym(ulong, u_boot_spl_any, image_pos) :
185 binman_sym(ulong, u_boot_any, image_pos);
188 ulong spl_get_image_size(void)
190 if (!CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS))
191 return BINMAN_SYM_MISSING;
194 if (spl_next_phase() == PHASE_VPL)
195 return binman_sym(ulong, u_boot_vpl_any, size);
197 return spl_next_phase() == PHASE_SPL ?
198 binman_sym(ulong, u_boot_spl_any, size) :
199 binman_sym(ulong, u_boot_any, size);
202 ulong spl_get_image_text_base(void)
205 if (spl_next_phase() == PHASE_VPL)
206 return CONFIG_VPL_TEXT_BASE;
208 return spl_next_phase() == PHASE_SPL ? CONFIG_SPL_TEXT_BASE :
213 * Weak default function for board specific cleanup/preparation before
214 * Linux boot. Some boards/platforms might not need it, so just provide
215 * an empty stub here.
217 __weak void spl_board_prepare_for_linux(void)
222 __weak void spl_board_prepare_for_optee(void *fdt)
226 __weak const char *spl_board_loader_name(u32 boot_device)
231 #if CONFIG_IS_ENABLED(OPTEE_IMAGE)
232 __weak void __noreturn jump_to_image_optee(struct spl_image_info *spl_image)
234 spl_optee_entry(NULL, NULL, spl_image->fdt_addr,
235 (void *)spl_image->entry_point);
239 __weak void spl_board_prepare_for_boot(void)
244 __weak struct legacy_img_hdr *spl_get_load_buffer(ssize_t offset, size_t size)
246 return map_sysmem(CONFIG_TEXT_BASE + offset, 0);
249 #ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT
250 void spl_set_header_raw_uboot(struct spl_image_info *spl_image)
252 ulong u_boot_pos = spl_get_image_pos();
254 #if CONFIG_SYS_MONITOR_LEN != 0
255 spl_image->size = CONFIG_SYS_MONITOR_LEN;
257 /* Unknown U-Boot size, let's assume it will not be more than 200 KB */
258 spl_image->size = 200 * 1024;
262 * Binman error cases: address of the end of the previous region or the
263 * start of the image's entry area (usually 0) if there is no previous
266 if (u_boot_pos && u_boot_pos != BINMAN_SYM_MISSING) {
267 /* Binman does not support separated entry addresses */
268 spl_image->entry_point = u_boot_pos;
269 spl_image->load_addr = u_boot_pos;
271 spl_image->entry_point = CONFIG_SYS_UBOOT_START;
272 spl_image->load_addr = CONFIG_TEXT_BASE;
274 spl_image->os = IH_OS_U_BOOT;
275 spl_image->name = "U-Boot";
279 __weak int spl_parse_board_header(struct spl_image_info *spl_image,
280 const struct spl_boot_device *bootdev,
281 const void *image_header, size_t size)
286 __weak int spl_parse_legacy_header(struct spl_image_info *spl_image,
287 const struct legacy_img_hdr *header)
289 /* LEGACY image not supported */
290 debug("Legacy boot image support not enabled, proceeding to other boot methods\n");
294 int spl_parse_image_header(struct spl_image_info *spl_image,
295 const struct spl_boot_device *bootdev,
296 const struct legacy_img_hdr *header)
300 if (CONFIG_IS_ENABLED(LOAD_FIT_FULL)) {
301 ret = spl_load_fit_image(spl_image, header);
306 if (image_get_magic(header) == IH_MAGIC) {
309 ret = spl_parse_legacy_header(spl_image, header);
313 #ifdef CONFIG_SPL_PANIC_ON_RAW_IMAGE
315 * CONFIG_SPL_PANIC_ON_RAW_IMAGE is defined when the
316 * code which loads images in SPL cannot guarantee that
317 * absolutely all read errors will be reported.
318 * An example is the LPC32XX MLC NAND driver, which
319 * will consider that a completely unreadable NAND block
320 * is bad, and thus should be skipped silently.
322 panic("** no mkimage signature but raw image not supported");
325 #if CONFIG_IS_ENABLED(OS_BOOT)
326 #if defined(CMD_BOOTI)
329 if (!booti_setup((ulong)header, &start, &size, 0)) {
330 spl_image->name = "Linux";
331 spl_image->os = IH_OS_LINUX;
332 spl_image->load_addr = start;
333 spl_image->entry_point = start;
334 spl_image->size = size;
336 "payload Image, load addr: 0x%lx size: %d\n",
337 spl_image->load_addr, spl_image->size);
340 #elif defined(CMD_BOOTZ)
343 if (!bootz_setup((ulong)header, &start, &end)) {
344 spl_image->name = "Linux";
345 spl_image->os = IH_OS_LINUX;
346 spl_image->load_addr = CONFIG_SYS_LOAD_ADDR;
347 spl_image->entry_point = CONFIG_SYS_LOAD_ADDR;
348 spl_image->size = end - start;
350 "payload zImage, load addr: 0x%lx size: %d\n",
351 spl_image->load_addr, spl_image->size);
357 if (!spl_parse_board_header(spl_image, bootdev, (const void *)header, sizeof(*header)))
360 #ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT
361 /* Signature not found - assume u-boot.bin */
362 debug("mkimage signature not found - ih_magic = %x\n",
364 spl_set_header_raw_uboot(spl_image);
366 /* RAW image not supported, proceed to other boot methods. */
367 debug("Raw boot image support not enabled, proceeding to other boot methods\n");
375 #if SPL_LOAD_USERS > 1
376 int spl_load(struct spl_image_info *spl_image,
377 const struct spl_boot_device *bootdev, struct spl_load_info *info,
378 size_t size, size_t offset)
380 return _spl_load(spl_image, bootdev, info, size, offset);
384 __weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
386 typedef void __noreturn (*image_entry_noargs_t)(void);
388 image_entry_noargs_t image_entry =
389 (image_entry_noargs_t)spl_image->entry_point;
391 debug("image entry point: 0x%lx\n", spl_image->entry_point);
395 #if CONFIG_IS_ENABLED(HANDOFF)
397 * Set up the SPL hand-off information
399 * This is initially empty (zero) but can be written by
401 static int setup_spl_handoff(void)
403 struct spl_handoff *ho;
405 ho = bloblist_ensure(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(struct spl_handoff));
412 __weak int handoff_arch_save(struct spl_handoff *ho)
417 static int write_spl_handoff(void)
419 struct spl_handoff *ho;
422 ho = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(struct spl_handoff));
425 handoff_save_dram(ho);
426 ret = handoff_arch_save(ho);
429 debug(SPL_TPL_PROMPT "Wrote SPL handoff\n");
434 static inline int setup_spl_handoff(void) { return 0; }
435 static inline int write_spl_handoff(void) { return 0; }
440 * get_bootstage_id() - Get the bootstage ID to emit
442 * @start: true if this is for starting SPL, false for ending it
443 * Return: bootstage ID to use
445 static enum bootstage_id get_bootstage_id(bool start)
447 enum u_boot_phase phase = spl_phase();
449 if (IS_ENABLED(CONFIG_TPL_BUILD) && phase == PHASE_TPL)
450 return start ? BOOTSTAGE_ID_START_TPL : BOOTSTAGE_ID_END_TPL;
451 else if (IS_ENABLED(CONFIG_VPL_BUILD) && phase == PHASE_VPL)
452 return start ? BOOTSTAGE_ID_START_VPL : BOOTSTAGE_ID_END_VPL;
454 return start ? BOOTSTAGE_ID_START_SPL : BOOTSTAGE_ID_END_SPL;
457 static int spl_common_init(bool setup_malloc)
461 #if CONFIG_IS_ENABLED(SYS_MALLOC_F)
463 #ifdef CFG_MALLOC_F_ADDR
464 gd->malloc_base = CFG_MALLOC_F_ADDR;
466 gd->malloc_limit = CONFIG_VAL(SYS_MALLOC_F_LEN);
470 ret = bootstage_init(u_boot_first_phase());
472 debug("%s: Failed to set up bootstage: ret=%d\n", __func__,
476 if (!u_boot_first_phase()) {
477 ret = bootstage_unstash_default();
479 log_debug("Failed to unstash bootstage: ret=%d\n", ret);
481 bootstage_mark_name(get_bootstage_id(true),
482 spl_phase_name(spl_phase()));
483 #if CONFIG_IS_ENABLED(LOG)
486 debug("%s: Failed to set up logging\n", __func__);
490 if (CONFIG_IS_ENABLED(OF_REAL)) {
491 ret = fdtdec_setup();
493 debug("fdtdec_setup() returned error %d\n", ret);
497 if (CONFIG_IS_ENABLED(DM)) {
498 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_SPL,
499 spl_phase() == PHASE_TPL ? "dm tpl" : "dm_spl");
500 /* With CONFIG_SPL_OF_PLATDATA, bring in all devices */
501 ret = dm_init_and_scan(!CONFIG_IS_ENABLED(OF_PLATDATA));
502 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_SPL);
504 debug("dm_init_and_scan() returned error %d\n", ret);
512 void spl_set_bd(void)
515 * NOTE: On some platforms (e.g. x86) bdata may be in flash and not
522 int spl_early_init(void)
526 debug("%s\n", __func__);
528 ret = spl_common_init(true);
531 gd->flags |= GD_FLG_SPL_EARLY_INIT;
539 bool setup_malloc = !(IS_ENABLED(CONFIG_SPL_STACK_R) &&
540 IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIMPLE));
542 debug("%s\n", __func__);
544 if (!(gd->flags & GD_FLG_SPL_EARLY_INIT)) {
545 ret = spl_common_init(setup_malloc);
549 gd->flags |= GD_FLG_SPL_INIT;
554 #ifndef BOOT_DEVICE_NONE
555 #define BOOT_DEVICE_NONE 0xdeadbeef
558 __weak void board_boot_order(u32 *spl_boot_list)
560 spl_boot_list[0] = spl_boot_device();
563 __weak int spl_check_board_image(struct spl_image_info *spl_image,
564 const struct spl_boot_device *bootdev)
569 static int spl_load_image(struct spl_image_info *spl_image,
570 struct spl_image_loader *loader)
573 struct spl_boot_device bootdev;
575 bootdev.boot_device = loader->boot_device;
576 bootdev.boot_device_name = NULL;
578 ret = loader->load_image(spl_image, &bootdev);
579 #ifdef CONFIG_SPL_LEGACY_IMAGE_CRC_CHECK
580 if (!ret && spl_image->dcrc_length) {
582 ulong dcrc = crc32_wd(0, (unsigned char *)spl_image->dcrc_data,
583 spl_image->dcrc_length, CHUNKSZ_CRC32);
584 if (dcrc != spl_image->dcrc) {
585 puts("SPL: Image data CRC check failed!\n");
591 ret = spl_check_board_image(spl_image, &bootdev);
597 * boot_from_devices() - Try loading a booting U-Boot from a list of devices
599 * @spl_image: Place to put the image details if successful
600 * @spl_boot_list: List of boot devices to try
601 * @count: Number of elements in spl_boot_list
602 * Return: 0 if OK, -ENODEV if there were no boot devices
603 * if CONFIG_SHOW_ERRORS is enabled, returns -ENXIO if there were
604 * devices but none worked
606 static int boot_from_devices(struct spl_image_info *spl_image,
607 u32 spl_boot_list[], int count)
609 struct spl_image_loader *drv =
610 ll_entry_start(struct spl_image_loader, spl_image_loader);
612 ll_entry_count(struct spl_image_loader, spl_image_loader);
616 for (i = 0; i < count && spl_boot_list[i] != BOOT_DEVICE_NONE; i++) {
617 struct spl_image_loader *loader;
618 int bootdev = spl_boot_list[i];
620 if (CONFIG_IS_ENABLED(SHOW_ERRORS))
622 for (loader = drv; loader != drv + n_ents; loader++) {
623 if (bootdev != loader->boot_device)
625 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE)) {
627 printf("Trying to boot from %s\n",
628 spl_loader_name(loader));
629 else if (CONFIG_IS_ENABLED(SHOW_ERRORS)) {
630 printf(SPL_TPL_PROMPT
631 "Unsupported Boot Device %d\n",
635 "Unsupported Boot Device!\n");
639 !spl_load_image(spl_image, loader)) {
640 spl_image->boot_device = bootdev;
649 #if defined(CONFIG_SPL_FRAMEWORK_BOARD_INIT_F)
650 void board_init_f(ulong dummy)
652 if (CONFIG_IS_ENABLED(OF_CONTROL)) {
655 ret = spl_early_init();
657 debug("spl_early_init() failed: %d\n", ret);
662 preloader_console_init();
666 void board_init_r(gd_t *dummy1, ulong dummy2)
668 u32 spl_boot_list[] = {
675 typedef void __noreturn (*jump_to_image_t)(struct spl_image_info *);
676 jump_to_image_t jump_to_image = &jump_to_image_no_args;
677 struct spl_image_info spl_image;
680 debug(">>" SPL_TPL_PROMPT "board_init_r()\n");
684 if (IS_ENABLED(CONFIG_SPL_SYS_MALLOC)) {
685 mem_malloc_init((ulong)map_sysmem(SPL_SYS_MALLOC_START,
686 SPL_SYS_MALLOC_SIZE),
687 SPL_SYS_MALLOC_SIZE);
688 gd->flags |= GD_FLG_FULL_MALLOC_INIT;
690 if (!(gd->flags & GD_FLG_SPL_INIT)) {
695 if (CONFIG_IS_ENABLED(BLOBLIST)) {
696 ret = bloblist_init();
698 debug("%s: Failed to set up bloblist: ret=%d\n",
700 puts(SPL_TPL_PROMPT "Cannot set up bloblist\n");
704 if (CONFIG_IS_ENABLED(HANDOFF)) {
707 ret = setup_spl_handoff();
709 puts(SPL_TPL_PROMPT "Cannot set up SPL handoff\n");
714 if (CONFIG_IS_ENABLED(BOARD_INIT))
717 if (IS_ENABLED(CONFIG_SPL_WATCHDOG) && CONFIG_IS_ENABLED(WDT))
720 if (IS_ENABLED(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF) ||
721 IS_ENABLED(CONFIG_SPL_ATF))
722 dram_init_banksize();
724 if (CONFIG_IS_ENABLED(PCI) && !(gd->flags & GD_FLG_DM_DEAD)) {
727 puts(SPL_TPL_PROMPT "Cannot initialize PCI\n");
728 /* Don't fail. We still can try other boot methods. */
733 /* Dump driver model states to aid analysis */
734 if (CONFIG_IS_ENABLED(DM_STATS)) {
741 memset(&spl_image, '\0', sizeof(spl_image));
742 if (IS_ENABLED(CONFIG_SPL_OS_BOOT))
743 spl_image.arg = (void *)SPL_PAYLOAD_ARGS_ADDR;
744 spl_image.boot_device = BOOT_DEVICE_NONE;
745 board_boot_order(spl_boot_list);
747 ret = boot_from_devices(&spl_image, spl_boot_list,
748 ARRAY_SIZE(spl_boot_list));
750 if (CONFIG_IS_ENABLED(SHOW_ERRORS))
751 printf(SPL_TPL_PROMPT "failed to boot from all boot devices (err=%d)\n",
754 puts(SPL_TPL_PROMPT "failed to boot from all boot devices\n");
758 spl_perform_fixups(&spl_image);
761 if (os == IH_OS_U_BOOT) {
762 debug("Jumping to %s...\n", spl_phase_name(spl_next_phase()));
763 } else if (CONFIG_IS_ENABLED(ATF) && os == IH_OS_ARM_TRUSTED_FIRMWARE) {
764 debug("Jumping to U-Boot via ARM Trusted Firmware\n");
765 spl_fixup_fdt(spl_image_fdt_addr(&spl_image));
766 jump_to_image = &spl_invoke_atf;
767 } else if (CONFIG_IS_ENABLED(OPTEE_IMAGE) && os == IH_OS_TEE) {
768 debug("Jumping to U-Boot via OP-TEE\n");
769 spl_board_prepare_for_optee(spl_image_fdt_addr(&spl_image));
770 jump_to_image = &jump_to_image_optee;
771 } else if (CONFIG_IS_ENABLED(OPENSBI) && os == IH_OS_OPENSBI) {
772 debug("Jumping to U-Boot via RISC-V OpenSBI\n");
773 jump_to_image = &spl_invoke_opensbi;
774 } else if (CONFIG_IS_ENABLED(OS_BOOT) && os == IH_OS_LINUX) {
775 debug("Jumping to Linux\n");
776 if (IS_ENABLED(CONFIG_SPL_OS_BOOT))
777 spl_fixup_fdt((void *)SPL_PAYLOAD_ARGS_ADDR);
778 spl_board_prepare_for_linux();
779 jump_to_image = &jump_to_image_linux;
781 debug("Unsupported OS image.. Jumping nevertheless..\n");
783 if (CONFIG_IS_ENABLED(SYS_MALLOC_F) &&
784 !IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIZE))
785 debug("SPL malloc() used 0x%lx bytes (%ld KB)\n",
786 gd_malloc_ptr(), gd_malloc_ptr() / 1024);
788 bootstage_mark_name(get_bootstage_id(false), "end phase");
789 ret = bootstage_stash_default();
791 debug("Failed to stash bootstage: err=%d\n", ret);
793 if (IS_ENABLED(CONFIG_SPL_VIDEO_REMOVE)) {
797 rc = uclass_find_device(UCLASS_VIDEO, 0, &dev);
799 rc = device_remove(dev, DM_REMOVE_NORMAL);
801 printf("Cannot remove video device '%s' (err=%d)\n",
805 if (CONFIG_IS_ENABLED(HANDOFF)) {
806 ret = write_spl_handoff();
808 printf(SPL_TPL_PROMPT
809 "SPL hand-off write failed (err=%d)\n", ret);
811 if (CONFIG_IS_ENABLED(BLOBLIST)) {
812 ret = bloblist_finish();
814 printf("Warning: Failed to finish bloblist (ret=%d)\n",
818 spl_board_prepare_for_boot();
819 jump_to_image(&spl_image);
823 * This requires UART clocks to be enabled. In order for this to work the
824 * caller must ensure that the gd pointer is valid.
826 void preloader_console_init(void)
828 #ifdef CONFIG_SPL_SERIAL
829 gd->baudrate = CONFIG_BAUDRATE;
831 serial_init(); /* serial communications setup */
833 gd->have_console = 1;
835 #if CONFIG_IS_ENABLED(BANNER_PRINT)
836 puts("\nU-Boot " SPL_TPL_NAME " " PLAIN_VERSION " (" U_BOOT_DATE " - "
837 U_BOOT_TIME " " U_BOOT_TZ ")\n");
839 #ifdef CONFIG_SPL_DISPLAY_PRINT
846 * This function is called before the stack is changed from initial stack to
847 * relocated stack. It tries to dump the stack size used
849 __weak void spl_relocate_stack_check(void)
851 #if CONFIG_IS_ENABLED(SYS_REPORT_STACK_F_USAGE)
852 ulong init_sp = gd->start_addr_sp;
853 ulong stack_bottom = init_sp - CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK);
854 u8 *ptr = (u8 *)stack_bottom;
857 for (i = 0; i < CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK); i++) {
858 if (*ptr != CONFIG_VAL(SYS_STACK_F_CHECK_BYTE))
862 printf("SPL initial stack usage: %lu bytes\n",
863 CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK) - i);
868 * spl_relocate_stack_gd() - Relocate stack ready for board_init_r() execution
870 * Sometimes board_init_f() runs with a stack in SRAM but we want to use SDRAM
871 * for the main board_init_r() execution. This is typically because we need
872 * more stack space for things like the MMC sub-system.
874 * This function calculates the stack position, copies the global_data into
875 * place, sets the new gd (except for ARM, for which setting GD within a C
876 * function may not always work) and returns the new stack position. The
877 * caller is responsible for setting up the sp register and, in the case
878 * of ARM, setting up gd.
880 * All of this is done using the same layout and alignments as done in
881 * board_init_f_init_reserve() / board_init_f_alloc_reserve().
883 * Return: new stack location, or 0 to use the same stack
885 ulong spl_relocate_stack_gd(void)
887 #ifdef CONFIG_SPL_STACK_R
889 ulong ptr = CONFIG_SPL_STACK_R_ADDR;
891 if (CONFIG_IS_ENABLED(SYS_REPORT_STACK_F_USAGE))
892 spl_relocate_stack_check();
894 #if defined(CONFIG_SPL_SYS_MALLOC_SIMPLE) && CONFIG_IS_ENABLED(SYS_MALLOC_F)
895 if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) {
896 debug("SPL malloc() before relocation used 0x%lx bytes (%ld KB)\n",
897 gd->malloc_ptr, gd->malloc_ptr / 1024);
898 ptr -= CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
899 gd->malloc_base = ptr;
900 gd->malloc_limit = CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
904 /* Get stack position: use 8-byte alignment for ABI compliance */
905 ptr = CONFIG_SPL_STACK_R_ADDR - roundup(sizeof(gd_t),16);
906 gd->start_addr_sp = ptr;
907 new_gd = (gd_t *)ptr;
908 memcpy(new_gd, (void *)gd, sizeof(gd_t));
909 #if CONFIG_IS_ENABLED(DM)
910 dm_fixup_for_gd_move(new_gd);
912 #if !defined(CONFIG_ARM) && !defined(CONFIG_RISCV)
921 #if defined(CONFIG_BOOTCOUNT_LIMIT) && \
922 ((!defined(CONFIG_TPL_BUILD) && !defined(CONFIG_SPL_BOOTCOUNT_LIMIT)) || \
923 (defined(CONFIG_TPL_BUILD) && !defined(CONFIG_TPL_BOOTCOUNT_LIMIT)))
924 void bootcount_store(ulong a)
928 ulong bootcount_load(void)