blob: 35120b6efd1a7ce4cc08d67a181aab529de9cd99 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Aneesh Vbcae7212011-07-21 09:10:21 -04002/*
3 * (C) Copyright 2010
4 * Texas Instruments, <www.ti.com>
5 *
6 * Aneesh V <aneesh@ti.com>
Aneesh Vbcae7212011-07-21 09:10:21 -04007 */
Philipp Tomsichf1c6e192017-06-30 19:02:53 +02008
Aneesh Vbcae7212011-07-21 09:10:21 -04009#include <common.h>
Simon Glasse945a722018-11-15 18:43:51 -070010#include <bloblist.h>
Simon Glass8bee2d22017-11-13 18:55:03 -070011#include <binman_sym.h>
Simon Glass11516512014-11-10 17:16:46 -070012#include <dm.h>
Simon Glassb0edea32018-11-15 18:44:09 -070013#include <handoff.h>
Tom Rini47f7bca2012-08-13 12:03:19 -070014#include <spl.h>
Aneesh Vbcae7212011-07-21 09:10:21 -040015#include <asm/u-boot.h>
Simon Schwarzbb085b82011-09-14 15:29:26 -040016#include <nand.h>
Aneesh V8cf686e2011-07-21 09:10:27 -040017#include <fat.h>
Simon Glassefb21722011-10-10 08:55:19 +000018#include <version.h>
Aneesh V8cf686e2011-07-21 09:10:27 -040019#include <image.h>
Aneesh V2d01dd92011-10-21 12:29:34 -040020#include <malloc.h>
Simon Glass11516512014-11-10 17:16:46 -070021#include <dm/root.h>
Andreas Müller761ca312012-01-04 15:26:24 +000022#include <linux/compiler.h>
B, Ravi6e7585b2017-04-18 17:27:27 +053023#include <fdt_support.h>
Lukasz Majewskia8be2492018-05-02 16:10:54 +020024#include <bootcount.h>
Aneesh Vbcae7212011-07-21 09:10:21 -040025
26DECLARE_GLOBAL_DATA_PTR;
27
Stefan Roese3c6f8a02012-08-28 10:50:59 +020028#ifndef CONFIG_SYS_UBOOT_START
29#define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE
30#endif
Stefano Babicae83d882012-08-23 12:46:16 +020031#ifndef CONFIG_SYS_MONITOR_LEN
Andreas Bießmanne76caa62014-10-25 02:54:55 +020032/* Unknown U-Boot size, let's assume it will not be more than 200 KB */
Stefano Babicae83d882012-08-23 12:46:16 +020033#define CONFIG_SYS_MONITOR_LEN (200 * 1024)
34#endif
35
Tom Rini47f7bca2012-08-13 12:03:19 -070036u32 *boot_params_ptr = NULL;
Simon Schwarz9ea5c6e2011-09-14 15:33:34 -040037
Simon Glass8bee2d22017-11-13 18:55:03 -070038/* See spl.h for information about this */
Simon Glassdbf6be92018-08-01 15:22:42 -060039binman_sym_declare(ulong, u_boot_any, image_pos);
Simon Glass8bee2d22017-11-13 18:55:03 -070040
Tom Rini6507f132012-08-22 15:31:05 -070041/* Define board data structure */
Aneesh Vbcae7212011-07-21 09:10:21 -040042static bd_t bdata __attribute__ ((section(".data")));
43
Simon Schwarz379c19a2012-03-15 04:01:38 +000044/*
Heiko Schocher496c5482016-06-07 08:31:20 +020045 * Board-specific Platform code can reimplement show_boot_progress () if needed
46 */
47__weak void show_boot_progress(int val) {}
48
Simon Glassb0edea32018-11-15 18:44:09 -070049#if defined(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF)
50/* weak, default platform-specific function to initialize dram banks */
51__weak int dram_init_banksize(void)
52{
53 return 0;
54}
55#endif
56
Heiko Schocher496c5482016-06-07 08:31:20 +020057/*
Simon Schwarz379c19a2012-03-15 04:01:38 +000058 * Default function to determine if u-boot or the OS should
59 * be started. This implementation always returns 1.
60 *
61 * Please implement your own board specific funcion to do this.
62 *
63 * RETURN
64 * 0 to not start u-boot
65 * positive if u-boot should start
66 */
67#ifdef CONFIG_SPL_OS_BOOT
68__weak int spl_start_uboot(void)
69{
Simon Glassd6330062018-11-15 18:43:56 -070070 puts(SPL_TPL_PROMPT
71 "Please implement spl_start_uboot() for your board\n");
72 puts(SPL_TPL_PROMPT "Direct Linux boot not active!\n");
Simon Schwarz379c19a2012-03-15 04:01:38 +000073 return 1;
74}
Ladislav Michl431889d2016-07-12 20:28:14 +020075
76/*
77 * Weak default function for arch specific zImage check. Return zero
78 * and fill start and end address if image is recognized.
79 */
80int __weak bootz_setup(ulong image, ulong *start, ulong *end)
81{
82 return 1;
83}
Simon Schwarz379c19a2012-03-15 04:01:38 +000084#endif
85
Philipp Tomsichde5dd4c2018-05-24 17:15:50 +020086/* Weak default function for arch/board-specific fixups to the spl_image_info */
87void __weak spl_perform_fixups(struct spl_image_info *spl_image)
88{
89}
90
B, Ravi6e7585b2017-04-18 17:27:27 +053091void spl_fixup_fdt(void)
92{
93#if defined(CONFIG_SPL_OF_LIBFDT) && defined(CONFIG_SYS_SPL_ARGS_ADDR)
94 void *fdt_blob = (void *)CONFIG_SYS_SPL_ARGS_ADDR;
95 int err;
96
97 err = fdt_check_header(fdt_blob);
98 if (err < 0) {
99 printf("fdt_root: %s\n", fdt_strerror(err));
100 return;
101 }
102
103 /* fixup the memory dt node */
104 err = fdt_shrink_to_minimum(fdt_blob, 0);
105 if (err == 0) {
Simon Glassd6330062018-11-15 18:43:56 -0700106 printf(SPL_TPL_PROMPT "fdt_shrink_to_minimum err - %d\n", err);
B, Ravi6e7585b2017-04-18 17:27:27 +0530107 return;
108 }
109
110 err = arch_fixup_fdt(fdt_blob);
111 if (err) {
Simon Glassd6330062018-11-15 18:43:56 -0700112 printf(SPL_TPL_PROMPT "arch_fixup_fdt err - %d\n", err);
B, Ravi6e7585b2017-04-18 17:27:27 +0530113 return;
114 }
115#endif
116}
117
Stefan Roeseea8256f2012-08-23 08:34:21 +0200118/*
119 * Weak default function for board specific cleanup/preparation before
120 * Linux boot. Some boards/platforms might not need it, so just provide
121 * an empty stub here.
122 */
123__weak void spl_board_prepare_for_linux(void)
124{
125 /* Nothing to do! */
126}
127
Michal Simek3a3b9142016-05-10 07:54:20 +0200128__weak void spl_board_prepare_for_boot(void)
129{
130 /* Nothing to do! */
131}
132
Marek Vasut04ce5422018-08-14 11:27:02 +0200133__weak struct image_header *spl_get_load_buffer(ssize_t offset, size_t size)
134{
135 return (struct image_header *)(CONFIG_SYS_TEXT_BASE + offset);
136}
137
Simon Glassd95ceb92016-09-24 18:19:52 -0600138void spl_set_header_raw_uboot(struct spl_image_info *spl_image)
Heiko Schocher0c3117b2014-10-31 08:31:00 +0100139{
Simon Glassdbf6be92018-08-01 15:22:42 -0600140 ulong u_boot_pos = binman_sym(ulong, u_boot_any, image_pos);
Simon Glass8bee2d22017-11-13 18:55:03 -0700141
Simon Glassd95ceb92016-09-24 18:19:52 -0600142 spl_image->size = CONFIG_SYS_MONITOR_LEN;
Miquel Raynal55fe0e22018-02-28 20:51:43 +0100143
144 /*
145 * Binman error cases: address of the end of the previous region or the
146 * start of the image's entry area (usually 0) if there is no previous
147 * region.
148 */
149 if (u_boot_pos && u_boot_pos != BINMAN_SYM_MISSING) {
150 /* Binman does not support separated entry addresses */
Simon Glass8bee2d22017-11-13 18:55:03 -0700151 spl_image->entry_point = u_boot_pos;
152 spl_image->load_addr = u_boot_pos;
153 } else {
154 spl_image->entry_point = CONFIG_SYS_UBOOT_START;
155 spl_image->load_addr = CONFIG_SYS_TEXT_BASE;
156 }
Simon Glassd95ceb92016-09-24 18:19:52 -0600157 spl_image->os = IH_OS_U_BOOT;
158 spl_image->name = "U-Boot";
Heiko Schocher0c3117b2014-10-31 08:31:00 +0100159}
160
Marek Vasut8a9dc162018-05-13 00:23:17 +0200161#ifdef CONFIG_SPL_LOAD_FIT_FULL
162/* Parse and load full fitImage in SPL */
163static int spl_load_fit_image(struct spl_image_info *spl_image,
164 const struct image_header *header)
165{
166 bootm_headers_t images;
167 const char *fit_uname_config = NULL;
168 const char *fit_uname_fdt = FIT_FDT_PROP;
169 const char *uname;
170 ulong fw_data = 0, dt_data = 0, img_data = 0;
171 ulong fw_len = 0, dt_len = 0, img_len = 0;
172 int idx, conf_noffset;
173 int ret;
174
175#ifdef CONFIG_SPL_FIT_SIGNATURE
176 images.verify = 1;
177#endif
178 ret = fit_image_load(&images, (ulong)header,
179 NULL, &fit_uname_config,
180 IH_ARCH_DEFAULT, IH_TYPE_STANDALONE, -1,
181 FIT_LOAD_REQUIRED, &fw_data, &fw_len);
182 if (ret < 0)
183 return ret;
184
185 spl_image->size = fw_len;
186 spl_image->entry_point = fw_data;
187 spl_image->load_addr = fw_data;
188 spl_image->os = IH_OS_U_BOOT;
189 spl_image->name = "U-Boot";
190
Simon Glassd6330062018-11-15 18:43:56 -0700191 debug(SPL_TPL_PROMPT "payload image: %32s load addr: 0x%lx size: %d\n",
Simon Goldschmidt30c07402018-11-02 21:49:52 +0100192 spl_image->name, spl_image->load_addr, spl_image->size);
Marek Vasut8a9dc162018-05-13 00:23:17 +0200193
194#ifdef CONFIG_SPL_FIT_SIGNATURE
195 images.verify = 1;
196#endif
197 fit_image_load(&images, (ulong)header,
198 &fit_uname_fdt, &fit_uname_config,
199 IH_ARCH_DEFAULT, IH_TYPE_FLATDT, -1,
200 FIT_LOAD_OPTIONAL, &dt_data, &dt_len);
201
202 conf_noffset = fit_conf_get_node((const void *)header,
203 fit_uname_config);
204 if (conf_noffset <= 0)
205 return 0;
206
207 for (idx = 0;
208 uname = fdt_stringlist_get((const void *)header, conf_noffset,
209 FIT_LOADABLE_PROP, idx,
210 NULL), uname;
211 idx++)
212 {
213#ifdef CONFIG_SPL_FIT_SIGNATURE
214 images.verify = 1;
215#endif
216 ret = fit_image_load(&images, (ulong)header,
217 &uname, &fit_uname_config,
218 IH_ARCH_DEFAULT, IH_TYPE_LOADABLE, -1,
219 FIT_LOAD_OPTIONAL_NON_ZERO,
220 &img_data, &img_len);
221 if (ret < 0)
222 return ret;
223 }
224
225 return 0;
226}
227#endif
228
Simon Glass71316c12016-09-24 18:19:53 -0600229int spl_parse_image_header(struct spl_image_info *spl_image,
230 const struct image_header *header)
Aneesh V8cf686e2011-07-21 09:10:27 -0400231{
Marek Vasut8a9dc162018-05-13 00:23:17 +0200232#ifdef CONFIG_SPL_LOAD_FIT_FULL
233 int ret = spl_load_fit_image(spl_image, header);
234
235 if (!ret)
236 return ret;
237#endif
Stefan Roese77552b02012-08-27 12:50:57 +0200238 if (image_get_magic(header) == IH_MAGIC) {
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600239#ifdef CONFIG_SPL_LEGACY_IMAGE_SUPPORT
240 u32 header_size = sizeof(struct image_header);
241
Simon Glass71316c12016-09-24 18:19:53 -0600242 if (spl_image->flags & SPL_COPY_PAYLOAD_ONLY) {
Stefan Roese022b4972012-08-27 12:50:58 +0200243 /*
244 * On some system (e.g. powerpc), the load-address and
245 * entry-point is located at address 0. We can't load
246 * to 0-0x40. So skip header in this case.
247 */
Simon Glass71316c12016-09-24 18:19:53 -0600248 spl_image->load_addr = image_get_load(header);
249 spl_image->entry_point = image_get_ep(header);
250 spl_image->size = image_get_data_size(header);
Stefan Roese022b4972012-08-27 12:50:58 +0200251 } else {
Simon Glass71316c12016-09-24 18:19:53 -0600252 spl_image->entry_point = image_get_load(header);
Stefan Roese022b4972012-08-27 12:50:58 +0200253 /* Load including the header */
Simon Glass71316c12016-09-24 18:19:53 -0600254 spl_image->load_addr = spl_image->entry_point -
Stefan Roese022b4972012-08-27 12:50:58 +0200255 header_size;
Simon Glass71316c12016-09-24 18:19:53 -0600256 spl_image->size = image_get_data_size(header) +
Stefan Roese022b4972012-08-27 12:50:58 +0200257 header_size;
258 }
Simon Glass71316c12016-09-24 18:19:53 -0600259 spl_image->os = image_get_os(header);
260 spl_image->name = image_get_name(header);
Simon Glassd6330062018-11-15 18:43:56 -0700261 debug(SPL_TPL_PROMPT
262 "payload image: %32s load addr: 0x%lx size: %d\n",
Simon Goldschmidt30c07402018-11-02 21:49:52 +0100263 spl_image->name, spl_image->load_addr, spl_image->size);
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600264#else
265 /* LEGACY image not supported */
Anatolij Gustschin2d2531b2017-08-01 16:17:12 +0200266 debug("Legacy boot image support not enabled, proceeding to other boot methods\n");
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600267 return -EINVAL;
268#endif
Aneesh V8cf686e2011-07-21 09:10:27 -0400269 } else {
Albert ARIBAUD \(3ADEV\)8c80eb32015-03-31 11:40:50 +0200270#ifdef CONFIG_SPL_PANIC_ON_RAW_IMAGE
271 /*
272 * CONFIG_SPL_PANIC_ON_RAW_IMAGE is defined when the
273 * code which loads images in SPL cannot guarantee that
274 * absolutely all read errors will be reported.
275 * An example is the LPC32XX MLC NAND driver, which
276 * will consider that a completely unreadable NAND block
277 * is bad, and thus should be skipped silently.
278 */
279 panic("** no mkimage signature but raw image not supported");
Paul Kocialkowski85a37722016-08-24 20:04:42 +0200280#endif
281
Ladislav Michl431889d2016-07-12 20:28:14 +0200282#ifdef CONFIG_SPL_OS_BOOT
283 ulong start, end;
284
285 if (!bootz_setup((ulong)header, &start, &end)) {
Simon Glass71316c12016-09-24 18:19:53 -0600286 spl_image->name = "Linux";
287 spl_image->os = IH_OS_LINUX;
288 spl_image->load_addr = CONFIG_SYS_LOAD_ADDR;
289 spl_image->entry_point = CONFIG_SYS_LOAD_ADDR;
290 spl_image->size = end - start;
Simon Glassd6330062018-11-15 18:43:56 -0700291 debug(SPL_TPL_PROMPT
292 "payload zImage, load addr: 0x%lx size: %d\n",
Simon Glass71316c12016-09-24 18:19:53 -0600293 spl_image->load_addr, spl_image->size);
Ladislav Michl431889d2016-07-12 20:28:14 +0200294 return 0;
295 }
296#endif
Paul Kocialkowski85a37722016-08-24 20:04:42 +0200297
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600298#ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT
Aneesh V8cf686e2011-07-21 09:10:27 -0400299 /* Signature not found - assume u-boot.bin */
Tom Rini026b2fe2012-08-14 12:06:43 -0700300 debug("mkimage signature not found - ih_magic = %x\n",
Aneesh V8cf686e2011-07-21 09:10:27 -0400301 header->ih_magic);
Simon Glass71316c12016-09-24 18:19:53 -0600302 spl_set_header_raw_uboot(spl_image);
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600303#else
304 /* RAW image not supported, proceed to other boot methods. */
Anatolij Gustschin2d2531b2017-08-01 16:17:12 +0200305 debug("Raw boot image support not enabled, proceeding to other boot methods\n");
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600306 return -EINVAL;
Albert ARIBAUD \(3ADEV\)8c80eb32015-03-31 11:40:50 +0200307#endif
Aneesh V8cf686e2011-07-21 09:10:27 -0400308 }
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600309
Marek Vasut7e0f2262016-04-29 00:44:54 +0200310 return 0;
Aneesh V8cf686e2011-07-21 09:10:27 -0400311}
312
Allen Martina759f1e2012-10-19 21:08:22 +0000313__weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
Aneesh V8cf686e2011-07-21 09:10:27 -0400314{
SRICHARAN R4a0eb752013-04-24 00:41:24 +0000315 typedef void __noreturn (*image_entry_noargs_t)(void);
316
Aneesh V8cf686e2011-07-21 09:10:27 -0400317 image_entry_noargs_t image_entry =
Andre Przywara11e14792017-01-02 11:48:31 +0000318 (image_entry_noargs_t)spl_image->entry_point;
Aneesh V8cf686e2011-07-21 09:10:27 -0400319
Simon Goldschmidt30c07402018-11-02 21:49:52 +0100320 debug("image entry point: 0x%lx\n", spl_image->entry_point);
SRICHARAN R4a0eb752013-04-24 00:41:24 +0000321 image_entry();
Aneesh V8cf686e2011-07-21 09:10:27 -0400322}
323
Simon Glassb0edea32018-11-15 18:44:09 -0700324#if CONFIG_IS_ENABLED(HANDOFF)
325/**
326 * Set up the SPL hand-off information
327 *
328 * This is initially empty (zero) but can be written by
329 */
330static int setup_spl_handoff(void)
331{
332 struct spl_handoff *ho;
333
334 ho = bloblist_ensure(BLOBLISTT_SPL_HANDOFF, sizeof(struct spl_handoff));
335 if (!ho)
336 return -ENOENT;
337
338 return 0;
339}
340
341static int write_spl_handoff(void)
342{
343 struct spl_handoff *ho;
344
345 ho = bloblist_find(BLOBLISTT_SPL_HANDOFF, sizeof(struct spl_handoff));
346 if (!ho)
347 return -ENOENT;
348 handoff_save_dram(ho);
349#ifdef CONFIG_SANDBOX
350 ho->arch.magic = TEST_HANDOFF_MAGIC;
351#endif
352 debug(SPL_TPL_PROMPT "Wrote SPL handoff\n");
353
354 return 0;
355}
356#else
357static inline int setup_spl_handoff(void) { return 0; }
358static inline int write_spl_handoff(void) { return 0; }
359
360#endif /* HANDOFF */
361
Eddie Cai340f4182017-03-15 08:43:28 -0600362static int spl_common_init(bool setup_malloc)
Aneesh Vbcae7212011-07-21 09:10:21 -0400363{
Simon Glassf3d46bd2015-02-27 22:06:42 -0700364 int ret;
365
Andy Yanf1896c42017-07-24 17:43:34 +0800366#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Eddie Cai340f4182017-03-15 08:43:28 -0600367 if (setup_malloc) {
Marek Vasut94b9e222016-05-25 02:14:56 +0200368#ifdef CONFIG_MALLOC_F_ADDR
Eddie Cai340f4182017-03-15 08:43:28 -0600369 gd->malloc_base = CONFIG_MALLOC_F_ADDR;
Marek Vasut94b9e222016-05-25 02:14:56 +0200370#endif
Andy Yanf1896c42017-07-24 17:43:34 +0800371 gd->malloc_limit = CONFIG_VAL(SYS_MALLOC_F_LEN);
Eddie Cai340f4182017-03-15 08:43:28 -0600372 gd->malloc_ptr = 0;
373 }
Tom Rini24dafad2012-08-13 14:13:07 -0700374#endif
Simon Glass824bb1b2017-05-22 05:05:35 -0600375 ret = bootstage_init(true);
376 if (ret) {
377 debug("%s: Failed to set up bootstage: ret=%d\n", __func__,
378 ret);
379 return ret;
380 }
381 bootstage_mark_name(BOOTSTAGE_ID_START_SPL, "spl");
Simon Glass4d8d3052018-11-15 18:43:49 -0700382#if CONFIG_IS_ENABLED(LOG)
383 ret = log_init();
384 if (ret) {
385 debug("%s: Failed to set up logging\n", __func__);
386 return ret;
387 }
388#endif
Simon Glasse945a722018-11-15 18:43:51 -0700389 if (CONFIG_IS_ENABLED(BLOBLIST)) {
390 ret = bloblist_init();
391 if (ret) {
392 debug("%s: Failed to set up bloblist: ret=%d\n",
393 __func__, ret);
394 return ret;
395 }
396 }
Simon Glassb0edea32018-11-15 18:44:09 -0700397 if (CONFIG_IS_ENABLED(HANDOFF)) {
398 int ret;
399
400 ret = setup_spl_handoff();
401 if (ret) {
402 puts(SPL_TPL_PROMPT "Cannot set up SPL handoff\n");
403 hang();
404 }
405 }
Simon Glassd223e0a2016-07-04 11:57:56 -0600406 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
Simon Glassf3d46bd2015-02-27 22:06:42 -0700407 ret = fdtdec_setup();
408 if (ret) {
409 debug("fdtdec_setup() returned error %d\n", ret);
Simon Glass070d00b2015-06-23 15:39:10 -0600410 return ret;
Simon Glassf3d46bd2015-02-27 22:06:42 -0700411 }
412 }
Philipp Tomsichf1c6e192017-06-30 19:02:53 +0200413 if (CONFIG_IS_ENABLED(DM)) {
Simon Glass824bb1b2017-05-22 05:05:35 -0600414 bootstage_start(BOOTSTATE_ID_ACCUM_DM_SPL, "dm_spl");
Tom Rini7f73ca42017-01-14 12:20:23 -0500415 /* With CONFIG_SPL_OF_PLATDATA, bring in all devices */
Simon Glass7d23b9c2016-07-04 11:58:14 -0600416 ret = dm_init_and_scan(!CONFIG_IS_ENABLED(OF_PLATDATA));
Simon Glass824bb1b2017-05-22 05:05:35 -0600417 bootstage_accum(BOOTSTATE_ID_ACCUM_DM_SPL);
Simon Glassf3d46bd2015-02-27 22:06:42 -0700418 if (ret) {
419 debug("dm_init_and_scan() returned error %d\n", ret);
Simon Glass070d00b2015-06-23 15:39:10 -0600420 return ret;
Simon Glassf3d46bd2015-02-27 22:06:42 -0700421 }
422 }
Eddie Cai340f4182017-03-15 08:43:28 -0600423
424 return 0;
425}
426
York Sund1fc0a32017-09-28 08:42:10 -0700427void spl_set_bd(void)
428{
Simon Glassc21f4072018-11-15 18:43:58 -0700429 /*
430 * NOTE: On some platforms (e.g. x86) bdata may be in flash and not
431 * writeable.
432 */
York Sund1fc0a32017-09-28 08:42:10 -0700433 if (!gd->bd)
434 gd->bd = &bdata;
435}
436
Eddie Cai340f4182017-03-15 08:43:28 -0600437int spl_early_init(void)
438{
439 int ret;
440
Simon Goldschmidt94cb9862018-08-13 11:24:05 +0200441 debug("%s\n", __func__);
442
Eddie Cai340f4182017-03-15 08:43:28 -0600443 ret = spl_common_init(true);
444 if (ret)
445 return ret;
446 gd->flags |= GD_FLG_SPL_EARLY_INIT;
447
448 return 0;
449}
450
451int spl_init(void)
452{
453 int ret;
Tom Rinicf334ed2017-03-20 14:19:27 -0400454 bool setup_malloc = !(IS_ENABLED(CONFIG_SPL_STACK_R) &&
455 IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIMPLE));
Eddie Cai340f4182017-03-15 08:43:28 -0600456
Simon Goldschmidt94cb9862018-08-13 11:24:05 +0200457 debug("%s\n", __func__);
458
Eddie Cai340f4182017-03-15 08:43:28 -0600459 if (!(gd->flags & GD_FLG_SPL_EARLY_INIT)) {
Tom Rinicf334ed2017-03-20 14:19:27 -0400460 ret = spl_common_init(setup_malloc);
Eddie Cai340f4182017-03-15 08:43:28 -0600461 if (ret)
462 return ret;
463 }
Simon Glass070d00b2015-06-23 15:39:10 -0600464 gd->flags |= GD_FLG_SPL_INIT;
Aneesh V2d01dd92011-10-21 12:29:34 -0400465
Simon Glass070d00b2015-06-23 15:39:10 -0600466 return 0;
467}
468
Nikita Kiryanovf101e4b2015-11-08 17:11:51 +0200469#ifndef BOOT_DEVICE_NONE
470#define BOOT_DEVICE_NONE 0xdeadbeef
471#endif
472
Nikita Kiryanovf101e4b2015-11-08 17:11:51 +0200473__weak void board_boot_order(u32 *spl_boot_list)
474{
475 spl_boot_list[0] = spl_boot_device();
476}
477
Simon Glassa0a80292016-09-24 18:19:58 -0600478static struct spl_image_loader *spl_ll_find_loader(uint boot_device)
479{
480 struct spl_image_loader *drv =
481 ll_entry_start(struct spl_image_loader, spl_image_loader);
482 const int n_ents =
483 ll_entry_count(struct spl_image_loader, spl_image_loader);
484 struct spl_image_loader *entry;
485
486 for (entry = drv; entry != drv + n_ents; entry++) {
487 if (boot_device == entry->boot_device)
488 return entry;
489 }
490
491 /* Not found */
492 return NULL;
493}
494
Simon Glass29d357d2016-11-30 15:30:52 -0700495static int spl_load_image(struct spl_image_info *spl_image,
496 struct spl_image_loader *loader)
Nikita Kiryanov5211b872015-11-08 17:11:50 +0200497{
Simon Glassecdfd692016-09-24 18:19:57 -0600498 struct spl_boot_device bootdev;
499
Simon Glass29d357d2016-11-30 15:30:52 -0700500 bootdev.boot_device = loader->boot_device;
Simon Glassecdfd692016-09-24 18:19:57 -0600501 bootdev.boot_device_name = NULL;
502
Simon Glass540bfe72016-11-30 15:30:51 -0700503 return loader->load_image(spl_image, &bootdev);
504}
505
506/**
507 * boot_from_devices() - Try loading an booting U-Boot from a list of devices
508 *
509 * @spl_image: Place to put the image details if successful
510 * @spl_boot_list: List of boot devices to try
511 * @count: Number of elements in spl_boot_list
512 * @return 0 if OK, -ve on error
513 */
514static int boot_from_devices(struct spl_image_info *spl_image,
515 u32 spl_boot_list[], int count)
516{
517 int i;
518
519 for (i = 0; i < count && spl_boot_list[i] != BOOT_DEVICE_NONE; i++) {
520 struct spl_image_loader *loader;
521
Simon Glass540bfe72016-11-30 15:30:51 -0700522 loader = spl_ll_find_loader(spl_boot_list[i]);
Nikita Kiryanov5211b872015-11-08 17:11:50 +0200523#if defined(CONFIG_SPL_SERIAL_SUPPORT) && defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Simon Glass2acf35d2016-11-30 15:30:53 -0700524 if (loader)
Andrew F. Daviscf947da2017-01-12 10:19:55 -0600525 printf("Trying to boot from %s\n", loader->name);
Simon Glass2acf35d2016-11-30 15:30:53 -0700526 else
Simon Glassd6330062018-11-15 18:43:56 -0700527 puts(SPL_TPL_PROMPT "Unsupported Boot Device!\n");
Nikita Kiryanov5211b872015-11-08 17:11:50 +0200528#endif
Philipp Tomsichde5dd4c2018-05-24 17:15:50 +0200529 if (loader && !spl_load_image(spl_image, loader)) {
530 spl_image->boot_device = spl_boot_list[i];
Simon Glass540bfe72016-11-30 15:30:51 -0700531 return 0;
Philipp Tomsichde5dd4c2018-05-24 17:15:50 +0200532 }
Simon Glass540bfe72016-11-30 15:30:51 -0700533 }
534
Simon Glass97d9df02016-09-24 18:20:12 -0600535 return -ENODEV;
Nikita Kiryanov5211b872015-11-08 17:11:50 +0200536}
537
Simon Glass070d00b2015-06-23 15:39:10 -0600538void board_init_r(gd_t *dummy1, ulong dummy2)
539{
Simon Glassd32b2d12016-09-24 18:20:17 -0600540 u32 spl_boot_list[] = {
541 BOOT_DEVICE_NONE,
542 BOOT_DEVICE_NONE,
543 BOOT_DEVICE_NONE,
544 BOOT_DEVICE_NONE,
545 BOOT_DEVICE_NONE,
546 };
547 struct spl_image_info spl_image;
Simon Glasse945a722018-11-15 18:43:51 -0700548 int ret;
Simon Glass070d00b2015-06-23 15:39:10 -0600549
Simon Glassd6330062018-11-15 18:43:56 -0700550 debug(">>" SPL_TPL_PROMPT "board_init_r()\n");
York Sund1fc0a32017-09-28 08:42:10 -0700551
552 spl_set_bd();
553
Simon Glass070d00b2015-06-23 15:39:10 -0600554#if defined(CONFIG_SYS_SPL_MALLOC_START)
555 mem_malloc_init(CONFIG_SYS_SPL_MALLOC_START,
556 CONFIG_SYS_SPL_MALLOC_SIZE);
557 gd->flags |= GD_FLG_FULL_MALLOC_INIT;
558#endif
559 if (!(gd->flags & GD_FLG_SPL_INIT)) {
560 if (spl_init())
561 hang();
562 }
Anatolij Gustschinf9d42d82017-08-28 17:46:33 +0200563#if !defined(CONFIG_PPC) && !defined(CONFIG_ARCH_MX6)
Stefan Roeseea8256f2012-08-23 08:34:21 +0200564 /*
565 * timer_init() does not exist on PPC systems. The timer is initialized
566 * and enabled (decrementer) in interrupt_init() here.
567 */
Ilya Yanok4063c772012-09-17 10:26:26 +0000568 timer_init();
Stefan Roeseea8256f2012-08-23 08:34:21 +0200569#endif
Ilya Yanok4063c772012-09-17 10:26:26 +0000570
Kever Yangaf2f4422018-01-20 18:00:26 +0800571#if CONFIG_IS_ENABLED(BOARD_INIT)
Tom Riniee08a822011-11-23 05:13:06 +0000572 spl_board_init();
573#endif
574
Simon Glassb0edea32018-11-15 18:44:09 -0700575 if (IS_ENABLED(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF))
576 dram_init_banksize();
577
Lukasz Majewskia8be2492018-05-02 16:10:54 +0200578 bootcount_inc();
579
Simon Glassd32b2d12016-09-24 18:20:17 -0600580 memset(&spl_image, '\0', sizeof(spl_image));
Vikas Manocha5bf52502017-04-07 15:38:13 -0700581#ifdef CONFIG_SYS_SPL_ARGS_ADDR
582 spl_image.arg = (void *)CONFIG_SYS_SPL_ARGS_ADDR;
583#endif
Philipp Tomsichde5dd4c2018-05-24 17:15:50 +0200584 spl_image.boot_device = BOOT_DEVICE_NONE;
Nikita Kiryanovf101e4b2015-11-08 17:11:51 +0200585 board_boot_order(spl_boot_list);
Nikita Kiryanovf101e4b2015-11-08 17:11:51 +0200586
Simon Glass540bfe72016-11-30 15:30:51 -0700587 if (boot_from_devices(&spl_image, spl_boot_list,
588 ARRAY_SIZE(spl_boot_list))) {
Simon Glassd6330062018-11-15 18:43:56 -0700589 puts(SPL_TPL_PROMPT "failed to boot from all boot devices\n");
Aneesh V8cf686e2011-07-21 09:10:27 -0400590 hang();
Nikita Kiryanovf101e4b2015-11-08 17:11:51 +0200591 }
Aneesh V8cf686e2011-07-21 09:10:27 -0400592
Philipp Tomsichde5dd4c2018-05-24 17:15:50 +0200593 spl_perform_fixups(&spl_image);
Simon Glassb0edea32018-11-15 18:44:09 -0700594 if (CONFIG_IS_ENABLED(HANDOFF)) {
595 ret = write_spl_handoff();
596 if (ret)
597 printf(SPL_TPL_PROMPT
598 "SPL hand-off write failed (err=%d)\n", ret);
599 }
Simon Glasse945a722018-11-15 18:43:51 -0700600 if (CONFIG_IS_ENABLED(BLOBLIST)) {
601 ret = bloblist_finish();
602 if (ret)
603 printf("Warning: Failed to finish bloblist (ret=%d)\n",
604 ret);
605 }
Philipp Tomsichde5dd4c2018-05-24 17:15:50 +0200606
Vikas Manocha6bcdd662017-05-28 12:55:08 -0700607#ifdef CONFIG_CPU_V7M
608 spl_image.entry_point |= 0x1;
609#endif
Simon Schwarz9ea5c6e2011-09-14 15:33:34 -0400610 switch (spl_image.os) {
Aneesh V8cf686e2011-07-21 09:10:27 -0400611 case IH_OS_U_BOOT:
612 debug("Jumping to U-Boot\n");
Aneesh V8cf686e2011-07-21 09:10:27 -0400613 break;
Philipp Tomsich1d379092017-09-13 21:29:35 +0200614#if CONFIG_IS_ENABLED(ATF)
615 case IH_OS_ARM_TRUSTED_FIRMWARE:
616 debug("Jumping to U-Boot via ARM Trusted Firmware\n");
617 spl_invoke_atf(&spl_image);
618 break;
619#endif
Kever Yang70fe2872018-08-23 17:17:59 +0800620#if CONFIG_IS_ENABLED(OPTEE)
621 case IH_OS_TEE:
622 debug("Jumping to U-Boot via OP-TEE\n");
623 spl_optee_entry(NULL, NULL, spl_image.fdt_addr,
624 (void *)spl_image.entry_point);
625 break;
626#endif
Simon Schwarz379c19a2012-03-15 04:01:38 +0000627#ifdef CONFIG_SPL_OS_BOOT
628 case IH_OS_LINUX:
629 debug("Jumping to Linux\n");
B, Ravi6e7585b2017-04-18 17:27:27 +0530630 spl_fixup_fdt();
Simon Schwarz379c19a2012-03-15 04:01:38 +0000631 spl_board_prepare_for_linux();
Vikas Manocha5bf52502017-04-07 15:38:13 -0700632 jump_to_image_linux(&spl_image);
Simon Schwarz379c19a2012-03-15 04:01:38 +0000633#endif
Aneesh V8cf686e2011-07-21 09:10:27 -0400634 default:
Tom Rini42120982012-08-27 14:58:28 -0700635 debug("Unsupported OS image.. Jumping nevertheless..\n");
Aneesh V8cf686e2011-07-21 09:10:27 -0400636 }
Andy Yanf1896c42017-07-24 17:43:34 +0800637#if CONFIG_VAL(SYS_MALLOC_F_LEN) && !defined(CONFIG_SYS_SPL_MALLOC_SIZE)
Simon Goldschmidt30c07402018-11-02 21:49:52 +0100638 debug("SPL malloc() used 0x%lx bytes (%ld KB)\n", gd->malloc_ptr,
Simon Glassfb4f5e72014-11-10 17:16:45 -0700639 gd->malloc_ptr / 1024);
640#endif
Simon Glass824bb1b2017-05-22 05:05:35 -0600641#ifdef CONFIG_BOOTSTAGE_STASH
Simon Glass824bb1b2017-05-22 05:05:35 -0600642 bootstage_mark_name(BOOTSTAGE_ID_END_SPL, "end_spl");
643 ret = bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
644 CONFIG_BOOTSTAGE_STASH_SIZE);
645 if (ret)
646 debug("Failed to stash bootstage: err=%d\n", ret);
647#endif
Kever Yanga8c51122017-09-13 18:24:24 +0800648
Kever Yanga8c51122017-09-13 18:24:24 +0800649 debug("loaded - jumping to U-Boot...\n");
Michal Simek3a3b9142016-05-10 07:54:20 +0200650 spl_board_prepare_for_boot();
Allen Martina759f1e2012-10-19 21:08:22 +0000651 jump_to_image_no_args(&spl_image);
Aneesh Vbcae7212011-07-21 09:10:21 -0400652}
653
Alex Kiernan117a0e02018-04-19 04:32:51 +0000654#ifdef CONFIG_SPL_SERIAL_SUPPORT
Tom Rini6507f132012-08-22 15:31:05 -0700655/*
656 * This requires UART clocks to be enabled. In order for this to work the
657 * caller must ensure that the gd pointer is valid.
658 */
Aneesh Vbcae7212011-07-21 09:10:21 -0400659void preloader_console_init(void)
660{
Aneesh Vbcae7212011-07-21 09:10:21 -0400661 gd->baudrate = CONFIG_BAUDRATE;
662
Aneesh Vbcae7212011-07-21 09:10:21 -0400663 serial_init(); /* serial communications setup */
664
Ilya Yanokb88befa2011-11-01 13:16:03 +0000665 gd->have_console = 1;
666
Simon Glassaedc08b2018-11-15 18:43:57 -0700667#if CONFIG_IS_ENABLED(BANNER_PRINT)
Simon Glassd6330062018-11-15 18:43:56 -0700668 puts("\nU-Boot " SPL_TPL_NAME " " PLAIN_VERSION " (" U_BOOT_DATE " - "
669 U_BOOT_TIME " " U_BOOT_TZ ")\n");
Anatolij Gustschin0292bc02018-01-25 18:45:22 +0100670#endif
Tom Rini861a86f2012-08-13 11:37:56 -0700671#ifdef CONFIG_SPL_DISPLAY_PRINT
672 spl_display_print();
673#endif
Tom Rinicc3f7052011-10-04 04:59:23 +0000674}
Alex Kiernan117a0e02018-04-19 04:32:51 +0000675#endif
Simon Glassdb910352015-03-03 08:03:00 -0700676
677/**
678 * spl_relocate_stack_gd() - Relocate stack ready for board_init_r() execution
679 *
680 * Sometimes board_init_f() runs with a stack in SRAM but we want to use SDRAM
681 * for the main board_init_r() execution. This is typically because we need
682 * more stack space for things like the MMC sub-system.
683 *
684 * This function calculates the stack position, copies the global_data into
Albert ARIBAUDadc421e2015-11-25 17:56:33 +0100685 * place, sets the new gd (except for ARM, for which setting GD within a C
686 * function may not always work) and returns the new stack position. The
687 * caller is responsible for setting up the sp register and, in the case
688 * of ARM, setting up gd.
689 *
690 * All of this is done using the same layout and alignments as done in
691 * board_init_f_init_reserve() / board_init_f_alloc_reserve().
Simon Glassdb910352015-03-03 08:03:00 -0700692 *
693 * @return new stack location, or 0 to use the same stack
694 */
695ulong spl_relocate_stack_gd(void)
696{
697#ifdef CONFIG_SPL_STACK_R
698 gd_t *new_gd;
Albert ARIBAUDadc421e2015-11-25 17:56:33 +0100699 ulong ptr = CONFIG_SPL_STACK_R_ADDR;
Simon Glassdb910352015-03-03 08:03:00 -0700700
Philipp Tomsichae2cee22017-07-28 11:06:03 +0200701#if defined(CONFIG_SPL_SYS_MALLOC_SIMPLE) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Hans de Goededcfcb8d2015-09-13 15:04:17 +0200702 if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) {
Hans de Goededcfcb8d2015-09-13 15:04:17 +0200703 ptr -= CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
704 gd->malloc_base = ptr;
705 gd->malloc_limit = CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
706 gd->malloc_ptr = 0;
707 }
708#endif
Albert ARIBAUDadc421e2015-11-25 17:56:33 +0100709 /* Get stack position: use 8-byte alignment for ABI compliance */
710 ptr = CONFIG_SPL_STACK_R_ADDR - roundup(sizeof(gd_t),16);
711 new_gd = (gd_t *)ptr;
712 memcpy(new_gd, (void *)gd, sizeof(gd_t));
Simon Glass2f11cd92016-11-13 14:21:58 -0700713#if CONFIG_IS_ENABLED(DM)
714 dm_fixup_for_gd_move(new_gd);
715#endif
Albert ARIBAUDadc421e2015-11-25 17:56:33 +0100716#if !defined(CONFIG_ARM)
717 gd = new_gd;
718#endif
Simon Glassdb910352015-03-03 08:03:00 -0700719 return ptr;
720#else
721 return 0;
722#endif
723}