blob: 7794ddccade187a91eafa942ba5e4dda47d20bf9 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Aneesh Vb8e60b92011-07-21 09:10:21 -04002/*
3 * (C) Copyright 2010
4 * Texas Instruments, <www.ti.com>
5 *
6 * Aneesh V <aneesh@ti.com>
Aneesh Vb8e60b92011-07-21 09:10:21 -04007 */
Philipp Tomsich60e15782017-06-30 19:02:53 +02008
Tom Rinidec7ea02024-05-20 13:35:03 -06009#include <config.h>
Simon Glass4e0a52d2018-11-15 18:43:51 -070010#include <bloblist.h>
Simon Glass867a3982017-11-13 18:55:03 -070011#include <binman_sym.h>
Simon Glass1ea97892020-05-10 11:40:00 -060012#include <bootstage.h>
Simon Glass1801a3e2014-11-10 17:16:46 -070013#include <dm.h>
Simon Glasse14f1a22018-11-15 18:44:09 -070014#include <handoff.h>
Simon Glassf11478f2019-12-28 10:45:07 -070015#include <hang.h>
Simon Glass97589732020-05-10 11:40:02 -060016#include <init.h>
Simon Glass9b61c7c2019-11-14 12:57:41 -070017#include <irq_func.h>
Simon Glass0f2af882020-05-10 11:40:05 -060018#include <log.h>
Simon Glass2192e982021-03-07 17:35:14 -070019#include <mapmem.h>
Simon Glass36736182019-11-14 12:57:24 -070020#include <serial.h>
Tom Rini28591df2012-08-13 12:03:19 -070021#include <spl.h>
Sean Anderson3a4a2b72023-11-08 11:48:47 -050022#include <spl_load.h>
Tom Rini166e3222022-05-27 12:48:32 -040023#include <system-constants.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060024#include <asm/global_data.h>
Eddie James652b8692022-02-07 17:09:01 -060025#include <asm-generic/gpio.h>
Simon Schwarz992dcf72011-09-14 15:29:26 -040026#include <nand.h>
Aneesh V13a74c12011-07-21 09:10:27 -040027#include <fat.h>
Simon Glass48b6c6b2019-11-14 12:57:16 -070028#include <u-boot/crc.h>
Pali Rohár6e1f0852021-08-02 15:18:38 +020029#if CONFIG_IS_ENABLED(BANNER_PRINT)
30#include <timestamp.h>
31#endif
Simon Glass50402412011-10-10 08:55:19 +000032#include <version.h>
Aneesh V13a74c12011-07-21 09:10:27 -040033#include <image.h>
Aneesh V0560be22011-10-21 12:29:34 -040034#include <malloc.h>
Simon Glass0e864562019-10-21 17:26:52 -060035#include <mapmem.h>
Simon Glass1801a3e2014-11-10 17:16:46 -070036#include <dm/root.h>
Simon Glass099dc1f2022-05-08 04:39:27 -060037#include <dm/util.h>
Nikhil M Jaineda07d62023-04-10 14:19:13 +053038#include <dm/device-internal.h>
39#include <dm/uclass-internal.h>
Andreas Müller0cda7a42012-01-04 15:26:24 +000040#include <linux/compiler.h>
B, Ravi4cf02b12017-04-18 17:27:27 +053041#include <fdt_support.h>
Lukasz Majewskia4858602018-05-02 16:10:54 +020042#include <bootcount.h>
Stefan Roese502acb02019-04-11 15:58:44 +020043#include <wdt.h>
Devarsh Thakkar84e08342023-12-05 21:25:16 +053044#include <video.h>
Aneesh Vb8e60b92011-07-21 09:10:21 -040045
46DECLARE_GLOBAL_DATA_PTR;
Alper Nebi Yasak9634dc92022-06-18 15:13:11 +030047DECLARE_BINMAN_MAGIC_SYM;
Aneesh Vb8e60b92011-07-21 09:10:21 -040048
Tom Rini28591df2012-08-13 12:03:19 -070049u32 *boot_params_ptr = NULL;
Simon Schwarze21d2d82011-09-14 15:33:34 -040050
Alper Nebi Yasakd6d2c9b2022-06-18 15:13:09 +030051#if CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS)
Simon Glass867a3982017-11-13 18:55:03 -070052/* See spl.h for information about this */
Simon Glass9dcc8612018-08-01 15:22:42 -060053binman_sym_declare(ulong, u_boot_any, image_pos);
Simon Glass596f31c2019-12-08 17:40:12 -070054binman_sym_declare(ulong, u_boot_any, size);
55
56#ifdef CONFIG_TPL
Simon Glass5a332c12022-10-20 18:22:41 -060057binman_sym_declare(ulong, u_boot_spl_any, image_pos);
58binman_sym_declare(ulong, u_boot_spl_any, size);
Simon Glass596f31c2019-12-08 17:40:12 -070059#endif
Simon Glass867a3982017-11-13 18:55:03 -070060
Simon Glass7eec8842022-04-30 00:56:52 -060061#ifdef CONFIG_VPL
Simon Glass5a332c12022-10-20 18:22:41 -060062binman_sym_declare(ulong, u_boot_vpl_any, image_pos);
63binman_sym_declare(ulong, u_boot_vpl_any, size);
Simon Glass7eec8842022-04-30 00:56:52 -060064#endif
65
Alper Nebi Yasakd6d2c9b2022-06-18 15:13:09 +030066#endif /* BINMAN_UBOOT_SYMBOLS */
67
Alexandru Gagniuc7861f8b2021-04-08 11:56:11 -050068/* Define board data structure */
69static struct bd_info bdata __attribute__ ((section(".data")));
70
Marek Vasut98154342021-10-23 03:06:03 +020071#if CONFIG_IS_ENABLED(SHOW_BOOT_PROGRESS)
Simon Schwarz305bc4c2012-03-15 04:01:38 +000072/*
Heiko Schocher747ceee2016-06-07 08:31:20 +020073 * Board-specific Platform code can reimplement show_boot_progress () if needed
74 */
75__weak void show_boot_progress(int val) {}
Tom Rinia9765d02021-05-03 16:48:58 -040076#endif
Heiko Schocher747ceee2016-06-07 08:31:20 +020077
Heiko Stuebner593b82e2020-05-25 19:57:25 +020078#if defined(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF) || \
79 defined(CONFIG_SPL_ATF)
Simon Glasse14f1a22018-11-15 18:44:09 -070080/* weak, default platform-specific function to initialize dram banks */
81__weak int dram_init_banksize(void)
82{
83 return 0;
84}
85#endif
86
Heiko Schocher747ceee2016-06-07 08:31:20 +020087/*
Simon Schwarz305bc4c2012-03-15 04:01:38 +000088 * Default function to determine if u-boot or the OS should
89 * be started. This implementation always returns 1.
90 *
91 * Please implement your own board specific funcion to do this.
92 *
93 * RETURN
94 * 0 to not start u-boot
95 * positive if u-boot should start
96 */
Tom Rinic2e78882021-10-30 23:03:48 -040097#if CONFIG_IS_ENABLED(OS_BOOT)
Simon Schwarz305bc4c2012-03-15 04:01:38 +000098__weak int spl_start_uboot(void)
99{
Simon Glassdbd3f112018-11-15 18:43:56 -0700100 puts(SPL_TPL_PROMPT
101 "Please implement spl_start_uboot() for your board\n");
102 puts(SPL_TPL_PROMPT "Direct Linux boot not active!\n");
Simon Schwarz305bc4c2012-03-15 04:01:38 +0000103 return 1;
104}
Ladislav Michl9c743722016-07-12 20:28:14 +0200105
106/*
107 * Weak default function for arch specific zImage check. Return zero
108 * and fill start and end address if image is recognized.
109 */
110int __weak bootz_setup(ulong image, ulong *start, ulong *end)
111{
112 return 1;
113}
Nathan Barrett-Morrisonc20400a2022-02-02 15:05:18 -0500114
115int __weak booti_setup(ulong image, ulong *relocated_addr, ulong *size, bool force_reloc)
116{
117 return 1;
118}
Simon Schwarz305bc4c2012-03-15 04:01:38 +0000119#endif
120
Philipp Tomsich58beb6e2018-05-24 17:15:50 +0200121/* Weak default function for arch/board-specific fixups to the spl_image_info */
122void __weak spl_perform_fixups(struct spl_image_info *spl_image)
123{
124}
125
Heiko Stuebner593b82e2020-05-25 19:57:25 +0200126void spl_fixup_fdt(void *fdt_blob)
B, Ravi4cf02b12017-04-18 17:27:27 +0530127{
Heiko Stuebner593b82e2020-05-25 19:57:25 +0200128#if defined(CONFIG_SPL_OF_LIBFDT)
B, Ravi4cf02b12017-04-18 17:27:27 +0530129 int err;
130
Heiko Stuebner593b82e2020-05-25 19:57:25 +0200131 if (!fdt_blob)
132 return;
133
B, Ravi4cf02b12017-04-18 17:27:27 +0530134 err = fdt_check_header(fdt_blob);
135 if (err < 0) {
136 printf("fdt_root: %s\n", fdt_strerror(err));
137 return;
138 }
139
140 /* fixup the memory dt node */
141 err = fdt_shrink_to_minimum(fdt_blob, 0);
142 if (err == 0) {
Simon Glassdbd3f112018-11-15 18:43:56 -0700143 printf(SPL_TPL_PROMPT "fdt_shrink_to_minimum err - %d\n", err);
B, Ravi4cf02b12017-04-18 17:27:27 +0530144 return;
145 }
146
147 err = arch_fixup_fdt(fdt_blob);
148 if (err) {
Simon Glassdbd3f112018-11-15 18:43:56 -0700149 printf(SPL_TPL_PROMPT "arch_fixup_fdt err - %d\n", err);
B, Ravi4cf02b12017-04-18 17:27:27 +0530150 return;
151 }
152#endif
153}
154
Devarsh Thakkar84e08342023-12-05 21:25:16 +0530155int spl_reserve_video_from_ram_top(void)
156{
157 if (CONFIG_IS_ENABLED(VIDEO)) {
158 ulong addr;
159 int ret;
160
161 addr = gd->ram_top;
162 ret = video_reserve(&addr);
163 if (ret)
164 return ret;
165 debug("Reserving %luk for video at: %08lx\n",
166 ((unsigned long)gd->relocaddr - addr) >> 10, addr);
167 gd->relocaddr = addr;
168 }
169
170 return 0;
171}
172
Simon Glass596f31c2019-12-08 17:40:12 -0700173ulong spl_get_image_pos(void)
174{
Alper Nebi Yasakd6d2c9b2022-06-18 15:13:09 +0300175 if (!CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS))
Alper Nebi Yasak173321c2022-06-18 15:13:06 +0300176 return BINMAN_SYM_MISSING;
177
Simon Glass7eec8842022-04-30 00:56:52 -0600178#ifdef CONFIG_VPL
179 if (spl_next_phase() == PHASE_VPL)
Simon Glass5a332c12022-10-20 18:22:41 -0600180 return binman_sym(ulong, u_boot_vpl_any, image_pos);
Simon Glass7eec8842022-04-30 00:56:52 -0600181#endif
182 return spl_next_phase() == PHASE_SPL ?
Simon Glass5a332c12022-10-20 18:22:41 -0600183 binman_sym(ulong, u_boot_spl_any, image_pos) :
Simon Glass596f31c2019-12-08 17:40:12 -0700184 binman_sym(ulong, u_boot_any, image_pos);
185}
186
187ulong spl_get_image_size(void)
188{
Alper Nebi Yasakd6d2c9b2022-06-18 15:13:09 +0300189 if (!CONFIG_IS_ENABLED(BINMAN_UBOOT_SYMBOLS))
Alper Nebi Yasak173321c2022-06-18 15:13:06 +0300190 return BINMAN_SYM_MISSING;
191
Simon Glass7eec8842022-04-30 00:56:52 -0600192#ifdef CONFIG_VPL
193 if (spl_next_phase() == PHASE_VPL)
Simon Glass5a332c12022-10-20 18:22:41 -0600194 return binman_sym(ulong, u_boot_vpl_any, size);
Simon Glass7eec8842022-04-30 00:56:52 -0600195#endif
196 return spl_next_phase() == PHASE_SPL ?
Simon Glass5a332c12022-10-20 18:22:41 -0600197 binman_sym(ulong, u_boot_spl_any, size) :
Simon Glass596f31c2019-12-08 17:40:12 -0700198 binman_sym(ulong, u_boot_any, size);
199}
200
Simon Glass53857ee2021-01-24 10:06:03 -0700201ulong spl_get_image_text_base(void)
202{
Simon Glass7eec8842022-04-30 00:56:52 -0600203#ifdef CONFIG_VPL
204 if (spl_next_phase() == PHASE_VPL)
205 return CONFIG_VPL_TEXT_BASE;
206#endif
207 return spl_next_phase() == PHASE_SPL ? CONFIG_SPL_TEXT_BASE :
Simon Glass72cc5382022-10-20 18:22:39 -0600208 CONFIG_TEXT_BASE;
Simon Glass53857ee2021-01-24 10:06:03 -0700209}
210
Stefan Roeseec90d342012-08-23 08:34:21 +0200211/*
212 * Weak default function for board specific cleanup/preparation before
213 * Linux boot. Some boards/platforms might not need it, so just provide
214 * an empty stub here.
215 */
216__weak void spl_board_prepare_for_linux(void)
217{
218 /* Nothing to do! */
219}
220
Alexandru Gagniucf2b410a2021-07-15 14:19:24 -0500221__weak void spl_board_prepare_for_optee(void *fdt)
222{
223}
224
Heiko Thiery3db30332022-01-17 16:25:41 +0100225__weak const char *spl_board_loader_name(u32 boot_device)
226{
227 return NULL;
228}
229
Ricardo Salvetiec0352a2021-10-20 15:12:06 +0300230#if CONFIG_IS_ENABLED(OPTEE_IMAGE)
231__weak void __noreturn jump_to_image_optee(struct spl_image_info *spl_image)
232{
233 spl_optee_entry(NULL, NULL, spl_image->fdt_addr,
234 (void *)spl_image->entry_point);
235}
236#endif
237
Michal Simek7a8465b2016-05-10 07:54:20 +0200238__weak void spl_board_prepare_for_boot(void)
239{
240 /* Nothing to do! */
241}
242
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600243__weak struct legacy_img_hdr *spl_get_load_buffer(ssize_t offset, size_t size)
Marek Vasut1dda46f2018-08-14 11:27:02 +0200244{
Simon Glass72cc5382022-10-20 18:22:39 -0600245 return map_sysmem(CONFIG_TEXT_BASE + offset, 0);
Marek Vasut1dda46f2018-08-14 11:27:02 +0200246}
247
Tom Rini7f184322022-10-28 20:27:07 -0400248#ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT
Simon Glass11a1a272016-09-24 18:19:52 -0600249void spl_set_header_raw_uboot(struct spl_image_info *spl_image)
Heiko Schochercf000272014-10-31 08:31:00 +0100250{
Alper Nebi Yasak173321c2022-06-18 15:13:06 +0300251 ulong u_boot_pos = spl_get_image_pos();
Simon Glass867a3982017-11-13 18:55:03 -0700252
Tom Rini7f184322022-10-28 20:27:07 -0400253#if CONFIG_SYS_MONITOR_LEN != 0
Simon Glass11a1a272016-09-24 18:19:52 -0600254 spl_image->size = CONFIG_SYS_MONITOR_LEN;
Tom Rini7f184322022-10-28 20:27:07 -0400255#else
256 /* Unknown U-Boot size, let's assume it will not be more than 200 KB */
257 spl_image->size = 200 * 1024;
258#endif
Miquel Raynal31824ff2018-02-28 20:51:43 +0100259
260 /*
261 * Binman error cases: address of the end of the previous region or the
262 * start of the image's entry area (usually 0) if there is no previous
263 * region.
264 */
265 if (u_boot_pos && u_boot_pos != BINMAN_SYM_MISSING) {
266 /* Binman does not support separated entry addresses */
Simon Glass867a3982017-11-13 18:55:03 -0700267 spl_image->entry_point = u_boot_pos;
268 spl_image->load_addr = u_boot_pos;
269 } else {
Jesse Taube93ee5c82023-08-24 21:59:48 -0400270 spl_image->entry_point = CONFIG_SYS_UBOOT_START;
Simon Glass72cc5382022-10-20 18:22:39 -0600271 spl_image->load_addr = CONFIG_TEXT_BASE;
Simon Glass867a3982017-11-13 18:55:03 -0700272 }
Simon Glass11a1a272016-09-24 18:19:52 -0600273 spl_image->os = IH_OS_U_BOOT;
274 spl_image->name = "U-Boot";
Heiko Schochercf000272014-10-31 08:31:00 +0100275}
Tom Rini7f184322022-10-28 20:27:07 -0400276#endif
Heiko Schochercf000272014-10-31 08:31:00 +0100277
Pali Rohárbde23cb2021-07-23 11:14:28 +0200278__weak int spl_parse_board_header(struct spl_image_info *spl_image,
Pali Rohárdda8f882022-01-14 14:31:38 +0100279 const struct spl_boot_device *bootdev,
Pali Rohárbde23cb2021-07-23 11:14:28 +0200280 const void *image_header, size_t size)
281{
282 return -EINVAL;
283}
284
Stefan Roese21a1df12020-04-21 09:28:41 +0200285__weak int spl_parse_legacy_header(struct spl_image_info *spl_image,
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600286 const struct legacy_img_hdr *header)
Stefan Roese21a1df12020-04-21 09:28:41 +0200287{
288 /* LEGACY image not supported */
289 debug("Legacy boot image support not enabled, proceeding to other boot methods\n");
290 return -EINVAL;
291}
292
Simon Glass6b2e4db2016-09-24 18:19:53 -0600293int spl_parse_image_header(struct spl_image_info *spl_image,
Pali Rohárdda8f882022-01-14 14:31:38 +0100294 const struct spl_boot_device *bootdev,
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600295 const struct legacy_img_hdr *header)
Aneesh V13a74c12011-07-21 09:10:27 -0400296{
Simon Glassc0bd55e2023-09-26 08:14:34 -0600297 int ret;
Marek Vasut06623372018-05-13 00:23:17 +0200298
Simon Glassc0bd55e2023-09-26 08:14:34 -0600299 if (CONFIG_IS_ENABLED(LOAD_FIT_FULL)) {
300 ret = spl_load_fit_image(spl_image, header);
301
302 if (!ret)
303 return ret;
304 }
Stefan Roese292db772012-08-27 12:50:57 +0200305 if (image_get_magic(header) == IH_MAGIC) {
Stefan Roese21a1df12020-04-21 09:28:41 +0200306 int ret;
Andrew F. Davis74630342017-02-16 11:18:39 -0600307
Stefan Roese21a1df12020-04-21 09:28:41 +0200308 ret = spl_parse_legacy_header(spl_image, header);
309 if (ret)
310 return ret;
Aneesh V13a74c12011-07-21 09:10:27 -0400311 } else {
Albert ARIBAUD \(3ADEV\)287b0942015-03-31 11:40:50 +0200312#ifdef CONFIG_SPL_PANIC_ON_RAW_IMAGE
313 /*
314 * CONFIG_SPL_PANIC_ON_RAW_IMAGE is defined when the
315 * code which loads images in SPL cannot guarantee that
316 * absolutely all read errors will be reported.
317 * An example is the LPC32XX MLC NAND driver, which
318 * will consider that a completely unreadable NAND block
319 * is bad, and thus should be skipped silently.
320 */
321 panic("** no mkimage signature but raw image not supported");
Paul Kocialkowskie48b7752016-08-24 20:04:42 +0200322#endif
323
Tom Rinic2e78882021-10-30 23:03:48 -0400324#if CONFIG_IS_ENABLED(OS_BOOT)
Nathan Barrett-Morrisonc20400a2022-02-02 15:05:18 -0500325#if defined(CMD_BOOTI)
326 ulong start, size;
327
328 if (!booti_setup((ulong)header, &start, &size, 0)) {
329 spl_image->name = "Linux";
330 spl_image->os = IH_OS_LINUX;
331 spl_image->load_addr = start;
332 spl_image->entry_point = start;
333 spl_image->size = size;
334 debug(SPL_TPL_PROMPT
335 "payload Image, load addr: 0x%lx size: %d\n",
336 spl_image->load_addr, spl_image->size);
337 return 0;
338 }
339#elif defined(CMD_BOOTZ)
Ladislav Michl9c743722016-07-12 20:28:14 +0200340 ulong start, end;
341
342 if (!bootz_setup((ulong)header, &start, &end)) {
Simon Glass6b2e4db2016-09-24 18:19:53 -0600343 spl_image->name = "Linux";
344 spl_image->os = IH_OS_LINUX;
345 spl_image->load_addr = CONFIG_SYS_LOAD_ADDR;
346 spl_image->entry_point = CONFIG_SYS_LOAD_ADDR;
347 spl_image->size = end - start;
Simon Glassdbd3f112018-11-15 18:43:56 -0700348 debug(SPL_TPL_PROMPT
349 "payload zImage, load addr: 0x%lx size: %d\n",
Simon Glass6b2e4db2016-09-24 18:19:53 -0600350 spl_image->load_addr, spl_image->size);
Ladislav Michl9c743722016-07-12 20:28:14 +0200351 return 0;
352 }
353#endif
Nathan Barrett-Morrisonc20400a2022-02-02 15:05:18 -0500354#endif
Paul Kocialkowskie48b7752016-08-24 20:04:42 +0200355
Pali Rohárdda8f882022-01-14 14:31:38 +0100356 if (!spl_parse_board_header(spl_image, bootdev, (const void *)header, sizeof(*header)))
Pali Rohárbde23cb2021-07-23 11:14:28 +0200357 return 0;
358
Andrew F. Davisb4be3c32017-02-16 11:18:38 -0600359#ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT
Aneesh V13a74c12011-07-21 09:10:27 -0400360 /* Signature not found - assume u-boot.bin */
Tom Rini7b516862012-08-14 12:06:43 -0700361 debug("mkimage signature not found - ih_magic = %x\n",
Aneesh V13a74c12011-07-21 09:10:27 -0400362 header->ih_magic);
Simon Glass6b2e4db2016-09-24 18:19:53 -0600363 spl_set_header_raw_uboot(spl_image);
Andrew F. Davisb4be3c32017-02-16 11:18:38 -0600364#else
365 /* RAW image not supported, proceed to other boot methods. */
Anatolij Gustschindcb711f2017-08-01 16:17:12 +0200366 debug("Raw boot image support not enabled, proceeding to other boot methods\n");
Andrew F. Davisb4be3c32017-02-16 11:18:38 -0600367 return -EINVAL;
Albert ARIBAUD \(3ADEV\)287b0942015-03-31 11:40:50 +0200368#endif
Aneesh V13a74c12011-07-21 09:10:27 -0400369 }
Andrew F. Davisb4be3c32017-02-16 11:18:38 -0600370
Marek Vasut02266e22016-04-29 00:44:54 +0200371 return 0;
Aneesh V13a74c12011-07-21 09:10:27 -0400372}
373
Sean Anderson3a4a2b72023-11-08 11:48:47 -0500374#if SPL_LOAD_USERS > 1
375int spl_load(struct spl_image_info *spl_image,
376 const struct spl_boot_device *bootdev, struct spl_load_info *info,
377 size_t size, size_t offset)
378{
379 return _spl_load(spl_image, bootdev, info, size, offset);
380}
381#endif
382
Allen Martinc67e4852012-10-19 21:08:22 +0000383__weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
Aneesh V13a74c12011-07-21 09:10:27 -0400384{
SRICHARAN R3f30b0a2013-04-24 00:41:24 +0000385 typedef void __noreturn (*image_entry_noargs_t)(void);
386
Aneesh V13a74c12011-07-21 09:10:27 -0400387 image_entry_noargs_t image_entry =
Andre Przywara6c526072017-01-02 11:48:31 +0000388 (image_entry_noargs_t)spl_image->entry_point;
Aneesh V13a74c12011-07-21 09:10:27 -0400389
Simon Goldschmidt1ddade62018-11-02 21:49:52 +0100390 debug("image entry point: 0x%lx\n", spl_image->entry_point);
SRICHARAN R3f30b0a2013-04-24 00:41:24 +0000391 image_entry();
Aneesh V13a74c12011-07-21 09:10:27 -0400392}
393
Simon Glasse14f1a22018-11-15 18:44:09 -0700394#if CONFIG_IS_ENABLED(HANDOFF)
395/**
396 * Set up the SPL hand-off information
397 *
398 * This is initially empty (zero) but can be written by
399 */
400static int setup_spl_handoff(void)
401{
402 struct spl_handoff *ho;
403
Simon Glass90c1a582022-01-12 19:26:17 -0700404 ho = bloblist_ensure(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(struct spl_handoff));
Simon Glasse14f1a22018-11-15 18:44:09 -0700405 if (!ho)
406 return -ENOENT;
407
408 return 0;
409}
410
Simon Glassc5d27202019-09-25 08:11:18 -0600411__weak int handoff_arch_save(struct spl_handoff *ho)
412{
413 return 0;
414}
415
Simon Glasse14f1a22018-11-15 18:44:09 -0700416static int write_spl_handoff(void)
417{
418 struct spl_handoff *ho;
Simon Glassc5d27202019-09-25 08:11:18 -0600419 int ret;
Simon Glasse14f1a22018-11-15 18:44:09 -0700420
Simon Glass90c1a582022-01-12 19:26:17 -0700421 ho = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(struct spl_handoff));
Simon Glasse14f1a22018-11-15 18:44:09 -0700422 if (!ho)
423 return -ENOENT;
424 handoff_save_dram(ho);
Simon Glassc5d27202019-09-25 08:11:18 -0600425 ret = handoff_arch_save(ho);
426 if (ret)
427 return ret;
Simon Glasse14f1a22018-11-15 18:44:09 -0700428 debug(SPL_TPL_PROMPT "Wrote SPL handoff\n");
429
430 return 0;
431}
432#else
433static inline int setup_spl_handoff(void) { return 0; }
434static inline int write_spl_handoff(void) { return 0; }
435
436#endif /* HANDOFF */
437
Simon Glass97447ea2021-03-15 18:11:15 +1300438/**
439 * get_bootstage_id() - Get the bootstage ID to emit
440 *
441 * @start: true if this is for starting SPL, false for ending it
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100442 * Return: bootstage ID to use
Simon Glass97447ea2021-03-15 18:11:15 +1300443 */
444static enum bootstage_id get_bootstage_id(bool start)
445{
446 enum u_boot_phase phase = spl_phase();
447
448 if (IS_ENABLED(CONFIG_TPL_BUILD) && phase == PHASE_TPL)
449 return start ? BOOTSTAGE_ID_START_TPL : BOOTSTAGE_ID_END_TPL;
Simon Glass7eec8842022-04-30 00:56:52 -0600450 else if (IS_ENABLED(CONFIG_VPL_BUILD) && phase == PHASE_VPL)
451 return start ? BOOTSTAGE_ID_START_VPL : BOOTSTAGE_ID_END_VPL;
Simon Glass97447ea2021-03-15 18:11:15 +1300452 else
453 return start ? BOOTSTAGE_ID_START_SPL : BOOTSTAGE_ID_END_SPL;
454}
455
Eddie Cai32258992017-03-15 08:43:28 -0600456static int spl_common_init(bool setup_malloc)
Aneesh Vb8e60b92011-07-21 09:10:21 -0400457{
Simon Glass9a49ec12015-02-27 22:06:42 -0700458 int ret;
459
Simon Glassadad2d02023-09-26 08:14:27 -0600460#if CONFIG_IS_ENABLED(SYS_MALLOC_F)
Eddie Cai32258992017-03-15 08:43:28 -0600461 if (setup_malloc) {
Tom Rinifb52b942022-12-04 10:04:49 -0500462#ifdef CFG_MALLOC_F_ADDR
463 gd->malloc_base = CFG_MALLOC_F_ADDR;
Marek Vasutd61ba112016-05-25 02:14:56 +0200464#endif
Andy Yan1fa20e4d2017-07-24 17:43:34 +0800465 gd->malloc_limit = CONFIG_VAL(SYS_MALLOC_F_LEN);
Eddie Cai32258992017-03-15 08:43:28 -0600466 gd->malloc_ptr = 0;
467 }
Tom Rini730bae72012-08-13 14:13:07 -0700468#endif
Simon Glass0e864562019-10-21 17:26:52 -0600469 ret = bootstage_init(u_boot_first_phase());
Simon Glass01154cb2017-05-22 05:05:35 -0600470 if (ret) {
471 debug("%s: Failed to set up bootstage: ret=%d\n", __func__,
472 ret);
473 return ret;
474 }
Simon Glass0e864562019-10-21 17:26:52 -0600475 if (!u_boot_first_phase()) {
Simon Glassb4c22cf2023-09-26 08:14:32 -0600476 ret = bootstage_unstash_default();
Simon Glass0e864562019-10-21 17:26:52 -0600477 if (ret)
Simon Glassb4c22cf2023-09-26 08:14:32 -0600478 log_debug("Failed to unstash bootstage: ret=%d\n", ret);
Simon Glass0e864562019-10-21 17:26:52 -0600479 }
Simon Glass97447ea2021-03-15 18:11:15 +1300480 bootstage_mark_name(get_bootstage_id(true),
481 spl_phase_name(spl_phase()));
Simon Glassb56cdc02018-11-15 18:43:49 -0700482#if CONFIG_IS_ENABLED(LOG)
483 ret = log_init();
484 if (ret) {
485 debug("%s: Failed to set up logging\n", __func__);
486 return ret;
487 }
488#endif
Simon Glass3580f6d2021-08-07 07:24:03 -0600489 if (CONFIG_IS_ENABLED(OF_REAL)) {
Simon Glass9a49ec12015-02-27 22:06:42 -0700490 ret = fdtdec_setup();
491 if (ret) {
492 debug("fdtdec_setup() returned error %d\n", ret);
Simon Glassfa2a4db2015-06-23 15:39:10 -0600493 return ret;
Simon Glass9a49ec12015-02-27 22:06:42 -0700494 }
495 }
Philipp Tomsich60e15782017-06-30 19:02:53 +0200496 if (CONFIG_IS_ENABLED(DM)) {
Simon Glassea6a6092020-05-10 11:39:59 -0600497 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_SPL,
Simon Glassaa2abc42019-10-21 17:26:51 -0600498 spl_phase() == PHASE_TPL ? "dm tpl" : "dm_spl");
Tom Rini9732f792017-01-14 12:20:23 -0500499 /* With CONFIG_SPL_OF_PLATDATA, bring in all devices */
Simon Glasse9559fb2016-07-04 11:58:14 -0600500 ret = dm_init_and_scan(!CONFIG_IS_ENABLED(OF_PLATDATA));
Simon Glassea6a6092020-05-10 11:39:59 -0600501 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_SPL);
Simon Glass9a49ec12015-02-27 22:06:42 -0700502 if (ret) {
503 debug("dm_init_and_scan() returned error %d\n", ret);
Simon Glassfa2a4db2015-06-23 15:39:10 -0600504 return ret;
Simon Glass9a49ec12015-02-27 22:06:42 -0700505 }
506 }
Eddie Cai32258992017-03-15 08:43:28 -0600507
508 return 0;
509}
510
Alexandru Gagniuc7861f8b2021-04-08 11:56:11 -0500511void spl_set_bd(void)
York Suna34ca5f2017-09-28 08:42:10 -0700512{
Simon Glassef8d48a2018-11-15 18:43:58 -0700513 /*
514 * NOTE: On some platforms (e.g. x86) bdata may be in flash and not
515 * writeable.
516 */
Alexandru Gagniuc7861f8b2021-04-08 11:56:11 -0500517 if (!gd->bd)
518 gd->bd = &bdata;
York Suna34ca5f2017-09-28 08:42:10 -0700519}
520
Eddie Cai32258992017-03-15 08:43:28 -0600521int spl_early_init(void)
522{
523 int ret;
524
Simon Goldschmidt7dbffe42018-08-13 11:24:05 +0200525 debug("%s\n", __func__);
526
Eddie Cai32258992017-03-15 08:43:28 -0600527 ret = spl_common_init(true);
528 if (ret)
529 return ret;
530 gd->flags |= GD_FLG_SPL_EARLY_INIT;
531
532 return 0;
533}
534
535int spl_init(void)
536{
537 int ret;
Tom Rini89ea21e2017-03-20 14:19:27 -0400538 bool setup_malloc = !(IS_ENABLED(CONFIG_SPL_STACK_R) &&
539 IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIMPLE));
Eddie Cai32258992017-03-15 08:43:28 -0600540
Simon Goldschmidt7dbffe42018-08-13 11:24:05 +0200541 debug("%s\n", __func__);
542
Eddie Cai32258992017-03-15 08:43:28 -0600543 if (!(gd->flags & GD_FLG_SPL_EARLY_INIT)) {
Tom Rini89ea21e2017-03-20 14:19:27 -0400544 ret = spl_common_init(setup_malloc);
Eddie Cai32258992017-03-15 08:43:28 -0600545 if (ret)
546 return ret;
547 }
Simon Glassfa2a4db2015-06-23 15:39:10 -0600548 gd->flags |= GD_FLG_SPL_INIT;
549
550 return 0;
551}
552
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200553#ifndef BOOT_DEVICE_NONE
554#define BOOT_DEVICE_NONE 0xdeadbeef
555#endif
556
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200557__weak void board_boot_order(u32 *spl_boot_list)
558{
559 spl_boot_list[0] = spl_boot_device();
560}
561
Pali Rohárf47349a2022-01-14 14:31:40 +0100562__weak int spl_check_board_image(struct spl_image_info *spl_image,
563 const struct spl_boot_device *bootdev)
564{
565 return 0;
566}
567
Simon Glassf1e55752016-11-30 15:30:52 -0700568static int spl_load_image(struct spl_image_info *spl_image,
569 struct spl_image_loader *loader)
Simon Glassfa2a4db2015-06-23 15:39:10 -0600570{
Simon Goldschmidt17140472019-02-10 21:34:37 +0100571 int ret;
Simon Glassc0b6c9b2016-09-24 18:19:57 -0600572 struct spl_boot_device bootdev;
573
Simon Glassf1e55752016-11-30 15:30:52 -0700574 bootdev.boot_device = loader->boot_device;
Simon Glassc0b6c9b2016-09-24 18:19:57 -0600575 bootdev.boot_device_name = NULL;
576
Simon Goldschmidt17140472019-02-10 21:34:37 +0100577 ret = loader->load_image(spl_image, &bootdev);
578#ifdef CONFIG_SPL_LEGACY_IMAGE_CRC_CHECK
579 if (!ret && spl_image->dcrc_length) {
580 /* check data crc */
581 ulong dcrc = crc32_wd(0, (unsigned char *)spl_image->dcrc_data,
582 spl_image->dcrc_length, CHUNKSZ_CRC32);
583 if (dcrc != spl_image->dcrc) {
584 puts("SPL: Image data CRC check failed!\n");
585 ret = -EINVAL;
586 }
587 }
588#endif
Pali Rohárf47349a2022-01-14 14:31:40 +0100589 if (!ret)
590 ret = spl_check_board_image(spl_image, &bootdev);
591
Simon Goldschmidt17140472019-02-10 21:34:37 +0100592 return ret;
Simon Glassc9ef1852016-11-30 15:30:51 -0700593}
594
595/**
Miquel Raynal9f8d9942019-05-07 14:18:43 +0200596 * boot_from_devices() - Try loading a booting U-Boot from a list of devices
Simon Glassc9ef1852016-11-30 15:30:51 -0700597 *
598 * @spl_image: Place to put the image details if successful
599 * @spl_boot_list: List of boot devices to try
600 * @count: Number of elements in spl_boot_list
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100601 * Return: 0 if OK, -ENODEV if there were no boot devices
Simon Glass58254e02021-07-05 16:32:57 -0600602 * if CONFIG_SHOW_ERRORS is enabled, returns -ENXIO if there were
603 * devices but none worked
Simon Glassc9ef1852016-11-30 15:30:51 -0700604 */
605static int boot_from_devices(struct spl_image_info *spl_image,
606 u32 spl_boot_list[], int count)
607{
Simon Glass6b8705d2022-10-20 18:23:07 -0600608 struct spl_image_loader *drv =
609 ll_entry_start(struct spl_image_loader, spl_image_loader);
610 const int n_ents =
611 ll_entry_count(struct spl_image_loader, spl_image_loader);
Simon Glass58254e02021-07-05 16:32:57 -0600612 int ret = -ENODEV;
Simon Glassc9ef1852016-11-30 15:30:51 -0700613 int i;
614
615 for (i = 0; i < count && spl_boot_list[i] != BOOT_DEVICE_NONE; i++) {
616 struct spl_image_loader *loader;
Simon Glass58254e02021-07-05 16:32:57 -0600617 int bootdev = spl_boot_list[i];
Simon Glassc9ef1852016-11-30 15:30:51 -0700618
Simon Glass58254e02021-07-05 16:32:57 -0600619 if (CONFIG_IS_ENABLED(SHOW_ERRORS))
620 ret = -ENXIO;
Simon Glass6b8705d2022-10-20 18:23:07 -0600621 for (loader = drv; loader != drv + n_ents; loader++) {
622 if (bootdev != loader->boot_device)
623 continue;
624 if (!CONFIG_IS_ENABLED(SILENT_CONSOLE)) {
625 if (loader)
626 printf("Trying to boot from %s\n",
627 spl_loader_name(loader));
628 else if (CONFIG_IS_ENABLED(SHOW_ERRORS)) {
629 printf(SPL_TPL_PROMPT
630 "Unsupported Boot Device %d\n",
631 bootdev);
632 } else {
633 puts(SPL_TPL_PROMPT
634 "Unsupported Boot Device!\n");
635 }
636 }
637 if (loader &&
638 !spl_load_image(spl_image, loader)) {
639 spl_image->boot_device = bootdev;
640 return 0;
641 }
Philipp Tomsich58beb6e2018-05-24 17:15:50 +0200642 }
Simon Glassc9ef1852016-11-30 15:30:51 -0700643 }
644
Simon Glass58254e02021-07-05 16:32:57 -0600645 return ret;
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200646}
647
Philippe Reynesc4510f42019-09-19 16:18:39 +0200648#if defined(CONFIG_SPL_FRAMEWORK_BOARD_INIT_F)
649void board_init_f(ulong dummy)
650{
651 if (CONFIG_IS_ENABLED(OF_CONTROL)) {
652 int ret;
653
654 ret = spl_early_init();
655 if (ret) {
656 debug("spl_early_init() failed: %d\n", ret);
657 hang();
658 }
659 }
660
Samuel Hollandb03e6662020-05-07 18:08:10 -0500661 preloader_console_init();
Philippe Reynesc4510f42019-09-19 16:18:39 +0200662}
663#endif
664
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200665void board_init_r(gd_t *dummy1, ulong dummy2)
666{
Simon Glassce8f5092016-09-24 18:20:17 -0600667 u32 spl_boot_list[] = {
668 BOOT_DEVICE_NONE,
669 BOOT_DEVICE_NONE,
670 BOOT_DEVICE_NONE,
671 BOOT_DEVICE_NONE,
672 BOOT_DEVICE_NONE,
673 };
Jonas Karlman7cd91f72023-09-27 21:44:13 +0000674 typedef void __noreturn (*jump_to_image_t)(struct spl_image_info *);
675 jump_to_image_t jump_to_image = &jump_to_image_no_args;
Simon Glassce8f5092016-09-24 18:20:17 -0600676 struct spl_image_info spl_image;
Simon Glass35c84e52023-09-26 08:14:22 -0600677 int ret, os;
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200678
Simon Glassdbd3f112018-11-15 18:43:56 -0700679 debug(">>" SPL_TPL_PROMPT "board_init_r()\n");
York Suna34ca5f2017-09-28 08:42:10 -0700680
Alexandru Gagniuc7861f8b2021-04-08 11:56:11 -0500681 spl_set_bd();
682
Simon Glass0686b0c2023-09-26 08:14:18 -0600683 if (IS_ENABLED(CONFIG_SPL_SYS_MALLOC)) {
Sean Anderson5ff77722023-10-14 16:47:55 -0400684 mem_malloc_init((ulong)map_sysmem(SPL_SYS_MALLOC_START,
685 SPL_SYS_MALLOC_SIZE),
686 SPL_SYS_MALLOC_SIZE);
Simon Glass0686b0c2023-09-26 08:14:18 -0600687 gd->flags |= GD_FLG_FULL_MALLOC_INIT;
688 }
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200689 if (!(gd->flags & GD_FLG_SPL_INIT)) {
690 if (spl_init())
691 hang();
692 }
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200693 timer_init();
Simon Glassf1207752019-09-25 08:11:19 -0600694 if (CONFIG_IS_ENABLED(BLOBLIST)) {
695 ret = bloblist_init();
696 if (ret) {
697 debug("%s: Failed to set up bloblist: ret=%d\n",
698 __func__, ret);
699 puts(SPL_TPL_PROMPT "Cannot set up bloblist\n");
700 hang();
701 }
702 }
703 if (CONFIG_IS_ENABLED(HANDOFF)) {
704 int ret;
705
706 ret = setup_spl_handoff();
707 if (ret) {
708 puts(SPL_TPL_PROMPT "Cannot set up SPL handoff\n");
709 hang();
710 }
711 }
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200712
Lukas Funkee51ca6a2024-03-27 13:11:52 +0100713 if (CONFIG_IS_ENABLED(SOC_INIT))
714 spl_soc_init();
715
Simon Glasse49743f2023-09-26 08:14:20 -0600716 if (CONFIG_IS_ENABLED(BOARD_INIT))
717 spl_board_init();
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200718
Simon Glasse49743f2023-09-26 08:14:20 -0600719 if (IS_ENABLED(CONFIG_SPL_WATCHDOG) && CONFIG_IS_ENABLED(WDT))
720 initr_watchdog();
Stefan Roese502acb02019-04-11 15:58:44 +0200721
Heiko Stuebner593b82e2020-05-25 19:57:25 +0200722 if (IS_ENABLED(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF) ||
723 IS_ENABLED(CONFIG_SPL_ATF))
Simon Glasse14f1a22018-11-15 18:44:09 -0700724 dram_init_banksize();
725
Simon Glass31ef8342023-09-07 09:58:13 -0600726 if (CONFIG_IS_ENABLED(PCI) && !(gd->flags & GD_FLG_DM_DEAD)) {
Heinrich Schuchardt1d8f1372023-07-24 22:18:41 +0200727 ret = pci_init();
728 if (ret)
729 puts(SPL_TPL_PROMPT "Cannot initialize PCI\n");
730 /* Don't fail. We still can try other boot methods. */
731 }
732
Lukasz Majewskia4858602018-05-02 16:10:54 +0200733 bootcount_inc();
734
Simon Glass099dc1f2022-05-08 04:39:27 -0600735 /* Dump driver model states to aid analysis */
736 if (CONFIG_IS_ENABLED(DM_STATS)) {
737 struct dm_stats mem;
738
739 dm_get_mem(&mem);
740 dm_dump_mem(&mem);
741 }
742
Simon Glassce8f5092016-09-24 18:20:17 -0600743 memset(&spl_image, '\0', sizeof(spl_image));
Simon Glassad679722023-09-26 08:14:21 -0600744 if (IS_ENABLED(CONFIG_SPL_OS_BOOT))
745 spl_image.arg = (void *)SPL_PAYLOAD_ARGS_ADDR;
Philipp Tomsich58beb6e2018-05-24 17:15:50 +0200746 spl_image.boot_device = BOOT_DEVICE_NONE;
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200747 board_boot_order(spl_boot_list);
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200748
Simon Glass58254e02021-07-05 16:32:57 -0600749 ret = boot_from_devices(&spl_image, spl_boot_list,
750 ARRAY_SIZE(spl_boot_list));
751 if (ret) {
Sean Anderson4d9e0f62023-11-08 11:48:35 -0500752 if (CONFIG_IS_ENABLED(SHOW_ERRORS))
Simon Glass58254e02021-07-05 16:32:57 -0600753 printf(SPL_TPL_PROMPT "failed to boot from all boot devices (err=%d)\n",
754 ret);
755 else
756 puts(SPL_TPL_PROMPT "failed to boot from all boot devices\n");
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200757 hang();
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200758 }
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200759
Philipp Tomsich58beb6e2018-05-24 17:15:50 +0200760 spl_perform_fixups(&spl_image);
761
Simon Glass35c84e52023-09-26 08:14:22 -0600762 os = spl_image.os;
763 if (os == IH_OS_U_BOOT) {
Simon Glasse12d98a2021-02-06 09:57:27 -0700764 debug("Jumping to %s...\n", spl_phase_name(spl_next_phase()));
Simon Glass35c84e52023-09-26 08:14:22 -0600765 } else if (CONFIG_IS_ENABLED(ATF) && os == IH_OS_ARM_TRUSTED_FIRMWARE) {
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200766 debug("Jumping to U-Boot via ARM Trusted Firmware\n");
Simon Glass35c84e52023-09-26 08:14:22 -0600767 spl_fixup_fdt(spl_image_fdt_addr(&spl_image));
Jonas Karlman7cd91f72023-09-27 21:44:13 +0000768 jump_to_image = &spl_invoke_atf;
Simon Glass35c84e52023-09-26 08:14:22 -0600769 } else if (CONFIG_IS_ENABLED(OPTEE_IMAGE) && os == IH_OS_TEE) {
Kever Yanga28d42c2018-08-23 17:17:59 +0800770 debug("Jumping to U-Boot via OP-TEE\n");
Simon Glass35c84e52023-09-26 08:14:22 -0600771 spl_board_prepare_for_optee(spl_image_fdt_addr(&spl_image));
Jonas Karlman7cd91f72023-09-27 21:44:13 +0000772 jump_to_image = &jump_to_image_optee;
Simon Glass35c84e52023-09-26 08:14:22 -0600773 } else if (CONFIG_IS_ENABLED(OPENSBI) && os == IH_OS_OPENSBI) {
Lukas Auer515b9342019-08-21 21:14:44 +0200774 debug("Jumping to U-Boot via RISC-V OpenSBI\n");
Jonas Karlman7cd91f72023-09-27 21:44:13 +0000775 jump_to_image = &spl_invoke_opensbi;
Simon Glass35c84e52023-09-26 08:14:22 -0600776 } else if (CONFIG_IS_ENABLED(OS_BOOT) && os == IH_OS_LINUX) {
Simon Schwarz305bc4c2012-03-15 04:01:38 +0000777 debug("Jumping to Linux\n");
Simon Glassad679722023-09-26 08:14:21 -0600778 if (IS_ENABLED(CONFIG_SPL_OS_BOOT))
779 spl_fixup_fdt((void *)SPL_PAYLOAD_ARGS_ADDR);
Simon Schwarz305bc4c2012-03-15 04:01:38 +0000780 spl_board_prepare_for_linux();
Jonas Karlman7cd91f72023-09-27 21:44:13 +0000781 jump_to_image = &jump_to_image_linux;
Simon Glass35c84e52023-09-26 08:14:22 -0600782 } else {
Tom Rini79178462012-08-27 14:58:28 -0700783 debug("Unsupported OS image.. Jumping nevertheless..\n");
Aneesh V13a74c12011-07-21 09:10:27 -0400784 }
Simon Glasse8804d72023-09-26 08:14:31 -0600785 if (CONFIG_IS_ENABLED(SYS_MALLOC_F) &&
786 !IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIZE))
787 debug("SPL malloc() used 0x%lx bytes (%ld KB)\n",
788 gd_malloc_ptr(), gd_malloc_ptr() / 1024);
789
Simon Glass97447ea2021-03-15 18:11:15 +1300790 bootstage_mark_name(get_bootstage_id(false), "end phase");
Simon Glassb4c22cf2023-09-26 08:14:32 -0600791 ret = bootstage_stash_default();
Simon Glass01154cb2017-05-22 05:05:35 -0600792 if (ret)
793 debug("Failed to stash bootstage: err=%d\n", ret);
Kever Yangaca62db2017-09-13 18:24:24 +0800794
Nikhil M Jain1a606db2023-07-18 14:27:33 +0530795 if (IS_ENABLED(CONFIG_SPL_VIDEO_REMOVE)) {
796 struct udevice *dev;
797 int rc;
Nikhil M Jaineda07d62023-04-10 14:19:13 +0530798
Nikhil M Jain1a606db2023-07-18 14:27:33 +0530799 rc = uclass_find_device(UCLASS_VIDEO, 0, &dev);
800 if (!rc && dev) {
801 rc = device_remove(dev, DM_REMOVE_NORMAL);
802 if (rc)
803 printf("Cannot remove video device '%s' (err=%d)\n",
804 dev->name, rc);
805 }
Nikhil M Jaineda07d62023-04-10 14:19:13 +0530806 }
Simon Glassc4b14502023-09-26 08:14:36 -0600807 if (CONFIG_IS_ENABLED(HANDOFF)) {
808 ret = write_spl_handoff();
809 if (ret)
810 printf(SPL_TPL_PROMPT
811 "SPL hand-off write failed (err=%d)\n", ret);
812 }
813 if (CONFIG_IS_ENABLED(BLOBLIST)) {
814 ret = bloblist_finish();
815 if (ret)
816 printf("Warning: Failed to finish bloblist (ret=%d)\n",
817 ret);
818 }
Nikhil M Jaineda07d62023-04-10 14:19:13 +0530819
Michal Simek7a8465b2016-05-10 07:54:20 +0200820 spl_board_prepare_for_boot();
Jonas Karlman7cd91f72023-09-27 21:44:13 +0000821 jump_to_image(&spl_image);
Aneesh Vb8e60b92011-07-21 09:10:21 -0400822}
823
Tom Rini31dfba42012-08-22 15:31:05 -0700824/*
825 * This requires UART clocks to be enabled. In order for this to work the
826 * caller must ensure that the gd pointer is valid.
827 */
Aneesh Vb8e60b92011-07-21 09:10:21 -0400828void preloader_console_init(void)
829{
Simon Glassf4d60392021-08-08 12:20:12 -0600830#ifdef CONFIG_SPL_SERIAL
Aneesh Vb8e60b92011-07-21 09:10:21 -0400831 gd->baudrate = CONFIG_BAUDRATE;
832
Aneesh Vb8e60b92011-07-21 09:10:21 -0400833 serial_init(); /* serial communications setup */
834
Ilya Yanok74193c62011-11-01 13:16:03 +0000835 gd->have_console = 1;
836
Simon Glass6324cce2018-11-15 18:43:57 -0700837#if CONFIG_IS_ENABLED(BANNER_PRINT)
Simon Glassdbd3f112018-11-15 18:43:56 -0700838 puts("\nU-Boot " SPL_TPL_NAME " " PLAIN_VERSION " (" U_BOOT_DATE " - "
839 U_BOOT_TIME " " U_BOOT_TZ ")\n");
Anatolij Gustschin6fe74d22018-01-25 18:45:22 +0100840#endif
Tom Rinife3b0c72012-08-13 11:37:56 -0700841#ifdef CONFIG_SPL_DISPLAY_PRINT
842 spl_display_print();
843#endif
Alex Kiernanb09f8922018-04-19 04:32:51 +0000844#endif
Samuel Hollandb03e6662020-05-07 18:08:10 -0500845}
Simon Glassd8711af2015-03-03 08:03:00 -0700846
847/**
Simon Goldschmidt0b820852019-07-16 22:30:36 +0200848 * This function is called before the stack is changed from initial stack to
849 * relocated stack. It tries to dump the stack size used
850 */
851__weak void spl_relocate_stack_check(void)
852{
853#if CONFIG_IS_ENABLED(SYS_REPORT_STACK_F_USAGE)
854 ulong init_sp = gd->start_addr_sp;
855 ulong stack_bottom = init_sp - CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK);
856 u8 *ptr = (u8 *)stack_bottom;
857 ulong i;
858
859 for (i = 0; i < CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK); i++) {
860 if (*ptr != CONFIG_VAL(SYS_STACK_F_CHECK_BYTE))
861 break;
862 ptr++;
863 }
864 printf("SPL initial stack usage: %lu bytes\n",
865 CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK) - i);
866#endif
867}
868
869/**
Simon Glassd8711af2015-03-03 08:03:00 -0700870 * spl_relocate_stack_gd() - Relocate stack ready for board_init_r() execution
871 *
872 * Sometimes board_init_f() runs with a stack in SRAM but we want to use SDRAM
873 * for the main board_init_r() execution. This is typically because we need
874 * more stack space for things like the MMC sub-system.
875 *
876 * This function calculates the stack position, copies the global_data into
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100877 * place, sets the new gd (except for ARM, for which setting GD within a C
878 * function may not always work) and returns the new stack position. The
879 * caller is responsible for setting up the sp register and, in the case
880 * of ARM, setting up gd.
881 *
882 * All of this is done using the same layout and alignments as done in
883 * board_init_f_init_reserve() / board_init_f_alloc_reserve().
Simon Glassd8711af2015-03-03 08:03:00 -0700884 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100885 * Return: new stack location, or 0 to use the same stack
Simon Glassd8711af2015-03-03 08:03:00 -0700886 */
887ulong spl_relocate_stack_gd(void)
888{
889#ifdef CONFIG_SPL_STACK_R
890 gd_t *new_gd;
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100891 ulong ptr = CONFIG_SPL_STACK_R_ADDR;
Simon Glassd8711af2015-03-03 08:03:00 -0700892
Simon Goldschmidt0b820852019-07-16 22:30:36 +0200893 if (CONFIG_IS_ENABLED(SYS_REPORT_STACK_F_USAGE))
894 spl_relocate_stack_check();
895
Simon Glassadad2d02023-09-26 08:14:27 -0600896#if defined(CONFIG_SPL_SYS_MALLOC_SIMPLE) && CONFIG_IS_ENABLED(SYS_MALLOC_F)
Hans de Goede8f280382015-09-13 15:04:17 +0200897 if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) {
Simon Goldschmidtb3672af2019-02-26 22:27:52 +0100898 debug("SPL malloc() before relocation used 0x%lx bytes (%ld KB)\n",
899 gd->malloc_ptr, gd->malloc_ptr / 1024);
Hans de Goede8f280382015-09-13 15:04:17 +0200900 ptr -= CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
901 gd->malloc_base = ptr;
902 gd->malloc_limit = CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
903 gd->malloc_ptr = 0;
904 }
905#endif
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100906 /* Get stack position: use 8-byte alignment for ABI compliance */
907 ptr = CONFIG_SPL_STACK_R_ADDR - roundup(sizeof(gd_t),16);
Nikhil M Jain799ceff2023-07-18 14:27:27 +0530908 gd->start_addr_sp = ptr;
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100909 new_gd = (gd_t *)ptr;
910 memcpy(new_gd, (void *)gd, sizeof(gd_t));
Simon Glass1b0deee2016-11-13 14:21:58 -0700911#if CONFIG_IS_ENABLED(DM)
912 dm_fixup_for_gd_move(new_gd);
913#endif
Thomas Weißschuh1bcd4882024-02-13 18:13:28 +0100914#if CONFIG_IS_ENABLED(LOG)
915 log_fixup_for_gd_move(new_gd);
916#endif
Lukas Auer2a2a9252019-08-21 21:14:46 +0200917#if !defined(CONFIG_ARM) && !defined(CONFIG_RISCV)
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100918 gd = new_gd;
919#endif
Simon Glassd8711af2015-03-03 08:03:00 -0700920 return ptr;
921#else
922 return 0;
923#endif
924}
Simon Glassc11c19f2019-11-14 12:57:17 -0700925
Philippe Reynes8d82a202020-12-11 19:56:47 +0100926#if defined(CONFIG_BOOTCOUNT_LIMIT) && \
927 ((!defined(CONFIG_TPL_BUILD) && !defined(CONFIG_SPL_BOOTCOUNT_LIMIT)) || \
928 (defined(CONFIG_TPL_BUILD) && !defined(CONFIG_TPL_BOOTCOUNT_LIMIT)))
Simon Glassc11c19f2019-11-14 12:57:17 -0700929void bootcount_store(ulong a)
930{
931}
932
933ulong bootcount_load(void)
934{
935 return 0;
936}
937#endif