blob: 3dafeaed3a18955331a75b6eda7bc886f6bc9769 [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
Aneesh Vb8e60b92011-07-21 09:10:21 -04009#include <common.h>
Simon Glass867a3982017-11-13 18:55:03 -070010#include <binman_sym.h>
Simon Glass1801a3e2014-11-10 17:16:46 -070011#include <dm.h>
Tom Rini28591df2012-08-13 12:03:19 -070012#include <spl.h>
Aneesh Vb8e60b92011-07-21 09:10:21 -040013#include <asm/u-boot.h>
Simon Schwarz992dcf72011-09-14 15:29:26 -040014#include <nand.h>
Aneesh V13a74c12011-07-21 09:10:27 -040015#include <fat.h>
Simon Glass50402412011-10-10 08:55:19 +000016#include <version.h>
Aneesh V13a74c12011-07-21 09:10:27 -040017#include <image.h>
Aneesh V0560be22011-10-21 12:29:34 -040018#include <malloc.h>
Simon Glass1801a3e2014-11-10 17:16:46 -070019#include <dm/root.h>
Andreas Müller0cda7a42012-01-04 15:26:24 +000020#include <linux/compiler.h>
B, Ravi4cf02b12017-04-18 17:27:27 +053021#include <fdt_support.h>
Aneesh Vb8e60b92011-07-21 09:10:21 -040022
23DECLARE_GLOBAL_DATA_PTR;
24
Stefan Roese5f169922012-08-28 10:50:59 +020025#ifndef CONFIG_SYS_UBOOT_START
26#define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE
27#endif
Stefano Babicfb5d62a2012-08-23 12:46:16 +020028#ifndef CONFIG_SYS_MONITOR_LEN
Andreas Bießmannad244122014-10-25 02:54:55 +020029/* Unknown U-Boot size, let's assume it will not be more than 200 KB */
Stefano Babicfb5d62a2012-08-23 12:46:16 +020030#define CONFIG_SYS_MONITOR_LEN (200 * 1024)
31#endif
32
Tom Rini28591df2012-08-13 12:03:19 -070033u32 *boot_params_ptr = NULL;
Simon Schwarze21d2d82011-09-14 15:33:34 -040034
Simon Glass867a3982017-11-13 18:55:03 -070035/* See spl.h for information about this */
36binman_sym_declare(ulong, u_boot_any, pos);
37
Tom Rini31dfba42012-08-22 15:31:05 -070038/* Define board data structure */
Aneesh Vb8e60b92011-07-21 09:10:21 -040039static bd_t bdata __attribute__ ((section(".data")));
40
Simon Schwarz305bc4c2012-03-15 04:01:38 +000041/*
Heiko Schocher747ceee2016-06-07 08:31:20 +020042 * Board-specific Platform code can reimplement show_boot_progress () if needed
43 */
44__weak void show_boot_progress(int val) {}
45
46/*
Simon Schwarz305bc4c2012-03-15 04:01:38 +000047 * Default function to determine if u-boot or the OS should
48 * be started. This implementation always returns 1.
49 *
50 * Please implement your own board specific funcion to do this.
51 *
52 * RETURN
53 * 0 to not start u-boot
54 * positive if u-boot should start
55 */
56#ifdef CONFIG_SPL_OS_BOOT
57__weak int spl_start_uboot(void)
58{
Tom Rini7b516862012-08-14 12:06:43 -070059 puts("SPL: Please implement spl_start_uboot() for your board\n");
60 puts("SPL: Direct Linux boot not active!\n");
Simon Schwarz305bc4c2012-03-15 04:01:38 +000061 return 1;
62}
Ladislav Michl9c743722016-07-12 20:28:14 +020063
B, Ravi4cf02b12017-04-18 17:27:27 +053064/* weak default platform specific function to initialize
65 * dram banks
66 */
67__weak int dram_init_banksize(void)
68{
69 return 0;
70}
71
Ladislav Michl9c743722016-07-12 20:28:14 +020072/*
73 * Weak default function for arch specific zImage check. Return zero
74 * and fill start and end address if image is recognized.
75 */
76int __weak bootz_setup(ulong image, ulong *start, ulong *end)
77{
78 return 1;
79}
Simon Schwarz305bc4c2012-03-15 04:01:38 +000080#endif
81
B, Ravi4cf02b12017-04-18 17:27:27 +053082void spl_fixup_fdt(void)
83{
84#if defined(CONFIG_SPL_OF_LIBFDT) && defined(CONFIG_SYS_SPL_ARGS_ADDR)
85 void *fdt_blob = (void *)CONFIG_SYS_SPL_ARGS_ADDR;
86 int err;
87
88 err = fdt_check_header(fdt_blob);
89 if (err < 0) {
90 printf("fdt_root: %s\n", fdt_strerror(err));
91 return;
92 }
93
94 /* fixup the memory dt node */
95 err = fdt_shrink_to_minimum(fdt_blob, 0);
96 if (err == 0) {
97 printf("spl: fdt_shrink_to_minimum err - %d\n", err);
98 return;
99 }
100
101 err = arch_fixup_fdt(fdt_blob);
102 if (err) {
103 printf("spl: arch_fixup_fdt err - %d\n", err);
104 return;
105 }
106#endif
107}
108
Stefan Roeseec90d342012-08-23 08:34:21 +0200109/*
110 * Weak default function for board specific cleanup/preparation before
111 * Linux boot. Some boards/platforms might not need it, so just provide
112 * an empty stub here.
113 */
114__weak void spl_board_prepare_for_linux(void)
115{
116 /* Nothing to do! */
117}
118
Michal Simek7a8465b2016-05-10 07:54:20 +0200119__weak void spl_board_prepare_for_boot(void)
120{
121 /* Nothing to do! */
122}
123
Simon Glass11a1a272016-09-24 18:19:52 -0600124void spl_set_header_raw_uboot(struct spl_image_info *spl_image)
Heiko Schochercf000272014-10-31 08:31:00 +0100125{
Simon Glass867a3982017-11-13 18:55:03 -0700126 ulong u_boot_pos = binman_sym(ulong, u_boot_any, pos);
127
Simon Glass11a1a272016-09-24 18:19:52 -0600128 spl_image->size = CONFIG_SYS_MONITOR_LEN;
Miquel Raynal31824ff2018-02-28 20:51:43 +0100129
130 /*
131 * Binman error cases: address of the end of the previous region or the
132 * start of the image's entry area (usually 0) if there is no previous
133 * region.
134 */
135 if (u_boot_pos && u_boot_pos != BINMAN_SYM_MISSING) {
136 /* Binman does not support separated entry addresses */
Simon Glass867a3982017-11-13 18:55:03 -0700137 spl_image->entry_point = u_boot_pos;
138 spl_image->load_addr = u_boot_pos;
139 } else {
140 spl_image->entry_point = CONFIG_SYS_UBOOT_START;
141 spl_image->load_addr = CONFIG_SYS_TEXT_BASE;
142 }
Simon Glass11a1a272016-09-24 18:19:52 -0600143 spl_image->os = IH_OS_U_BOOT;
144 spl_image->name = "U-Boot";
Heiko Schochercf000272014-10-31 08:31:00 +0100145}
146
Simon Glass6b2e4db2016-09-24 18:19:53 -0600147int spl_parse_image_header(struct spl_image_info *spl_image,
148 const struct image_header *header)
Aneesh V13a74c12011-07-21 09:10:27 -0400149{
Stefan Roese292db772012-08-27 12:50:57 +0200150 if (image_get_magic(header) == IH_MAGIC) {
Andrew F. Davis74630342017-02-16 11:18:39 -0600151#ifdef CONFIG_SPL_LEGACY_IMAGE_SUPPORT
152 u32 header_size = sizeof(struct image_header);
153
Simon Glass6b2e4db2016-09-24 18:19:53 -0600154 if (spl_image->flags & SPL_COPY_PAYLOAD_ONLY) {
Stefan Roese00b57b32012-08-27 12:50:58 +0200155 /*
156 * On some system (e.g. powerpc), the load-address and
157 * entry-point is located at address 0. We can't load
158 * to 0-0x40. So skip header in this case.
159 */
Simon Glass6b2e4db2016-09-24 18:19:53 -0600160 spl_image->load_addr = image_get_load(header);
161 spl_image->entry_point = image_get_ep(header);
162 spl_image->size = image_get_data_size(header);
Stefan Roese00b57b32012-08-27 12:50:58 +0200163 } else {
Simon Glass6b2e4db2016-09-24 18:19:53 -0600164 spl_image->entry_point = image_get_load(header);
Stefan Roese00b57b32012-08-27 12:50:58 +0200165 /* Load including the header */
Simon Glass6b2e4db2016-09-24 18:19:53 -0600166 spl_image->load_addr = spl_image->entry_point -
Stefan Roese00b57b32012-08-27 12:50:58 +0200167 header_size;
Simon Glass6b2e4db2016-09-24 18:19:53 -0600168 spl_image->size = image_get_data_size(header) +
Stefan Roese00b57b32012-08-27 12:50:58 +0200169 header_size;
170 }
Simon Glass6b2e4db2016-09-24 18:19:53 -0600171 spl_image->os = image_get_os(header);
172 spl_image->name = image_get_name(header);
Andre Przywara6c526072017-01-02 11:48:31 +0000173 debug("spl: payload image: %.*s load addr: 0x%lx size: %d\n",
André Draszik13ee6da2017-10-03 16:55:50 +0100174 IH_NMLEN, spl_image->name,
Simon Glass6b2e4db2016-09-24 18:19:53 -0600175 spl_image->load_addr, spl_image->size);
Andrew F. Davis74630342017-02-16 11:18:39 -0600176#else
177 /* LEGACY image not supported */
Anatolij Gustschindcb711f2017-08-01 16:17:12 +0200178 debug("Legacy boot image support not enabled, proceeding to other boot methods\n");
Andrew F. Davis74630342017-02-16 11:18:39 -0600179 return -EINVAL;
180#endif
Aneesh V13a74c12011-07-21 09:10:27 -0400181 } else {
Albert ARIBAUD \(3ADEV\)287b0942015-03-31 11:40:50 +0200182#ifdef CONFIG_SPL_PANIC_ON_RAW_IMAGE
183 /*
184 * CONFIG_SPL_PANIC_ON_RAW_IMAGE is defined when the
185 * code which loads images in SPL cannot guarantee that
186 * absolutely all read errors will be reported.
187 * An example is the LPC32XX MLC NAND driver, which
188 * will consider that a completely unreadable NAND block
189 * is bad, and thus should be skipped silently.
190 */
191 panic("** no mkimage signature but raw image not supported");
Paul Kocialkowskie48b7752016-08-24 20:04:42 +0200192#endif
193
Ladislav Michl9c743722016-07-12 20:28:14 +0200194#ifdef CONFIG_SPL_OS_BOOT
195 ulong start, end;
196
197 if (!bootz_setup((ulong)header, &start, &end)) {
Simon Glass6b2e4db2016-09-24 18:19:53 -0600198 spl_image->name = "Linux";
199 spl_image->os = IH_OS_LINUX;
200 spl_image->load_addr = CONFIG_SYS_LOAD_ADDR;
201 spl_image->entry_point = CONFIG_SYS_LOAD_ADDR;
202 spl_image->size = end - start;
Andre Przywara6c526072017-01-02 11:48:31 +0000203 debug("spl: payload zImage, load addr: 0x%lx size: %d\n",
Simon Glass6b2e4db2016-09-24 18:19:53 -0600204 spl_image->load_addr, spl_image->size);
Ladislav Michl9c743722016-07-12 20:28:14 +0200205 return 0;
206 }
207#endif
Paul Kocialkowskie48b7752016-08-24 20:04:42 +0200208
Andrew F. Davisb4be3c32017-02-16 11:18:38 -0600209#ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT
Aneesh V13a74c12011-07-21 09:10:27 -0400210 /* Signature not found - assume u-boot.bin */
Tom Rini7b516862012-08-14 12:06:43 -0700211 debug("mkimage signature not found - ih_magic = %x\n",
Aneesh V13a74c12011-07-21 09:10:27 -0400212 header->ih_magic);
Simon Glass6b2e4db2016-09-24 18:19:53 -0600213 spl_set_header_raw_uboot(spl_image);
Andrew F. Davisb4be3c32017-02-16 11:18:38 -0600214#else
215 /* RAW image not supported, proceed to other boot methods. */
Anatolij Gustschindcb711f2017-08-01 16:17:12 +0200216 debug("Raw boot image support not enabled, proceeding to other boot methods\n");
Andrew F. Davisb4be3c32017-02-16 11:18:38 -0600217 return -EINVAL;
Albert ARIBAUD \(3ADEV\)287b0942015-03-31 11:40:50 +0200218#endif
Aneesh V13a74c12011-07-21 09:10:27 -0400219 }
Andrew F. Davisb4be3c32017-02-16 11:18:38 -0600220
Marek Vasut02266e22016-04-29 00:44:54 +0200221 return 0;
Aneesh V13a74c12011-07-21 09:10:27 -0400222}
223
Allen Martinc67e4852012-10-19 21:08:22 +0000224__weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
Aneesh V13a74c12011-07-21 09:10:27 -0400225{
SRICHARAN R3f30b0a2013-04-24 00:41:24 +0000226 typedef void __noreturn (*image_entry_noargs_t)(void);
227
Aneesh V13a74c12011-07-21 09:10:27 -0400228 image_entry_noargs_t image_entry =
Andre Przywara6c526072017-01-02 11:48:31 +0000229 (image_entry_noargs_t)spl_image->entry_point;
Aneesh V13a74c12011-07-21 09:10:27 -0400230
Andre Przywara6c526072017-01-02 11:48:31 +0000231 debug("image entry point: 0x%lX\n", spl_image->entry_point);
SRICHARAN R3f30b0a2013-04-24 00:41:24 +0000232 image_entry();
Aneesh V13a74c12011-07-21 09:10:27 -0400233}
234
Eddie Cai32258992017-03-15 08:43:28 -0600235static int spl_common_init(bool setup_malloc)
Aneesh Vb8e60b92011-07-21 09:10:21 -0400236{
Simon Glass9a49ec12015-02-27 22:06:42 -0700237 int ret;
238
Eddie Cai32258992017-03-15 08:43:28 -0600239 debug("spl_early_init()\n");
240
Andy Yan1fa20e4d2017-07-24 17:43:34 +0800241#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Eddie Cai32258992017-03-15 08:43:28 -0600242 if (setup_malloc) {
Marek Vasutd61ba112016-05-25 02:14:56 +0200243#ifdef CONFIG_MALLOC_F_ADDR
Eddie Cai32258992017-03-15 08:43:28 -0600244 gd->malloc_base = CONFIG_MALLOC_F_ADDR;
Marek Vasutd61ba112016-05-25 02:14:56 +0200245#endif
Andy Yan1fa20e4d2017-07-24 17:43:34 +0800246 gd->malloc_limit = CONFIG_VAL(SYS_MALLOC_F_LEN);
Eddie Cai32258992017-03-15 08:43:28 -0600247 gd->malloc_ptr = 0;
248 }
Tom Rini730bae72012-08-13 14:13:07 -0700249#endif
Simon Glass01154cb2017-05-22 05:05:35 -0600250 ret = bootstage_init(true);
251 if (ret) {
252 debug("%s: Failed to set up bootstage: ret=%d\n", __func__,
253 ret);
254 return ret;
255 }
256 bootstage_mark_name(BOOTSTAGE_ID_START_SPL, "spl");
Simon Glassbb948382016-07-04 11:57:56 -0600257 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
Simon Glass9a49ec12015-02-27 22:06:42 -0700258 ret = fdtdec_setup();
259 if (ret) {
260 debug("fdtdec_setup() returned error %d\n", ret);
Simon Glassfa2a4db2015-06-23 15:39:10 -0600261 return ret;
Simon Glass9a49ec12015-02-27 22:06:42 -0700262 }
263 }
Philipp Tomsich60e15782017-06-30 19:02:53 +0200264 if (CONFIG_IS_ENABLED(DM)) {
Simon Glass01154cb2017-05-22 05:05:35 -0600265 bootstage_start(BOOTSTATE_ID_ACCUM_DM_SPL, "dm_spl");
Tom Rini9732f792017-01-14 12:20:23 -0500266 /* With CONFIG_SPL_OF_PLATDATA, bring in all devices */
Simon Glasse9559fb2016-07-04 11:58:14 -0600267 ret = dm_init_and_scan(!CONFIG_IS_ENABLED(OF_PLATDATA));
Simon Glass01154cb2017-05-22 05:05:35 -0600268 bootstage_accum(BOOTSTATE_ID_ACCUM_DM_SPL);
Simon Glass9a49ec12015-02-27 22:06:42 -0700269 if (ret) {
270 debug("dm_init_and_scan() returned error %d\n", ret);
Simon Glassfa2a4db2015-06-23 15:39:10 -0600271 return ret;
Simon Glass9a49ec12015-02-27 22:06:42 -0700272 }
273 }
Eddie Cai32258992017-03-15 08:43:28 -0600274
275 return 0;
276}
277
York Suna34ca5f2017-09-28 08:42:10 -0700278void spl_set_bd(void)
279{
280 if (!gd->bd)
281 gd->bd = &bdata;
282}
283
Eddie Cai32258992017-03-15 08:43:28 -0600284int spl_early_init(void)
285{
286 int ret;
287
288 ret = spl_common_init(true);
289 if (ret)
290 return ret;
291 gd->flags |= GD_FLG_SPL_EARLY_INIT;
292
293 return 0;
294}
295
296int spl_init(void)
297{
298 int ret;
Tom Rini89ea21e2017-03-20 14:19:27 -0400299 bool setup_malloc = !(IS_ENABLED(CONFIG_SPL_STACK_R) &&
300 IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIMPLE));
Eddie Cai32258992017-03-15 08:43:28 -0600301
302 if (!(gd->flags & GD_FLG_SPL_EARLY_INIT)) {
Tom Rini89ea21e2017-03-20 14:19:27 -0400303 ret = spl_common_init(setup_malloc);
Eddie Cai32258992017-03-15 08:43:28 -0600304 if (ret)
305 return ret;
306 }
Simon Glassfa2a4db2015-06-23 15:39:10 -0600307 gd->flags |= GD_FLG_SPL_INIT;
308
309 return 0;
310}
311
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200312#ifndef BOOT_DEVICE_NONE
313#define BOOT_DEVICE_NONE 0xdeadbeef
314#endif
315
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200316__weak void board_boot_order(u32 *spl_boot_list)
317{
318 spl_boot_list[0] = spl_boot_device();
319}
320
Simon Glassd1cf3732016-09-24 18:19:58 -0600321static struct spl_image_loader *spl_ll_find_loader(uint boot_device)
322{
323 struct spl_image_loader *drv =
324 ll_entry_start(struct spl_image_loader, spl_image_loader);
325 const int n_ents =
326 ll_entry_count(struct spl_image_loader, spl_image_loader);
327 struct spl_image_loader *entry;
328
329 for (entry = drv; entry != drv + n_ents; entry++) {
330 if (boot_device == entry->boot_device)
331 return entry;
332 }
333
334 /* Not found */
335 return NULL;
336}
337
Simon Glassf1e55752016-11-30 15:30:52 -0700338static int spl_load_image(struct spl_image_info *spl_image,
339 struct spl_image_loader *loader)
Simon Glassfa2a4db2015-06-23 15:39:10 -0600340{
Simon Glassc0b6c9b2016-09-24 18:19:57 -0600341 struct spl_boot_device bootdev;
342
Simon Glassf1e55752016-11-30 15:30:52 -0700343 bootdev.boot_device = loader->boot_device;
Simon Glassc0b6c9b2016-09-24 18:19:57 -0600344 bootdev.boot_device_name = NULL;
345
Simon Glassc9ef1852016-11-30 15:30:51 -0700346 return loader->load_image(spl_image, &bootdev);
347}
348
349/**
350 * boot_from_devices() - Try loading an booting U-Boot from a list of devices
351 *
352 * @spl_image: Place to put the image details if successful
353 * @spl_boot_list: List of boot devices to try
354 * @count: Number of elements in spl_boot_list
355 * @return 0 if OK, -ve on error
356 */
357static int boot_from_devices(struct spl_image_info *spl_image,
358 u32 spl_boot_list[], int count)
359{
360 int i;
361
362 for (i = 0; i < count && spl_boot_list[i] != BOOT_DEVICE_NONE; i++) {
363 struct spl_image_loader *loader;
364
Simon Glassc9ef1852016-11-30 15:30:51 -0700365 loader = spl_ll_find_loader(spl_boot_list[i]);
Stefan Roesece21aa12014-11-11 19:03:55 +0100366#if defined(CONFIG_SPL_SERIAL_SUPPORT) && defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Simon Glass2b530f92016-11-30 15:30:53 -0700367 if (loader)
Andrew F. Davis07009932017-01-12 10:19:55 -0600368 printf("Trying to boot from %s\n", loader->name);
Simon Glass2b530f92016-11-30 15:30:53 -0700369 else
Simon Glassc9ef1852016-11-30 15:30:51 -0700370 puts("SPL: Unsupported Boot Device!\n");
Stefan Roesece21aa12014-11-11 19:03:55 +0100371#endif
Simon Glassf1e55752016-11-30 15:30:52 -0700372 if (loader && !spl_load_image(spl_image, loader))
Simon Glassc9ef1852016-11-30 15:30:51 -0700373 return 0;
374 }
375
Simon Glassa4996482016-09-24 18:20:12 -0600376 return -ENODEV;
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200377}
378
379void board_init_r(gd_t *dummy1, ulong dummy2)
380{
Simon Glassce8f5092016-09-24 18:20:17 -0600381 u32 spl_boot_list[] = {
382 BOOT_DEVICE_NONE,
383 BOOT_DEVICE_NONE,
384 BOOT_DEVICE_NONE,
385 BOOT_DEVICE_NONE,
386 BOOT_DEVICE_NONE,
387 };
388 struct spl_image_info spl_image;
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200389
390 debug(">>spl:board_init_r()\n");
York Suna34ca5f2017-09-28 08:42:10 -0700391
392 spl_set_bd();
393
B, Ravi4cf02b12017-04-18 17:27:27 +0530394#ifdef CONFIG_SPL_OS_BOOT
395 dram_init_banksize();
396#endif
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200397
398#if defined(CONFIG_SYS_SPL_MALLOC_START)
399 mem_malloc_init(CONFIG_SYS_SPL_MALLOC_START,
400 CONFIG_SYS_SPL_MALLOC_SIZE);
401 gd->flags |= GD_FLG_FULL_MALLOC_INIT;
402#endif
403 if (!(gd->flags & GD_FLG_SPL_INIT)) {
404 if (spl_init())
405 hang();
406 }
Anatolij Gustschin28674c92017-08-28 17:46:33 +0200407#if !defined(CONFIG_PPC) && !defined(CONFIG_ARCH_MX6)
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200408 /*
409 * timer_init() does not exist on PPC systems. The timer is initialized
410 * and enabled (decrementer) in interrupt_init() here.
411 */
412 timer_init();
413#endif
414
Kever Yang2b5994b2018-01-20 18:00:26 +0800415#if CONFIG_IS_ENABLED(BOARD_INIT)
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200416 spl_board_init();
417#endif
418
Simon Glassce8f5092016-09-24 18:20:17 -0600419 memset(&spl_image, '\0', sizeof(spl_image));
Vikas Manocha62b021c2017-04-07 15:38:13 -0700420#ifdef CONFIG_SYS_SPL_ARGS_ADDR
421 spl_image.arg = (void *)CONFIG_SYS_SPL_ARGS_ADDR;
422#endif
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200423 board_boot_order(spl_boot_list);
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200424
Simon Glassc9ef1852016-11-30 15:30:51 -0700425 if (boot_from_devices(&spl_image, spl_boot_list,
426 ARRAY_SIZE(spl_boot_list))) {
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200427 puts("SPL: failed to boot from all boot devices\n");
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200428 hang();
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200429 }
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200430
Vikas Manocha11dd7062017-05-28 12:55:08 -0700431#ifdef CONFIG_CPU_V7M
432 spl_image.entry_point |= 0x1;
433#endif
Simon Schwarze21d2d82011-09-14 15:33:34 -0400434 switch (spl_image.os) {
Aneesh V13a74c12011-07-21 09:10:27 -0400435 case IH_OS_U_BOOT:
436 debug("Jumping to U-Boot\n");
Aneesh V13a74c12011-07-21 09:10:27 -0400437 break;
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200438#if CONFIG_IS_ENABLED(ATF)
439 case IH_OS_ARM_TRUSTED_FIRMWARE:
440 debug("Jumping to U-Boot via ARM Trusted Firmware\n");
441 spl_invoke_atf(&spl_image);
442 break;
443#endif
Simon Schwarz305bc4c2012-03-15 04:01:38 +0000444#ifdef CONFIG_SPL_OS_BOOT
445 case IH_OS_LINUX:
446 debug("Jumping to Linux\n");
B, Ravi4cf02b12017-04-18 17:27:27 +0530447 spl_fixup_fdt();
Simon Schwarz305bc4c2012-03-15 04:01:38 +0000448 spl_board_prepare_for_linux();
Vikas Manocha62b021c2017-04-07 15:38:13 -0700449 jump_to_image_linux(&spl_image);
Simon Schwarz305bc4c2012-03-15 04:01:38 +0000450#endif
Aneesh V13a74c12011-07-21 09:10:27 -0400451 default:
Tom Rini79178462012-08-27 14:58:28 -0700452 debug("Unsupported OS image.. Jumping nevertheless..\n");
Aneesh V13a74c12011-07-21 09:10:27 -0400453 }
Andy Yan1fa20e4d2017-07-24 17:43:34 +0800454#if CONFIG_VAL(SYS_MALLOC_F_LEN) && !defined(CONFIG_SYS_SPL_MALLOC_SIZE)
Simon Glassb2d69942014-11-10 17:16:45 -0700455 debug("SPL malloc() used %#lx bytes (%ld KB)\n", gd->malloc_ptr,
456 gd->malloc_ptr / 1024);
457#endif
Simon Glass01154cb2017-05-22 05:05:35 -0600458#ifdef CONFIG_BOOTSTAGE_STASH
459 int ret;
460
461 bootstage_mark_name(BOOTSTAGE_ID_END_SPL, "end_spl");
462 ret = bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
463 CONFIG_BOOTSTAGE_STASH_SIZE);
464 if (ret)
465 debug("Failed to stash bootstage: err=%d\n", ret);
466#endif
Kever Yangaca62db2017-09-13 18:24:24 +0800467
Kever Yangaca62db2017-09-13 18:24:24 +0800468 debug("loaded - jumping to U-Boot...\n");
Michal Simek7a8465b2016-05-10 07:54:20 +0200469 spl_board_prepare_for_boot();
Allen Martinc67e4852012-10-19 21:08:22 +0000470 jump_to_image_no_args(&spl_image);
Aneesh Vb8e60b92011-07-21 09:10:21 -0400471}
472
Alex Kiernanb09f8922018-04-19 04:32:51 +0000473#ifdef CONFIG_SPL_SERIAL_SUPPORT
Tom Rini31dfba42012-08-22 15:31:05 -0700474/*
475 * This requires UART clocks to be enabled. In order for this to work the
476 * caller must ensure that the gd pointer is valid.
477 */
Aneesh Vb8e60b92011-07-21 09:10:21 -0400478void preloader_console_init(void)
479{
Aneesh Vb8e60b92011-07-21 09:10:21 -0400480 gd->baudrate = CONFIG_BAUDRATE;
481
Aneesh Vb8e60b92011-07-21 09:10:21 -0400482 serial_init(); /* serial communications setup */
483
Ilya Yanok74193c62011-11-01 13:16:03 +0000484 gd->have_console = 1;
485
Anatolij Gustschin6fe74d22018-01-25 18:45:22 +0100486#ifndef CONFIG_SPL_DISABLE_BANNER_PRINT
Tom Rini7b516862012-08-14 12:06:43 -0700487 puts("\nU-Boot SPL " PLAIN_VERSION " (" U_BOOT_DATE " - " \
Klaus Goger95bed2d2018-01-04 07:22:11 +0100488 U_BOOT_TIME " " U_BOOT_TZ ")\n");
Anatolij Gustschin6fe74d22018-01-25 18:45:22 +0100489#endif
Tom Rinife3b0c72012-08-13 11:37:56 -0700490#ifdef CONFIG_SPL_DISPLAY_PRINT
491 spl_display_print();
492#endif
Tom Rini09c797b2011-10-04 04:59:23 +0000493}
Alex Kiernanb09f8922018-04-19 04:32:51 +0000494#endif
Simon Glassd8711af2015-03-03 08:03:00 -0700495
496/**
497 * spl_relocate_stack_gd() - Relocate stack ready for board_init_r() execution
498 *
499 * Sometimes board_init_f() runs with a stack in SRAM but we want to use SDRAM
500 * for the main board_init_r() execution. This is typically because we need
501 * more stack space for things like the MMC sub-system.
502 *
503 * This function calculates the stack position, copies the global_data into
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100504 * place, sets the new gd (except for ARM, for which setting GD within a C
505 * function may not always work) and returns the new stack position. The
506 * caller is responsible for setting up the sp register and, in the case
507 * of ARM, setting up gd.
508 *
509 * All of this is done using the same layout and alignments as done in
510 * board_init_f_init_reserve() / board_init_f_alloc_reserve().
Simon Glassd8711af2015-03-03 08:03:00 -0700511 *
512 * @return new stack location, or 0 to use the same stack
513 */
514ulong spl_relocate_stack_gd(void)
515{
516#ifdef CONFIG_SPL_STACK_R
517 gd_t *new_gd;
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100518 ulong ptr = CONFIG_SPL_STACK_R_ADDR;
Simon Glassd8711af2015-03-03 08:03:00 -0700519
Philipp Tomsich10139352017-07-28 11:06:03 +0200520#if defined(CONFIG_SPL_SYS_MALLOC_SIMPLE) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Hans de Goede8f280382015-09-13 15:04:17 +0200521 if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) {
Hans de Goede8f280382015-09-13 15:04:17 +0200522 ptr -= CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
523 gd->malloc_base = ptr;
524 gd->malloc_limit = CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
525 gd->malloc_ptr = 0;
526 }
527#endif
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100528 /* Get stack position: use 8-byte alignment for ABI compliance */
529 ptr = CONFIG_SPL_STACK_R_ADDR - roundup(sizeof(gd_t),16);
530 new_gd = (gd_t *)ptr;
531 memcpy(new_gd, (void *)gd, sizeof(gd_t));
Simon Glass1b0deee2016-11-13 14:21:58 -0700532#if CONFIG_IS_ENABLED(DM)
533 dm_fixup_for_gd_move(new_gd);
534#endif
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100535#if !defined(CONFIG_ARM)
536 gd = new_gd;
537#endif
Simon Glassd8711af2015-03-03 08:03:00 -0700538 return ptr;
539#else
540 return 0;
541#endif
542}