blob: 63c48fbf33df75a48ce3e4d52c1810761e411711 [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 Glass52f24232020-05-10 11:40:00 -060012#include <bootstage.h>
Simon Glass11516512014-11-10 17:16:46 -070013#include <dm.h>
Simon Glassb0edea32018-11-15 18:44:09 -070014#include <handoff.h>
Simon Glassdb41d652019-12-28 10:45:07 -070015#include <hang.h>
Simon Glass691d7192020-05-10 11:40:02 -060016#include <init.h>
Simon Glassc30b7ad2019-11-14 12:57:41 -070017#include <irq_func.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060018#include <log.h>
Simon Glassb03e0512019-11-14 12:57:24 -070019#include <serial.h>
Tom Rini47f7bca2012-08-13 12:03:19 -070020#include <spl.h>
Aneesh Vbcae7212011-07-21 09:10:21 -040021#include <asm/u-boot.h>
Simon Schwarzbb085b82011-09-14 15:29:26 -040022#include <nand.h>
Aneesh V8cf686e2011-07-21 09:10:27 -040023#include <fat.h>
Simon Glass3db71102019-11-14 12:57:16 -070024#include <u-boot/crc.h>
Simon Glassefb21722011-10-10 08:55:19 +000025#include <version.h>
Aneesh V8cf686e2011-07-21 09:10:27 -040026#include <image.h>
Aneesh V2d01dd92011-10-21 12:29:34 -040027#include <malloc.h>
Simon Glass31f9f0e2019-10-21 17:26:52 -060028#include <mapmem.h>
Simon Glass11516512014-11-10 17:16:46 -070029#include <dm/root.h>
Andreas Müller761ca312012-01-04 15:26:24 +000030#include <linux/compiler.h>
B, Ravi6e7585b2017-04-18 17:27:27 +053031#include <fdt_support.h>
Lukasz Majewskia8be2492018-05-02 16:10:54 +020032#include <bootcount.h>
Stefan Roese06985282019-04-11 15:58:44 +020033#include <wdt.h>
Aneesh Vbcae7212011-07-21 09:10:21 -040034
35DECLARE_GLOBAL_DATA_PTR;
36
Stefan Roese3c6f8a02012-08-28 10:50:59 +020037#ifndef CONFIG_SYS_UBOOT_START
38#define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE
39#endif
Stefano Babicae83d882012-08-23 12:46:16 +020040#ifndef CONFIG_SYS_MONITOR_LEN
Andreas Bießmanne76caa62014-10-25 02:54:55 +020041/* Unknown U-Boot size, let's assume it will not be more than 200 KB */
Stefano Babicae83d882012-08-23 12:46:16 +020042#define CONFIG_SYS_MONITOR_LEN (200 * 1024)
43#endif
44
Tom Rini47f7bca2012-08-13 12:03:19 -070045u32 *boot_params_ptr = NULL;
Simon Schwarz9ea5c6e2011-09-14 15:33:34 -040046
Simon Glass8bee2d22017-11-13 18:55:03 -070047/* See spl.h for information about this */
Simon Glassdbf6be92018-08-01 15:22:42 -060048binman_sym_declare(ulong, u_boot_any, image_pos);
Simon Glasse82c6242019-12-08 17:40:12 -070049binman_sym_declare(ulong, u_boot_any, size);
50
51#ifdef CONFIG_TPL
52binman_sym_declare(ulong, spl, image_pos);
53binman_sym_declare(ulong, spl, size);
54#endif
Simon Glass8bee2d22017-11-13 18:55:03 -070055
Tom Rini6507f132012-08-22 15:31:05 -070056/* Define board data structure */
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090057static struct bd_info bdata __attribute__ ((section(".data")));
Aneesh Vbcae7212011-07-21 09:10:21 -040058
Simon Schwarz379c19a2012-03-15 04:01:38 +000059/*
Heiko Schocher496c5482016-06-07 08:31:20 +020060 * Board-specific Platform code can reimplement show_boot_progress () if needed
61 */
62__weak void show_boot_progress(int val) {}
63
Heiko Stuebnera343b4f2020-05-25 19:57:25 +020064#if defined(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF) || \
65 defined(CONFIG_SPL_ATF)
Simon Glassb0edea32018-11-15 18:44:09 -070066/* weak, default platform-specific function to initialize dram banks */
67__weak int dram_init_banksize(void)
68{
69 return 0;
70}
71#endif
72
Heiko Schocher496c5482016-06-07 08:31:20 +020073/*
Simon Schwarz379c19a2012-03-15 04:01:38 +000074 * Default function to determine if u-boot or the OS should
75 * be started. This implementation always returns 1.
76 *
77 * Please implement your own board specific funcion to do this.
78 *
79 * RETURN
80 * 0 to not start u-boot
81 * positive if u-boot should start
82 */
83#ifdef CONFIG_SPL_OS_BOOT
84__weak int spl_start_uboot(void)
85{
Simon Glassd6330062018-11-15 18:43:56 -070086 puts(SPL_TPL_PROMPT
87 "Please implement spl_start_uboot() for your board\n");
88 puts(SPL_TPL_PROMPT "Direct Linux boot not active!\n");
Simon Schwarz379c19a2012-03-15 04:01:38 +000089 return 1;
90}
Ladislav Michl431889d2016-07-12 20:28:14 +020091
92/*
93 * Weak default function for arch specific zImage check. Return zero
94 * and fill start and end address if image is recognized.
95 */
96int __weak bootz_setup(ulong image, ulong *start, ulong *end)
97{
98 return 1;
99}
Simon Schwarz379c19a2012-03-15 04:01:38 +0000100#endif
101
Philipp Tomsichde5dd4c2018-05-24 17:15:50 +0200102/* Weak default function for arch/board-specific fixups to the spl_image_info */
103void __weak spl_perform_fixups(struct spl_image_info *spl_image)
104{
105}
106
Heiko Stuebnera343b4f2020-05-25 19:57:25 +0200107void spl_fixup_fdt(void *fdt_blob)
B, Ravi6e7585b2017-04-18 17:27:27 +0530108{
Heiko Stuebnera343b4f2020-05-25 19:57:25 +0200109#if defined(CONFIG_SPL_OF_LIBFDT)
B, Ravi6e7585b2017-04-18 17:27:27 +0530110 int err;
111
Heiko Stuebnera343b4f2020-05-25 19:57:25 +0200112 if (!fdt_blob)
113 return;
114
B, Ravi6e7585b2017-04-18 17:27:27 +0530115 err = fdt_check_header(fdt_blob);
116 if (err < 0) {
117 printf("fdt_root: %s\n", fdt_strerror(err));
118 return;
119 }
120
121 /* fixup the memory dt node */
122 err = fdt_shrink_to_minimum(fdt_blob, 0);
123 if (err == 0) {
Simon Glassd6330062018-11-15 18:43:56 -0700124 printf(SPL_TPL_PROMPT "fdt_shrink_to_minimum err - %d\n", err);
B, Ravi6e7585b2017-04-18 17:27:27 +0530125 return;
126 }
127
128 err = arch_fixup_fdt(fdt_blob);
129 if (err) {
Simon Glassd6330062018-11-15 18:43:56 -0700130 printf(SPL_TPL_PROMPT "arch_fixup_fdt err - %d\n", err);
B, Ravi6e7585b2017-04-18 17:27:27 +0530131 return;
132 }
133#endif
134}
135
Simon Glasse82c6242019-12-08 17:40:12 -0700136ulong spl_get_image_pos(void)
137{
138 return spl_phase() == PHASE_TPL ?
139 binman_sym(ulong, spl, image_pos) :
140 binman_sym(ulong, u_boot_any, image_pos);
141}
142
143ulong spl_get_image_size(void)
144{
145 return spl_phase() == PHASE_TPL ?
146 binman_sym(ulong, spl, size) :
147 binman_sym(ulong, u_boot_any, size);
148}
149
Stefan Roeseea8256f2012-08-23 08:34:21 +0200150/*
151 * Weak default function for board specific cleanup/preparation before
152 * Linux boot. Some boards/platforms might not need it, so just provide
153 * an empty stub here.
154 */
155__weak void spl_board_prepare_for_linux(void)
156{
157 /* Nothing to do! */
158}
159
Michal Simek3a3b9142016-05-10 07:54:20 +0200160__weak void spl_board_prepare_for_boot(void)
161{
162 /* Nothing to do! */
163}
164
Marek Vasut04ce5422018-08-14 11:27:02 +0200165__weak struct image_header *spl_get_load_buffer(ssize_t offset, size_t size)
166{
167 return (struct image_header *)(CONFIG_SYS_TEXT_BASE + offset);
168}
169
Simon Glassd95ceb92016-09-24 18:19:52 -0600170void spl_set_header_raw_uboot(struct spl_image_info *spl_image)
Heiko Schocher0c3117b2014-10-31 08:31:00 +0100171{
Simon Glassdbf6be92018-08-01 15:22:42 -0600172 ulong u_boot_pos = binman_sym(ulong, u_boot_any, image_pos);
Simon Glass8bee2d22017-11-13 18:55:03 -0700173
Simon Glassd95ceb92016-09-24 18:19:52 -0600174 spl_image->size = CONFIG_SYS_MONITOR_LEN;
Miquel Raynal55fe0e22018-02-28 20:51:43 +0100175
176 /*
177 * Binman error cases: address of the end of the previous region or the
178 * start of the image's entry area (usually 0) if there is no previous
179 * region.
180 */
181 if (u_boot_pos && u_boot_pos != BINMAN_SYM_MISSING) {
182 /* Binman does not support separated entry addresses */
Simon Glass8bee2d22017-11-13 18:55:03 -0700183 spl_image->entry_point = u_boot_pos;
184 spl_image->load_addr = u_boot_pos;
185 } else {
186 spl_image->entry_point = CONFIG_SYS_UBOOT_START;
187 spl_image->load_addr = CONFIG_SYS_TEXT_BASE;
188 }
Simon Glassd95ceb92016-09-24 18:19:52 -0600189 spl_image->os = IH_OS_U_BOOT;
190 spl_image->name = "U-Boot";
Heiko Schocher0c3117b2014-10-31 08:31:00 +0100191}
192
Marek Vasut8a9dc162018-05-13 00:23:17 +0200193#ifdef CONFIG_SPL_LOAD_FIT_FULL
194/* Parse and load full fitImage in SPL */
195static int spl_load_fit_image(struct spl_image_info *spl_image,
196 const struct image_header *header)
197{
198 bootm_headers_t images;
199 const char *fit_uname_config = NULL;
200 const char *fit_uname_fdt = FIT_FDT_PROP;
201 const char *uname;
202 ulong fw_data = 0, dt_data = 0, img_data = 0;
203 ulong fw_len = 0, dt_len = 0, img_len = 0;
204 int idx, conf_noffset;
205 int ret;
206
207#ifdef CONFIG_SPL_FIT_SIGNATURE
208 images.verify = 1;
209#endif
210 ret = fit_image_load(&images, (ulong)header,
211 NULL, &fit_uname_config,
212 IH_ARCH_DEFAULT, IH_TYPE_STANDALONE, -1,
213 FIT_LOAD_REQUIRED, &fw_data, &fw_len);
214 if (ret < 0)
215 return ret;
216
217 spl_image->size = fw_len;
218 spl_image->entry_point = fw_data;
219 spl_image->load_addr = fw_data;
220 spl_image->os = IH_OS_U_BOOT;
221 spl_image->name = "U-Boot";
222
Simon Glassd6330062018-11-15 18:43:56 -0700223 debug(SPL_TPL_PROMPT "payload image: %32s load addr: 0x%lx size: %d\n",
Simon Goldschmidt30c07402018-11-02 21:49:52 +0100224 spl_image->name, spl_image->load_addr, spl_image->size);
Marek Vasut8a9dc162018-05-13 00:23:17 +0200225
226#ifdef CONFIG_SPL_FIT_SIGNATURE
227 images.verify = 1;
228#endif
Marek Vasuta9a82712019-05-07 21:17:02 +0200229 ret = fit_image_load(&images, (ulong)header,
Marek Vasut8a9dc162018-05-13 00:23:17 +0200230 &fit_uname_fdt, &fit_uname_config,
231 IH_ARCH_DEFAULT, IH_TYPE_FLATDT, -1,
232 FIT_LOAD_OPTIONAL, &dt_data, &dt_len);
Marek Vasuta9a82712019-05-07 21:17:02 +0200233 if (ret >= 0)
234 spl_image->fdt_addr = (void *)dt_data;
Marek Vasut8a9dc162018-05-13 00:23:17 +0200235
236 conf_noffset = fit_conf_get_node((const void *)header,
237 fit_uname_config);
238 if (conf_noffset <= 0)
239 return 0;
240
241 for (idx = 0;
242 uname = fdt_stringlist_get((const void *)header, conf_noffset,
243 FIT_LOADABLE_PROP, idx,
244 NULL), uname;
245 idx++)
246 {
247#ifdef CONFIG_SPL_FIT_SIGNATURE
248 images.verify = 1;
249#endif
250 ret = fit_image_load(&images, (ulong)header,
251 &uname, &fit_uname_config,
252 IH_ARCH_DEFAULT, IH_TYPE_LOADABLE, -1,
253 FIT_LOAD_OPTIONAL_NON_ZERO,
254 &img_data, &img_len);
255 if (ret < 0)
256 return ret;
257 }
258
259 return 0;
260}
261#endif
262
Stefan Roesec1108172020-04-21 09:28:41 +0200263__weak int spl_parse_legacy_header(struct spl_image_info *spl_image,
264 const struct image_header *header)
265{
266 /* LEGACY image not supported */
267 debug("Legacy boot image support not enabled, proceeding to other boot methods\n");
268 return -EINVAL;
269}
270
Simon Glass71316c12016-09-24 18:19:53 -0600271int spl_parse_image_header(struct spl_image_info *spl_image,
272 const struct image_header *header)
Aneesh V8cf686e2011-07-21 09:10:27 -0400273{
Marek Vasut8a9dc162018-05-13 00:23:17 +0200274#ifdef CONFIG_SPL_LOAD_FIT_FULL
275 int ret = spl_load_fit_image(spl_image, header);
276
277 if (!ret)
278 return ret;
279#endif
Stefan Roese77552b02012-08-27 12:50:57 +0200280 if (image_get_magic(header) == IH_MAGIC) {
Stefan Roesec1108172020-04-21 09:28:41 +0200281 int ret;
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600282
Stefan Roesec1108172020-04-21 09:28:41 +0200283 ret = spl_parse_legacy_header(spl_image, header);
284 if (ret)
285 return ret;
Aneesh V8cf686e2011-07-21 09:10:27 -0400286 } else {
Albert ARIBAUD \(3ADEV\)8c80eb32015-03-31 11:40:50 +0200287#ifdef CONFIG_SPL_PANIC_ON_RAW_IMAGE
288 /*
289 * CONFIG_SPL_PANIC_ON_RAW_IMAGE is defined when the
290 * code which loads images in SPL cannot guarantee that
291 * absolutely all read errors will be reported.
292 * An example is the LPC32XX MLC NAND driver, which
293 * will consider that a completely unreadable NAND block
294 * is bad, and thus should be skipped silently.
295 */
296 panic("** no mkimage signature but raw image not supported");
Paul Kocialkowski85a37722016-08-24 20:04:42 +0200297#endif
298
Ladislav Michl431889d2016-07-12 20:28:14 +0200299#ifdef CONFIG_SPL_OS_BOOT
300 ulong start, end;
301
302 if (!bootz_setup((ulong)header, &start, &end)) {
Simon Glass71316c12016-09-24 18:19:53 -0600303 spl_image->name = "Linux";
304 spl_image->os = IH_OS_LINUX;
305 spl_image->load_addr = CONFIG_SYS_LOAD_ADDR;
306 spl_image->entry_point = CONFIG_SYS_LOAD_ADDR;
307 spl_image->size = end - start;
Simon Glassd6330062018-11-15 18:43:56 -0700308 debug(SPL_TPL_PROMPT
309 "payload zImage, load addr: 0x%lx size: %d\n",
Simon Glass71316c12016-09-24 18:19:53 -0600310 spl_image->load_addr, spl_image->size);
Ladislav Michl431889d2016-07-12 20:28:14 +0200311 return 0;
312 }
313#endif
Paul Kocialkowski85a37722016-08-24 20:04:42 +0200314
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600315#ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT
Aneesh V8cf686e2011-07-21 09:10:27 -0400316 /* Signature not found - assume u-boot.bin */
Tom Rini026b2fe2012-08-14 12:06:43 -0700317 debug("mkimage signature not found - ih_magic = %x\n",
Aneesh V8cf686e2011-07-21 09:10:27 -0400318 header->ih_magic);
Simon Glass71316c12016-09-24 18:19:53 -0600319 spl_set_header_raw_uboot(spl_image);
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600320#else
321 /* RAW image not supported, proceed to other boot methods. */
Anatolij Gustschin2d2531b2017-08-01 16:17:12 +0200322 debug("Raw boot image support not enabled, proceeding to other boot methods\n");
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600323 return -EINVAL;
Albert ARIBAUD \(3ADEV\)8c80eb32015-03-31 11:40:50 +0200324#endif
Aneesh V8cf686e2011-07-21 09:10:27 -0400325 }
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600326
Marek Vasut7e0f2262016-04-29 00:44:54 +0200327 return 0;
Aneesh V8cf686e2011-07-21 09:10:27 -0400328}
329
Allen Martina759f1e2012-10-19 21:08:22 +0000330__weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
Aneesh V8cf686e2011-07-21 09:10:27 -0400331{
SRICHARAN R4a0eb752013-04-24 00:41:24 +0000332 typedef void __noreturn (*image_entry_noargs_t)(void);
333
Aneesh V8cf686e2011-07-21 09:10:27 -0400334 image_entry_noargs_t image_entry =
Andre Przywara11e14792017-01-02 11:48:31 +0000335 (image_entry_noargs_t)spl_image->entry_point;
Aneesh V8cf686e2011-07-21 09:10:27 -0400336
Simon Goldschmidt30c07402018-11-02 21:49:52 +0100337 debug("image entry point: 0x%lx\n", spl_image->entry_point);
SRICHARAN R4a0eb752013-04-24 00:41:24 +0000338 image_entry();
Aneesh V8cf686e2011-07-21 09:10:27 -0400339}
340
Simon Glassb0edea32018-11-15 18:44:09 -0700341#if CONFIG_IS_ENABLED(HANDOFF)
342/**
343 * Set up the SPL hand-off information
344 *
345 * This is initially empty (zero) but can be written by
346 */
347static int setup_spl_handoff(void)
348{
349 struct spl_handoff *ho;
350
351 ho = bloblist_ensure(BLOBLISTT_SPL_HANDOFF, sizeof(struct spl_handoff));
352 if (!ho)
353 return -ENOENT;
354
355 return 0;
356}
357
Simon Glass366291a2019-09-25 08:11:18 -0600358__weak int handoff_arch_save(struct spl_handoff *ho)
359{
360 return 0;
361}
362
Simon Glassb0edea32018-11-15 18:44:09 -0700363static int write_spl_handoff(void)
364{
365 struct spl_handoff *ho;
Simon Glass366291a2019-09-25 08:11:18 -0600366 int ret;
Simon Glassb0edea32018-11-15 18:44:09 -0700367
368 ho = bloblist_find(BLOBLISTT_SPL_HANDOFF, sizeof(struct spl_handoff));
369 if (!ho)
370 return -ENOENT;
371 handoff_save_dram(ho);
Simon Glass366291a2019-09-25 08:11:18 -0600372 ret = handoff_arch_save(ho);
373 if (ret)
374 return ret;
Simon Glassb0edea32018-11-15 18:44:09 -0700375 debug(SPL_TPL_PROMPT "Wrote SPL handoff\n");
376
377 return 0;
378}
379#else
380static inline int setup_spl_handoff(void) { return 0; }
381static inline int write_spl_handoff(void) { return 0; }
382
383#endif /* HANDOFF */
384
Eddie Cai340f4182017-03-15 08:43:28 -0600385static int spl_common_init(bool setup_malloc)
Aneesh Vbcae7212011-07-21 09:10:21 -0400386{
Simon Glassf3d46bd2015-02-27 22:06:42 -0700387 int ret;
388
Andy Yanf1896c42017-07-24 17:43:34 +0800389#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Eddie Cai340f4182017-03-15 08:43:28 -0600390 if (setup_malloc) {
Marek Vasut94b9e222016-05-25 02:14:56 +0200391#ifdef CONFIG_MALLOC_F_ADDR
Eddie Cai340f4182017-03-15 08:43:28 -0600392 gd->malloc_base = CONFIG_MALLOC_F_ADDR;
Marek Vasut94b9e222016-05-25 02:14:56 +0200393#endif
Andy Yanf1896c42017-07-24 17:43:34 +0800394 gd->malloc_limit = CONFIG_VAL(SYS_MALLOC_F_LEN);
Eddie Cai340f4182017-03-15 08:43:28 -0600395 gd->malloc_ptr = 0;
396 }
Tom Rini24dafad2012-08-13 14:13:07 -0700397#endif
Simon Glass31f9f0e2019-10-21 17:26:52 -0600398 ret = bootstage_init(u_boot_first_phase());
Simon Glass824bb1b2017-05-22 05:05:35 -0600399 if (ret) {
400 debug("%s: Failed to set up bootstage: ret=%d\n", __func__,
401 ret);
402 return ret;
403 }
Simon Glass31f9f0e2019-10-21 17:26:52 -0600404#ifdef CONFIG_BOOTSTAGE_STASH
405 if (!u_boot_first_phase()) {
406 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
407 CONFIG_BOOTSTAGE_STASH_SIZE);
408
409 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
410 if (ret)
411 debug("%s: Failed to unstash bootstage: ret=%d\n",
412 __func__, ret);
413 }
414#endif /* CONFIG_BOOTSTAGE_STASH */
Simon Glass5256bee2019-10-21 17:26:51 -0600415 bootstage_mark_name(spl_phase() == PHASE_TPL ? BOOTSTAGE_ID_START_TPL :
416 BOOTSTAGE_ID_START_SPL, SPL_TPL_NAME);
Simon Glass4d8d3052018-11-15 18:43:49 -0700417#if CONFIG_IS_ENABLED(LOG)
418 ret = log_init();
419 if (ret) {
420 debug("%s: Failed to set up logging\n", __func__);
421 return ret;
422 }
423#endif
Simon Glassd223e0a2016-07-04 11:57:56 -0600424 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
Simon Glassf3d46bd2015-02-27 22:06:42 -0700425 ret = fdtdec_setup();
426 if (ret) {
427 debug("fdtdec_setup() returned error %d\n", ret);
Simon Glass070d00b2015-06-23 15:39:10 -0600428 return ret;
Simon Glassf3d46bd2015-02-27 22:06:42 -0700429 }
430 }
Philipp Tomsichf1c6e192017-06-30 19:02:53 +0200431 if (CONFIG_IS_ENABLED(DM)) {
Simon Glassb67eefd2020-05-10 11:39:59 -0600432 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_SPL,
Simon Glass5256bee2019-10-21 17:26:51 -0600433 spl_phase() == PHASE_TPL ? "dm tpl" : "dm_spl");
Tom Rini7f73ca42017-01-14 12:20:23 -0500434 /* With CONFIG_SPL_OF_PLATDATA, bring in all devices */
Simon Glass7d23b9c2016-07-04 11:58:14 -0600435 ret = dm_init_and_scan(!CONFIG_IS_ENABLED(OF_PLATDATA));
Simon Glassb67eefd2020-05-10 11:39:59 -0600436 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_SPL);
Simon Glassf3d46bd2015-02-27 22:06:42 -0700437 if (ret) {
438 debug("dm_init_and_scan() returned error %d\n", ret);
Simon Glass070d00b2015-06-23 15:39:10 -0600439 return ret;
Simon Glassf3d46bd2015-02-27 22:06:42 -0700440 }
441 }
Eddie Cai340f4182017-03-15 08:43:28 -0600442
443 return 0;
444}
445
York Sund1fc0a32017-09-28 08:42:10 -0700446void spl_set_bd(void)
447{
Simon Glassc21f4072018-11-15 18:43:58 -0700448 /*
449 * NOTE: On some platforms (e.g. x86) bdata may be in flash and not
450 * writeable.
451 */
York Sund1fc0a32017-09-28 08:42:10 -0700452 if (!gd->bd)
453 gd->bd = &bdata;
454}
455
Eddie Cai340f4182017-03-15 08:43:28 -0600456int spl_early_init(void)
457{
458 int ret;
459
Simon Goldschmidt94cb9862018-08-13 11:24:05 +0200460 debug("%s\n", __func__);
461
Eddie Cai340f4182017-03-15 08:43:28 -0600462 ret = spl_common_init(true);
463 if (ret)
464 return ret;
465 gd->flags |= GD_FLG_SPL_EARLY_INIT;
466
467 return 0;
468}
469
470int spl_init(void)
471{
472 int ret;
Tom Rinicf334ed2017-03-20 14:19:27 -0400473 bool setup_malloc = !(IS_ENABLED(CONFIG_SPL_STACK_R) &&
474 IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIMPLE));
Eddie Cai340f4182017-03-15 08:43:28 -0600475
Simon Goldschmidt94cb9862018-08-13 11:24:05 +0200476 debug("%s\n", __func__);
477
Eddie Cai340f4182017-03-15 08:43:28 -0600478 if (!(gd->flags & GD_FLG_SPL_EARLY_INIT)) {
Tom Rinicf334ed2017-03-20 14:19:27 -0400479 ret = spl_common_init(setup_malloc);
Eddie Cai340f4182017-03-15 08:43:28 -0600480 if (ret)
481 return ret;
482 }
Simon Glass070d00b2015-06-23 15:39:10 -0600483 gd->flags |= GD_FLG_SPL_INIT;
Aneesh V2d01dd92011-10-21 12:29:34 -0400484
Simon Glass070d00b2015-06-23 15:39:10 -0600485 return 0;
486}
487
Nikita Kiryanovf101e4b2015-11-08 17:11:51 +0200488#ifndef BOOT_DEVICE_NONE
489#define BOOT_DEVICE_NONE 0xdeadbeef
490#endif
491
Nikita Kiryanovf101e4b2015-11-08 17:11:51 +0200492__weak void board_boot_order(u32 *spl_boot_list)
493{
494 spl_boot_list[0] = spl_boot_device();
495}
496
Simon Glassa0a80292016-09-24 18:19:58 -0600497static struct spl_image_loader *spl_ll_find_loader(uint boot_device)
498{
499 struct spl_image_loader *drv =
500 ll_entry_start(struct spl_image_loader, spl_image_loader);
501 const int n_ents =
502 ll_entry_count(struct spl_image_loader, spl_image_loader);
503 struct spl_image_loader *entry;
504
505 for (entry = drv; entry != drv + n_ents; entry++) {
506 if (boot_device == entry->boot_device)
507 return entry;
508 }
509
510 /* Not found */
511 return NULL;
512}
513
Simon Glass29d357d2016-11-30 15:30:52 -0700514static int spl_load_image(struct spl_image_info *spl_image,
515 struct spl_image_loader *loader)
Nikita Kiryanov5211b872015-11-08 17:11:50 +0200516{
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100517 int ret;
Simon Glassecdfd692016-09-24 18:19:57 -0600518 struct spl_boot_device bootdev;
519
Simon Glass29d357d2016-11-30 15:30:52 -0700520 bootdev.boot_device = loader->boot_device;
Simon Glassecdfd692016-09-24 18:19:57 -0600521 bootdev.boot_device_name = NULL;
522
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100523 ret = loader->load_image(spl_image, &bootdev);
524#ifdef CONFIG_SPL_LEGACY_IMAGE_CRC_CHECK
525 if (!ret && spl_image->dcrc_length) {
526 /* check data crc */
527 ulong dcrc = crc32_wd(0, (unsigned char *)spl_image->dcrc_data,
528 spl_image->dcrc_length, CHUNKSZ_CRC32);
529 if (dcrc != spl_image->dcrc) {
530 puts("SPL: Image data CRC check failed!\n");
531 ret = -EINVAL;
532 }
533 }
534#endif
535 return ret;
Simon Glass540bfe72016-11-30 15:30:51 -0700536}
537
538/**
Miquel Raynalfd4ee982019-05-07 14:18:43 +0200539 * boot_from_devices() - Try loading a booting U-Boot from a list of devices
Simon Glass540bfe72016-11-30 15:30:51 -0700540 *
541 * @spl_image: Place to put the image details if successful
542 * @spl_boot_list: List of boot devices to try
543 * @count: Number of elements in spl_boot_list
544 * @return 0 if OK, -ve on error
545 */
546static int boot_from_devices(struct spl_image_info *spl_image,
547 u32 spl_boot_list[], int count)
548{
549 int i;
550
551 for (i = 0; i < count && spl_boot_list[i] != BOOT_DEVICE_NONE; i++) {
552 struct spl_image_loader *loader;
553
Simon Glass540bfe72016-11-30 15:30:51 -0700554 loader = spl_ll_find_loader(spl_boot_list[i]);
Otavio Salvadorf9b9b772020-09-03 14:25:15 -0300555#if defined(CONFIG_SPL_SERIAL_SUPPORT) \
556 && defined(CONFIG_SPL_LIBCOMMON_SUPPORT) \
557 && !defined(CONFIG_SILENT_CONSOLE)
Simon Glass2acf35d2016-11-30 15:30:53 -0700558 if (loader)
Andrew F. Daviscf947da2017-01-12 10:19:55 -0600559 printf("Trying to boot from %s\n", loader->name);
Simon Glass2acf35d2016-11-30 15:30:53 -0700560 else
Simon Glassd6330062018-11-15 18:43:56 -0700561 puts(SPL_TPL_PROMPT "Unsupported Boot Device!\n");
Nikita Kiryanov5211b872015-11-08 17:11:50 +0200562#endif
Philipp Tomsichde5dd4c2018-05-24 17:15:50 +0200563 if (loader && !spl_load_image(spl_image, loader)) {
564 spl_image->boot_device = spl_boot_list[i];
Simon Glass540bfe72016-11-30 15:30:51 -0700565 return 0;
Philipp Tomsichde5dd4c2018-05-24 17:15:50 +0200566 }
Simon Glass540bfe72016-11-30 15:30:51 -0700567 }
568
Simon Glass97d9df02016-09-24 18:20:12 -0600569 return -ENODEV;
Nikita Kiryanov5211b872015-11-08 17:11:50 +0200570}
571
Philippe Reynesa9a3aad2019-09-19 16:18:39 +0200572#if defined(CONFIG_SPL_FRAMEWORK_BOARD_INIT_F)
573void board_init_f(ulong dummy)
574{
575 if (CONFIG_IS_ENABLED(OF_CONTROL)) {
576 int ret;
577
578 ret = spl_early_init();
579 if (ret) {
580 debug("spl_early_init() failed: %d\n", ret);
581 hang();
582 }
583 }
584
Samuel Holland3988be52020-05-07 18:08:10 -0500585 preloader_console_init();
Philippe Reynesa9a3aad2019-09-19 16:18:39 +0200586}
587#endif
588
Simon Glass070d00b2015-06-23 15:39:10 -0600589void board_init_r(gd_t *dummy1, ulong dummy2)
590{
Simon Glassd32b2d12016-09-24 18:20:17 -0600591 u32 spl_boot_list[] = {
592 BOOT_DEVICE_NONE,
593 BOOT_DEVICE_NONE,
594 BOOT_DEVICE_NONE,
595 BOOT_DEVICE_NONE,
596 BOOT_DEVICE_NONE,
597 };
598 struct spl_image_info spl_image;
Simon Glasse945a722018-11-15 18:43:51 -0700599 int ret;
Simon Glass070d00b2015-06-23 15:39:10 -0600600
Simon Glassd6330062018-11-15 18:43:56 -0700601 debug(">>" SPL_TPL_PROMPT "board_init_r()\n");
York Sund1fc0a32017-09-28 08:42:10 -0700602
603 spl_set_bd();
604
Simon Glass070d00b2015-06-23 15:39:10 -0600605#if defined(CONFIG_SYS_SPL_MALLOC_START)
606 mem_malloc_init(CONFIG_SYS_SPL_MALLOC_START,
607 CONFIG_SYS_SPL_MALLOC_SIZE);
608 gd->flags |= GD_FLG_FULL_MALLOC_INIT;
609#endif
610 if (!(gd->flags & GD_FLG_SPL_INIT)) {
611 if (spl_init())
612 hang();
613 }
Anatolij Gustschinf9d42d82017-08-28 17:46:33 +0200614#if !defined(CONFIG_PPC) && !defined(CONFIG_ARCH_MX6)
Stefan Roeseea8256f2012-08-23 08:34:21 +0200615 /*
616 * timer_init() does not exist on PPC systems. The timer is initialized
617 * and enabled (decrementer) in interrupt_init() here.
618 */
Ilya Yanok4063c772012-09-17 10:26:26 +0000619 timer_init();
Stefan Roeseea8256f2012-08-23 08:34:21 +0200620#endif
Simon Glass3cd71982019-09-25 08:11:19 -0600621 if (CONFIG_IS_ENABLED(BLOBLIST)) {
622 ret = bloblist_init();
623 if (ret) {
624 debug("%s: Failed to set up bloblist: ret=%d\n",
625 __func__, ret);
626 puts(SPL_TPL_PROMPT "Cannot set up bloblist\n");
627 hang();
628 }
629 }
630 if (CONFIG_IS_ENABLED(HANDOFF)) {
631 int ret;
632
633 ret = setup_spl_handoff();
634 if (ret) {
635 puts(SPL_TPL_PROMPT "Cannot set up SPL handoff\n");
636 hang();
637 }
638 }
Ilya Yanok4063c772012-09-17 10:26:26 +0000639
Kever Yangaf2f4422018-01-20 18:00:26 +0800640#if CONFIG_IS_ENABLED(BOARD_INIT)
Tom Riniee08a822011-11-23 05:13:06 +0000641 spl_board_init();
642#endif
643
Marek Vasut6874cb72019-06-09 03:46:21 +0200644#if defined(CONFIG_SPL_WATCHDOG_SUPPORT) && CONFIG_IS_ENABLED(WDT)
Stefan Roese06985282019-04-11 15:58:44 +0200645 initr_watchdog();
646#endif
647
Heiko Stuebnera343b4f2020-05-25 19:57:25 +0200648 if (IS_ENABLED(CONFIG_SPL_OS_BOOT) || CONFIG_IS_ENABLED(HANDOFF) ||
649 IS_ENABLED(CONFIG_SPL_ATF))
Simon Glassb0edea32018-11-15 18:44:09 -0700650 dram_init_banksize();
651
Lukasz Majewskia8be2492018-05-02 16:10:54 +0200652 bootcount_inc();
653
Simon Glassd32b2d12016-09-24 18:20:17 -0600654 memset(&spl_image, '\0', sizeof(spl_image));
Vikas Manocha5bf52502017-04-07 15:38:13 -0700655#ifdef CONFIG_SYS_SPL_ARGS_ADDR
656 spl_image.arg = (void *)CONFIG_SYS_SPL_ARGS_ADDR;
657#endif
Philipp Tomsichde5dd4c2018-05-24 17:15:50 +0200658 spl_image.boot_device = BOOT_DEVICE_NONE;
Nikita Kiryanovf101e4b2015-11-08 17:11:51 +0200659 board_boot_order(spl_boot_list);
Nikita Kiryanovf101e4b2015-11-08 17:11:51 +0200660
Simon Glass540bfe72016-11-30 15:30:51 -0700661 if (boot_from_devices(&spl_image, spl_boot_list,
662 ARRAY_SIZE(spl_boot_list))) {
Simon Glassd6330062018-11-15 18:43:56 -0700663 puts(SPL_TPL_PROMPT "failed to boot from all boot devices\n");
Aneesh V8cf686e2011-07-21 09:10:27 -0400664 hang();
Nikita Kiryanovf101e4b2015-11-08 17:11:51 +0200665 }
Aneesh V8cf686e2011-07-21 09:10:27 -0400666
Philipp Tomsichde5dd4c2018-05-24 17:15:50 +0200667 spl_perform_fixups(&spl_image);
Simon Glassb0edea32018-11-15 18:44:09 -0700668 if (CONFIG_IS_ENABLED(HANDOFF)) {
669 ret = write_spl_handoff();
670 if (ret)
671 printf(SPL_TPL_PROMPT
672 "SPL hand-off write failed (err=%d)\n", ret);
673 }
Simon Glasse945a722018-11-15 18:43:51 -0700674 if (CONFIG_IS_ENABLED(BLOBLIST)) {
675 ret = bloblist_finish();
676 if (ret)
677 printf("Warning: Failed to finish bloblist (ret=%d)\n",
678 ret);
679 }
Philipp Tomsichde5dd4c2018-05-24 17:15:50 +0200680
Vikas Manocha6bcdd662017-05-28 12:55:08 -0700681#ifdef CONFIG_CPU_V7M
682 spl_image.entry_point |= 0x1;
683#endif
Simon Schwarz9ea5c6e2011-09-14 15:33:34 -0400684 switch (spl_image.os) {
Aneesh V8cf686e2011-07-21 09:10:27 -0400685 case IH_OS_U_BOOT:
686 debug("Jumping to U-Boot\n");
Aneesh V8cf686e2011-07-21 09:10:27 -0400687 break;
Philipp Tomsich1d379092017-09-13 21:29:35 +0200688#if CONFIG_IS_ENABLED(ATF)
689 case IH_OS_ARM_TRUSTED_FIRMWARE:
690 debug("Jumping to U-Boot via ARM Trusted Firmware\n");
Heiko Stuebnera343b4f2020-05-25 19:57:25 +0200691 spl_fixup_fdt(spl_image.fdt_addr);
Philipp Tomsich1d379092017-09-13 21:29:35 +0200692 spl_invoke_atf(&spl_image);
693 break;
694#endif
Kever Yang70fe2872018-08-23 17:17:59 +0800695#if CONFIG_IS_ENABLED(OPTEE)
696 case IH_OS_TEE:
697 debug("Jumping to U-Boot via OP-TEE\n");
698 spl_optee_entry(NULL, NULL, spl_image.fdt_addr,
699 (void *)spl_image.entry_point);
700 break;
701#endif
Lukas Auer5e30e452019-08-21 21:14:44 +0200702#if CONFIG_IS_ENABLED(OPENSBI)
703 case IH_OS_OPENSBI:
704 debug("Jumping to U-Boot via RISC-V OpenSBI\n");
705 spl_invoke_opensbi(&spl_image);
706 break;
707#endif
Simon Schwarz379c19a2012-03-15 04:01:38 +0000708#ifdef CONFIG_SPL_OS_BOOT
709 case IH_OS_LINUX:
710 debug("Jumping to Linux\n");
Heiko Stuebnera343b4f2020-05-25 19:57:25 +0200711#if defined(CONFIG_SYS_SPL_ARGS_ADDR)
712 spl_fixup_fdt((void *)CONFIG_SYS_SPL_ARGS_ADDR);
713#endif
Simon Schwarz379c19a2012-03-15 04:01:38 +0000714 spl_board_prepare_for_linux();
Vikas Manocha5bf52502017-04-07 15:38:13 -0700715 jump_to_image_linux(&spl_image);
Simon Schwarz379c19a2012-03-15 04:01:38 +0000716#endif
Aneesh V8cf686e2011-07-21 09:10:27 -0400717 default:
Tom Rini42120982012-08-27 14:58:28 -0700718 debug("Unsupported OS image.. Jumping nevertheless..\n");
Aneesh V8cf686e2011-07-21 09:10:27 -0400719 }
Andy Yanf1896c42017-07-24 17:43:34 +0800720#if CONFIG_VAL(SYS_MALLOC_F_LEN) && !defined(CONFIG_SYS_SPL_MALLOC_SIZE)
Simon Goldschmidt30c07402018-11-02 21:49:52 +0100721 debug("SPL malloc() used 0x%lx bytes (%ld KB)\n", gd->malloc_ptr,
Simon Glassfb4f5e72014-11-10 17:16:45 -0700722 gd->malloc_ptr / 1024);
723#endif
Simon Glass5256bee2019-10-21 17:26:51 -0600724 bootstage_mark_name(spl_phase() == PHASE_TPL ? BOOTSTAGE_ID_END_TPL :
725 BOOTSTAGE_ID_END_SPL, "end " SPL_TPL_NAME);
Simon Glass824bb1b2017-05-22 05:05:35 -0600726#ifdef CONFIG_BOOTSTAGE_STASH
Simon Glass824bb1b2017-05-22 05:05:35 -0600727 ret = bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
728 CONFIG_BOOTSTAGE_STASH_SIZE);
729 if (ret)
730 debug("Failed to stash bootstage: err=%d\n", ret);
731#endif
Kever Yanga8c51122017-09-13 18:24:24 +0800732
Kever Yanga8c51122017-09-13 18:24:24 +0800733 debug("loaded - jumping to U-Boot...\n");
Michal Simek3a3b9142016-05-10 07:54:20 +0200734 spl_board_prepare_for_boot();
Allen Martina759f1e2012-10-19 21:08:22 +0000735 jump_to_image_no_args(&spl_image);
Aneesh Vbcae7212011-07-21 09:10:21 -0400736}
737
Tom Rini6507f132012-08-22 15:31:05 -0700738/*
739 * This requires UART clocks to be enabled. In order for this to work the
740 * caller must ensure that the gd pointer is valid.
741 */
Aneesh Vbcae7212011-07-21 09:10:21 -0400742void preloader_console_init(void)
743{
Samuel Holland3988be52020-05-07 18:08:10 -0500744#ifdef CONFIG_SPL_SERIAL_SUPPORT
Aneesh Vbcae7212011-07-21 09:10:21 -0400745 gd->baudrate = CONFIG_BAUDRATE;
746
Aneesh Vbcae7212011-07-21 09:10:21 -0400747 serial_init(); /* serial communications setup */
748
Ilya Yanokb88befa2011-11-01 13:16:03 +0000749 gd->have_console = 1;
750
Simon Glassaedc08b2018-11-15 18:43:57 -0700751#if CONFIG_IS_ENABLED(BANNER_PRINT)
Simon Glassd6330062018-11-15 18:43:56 -0700752 puts("\nU-Boot " SPL_TPL_NAME " " PLAIN_VERSION " (" U_BOOT_DATE " - "
753 U_BOOT_TIME " " U_BOOT_TZ ")\n");
Anatolij Gustschin0292bc02018-01-25 18:45:22 +0100754#endif
Tom Rini861a86f2012-08-13 11:37:56 -0700755#ifdef CONFIG_SPL_DISPLAY_PRINT
756 spl_display_print();
757#endif
Alex Kiernan117a0e02018-04-19 04:32:51 +0000758#endif
Samuel Holland3988be52020-05-07 18:08:10 -0500759}
Simon Glassdb910352015-03-03 08:03:00 -0700760
761/**
Simon Goldschmidtd8c03322019-07-16 22:30:36 +0200762 * This function is called before the stack is changed from initial stack to
763 * relocated stack. It tries to dump the stack size used
764 */
765__weak void spl_relocate_stack_check(void)
766{
767#if CONFIG_IS_ENABLED(SYS_REPORT_STACK_F_USAGE)
768 ulong init_sp = gd->start_addr_sp;
769 ulong stack_bottom = init_sp - CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK);
770 u8 *ptr = (u8 *)stack_bottom;
771 ulong i;
772
773 for (i = 0; i < CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK); i++) {
774 if (*ptr != CONFIG_VAL(SYS_STACK_F_CHECK_BYTE))
775 break;
776 ptr++;
777 }
778 printf("SPL initial stack usage: %lu bytes\n",
779 CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK) - i);
780#endif
781}
782
783/**
Simon Glassdb910352015-03-03 08:03:00 -0700784 * spl_relocate_stack_gd() - Relocate stack ready for board_init_r() execution
785 *
786 * Sometimes board_init_f() runs with a stack in SRAM but we want to use SDRAM
787 * for the main board_init_r() execution. This is typically because we need
788 * more stack space for things like the MMC sub-system.
789 *
790 * This function calculates the stack position, copies the global_data into
Albert ARIBAUDadc421e2015-11-25 17:56:33 +0100791 * place, sets the new gd (except for ARM, for which setting GD within a C
792 * function may not always work) and returns the new stack position. The
793 * caller is responsible for setting up the sp register and, in the case
794 * of ARM, setting up gd.
795 *
796 * All of this is done using the same layout and alignments as done in
797 * board_init_f_init_reserve() / board_init_f_alloc_reserve().
Simon Glassdb910352015-03-03 08:03:00 -0700798 *
799 * @return new stack location, or 0 to use the same stack
800 */
801ulong spl_relocate_stack_gd(void)
802{
803#ifdef CONFIG_SPL_STACK_R
804 gd_t *new_gd;
Albert ARIBAUDadc421e2015-11-25 17:56:33 +0100805 ulong ptr = CONFIG_SPL_STACK_R_ADDR;
Simon Glassdb910352015-03-03 08:03:00 -0700806
Simon Goldschmidtd8c03322019-07-16 22:30:36 +0200807 if (CONFIG_IS_ENABLED(SYS_REPORT_STACK_F_USAGE))
808 spl_relocate_stack_check();
809
Philipp Tomsichae2cee22017-07-28 11:06:03 +0200810#if defined(CONFIG_SPL_SYS_MALLOC_SIMPLE) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Hans de Goededcfcb8d2015-09-13 15:04:17 +0200811 if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) {
Simon Goldschmidt438dcab2019-02-26 22:27:52 +0100812 debug("SPL malloc() before relocation used 0x%lx bytes (%ld KB)\n",
813 gd->malloc_ptr, gd->malloc_ptr / 1024);
Hans de Goededcfcb8d2015-09-13 15:04:17 +0200814 ptr -= CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
815 gd->malloc_base = ptr;
816 gd->malloc_limit = CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
817 gd->malloc_ptr = 0;
818 }
819#endif
Albert ARIBAUDadc421e2015-11-25 17:56:33 +0100820 /* Get stack position: use 8-byte alignment for ABI compliance */
821 ptr = CONFIG_SPL_STACK_R_ADDR - roundup(sizeof(gd_t),16);
822 new_gd = (gd_t *)ptr;
823 memcpy(new_gd, (void *)gd, sizeof(gd_t));
Simon Glass2f11cd92016-11-13 14:21:58 -0700824#if CONFIG_IS_ENABLED(DM)
825 dm_fixup_for_gd_move(new_gd);
826#endif
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200827#if !defined(CONFIG_ARM) && !defined(CONFIG_RISCV)
Albert ARIBAUDadc421e2015-11-25 17:56:33 +0100828 gd = new_gd;
829#endif
Simon Glassdb910352015-03-03 08:03:00 -0700830 return ptr;
831#else
832 return 0;
833#endif
834}
Simon Glassc6604442019-11-14 12:57:17 -0700835
836#if defined(CONFIG_BOOTCOUNT_LIMIT) && !defined(CONFIG_SPL_BOOTCOUNT_LIMIT)
837void bootcount_store(ulong a)
838{
839}
840
841ulong bootcount_load(void)
842{
843 return 0;
844}
845#endif