Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2010 |
| 4 | * Texas Instruments, <www.ti.com> |
| 5 | * |
| 6 | * Aneesh V <aneesh@ti.com> |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 7 | */ |
Philipp Tomsich | f1c6e19 | 2017-06-30 19:02:53 +0200 | [diff] [blame] | 8 | |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 9 | #include <common.h> |
Simon Glass | e945a72 | 2018-11-15 18:43:51 -0700 | [diff] [blame] | 10 | #include <bloblist.h> |
Simon Glass | 8bee2d2 | 2017-11-13 18:55:03 -0700 | [diff] [blame] | 11 | #include <binman_sym.h> |
Simon Glass | 52f2423 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 12 | #include <bootstage.h> |
Simon Glass | 1151651 | 2014-11-10 17:16:46 -0700 | [diff] [blame] | 13 | #include <dm.h> |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 14 | #include <handoff.h> |
Simon Glass | db41d65 | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 15 | #include <hang.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 16 | #include <init.h> |
Simon Glass | c30b7ad | 2019-11-14 12:57:41 -0700 | [diff] [blame] | 17 | #include <irq_func.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 18 | #include <log.h> |
Simon Glass | 891d9e8 | 2021-03-07 17:35:14 -0700 | [diff] [blame] | 19 | #include <mapmem.h> |
Simon Glass | b03e051 | 2019-11-14 12:57:24 -0700 | [diff] [blame] | 20 | #include <serial.h> |
Tom Rini | 47f7bca | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 21 | #include <spl.h> |
Sean Anderson | 7750741 | 2023-11-08 11:48:47 -0500 | [diff] [blame] | 22 | #include <spl_load.h> |
Tom Rini | 10f6e4d | 2022-05-27 12:48:32 -0400 | [diff] [blame] | 23 | #include <system-constants.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 24 | #include <asm/global_data.h> |
Eddie James | 1d99e67 | 2022-02-07 17:09:01 -0600 | [diff] [blame] | 25 | #include <asm-generic/gpio.h> |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 26 | #include <asm/u-boot.h> |
Simon Schwarz | bb085b8 | 2011-09-14 15:29:26 -0400 | [diff] [blame] | 27 | #include <nand.h> |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 28 | #include <fat.h> |
Simon Glass | 3db7110 | 2019-11-14 12:57:16 -0700 | [diff] [blame] | 29 | #include <u-boot/crc.h> |
Pali Rohár | 121a165 | 2021-08-02 15:18:38 +0200 | [diff] [blame] | 30 | #if CONFIG_IS_ENABLED(BANNER_PRINT) |
| 31 | #include <timestamp.h> |
| 32 | #endif |
Simon Glass | efb2172 | 2011-10-10 08:55:19 +0000 | [diff] [blame] | 33 | #include <version.h> |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 34 | #include <image.h> |
Aneesh V | 2d01dd9 | 2011-10-21 12:29:34 -0400 | [diff] [blame] | 35 | #include <malloc.h> |
Simon Glass | 31f9f0e | 2019-10-21 17:26:52 -0600 | [diff] [blame] | 36 | #include <mapmem.h> |
Simon Glass | 1151651 | 2014-11-10 17:16:46 -0700 | [diff] [blame] | 37 | #include <dm/root.h> |
Simon Glass | 4f6500a | 2022-05-08 04:39:27 -0600 | [diff] [blame] | 38 | #include <dm/util.h> |
Nikhil M Jain | 7a17e4c | 2023-04-10 14:19:13 +0530 | [diff] [blame] | 39 | #include <dm/device-internal.h> |
| 40 | #include <dm/uclass-internal.h> |
Andreas Müller | 761ca31 | 2012-01-04 15:26:24 +0000 | [diff] [blame] | 41 | #include <linux/compiler.h> |
B, Ravi | 6e7585b | 2017-04-18 17:27:27 +0530 | [diff] [blame] | 42 | #include <fdt_support.h> |
Lukasz Majewski | a8be249 | 2018-05-02 16:10:54 +0200 | [diff] [blame] | 43 | #include <bootcount.h> |
Stefan Roese | 0698528 | 2019-04-11 15:58:44 +0200 | [diff] [blame] | 44 | #include <wdt.h> |
Devarsh Thakkar | 1d3c266 | 2023-12-05 21:25:16 +0530 | [diff] [blame] | 45 | #include <video.h> |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 46 | |
| 47 | DECLARE_GLOBAL_DATA_PTR; |
Alper Nebi Yasak | 367ecbf | 2022-06-18 15:13:11 +0300 | [diff] [blame] | 48 | DECLARE_BINMAN_MAGIC_SYM; |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 49 | |
Tom Rini | 47f7bca | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 50 | u32 *boot_params_ptr = NULL; |
Simon Schwarz | 9ea5c6e | 2011-09-14 15:33:34 -0400 | [diff] [blame] | 51 | |
Alper Nebi Yasak | d8830cf | 2022-06-18 15:13:09 +0300 | [diff] [blame] | 52 | #if CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS) |
Simon Glass | 8bee2d2 | 2017-11-13 18:55:03 -0700 | [diff] [blame] | 53 | /* See spl.h for information about this */ |
Simon Glass | dbf6be9 | 2018-08-01 15:22:42 -0600 | [diff] [blame] | 54 | binman_sym_declare(ulong, u_boot_any, image_pos); |
Simon Glass | e82c624 | 2019-12-08 17:40:12 -0700 | [diff] [blame] | 55 | binman_sym_declare(ulong, u_boot_any, size); |
| 56 | |
| 57 | #ifdef CONFIG_TPL |
Simon Glass | 2b8d2cc | 2022-10-20 18:22:41 -0600 | [diff] [blame] | 58 | binman_sym_declare(ulong, u_boot_spl_any, image_pos); |
| 59 | binman_sym_declare(ulong, u_boot_spl_any, size); |
Simon Glass | e82c624 | 2019-12-08 17:40:12 -0700 | [diff] [blame] | 60 | #endif |
Simon Glass | 8bee2d2 | 2017-11-13 18:55:03 -0700 | [diff] [blame] | 61 | |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 62 | #ifdef CONFIG_VPL |
Simon Glass | 2b8d2cc | 2022-10-20 18:22:41 -0600 | [diff] [blame] | 63 | binman_sym_declare(ulong, u_boot_vpl_any, image_pos); |
| 64 | binman_sym_declare(ulong, u_boot_vpl_any, size); |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 65 | #endif |
| 66 | |
Alper Nebi Yasak | d8830cf | 2022-06-18 15:13:09 +0300 | [diff] [blame] | 67 | #endif /* BINMAN_UBOOT_SYMBOLS */ |
| 68 | |
Alexandru Gagniuc | 58b504e | 2021-04-08 11:56:11 -0500 | [diff] [blame] | 69 | /* Define board data structure */ |
| 70 | static struct bd_info bdata __attribute__ ((section(".data"))); |
| 71 | |
Marek Vasut | b55881d | 2021-10-23 03:06:03 +0200 | [diff] [blame] | 72 | #if CONFIG_IS_ENABLED(SHOW_BOOT_PROGRESS) |
Simon Schwarz | 379c19a | 2012-03-15 04:01:38 +0000 | [diff] [blame] | 73 | /* |
Heiko Schocher | 496c548 | 2016-06-07 08:31:20 +0200 | [diff] [blame] | 74 | * Board-specific Platform code can reimplement show_boot_progress () if needed |
| 75 | */ |
| 76 | __weak void show_boot_progress(int val) {} |
Tom Rini | cb80ff2 | 2021-05-03 16:48:58 -0400 | [diff] [blame] | 77 | #endif |
Heiko Schocher | 496c548 | 2016-06-07 08:31:20 +0200 | [diff] [blame] | 78 | |
Heiko Stuebner | a343b4f | 2020-05-25 19:57:25 +0200 | [diff] [blame] | 79 | #if defined(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF) || \ |
| 80 | defined(CONFIG_SPL_ATF) |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 81 | /* weak, default platform-specific function to initialize dram banks */ |
| 82 | __weak int dram_init_banksize(void) |
| 83 | { |
| 84 | return 0; |
| 85 | } |
| 86 | #endif |
| 87 | |
Heiko Schocher | 496c548 | 2016-06-07 08:31:20 +0200 | [diff] [blame] | 88 | /* |
Simon Schwarz | 379c19a | 2012-03-15 04:01:38 +0000 | [diff] [blame] | 89 | * Default function to determine if u-boot or the OS should |
| 90 | * be started. This implementation always returns 1. |
| 91 | * |
| 92 | * Please implement your own board specific funcion to do this. |
| 93 | * |
| 94 | * RETURN |
| 95 | * 0 to not start u-boot |
| 96 | * positive if u-boot should start |
| 97 | */ |
Tom Rini | 7115007 | 2021-10-30 23:03:48 -0400 | [diff] [blame] | 98 | #if CONFIG_IS_ENABLED(OS_BOOT) |
Simon Schwarz | 379c19a | 2012-03-15 04:01:38 +0000 | [diff] [blame] | 99 | __weak int spl_start_uboot(void) |
| 100 | { |
Simon Glass | d633006 | 2018-11-15 18:43:56 -0700 | [diff] [blame] | 101 | puts(SPL_TPL_PROMPT |
| 102 | "Please implement spl_start_uboot() for your board\n"); |
| 103 | puts(SPL_TPL_PROMPT "Direct Linux boot not active!\n"); |
Simon Schwarz | 379c19a | 2012-03-15 04:01:38 +0000 | [diff] [blame] | 104 | return 1; |
| 105 | } |
Ladislav Michl | 431889d | 2016-07-12 20:28:14 +0200 | [diff] [blame] | 106 | |
| 107 | /* |
| 108 | * Weak default function for arch specific zImage check. Return zero |
| 109 | * and fill start and end address if image is recognized. |
| 110 | */ |
| 111 | int __weak bootz_setup(ulong image, ulong *start, ulong *end) |
| 112 | { |
| 113 | return 1; |
| 114 | } |
Nathan Barrett-Morrison | 7a0d880 | 2022-02-02 15:05:18 -0500 | [diff] [blame] | 115 | |
| 116 | int __weak booti_setup(ulong image, ulong *relocated_addr, ulong *size, bool force_reloc) |
| 117 | { |
| 118 | return 1; |
| 119 | } |
Simon Schwarz | 379c19a | 2012-03-15 04:01:38 +0000 | [diff] [blame] | 120 | #endif |
| 121 | |
Philipp Tomsich | de5dd4c | 2018-05-24 17:15:50 +0200 | [diff] [blame] | 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) |
| 124 | { |
| 125 | } |
| 126 | |
Heiko Stuebner | a343b4f | 2020-05-25 19:57:25 +0200 | [diff] [blame] | 127 | void spl_fixup_fdt(void *fdt_blob) |
B, Ravi | 6e7585b | 2017-04-18 17:27:27 +0530 | [diff] [blame] | 128 | { |
Heiko Stuebner | a343b4f | 2020-05-25 19:57:25 +0200 | [diff] [blame] | 129 | #if defined(CONFIG_SPL_OF_LIBFDT) |
B, Ravi | 6e7585b | 2017-04-18 17:27:27 +0530 | [diff] [blame] | 130 | int err; |
| 131 | |
Heiko Stuebner | a343b4f | 2020-05-25 19:57:25 +0200 | [diff] [blame] | 132 | if (!fdt_blob) |
| 133 | return; |
| 134 | |
B, Ravi | 6e7585b | 2017-04-18 17:27:27 +0530 | [diff] [blame] | 135 | err = fdt_check_header(fdt_blob); |
| 136 | if (err < 0) { |
| 137 | printf("fdt_root: %s\n", fdt_strerror(err)); |
| 138 | return; |
| 139 | } |
| 140 | |
| 141 | /* fixup the memory dt node */ |
| 142 | err = fdt_shrink_to_minimum(fdt_blob, 0); |
| 143 | if (err == 0) { |
Simon Glass | d633006 | 2018-11-15 18:43:56 -0700 | [diff] [blame] | 144 | printf(SPL_TPL_PROMPT "fdt_shrink_to_minimum err - %d\n", err); |
B, Ravi | 6e7585b | 2017-04-18 17:27:27 +0530 | [diff] [blame] | 145 | return; |
| 146 | } |
| 147 | |
| 148 | err = arch_fixup_fdt(fdt_blob); |
| 149 | if (err) { |
Simon Glass | d633006 | 2018-11-15 18:43:56 -0700 | [diff] [blame] | 150 | printf(SPL_TPL_PROMPT "arch_fixup_fdt err - %d\n", err); |
B, Ravi | 6e7585b | 2017-04-18 17:27:27 +0530 | [diff] [blame] | 151 | return; |
| 152 | } |
| 153 | #endif |
| 154 | } |
| 155 | |
Devarsh Thakkar | 1d3c266 | 2023-12-05 21:25:16 +0530 | [diff] [blame] | 156 | int spl_reserve_video_from_ram_top(void) |
| 157 | { |
| 158 | if (CONFIG_IS_ENABLED(VIDEO)) { |
| 159 | ulong addr; |
| 160 | int ret; |
| 161 | |
| 162 | addr = gd->ram_top; |
| 163 | ret = video_reserve(&addr); |
| 164 | if (ret) |
| 165 | return ret; |
| 166 | debug("Reserving %luk for video at: %08lx\n", |
| 167 | ((unsigned long)gd->relocaddr - addr) >> 10, addr); |
| 168 | gd->relocaddr = addr; |
| 169 | } |
| 170 | |
| 171 | return 0; |
| 172 | } |
| 173 | |
Simon Glass | e82c624 | 2019-12-08 17:40:12 -0700 | [diff] [blame] | 174 | ulong spl_get_image_pos(void) |
| 175 | { |
Alper Nebi Yasak | d8830cf | 2022-06-18 15:13:09 +0300 | [diff] [blame] | 176 | if (!CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS)) |
Alper Nebi Yasak | d7f0717 | 2022-06-18 15:13:06 +0300 | [diff] [blame] | 177 | return BINMAN_SYM_MISSING; |
| 178 | |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 179 | #ifdef CONFIG_VPL |
| 180 | if (spl_next_phase() == PHASE_VPL) |
Simon Glass | 2b8d2cc | 2022-10-20 18:22:41 -0600 | [diff] [blame] | 181 | return binman_sym(ulong, u_boot_vpl_any, image_pos); |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 182 | #endif |
| 183 | return spl_next_phase() == PHASE_SPL ? |
Simon Glass | 2b8d2cc | 2022-10-20 18:22:41 -0600 | [diff] [blame] | 184 | binman_sym(ulong, u_boot_spl_any, image_pos) : |
Simon Glass | e82c624 | 2019-12-08 17:40:12 -0700 | [diff] [blame] | 185 | binman_sym(ulong, u_boot_any, image_pos); |
| 186 | } |
| 187 | |
| 188 | ulong spl_get_image_size(void) |
| 189 | { |
Alper Nebi Yasak | d8830cf | 2022-06-18 15:13:09 +0300 | [diff] [blame] | 190 | if (!CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS)) |
Alper Nebi Yasak | d7f0717 | 2022-06-18 15:13:06 +0300 | [diff] [blame] | 191 | return BINMAN_SYM_MISSING; |
| 192 | |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 193 | #ifdef CONFIG_VPL |
| 194 | if (spl_next_phase() == PHASE_VPL) |
Simon Glass | 2b8d2cc | 2022-10-20 18:22:41 -0600 | [diff] [blame] | 195 | return binman_sym(ulong, u_boot_vpl_any, size); |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 196 | #endif |
| 197 | return spl_next_phase() == PHASE_SPL ? |
Simon Glass | 2b8d2cc | 2022-10-20 18:22:41 -0600 | [diff] [blame] | 198 | binman_sym(ulong, u_boot_spl_any, size) : |
Simon Glass | e82c624 | 2019-12-08 17:40:12 -0700 | [diff] [blame] | 199 | binman_sym(ulong, u_boot_any, size); |
| 200 | } |
| 201 | |
Simon Glass | 86c372a | 2021-01-24 10:06:03 -0700 | [diff] [blame] | 202 | ulong spl_get_image_text_base(void) |
| 203 | { |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 204 | #ifdef CONFIG_VPL |
| 205 | if (spl_next_phase() == PHASE_VPL) |
| 206 | return CONFIG_VPL_TEXT_BASE; |
| 207 | #endif |
| 208 | return spl_next_phase() == PHASE_SPL ? CONFIG_SPL_TEXT_BASE : |
Simon Glass | 9846390 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 209 | CONFIG_TEXT_BASE; |
Simon Glass | 86c372a | 2021-01-24 10:06:03 -0700 | [diff] [blame] | 210 | } |
| 211 | |
Stefan Roese | ea8256f | 2012-08-23 08:34:21 +0200 | [diff] [blame] | 212 | /* |
| 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. |
| 216 | */ |
| 217 | __weak void spl_board_prepare_for_linux(void) |
| 218 | { |
| 219 | /* Nothing to do! */ |
| 220 | } |
| 221 | |
Alexandru Gagniuc | a25d6b6 | 2021-07-15 14:19:24 -0500 | [diff] [blame] | 222 | __weak void spl_board_prepare_for_optee(void *fdt) |
| 223 | { |
| 224 | } |
| 225 | |
Heiko Thiery | c592292 | 2022-01-17 16:25:41 +0100 | [diff] [blame] | 226 | __weak const char *spl_board_loader_name(u32 boot_device) |
| 227 | { |
| 228 | return NULL; |
| 229 | } |
| 230 | |
Ricardo Salveti | 949eb22 | 2021-10-20 15:12:06 +0300 | [diff] [blame] | 231 | #if CONFIG_IS_ENABLED(OPTEE_IMAGE) |
| 232 | __weak void __noreturn jump_to_image_optee(struct spl_image_info *spl_image) |
| 233 | { |
| 234 | spl_optee_entry(NULL, NULL, spl_image->fdt_addr, |
| 235 | (void *)spl_image->entry_point); |
| 236 | } |
| 237 | #endif |
| 238 | |
Michal Simek | 3a3b914 | 2016-05-10 07:54:20 +0200 | [diff] [blame] | 239 | __weak void spl_board_prepare_for_boot(void) |
| 240 | { |
| 241 | /* Nothing to do! */ |
| 242 | } |
| 243 | |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 244 | __weak struct legacy_img_hdr *spl_get_load_buffer(ssize_t offset, size_t size) |
Marek Vasut | 04ce542 | 2018-08-14 11:27:02 +0200 | [diff] [blame] | 245 | { |
Simon Glass | 9846390 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 246 | return map_sysmem(CONFIG_TEXT_BASE + offset, 0); |
Marek Vasut | 04ce542 | 2018-08-14 11:27:02 +0200 | [diff] [blame] | 247 | } |
| 248 | |
Tom Rini | 08574ed | 2022-10-28 20:27:07 -0400 | [diff] [blame] | 249 | #ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT |
Simon Glass | d95ceb9 | 2016-09-24 18:19:52 -0600 | [diff] [blame] | 250 | void spl_set_header_raw_uboot(struct spl_image_info *spl_image) |
Heiko Schocher | 0c3117b | 2014-10-31 08:31:00 +0100 | [diff] [blame] | 251 | { |
Alper Nebi Yasak | d7f0717 | 2022-06-18 15:13:06 +0300 | [diff] [blame] | 252 | ulong u_boot_pos = spl_get_image_pos(); |
Simon Glass | 8bee2d2 | 2017-11-13 18:55:03 -0700 | [diff] [blame] | 253 | |
Tom Rini | 08574ed | 2022-10-28 20:27:07 -0400 | [diff] [blame] | 254 | #if CONFIG_SYS_MONITOR_LEN != 0 |
Simon Glass | d95ceb9 | 2016-09-24 18:19:52 -0600 | [diff] [blame] | 255 | spl_image->size = CONFIG_SYS_MONITOR_LEN; |
Tom Rini | 08574ed | 2022-10-28 20:27:07 -0400 | [diff] [blame] | 256 | #else |
| 257 | /* Unknown U-Boot size, let's assume it will not be more than 200 KB */ |
| 258 | spl_image->size = 200 * 1024; |
| 259 | #endif |
Miquel Raynal | 55fe0e2 | 2018-02-28 20:51:43 +0100 | [diff] [blame] | 260 | |
| 261 | /* |
| 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 |
| 264 | * region. |
| 265 | */ |
| 266 | if (u_boot_pos && u_boot_pos != BINMAN_SYM_MISSING) { |
| 267 | /* Binman does not support separated entry addresses */ |
Simon Glass | 8bee2d2 | 2017-11-13 18:55:03 -0700 | [diff] [blame] | 268 | spl_image->entry_point = u_boot_pos; |
| 269 | spl_image->load_addr = u_boot_pos; |
| 270 | } else { |
Jesse Taube | 6ab77bb | 2023-08-24 21:59:48 -0400 | [diff] [blame] | 271 | spl_image->entry_point = CONFIG_SYS_UBOOT_START; |
Simon Glass | 9846390 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 272 | spl_image->load_addr = CONFIG_TEXT_BASE; |
Simon Glass | 8bee2d2 | 2017-11-13 18:55:03 -0700 | [diff] [blame] | 273 | } |
Simon Glass | d95ceb9 | 2016-09-24 18:19:52 -0600 | [diff] [blame] | 274 | spl_image->os = IH_OS_U_BOOT; |
| 275 | spl_image->name = "U-Boot"; |
Heiko Schocher | 0c3117b | 2014-10-31 08:31:00 +0100 | [diff] [blame] | 276 | } |
Tom Rini | 08574ed | 2022-10-28 20:27:07 -0400 | [diff] [blame] | 277 | #endif |
Heiko Schocher | 0c3117b | 2014-10-31 08:31:00 +0100 | [diff] [blame] | 278 | |
Pali Rohár | 9baab60 | 2021-07-23 11:14:28 +0200 | [diff] [blame] | 279 | __weak int spl_parse_board_header(struct spl_image_info *spl_image, |
Pali Rohár | 2e0429b | 2022-01-14 14:31:38 +0100 | [diff] [blame] | 280 | const struct spl_boot_device *bootdev, |
Pali Rohár | 9baab60 | 2021-07-23 11:14:28 +0200 | [diff] [blame] | 281 | const void *image_header, size_t size) |
| 282 | { |
| 283 | return -EINVAL; |
| 284 | } |
| 285 | |
Stefan Roese | c110817 | 2020-04-21 09:28:41 +0200 | [diff] [blame] | 286 | __weak int spl_parse_legacy_header(struct spl_image_info *spl_image, |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 287 | const struct legacy_img_hdr *header) |
Stefan Roese | c110817 | 2020-04-21 09:28:41 +0200 | [diff] [blame] | 288 | { |
| 289 | /* LEGACY image not supported */ |
| 290 | debug("Legacy boot image support not enabled, proceeding to other boot methods\n"); |
| 291 | return -EINVAL; |
| 292 | } |
| 293 | |
Simon Glass | 71316c1 | 2016-09-24 18:19:53 -0600 | [diff] [blame] | 294 | int spl_parse_image_header(struct spl_image_info *spl_image, |
Pali Rohár | 2e0429b | 2022-01-14 14:31:38 +0100 | [diff] [blame] | 295 | const struct spl_boot_device *bootdev, |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 296 | const struct legacy_img_hdr *header) |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 297 | { |
Simon Glass | 035ab46 | 2023-09-26 08:14:34 -0600 | [diff] [blame] | 298 | int ret; |
Marek Vasut | 8a9dc16 | 2018-05-13 00:23:17 +0200 | [diff] [blame] | 299 | |
Simon Glass | 035ab46 | 2023-09-26 08:14:34 -0600 | [diff] [blame] | 300 | if (CONFIG_IS_ENABLED(LOAD_FIT_FULL)) { |
| 301 | ret = spl_load_fit_image(spl_image, header); |
| 302 | |
| 303 | if (!ret) |
| 304 | return ret; |
| 305 | } |
Stefan Roese | 77552b0 | 2012-08-27 12:50:57 +0200 | [diff] [blame] | 306 | if (image_get_magic(header) == IH_MAGIC) { |
Stefan Roese | c110817 | 2020-04-21 09:28:41 +0200 | [diff] [blame] | 307 | int ret; |
Andrew F. Davis | 722a6b1 | 2017-02-16 11:18:39 -0600 | [diff] [blame] | 308 | |
Stefan Roese | c110817 | 2020-04-21 09:28:41 +0200 | [diff] [blame] | 309 | ret = spl_parse_legacy_header(spl_image, header); |
| 310 | if (ret) |
| 311 | return ret; |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 312 | } else { |
Albert ARIBAUD \(3ADEV\) | 8c80eb3 | 2015-03-31 11:40:50 +0200 | [diff] [blame] | 313 | #ifdef CONFIG_SPL_PANIC_ON_RAW_IMAGE |
| 314 | /* |
| 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. |
| 321 | */ |
| 322 | panic("** no mkimage signature but raw image not supported"); |
Paul Kocialkowski | 85a3772 | 2016-08-24 20:04:42 +0200 | [diff] [blame] | 323 | #endif |
| 324 | |
Tom Rini | 7115007 | 2021-10-30 23:03:48 -0400 | [diff] [blame] | 325 | #if CONFIG_IS_ENABLED(OS_BOOT) |
Nathan Barrett-Morrison | 7a0d880 | 2022-02-02 15:05:18 -0500 | [diff] [blame] | 326 | #if defined(CMD_BOOTI) |
| 327 | ulong start, size; |
| 328 | |
| 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; |
| 335 | debug(SPL_TPL_PROMPT |
| 336 | "payload Image, load addr: 0x%lx size: %d\n", |
| 337 | spl_image->load_addr, spl_image->size); |
| 338 | return 0; |
| 339 | } |
| 340 | #elif defined(CMD_BOOTZ) |
Ladislav Michl | 431889d | 2016-07-12 20:28:14 +0200 | [diff] [blame] | 341 | ulong start, end; |
| 342 | |
| 343 | if (!bootz_setup((ulong)header, &start, &end)) { |
Simon Glass | 71316c1 | 2016-09-24 18:19:53 -0600 | [diff] [blame] | 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; |
Simon Glass | d633006 | 2018-11-15 18:43:56 -0700 | [diff] [blame] | 349 | debug(SPL_TPL_PROMPT |
| 350 | "payload zImage, load addr: 0x%lx size: %d\n", |
Simon Glass | 71316c1 | 2016-09-24 18:19:53 -0600 | [diff] [blame] | 351 | spl_image->load_addr, spl_image->size); |
Ladislav Michl | 431889d | 2016-07-12 20:28:14 +0200 | [diff] [blame] | 352 | return 0; |
| 353 | } |
| 354 | #endif |
Nathan Barrett-Morrison | 7a0d880 | 2022-02-02 15:05:18 -0500 | [diff] [blame] | 355 | #endif |
Paul Kocialkowski | 85a3772 | 2016-08-24 20:04:42 +0200 | [diff] [blame] | 356 | |
Pali Rohár | 2e0429b | 2022-01-14 14:31:38 +0100 | [diff] [blame] | 357 | if (!spl_parse_board_header(spl_image, bootdev, (const void *)header, sizeof(*header))) |
Pali Rohár | 9baab60 | 2021-07-23 11:14:28 +0200 | [diff] [blame] | 358 | return 0; |
| 359 | |
Andrew F. Davis | 24eb39b | 2017-02-16 11:18:38 -0600 | [diff] [blame] | 360 | #ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 361 | /* Signature not found - assume u-boot.bin */ |
Tom Rini | 026b2fe | 2012-08-14 12:06:43 -0700 | [diff] [blame] | 362 | debug("mkimage signature not found - ih_magic = %x\n", |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 363 | header->ih_magic); |
Simon Glass | 71316c1 | 2016-09-24 18:19:53 -0600 | [diff] [blame] | 364 | spl_set_header_raw_uboot(spl_image); |
Andrew F. Davis | 24eb39b | 2017-02-16 11:18:38 -0600 | [diff] [blame] | 365 | #else |
| 366 | /* RAW image not supported, proceed to other boot methods. */ |
Anatolij Gustschin | 2d2531b | 2017-08-01 16:17:12 +0200 | [diff] [blame] | 367 | debug("Raw boot image support not enabled, proceeding to other boot methods\n"); |
Andrew F. Davis | 24eb39b | 2017-02-16 11:18:38 -0600 | [diff] [blame] | 368 | return -EINVAL; |
Albert ARIBAUD \(3ADEV\) | 8c80eb3 | 2015-03-31 11:40:50 +0200 | [diff] [blame] | 369 | #endif |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 370 | } |
Andrew F. Davis | 24eb39b | 2017-02-16 11:18:38 -0600 | [diff] [blame] | 371 | |
Marek Vasut | 7e0f226 | 2016-04-29 00:44:54 +0200 | [diff] [blame] | 372 | return 0; |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 373 | } |
| 374 | |
Sean Anderson | 7750741 | 2023-11-08 11:48:47 -0500 | [diff] [blame] | 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) |
| 379 | { |
| 380 | return _spl_load(spl_image, bootdev, info, size, offset); |
| 381 | } |
| 382 | #endif |
| 383 | |
Allen Martin | a759f1e | 2012-10-19 21:08:22 +0000 | [diff] [blame] | 384 | __weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image) |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 385 | { |
SRICHARAN R | 4a0eb75 | 2013-04-24 00:41:24 +0000 | [diff] [blame] | 386 | typedef void __noreturn (*image_entry_noargs_t)(void); |
| 387 | |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 388 | image_entry_noargs_t image_entry = |
Andre Przywara | 11e1479 | 2017-01-02 11:48:31 +0000 | [diff] [blame] | 389 | (image_entry_noargs_t)spl_image->entry_point; |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 390 | |
Simon Goldschmidt | 30c0740 | 2018-11-02 21:49:52 +0100 | [diff] [blame] | 391 | debug("image entry point: 0x%lx\n", spl_image->entry_point); |
SRICHARAN R | 4a0eb75 | 2013-04-24 00:41:24 +0000 | [diff] [blame] | 392 | image_entry(); |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 393 | } |
| 394 | |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 395 | #if CONFIG_IS_ENABLED(HANDOFF) |
| 396 | /** |
| 397 | * Set up the SPL hand-off information |
| 398 | * |
| 399 | * This is initially empty (zero) but can be written by |
| 400 | */ |
| 401 | static int setup_spl_handoff(void) |
| 402 | { |
| 403 | struct spl_handoff *ho; |
| 404 | |
Simon Glass | 7f3b79a | 2022-01-12 19:26:17 -0700 | [diff] [blame] | 405 | ho = bloblist_ensure(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(struct spl_handoff)); |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 406 | if (!ho) |
| 407 | return -ENOENT; |
| 408 | |
| 409 | return 0; |
| 410 | } |
| 411 | |
Simon Glass | 366291a | 2019-09-25 08:11:18 -0600 | [diff] [blame] | 412 | __weak int handoff_arch_save(struct spl_handoff *ho) |
| 413 | { |
| 414 | return 0; |
| 415 | } |
| 416 | |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 417 | static int write_spl_handoff(void) |
| 418 | { |
| 419 | struct spl_handoff *ho; |
Simon Glass | 366291a | 2019-09-25 08:11:18 -0600 | [diff] [blame] | 420 | int ret; |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 421 | |
Simon Glass | 7f3b79a | 2022-01-12 19:26:17 -0700 | [diff] [blame] | 422 | ho = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(struct spl_handoff)); |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 423 | if (!ho) |
| 424 | return -ENOENT; |
| 425 | handoff_save_dram(ho); |
Simon Glass | 366291a | 2019-09-25 08:11:18 -0600 | [diff] [blame] | 426 | ret = handoff_arch_save(ho); |
| 427 | if (ret) |
| 428 | return ret; |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 429 | debug(SPL_TPL_PROMPT "Wrote SPL handoff\n"); |
| 430 | |
| 431 | return 0; |
| 432 | } |
| 433 | #else |
| 434 | static inline int setup_spl_handoff(void) { return 0; } |
| 435 | static inline int write_spl_handoff(void) { return 0; } |
| 436 | |
| 437 | #endif /* HANDOFF */ |
| 438 | |
Simon Glass | 05e3a0d | 2021-03-15 18:11:15 +1300 | [diff] [blame] | 439 | /** |
| 440 | * get_bootstage_id() - Get the bootstage ID to emit |
| 441 | * |
| 442 | * @start: true if this is for starting SPL, false for ending it |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 443 | * Return: bootstage ID to use |
Simon Glass | 05e3a0d | 2021-03-15 18:11:15 +1300 | [diff] [blame] | 444 | */ |
| 445 | static enum bootstage_id get_bootstage_id(bool start) |
| 446 | { |
| 447 | enum u_boot_phase phase = spl_phase(); |
| 448 | |
| 449 | if (IS_ENABLED(CONFIG_TPL_BUILD) && phase == PHASE_TPL) |
| 450 | return start ? BOOTSTAGE_ID_START_TPL : BOOTSTAGE_ID_END_TPL; |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 451 | else if (IS_ENABLED(CONFIG_VPL_BUILD) && phase == PHASE_VPL) |
| 452 | return start ? BOOTSTAGE_ID_START_VPL : BOOTSTAGE_ID_END_VPL; |
Simon Glass | 05e3a0d | 2021-03-15 18:11:15 +1300 | [diff] [blame] | 453 | else |
| 454 | return start ? BOOTSTAGE_ID_START_SPL : BOOTSTAGE_ID_END_SPL; |
| 455 | } |
| 456 | |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 457 | static int spl_common_init(bool setup_malloc) |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 458 | { |
Simon Glass | f3d46bd | 2015-02-27 22:06:42 -0700 | [diff] [blame] | 459 | int ret; |
| 460 | |
Simon Glass | 3d6d507 | 2023-09-26 08:14:27 -0600 | [diff] [blame] | 461 | #if CONFIG_IS_ENABLED(SYS_MALLOC_F) |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 462 | if (setup_malloc) { |
Tom Rini | dd5b58c | 2022-12-04 10:04:49 -0500 | [diff] [blame] | 463 | #ifdef CFG_MALLOC_F_ADDR |
| 464 | gd->malloc_base = CFG_MALLOC_F_ADDR; |
Marek Vasut | 94b9e22 | 2016-05-25 02:14:56 +0200 | [diff] [blame] | 465 | #endif |
Andy Yan | f1896c4 | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 466 | gd->malloc_limit = CONFIG_VAL(SYS_MALLOC_F_LEN); |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 467 | gd->malloc_ptr = 0; |
| 468 | } |
Tom Rini | 24dafad | 2012-08-13 14:13:07 -0700 | [diff] [blame] | 469 | #endif |
Simon Glass | 31f9f0e | 2019-10-21 17:26:52 -0600 | [diff] [blame] | 470 | ret = bootstage_init(u_boot_first_phase()); |
Simon Glass | 824bb1b | 2017-05-22 05:05:35 -0600 | [diff] [blame] | 471 | if (ret) { |
| 472 | debug("%s: Failed to set up bootstage: ret=%d\n", __func__, |
| 473 | ret); |
| 474 | return ret; |
| 475 | } |
Simon Glass | 31f9f0e | 2019-10-21 17:26:52 -0600 | [diff] [blame] | 476 | if (!u_boot_first_phase()) { |
Simon Glass | 17ba501 | 2023-09-26 08:14:32 -0600 | [diff] [blame] | 477 | ret = bootstage_unstash_default(); |
Simon Glass | 31f9f0e | 2019-10-21 17:26:52 -0600 | [diff] [blame] | 478 | if (ret) |
Simon Glass | 17ba501 | 2023-09-26 08:14:32 -0600 | [diff] [blame] | 479 | log_debug("Failed to unstash bootstage: ret=%d\n", ret); |
Simon Glass | 31f9f0e | 2019-10-21 17:26:52 -0600 | [diff] [blame] | 480 | } |
Simon Glass | 05e3a0d | 2021-03-15 18:11:15 +1300 | [diff] [blame] | 481 | bootstage_mark_name(get_bootstage_id(true), |
| 482 | spl_phase_name(spl_phase())); |
Simon Glass | 4d8d305 | 2018-11-15 18:43:49 -0700 | [diff] [blame] | 483 | #if CONFIG_IS_ENABLED(LOG) |
| 484 | ret = log_init(); |
| 485 | if (ret) { |
| 486 | debug("%s: Failed to set up logging\n", __func__); |
| 487 | return ret; |
| 488 | } |
| 489 | #endif |
Simon Glass | 414cc15 | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 490 | if (CONFIG_IS_ENABLED(OF_REAL)) { |
Simon Glass | f3d46bd | 2015-02-27 22:06:42 -0700 | [diff] [blame] | 491 | ret = fdtdec_setup(); |
| 492 | if (ret) { |
| 493 | debug("fdtdec_setup() returned error %d\n", ret); |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 494 | return ret; |
Simon Glass | f3d46bd | 2015-02-27 22:06:42 -0700 | [diff] [blame] | 495 | } |
| 496 | } |
Philipp Tomsich | f1c6e19 | 2017-06-30 19:02:53 +0200 | [diff] [blame] | 497 | if (CONFIG_IS_ENABLED(DM)) { |
Simon Glass | b67eefd | 2020-05-10 11:39:59 -0600 | [diff] [blame] | 498 | bootstage_start(BOOTSTAGE_ID_ACCUM_DM_SPL, |
Simon Glass | 5256bee | 2019-10-21 17:26:51 -0600 | [diff] [blame] | 499 | spl_phase() == PHASE_TPL ? "dm tpl" : "dm_spl"); |
Tom Rini | 7f73ca4 | 2017-01-14 12:20:23 -0500 | [diff] [blame] | 500 | /* With CONFIG_SPL_OF_PLATDATA, bring in all devices */ |
Simon Glass | 7d23b9c | 2016-07-04 11:58:14 -0600 | [diff] [blame] | 501 | ret = dm_init_and_scan(!CONFIG_IS_ENABLED(OF_PLATDATA)); |
Simon Glass | b67eefd | 2020-05-10 11:39:59 -0600 | [diff] [blame] | 502 | bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_SPL); |
Simon Glass | f3d46bd | 2015-02-27 22:06:42 -0700 | [diff] [blame] | 503 | if (ret) { |
| 504 | debug("dm_init_and_scan() returned error %d\n", ret); |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 505 | return ret; |
Simon Glass | f3d46bd | 2015-02-27 22:06:42 -0700 | [diff] [blame] | 506 | } |
| 507 | } |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 508 | |
| 509 | return 0; |
| 510 | } |
| 511 | |
Alexandru Gagniuc | 58b504e | 2021-04-08 11:56:11 -0500 | [diff] [blame] | 512 | void spl_set_bd(void) |
York Sun | d1fc0a3 | 2017-09-28 08:42:10 -0700 | [diff] [blame] | 513 | { |
Simon Glass | c21f407 | 2018-11-15 18:43:58 -0700 | [diff] [blame] | 514 | /* |
| 515 | * NOTE: On some platforms (e.g. x86) bdata may be in flash and not |
| 516 | * writeable. |
| 517 | */ |
Alexandru Gagniuc | 58b504e | 2021-04-08 11:56:11 -0500 | [diff] [blame] | 518 | if (!gd->bd) |
| 519 | gd->bd = &bdata; |
York Sun | d1fc0a3 | 2017-09-28 08:42:10 -0700 | [diff] [blame] | 520 | } |
| 521 | |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 522 | int spl_early_init(void) |
| 523 | { |
| 524 | int ret; |
| 525 | |
Simon Goldschmidt | 94cb986 | 2018-08-13 11:24:05 +0200 | [diff] [blame] | 526 | debug("%s\n", __func__); |
| 527 | |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 528 | ret = spl_common_init(true); |
| 529 | if (ret) |
| 530 | return ret; |
| 531 | gd->flags |= GD_FLG_SPL_EARLY_INIT; |
| 532 | |
| 533 | return 0; |
| 534 | } |
| 535 | |
| 536 | int spl_init(void) |
| 537 | { |
| 538 | int ret; |
Tom Rini | cf334ed | 2017-03-20 14:19:27 -0400 | [diff] [blame] | 539 | bool setup_malloc = !(IS_ENABLED(CONFIG_SPL_STACK_R) && |
| 540 | IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIMPLE)); |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 541 | |
Simon Goldschmidt | 94cb986 | 2018-08-13 11:24:05 +0200 | [diff] [blame] | 542 | debug("%s\n", __func__); |
| 543 | |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 544 | if (!(gd->flags & GD_FLG_SPL_EARLY_INIT)) { |
Tom Rini | cf334ed | 2017-03-20 14:19:27 -0400 | [diff] [blame] | 545 | ret = spl_common_init(setup_malloc); |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 546 | if (ret) |
| 547 | return ret; |
| 548 | } |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 549 | gd->flags |= GD_FLG_SPL_INIT; |
Aneesh V | 2d01dd9 | 2011-10-21 12:29:34 -0400 | [diff] [blame] | 550 | |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 551 | return 0; |
| 552 | } |
| 553 | |
Nikita Kiryanov | f101e4b | 2015-11-08 17:11:51 +0200 | [diff] [blame] | 554 | #ifndef BOOT_DEVICE_NONE |
| 555 | #define BOOT_DEVICE_NONE 0xdeadbeef |
| 556 | #endif |
| 557 | |
Nikita Kiryanov | f101e4b | 2015-11-08 17:11:51 +0200 | [diff] [blame] | 558 | __weak void board_boot_order(u32 *spl_boot_list) |
| 559 | { |
| 560 | spl_boot_list[0] = spl_boot_device(); |
| 561 | } |
| 562 | |
Pali Rohár | c10939d | 2022-01-14 14:31:40 +0100 | [diff] [blame] | 563 | __weak int spl_check_board_image(struct spl_image_info *spl_image, |
| 564 | const struct spl_boot_device *bootdev) |
| 565 | { |
| 566 | return 0; |
| 567 | } |
| 568 | |
Simon Glass | 29d357d | 2016-11-30 15:30:52 -0700 | [diff] [blame] | 569 | static int spl_load_image(struct spl_image_info *spl_image, |
| 570 | struct spl_image_loader *loader) |
Nikita Kiryanov | 5211b87 | 2015-11-08 17:11:50 +0200 | [diff] [blame] | 571 | { |
Simon Goldschmidt | dae5c2d | 2019-02-10 21:34:37 +0100 | [diff] [blame] | 572 | int ret; |
Simon Glass | ecdfd69 | 2016-09-24 18:19:57 -0600 | [diff] [blame] | 573 | struct spl_boot_device bootdev; |
| 574 | |
Simon Glass | 29d357d | 2016-11-30 15:30:52 -0700 | [diff] [blame] | 575 | bootdev.boot_device = loader->boot_device; |
Simon Glass | ecdfd69 | 2016-09-24 18:19:57 -0600 | [diff] [blame] | 576 | bootdev.boot_device_name = NULL; |
| 577 | |
Simon Goldschmidt | dae5c2d | 2019-02-10 21:34:37 +0100 | [diff] [blame] | 578 | ret = loader->load_image(spl_image, &bootdev); |
| 579 | #ifdef CONFIG_SPL_LEGACY_IMAGE_CRC_CHECK |
| 580 | if (!ret && spl_image->dcrc_length) { |
| 581 | /* check data crc */ |
| 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"); |
| 586 | ret = -EINVAL; |
| 587 | } |
| 588 | } |
| 589 | #endif |
Pali Rohár | c10939d | 2022-01-14 14:31:40 +0100 | [diff] [blame] | 590 | if (!ret) |
| 591 | ret = spl_check_board_image(spl_image, &bootdev); |
| 592 | |
Simon Goldschmidt | dae5c2d | 2019-02-10 21:34:37 +0100 | [diff] [blame] | 593 | return ret; |
Simon Glass | 540bfe7 | 2016-11-30 15:30:51 -0700 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | /** |
Miquel Raynal | fd4ee98 | 2019-05-07 14:18:43 +0200 | [diff] [blame] | 597 | * boot_from_devices() - Try loading a booting U-Boot from a list of devices |
Simon Glass | 540bfe7 | 2016-11-30 15:30:51 -0700 | [diff] [blame] | 598 | * |
| 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 |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 602 | * Return: 0 if OK, -ENODEV if there were no boot devices |
Simon Glass | 7d84fbb | 2021-07-05 16:32:57 -0600 | [diff] [blame] | 603 | * if CONFIG_SHOW_ERRORS is enabled, returns -ENXIO if there were |
| 604 | * devices but none worked |
Simon Glass | 540bfe7 | 2016-11-30 15:30:51 -0700 | [diff] [blame] | 605 | */ |
| 606 | static int boot_from_devices(struct spl_image_info *spl_image, |
| 607 | u32 spl_boot_list[], int count) |
| 608 | { |
Simon Glass | 5a61bf1 | 2022-10-20 18:23:07 -0600 | [diff] [blame] | 609 | struct spl_image_loader *drv = |
| 610 | ll_entry_start(struct spl_image_loader, spl_image_loader); |
| 611 | const int n_ents = |
| 612 | ll_entry_count(struct spl_image_loader, spl_image_loader); |
Simon Glass | 7d84fbb | 2021-07-05 16:32:57 -0600 | [diff] [blame] | 613 | int ret = -ENODEV; |
Simon Glass | 540bfe7 | 2016-11-30 15:30:51 -0700 | [diff] [blame] | 614 | int i; |
| 615 | |
| 616 | for (i = 0; i < count && spl_boot_list[i] != BOOT_DEVICE_NONE; i++) { |
| 617 | struct spl_image_loader *loader; |
Simon Glass | 7d84fbb | 2021-07-05 16:32:57 -0600 | [diff] [blame] | 618 | int bootdev = spl_boot_list[i]; |
Simon Glass | 540bfe7 | 2016-11-30 15:30:51 -0700 | [diff] [blame] | 619 | |
Simon Glass | 7d84fbb | 2021-07-05 16:32:57 -0600 | [diff] [blame] | 620 | if (CONFIG_IS_ENABLED(SHOW_ERRORS)) |
| 621 | ret = -ENXIO; |
Simon Glass | 5a61bf1 | 2022-10-20 18:23:07 -0600 | [diff] [blame] | 622 | for (loader = drv; loader != drv + n_ents; loader++) { |
| 623 | if (bootdev != loader->boot_device) |
| 624 | continue; |
| 625 | if (!CONFIG_IS_ENABLED(SILENT_CONSOLE)) { |
| 626 | if (loader) |
| 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", |
| 632 | bootdev); |
| 633 | } else { |
| 634 | puts(SPL_TPL_PROMPT |
| 635 | "Unsupported Boot Device!\n"); |
| 636 | } |
| 637 | } |
| 638 | if (loader && |
| 639 | !spl_load_image(spl_image, loader)) { |
| 640 | spl_image->boot_device = bootdev; |
| 641 | return 0; |
| 642 | } |
Philipp Tomsich | de5dd4c | 2018-05-24 17:15:50 +0200 | [diff] [blame] | 643 | } |
Simon Glass | 540bfe7 | 2016-11-30 15:30:51 -0700 | [diff] [blame] | 644 | } |
| 645 | |
Simon Glass | 7d84fbb | 2021-07-05 16:32:57 -0600 | [diff] [blame] | 646 | return ret; |
Nikita Kiryanov | 5211b87 | 2015-11-08 17:11:50 +0200 | [diff] [blame] | 647 | } |
| 648 | |
Philippe Reynes | a9a3aad | 2019-09-19 16:18:39 +0200 | [diff] [blame] | 649 | #if defined(CONFIG_SPL_FRAMEWORK_BOARD_INIT_F) |
| 650 | void board_init_f(ulong dummy) |
| 651 | { |
| 652 | if (CONFIG_IS_ENABLED(OF_CONTROL)) { |
| 653 | int ret; |
| 654 | |
| 655 | ret = spl_early_init(); |
| 656 | if (ret) { |
| 657 | debug("spl_early_init() failed: %d\n", ret); |
| 658 | hang(); |
| 659 | } |
| 660 | } |
| 661 | |
Samuel Holland | 3988be5 | 2020-05-07 18:08:10 -0500 | [diff] [blame] | 662 | preloader_console_init(); |
Philippe Reynes | a9a3aad | 2019-09-19 16:18:39 +0200 | [diff] [blame] | 663 | } |
| 664 | #endif |
| 665 | |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 666 | void board_init_r(gd_t *dummy1, ulong dummy2) |
| 667 | { |
Simon Glass | d32b2d1 | 2016-09-24 18:20:17 -0600 | [diff] [blame] | 668 | u32 spl_boot_list[] = { |
| 669 | BOOT_DEVICE_NONE, |
| 670 | BOOT_DEVICE_NONE, |
| 671 | BOOT_DEVICE_NONE, |
| 672 | BOOT_DEVICE_NONE, |
| 673 | BOOT_DEVICE_NONE, |
| 674 | }; |
Jonas Karlman | 6826c43 | 2023-09-27 21:44:13 +0000 | [diff] [blame] | 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; |
Simon Glass | d32b2d1 | 2016-09-24 18:20:17 -0600 | [diff] [blame] | 677 | struct spl_image_info spl_image; |
Simon Glass | f817e08 | 2023-09-26 08:14:22 -0600 | [diff] [blame] | 678 | int ret, os; |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 679 | |
Simon Glass | d633006 | 2018-11-15 18:43:56 -0700 | [diff] [blame] | 680 | debug(">>" SPL_TPL_PROMPT "board_init_r()\n"); |
York Sun | d1fc0a3 | 2017-09-28 08:42:10 -0700 | [diff] [blame] | 681 | |
Alexandru Gagniuc | 58b504e | 2021-04-08 11:56:11 -0500 | [diff] [blame] | 682 | spl_set_bd(); |
| 683 | |
Simon Glass | 5277987 | 2023-09-26 08:14:18 -0600 | [diff] [blame] | 684 | if (IS_ENABLED(CONFIG_SPL_SYS_MALLOC)) { |
Sean Anderson | b02c4e9 | 2023-10-14 16:47:55 -0400 | [diff] [blame] | 685 | mem_malloc_init((ulong)map_sysmem(SPL_SYS_MALLOC_START, |
| 686 | SPL_SYS_MALLOC_SIZE), |
| 687 | SPL_SYS_MALLOC_SIZE); |
Simon Glass | 5277987 | 2023-09-26 08:14:18 -0600 | [diff] [blame] | 688 | gd->flags |= GD_FLG_FULL_MALLOC_INIT; |
| 689 | } |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 690 | if (!(gd->flags & GD_FLG_SPL_INIT)) { |
| 691 | if (spl_init()) |
| 692 | hang(); |
| 693 | } |
Ilya Yanok | 4063c77 | 2012-09-17 10:26:26 +0000 | [diff] [blame] | 694 | timer_init(); |
Simon Glass | 3cd7198 | 2019-09-25 08:11:19 -0600 | [diff] [blame] | 695 | if (CONFIG_IS_ENABLED(BLOBLIST)) { |
| 696 | ret = bloblist_init(); |
| 697 | if (ret) { |
| 698 | debug("%s: Failed to set up bloblist: ret=%d\n", |
| 699 | __func__, ret); |
| 700 | puts(SPL_TPL_PROMPT "Cannot set up bloblist\n"); |
| 701 | hang(); |
| 702 | } |
| 703 | } |
| 704 | if (CONFIG_IS_ENABLED(HANDOFF)) { |
| 705 | int ret; |
| 706 | |
| 707 | ret = setup_spl_handoff(); |
| 708 | if (ret) { |
| 709 | puts(SPL_TPL_PROMPT "Cannot set up SPL handoff\n"); |
| 710 | hang(); |
| 711 | } |
| 712 | } |
Ilya Yanok | 4063c77 | 2012-09-17 10:26:26 +0000 | [diff] [blame] | 713 | |
Simon Glass | 6371c47 | 2023-09-26 08:14:20 -0600 | [diff] [blame] | 714 | if (CONFIG_IS_ENABLED(BOARD_INIT)) |
| 715 | spl_board_init(); |
Tom Rini | ee08a82 | 2011-11-23 05:13:06 +0000 | [diff] [blame] | 716 | |
Simon Glass | 6371c47 | 2023-09-26 08:14:20 -0600 | [diff] [blame] | 717 | if (IS_ENABLED(CONFIG_SPL_WATCHDOG) && CONFIG_IS_ENABLED(WDT)) |
| 718 | initr_watchdog(); |
Stefan Roese | 0698528 | 2019-04-11 15:58:44 +0200 | [diff] [blame] | 719 | |
Heiko Stuebner | a343b4f | 2020-05-25 19:57:25 +0200 | [diff] [blame] | 720 | if (IS_ENABLED(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF) || |
| 721 | IS_ENABLED(CONFIG_SPL_ATF)) |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 722 | dram_init_banksize(); |
| 723 | |
Simon Glass | 15a23b6 | 2023-09-07 09:58:13 -0600 | [diff] [blame] | 724 | if (CONFIG_IS_ENABLED(PCI) && !(gd->flags & GD_FLG_DM_DEAD)) { |
Heinrich Schuchardt | 7d4c8cf | 2023-07-24 22:18:41 +0200 | [diff] [blame] | 725 | ret = pci_init(); |
| 726 | if (ret) |
| 727 | puts(SPL_TPL_PROMPT "Cannot initialize PCI\n"); |
| 728 | /* Don't fail. We still can try other boot methods. */ |
| 729 | } |
| 730 | |
Lukasz Majewski | a8be249 | 2018-05-02 16:10:54 +0200 | [diff] [blame] | 731 | bootcount_inc(); |
| 732 | |
Simon Glass | 4f6500a | 2022-05-08 04:39:27 -0600 | [diff] [blame] | 733 | /* Dump driver model states to aid analysis */ |
| 734 | if (CONFIG_IS_ENABLED(DM_STATS)) { |
| 735 | struct dm_stats mem; |
| 736 | |
| 737 | dm_get_mem(&mem); |
| 738 | dm_dump_mem(&mem); |
| 739 | } |
| 740 | |
Simon Glass | d32b2d1 | 2016-09-24 18:20:17 -0600 | [diff] [blame] | 741 | memset(&spl_image, '\0', sizeof(spl_image)); |
Simon Glass | e0be6ea | 2023-09-26 08:14:21 -0600 | [diff] [blame] | 742 | if (IS_ENABLED(CONFIG_SPL_OS_BOOT)) |
| 743 | spl_image.arg = (void *)SPL_PAYLOAD_ARGS_ADDR; |
Philipp Tomsich | de5dd4c | 2018-05-24 17:15:50 +0200 | [diff] [blame] | 744 | spl_image.boot_device = BOOT_DEVICE_NONE; |
Nikita Kiryanov | f101e4b | 2015-11-08 17:11:51 +0200 | [diff] [blame] | 745 | board_boot_order(spl_boot_list); |
Nikita Kiryanov | f101e4b | 2015-11-08 17:11:51 +0200 | [diff] [blame] | 746 | |
Simon Glass | 7d84fbb | 2021-07-05 16:32:57 -0600 | [diff] [blame] | 747 | ret = boot_from_devices(&spl_image, spl_boot_list, |
| 748 | ARRAY_SIZE(spl_boot_list)); |
| 749 | if (ret) { |
Sean Anderson | 06b1bca | 2023-11-08 11:48:35 -0500 | [diff] [blame] | 750 | if (CONFIG_IS_ENABLED(SHOW_ERRORS)) |
Simon Glass | 7d84fbb | 2021-07-05 16:32:57 -0600 | [diff] [blame] | 751 | printf(SPL_TPL_PROMPT "failed to boot from all boot devices (err=%d)\n", |
| 752 | ret); |
| 753 | else |
| 754 | puts(SPL_TPL_PROMPT "failed to boot from all boot devices\n"); |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 755 | hang(); |
Nikita Kiryanov | f101e4b | 2015-11-08 17:11:51 +0200 | [diff] [blame] | 756 | } |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 757 | |
Philipp Tomsich | de5dd4c | 2018-05-24 17:15:50 +0200 | [diff] [blame] | 758 | spl_perform_fixups(&spl_image); |
| 759 | |
Simon Glass | f817e08 | 2023-09-26 08:14:22 -0600 | [diff] [blame] | 760 | os = spl_image.os; |
| 761 | if (os == IH_OS_U_BOOT) { |
Simon Glass | 1a9e75b | 2021-02-06 09:57:27 -0700 | [diff] [blame] | 762 | debug("Jumping to %s...\n", spl_phase_name(spl_next_phase())); |
Simon Glass | f817e08 | 2023-09-26 08:14:22 -0600 | [diff] [blame] | 763 | } else if (CONFIG_IS_ENABLED(ATF) && os == IH_OS_ARM_TRUSTED_FIRMWARE) { |
Philipp Tomsich | 1d37909 | 2017-09-13 21:29:35 +0200 | [diff] [blame] | 764 | debug("Jumping to U-Boot via ARM Trusted Firmware\n"); |
Simon Glass | f817e08 | 2023-09-26 08:14:22 -0600 | [diff] [blame] | 765 | spl_fixup_fdt(spl_image_fdt_addr(&spl_image)); |
Jonas Karlman | 6826c43 | 2023-09-27 21:44:13 +0000 | [diff] [blame] | 766 | jump_to_image = &spl_invoke_atf; |
Simon Glass | f817e08 | 2023-09-26 08:14:22 -0600 | [diff] [blame] | 767 | } else if (CONFIG_IS_ENABLED(OPTEE_IMAGE) && os == IH_OS_TEE) { |
Kever Yang | 70fe287 | 2018-08-23 17:17:59 +0800 | [diff] [blame] | 768 | debug("Jumping to U-Boot via OP-TEE\n"); |
Simon Glass | f817e08 | 2023-09-26 08:14:22 -0600 | [diff] [blame] | 769 | spl_board_prepare_for_optee(spl_image_fdt_addr(&spl_image)); |
Jonas Karlman | 6826c43 | 2023-09-27 21:44:13 +0000 | [diff] [blame] | 770 | jump_to_image = &jump_to_image_optee; |
Simon Glass | f817e08 | 2023-09-26 08:14:22 -0600 | [diff] [blame] | 771 | } else if (CONFIG_IS_ENABLED(OPENSBI) && os == IH_OS_OPENSBI) { |
Lukas Auer | 5e30e45 | 2019-08-21 21:14:44 +0200 | [diff] [blame] | 772 | debug("Jumping to U-Boot via RISC-V OpenSBI\n"); |
Jonas Karlman | 6826c43 | 2023-09-27 21:44:13 +0000 | [diff] [blame] | 773 | jump_to_image = &spl_invoke_opensbi; |
Simon Glass | f817e08 | 2023-09-26 08:14:22 -0600 | [diff] [blame] | 774 | } else if (CONFIG_IS_ENABLED(OS_BOOT) && os == IH_OS_LINUX) { |
Simon Schwarz | 379c19a | 2012-03-15 04:01:38 +0000 | [diff] [blame] | 775 | debug("Jumping to Linux\n"); |
Simon Glass | e0be6ea | 2023-09-26 08:14:21 -0600 | [diff] [blame] | 776 | if (IS_ENABLED(CONFIG_SPL_OS_BOOT)) |
| 777 | spl_fixup_fdt((void *)SPL_PAYLOAD_ARGS_ADDR); |
Simon Schwarz | 379c19a | 2012-03-15 04:01:38 +0000 | [diff] [blame] | 778 | spl_board_prepare_for_linux(); |
Jonas Karlman | 6826c43 | 2023-09-27 21:44:13 +0000 | [diff] [blame] | 779 | jump_to_image = &jump_to_image_linux; |
Simon Glass | f817e08 | 2023-09-26 08:14:22 -0600 | [diff] [blame] | 780 | } else { |
Tom Rini | 4212098 | 2012-08-27 14:58:28 -0700 | [diff] [blame] | 781 | debug("Unsupported OS image.. Jumping nevertheless..\n"); |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 782 | } |
Simon Glass | 2003a83 | 2023-09-26 08:14:31 -0600 | [diff] [blame] | 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); |
| 787 | |
Simon Glass | 05e3a0d | 2021-03-15 18:11:15 +1300 | [diff] [blame] | 788 | bootstage_mark_name(get_bootstage_id(false), "end phase"); |
Simon Glass | 17ba501 | 2023-09-26 08:14:32 -0600 | [diff] [blame] | 789 | ret = bootstage_stash_default(); |
Simon Glass | 824bb1b | 2017-05-22 05:05:35 -0600 | [diff] [blame] | 790 | if (ret) |
| 791 | debug("Failed to stash bootstage: err=%d\n", ret); |
Kever Yang | a8c5112 | 2017-09-13 18:24:24 +0800 | [diff] [blame] | 792 | |
Nikhil M Jain | 954b0ad | 2023-07-18 14:27:33 +0530 | [diff] [blame] | 793 | if (IS_ENABLED(CONFIG_SPL_VIDEO_REMOVE)) { |
| 794 | struct udevice *dev; |
| 795 | int rc; |
Nikhil M Jain | 7a17e4c | 2023-04-10 14:19:13 +0530 | [diff] [blame] | 796 | |
Nikhil M Jain | 954b0ad | 2023-07-18 14:27:33 +0530 | [diff] [blame] | 797 | rc = uclass_find_device(UCLASS_VIDEO, 0, &dev); |
| 798 | if (!rc && dev) { |
| 799 | rc = device_remove(dev, DM_REMOVE_NORMAL); |
| 800 | if (rc) |
| 801 | printf("Cannot remove video device '%s' (err=%d)\n", |
| 802 | dev->name, rc); |
| 803 | } |
Nikhil M Jain | 7a17e4c | 2023-04-10 14:19:13 +0530 | [diff] [blame] | 804 | } |
Simon Glass | a17e1e7 | 2023-09-26 08:14:36 -0600 | [diff] [blame] | 805 | if (CONFIG_IS_ENABLED(HANDOFF)) { |
| 806 | ret = write_spl_handoff(); |
| 807 | if (ret) |
| 808 | printf(SPL_TPL_PROMPT |
| 809 | "SPL hand-off write failed (err=%d)\n", ret); |
| 810 | } |
| 811 | if (CONFIG_IS_ENABLED(BLOBLIST)) { |
| 812 | ret = bloblist_finish(); |
| 813 | if (ret) |
| 814 | printf("Warning: Failed to finish bloblist (ret=%d)\n", |
| 815 | ret); |
| 816 | } |
Nikhil M Jain | 7a17e4c | 2023-04-10 14:19:13 +0530 | [diff] [blame] | 817 | |
Michal Simek | 3a3b914 | 2016-05-10 07:54:20 +0200 | [diff] [blame] | 818 | spl_board_prepare_for_boot(); |
Jonas Karlman | 6826c43 | 2023-09-27 21:44:13 +0000 | [diff] [blame] | 819 | jump_to_image(&spl_image); |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 820 | } |
| 821 | |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 822 | /* |
| 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. |
| 825 | */ |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 826 | void preloader_console_init(void) |
| 827 | { |
Simon Glass | 2a73606 | 2021-08-08 12:20:12 -0600 | [diff] [blame] | 828 | #ifdef CONFIG_SPL_SERIAL |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 829 | gd->baudrate = CONFIG_BAUDRATE; |
| 830 | |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 831 | serial_init(); /* serial communications setup */ |
| 832 | |
Ilya Yanok | b88befa | 2011-11-01 13:16:03 +0000 | [diff] [blame] | 833 | gd->have_console = 1; |
| 834 | |
Simon Glass | aedc08b | 2018-11-15 18:43:57 -0700 | [diff] [blame] | 835 | #if CONFIG_IS_ENABLED(BANNER_PRINT) |
Simon Glass | d633006 | 2018-11-15 18:43:56 -0700 | [diff] [blame] | 836 | puts("\nU-Boot " SPL_TPL_NAME " " PLAIN_VERSION " (" U_BOOT_DATE " - " |
| 837 | U_BOOT_TIME " " U_BOOT_TZ ")\n"); |
Anatolij Gustschin | 0292bc0 | 2018-01-25 18:45:22 +0100 | [diff] [blame] | 838 | #endif |
Tom Rini | 861a86f | 2012-08-13 11:37:56 -0700 | [diff] [blame] | 839 | #ifdef CONFIG_SPL_DISPLAY_PRINT |
| 840 | spl_display_print(); |
| 841 | #endif |
Alex Kiernan | 117a0e0 | 2018-04-19 04:32:51 +0000 | [diff] [blame] | 842 | #endif |
Samuel Holland | 3988be5 | 2020-05-07 18:08:10 -0500 | [diff] [blame] | 843 | } |
Simon Glass | db91035 | 2015-03-03 08:03:00 -0700 | [diff] [blame] | 844 | |
| 845 | /** |
Simon Goldschmidt | d8c0332 | 2019-07-16 22:30:36 +0200 | [diff] [blame] | 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 |
| 848 | */ |
| 849 | __weak void spl_relocate_stack_check(void) |
| 850 | { |
| 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; |
| 855 | ulong i; |
| 856 | |
| 857 | for (i = 0; i < CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK); i++) { |
| 858 | if (*ptr != CONFIG_VAL(SYS_STACK_F_CHECK_BYTE)) |
| 859 | break; |
| 860 | ptr++; |
| 861 | } |
| 862 | printf("SPL initial stack usage: %lu bytes\n", |
| 863 | CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK) - i); |
| 864 | #endif |
| 865 | } |
| 866 | |
| 867 | /** |
Simon Glass | db91035 | 2015-03-03 08:03:00 -0700 | [diff] [blame] | 868 | * spl_relocate_stack_gd() - Relocate stack ready for board_init_r() execution |
| 869 | * |
| 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. |
| 873 | * |
| 874 | * This function calculates the stack position, copies the global_data into |
Albert ARIBAUD | adc421e | 2015-11-25 17:56:33 +0100 | [diff] [blame] | 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. |
| 879 | * |
| 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(). |
Simon Glass | db91035 | 2015-03-03 08:03:00 -0700 | [diff] [blame] | 882 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 883 | * Return: new stack location, or 0 to use the same stack |
Simon Glass | db91035 | 2015-03-03 08:03:00 -0700 | [diff] [blame] | 884 | */ |
| 885 | ulong spl_relocate_stack_gd(void) |
| 886 | { |
| 887 | #ifdef CONFIG_SPL_STACK_R |
| 888 | gd_t *new_gd; |
Albert ARIBAUD | adc421e | 2015-11-25 17:56:33 +0100 | [diff] [blame] | 889 | ulong ptr = CONFIG_SPL_STACK_R_ADDR; |
Simon Glass | db91035 | 2015-03-03 08:03:00 -0700 | [diff] [blame] | 890 | |
Simon Goldschmidt | d8c0332 | 2019-07-16 22:30:36 +0200 | [diff] [blame] | 891 | if (CONFIG_IS_ENABLED(SYS_REPORT_STACK_F_USAGE)) |
| 892 | spl_relocate_stack_check(); |
| 893 | |
Simon Glass | 3d6d507 | 2023-09-26 08:14:27 -0600 | [diff] [blame] | 894 | #if defined(CONFIG_SPL_SYS_MALLOC_SIMPLE) && CONFIG_IS_ENABLED(SYS_MALLOC_F) |
Hans de Goede | dcfcb8d | 2015-09-13 15:04:17 +0200 | [diff] [blame] | 895 | if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) { |
Simon Goldschmidt | 438dcab | 2019-02-26 22:27:52 +0100 | [diff] [blame] | 896 | debug("SPL malloc() before relocation used 0x%lx bytes (%ld KB)\n", |
| 897 | gd->malloc_ptr, gd->malloc_ptr / 1024); |
Hans de Goede | dcfcb8d | 2015-09-13 15:04:17 +0200 | [diff] [blame] | 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; |
| 901 | gd->malloc_ptr = 0; |
| 902 | } |
| 903 | #endif |
Albert ARIBAUD | adc421e | 2015-11-25 17:56:33 +0100 | [diff] [blame] | 904 | /* Get stack position: use 8-byte alignment for ABI compliance */ |
| 905 | ptr = CONFIG_SPL_STACK_R_ADDR - roundup(sizeof(gd_t),16); |
Nikhil M Jain | 149fb05 | 2023-07-18 14:27:27 +0530 | [diff] [blame] | 906 | gd->start_addr_sp = ptr; |
Albert ARIBAUD | adc421e | 2015-11-25 17:56:33 +0100 | [diff] [blame] | 907 | new_gd = (gd_t *)ptr; |
| 908 | memcpy(new_gd, (void *)gd, sizeof(gd_t)); |
Simon Glass | 2f11cd9 | 2016-11-13 14:21:58 -0700 | [diff] [blame] | 909 | #if CONFIG_IS_ENABLED(DM) |
| 910 | dm_fixup_for_gd_move(new_gd); |
| 911 | #endif |
Thomas Weißschuh | 39162d9 | 2024-02-13 18:13:28 +0100 | [diff] [blame] | 912 | #if CONFIG_IS_ENABLED(LOG) |
| 913 | log_fixup_for_gd_move(new_gd); |
| 914 | #endif |
Lukas Auer | c7e1eff | 2019-08-21 21:14:46 +0200 | [diff] [blame] | 915 | #if !defined(CONFIG_ARM) && !defined(CONFIG_RISCV) |
Albert ARIBAUD | adc421e | 2015-11-25 17:56:33 +0100 | [diff] [blame] | 916 | gd = new_gd; |
| 917 | #endif |
Simon Glass | db91035 | 2015-03-03 08:03:00 -0700 | [diff] [blame] | 918 | return ptr; |
| 919 | #else |
| 920 | return 0; |
| 921 | #endif |
| 922 | } |
Simon Glass | c660444 | 2019-11-14 12:57:17 -0700 | [diff] [blame] | 923 | |
Philippe Reynes | 4d145f2 | 2020-12-11 19:56:47 +0100 | [diff] [blame] | 924 | #if defined(CONFIG_BOOTCOUNT_LIMIT) && \ |
| 925 | ((!defined(CONFIG_TPL_BUILD) && !defined(CONFIG_SPL_BOOTCOUNT_LIMIT)) || \ |
| 926 | (defined(CONFIG_TPL_BUILD) && !defined(CONFIG_TPL_BOOTCOUNT_LIMIT))) |
Simon Glass | c660444 | 2019-11-14 12:57:17 -0700 | [diff] [blame] | 927 | void bootcount_store(ulong a) |
| 928 | { |
| 929 | } |
| 930 | |
| 931 | ulong bootcount_load(void) |
| 932 | { |
| 933 | return 0; |
| 934 | } |
| 935 | #endif |