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> |
Tom Rini | 10f6e4d | 2022-05-27 12:48:32 -0400 | [diff] [blame] | 22 | #include <system-constants.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 23 | #include <asm/global_data.h> |
Eddie James | 1d99e67 | 2022-02-07 17:09:01 -0600 | [diff] [blame] | 24 | #include <asm-generic/gpio.h> |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 25 | #include <asm/u-boot.h> |
Simon Schwarz | bb085b8 | 2011-09-14 15:29:26 -0400 | [diff] [blame] | 26 | #include <nand.h> |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 27 | #include <fat.h> |
Simon Glass | 3db7110 | 2019-11-14 12:57:16 -0700 | [diff] [blame] | 28 | #include <u-boot/crc.h> |
Pali Rohár | 121a165 | 2021-08-02 15:18:38 +0200 | [diff] [blame] | 29 | #if CONFIG_IS_ENABLED(BANNER_PRINT) |
| 30 | #include <timestamp.h> |
| 31 | #endif |
Simon Glass | efb2172 | 2011-10-10 08:55:19 +0000 | [diff] [blame] | 32 | #include <version.h> |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 33 | #include <image.h> |
Aneesh V | 2d01dd9 | 2011-10-21 12:29:34 -0400 | [diff] [blame] | 34 | #include <malloc.h> |
Simon Glass | 31f9f0e | 2019-10-21 17:26:52 -0600 | [diff] [blame] | 35 | #include <mapmem.h> |
Simon Glass | 1151651 | 2014-11-10 17:16:46 -0700 | [diff] [blame] | 36 | #include <dm/root.h> |
Simon Glass | 4f6500a | 2022-05-08 04:39:27 -0600 | [diff] [blame] | 37 | #include <dm/util.h> |
Andreas Müller | 761ca31 | 2012-01-04 15:26:24 +0000 | [diff] [blame] | 38 | #include <linux/compiler.h> |
B, Ravi | 6e7585b | 2017-04-18 17:27:27 +0530 | [diff] [blame] | 39 | #include <fdt_support.h> |
Lukasz Majewski | a8be249 | 2018-05-02 16:10:54 +0200 | [diff] [blame] | 40 | #include <bootcount.h> |
Stefan Roese | 0698528 | 2019-04-11 15:58:44 +0200 | [diff] [blame] | 41 | #include <wdt.h> |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 42 | |
| 43 | DECLARE_GLOBAL_DATA_PTR; |
Alper Nebi Yasak | 367ecbf | 2022-06-18 15:13:11 +0300 | [diff] [blame] | 44 | DECLARE_BINMAN_MAGIC_SYM; |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 45 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 46 | #ifndef CFG_SYS_UBOOT_START |
| 47 | #define CFG_SYS_UBOOT_START CONFIG_TEXT_BASE |
Stefan Roese | 3c6f8a0 | 2012-08-28 10:50:59 +0200 | [diff] [blame] | 48 | #endif |
Stefano Babic | ae83d88 | 2012-08-23 12:46:16 +0200 | [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 | |
Simon Glass | e82c624 | 2019-12-08 17:40:12 -0700 | [diff] [blame] | 156 | ulong spl_get_image_pos(void) |
| 157 | { |
Alper Nebi Yasak | d8830cf | 2022-06-18 15:13:09 +0300 | [diff] [blame] | 158 | if (!CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS)) |
Alper Nebi Yasak | d7f0717 | 2022-06-18 15:13:06 +0300 | [diff] [blame] | 159 | return BINMAN_SYM_MISSING; |
| 160 | |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 161 | #ifdef CONFIG_VPL |
| 162 | if (spl_next_phase() == PHASE_VPL) |
Simon Glass | 2b8d2cc | 2022-10-20 18:22:41 -0600 | [diff] [blame] | 163 | return binman_sym(ulong, u_boot_vpl_any, image_pos); |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 164 | #endif |
| 165 | return spl_next_phase() == PHASE_SPL ? |
Simon Glass | 2b8d2cc | 2022-10-20 18:22:41 -0600 | [diff] [blame] | 166 | binman_sym(ulong, u_boot_spl_any, image_pos) : |
Simon Glass | e82c624 | 2019-12-08 17:40:12 -0700 | [diff] [blame] | 167 | binman_sym(ulong, u_boot_any, image_pos); |
| 168 | } |
| 169 | |
| 170 | ulong spl_get_image_size(void) |
| 171 | { |
Alper Nebi Yasak | d8830cf | 2022-06-18 15:13:09 +0300 | [diff] [blame] | 172 | if (!CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS)) |
Alper Nebi Yasak | d7f0717 | 2022-06-18 15:13:06 +0300 | [diff] [blame] | 173 | return BINMAN_SYM_MISSING; |
| 174 | |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 175 | #ifdef CONFIG_VPL |
| 176 | if (spl_next_phase() == PHASE_VPL) |
Simon Glass | 2b8d2cc | 2022-10-20 18:22:41 -0600 | [diff] [blame] | 177 | return binman_sym(ulong, u_boot_vpl_any, size); |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 178 | #endif |
| 179 | return spl_next_phase() == PHASE_SPL ? |
Simon Glass | 2b8d2cc | 2022-10-20 18:22:41 -0600 | [diff] [blame] | 180 | binman_sym(ulong, u_boot_spl_any, size) : |
Simon Glass | e82c624 | 2019-12-08 17:40:12 -0700 | [diff] [blame] | 181 | binman_sym(ulong, u_boot_any, size); |
| 182 | } |
| 183 | |
Simon Glass | 86c372a | 2021-01-24 10:06:03 -0700 | [diff] [blame] | 184 | ulong spl_get_image_text_base(void) |
| 185 | { |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 186 | #ifdef CONFIG_VPL |
| 187 | if (spl_next_phase() == PHASE_VPL) |
| 188 | return CONFIG_VPL_TEXT_BASE; |
| 189 | #endif |
| 190 | return spl_next_phase() == PHASE_SPL ? CONFIG_SPL_TEXT_BASE : |
Simon Glass | 9846390 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 191 | CONFIG_TEXT_BASE; |
Simon Glass | 86c372a | 2021-01-24 10:06:03 -0700 | [diff] [blame] | 192 | } |
| 193 | |
Stefan Roese | ea8256f | 2012-08-23 08:34:21 +0200 | [diff] [blame] | 194 | /* |
| 195 | * Weak default function for board specific cleanup/preparation before |
| 196 | * Linux boot. Some boards/platforms might not need it, so just provide |
| 197 | * an empty stub here. |
| 198 | */ |
| 199 | __weak void spl_board_prepare_for_linux(void) |
| 200 | { |
| 201 | /* Nothing to do! */ |
| 202 | } |
| 203 | |
Alexandru Gagniuc | a25d6b6 | 2021-07-15 14:19:24 -0500 | [diff] [blame] | 204 | __weak void spl_board_prepare_for_optee(void *fdt) |
| 205 | { |
| 206 | } |
| 207 | |
Heiko Thiery | c592292 | 2022-01-17 16:25:41 +0100 | [diff] [blame] | 208 | __weak const char *spl_board_loader_name(u32 boot_device) |
| 209 | { |
| 210 | return NULL; |
| 211 | } |
| 212 | |
Ricardo Salveti | 949eb22 | 2021-10-20 15:12:06 +0300 | [diff] [blame] | 213 | #if CONFIG_IS_ENABLED(OPTEE_IMAGE) |
| 214 | __weak void __noreturn jump_to_image_optee(struct spl_image_info *spl_image) |
| 215 | { |
| 216 | spl_optee_entry(NULL, NULL, spl_image->fdt_addr, |
| 217 | (void *)spl_image->entry_point); |
| 218 | } |
| 219 | #endif |
| 220 | |
Michal Simek | 3a3b914 | 2016-05-10 07:54:20 +0200 | [diff] [blame] | 221 | __weak void spl_board_prepare_for_boot(void) |
| 222 | { |
| 223 | /* Nothing to do! */ |
| 224 | } |
| 225 | |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 226 | __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] | 227 | { |
Simon Glass | 9846390 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 228 | return map_sysmem(CONFIG_TEXT_BASE + offset, 0); |
Marek Vasut | 04ce542 | 2018-08-14 11:27:02 +0200 | [diff] [blame] | 229 | } |
| 230 | |
Tom Rini | 08574ed | 2022-10-28 20:27:07 -0400 | [diff] [blame] | 231 | #ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT |
Simon Glass | d95ceb9 | 2016-09-24 18:19:52 -0600 | [diff] [blame] | 232 | void spl_set_header_raw_uboot(struct spl_image_info *spl_image) |
Heiko Schocher | 0c3117b | 2014-10-31 08:31:00 +0100 | [diff] [blame] | 233 | { |
Alper Nebi Yasak | d7f0717 | 2022-06-18 15:13:06 +0300 | [diff] [blame] | 234 | ulong u_boot_pos = spl_get_image_pos(); |
Simon Glass | 8bee2d2 | 2017-11-13 18:55:03 -0700 | [diff] [blame] | 235 | |
Tom Rini | 08574ed | 2022-10-28 20:27:07 -0400 | [diff] [blame] | 236 | #if CONFIG_SYS_MONITOR_LEN != 0 |
Simon Glass | d95ceb9 | 2016-09-24 18:19:52 -0600 | [diff] [blame] | 237 | spl_image->size = CONFIG_SYS_MONITOR_LEN; |
Tom Rini | 08574ed | 2022-10-28 20:27:07 -0400 | [diff] [blame] | 238 | #else |
| 239 | /* Unknown U-Boot size, let's assume it will not be more than 200 KB */ |
| 240 | spl_image->size = 200 * 1024; |
| 241 | #endif |
Miquel Raynal | 55fe0e2 | 2018-02-28 20:51:43 +0100 | [diff] [blame] | 242 | |
| 243 | /* |
| 244 | * Binman error cases: address of the end of the previous region or the |
| 245 | * start of the image's entry area (usually 0) if there is no previous |
| 246 | * region. |
| 247 | */ |
| 248 | if (u_boot_pos && u_boot_pos != BINMAN_SYM_MISSING) { |
| 249 | /* Binman does not support separated entry addresses */ |
Simon Glass | 8bee2d2 | 2017-11-13 18:55:03 -0700 | [diff] [blame] | 250 | spl_image->entry_point = u_boot_pos; |
| 251 | spl_image->load_addr = u_boot_pos; |
| 252 | } else { |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 253 | spl_image->entry_point = CFG_SYS_UBOOT_START; |
Simon Glass | 9846390 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 254 | spl_image->load_addr = CONFIG_TEXT_BASE; |
Simon Glass | 8bee2d2 | 2017-11-13 18:55:03 -0700 | [diff] [blame] | 255 | } |
Simon Glass | d95ceb9 | 2016-09-24 18:19:52 -0600 | [diff] [blame] | 256 | spl_image->os = IH_OS_U_BOOT; |
| 257 | spl_image->name = "U-Boot"; |
Heiko Schocher | 0c3117b | 2014-10-31 08:31:00 +0100 | [diff] [blame] | 258 | } |
Tom Rini | 08574ed | 2022-10-28 20:27:07 -0400 | [diff] [blame] | 259 | #endif |
Heiko Schocher | 0c3117b | 2014-10-31 08:31:00 +0100 | [diff] [blame] | 260 | |
John Keeping | 674afa6 | 2021-05-19 15:05:53 +0100 | [diff] [blame] | 261 | #if CONFIG_IS_ENABLED(LOAD_FIT_FULL) |
Marek Vasut | 8a9dc16 | 2018-05-13 00:23:17 +0200 | [diff] [blame] | 262 | /* Parse and load full fitImage in SPL */ |
| 263 | static int spl_load_fit_image(struct spl_image_info *spl_image, |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 264 | const struct legacy_img_hdr *header) |
Marek Vasut | 8a9dc16 | 2018-05-13 00:23:17 +0200 | [diff] [blame] | 265 | { |
Simon Glass | d9d7c20 | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 266 | struct bootm_headers images; |
Marek Vasut | 8a9dc16 | 2018-05-13 00:23:17 +0200 | [diff] [blame] | 267 | const char *fit_uname_config = NULL; |
Alexandru Gagniuc | 60138aa | 2021-04-01 13:25:28 -0500 | [diff] [blame] | 268 | uintptr_t fdt_hack; |
Marek Vasut | 8a9dc16 | 2018-05-13 00:23:17 +0200 | [diff] [blame] | 269 | const char *uname; |
| 270 | ulong fw_data = 0, dt_data = 0, img_data = 0; |
| 271 | ulong fw_len = 0, dt_len = 0, img_len = 0; |
| 272 | int idx, conf_noffset; |
| 273 | int ret; |
| 274 | |
| 275 | #ifdef CONFIG_SPL_FIT_SIGNATURE |
| 276 | images.verify = 1; |
| 277 | #endif |
| 278 | ret = fit_image_load(&images, (ulong)header, |
| 279 | NULL, &fit_uname_config, |
| 280 | IH_ARCH_DEFAULT, IH_TYPE_STANDALONE, -1, |
Alexandru Gagniuc | 51d3a8b | 2021-04-01 13:25:29 -0500 | [diff] [blame] | 281 | FIT_LOAD_OPTIONAL, &fw_data, &fw_len); |
| 282 | if (ret >= 0) { |
| 283 | printf("DEPRECATED: 'standalone = ' property."); |
| 284 | printf("Please use either 'firmware =' or 'kernel ='\n"); |
| 285 | } else { |
| 286 | ret = fit_image_load(&images, (ulong)header, NULL, |
| 287 | &fit_uname_config, IH_ARCH_DEFAULT, |
| 288 | IH_TYPE_FIRMWARE, -1, FIT_LOAD_OPTIONAL, |
| 289 | &fw_data, &fw_len); |
| 290 | } |
| 291 | |
| 292 | if (ret < 0) { |
| 293 | ret = fit_image_load(&images, (ulong)header, NULL, |
| 294 | &fit_uname_config, IH_ARCH_DEFAULT, |
| 295 | IH_TYPE_KERNEL, -1, FIT_LOAD_OPTIONAL, |
| 296 | &fw_data, &fw_len); |
| 297 | } |
| 298 | |
Marek Vasut | 8a9dc16 | 2018-05-13 00:23:17 +0200 | [diff] [blame] | 299 | if (ret < 0) |
| 300 | return ret; |
| 301 | |
| 302 | spl_image->size = fw_len; |
| 303 | spl_image->entry_point = fw_data; |
| 304 | spl_image->load_addr = fw_data; |
Alexandru Gagniuc | 2eaae17 | 2021-04-01 13:25:27 -0500 | [diff] [blame] | 305 | if (fit_image_get_os(header, ret, &spl_image->os)) |
| 306 | spl_image->os = IH_OS_INVALID; |
| 307 | spl_image->name = genimg_get_os_name(spl_image->os); |
Marek Vasut | 8a9dc16 | 2018-05-13 00:23:17 +0200 | [diff] [blame] | 308 | |
Simon Glass | d633006 | 2018-11-15 18:43:56 -0700 | [diff] [blame] | 309 | debug(SPL_TPL_PROMPT "payload image: %32s load addr: 0x%lx size: %d\n", |
Simon Goldschmidt | 30c0740 | 2018-11-02 21:49:52 +0100 | [diff] [blame] | 310 | spl_image->name, spl_image->load_addr, spl_image->size); |
Marek Vasut | 8a9dc16 | 2018-05-13 00:23:17 +0200 | [diff] [blame] | 311 | |
| 312 | #ifdef CONFIG_SPL_FIT_SIGNATURE |
| 313 | images.verify = 1; |
| 314 | #endif |
Alexandru Gagniuc | 18fd663 | 2021-04-01 13:25:26 -0500 | [diff] [blame] | 315 | ret = fit_image_load(&images, (ulong)header, NULL, &fit_uname_config, |
Marek Vasut | 8a9dc16 | 2018-05-13 00:23:17 +0200 | [diff] [blame] | 316 | IH_ARCH_DEFAULT, IH_TYPE_FLATDT, -1, |
| 317 | FIT_LOAD_OPTIONAL, &dt_data, &dt_len); |
Alexandru Gagniuc | 60138aa | 2021-04-01 13:25:28 -0500 | [diff] [blame] | 318 | if (ret >= 0) { |
Marek Vasut | a9a8271 | 2019-05-07 21:17:02 +0200 | [diff] [blame] | 319 | spl_image->fdt_addr = (void *)dt_data; |
Marek Vasut | 8a9dc16 | 2018-05-13 00:23:17 +0200 | [diff] [blame] | 320 | |
Alexandru Gagniuc | 60138aa | 2021-04-01 13:25:28 -0500 | [diff] [blame] | 321 | if (spl_image->os == IH_OS_U_BOOT) { |
| 322 | /* HACK: U-boot expects FDT at a specific address */ |
| 323 | fdt_hack = spl_image->load_addr + spl_image->size; |
| 324 | fdt_hack = (fdt_hack + 3) & ~3; |
| 325 | debug("Relocating FDT to %p\n", spl_image->fdt_addr); |
| 326 | memcpy((void *)fdt_hack, spl_image->fdt_addr, dt_len); |
| 327 | } |
| 328 | } |
| 329 | |
Marek Vasut | 8a9dc16 | 2018-05-13 00:23:17 +0200 | [diff] [blame] | 330 | conf_noffset = fit_conf_get_node((const void *)header, |
| 331 | fit_uname_config); |
| 332 | if (conf_noffset <= 0) |
| 333 | return 0; |
| 334 | |
| 335 | for (idx = 0; |
| 336 | uname = fdt_stringlist_get((const void *)header, conf_noffset, |
| 337 | FIT_LOADABLE_PROP, idx, |
| 338 | NULL), uname; |
| 339 | idx++) |
| 340 | { |
| 341 | #ifdef CONFIG_SPL_FIT_SIGNATURE |
| 342 | images.verify = 1; |
| 343 | #endif |
| 344 | ret = fit_image_load(&images, (ulong)header, |
| 345 | &uname, &fit_uname_config, |
| 346 | IH_ARCH_DEFAULT, IH_TYPE_LOADABLE, -1, |
| 347 | FIT_LOAD_OPTIONAL_NON_ZERO, |
| 348 | &img_data, &img_len); |
| 349 | if (ret < 0) |
| 350 | return ret; |
| 351 | } |
| 352 | |
| 353 | return 0; |
| 354 | } |
| 355 | #endif |
| 356 | |
Pali Rohár | 9baab60 | 2021-07-23 11:14:28 +0200 | [diff] [blame] | 357 | __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] | 358 | const struct spl_boot_device *bootdev, |
Pali Rohár | 9baab60 | 2021-07-23 11:14:28 +0200 | [diff] [blame] | 359 | const void *image_header, size_t size) |
| 360 | { |
| 361 | return -EINVAL; |
| 362 | } |
| 363 | |
Stefan Roese | c110817 | 2020-04-21 09:28:41 +0200 | [diff] [blame] | 364 | __weak int spl_parse_legacy_header(struct spl_image_info *spl_image, |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 365 | const struct legacy_img_hdr *header) |
Stefan Roese | c110817 | 2020-04-21 09:28:41 +0200 | [diff] [blame] | 366 | { |
| 367 | /* LEGACY image not supported */ |
| 368 | debug("Legacy boot image support not enabled, proceeding to other boot methods\n"); |
| 369 | return -EINVAL; |
| 370 | } |
| 371 | |
Simon Glass | 71316c1 | 2016-09-24 18:19:53 -0600 | [diff] [blame] | 372 | int spl_parse_image_header(struct spl_image_info *spl_image, |
Pali Rohár | 2e0429b | 2022-01-14 14:31:38 +0100 | [diff] [blame] | 373 | const struct spl_boot_device *bootdev, |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 374 | const struct legacy_img_hdr *header) |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 375 | { |
John Keeping | 674afa6 | 2021-05-19 15:05:53 +0100 | [diff] [blame] | 376 | #if CONFIG_IS_ENABLED(LOAD_FIT_FULL) |
Marek Vasut | 8a9dc16 | 2018-05-13 00:23:17 +0200 | [diff] [blame] | 377 | int ret = spl_load_fit_image(spl_image, header); |
| 378 | |
| 379 | if (!ret) |
| 380 | return ret; |
| 381 | #endif |
Stefan Roese | 77552b0 | 2012-08-27 12:50:57 +0200 | [diff] [blame] | 382 | if (image_get_magic(header) == IH_MAGIC) { |
Stefan Roese | c110817 | 2020-04-21 09:28:41 +0200 | [diff] [blame] | 383 | int ret; |
Andrew F. Davis | 722a6b1 | 2017-02-16 11:18:39 -0600 | [diff] [blame] | 384 | |
Stefan Roese | c110817 | 2020-04-21 09:28:41 +0200 | [diff] [blame] | 385 | ret = spl_parse_legacy_header(spl_image, header); |
| 386 | if (ret) |
| 387 | return ret; |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 388 | } else { |
Albert ARIBAUD \(3ADEV\) | 8c80eb3 | 2015-03-31 11:40:50 +0200 | [diff] [blame] | 389 | #ifdef CONFIG_SPL_PANIC_ON_RAW_IMAGE |
| 390 | /* |
| 391 | * CONFIG_SPL_PANIC_ON_RAW_IMAGE is defined when the |
| 392 | * code which loads images in SPL cannot guarantee that |
| 393 | * absolutely all read errors will be reported. |
| 394 | * An example is the LPC32XX MLC NAND driver, which |
| 395 | * will consider that a completely unreadable NAND block |
| 396 | * is bad, and thus should be skipped silently. |
| 397 | */ |
| 398 | panic("** no mkimage signature but raw image not supported"); |
Paul Kocialkowski | 85a3772 | 2016-08-24 20:04:42 +0200 | [diff] [blame] | 399 | #endif |
| 400 | |
Tom Rini | 7115007 | 2021-10-30 23:03:48 -0400 | [diff] [blame] | 401 | #if CONFIG_IS_ENABLED(OS_BOOT) |
Nathan Barrett-Morrison | 7a0d880 | 2022-02-02 15:05:18 -0500 | [diff] [blame] | 402 | #if defined(CMD_BOOTI) |
| 403 | ulong start, size; |
| 404 | |
| 405 | if (!booti_setup((ulong)header, &start, &size, 0)) { |
| 406 | spl_image->name = "Linux"; |
| 407 | spl_image->os = IH_OS_LINUX; |
| 408 | spl_image->load_addr = start; |
| 409 | spl_image->entry_point = start; |
| 410 | spl_image->size = size; |
| 411 | debug(SPL_TPL_PROMPT |
| 412 | "payload Image, load addr: 0x%lx size: %d\n", |
| 413 | spl_image->load_addr, spl_image->size); |
| 414 | return 0; |
| 415 | } |
| 416 | #elif defined(CMD_BOOTZ) |
Ladislav Michl | 431889d | 2016-07-12 20:28:14 +0200 | [diff] [blame] | 417 | ulong start, end; |
| 418 | |
| 419 | if (!bootz_setup((ulong)header, &start, &end)) { |
Simon Glass | 71316c1 | 2016-09-24 18:19:53 -0600 | [diff] [blame] | 420 | spl_image->name = "Linux"; |
| 421 | spl_image->os = IH_OS_LINUX; |
| 422 | spl_image->load_addr = CONFIG_SYS_LOAD_ADDR; |
| 423 | spl_image->entry_point = CONFIG_SYS_LOAD_ADDR; |
| 424 | spl_image->size = end - start; |
Simon Glass | d633006 | 2018-11-15 18:43:56 -0700 | [diff] [blame] | 425 | debug(SPL_TPL_PROMPT |
| 426 | "payload zImage, load addr: 0x%lx size: %d\n", |
Simon Glass | 71316c1 | 2016-09-24 18:19:53 -0600 | [diff] [blame] | 427 | spl_image->load_addr, spl_image->size); |
Ladislav Michl | 431889d | 2016-07-12 20:28:14 +0200 | [diff] [blame] | 428 | return 0; |
| 429 | } |
| 430 | #endif |
Nathan Barrett-Morrison | 7a0d880 | 2022-02-02 15:05:18 -0500 | [diff] [blame] | 431 | #endif |
Paul Kocialkowski | 85a3772 | 2016-08-24 20:04:42 +0200 | [diff] [blame] | 432 | |
Pali Rohár | 2e0429b | 2022-01-14 14:31:38 +0100 | [diff] [blame] | 433 | 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] | 434 | return 0; |
| 435 | |
Andrew F. Davis | 24eb39b | 2017-02-16 11:18:38 -0600 | [diff] [blame] | 436 | #ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 437 | /* Signature not found - assume u-boot.bin */ |
Tom Rini | 026b2fe | 2012-08-14 12:06:43 -0700 | [diff] [blame] | 438 | debug("mkimage signature not found - ih_magic = %x\n", |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 439 | header->ih_magic); |
Simon Glass | 71316c1 | 2016-09-24 18:19:53 -0600 | [diff] [blame] | 440 | spl_set_header_raw_uboot(spl_image); |
Andrew F. Davis | 24eb39b | 2017-02-16 11:18:38 -0600 | [diff] [blame] | 441 | #else |
| 442 | /* RAW image not supported, proceed to other boot methods. */ |
Anatolij Gustschin | 2d2531b | 2017-08-01 16:17:12 +0200 | [diff] [blame] | 443 | 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] | 444 | return -EINVAL; |
Albert ARIBAUD \(3ADEV\) | 8c80eb3 | 2015-03-31 11:40:50 +0200 | [diff] [blame] | 445 | #endif |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 446 | } |
Andrew F. Davis | 24eb39b | 2017-02-16 11:18:38 -0600 | [diff] [blame] | 447 | |
Marek Vasut | 7e0f226 | 2016-04-29 00:44:54 +0200 | [diff] [blame] | 448 | return 0; |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 449 | } |
| 450 | |
Allen Martin | a759f1e | 2012-10-19 21:08:22 +0000 | [diff] [blame] | 451 | __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] | 452 | { |
SRICHARAN R | 4a0eb75 | 2013-04-24 00:41:24 +0000 | [diff] [blame] | 453 | typedef void __noreturn (*image_entry_noargs_t)(void); |
| 454 | |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 455 | image_entry_noargs_t image_entry = |
Andre Przywara | 11e1479 | 2017-01-02 11:48:31 +0000 | [diff] [blame] | 456 | (image_entry_noargs_t)spl_image->entry_point; |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 457 | |
Simon Goldschmidt | 30c0740 | 2018-11-02 21:49:52 +0100 | [diff] [blame] | 458 | debug("image entry point: 0x%lx\n", spl_image->entry_point); |
SRICHARAN R | 4a0eb75 | 2013-04-24 00:41:24 +0000 | [diff] [blame] | 459 | image_entry(); |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 460 | } |
| 461 | |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 462 | #if CONFIG_IS_ENABLED(HANDOFF) |
| 463 | /** |
| 464 | * Set up the SPL hand-off information |
| 465 | * |
| 466 | * This is initially empty (zero) but can be written by |
| 467 | */ |
| 468 | static int setup_spl_handoff(void) |
| 469 | { |
| 470 | struct spl_handoff *ho; |
| 471 | |
Simon Glass | 7f3b79a | 2022-01-12 19:26:17 -0700 | [diff] [blame] | 472 | ho = bloblist_ensure(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(struct spl_handoff)); |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 473 | if (!ho) |
| 474 | return -ENOENT; |
| 475 | |
| 476 | return 0; |
| 477 | } |
| 478 | |
Simon Glass | 366291a | 2019-09-25 08:11:18 -0600 | [diff] [blame] | 479 | __weak int handoff_arch_save(struct spl_handoff *ho) |
| 480 | { |
| 481 | return 0; |
| 482 | } |
| 483 | |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 484 | static int write_spl_handoff(void) |
| 485 | { |
| 486 | struct spl_handoff *ho; |
Simon Glass | 366291a | 2019-09-25 08:11:18 -0600 | [diff] [blame] | 487 | int ret; |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 488 | |
Simon Glass | 7f3b79a | 2022-01-12 19:26:17 -0700 | [diff] [blame] | 489 | ho = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(struct spl_handoff)); |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 490 | if (!ho) |
| 491 | return -ENOENT; |
| 492 | handoff_save_dram(ho); |
Simon Glass | 366291a | 2019-09-25 08:11:18 -0600 | [diff] [blame] | 493 | ret = handoff_arch_save(ho); |
| 494 | if (ret) |
| 495 | return ret; |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 496 | debug(SPL_TPL_PROMPT "Wrote SPL handoff\n"); |
| 497 | |
| 498 | return 0; |
| 499 | } |
| 500 | #else |
| 501 | static inline int setup_spl_handoff(void) { return 0; } |
| 502 | static inline int write_spl_handoff(void) { return 0; } |
| 503 | |
| 504 | #endif /* HANDOFF */ |
| 505 | |
Simon Glass | 05e3a0d | 2021-03-15 18:11:15 +1300 | [diff] [blame] | 506 | /** |
| 507 | * get_bootstage_id() - Get the bootstage ID to emit |
| 508 | * |
| 509 | * @start: true if this is for starting SPL, false for ending it |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 510 | * Return: bootstage ID to use |
Simon Glass | 05e3a0d | 2021-03-15 18:11:15 +1300 | [diff] [blame] | 511 | */ |
| 512 | static enum bootstage_id get_bootstage_id(bool start) |
| 513 | { |
| 514 | enum u_boot_phase phase = spl_phase(); |
| 515 | |
| 516 | if (IS_ENABLED(CONFIG_TPL_BUILD) && phase == PHASE_TPL) |
| 517 | return start ? BOOTSTAGE_ID_START_TPL : BOOTSTAGE_ID_END_TPL; |
Simon Glass | f86ca5a | 2022-04-30 00:56:52 -0600 | [diff] [blame] | 518 | else if (IS_ENABLED(CONFIG_VPL_BUILD) && phase == PHASE_VPL) |
| 519 | return start ? BOOTSTAGE_ID_START_VPL : BOOTSTAGE_ID_END_VPL; |
Simon Glass | 05e3a0d | 2021-03-15 18:11:15 +1300 | [diff] [blame] | 520 | else |
| 521 | return start ? BOOTSTAGE_ID_START_SPL : BOOTSTAGE_ID_END_SPL; |
| 522 | } |
| 523 | |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 524 | static int spl_common_init(bool setup_malloc) |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 525 | { |
Simon Glass | f3d46bd | 2015-02-27 22:06:42 -0700 | [diff] [blame] | 526 | int ret; |
| 527 | |
Andy Yan | f1896c4 | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 528 | #if CONFIG_VAL(SYS_MALLOC_F_LEN) |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 529 | if (setup_malloc) { |
Marek Vasut | 94b9e22 | 2016-05-25 02:14:56 +0200 | [diff] [blame] | 530 | #ifdef CONFIG_MALLOC_F_ADDR |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 531 | gd->malloc_base = CONFIG_MALLOC_F_ADDR; |
Marek Vasut | 94b9e22 | 2016-05-25 02:14:56 +0200 | [diff] [blame] | 532 | #endif |
Andy Yan | f1896c4 | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 533 | gd->malloc_limit = CONFIG_VAL(SYS_MALLOC_F_LEN); |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 534 | gd->malloc_ptr = 0; |
| 535 | } |
Tom Rini | 24dafad | 2012-08-13 14:13:07 -0700 | [diff] [blame] | 536 | #endif |
Simon Glass | 31f9f0e | 2019-10-21 17:26:52 -0600 | [diff] [blame] | 537 | ret = bootstage_init(u_boot_first_phase()); |
Simon Glass | 824bb1b | 2017-05-22 05:05:35 -0600 | [diff] [blame] | 538 | if (ret) { |
| 539 | debug("%s: Failed to set up bootstage: ret=%d\n", __func__, |
| 540 | ret); |
| 541 | return ret; |
| 542 | } |
Simon Glass | 31f9f0e | 2019-10-21 17:26:52 -0600 | [diff] [blame] | 543 | #ifdef CONFIG_BOOTSTAGE_STASH |
| 544 | if (!u_boot_first_phase()) { |
| 545 | const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR, |
| 546 | CONFIG_BOOTSTAGE_STASH_SIZE); |
| 547 | |
| 548 | ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE); |
| 549 | if (ret) |
| 550 | debug("%s: Failed to unstash bootstage: ret=%d\n", |
| 551 | __func__, ret); |
| 552 | } |
| 553 | #endif /* CONFIG_BOOTSTAGE_STASH */ |
Simon Glass | 05e3a0d | 2021-03-15 18:11:15 +1300 | [diff] [blame] | 554 | bootstage_mark_name(get_bootstage_id(true), |
| 555 | spl_phase_name(spl_phase())); |
Simon Glass | 4d8d305 | 2018-11-15 18:43:49 -0700 | [diff] [blame] | 556 | #if CONFIG_IS_ENABLED(LOG) |
| 557 | ret = log_init(); |
| 558 | if (ret) { |
| 559 | debug("%s: Failed to set up logging\n", __func__); |
| 560 | return ret; |
| 561 | } |
| 562 | #endif |
Simon Glass | 414cc15 | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 563 | if (CONFIG_IS_ENABLED(OF_REAL)) { |
Simon Glass | f3d46bd | 2015-02-27 22:06:42 -0700 | [diff] [blame] | 564 | ret = fdtdec_setup(); |
| 565 | if (ret) { |
| 566 | debug("fdtdec_setup() returned error %d\n", ret); |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 567 | return ret; |
Simon Glass | f3d46bd | 2015-02-27 22:06:42 -0700 | [diff] [blame] | 568 | } |
| 569 | } |
Philipp Tomsich | f1c6e19 | 2017-06-30 19:02:53 +0200 | [diff] [blame] | 570 | if (CONFIG_IS_ENABLED(DM)) { |
Simon Glass | b67eefd | 2020-05-10 11:39:59 -0600 | [diff] [blame] | 571 | bootstage_start(BOOTSTAGE_ID_ACCUM_DM_SPL, |
Simon Glass | 5256bee | 2019-10-21 17:26:51 -0600 | [diff] [blame] | 572 | spl_phase() == PHASE_TPL ? "dm tpl" : "dm_spl"); |
Tom Rini | 7f73ca4 | 2017-01-14 12:20:23 -0500 | [diff] [blame] | 573 | /* With CONFIG_SPL_OF_PLATDATA, bring in all devices */ |
Simon Glass | 7d23b9c | 2016-07-04 11:58:14 -0600 | [diff] [blame] | 574 | ret = dm_init_and_scan(!CONFIG_IS_ENABLED(OF_PLATDATA)); |
Simon Glass | b67eefd | 2020-05-10 11:39:59 -0600 | [diff] [blame] | 575 | bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_SPL); |
Simon Glass | f3d46bd | 2015-02-27 22:06:42 -0700 | [diff] [blame] | 576 | if (ret) { |
| 577 | debug("dm_init_and_scan() returned error %d\n", ret); |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 578 | return ret; |
Simon Glass | f3d46bd | 2015-02-27 22:06:42 -0700 | [diff] [blame] | 579 | } |
| 580 | } |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 581 | |
| 582 | return 0; |
| 583 | } |
| 584 | |
Alexandru Gagniuc | 58b504e | 2021-04-08 11:56:11 -0500 | [diff] [blame] | 585 | void spl_set_bd(void) |
York Sun | d1fc0a3 | 2017-09-28 08:42:10 -0700 | [diff] [blame] | 586 | { |
Simon Glass | c21f407 | 2018-11-15 18:43:58 -0700 | [diff] [blame] | 587 | /* |
| 588 | * NOTE: On some platforms (e.g. x86) bdata may be in flash and not |
| 589 | * writeable. |
| 590 | */ |
Alexandru Gagniuc | 58b504e | 2021-04-08 11:56:11 -0500 | [diff] [blame] | 591 | if (!gd->bd) |
| 592 | gd->bd = &bdata; |
York Sun | d1fc0a3 | 2017-09-28 08:42:10 -0700 | [diff] [blame] | 593 | } |
| 594 | |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 595 | int spl_early_init(void) |
| 596 | { |
| 597 | int ret; |
| 598 | |
Simon Goldschmidt | 94cb986 | 2018-08-13 11:24:05 +0200 | [diff] [blame] | 599 | debug("%s\n", __func__); |
| 600 | |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 601 | ret = spl_common_init(true); |
| 602 | if (ret) |
| 603 | return ret; |
| 604 | gd->flags |= GD_FLG_SPL_EARLY_INIT; |
| 605 | |
| 606 | return 0; |
| 607 | } |
| 608 | |
| 609 | int spl_init(void) |
| 610 | { |
| 611 | int ret; |
Tom Rini | cf334ed | 2017-03-20 14:19:27 -0400 | [diff] [blame] | 612 | bool setup_malloc = !(IS_ENABLED(CONFIG_SPL_STACK_R) && |
| 613 | IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIMPLE)); |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 614 | |
Simon Goldschmidt | 94cb986 | 2018-08-13 11:24:05 +0200 | [diff] [blame] | 615 | debug("%s\n", __func__); |
| 616 | |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 617 | if (!(gd->flags & GD_FLG_SPL_EARLY_INIT)) { |
Tom Rini | cf334ed | 2017-03-20 14:19:27 -0400 | [diff] [blame] | 618 | ret = spl_common_init(setup_malloc); |
Eddie Cai | 340f418 | 2017-03-15 08:43:28 -0600 | [diff] [blame] | 619 | if (ret) |
| 620 | return ret; |
| 621 | } |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 622 | gd->flags |= GD_FLG_SPL_INIT; |
Aneesh V | 2d01dd9 | 2011-10-21 12:29:34 -0400 | [diff] [blame] | 623 | |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 624 | return 0; |
| 625 | } |
| 626 | |
Nikita Kiryanov | f101e4b | 2015-11-08 17:11:51 +0200 | [diff] [blame] | 627 | #ifndef BOOT_DEVICE_NONE |
| 628 | #define BOOT_DEVICE_NONE 0xdeadbeef |
| 629 | #endif |
| 630 | |
Nikita Kiryanov | f101e4b | 2015-11-08 17:11:51 +0200 | [diff] [blame] | 631 | __weak void board_boot_order(u32 *spl_boot_list) |
| 632 | { |
| 633 | spl_boot_list[0] = spl_boot_device(); |
| 634 | } |
| 635 | |
Pali Rohár | c10939d | 2022-01-14 14:31:40 +0100 | [diff] [blame] | 636 | __weak int spl_check_board_image(struct spl_image_info *spl_image, |
| 637 | const struct spl_boot_device *bootdev) |
| 638 | { |
| 639 | return 0; |
| 640 | } |
| 641 | |
Simon Glass | 29d357d | 2016-11-30 15:30:52 -0700 | [diff] [blame] | 642 | static int spl_load_image(struct spl_image_info *spl_image, |
| 643 | struct spl_image_loader *loader) |
Nikita Kiryanov | 5211b87 | 2015-11-08 17:11:50 +0200 | [diff] [blame] | 644 | { |
Simon Goldschmidt | dae5c2d | 2019-02-10 21:34:37 +0100 | [diff] [blame] | 645 | int ret; |
Simon Glass | ecdfd69 | 2016-09-24 18:19:57 -0600 | [diff] [blame] | 646 | struct spl_boot_device bootdev; |
| 647 | |
Simon Glass | 29d357d | 2016-11-30 15:30:52 -0700 | [diff] [blame] | 648 | bootdev.boot_device = loader->boot_device; |
Simon Glass | ecdfd69 | 2016-09-24 18:19:57 -0600 | [diff] [blame] | 649 | bootdev.boot_device_name = NULL; |
| 650 | |
Simon Goldschmidt | dae5c2d | 2019-02-10 21:34:37 +0100 | [diff] [blame] | 651 | ret = loader->load_image(spl_image, &bootdev); |
| 652 | #ifdef CONFIG_SPL_LEGACY_IMAGE_CRC_CHECK |
| 653 | if (!ret && spl_image->dcrc_length) { |
| 654 | /* check data crc */ |
| 655 | ulong dcrc = crc32_wd(0, (unsigned char *)spl_image->dcrc_data, |
| 656 | spl_image->dcrc_length, CHUNKSZ_CRC32); |
| 657 | if (dcrc != spl_image->dcrc) { |
| 658 | puts("SPL: Image data CRC check failed!\n"); |
| 659 | ret = -EINVAL; |
| 660 | } |
| 661 | } |
| 662 | #endif |
Pali Rohár | c10939d | 2022-01-14 14:31:40 +0100 | [diff] [blame] | 663 | if (!ret) |
| 664 | ret = spl_check_board_image(spl_image, &bootdev); |
| 665 | |
Simon Goldschmidt | dae5c2d | 2019-02-10 21:34:37 +0100 | [diff] [blame] | 666 | return ret; |
Simon Glass | 540bfe7 | 2016-11-30 15:30:51 -0700 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | /** |
Miquel Raynal | fd4ee98 | 2019-05-07 14:18:43 +0200 | [diff] [blame] | 670 | * 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] | 671 | * |
| 672 | * @spl_image: Place to put the image details if successful |
| 673 | * @spl_boot_list: List of boot devices to try |
| 674 | * @count: Number of elements in spl_boot_list |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 675 | * Return: 0 if OK, -ENODEV if there were no boot devices |
Simon Glass | 7d84fbb | 2021-07-05 16:32:57 -0600 | [diff] [blame] | 676 | * if CONFIG_SHOW_ERRORS is enabled, returns -ENXIO if there were |
| 677 | * devices but none worked |
Simon Glass | 540bfe7 | 2016-11-30 15:30:51 -0700 | [diff] [blame] | 678 | */ |
| 679 | static int boot_from_devices(struct spl_image_info *spl_image, |
| 680 | u32 spl_boot_list[], int count) |
| 681 | { |
Simon Glass | 5a61bf1 | 2022-10-20 18:23:07 -0600 | [diff] [blame] | 682 | struct spl_image_loader *drv = |
| 683 | ll_entry_start(struct spl_image_loader, spl_image_loader); |
| 684 | const int n_ents = |
| 685 | ll_entry_count(struct spl_image_loader, spl_image_loader); |
Simon Glass | 7d84fbb | 2021-07-05 16:32:57 -0600 | [diff] [blame] | 686 | int ret = -ENODEV; |
Simon Glass | 540bfe7 | 2016-11-30 15:30:51 -0700 | [diff] [blame] | 687 | int i; |
| 688 | |
| 689 | for (i = 0; i < count && spl_boot_list[i] != BOOT_DEVICE_NONE; i++) { |
| 690 | struct spl_image_loader *loader; |
Simon Glass | 7d84fbb | 2021-07-05 16:32:57 -0600 | [diff] [blame] | 691 | int bootdev = spl_boot_list[i]; |
Simon Glass | 540bfe7 | 2016-11-30 15:30:51 -0700 | [diff] [blame] | 692 | |
Simon Glass | 7d84fbb | 2021-07-05 16:32:57 -0600 | [diff] [blame] | 693 | if (CONFIG_IS_ENABLED(SHOW_ERRORS)) |
| 694 | ret = -ENXIO; |
Simon Glass | 5a61bf1 | 2022-10-20 18:23:07 -0600 | [diff] [blame] | 695 | for (loader = drv; loader != drv + n_ents; loader++) { |
| 696 | if (bootdev != loader->boot_device) |
| 697 | continue; |
| 698 | if (!CONFIG_IS_ENABLED(SILENT_CONSOLE)) { |
| 699 | if (loader) |
| 700 | printf("Trying to boot from %s\n", |
| 701 | spl_loader_name(loader)); |
| 702 | else if (CONFIG_IS_ENABLED(SHOW_ERRORS)) { |
| 703 | printf(SPL_TPL_PROMPT |
| 704 | "Unsupported Boot Device %d\n", |
| 705 | bootdev); |
| 706 | } else { |
| 707 | puts(SPL_TPL_PROMPT |
| 708 | "Unsupported Boot Device!\n"); |
| 709 | } |
| 710 | } |
| 711 | if (loader && |
| 712 | !spl_load_image(spl_image, loader)) { |
| 713 | spl_image->boot_device = bootdev; |
| 714 | return 0; |
| 715 | } |
Philipp Tomsich | de5dd4c | 2018-05-24 17:15:50 +0200 | [diff] [blame] | 716 | } |
Simon Glass | 540bfe7 | 2016-11-30 15:30:51 -0700 | [diff] [blame] | 717 | } |
| 718 | |
Simon Glass | 7d84fbb | 2021-07-05 16:32:57 -0600 | [diff] [blame] | 719 | return ret; |
Nikita Kiryanov | 5211b87 | 2015-11-08 17:11:50 +0200 | [diff] [blame] | 720 | } |
| 721 | |
Philippe Reynes | a9a3aad | 2019-09-19 16:18:39 +0200 | [diff] [blame] | 722 | #if defined(CONFIG_SPL_FRAMEWORK_BOARD_INIT_F) |
| 723 | void board_init_f(ulong dummy) |
| 724 | { |
| 725 | if (CONFIG_IS_ENABLED(OF_CONTROL)) { |
| 726 | int ret; |
| 727 | |
| 728 | ret = spl_early_init(); |
| 729 | if (ret) { |
| 730 | debug("spl_early_init() failed: %d\n", ret); |
| 731 | hang(); |
| 732 | } |
| 733 | } |
| 734 | |
Samuel Holland | 3988be5 | 2020-05-07 18:08:10 -0500 | [diff] [blame] | 735 | preloader_console_init(); |
Philippe Reynes | a9a3aad | 2019-09-19 16:18:39 +0200 | [diff] [blame] | 736 | } |
| 737 | #endif |
| 738 | |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 739 | void board_init_r(gd_t *dummy1, ulong dummy2) |
| 740 | { |
Simon Glass | d32b2d1 | 2016-09-24 18:20:17 -0600 | [diff] [blame] | 741 | u32 spl_boot_list[] = { |
| 742 | BOOT_DEVICE_NONE, |
| 743 | BOOT_DEVICE_NONE, |
| 744 | BOOT_DEVICE_NONE, |
| 745 | BOOT_DEVICE_NONE, |
| 746 | BOOT_DEVICE_NONE, |
| 747 | }; |
| 748 | struct spl_image_info spl_image; |
Simon Glass | e945a72 | 2018-11-15 18:43:51 -0700 | [diff] [blame] | 749 | int ret; |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 750 | |
Simon Glass | d633006 | 2018-11-15 18:43:56 -0700 | [diff] [blame] | 751 | debug(">>" SPL_TPL_PROMPT "board_init_r()\n"); |
York Sun | d1fc0a3 | 2017-09-28 08:42:10 -0700 | [diff] [blame] | 752 | |
Alexandru Gagniuc | 58b504e | 2021-04-08 11:56:11 -0500 | [diff] [blame] | 753 | spl_set_bd(); |
| 754 | |
Tom Rini | 10f6e4d | 2022-05-27 12:48:32 -0400 | [diff] [blame] | 755 | #if defined(CONFIG_SYS_SPL_MALLOC) |
| 756 | mem_malloc_init(SYS_SPL_MALLOC_START, CONFIG_SYS_SPL_MALLOC_SIZE); |
Simon Glass | 070d00b | 2015-06-23 15:39:10 -0600 | [diff] [blame] | 757 | gd->flags |= GD_FLG_FULL_MALLOC_INIT; |
| 758 | #endif |
| 759 | if (!(gd->flags & GD_FLG_SPL_INIT)) { |
| 760 | if (spl_init()) |
| 761 | hang(); |
| 762 | } |
Anatolij Gustschin | f9d42d8 | 2017-08-28 17:46:33 +0200 | [diff] [blame] | 763 | #if !defined(CONFIG_PPC) && !defined(CONFIG_ARCH_MX6) |
Stefan Roese | ea8256f | 2012-08-23 08:34:21 +0200 | [diff] [blame] | 764 | /* |
| 765 | * timer_init() does not exist on PPC systems. The timer is initialized |
| 766 | * and enabled (decrementer) in interrupt_init() here. |
| 767 | */ |
Ilya Yanok | 4063c77 | 2012-09-17 10:26:26 +0000 | [diff] [blame] | 768 | timer_init(); |
Stefan Roese | ea8256f | 2012-08-23 08:34:21 +0200 | [diff] [blame] | 769 | #endif |
Simon Glass | 3cd7198 | 2019-09-25 08:11:19 -0600 | [diff] [blame] | 770 | if (CONFIG_IS_ENABLED(BLOBLIST)) { |
| 771 | ret = bloblist_init(); |
| 772 | if (ret) { |
| 773 | debug("%s: Failed to set up bloblist: ret=%d\n", |
| 774 | __func__, ret); |
| 775 | puts(SPL_TPL_PROMPT "Cannot set up bloblist\n"); |
| 776 | hang(); |
| 777 | } |
| 778 | } |
| 779 | if (CONFIG_IS_ENABLED(HANDOFF)) { |
| 780 | int ret; |
| 781 | |
| 782 | ret = setup_spl_handoff(); |
| 783 | if (ret) { |
| 784 | puts(SPL_TPL_PROMPT "Cannot set up SPL handoff\n"); |
| 785 | hang(); |
| 786 | } |
| 787 | } |
Ilya Yanok | 4063c77 | 2012-09-17 10:26:26 +0000 | [diff] [blame] | 788 | |
Eddie James | 1d99e67 | 2022-02-07 17:09:01 -0600 | [diff] [blame] | 789 | if (CONFIG_IS_ENABLED(GPIO_HOG)) |
| 790 | gpio_hog_probe_all(); |
| 791 | |
Kever Yang | af2f442 | 2018-01-20 18:00:26 +0800 | [diff] [blame] | 792 | #if CONFIG_IS_ENABLED(BOARD_INIT) |
Tom Rini | ee08a82 | 2011-11-23 05:13:06 +0000 | [diff] [blame] | 793 | spl_board_init(); |
| 794 | #endif |
| 795 | |
Simon Glass | 078111b | 2021-07-10 21:14:28 -0600 | [diff] [blame] | 796 | #if defined(CONFIG_SPL_WATCHDOG) && CONFIG_IS_ENABLED(WDT) |
Stefan Roese | 0698528 | 2019-04-11 15:58:44 +0200 | [diff] [blame] | 797 | initr_watchdog(); |
| 798 | #endif |
| 799 | |
Heiko Stuebner | a343b4f | 2020-05-25 19:57:25 +0200 | [diff] [blame] | 800 | if (IS_ENABLED(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF) || |
| 801 | IS_ENABLED(CONFIG_SPL_ATF)) |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 802 | dram_init_banksize(); |
| 803 | |
Lukasz Majewski | a8be249 | 2018-05-02 16:10:54 +0200 | [diff] [blame] | 804 | bootcount_inc(); |
| 805 | |
Simon Glass | 4f6500a | 2022-05-08 04:39:27 -0600 | [diff] [blame] | 806 | /* Dump driver model states to aid analysis */ |
| 807 | if (CONFIG_IS_ENABLED(DM_STATS)) { |
| 808 | struct dm_stats mem; |
| 809 | |
| 810 | dm_get_mem(&mem); |
| 811 | dm_dump_mem(&mem); |
| 812 | } |
| 813 | |
Simon Glass | d32b2d1 | 2016-09-24 18:20:17 -0600 | [diff] [blame] | 814 | memset(&spl_image, '\0', sizeof(spl_image)); |
Vikas Manocha | 5bf5250 | 2017-04-07 15:38:13 -0700 | [diff] [blame] | 815 | #ifdef CONFIG_SYS_SPL_ARGS_ADDR |
| 816 | spl_image.arg = (void *)CONFIG_SYS_SPL_ARGS_ADDR; |
| 817 | #endif |
Philipp Tomsich | de5dd4c | 2018-05-24 17:15:50 +0200 | [diff] [blame] | 818 | spl_image.boot_device = BOOT_DEVICE_NONE; |
Nikita Kiryanov | f101e4b | 2015-11-08 17:11:51 +0200 | [diff] [blame] | 819 | board_boot_order(spl_boot_list); |
Nikita Kiryanov | f101e4b | 2015-11-08 17:11:51 +0200 | [diff] [blame] | 820 | |
Simon Glass | 7d84fbb | 2021-07-05 16:32:57 -0600 | [diff] [blame] | 821 | ret = boot_from_devices(&spl_image, spl_boot_list, |
| 822 | ARRAY_SIZE(spl_boot_list)); |
| 823 | if (ret) { |
| 824 | if (CONFIG_IS_ENABLED(SHOW_ERRORS) && |
| 825 | CONFIG_IS_ENABLED(LIBCOMMON_SUPPORT)) |
| 826 | printf(SPL_TPL_PROMPT "failed to boot from all boot devices (err=%d)\n", |
| 827 | ret); |
| 828 | else |
| 829 | puts(SPL_TPL_PROMPT "failed to boot from all boot devices\n"); |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 830 | hang(); |
Nikita Kiryanov | f101e4b | 2015-11-08 17:11:51 +0200 | [diff] [blame] | 831 | } |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 832 | |
Philipp Tomsich | de5dd4c | 2018-05-24 17:15:50 +0200 | [diff] [blame] | 833 | spl_perform_fixups(&spl_image); |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 834 | if (CONFIG_IS_ENABLED(HANDOFF)) { |
| 835 | ret = write_spl_handoff(); |
| 836 | if (ret) |
| 837 | printf(SPL_TPL_PROMPT |
| 838 | "SPL hand-off write failed (err=%d)\n", ret); |
| 839 | } |
Simon Glass | e945a72 | 2018-11-15 18:43:51 -0700 | [diff] [blame] | 840 | if (CONFIG_IS_ENABLED(BLOBLIST)) { |
| 841 | ret = bloblist_finish(); |
| 842 | if (ret) |
| 843 | printf("Warning: Failed to finish bloblist (ret=%d)\n", |
| 844 | ret); |
| 845 | } |
Philipp Tomsich | de5dd4c | 2018-05-24 17:15:50 +0200 | [diff] [blame] | 846 | |
Simon Schwarz | 9ea5c6e | 2011-09-14 15:33:34 -0400 | [diff] [blame] | 847 | switch (spl_image.os) { |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 848 | case IH_OS_U_BOOT: |
Simon Glass | 1a9e75b | 2021-02-06 09:57:27 -0700 | [diff] [blame] | 849 | debug("Jumping to %s...\n", spl_phase_name(spl_next_phase())); |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 850 | break; |
Philipp Tomsich | 1d37909 | 2017-09-13 21:29:35 +0200 | [diff] [blame] | 851 | #if CONFIG_IS_ENABLED(ATF) |
| 852 | case IH_OS_ARM_TRUSTED_FIRMWARE: |
| 853 | debug("Jumping to U-Boot via ARM Trusted Firmware\n"); |
Heiko Stuebner | a343b4f | 2020-05-25 19:57:25 +0200 | [diff] [blame] | 854 | spl_fixup_fdt(spl_image.fdt_addr); |
Philipp Tomsich | 1d37909 | 2017-09-13 21:29:35 +0200 | [diff] [blame] | 855 | spl_invoke_atf(&spl_image); |
| 856 | break; |
| 857 | #endif |
Patrick Delaunay | 51827f9 | 2021-09-02 11:56:16 +0200 | [diff] [blame] | 858 | #if CONFIG_IS_ENABLED(OPTEE_IMAGE) |
Kever Yang | 70fe287 | 2018-08-23 17:17:59 +0800 | [diff] [blame] | 859 | case IH_OS_TEE: |
| 860 | debug("Jumping to U-Boot via OP-TEE\n"); |
Alexandru Gagniuc | a25d6b6 | 2021-07-15 14:19:24 -0500 | [diff] [blame] | 861 | spl_board_prepare_for_optee(spl_image.fdt_addr); |
Ricardo Salveti | 949eb22 | 2021-10-20 15:12:06 +0300 | [diff] [blame] | 862 | jump_to_image_optee(&spl_image); |
Kever Yang | 70fe287 | 2018-08-23 17:17:59 +0800 | [diff] [blame] | 863 | break; |
| 864 | #endif |
Lukas Auer | 5e30e45 | 2019-08-21 21:14:44 +0200 | [diff] [blame] | 865 | #if CONFIG_IS_ENABLED(OPENSBI) |
| 866 | case IH_OS_OPENSBI: |
| 867 | debug("Jumping to U-Boot via RISC-V OpenSBI\n"); |
| 868 | spl_invoke_opensbi(&spl_image); |
| 869 | break; |
| 870 | #endif |
Tom Rini | 7115007 | 2021-10-30 23:03:48 -0400 | [diff] [blame] | 871 | #if CONFIG_IS_ENABLED(OS_BOOT) |
Simon Schwarz | 379c19a | 2012-03-15 04:01:38 +0000 | [diff] [blame] | 872 | case IH_OS_LINUX: |
| 873 | debug("Jumping to Linux\n"); |
Heiko Stuebner | a343b4f | 2020-05-25 19:57:25 +0200 | [diff] [blame] | 874 | #if defined(CONFIG_SYS_SPL_ARGS_ADDR) |
| 875 | spl_fixup_fdt((void *)CONFIG_SYS_SPL_ARGS_ADDR); |
| 876 | #endif |
Simon Schwarz | 379c19a | 2012-03-15 04:01:38 +0000 | [diff] [blame] | 877 | spl_board_prepare_for_linux(); |
Vikas Manocha | 5bf5250 | 2017-04-07 15:38:13 -0700 | [diff] [blame] | 878 | jump_to_image_linux(&spl_image); |
Simon Schwarz | 379c19a | 2012-03-15 04:01:38 +0000 | [diff] [blame] | 879 | #endif |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 880 | default: |
Tom Rini | 4212098 | 2012-08-27 14:58:28 -0700 | [diff] [blame] | 881 | debug("Unsupported OS image.. Jumping nevertheless..\n"); |
Aneesh V | 8cf686e | 2011-07-21 09:10:27 -0400 | [diff] [blame] | 882 | } |
Andy Yan | f1896c4 | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 883 | #if CONFIG_VAL(SYS_MALLOC_F_LEN) && !defined(CONFIG_SYS_SPL_MALLOC_SIZE) |
Simon Goldschmidt | 30c0740 | 2018-11-02 21:49:52 +0100 | [diff] [blame] | 884 | debug("SPL malloc() used 0x%lx bytes (%ld KB)\n", gd->malloc_ptr, |
Simon Glass | fb4f5e7 | 2014-11-10 17:16:45 -0700 | [diff] [blame] | 885 | gd->malloc_ptr / 1024); |
| 886 | #endif |
Simon Glass | 05e3a0d | 2021-03-15 18:11:15 +1300 | [diff] [blame] | 887 | bootstage_mark_name(get_bootstage_id(false), "end phase"); |
Simon Glass | 824bb1b | 2017-05-22 05:05:35 -0600 | [diff] [blame] | 888 | #ifdef CONFIG_BOOTSTAGE_STASH |
Simon Glass | 824bb1b | 2017-05-22 05:05:35 -0600 | [diff] [blame] | 889 | ret = bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR, |
| 890 | CONFIG_BOOTSTAGE_STASH_SIZE); |
| 891 | if (ret) |
| 892 | debug("Failed to stash bootstage: err=%d\n", ret); |
| 893 | #endif |
Kever Yang | a8c5112 | 2017-09-13 18:24:24 +0800 | [diff] [blame] | 894 | |
Michal Simek | 3a3b914 | 2016-05-10 07:54:20 +0200 | [diff] [blame] | 895 | spl_board_prepare_for_boot(); |
Allen Martin | a759f1e | 2012-10-19 21:08:22 +0000 | [diff] [blame] | 896 | jump_to_image_no_args(&spl_image); |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 897 | } |
| 898 | |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 899 | /* |
| 900 | * This requires UART clocks to be enabled. In order for this to work the |
| 901 | * caller must ensure that the gd pointer is valid. |
| 902 | */ |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 903 | void preloader_console_init(void) |
| 904 | { |
Simon Glass | 2a73606 | 2021-08-08 12:20:12 -0600 | [diff] [blame] | 905 | #ifdef CONFIG_SPL_SERIAL |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 906 | gd->baudrate = CONFIG_BAUDRATE; |
| 907 | |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 908 | serial_init(); /* serial communications setup */ |
| 909 | |
Ilya Yanok | b88befa | 2011-11-01 13:16:03 +0000 | [diff] [blame] | 910 | gd->have_console = 1; |
| 911 | |
Simon Glass | aedc08b | 2018-11-15 18:43:57 -0700 | [diff] [blame] | 912 | #if CONFIG_IS_ENABLED(BANNER_PRINT) |
Simon Glass | d633006 | 2018-11-15 18:43:56 -0700 | [diff] [blame] | 913 | puts("\nU-Boot " SPL_TPL_NAME " " PLAIN_VERSION " (" U_BOOT_DATE " - " |
| 914 | U_BOOT_TIME " " U_BOOT_TZ ")\n"); |
Anatolij Gustschin | 0292bc0 | 2018-01-25 18:45:22 +0100 | [diff] [blame] | 915 | #endif |
Tom Rini | 861a86f | 2012-08-13 11:37:56 -0700 | [diff] [blame] | 916 | #ifdef CONFIG_SPL_DISPLAY_PRINT |
| 917 | spl_display_print(); |
| 918 | #endif |
Alex Kiernan | 117a0e0 | 2018-04-19 04:32:51 +0000 | [diff] [blame] | 919 | #endif |
Samuel Holland | 3988be5 | 2020-05-07 18:08:10 -0500 | [diff] [blame] | 920 | } |
Simon Glass | db91035 | 2015-03-03 08:03:00 -0700 | [diff] [blame] | 921 | |
| 922 | /** |
Simon Goldschmidt | d8c0332 | 2019-07-16 22:30:36 +0200 | [diff] [blame] | 923 | * This function is called before the stack is changed from initial stack to |
| 924 | * relocated stack. It tries to dump the stack size used |
| 925 | */ |
| 926 | __weak void spl_relocate_stack_check(void) |
| 927 | { |
| 928 | #if CONFIG_IS_ENABLED(SYS_REPORT_STACK_F_USAGE) |
| 929 | ulong init_sp = gd->start_addr_sp; |
| 930 | ulong stack_bottom = init_sp - CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK); |
| 931 | u8 *ptr = (u8 *)stack_bottom; |
| 932 | ulong i; |
| 933 | |
| 934 | for (i = 0; i < CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK); i++) { |
| 935 | if (*ptr != CONFIG_VAL(SYS_STACK_F_CHECK_BYTE)) |
| 936 | break; |
| 937 | ptr++; |
| 938 | } |
| 939 | printf("SPL initial stack usage: %lu bytes\n", |
| 940 | CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK) - i); |
| 941 | #endif |
| 942 | } |
| 943 | |
| 944 | /** |
Simon Glass | db91035 | 2015-03-03 08:03:00 -0700 | [diff] [blame] | 945 | * spl_relocate_stack_gd() - Relocate stack ready for board_init_r() execution |
| 946 | * |
| 947 | * Sometimes board_init_f() runs with a stack in SRAM but we want to use SDRAM |
| 948 | * for the main board_init_r() execution. This is typically because we need |
| 949 | * more stack space for things like the MMC sub-system. |
| 950 | * |
| 951 | * This function calculates the stack position, copies the global_data into |
Albert ARIBAUD | adc421e | 2015-11-25 17:56:33 +0100 | [diff] [blame] | 952 | * place, sets the new gd (except for ARM, for which setting GD within a C |
| 953 | * function may not always work) and returns the new stack position. The |
| 954 | * caller is responsible for setting up the sp register and, in the case |
| 955 | * of ARM, setting up gd. |
| 956 | * |
| 957 | * All of this is done using the same layout and alignments as done in |
| 958 | * board_init_f_init_reserve() / board_init_f_alloc_reserve(). |
Simon Glass | db91035 | 2015-03-03 08:03:00 -0700 | [diff] [blame] | 959 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 960 | * Return: new stack location, or 0 to use the same stack |
Simon Glass | db91035 | 2015-03-03 08:03:00 -0700 | [diff] [blame] | 961 | */ |
| 962 | ulong spl_relocate_stack_gd(void) |
| 963 | { |
| 964 | #ifdef CONFIG_SPL_STACK_R |
| 965 | gd_t *new_gd; |
Albert ARIBAUD | adc421e | 2015-11-25 17:56:33 +0100 | [diff] [blame] | 966 | ulong ptr = CONFIG_SPL_STACK_R_ADDR; |
Simon Glass | db91035 | 2015-03-03 08:03:00 -0700 | [diff] [blame] | 967 | |
Simon Goldschmidt | d8c0332 | 2019-07-16 22:30:36 +0200 | [diff] [blame] | 968 | if (CONFIG_IS_ENABLED(SYS_REPORT_STACK_F_USAGE)) |
| 969 | spl_relocate_stack_check(); |
| 970 | |
Philipp Tomsich | ae2cee2 | 2017-07-28 11:06:03 +0200 | [diff] [blame] | 971 | #if defined(CONFIG_SPL_SYS_MALLOC_SIMPLE) && CONFIG_VAL(SYS_MALLOC_F_LEN) |
Hans de Goede | dcfcb8d | 2015-09-13 15:04:17 +0200 | [diff] [blame] | 972 | if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) { |
Simon Goldschmidt | 438dcab | 2019-02-26 22:27:52 +0100 | [diff] [blame] | 973 | debug("SPL malloc() before relocation used 0x%lx bytes (%ld KB)\n", |
| 974 | gd->malloc_ptr, gd->malloc_ptr / 1024); |
Hans de Goede | dcfcb8d | 2015-09-13 15:04:17 +0200 | [diff] [blame] | 975 | ptr -= CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN; |
| 976 | gd->malloc_base = ptr; |
| 977 | gd->malloc_limit = CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN; |
| 978 | gd->malloc_ptr = 0; |
| 979 | } |
| 980 | #endif |
Albert ARIBAUD | adc421e | 2015-11-25 17:56:33 +0100 | [diff] [blame] | 981 | /* Get stack position: use 8-byte alignment for ABI compliance */ |
| 982 | ptr = CONFIG_SPL_STACK_R_ADDR - roundup(sizeof(gd_t),16); |
| 983 | new_gd = (gd_t *)ptr; |
| 984 | memcpy(new_gd, (void *)gd, sizeof(gd_t)); |
Simon Glass | 2f11cd9 | 2016-11-13 14:21:58 -0700 | [diff] [blame] | 985 | #if CONFIG_IS_ENABLED(DM) |
| 986 | dm_fixup_for_gd_move(new_gd); |
| 987 | #endif |
Lukas Auer | c7e1eff | 2019-08-21 21:14:46 +0200 | [diff] [blame] | 988 | #if !defined(CONFIG_ARM) && !defined(CONFIG_RISCV) |
Albert ARIBAUD | adc421e | 2015-11-25 17:56:33 +0100 | [diff] [blame] | 989 | gd = new_gd; |
| 990 | #endif |
Simon Glass | db91035 | 2015-03-03 08:03:00 -0700 | [diff] [blame] | 991 | return ptr; |
| 992 | #else |
| 993 | return 0; |
| 994 | #endif |
| 995 | } |
Simon Glass | c660444 | 2019-11-14 12:57:17 -0700 | [diff] [blame] | 996 | |
Philippe Reynes | 4d145f2 | 2020-12-11 19:56:47 +0100 | [diff] [blame] | 997 | #if defined(CONFIG_BOOTCOUNT_LIMIT) && \ |
| 998 | ((!defined(CONFIG_TPL_BUILD) && !defined(CONFIG_SPL_BOOTCOUNT_LIMIT)) || \ |
| 999 | (defined(CONFIG_TPL_BUILD) && !defined(CONFIG_TPL_BOOTCOUNT_LIMIT))) |
Simon Glass | c660444 | 2019-11-14 12:57:17 -0700 | [diff] [blame] | 1000 | void bootcount_store(ulong a) |
| 1001 | { |
| 1002 | } |
| 1003 | |
| 1004 | ulong bootcount_load(void) |
| 1005 | { |
| 1006 | return 0; |
| 1007 | } |
| 1008 | #endif |