blob: f493a3ad495422a31e490f9d4f12a29d4ba876b4 [file] [log] [blame]
Aneesh Vb8e60b92011-07-21 09:10:21 -04001/*
2 * (C) Copyright 2010
3 * Texas Instruments, <www.ti.com>
4 *
5 * Aneesh V <aneesh@ti.com>
6 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Aneesh Vb8e60b92011-07-21 09:10:21 -04008 */
9#include <common.h>
Simon Glass1801a3e2014-11-10 17:16:46 -070010#include <dm.h>
Tom Rini28591df2012-08-13 12:03:19 -070011#include <spl.h>
Aneesh Vb8e60b92011-07-21 09:10:21 -040012#include <asm/u-boot.h>
Simon Schwarz992dcf72011-09-14 15:29:26 -040013#include <nand.h>
Aneesh V13a74c12011-07-21 09:10:27 -040014#include <fat.h>
Simon Glass50402412011-10-10 08:55:19 +000015#include <version.h>
Aneesh V13a74c12011-07-21 09:10:27 -040016#include <image.h>
Aneesh V0560be22011-10-21 12:29:34 -040017#include <malloc.h>
Simon Glass1801a3e2014-11-10 17:16:46 -070018#include <dm/root.h>
Andreas Müller0cda7a42012-01-04 15:26:24 +000019#include <linux/compiler.h>
B, Ravi4cf02b12017-04-18 17:27:27 +053020#include <fdt_support.h>
Aneesh Vb8e60b92011-07-21 09:10:21 -040021
22DECLARE_GLOBAL_DATA_PTR;
23
Stefan Roese5f169922012-08-28 10:50:59 +020024#ifndef CONFIG_SYS_UBOOT_START
25#define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE
26#endif
Stefano Babicfb5d62a2012-08-23 12:46:16 +020027#ifndef CONFIG_SYS_MONITOR_LEN
Andreas Bießmannad244122014-10-25 02:54:55 +020028/* Unknown U-Boot size, let's assume it will not be more than 200 KB */
Stefano Babicfb5d62a2012-08-23 12:46:16 +020029#define CONFIG_SYS_MONITOR_LEN (200 * 1024)
30#endif
31
Tom Rini28591df2012-08-13 12:03:19 -070032u32 *boot_params_ptr = NULL;
Simon Schwarze21d2d82011-09-14 15:33:34 -040033
Tom Rini31dfba42012-08-22 15:31:05 -070034/* Define board data structure */
Aneesh Vb8e60b92011-07-21 09:10:21 -040035static bd_t bdata __attribute__ ((section(".data")));
36
Simon Schwarz305bc4c2012-03-15 04:01:38 +000037/*
Heiko Schocher747ceee2016-06-07 08:31:20 +020038 * Board-specific Platform code can reimplement show_boot_progress () if needed
39 */
40__weak void show_boot_progress(int val) {}
41
42/*
Simon Schwarz305bc4c2012-03-15 04:01:38 +000043 * Default function to determine if u-boot or the OS should
44 * be started. This implementation always returns 1.
45 *
46 * Please implement your own board specific funcion to do this.
47 *
48 * RETURN
49 * 0 to not start u-boot
50 * positive if u-boot should start
51 */
52#ifdef CONFIG_SPL_OS_BOOT
53__weak int spl_start_uboot(void)
54{
Tom Rini7b516862012-08-14 12:06:43 -070055 puts("SPL: Please implement spl_start_uboot() for your board\n");
56 puts("SPL: Direct Linux boot not active!\n");
Simon Schwarz305bc4c2012-03-15 04:01:38 +000057 return 1;
58}
Ladislav Michl9c743722016-07-12 20:28:14 +020059
B, Ravi4cf02b12017-04-18 17:27:27 +053060/* weak default platform specific function to initialize
61 * dram banks
62 */
63__weak int dram_init_banksize(void)
64{
65 return 0;
66}
67
Ladislav Michl9c743722016-07-12 20:28:14 +020068/*
69 * Weak default function for arch specific zImage check. Return zero
70 * and fill start and end address if image is recognized.
71 */
72int __weak bootz_setup(ulong image, ulong *start, ulong *end)
73{
74 return 1;
75}
Simon Schwarz305bc4c2012-03-15 04:01:38 +000076#endif
77
B, Ravi4cf02b12017-04-18 17:27:27 +053078void spl_fixup_fdt(void)
79{
80#if defined(CONFIG_SPL_OF_LIBFDT) && defined(CONFIG_SYS_SPL_ARGS_ADDR)
81 void *fdt_blob = (void *)CONFIG_SYS_SPL_ARGS_ADDR;
82 int err;
83
84 err = fdt_check_header(fdt_blob);
85 if (err < 0) {
86 printf("fdt_root: %s\n", fdt_strerror(err));
87 return;
88 }
89
90 /* fixup the memory dt node */
91 err = fdt_shrink_to_minimum(fdt_blob, 0);
92 if (err == 0) {
93 printf("spl: fdt_shrink_to_minimum err - %d\n", err);
94 return;
95 }
96
97 err = arch_fixup_fdt(fdt_blob);
98 if (err) {
99 printf("spl: arch_fixup_fdt err - %d\n", err);
100 return;
101 }
102#endif
103}
104
Stefan Roeseec90d342012-08-23 08:34:21 +0200105/*
106 * Weak default function for board specific cleanup/preparation before
107 * Linux boot. Some boards/platforms might not need it, so just provide
108 * an empty stub here.
109 */
110__weak void spl_board_prepare_for_linux(void)
111{
112 /* Nothing to do! */
113}
114
Michal Simek7a8465b2016-05-10 07:54:20 +0200115__weak void spl_board_prepare_for_boot(void)
116{
117 /* Nothing to do! */
118}
119
Simon Glass11a1a272016-09-24 18:19:52 -0600120void spl_set_header_raw_uboot(struct spl_image_info *spl_image)
Heiko Schochercf000272014-10-31 08:31:00 +0100121{
Simon Glass11a1a272016-09-24 18:19:52 -0600122 spl_image->size = CONFIG_SYS_MONITOR_LEN;
123 spl_image->entry_point = CONFIG_SYS_UBOOT_START;
Vikas Manocha7b22ba02017-03-31 16:34:39 -0700124#ifdef CONFIG_CPU_V7M
125 spl_image->entry_point |= 0x1;
126#endif
Simon Glass11a1a272016-09-24 18:19:52 -0600127 spl_image->load_addr = CONFIG_SYS_TEXT_BASE;
128 spl_image->os = IH_OS_U_BOOT;
129 spl_image->name = "U-Boot";
Heiko Schochercf000272014-10-31 08:31:00 +0100130}
131
Simon Glass6b2e4db2016-09-24 18:19:53 -0600132int spl_parse_image_header(struct spl_image_info *spl_image,
133 const struct image_header *header)
Aneesh V13a74c12011-07-21 09:10:27 -0400134{
Stefan Roese292db772012-08-27 12:50:57 +0200135 if (image_get_magic(header) == IH_MAGIC) {
Andrew F. Davis74630342017-02-16 11:18:39 -0600136#ifdef CONFIG_SPL_LEGACY_IMAGE_SUPPORT
137 u32 header_size = sizeof(struct image_header);
138
Simon Glass6b2e4db2016-09-24 18:19:53 -0600139 if (spl_image->flags & SPL_COPY_PAYLOAD_ONLY) {
Stefan Roese00b57b32012-08-27 12:50:58 +0200140 /*
141 * On some system (e.g. powerpc), the load-address and
142 * entry-point is located at address 0. We can't load
143 * to 0-0x40. So skip header in this case.
144 */
Simon Glass6b2e4db2016-09-24 18:19:53 -0600145 spl_image->load_addr = image_get_load(header);
146 spl_image->entry_point = image_get_ep(header);
147 spl_image->size = image_get_data_size(header);
Stefan Roese00b57b32012-08-27 12:50:58 +0200148 } else {
Simon Glass6b2e4db2016-09-24 18:19:53 -0600149 spl_image->entry_point = image_get_load(header);
Stefan Roese00b57b32012-08-27 12:50:58 +0200150 /* Load including the header */
Simon Glass6b2e4db2016-09-24 18:19:53 -0600151 spl_image->load_addr = spl_image->entry_point -
Stefan Roese00b57b32012-08-27 12:50:58 +0200152 header_size;
Simon Glass6b2e4db2016-09-24 18:19:53 -0600153 spl_image->size = image_get_data_size(header) +
Stefan Roese00b57b32012-08-27 12:50:58 +0200154 header_size;
155 }
Simon Glass6b2e4db2016-09-24 18:19:53 -0600156 spl_image->os = image_get_os(header);
157 spl_image->name = image_get_name(header);
Andre Przywara6c526072017-01-02 11:48:31 +0000158 debug("spl: payload image: %.*s load addr: 0x%lx size: %d\n",
Simon Glass6b2e4db2016-09-24 18:19:53 -0600159 (int)sizeof(spl_image->name), spl_image->name,
160 spl_image->load_addr, spl_image->size);
Andrew F. Davis74630342017-02-16 11:18:39 -0600161#else
162 /* LEGACY image not supported */
163 debug("Legacy boot image support not enabled, proceeding to other boot methods");
164 return -EINVAL;
165#endif
Aneesh V13a74c12011-07-21 09:10:27 -0400166 } else {
Albert ARIBAUD \(3ADEV\)287b0942015-03-31 11:40:50 +0200167#ifdef CONFIG_SPL_PANIC_ON_RAW_IMAGE
168 /*
169 * CONFIG_SPL_PANIC_ON_RAW_IMAGE is defined when the
170 * code which loads images in SPL cannot guarantee that
171 * absolutely all read errors will be reported.
172 * An example is the LPC32XX MLC NAND driver, which
173 * will consider that a completely unreadable NAND block
174 * is bad, and thus should be skipped silently.
175 */
176 panic("** no mkimage signature but raw image not supported");
Paul Kocialkowskie48b7752016-08-24 20:04:42 +0200177#endif
178
Ladislav Michl9c743722016-07-12 20:28:14 +0200179#ifdef CONFIG_SPL_OS_BOOT
180 ulong start, end;
181
182 if (!bootz_setup((ulong)header, &start, &end)) {
Simon Glass6b2e4db2016-09-24 18:19:53 -0600183 spl_image->name = "Linux";
184 spl_image->os = IH_OS_LINUX;
185 spl_image->load_addr = CONFIG_SYS_LOAD_ADDR;
186 spl_image->entry_point = CONFIG_SYS_LOAD_ADDR;
187 spl_image->size = end - start;
Andre Przywara6c526072017-01-02 11:48:31 +0000188 debug("spl: payload zImage, load addr: 0x%lx size: %d\n",
Simon Glass6b2e4db2016-09-24 18:19:53 -0600189 spl_image->load_addr, spl_image->size);
Ladislav Michl9c743722016-07-12 20:28:14 +0200190 return 0;
191 }
192#endif
Paul Kocialkowskie48b7752016-08-24 20:04:42 +0200193
Andrew F. Davisb4be3c32017-02-16 11:18:38 -0600194#ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT
Aneesh V13a74c12011-07-21 09:10:27 -0400195 /* Signature not found - assume u-boot.bin */
Tom Rini7b516862012-08-14 12:06:43 -0700196 debug("mkimage signature not found - ih_magic = %x\n",
Aneesh V13a74c12011-07-21 09:10:27 -0400197 header->ih_magic);
Simon Glass6b2e4db2016-09-24 18:19:53 -0600198 spl_set_header_raw_uboot(spl_image);
Andrew F. Davisb4be3c32017-02-16 11:18:38 -0600199#else
200 /* RAW image not supported, proceed to other boot methods. */
201 debug("Raw boot image support not enabled, proceeding to other boot methods");
202 return -EINVAL;
Albert ARIBAUD \(3ADEV\)287b0942015-03-31 11:40:50 +0200203#endif
Aneesh V13a74c12011-07-21 09:10:27 -0400204 }
Andrew F. Davisb4be3c32017-02-16 11:18:38 -0600205
Marek Vasut02266e22016-04-29 00:44:54 +0200206 return 0;
Aneesh V13a74c12011-07-21 09:10:27 -0400207}
208
Allen Martinc67e4852012-10-19 21:08:22 +0000209__weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
Aneesh V13a74c12011-07-21 09:10:27 -0400210{
SRICHARAN R3f30b0a2013-04-24 00:41:24 +0000211 typedef void __noreturn (*image_entry_noargs_t)(void);
212
Aneesh V13a74c12011-07-21 09:10:27 -0400213 image_entry_noargs_t image_entry =
Andre Przywara6c526072017-01-02 11:48:31 +0000214 (image_entry_noargs_t)spl_image->entry_point;
Aneesh V13a74c12011-07-21 09:10:27 -0400215
Andre Przywara6c526072017-01-02 11:48:31 +0000216 debug("image entry point: 0x%lX\n", spl_image->entry_point);
SRICHARAN R3f30b0a2013-04-24 00:41:24 +0000217 image_entry();
Aneesh V13a74c12011-07-21 09:10:27 -0400218}
219
Eddie Cai32258992017-03-15 08:43:28 -0600220static int spl_common_init(bool setup_malloc)
Aneesh Vb8e60b92011-07-21 09:10:21 -0400221{
Simon Glass9a49ec12015-02-27 22:06:42 -0700222 int ret;
223
Eddie Cai32258992017-03-15 08:43:28 -0600224 debug("spl_early_init()\n");
225
226#if defined(CONFIG_SYS_MALLOC_F_LEN)
227 if (setup_malloc) {
Marek Vasutd61ba112016-05-25 02:14:56 +0200228#ifdef CONFIG_MALLOC_F_ADDR
Eddie Cai32258992017-03-15 08:43:28 -0600229 gd->malloc_base = CONFIG_MALLOC_F_ADDR;
Marek Vasutd61ba112016-05-25 02:14:56 +0200230#endif
Eddie Cai32258992017-03-15 08:43:28 -0600231 gd->malloc_limit = CONFIG_SYS_MALLOC_F_LEN;
232 gd->malloc_ptr = 0;
233 }
Tom Rini730bae72012-08-13 14:13:07 -0700234#endif
Simon Glass01154cb2017-05-22 05:05:35 -0600235 ret = bootstage_init(true);
236 if (ret) {
237 debug("%s: Failed to set up bootstage: ret=%d\n", __func__,
238 ret);
239 return ret;
240 }
241 bootstage_mark_name(BOOTSTAGE_ID_START_SPL, "spl");
Simon Glassbb948382016-07-04 11:57:56 -0600242 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
Simon Glass9a49ec12015-02-27 22:06:42 -0700243 ret = fdtdec_setup();
244 if (ret) {
245 debug("fdtdec_setup() returned error %d\n", ret);
Simon Glassfa2a4db2015-06-23 15:39:10 -0600246 return ret;
Simon Glass9a49ec12015-02-27 22:06:42 -0700247 }
248 }
249 if (IS_ENABLED(CONFIG_SPL_DM)) {
Simon Glass01154cb2017-05-22 05:05:35 -0600250 bootstage_start(BOOTSTATE_ID_ACCUM_DM_SPL, "dm_spl");
Tom Rini9732f792017-01-14 12:20:23 -0500251 /* With CONFIG_SPL_OF_PLATDATA, bring in all devices */
Simon Glasse9559fb2016-07-04 11:58:14 -0600252 ret = dm_init_and_scan(!CONFIG_IS_ENABLED(OF_PLATDATA));
Simon Glass01154cb2017-05-22 05:05:35 -0600253 bootstage_accum(BOOTSTATE_ID_ACCUM_DM_SPL);
Simon Glass9a49ec12015-02-27 22:06:42 -0700254 if (ret) {
255 debug("dm_init_and_scan() returned error %d\n", ret);
Simon Glassfa2a4db2015-06-23 15:39:10 -0600256 return ret;
Simon Glass9a49ec12015-02-27 22:06:42 -0700257 }
258 }
Eddie Cai32258992017-03-15 08:43:28 -0600259
260 return 0;
261}
262
263int spl_early_init(void)
264{
265 int ret;
266
267 ret = spl_common_init(true);
268 if (ret)
269 return ret;
270 gd->flags |= GD_FLG_SPL_EARLY_INIT;
271
272 return 0;
273}
274
275int spl_init(void)
276{
277 int ret;
Tom Rini89ea21e2017-03-20 14:19:27 -0400278 bool setup_malloc = !(IS_ENABLED(CONFIG_SPL_STACK_R) &&
279 IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIMPLE));
Eddie Cai32258992017-03-15 08:43:28 -0600280
281 if (!(gd->flags & GD_FLG_SPL_EARLY_INIT)) {
Tom Rini89ea21e2017-03-20 14:19:27 -0400282 ret = spl_common_init(setup_malloc);
Eddie Cai32258992017-03-15 08:43:28 -0600283 if (ret)
284 return ret;
285 }
Simon Glassfa2a4db2015-06-23 15:39:10 -0600286 gd->flags |= GD_FLG_SPL_INIT;
287
288 return 0;
289}
290
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200291#ifndef BOOT_DEVICE_NONE
292#define BOOT_DEVICE_NONE 0xdeadbeef
293#endif
294
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200295__weak void board_boot_order(u32 *spl_boot_list)
296{
297 spl_boot_list[0] = spl_boot_device();
298}
299
Simon Glassd1cf3732016-09-24 18:19:58 -0600300static struct spl_image_loader *spl_ll_find_loader(uint boot_device)
301{
302 struct spl_image_loader *drv =
303 ll_entry_start(struct spl_image_loader, spl_image_loader);
304 const int n_ents =
305 ll_entry_count(struct spl_image_loader, spl_image_loader);
306 struct spl_image_loader *entry;
307
308 for (entry = drv; entry != drv + n_ents; entry++) {
309 if (boot_device == entry->boot_device)
310 return entry;
311 }
312
313 /* Not found */
314 return NULL;
315}
316
Simon Glassf1e55752016-11-30 15:30:52 -0700317static int spl_load_image(struct spl_image_info *spl_image,
318 struct spl_image_loader *loader)
Simon Glassfa2a4db2015-06-23 15:39:10 -0600319{
Simon Glassc0b6c9b2016-09-24 18:19:57 -0600320 struct spl_boot_device bootdev;
321
Simon Glassf1e55752016-11-30 15:30:52 -0700322 bootdev.boot_device = loader->boot_device;
Simon Glassc0b6c9b2016-09-24 18:19:57 -0600323 bootdev.boot_device_name = NULL;
324
Simon Glassc9ef1852016-11-30 15:30:51 -0700325 return loader->load_image(spl_image, &bootdev);
326}
327
328/**
329 * boot_from_devices() - Try loading an booting U-Boot from a list of devices
330 *
331 * @spl_image: Place to put the image details if successful
332 * @spl_boot_list: List of boot devices to try
333 * @count: Number of elements in spl_boot_list
334 * @return 0 if OK, -ve on error
335 */
336static int boot_from_devices(struct spl_image_info *spl_image,
337 u32 spl_boot_list[], int count)
338{
339 int i;
340
341 for (i = 0; i < count && spl_boot_list[i] != BOOT_DEVICE_NONE; i++) {
342 struct spl_image_loader *loader;
343
Simon Glassc9ef1852016-11-30 15:30:51 -0700344 loader = spl_ll_find_loader(spl_boot_list[i]);
Stefan Roesece21aa12014-11-11 19:03:55 +0100345#if defined(CONFIG_SPL_SERIAL_SUPPORT) && defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Simon Glass2b530f92016-11-30 15:30:53 -0700346 if (loader)
Andrew F. Davis07009932017-01-12 10:19:55 -0600347 printf("Trying to boot from %s\n", loader->name);
Simon Glass2b530f92016-11-30 15:30:53 -0700348 else
Simon Glassc9ef1852016-11-30 15:30:51 -0700349 puts("SPL: Unsupported Boot Device!\n");
Stefan Roesece21aa12014-11-11 19:03:55 +0100350#endif
Simon Glassf1e55752016-11-30 15:30:52 -0700351 if (loader && !spl_load_image(spl_image, loader))
Simon Glassc9ef1852016-11-30 15:30:51 -0700352 return 0;
353 }
354
Simon Glassa4996482016-09-24 18:20:12 -0600355 return -ENODEV;
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200356}
357
358void board_init_r(gd_t *dummy1, ulong dummy2)
359{
Simon Glassce8f5092016-09-24 18:20:17 -0600360 u32 spl_boot_list[] = {
361 BOOT_DEVICE_NONE,
362 BOOT_DEVICE_NONE,
363 BOOT_DEVICE_NONE,
364 BOOT_DEVICE_NONE,
365 BOOT_DEVICE_NONE,
366 };
367 struct spl_image_info spl_image;
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200368
369 debug(">>spl:board_init_r()\n");
Lokesh Vutla52778a62017-04-18 17:27:23 +0530370 gd->bd = &bdata;
B, Ravi4cf02b12017-04-18 17:27:27 +0530371#ifdef CONFIG_SPL_OS_BOOT
372 dram_init_banksize();
373#endif
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200374
375#if defined(CONFIG_SYS_SPL_MALLOC_START)
376 mem_malloc_init(CONFIG_SYS_SPL_MALLOC_START,
377 CONFIG_SYS_SPL_MALLOC_SIZE);
378 gd->flags |= GD_FLG_FULL_MALLOC_INIT;
379#endif
380 if (!(gd->flags & GD_FLG_SPL_INIT)) {
381 if (spl_init())
382 hang();
383 }
384#ifndef CONFIG_PPC
385 /*
386 * timer_init() does not exist on PPC systems. The timer is initialized
387 * and enabled (decrementer) in interrupt_init() here.
388 */
389 timer_init();
390#endif
391
392#ifdef CONFIG_SPL_BOARD_INIT
393 spl_board_init();
394#endif
395
Simon Glassce8f5092016-09-24 18:20:17 -0600396 memset(&spl_image, '\0', sizeof(spl_image));
Vikas Manocha62b021c2017-04-07 15:38:13 -0700397#ifdef CONFIG_SYS_SPL_ARGS_ADDR
398 spl_image.arg = (void *)CONFIG_SYS_SPL_ARGS_ADDR;
399#endif
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200400 board_boot_order(spl_boot_list);
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200401
Simon Glassc9ef1852016-11-30 15:30:51 -0700402 if (boot_from_devices(&spl_image, spl_boot_list,
403 ARRAY_SIZE(spl_boot_list))) {
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200404 puts("SPL: failed to boot from all boot devices\n");
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200405 hang();
Nikita Kiryanov3ed94782015-11-08 17:11:51 +0200406 }
Nikita Kiryanov0a978812015-11-08 17:11:50 +0200407
Simon Schwarze21d2d82011-09-14 15:33:34 -0400408 switch (spl_image.os) {
Aneesh V13a74c12011-07-21 09:10:27 -0400409 case IH_OS_U_BOOT:
410 debug("Jumping to U-Boot\n");
Aneesh V13a74c12011-07-21 09:10:27 -0400411 break;
Simon Schwarz305bc4c2012-03-15 04:01:38 +0000412#ifdef CONFIG_SPL_OS_BOOT
413 case IH_OS_LINUX:
414 debug("Jumping to Linux\n");
B, Ravi4cf02b12017-04-18 17:27:27 +0530415 spl_fixup_fdt();
Simon Schwarz305bc4c2012-03-15 04:01:38 +0000416 spl_board_prepare_for_linux();
Vikas Manocha62b021c2017-04-07 15:38:13 -0700417 jump_to_image_linux(&spl_image);
Simon Schwarz305bc4c2012-03-15 04:01:38 +0000418#endif
Aneesh V13a74c12011-07-21 09:10:27 -0400419 default:
Tom Rini79178462012-08-27 14:58:28 -0700420 debug("Unsupported OS image.. Jumping nevertheless..\n");
Aneesh V13a74c12011-07-21 09:10:27 -0400421 }
Simon Glassb2d69942014-11-10 17:16:45 -0700422#if defined(CONFIG_SYS_MALLOC_F_LEN) && !defined(CONFIG_SYS_SPL_MALLOC_SIZE)
423 debug("SPL malloc() used %#lx bytes (%ld KB)\n", gd->malloc_ptr,
424 gd->malloc_ptr / 1024);
425#endif
426
Kever Yang6e79a912017-05-05 11:47:45 +0800427 if (IS_ENABLED(CONFIG_SPL_ATF_SUPPORT)) {
428 debug("loaded - jumping to U-Boot via ATF BL31.\n");
429 bl31_entry();
430 }
431
Andrew F. Davis07009932017-01-12 10:19:55 -0600432 debug("loaded - jumping to U-Boot...\n");
Simon Glass01154cb2017-05-22 05:05:35 -0600433#ifdef CONFIG_BOOTSTAGE_STASH
434 int ret;
435
436 bootstage_mark_name(BOOTSTAGE_ID_END_SPL, "end_spl");
437 ret = bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
438 CONFIG_BOOTSTAGE_STASH_SIZE);
439 if (ret)
440 debug("Failed to stash bootstage: err=%d\n", ret);
441#endif
Michal Simek7a8465b2016-05-10 07:54:20 +0200442 spl_board_prepare_for_boot();
Allen Martinc67e4852012-10-19 21:08:22 +0000443 jump_to_image_no_args(&spl_image);
Aneesh Vb8e60b92011-07-21 09:10:21 -0400444}
445
Tom Rini31dfba42012-08-22 15:31:05 -0700446/*
447 * This requires UART clocks to be enabled. In order for this to work the
448 * caller must ensure that the gd pointer is valid.
449 */
Aneesh Vb8e60b92011-07-21 09:10:21 -0400450void preloader_console_init(void)
451{
Aneesh Vb8e60b92011-07-21 09:10:21 -0400452 gd->baudrate = CONFIG_BAUDRATE;
453
Aneesh Vb8e60b92011-07-21 09:10:21 -0400454 serial_init(); /* serial communications setup */
455
Ilya Yanok74193c62011-11-01 13:16:03 +0000456 gd->have_console = 1;
457
Tom Rini7b516862012-08-14 12:06:43 -0700458 puts("\nU-Boot SPL " PLAIN_VERSION " (" U_BOOT_DATE " - " \
459 U_BOOT_TIME ")\n");
Tom Rinife3b0c72012-08-13 11:37:56 -0700460#ifdef CONFIG_SPL_DISPLAY_PRINT
461 spl_display_print();
462#endif
Tom Rini09c797b2011-10-04 04:59:23 +0000463}
Simon Glassd8711af2015-03-03 08:03:00 -0700464
465/**
466 * spl_relocate_stack_gd() - Relocate stack ready for board_init_r() execution
467 *
468 * Sometimes board_init_f() runs with a stack in SRAM but we want to use SDRAM
469 * for the main board_init_r() execution. This is typically because we need
470 * more stack space for things like the MMC sub-system.
471 *
472 * This function calculates the stack position, copies the global_data into
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100473 * place, sets the new gd (except for ARM, for which setting GD within a C
474 * function may not always work) and returns the new stack position. The
475 * caller is responsible for setting up the sp register and, in the case
476 * of ARM, setting up gd.
477 *
478 * All of this is done using the same layout and alignments as done in
479 * board_init_f_init_reserve() / board_init_f_alloc_reserve().
Simon Glassd8711af2015-03-03 08:03:00 -0700480 *
481 * @return new stack location, or 0 to use the same stack
482 */
483ulong spl_relocate_stack_gd(void)
484{
485#ifdef CONFIG_SPL_STACK_R
486 gd_t *new_gd;
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100487 ulong ptr = CONFIG_SPL_STACK_R_ADDR;
Simon Glassd8711af2015-03-03 08:03:00 -0700488
Hans de Goede8f280382015-09-13 15:04:17 +0200489#ifdef CONFIG_SPL_SYS_MALLOC_SIMPLE
490 if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) {
Hans de Goede8f280382015-09-13 15:04:17 +0200491 ptr -= CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
492 gd->malloc_base = ptr;
493 gd->malloc_limit = CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
494 gd->malloc_ptr = 0;
495 }
496#endif
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100497 /* Get stack position: use 8-byte alignment for ABI compliance */
498 ptr = CONFIG_SPL_STACK_R_ADDR - roundup(sizeof(gd_t),16);
499 new_gd = (gd_t *)ptr;
500 memcpy(new_gd, (void *)gd, sizeof(gd_t));
Simon Glass1b0deee2016-11-13 14:21:58 -0700501#if CONFIG_IS_ENABLED(DM)
502 dm_fixup_for_gd_move(new_gd);
503#endif
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100504#if !defined(CONFIG_ARM)
505 gd = new_gd;
506#endif
Simon Glassd8711af2015-03-03 08:03:00 -0700507 return ptr;
508#else
509 return 0;
510#endif
511}