blob: 30d7fbf498f0fb6907f6fb98d16a47a8cc12fc5e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass1938f4a2013-03-11 06:49:53 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
4 * (C) Copyright 2002-2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
7 * (C) Copyright 2002
8 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
9 * Marius Groeger <mgroeger@sysgo.de>
Simon Glass1938f4a2013-03-11 06:49:53 +000010 */
11
Tom Rini03de3052024-05-20 13:35:03 -060012#include <config.h>
Simon Glassf0293d32018-11-15 18:43:52 -070013#include <bloblist.h>
Simon Glass52f24232020-05-10 11:40:00 -060014#include <bootstage.h>
Simon Glassd96c2602019-12-28 10:44:58 -070015#include <clock_legacy.h>
Simon Glass24b852a2015-11-08 23:47:45 -070016#include <console.h>
Mario Six5d6c61a2018-08-06 10:23:41 +020017#include <cpu.h>
Simon Glass30c7c432019-11-14 12:57:34 -070018#include <cpu_func.h>
Stefan Roese70545642022-09-02 13:57:50 +020019#include <cyclic.h>
Simon Glass4e4bf942022-07-31 12:28:48 -060020#include <display_options.h>
Simon Glassab7cd622014-07-23 06:55:04 -060021#include <dm.h>
Simon Glass4bfd1f52019-08-01 09:46:43 -060022#include <env.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060023#include <env_internal.h>
Simon Glass5a421902022-03-04 08:43:02 -070024#include <event.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000025#include <fdtdec.h>
Simon Glassf828bf22013-04-20 08:42:41 +000026#include <fs.h>
Simon Glassdb41d652019-12-28 10:45:07 -070027#include <hang.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000028#include <i2c.h>
Simon Glass67c4e9f2019-11-14 12:57:45 -070029#include <init.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000030#include <initcall.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060031#include <log.h>
Simon Glassfb5cf7f2015-02-27 22:06:36 -070032#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050033#include <mapmem.h>
Simon Glassa733b062013-04-26 02:53:43 +000034#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000035#include <post.h>
Simon Glasse47b2d62017-03-31 08:40:38 -060036#include <relocate.h>
Simon Glassb03e0512019-11-14 12:57:24 -070037#include <serial.h>
Simon Glassb0edea32018-11-15 18:44:09 -070038#include <spl.h>
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020039#include <status_led.h>
Mario Six23471ae2018-08-06 10:23:34 +020040#include <sysreset.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070041#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070042#include <trace.h>
Simon Glass5a541942016-01-18 19:52:21 -070043#include <video.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000044#include <watchdog.h>
Simon Glass90526e92020-05-10 11:39:56 -060045#include <asm/cache.h>
Simon Glass401d1c42020-10-30 21:38:53 -060046#include <asm/global_data.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000047#include <asm/io.h>
48#include <asm/sections.h>
Simon Glassab7cd622014-07-23 06:55:04 -060049#include <dm/root.h>
Simon Glass056285f2017-03-31 08:40:35 -060050#include <linux/errno.h>
Pali Rohár236f7392022-09-18 13:23:27 +020051#include <linux/log2.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000052
Simon Glass1938f4a2013-03-11 06:49:53 +000053DECLARE_GLOBAL_DATA_PTR;
Simon Glass1938f4a2013-03-11 06:49:53 +000054
55/*
Simon Glass4c509342015-04-28 20:25:03 -060056 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000057 * refactored to a single function, something like:
58 *
59 * void led_set_state(enum led_colour_t colour, int on);
60 */
61/************************************************************************
62 * Coloured LED functionality
63 ************************************************************************
64 * May be supplied by boards if desired
65 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020066__weak void coloured_LED_init(void) {}
67__weak void red_led_on(void) {}
68__weak void red_led_off(void) {}
69__weak void green_led_on(void) {}
70__weak void green_led_off(void) {}
71__weak void yellow_led_on(void) {}
72__weak void yellow_led_off(void) {}
73__weak void blue_led_on(void) {}
74__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000075
76/*
77 * Why is gd allocated a register? Prior to reloc it might be better to
78 * just pass it around to each function in this file?
79 *
80 * After reloc one could argue that it is hardly used and doesn't need
81 * to be in a register. Or if it is it should perhaps hold pointers to all
82 * global data for all modules, so that post-reloc we can avoid the massive
83 * literal pool we get on ARM. Or perhaps just encourage each module to use
84 * a structure...
85 */
86
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080087#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +000088static int init_func_watchdog_init(void)
89{
Tom Riniea3310e2017-03-14 11:08:10 -040090# if defined(CONFIG_HW_WATCHDOG) && \
91 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Prasanthi Chellakumar1473f6a2018-10-09 11:46:40 -070092 defined(CONFIG_SH) || \
Anatolij Gustschin46d7a3b2016-06-13 14:24:23 +020093 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roese14a380a2015-03-10 08:04:36 +010094 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080095 hw_watchdog_init();
Simon Glasse4fef6c2013-03-11 14:30:42 +000096 puts(" Watchdog enabled\n");
Anatolij Gustschinba169d92016-06-13 14:24:24 +020097# endif
Stefan Roese29caf932022-09-02 14:10:46 +020098 schedule();
Simon Glasse4fef6c2013-03-11 14:30:42 +000099
100 return 0;
101}
102
103int init_func_watchdog_reset(void)
104{
Stefan Roese29caf932022-09-02 14:10:46 +0200105 schedule();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000106
107 return 0;
108}
109#endif /* CONFIG_WATCHDOG */
110
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200111__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000112{
113 /* please define platform specific board_add_ram_info() */
114}
115
Simon Glass1938f4a2013-03-11 06:49:53 +0000116static int init_baud_rate(void)
117{
Simon Glassbfebc8c2017-08-03 12:22:13 -0600118 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glass1938f4a2013-03-11 06:49:53 +0000119 return 0;
120}
121
122static int display_text_info(void)
123{
Ben Stoltz9b217492015-07-31 09:31:37 -0600124#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100125 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000126
Shiji Yangccea96f2023-08-03 09:47:17 +0800127 bss_start = (ulong)__bss_start;
128 bss_end = (ulong)__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100129
Simon Glass98463902022-10-20 18:22:39 -0600130#ifdef CONFIG_TEXT_BASE
131 text_base = CONFIG_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800132#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100133 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800134#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100135
136 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six16ef1472018-01-15 11:10:02 +0100137 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000138#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000139
Simon Glass1938f4a2013-03-11 06:49:53 +0000140 return 0;
141}
142
Mario Six23471ae2018-08-06 10:23:34 +0200143#ifdef CONFIG_SYSRESET
144static int print_resetinfo(void)
145{
146 struct udevice *dev;
147 char status[256];
Michal Suchanek9259bd12022-10-10 20:29:40 +0200148 bool status_printed = false;
Mario Six23471ae2018-08-06 10:23:34 +0200149 int ret;
150
Bin Mengd8cb1dc2023-07-22 00:15:21 +0800151 /*
152 * Not all boards have sysreset drivers available during early
Michal Suchanek9259bd12022-10-10 20:29:40 +0200153 * boot, so don't fail if one can't be found.
154 */
155 for (ret = uclass_first_device_check(UCLASS_SYSRESET, &dev); dev;
Bin Mengd8cb1dc2023-07-22 00:15:21 +0800156 ret = uclass_next_device_check(&dev)) {
Michal Suchanek9259bd12022-10-10 20:29:40 +0200157 if (ret) {
158 debug("%s: %s sysreset device (error: %d)\n",
159 __func__, dev->name, ret);
160 continue;
161 }
Mario Six23471ae2018-08-06 10:23:34 +0200162
Michal Suchanek9259bd12022-10-10 20:29:40 +0200163 if (!sysreset_get_status(dev, status, sizeof(status))) {
164 printf("%s%s", status_printed ? " " : "", status);
165 status_printed = true;
166 }
167 }
168 if (status_printed)
169 printf("\n");
Mario Six23471ae2018-08-06 10:23:34 +0200170
171 return 0;
172}
173#endif
174
Mario Six5d6c61a2018-08-06 10:23:41 +0200175#if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
176static int print_cpuinfo(void)
177{
178 struct udevice *dev;
179 char desc[512];
180 int ret;
181
Ye Lif5b66af2020-05-03 21:58:50 +0800182 dev = cpu_get_current_dev();
183 if (!dev) {
184 debug("%s: Could not get CPU device\n",
185 __func__);
186 return -ENODEV;
Mario Six5d6c61a2018-08-06 10:23:41 +0200187 }
188
189 ret = cpu_get_desc(dev, desc, sizeof(desc));
190 if (ret) {
191 debug("%s: Could not get CPU description (err = %d)\n",
192 dev->name, ret);
193 return ret;
194 }
195
Bin Mengecfe6632018-10-10 22:06:55 -0700196 printf("CPU: %s\n", desc);
Mario Six5d6c61a2018-08-06 10:23:41 +0200197
198 return 0;
199}
200#endif
201
Simon Glass1938f4a2013-03-11 06:49:53 +0000202static int announce_dram_init(void)
203{
204 puts("DRAM: ");
205 return 0;
206}
207
Pali Rohár236f7392022-09-18 13:23:27 +0200208/*
209 * From input size calculate its nearest rounded unit scale (multiply of 2^10)
210 * and value in calculated unit scale multiplied by 10 (as fractional fixed
211 * point number with one decimal digit), which is human natural format,
212 * same what uses print_size() function for displaying. Mathematically it is:
213 * round_nearest(val * 2^scale) = size * 10; where: 10 <= val < 10240.
214 *
215 * For example for size=87654321 we calculate scale=20 and val=836 which means
216 * that input has natural human format 83.6 M (mega = 2^20).
217 */
218#define compute_size_scale_val(size, scale, val) do { \
219 scale = ilog2(size) / 10 * 10; \
220 val = (10 * size + ((1ULL << scale) >> 1)) >> scale; \
221 if (val == 10240) { val = 10; scale += 10; } \
222} while (0)
223
224/*
225 * Check if the sizes in their natural units written in decimal format with
226 * one fraction number are same.
227 */
228static int sizes_near(unsigned long long size1, unsigned long long size2)
229{
230 unsigned int size1_scale, size1_val, size2_scale, size2_val;
231
232 compute_size_scale_val(size1, size1_scale, size1_val);
233 compute_size_scale_val(size2, size2_scale, size2_val);
234
235 return size1_scale == size2_scale && size1_val == size2_val;
236}
237
Simon Glass1938f4a2013-03-11 06:49:53 +0000238static int show_dram_config(void)
239{
York Sunfa39ffe2014-05-02 17:28:05 -0700240 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000241 int i;
242
243 debug("\nRAM Configuration:\n");
244 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
245 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700246 debug("Bank #%d: %llx ", i,
247 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000248#ifdef DEBUG
249 print_size(gd->bd->bi_dram[i].size, "\n");
250#endif
251 }
252 debug("\nDRAM: ");
Simon Glass1938f4a2013-03-11 06:49:53 +0000253
Pali Rohár236f7392022-09-18 13:23:27 +0200254 print_size(gd->ram_size, "");
255 if (!sizes_near(gd->ram_size, size)) {
256 printf(" (effective ");
257 print_size(size, ")");
258 }
Simon Glasse4fef6c2013-03-11 14:30:42 +0000259 board_add_ram_info(0);
260 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000261
262 return 0;
263}
264
Simon Glass76b00ac2017-03-31 08:40:32 -0600265__weak int dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000266{
Stefan Roesef120aa72020-08-12 13:02:39 +0200267 gd->bd->bi_dram[0].start = gd->ram_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000268 gd->bd->bi_dram[0].size = get_effective_memsize();
Simon Glass76b00ac2017-03-31 08:40:32 -0600269
270 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000271}
272
Tom Rini55dabcc2021-08-18 23:12:24 -0400273#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000274static int init_func_i2c(void)
275{
276 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200277 i2c_init_all();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000278 puts("ready\n");
279 return 0;
280}
281#endif
282
Simon Glass1938f4a2013-03-11 06:49:53 +0000283static int setup_mon_len(void)
284{
Stefan Boschd8192502024-01-26 12:50:55 +0000285#if defined(CONFIG_ARCH_NEXELL)
286 gd->mon_len = (ulong)__bss_end - (ulong)__image_copy_start;
287#elif defined(__ARM__) || defined(__MICROBLAZE__)
Shiji Yangccea96f2023-08-03 09:47:17 +0800288 gd->mon_len = (ulong)__bss_end - (ulong)_start;
Simon Glass2c88d5e2023-01-15 14:15:40 -0700289#elif defined(CONFIG_SANDBOX) && !defined(__riscv)
Shiji Yangccea96f2023-08-03 09:47:17 +0800290 gd->mon_len = (ulong)_end - (ulong)_init;
Heinrich Schuchardt3c9fc232021-05-19 12:02:39 +0200291#elif defined(CONFIG_SANDBOX)
Simon Glass2c88d5e2023-01-15 14:15:40 -0700292 /* gcc does not provide _init in crti.o on RISC-V */
Heinrich Schuchardt3c9fc232021-05-19 12:02:39 +0200293 gd->mon_len = 0;
294#elif defined(CONFIG_EFI_APP)
Shiji Yangccea96f2023-08-03 09:47:17 +0800295 gd->mon_len = (ulong)_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400296#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800297 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Tom Rini11232132022-04-06 09:21:25 -0400298#elif defined(CONFIG_SH) || defined(CONFIG_RISCV)
Shiji Yangccea96f2023-08-03 09:47:17 +0800299 gd->mon_len = (ulong)(__bss_end) - (ulong)(_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600300#elif defined(CONFIG_SYS_MONITOR_BASE)
Shiji Yangccea96f2023-08-03 09:47:17 +0800301 /* TODO: use (ulong)__bss_end - (ulong)__text_start; ? */
302 gd->mon_len = (ulong)__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000303#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000304 return 0;
305}
306
Simon Glassb0edea32018-11-15 18:44:09 -0700307static int setup_spl_handoff(void)
308{
309#if CONFIG_IS_ENABLED(HANDOFF)
Simon Glass7f3b79a2022-01-12 19:26:17 -0700310 gd->spl_handoff = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF,
Simon Glassb0edea32018-11-15 18:44:09 -0700311 sizeof(struct spl_handoff));
312 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
313#endif
314
315 return 0;
316}
317
Simon Glass1938f4a2013-03-11 06:49:53 +0000318__weak int arch_cpu_init(void)
319{
320 return 0;
321}
322
Paul Burton8ebf5062016-09-21 11:18:46 +0100323__weak int mach_cpu_init(void)
324{
325 return 0;
326}
327
Simon Glass1938f4a2013-03-11 06:49:53 +0000328/* Get the top of usable RAM */
Heinrich Schuchardtd768dd82023-08-12 20:16:58 +0200329__weak phys_addr_t board_get_usable_ram_top(phys_size_t total_size)
Simon Glass1938f4a2013-03-11 06:49:53 +0000330{
Tom Riniaa6e94d2022-11-16 13:10:37 -0500331#if defined(CFG_SYS_SDRAM_BASE) && CFG_SYS_SDRAM_BASE > 0
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700332 /*
Simon Glass4c509342015-04-28 20:25:03 -0600333 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700334 * 32-bit address space. If so, clip the usable RAM so it doesn't.
335 */
Tom Riniaa6e94d2022-11-16 13:10:37 -0500336 if (gd->ram_top < CFG_SYS_SDRAM_BASE)
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700337 /*
338 * Will wrap back to top of 32-bit space when reservations
339 * are made.
340 */
341 return 0;
342#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000343 return gd->ram_top;
344}
345
Ovidiu Panaitd63fc992022-09-13 21:31:28 +0300346__weak int arch_setup_dest_addr(void)
347{
348 return 0;
349}
350
Simon Glass1938f4a2013-03-11 06:49:53 +0000351static int setup_dest_addr(void)
352{
353 debug("Monitor len: %08lX\n", gd->mon_len);
354 /*
355 * Ram is setup, size stored in gd !!
356 */
Pali Rohárd92aee52022-09-09 17:32:41 +0200357 debug("Ram size: %08llX\n", (unsigned long long)gd->ram_size);
Tom Rini24c904f2022-04-06 10:33:32 -0400358#if CONFIG_VAL(SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000359 /*
360 * Subtract specified amount of memory to hide so that it won't
361 * get "touched" at all by U-Boot. By fixing up gd->ram_size
362 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800363 * memory size and won't touch it either. This should work
364 * for arch/ppc and arch/powerpc. Only Linux board ports in
365 * arch/powerpc with bootwrapper support, that recalculate the
366 * memory size from the SDRAM controller setup will have to
367 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000368 */
York Sun36cc0de2017-03-06 09:02:28 -0800369 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
370#endif
Tom Riniaa6e94d2022-11-16 13:10:37 -0500371#ifdef CFG_SYS_SDRAM_BASE
372 gd->ram_base = CFG_SYS_SDRAM_BASE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000373#endif
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530374 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000375 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000376 gd->relocaddr = gd->ram_top;
Pali Rohárd92aee52022-09-09 17:32:41 +0200377 debug("Ram top: %08llX\n", (unsigned long long)gd->ram_top);
Ovidiu Panaitd63fc992022-09-13 21:31:28 +0300378
379 return arch_setup_dest_addr();
Simon Glass1938f4a2013-03-11 06:49:53 +0000380}
381
Tom Rini7c5c1372022-12-04 10:13:37 -0500382#ifdef CFG_PRAM
Simon Glass1938f4a2013-03-11 06:49:53 +0000383/* reserve protected RAM */
384static int reserve_pram(void)
385{
386 ulong reg;
387
Tom Rini7c5c1372022-12-04 10:13:37 -0500388 reg = env_get_ulong("pram", 10, CFG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000389 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000390 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000391 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000392 return 0;
393}
Tom Rini7c5c1372022-12-04 10:13:37 -0500394#endif /* CFG_PRAM */
Simon Glass1938f4a2013-03-11 06:49:53 +0000395
396/* Round memory pointer down to next 4 kB limit */
397static int reserve_round_4k(void)
398{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000399 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000400 return 0;
401}
402
Ovidiu Panait79926e42020-03-29 20:57:41 +0300403__weak int arch_reserve_mmu(void)
404{
405 return 0;
406}
407
Devarsh Thakkar4ef9c772023-12-05 21:25:19 +0530408static int reserve_video_from_videoblob(void)
Simon Glass5a541942016-01-18 19:52:21 -0700409{
Simon Glassb7080bf2023-07-30 11:16:05 -0600410 if (IS_ENABLED(CONFIG_SPL_VIDEO_HANDOFF) && spl_phase() > PHASE_SPL) {
Nikhil M Jain5bc610a2023-07-18 14:27:31 +0530411 struct video_handoff *ho;
Devarsh Thakkareefe23c2023-12-05 21:25:20 +0530412 int ret = 0;
Nikhil M Jain5bc610a2023-07-18 14:27:31 +0530413
414 ho = bloblist_find(BLOBLISTT_U_BOOT_VIDEO, sizeof(*ho));
415 if (!ho)
Devarsh Thakkareefe23c2023-12-05 21:25:20 +0530416 return log_msg_ret("Missing video bloblist", -ENOENT);
417
418 ret = video_reserve_from_bloblist(ho);
419 if (ret)
420 return log_msg_ret("Invalid Video handoff info", ret);
Devarsh Thakkar4ef9c772023-12-05 21:25:19 +0530421
422 /* Sanity check fb from blob is before current relocaddr */
423 if (likely(gd->relocaddr > (unsigned long)ho->fb))
424 gd->relocaddr = ho->fb;
425 }
426
427 return 0;
428}
429
430/*
431 * Check if any bloblist received specifying reserved areas from previous stage and adjust
432 * gd->relocaddr accordingly, so that we start reserving after pre-reserved areas
433 * from previous stage.
434 *
435 * NOTE:
436 * IT is recommended that all bloblists from previous stage are reserved from ram_top
437 * as next stage will simply start reserving further regions after them.
438 */
439static int setup_relocaddr_from_bloblist(void)
440{
441 reserve_video_from_videoblob();
442
443 return 0;
444}
445
446static int reserve_video(void)
447{
448 if (CONFIG_IS_ENABLED(VIDEO)) {
Simon Glassf9b7bd72022-10-16 15:57:41 -0600449 ulong addr;
450 int ret;
Simon Glass5a541942016-01-18 19:52:21 -0700451
Simon Glassf9b7bd72022-10-16 15:57:41 -0600452 addr = gd->relocaddr;
453 ret = video_reserve(&addr);
454 if (ret)
455 return ret;
456 debug("Reserving %luk for video at: %08lx\n",
457 ((unsigned long)gd->relocaddr - addr) >> 10, addr);
458 gd->relocaddr = addr;
459 }
Simon Glass8703ef32016-01-18 19:52:20 -0700460
461 return 0;
462}
Simon Glass8703ef32016-01-18 19:52:20 -0700463
Simon Glass71c52db2013-06-11 11:14:42 -0700464static int reserve_trace(void)
465{
466#ifdef CONFIG_TRACE
467 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
468 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
Heinrich Schuchardt7ea33572019-06-14 21:52:22 +0200469 debug("Reserving %luk for trace data at: %08lx\n",
470 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
Simon Glass71c52db2013-06-11 11:14:42 -0700471#endif
472
473 return 0;
474}
475
Simon Glass1938f4a2013-03-11 06:49:53 +0000476static int reserve_uboot(void)
477{
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300478 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
479 /*
480 * reserve memory for U-Boot code, data & bss
481 * round down to next 4 kB limit
482 */
483 gd->relocaddr -= gd->mon_len;
484 gd->relocaddr &= ~(4096 - 1);
485 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
486 /* round down to next 64 kB limit so that IVPR stays aligned */
487 gd->relocaddr &= ~(65536 - 1);
488 #endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000489
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300490 debug("Reserving %ldk for U-Boot at: %08lx\n",
491 gd->mon_len >> 10, gd->relocaddr);
492 }
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000493
494 gd->start_addr_sp = gd->relocaddr;
495
Simon Glass1938f4a2013-03-11 06:49:53 +0000496 return 0;
497}
498
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100499/*
500 * reserve after start_addr_sp the requested size and make the stack pointer
501 * 16-byte aligned, this alignment is needed for cast on the reserved memory
502 * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes
503 * = ARMv8 Instruction Set Overview: quad word, 16 bytes
504 */
505static unsigned long reserve_stack_aligned(size_t size)
506{
507 return ALIGN_DOWN(gd->start_addr_sp - size, 16);
508}
509
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700510#ifdef CONFIG_SYS_NONCACHED_MEMORY
511static int reserve_noncached(void)
512{
Stephen Warren5e0404f2019-08-27 11:54:31 -0600513 /*
514 * The value of gd->start_addr_sp must match the value of malloc_start
Tom Rini02f5a012022-10-28 20:27:09 -0400515 * calculated in board_r.c:initr_malloc(), which is passed to
516 * dlmalloc.c:mem_malloc_init() and then used by
Stephen Warren5e0404f2019-08-27 11:54:31 -0600517 * cache.c:noncached_init()
518 *
519 * These calculations must match the code in cache.c:noncached_init()
520 */
521 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
522 MMU_SECTION_SIZE;
523 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
524 MMU_SECTION_SIZE);
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700525 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
526 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
527
528 return 0;
529}
530#endif
531
Simon Glass1938f4a2013-03-11 06:49:53 +0000532/* reserve memory for malloc() area */
533static int reserve_malloc(void)
534{
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100535 gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN);
Simon Glass1938f4a2013-03-11 06:49:53 +0000536 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100537 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700538#ifdef CONFIG_SYS_NONCACHED_MEMORY
539 reserve_noncached();
540#endif
541
Simon Glass1938f4a2013-03-11 06:49:53 +0000542 return 0;
543}
544
545/* (permanently) allocate a Board Info struct */
546static int reserve_board(void)
547{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800548 if (!gd->bd) {
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900549 gd->start_addr_sp = reserve_stack_aligned(sizeof(struct bd_info));
550 gd->bd = (struct bd_info *)map_sysmem(gd->start_addr_sp,
551 sizeof(struct bd_info));
552 memset(gd->bd, '\0', sizeof(struct bd_info));
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800553 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900554 sizeof(struct bd_info), gd->start_addr_sp);
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800555 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000556 return 0;
557}
558
Simon Glass1938f4a2013-03-11 06:49:53 +0000559static int reserve_global_data(void)
560{
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100561 gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t));
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000562 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000563 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100564 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000565 return 0;
566}
567
568static int reserve_fdt(void)
569{
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200570 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
571 /*
572 * If the device tree is sitting immediately above our image
573 * then we must relocate it. If it is embedded in the data
574 * section, then it will be relocated with other data.
575 */
576 if (gd->fdt_blob) {
577 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob), 32);
Simon Glass1938f4a2013-03-11 06:49:53 +0000578
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200579 gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size);
580 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
581 debug("Reserving %lu Bytes for FDT at: %08lx\n",
582 gd->fdt_size, gd->start_addr_sp);
583 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000584 }
585
586 return 0;
587}
588
Simon Glass25e7dc62017-05-22 05:05:30 -0600589static int reserve_bootstage(void)
590{
591#ifdef CONFIG_BOOTSTAGE
592 int size = bootstage_get_size();
593
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100594 gd->start_addr_sp = reserve_stack_aligned(size);
Simon Glass25e7dc62017-05-22 05:05:30 -0600595 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
596 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
597 gd->start_addr_sp);
598#endif
599
600 return 0;
601}
602
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100603__weak int arch_reserve_stacks(void)
Andreas Bießmann68145d42015-02-06 23:06:45 +0100604{
605 return 0;
606}
607
Simon Glass1938f4a2013-03-11 06:49:53 +0000608static int reserve_stacks(void)
609{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100610 /* make stack pointer 16-byte aligned */
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100611 gd->start_addr_sp = reserve_stack_aligned(16);
Simon Glass1938f4a2013-03-11 06:49:53 +0000612
613 /*
Simon Glass4c509342015-04-28 20:25:03 -0600614 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100615 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000616 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100617 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000618}
619
Simon Glassf0293d32018-11-15 18:43:52 -0700620static int reserve_bloblist(void)
621{
622#ifdef CONFIG_BLOBLIST
Simon Glass4a08fae2020-09-27 18:46:18 -0600623 /* Align to a 4KB boundary for easier reading of addresses */
Simon Glass9fe06462021-01-13 20:29:43 -0700624 gd->start_addr_sp = ALIGN_DOWN(gd->start_addr_sp -
625 CONFIG_BLOBLIST_SIZE_RELOC, 0x1000);
626 gd->new_bloblist = map_sysmem(gd->start_addr_sp,
627 CONFIG_BLOBLIST_SIZE_RELOC);
Simon Glassf0293d32018-11-15 18:43:52 -0700628#endif
629
630 return 0;
631}
632
Simon Glass1938f4a2013-03-11 06:49:53 +0000633static int display_new_sp(void)
634{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000635 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000636
637 return 0;
638}
639
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300640__weak int arch_setup_bdinfo(void)
Ovidiu Panaitba743102020-07-24 14:12:14 +0300641{
642 return 0;
643}
644
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300645int setup_bdinfo(void)
646{
Ovidiu Panaita4aa1882020-07-24 14:12:16 +0300647 struct bd_info *bd = gd->bd;
648
Ovidiu Panait49122242020-07-24 14:12:17 +0300649 if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
650 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
651 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
652 }
653
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300654 return arch_setup_bdinfo();
655}
656
Simon Glass1938f4a2013-03-11 06:49:53 +0000657#ifdef CONFIG_POST
658static int init_post(void)
659{
660 post_bootmode_init();
661 post_run(NULL, POST_ROM | post_bootmode_get(0));
662
663 return 0;
664}
665#endif
666
Simon Glass1938f4a2013-03-11 06:49:53 +0000667static int reloc_fdt(void)
668{
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200669 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200670 if (gd->new_fdt) {
671 memcpy(gd->new_fdt, gd->fdt_blob,
672 fdt_totalsize(gd->fdt_blob));
673 gd->fdt_blob = gd->new_fdt;
674 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000675 }
676
677 return 0;
678}
679
Simon Glass25e7dc62017-05-22 05:05:30 -0600680static int reloc_bootstage(void)
681{
682#ifdef CONFIG_BOOTSTAGE
683 if (gd->flags & GD_FLG_SKIP_RELOC)
684 return 0;
685 if (gd->new_bootstage) {
686 int size = bootstage_get_size();
687
688 debug("Copying bootstage from %p to %p, size %x\n",
689 gd->bootstage, gd->new_bootstage, size);
690 memcpy(gd->new_bootstage, gd->bootstage, size);
691 gd->bootstage = gd->new_bootstage;
Simon Glassac9cd482019-10-21 17:26:50 -0600692 bootstage_relocate();
Simon Glass25e7dc62017-05-22 05:05:30 -0600693 }
694#endif
695
696 return 0;
697}
698
Simon Glassf0293d32018-11-15 18:43:52 -0700699static int reloc_bloblist(void)
700{
701#ifdef CONFIG_BLOBLIST
Simon Glassd5b6e912021-11-03 21:09:20 -0600702 /*
703 * Relocate only if we are supposed to send it
704 */
705 if ((gd->flags & GD_FLG_SKIP_RELOC) &&
706 CONFIG_BLOBLIST_SIZE == CONFIG_BLOBLIST_SIZE_RELOC) {
707 debug("Not relocating bloblist\n");
Simon Glassf0293d32018-11-15 18:43:52 -0700708 return 0;
Simon Glassd5b6e912021-11-03 21:09:20 -0600709 }
Simon Glassf0293d32018-11-15 18:43:52 -0700710 if (gd->new_bloblist) {
Simon Glassf0293d32018-11-15 18:43:52 -0700711 debug("Copying bloblist from %p to %p, size %x\n",
Raymond Mao1ef43f32024-02-03 08:36:22 -0800712 gd->bloblist, gd->new_bloblist, gd->bloblist->total_size);
713 return bloblist_reloc(gd->new_bloblist,
714 CONFIG_BLOBLIST_SIZE_RELOC);
Simon Glassf0293d32018-11-15 18:43:52 -0700715 }
716#endif
717
718 return 0;
719}
720
Eugene Uriev7bceb162024-03-31 23:03:25 +0300721void mcheck_on_ramrelocation(size_t offset);
Simon Glass1938f4a2013-03-11 06:49:53 +0000722static int setup_reloc(void)
723{
Marek Vasut47d7d032021-11-13 18:34:04 +0100724 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
Simon Glass98463902022-10-20 18:22:39 -0600725#ifdef CONFIG_TEXT_BASE
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200726#ifdef ARM
Marek Vasut47d7d032021-11-13 18:34:04 +0100727 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
Michal Simekd58c0072022-06-24 14:15:01 +0200728#elif defined(CONFIG_MICROBLAZE)
729 gd->reloc_off = gd->relocaddr - (u32)_start;
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200730#elif defined(CONFIG_M68K)
Marek Vasut47d7d032021-11-13 18:34:04 +0100731 /*
732 * On all ColdFire arch cpu, monitor code starts always
733 * just after the default vector table location, so at 0x400
734 */
Simon Glass98463902022-10-20 18:22:39 -0600735 gd->reloc_off = gd->relocaddr - (CONFIG_TEXT_BASE + 0x400);
Simon Glass001d1882019-04-08 13:20:41 -0600736#elif !defined(CONFIG_SANDBOX)
Simon Glass98463902022-10-20 18:22:39 -0600737 gd->reloc_off = gd->relocaddr - CONFIG_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100738#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800739#endif
Marek Vasut47d7d032021-11-13 18:34:04 +0100740 }
741
Simon Glass1938f4a2013-03-11 06:49:53 +0000742 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
743
Marek Vasut47d7d032021-11-13 18:34:04 +0100744 if (gd->flags & GD_FLG_SKIP_RELOC) {
745 debug("Skipping relocation due to flag\n");
746 } else {
Eugene Uriev7bceb162024-03-31 23:03:25 +0300747#ifdef MCHECK_HEAP_PROTECTION
748 mcheck_on_ramrelocation(gd->reloc_off);
749#endif
Marek Vasut47d7d032021-11-13 18:34:04 +0100750 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
751 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
752 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
753 gd->start_addr_sp);
754 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000755
756 return 0;
757}
758
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100759#ifdef CONFIG_OF_BOARD_FIXUP
760static int fix_fdt(void)
761{
762 return board_fix_fdt((void *)gd->fdt_blob);
763}
764#endif
765
Simon Glass1938f4a2013-03-11 06:49:53 +0000766/* ARM calls relocate_code from its crt0.S */
Simon Glass8f015d32023-07-15 21:38:52 -0600767#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000768
769static int jump_to_copy(void)
770{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600771 if (gd->flags & GD_FLG_SKIP_RELOC)
772 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000773 /*
774 * x86 is special, but in a nice way. It uses a trampoline which
775 * enables the dcache if possible.
776 *
777 * For now, other archs use relocate_code(), which is implemented
778 * similarly for all archs. When we do generic relocation, hopefully
779 * we can make all archs enable the dcache prior to relocation.
780 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300781#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000782 /*
783 * SDRAM and console are now initialised. The final stack can now
784 * be setup in SDRAM. Code execution will continue in Flash, but
785 * with the stack in SDRAM and Global Data in temporary memory
786 * (CPU cache)
787 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600788 arch_setup_gd(gd->new_gd);
Simon Glass8f015d32023-07-15 21:38:52 -0600789# if CONFIG_IS_ENABLED(X86_64)
790 board_init_f_r_trampoline64(gd->new_gd, gd->start_addr_sp);
791# else
792 board_init_f_r_trampoline(gd->start_addr_sp);
793# endif
Simon Glass48a33802013-03-05 14:39:52 +0000794#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000795 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000796#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000797
798 return 0;
799}
800#endif
801
802/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glassb383d6c2017-05-22 05:05:25 -0600803static int initf_bootstage(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000804{
Simon Glassbaa7d342017-06-07 10:28:46 -0600805 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
806 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glassb383d6c2017-05-22 05:05:25 -0600807 int ret;
808
Simon Glass824bb1b2017-05-22 05:05:35 -0600809 ret = bootstage_init(!from_spl);
Simon Glassb383d6c2017-05-22 05:05:25 -0600810 if (ret)
811 return ret;
Simon Glass824bb1b2017-05-22 05:05:35 -0600812 if (from_spl) {
Jonas Karlmanf3a2d792024-08-03 12:41:44 +0000813 ret = bootstage_unstash_default();
Simon Glass824bb1b2017-05-22 05:05:35 -0600814 if (ret && ret != -ENOENT) {
815 debug("Failed to unstash bootstage: err=%d\n", ret);
816 return ret;
817 }
818 }
Simon Glassb383d6c2017-05-22 05:05:25 -0600819
Simon Glass1938f4a2013-03-11 06:49:53 +0000820 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
821
822 return 0;
823}
824
Simon Glassab7cd622014-07-23 06:55:04 -0600825static int initf_dm(void)
826{
Simon Glass3d6d5072023-09-26 08:14:27 -0600827#if defined(CONFIG_DM) && CONFIG_IS_ENABLED(SYS_MALLOC_F)
Simon Glassab7cd622014-07-23 06:55:04 -0600828 int ret;
829
Simon Glassb67eefd2020-05-10 11:39:59 -0600830 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_F, "dm_f");
Simon Glassab7cd622014-07-23 06:55:04 -0600831 ret = dm_init_and_scan(true);
Simon Glassb67eefd2020-05-10 11:39:59 -0600832 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F);
Simon Glassab7cd622014-07-23 06:55:04 -0600833 if (ret)
834 return ret;
Ovidiu Panait4b9a1212020-11-28 10:43:05 +0200835
836 if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
837 ret = dm_timer_init();
838 if (ret)
839 return ret;
840 }
Simon Glass1057e6c2016-02-24 09:14:50 -0700841#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600842
843 return 0;
844}
845
Simon Glass146251f2015-01-19 22:16:12 -0700846/* Architecture-specific memory reservation */
847__weak int reserve_arch(void)
848{
849 return 0;
850}
851
Ovidiu Panait016e4ae2020-01-22 22:28:25 +0200852__weak int checkcpu(void)
853{
854 return 0;
855}
856
Ovidiu Panaitfbf9c152020-02-05 08:54:42 +0200857__weak int clear_bss(void)
858{
859 return 0;
860}
861
Simon Glass4acff452017-01-16 07:03:50 -0700862static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000863 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700864#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700865 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700866#endif
Heinrich Schuchardt7ef8e9b2019-06-02 00:53:24 +0200867#ifdef CONFIG_TRACE_EARLY
Simon Glass71c52db2013-06-11 11:14:42 -0700868 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800869#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700870 initf_malloc,
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700871 log_init,
Simon Glass5ac44a52017-05-22 05:05:31 -0600872 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glass5a421902022-03-04 08:43:02 -0700873 event_init,
Simon Glass3d653182023-09-26 08:14:51 -0600874 bloblist_maybe_init,
Simon Glassb0edea32018-11-15 18:44:09 -0700875 setup_spl_handoff,
Ovidiu Panait8e8d45e2020-11-28 10:43:04 +0200876#if defined(CONFIG_CONSOLE_RECORD_INIT_F)
877 console_record_init,
878#endif
Simon Glass13a7db92023-08-21 21:16:59 -0600879 INITCALL_EVENT(EVT_FSP_INIT_F),
Simon Glass1938f4a2013-03-11 06:49:53 +0000880 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100881 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600882 initf_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000883#if defined(CONFIG_BOARD_EARLY_INIT_F)
884 board_early_init_f,
885#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600886#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600887 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000888 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600889#endif
Marek Vasut56c3aa92023-03-23 01:20:40 +0100890#if !defined(CONFIG_M68K) || (defined(CONFIG_M68K) && !defined(CONFIG_MCFTMR))
Simon Glass1938f4a2013-03-11 06:49:53 +0000891 timer_init, /* initialize timer */
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200892#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000893#if defined(CONFIG_BOARD_POSTCLK_INIT)
894 board_postclk_init,
895#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000896 env_init, /* initialize environment */
897 init_baud_rate, /* initialze baudrate settings */
898 serial_init, /* serial communications setup */
899 console_init_f, /* stage 1 init of console */
900 display_options, /* say that we are here */
901 display_text_info, /* show debugging info if required */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000902 checkcpu,
Mario Six23471ae2018-08-06 10:23:34 +0200903#if defined(CONFIG_SYSRESET)
904 print_resetinfo,
905#endif
Simon Glasscc664002017-01-23 13:31:25 -0700906#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000907 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700908#endif
Cooper Jr., Franklinaf9e6ad2017-06-16 17:25:12 -0500909#if defined(CONFIG_DTB_RESELECT)
910 embedded_dtb_select,
911#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000912#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900913 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000914#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000915 INIT_FUNC_WATCHDOG_INIT
Simon Glassc9eff0a2023-08-21 21:16:54 -0600916 INITCALL_EVENT(EVT_MISC_INIT_F),
Simon Glasse4fef6c2013-03-11 14:30:42 +0000917 INIT_FUNC_WATCHDOG_RESET
Tom Rini55dabcc2021-08-18 23:12:24 -0400918#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000919 init_func_i2c,
920#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000921 announce_dram_init,
Simon Glass1938f4a2013-03-11 06:49:53 +0000922 dram_init, /* configure available RAM banks */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000923#ifdef CONFIG_POST
924 post_init_f,
925#endif
926 INIT_FUNC_WATCHDOG_RESET
Tom Rini65cc0e22022-11-16 13:10:41 -0500927#if defined(CFG_SYS_DRAM_TEST)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000928 testdram,
Tom Rini65cc0e22022-11-16 13:10:41 -0500929#endif /* CFG_SYS_DRAM_TEST */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000930 INIT_FUNC_WATCHDOG_RESET
931
Simon Glass1938f4a2013-03-11 06:49:53 +0000932#ifdef CONFIG_POST
933 init_post,
934#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000935 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000936 /*
937 * Now that we have DRAM mapped and working, we can
938 * relocate the code and continue running from DRAM.
939 *
940 * Reserve memory at end of RAM for (top down in that order):
941 * - area that won't get touched by U-Boot and Linux (optional)
942 * - kernel log buffer
943 * - protected RAM
944 * - LCD framebuffer
945 * - monitor code
946 * - board info struct
947 */
948 setup_dest_addr,
Pali Rohár0858e032024-06-06 18:33:21 +0200949#if defined(CONFIG_OF_BOARD_FIXUP) && !defined(CONFIG_OF_INITIAL_DTB_READONLY)
Pragnesh Patel313981c2020-08-13 10:12:26 +0530950 fix_fdt,
951#endif
Tom Rini7c5c1372022-12-04 10:13:37 -0500952#ifdef CFG_PRAM
Simon Glass1938f4a2013-03-11 06:49:53 +0000953 reserve_pram,
954#endif
955 reserve_round_4k,
Devarsh Thakkar4ef9c772023-12-05 21:25:19 +0530956 setup_relocaddr_from_bloblist,
Ovidiu Panait79926e42020-03-29 20:57:41 +0300957 arch_reserve_mmu,
Simon Glass5a541942016-01-18 19:52:21 -0700958 reserve_video,
Simon Glass8703ef32016-01-18 19:52:20 -0700959 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000960 reserve_uboot,
961 reserve_malloc,
962 reserve_board,
Simon Glass1938f4a2013-03-11 06:49:53 +0000963 reserve_global_data,
964 reserve_fdt,
Pali Rohár0858e032024-06-06 18:33:21 +0200965#if defined(CONFIG_OF_BOARD_FIXUP) && defined(CONFIG_OF_INITIAL_DTB_READONLY)
966 reloc_fdt,
967 fix_fdt,
968#endif
Simon Glass25e7dc62017-05-22 05:05:30 -0600969 reserve_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700970 reserve_bloblist,
Simon Glass146251f2015-01-19 22:16:12 -0700971 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000972 reserve_stacks,
Simon Glass76b00ac2017-03-31 08:40:32 -0600973 dram_init_banksize,
Simon Glass1938f4a2013-03-11 06:49:53 +0000974 show_dram_config,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000975 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panait15328852020-07-24 14:12:20 +0300976 setup_bdinfo,
Simon Glass1938f4a2013-03-11 06:49:53 +0000977 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000978 INIT_FUNC_WATCHDOG_RESET
Pali Rohár0858e032024-06-06 18:33:21 +0200979#if !defined(CONFIG_OF_BOARD_FIXUP) || !defined(CONFIG_OF_INITIAL_DTB_READONLY)
Simon Glass1938f4a2013-03-11 06:49:53 +0000980 reloc_fdt,
Pali Rohár0858e032024-06-06 18:33:21 +0200981#endif
Simon Glass25e7dc62017-05-22 05:05:30 -0600982 reloc_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700983 reloc_bloblist,
Simon Glass1938f4a2013-03-11 06:49:53 +0000984 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300985#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700986 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700987 do_elf_reloc_fixups,
988#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300989 clear_bss,
Rasmus Villemoes50128ae2022-10-28 13:50:54 +0200990 /*
991 * Deregister all cyclic functions before relocation, so that
992 * gd->cyclic_list does not contain any references to pre-relocation
993 * devices. Drivers will register their cyclic functions anew when the
994 * devices are probed again.
995 *
996 * This should happen as late as possible so that the window where a
997 * watchdog device is not serviced is as small as possible.
998 */
999 cyclic_unregister_all,
Simon Glass8f015d32023-07-15 21:38:52 -06001000#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +00001001 jump_to_copy,
1002#endif
1003 NULL,
1004};
1005
1006void board_init_f(ulong boot_flags)
1007{
Simon Glass1938f4a2013-03-11 06:49:53 +00001008 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +04001009 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +00001010
1011 if (initcall_run_list(init_sequence_f))
1012 hang();
1013
Ben Stoltz9b217492015-07-31 09:31:37 -06001014#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkin264d2982015-12-16 19:24:10 +03001015 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
1016 !defined(CONFIG_ARC)
Simon Glass1938f4a2013-03-11 06:49:53 +00001017 /* NOTREACHED - jump_to_copy() does not return */
1018 hang();
1019#endif
1020}
1021
Alexey Brodkin3fb80162015-02-24 19:40:36 +03001022#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +00001023/*
1024 * For now this code is only used on x86.
1025 *
1026 * init_sequence_f_r is the list of init functions which are run when
1027 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1028 * The following limitations must be considered when implementing an
1029 * '_f_r' function:
1030 * - 'static' variables are read-only
1031 * - Global Data (gd->xxx) is read/write
1032 *
1033 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1034 * supported). It _should_, if possible, copy global data to RAM and
1035 * initialise the CPU caches (to speed up the relocation process)
1036 *
1037 * NOTE: At present only x86 uses this route, but it is intended that
1038 * all archs will move to this when generic relocation is implemented.
1039 */
Simon Glass4acff452017-01-16 07:03:50 -07001040static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -07001041#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +00001042 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -07001043#endif
Simon Glass48a33802013-03-05 14:39:52 +00001044
1045 NULL,
1046};
1047
1048void board_init_f_r(void)
1049{
1050 if (initcall_run_list(init_sequence_f_r))
1051 hang();
1052
1053 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -07001054 * The pre-relocation drivers may be using memory that has now gone
1055 * away. Mark serial as unavailable - this will fall back to the debug
1056 * UART if available.
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001057 *
1058 * Do the same with log drivers since the memory may not be available.
Simon Glasse4d6ab02016-03-11 22:06:51 -07001059 */
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001060 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glass5ee94b42017-09-05 19:49:45 -06001061#ifdef CONFIG_TIMER
1062 gd->timer = NULL;
1063#endif
Simon Glasse4d6ab02016-03-11 22:06:51 -07001064
1065 /*
Simon Glass48a33802013-03-05 14:39:52 +00001066 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1067 * Transfer execution from Flash to RAM by calculating the address
1068 * of the in-RAM copy of board_init_r() and calling it
1069 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001070 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001071
1072 /* NOTREACHED - board_init_r() does not return */
1073 hang();
1074}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001075#endif /* CONFIG_X86 */