blob: e9f4edb93db9ae7cf39729ccbac75a98bc7caa4c [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
12#include <common.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
Simon Glass632efa72013-03-11 07:06:48 +0000127 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
Michal Suchanek9259bd12022-10-10 20:29:40 +0200151 /* Not all boards have sysreset drivers available during early
152 * boot, so don't fail if one can't be found.
153 */
154 for (ret = uclass_first_device_check(UCLASS_SYSRESET, &dev); dev;
155 ret = uclass_next_device_check(&dev)) {
156 if (ret) {
157 debug("%s: %s sysreset device (error: %d)\n",
158 __func__, dev->name, ret);
159 continue;
160 }
Mario Six23471ae2018-08-06 10:23:34 +0200161
Michal Suchanek9259bd12022-10-10 20:29:40 +0200162 if (!sysreset_get_status(dev, status, sizeof(status))) {
163 printf("%s%s", status_printed ? " " : "", status);
164 status_printed = true;
165 }
166 }
167 if (status_printed)
168 printf("\n");
Mario Six23471ae2018-08-06 10:23:34 +0200169
170 return 0;
171}
172#endif
173
Mario Six5d6c61a2018-08-06 10:23:41 +0200174#if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
175static int print_cpuinfo(void)
176{
177 struct udevice *dev;
178 char desc[512];
179 int ret;
180
Ye Lif5b66af2020-05-03 21:58:50 +0800181 dev = cpu_get_current_dev();
182 if (!dev) {
183 debug("%s: Could not get CPU device\n",
184 __func__);
185 return -ENODEV;
Mario Six5d6c61a2018-08-06 10:23:41 +0200186 }
187
188 ret = cpu_get_desc(dev, desc, sizeof(desc));
189 if (ret) {
190 debug("%s: Could not get CPU description (err = %d)\n",
191 dev->name, ret);
192 return ret;
193 }
194
Bin Mengecfe6632018-10-10 22:06:55 -0700195 printf("CPU: %s\n", desc);
Mario Six5d6c61a2018-08-06 10:23:41 +0200196
197 return 0;
198}
199#endif
200
Simon Glass1938f4a2013-03-11 06:49:53 +0000201static int announce_dram_init(void)
202{
203 puts("DRAM: ");
204 return 0;
205}
206
Pali Rohár236f7392022-09-18 13:23:27 +0200207/*
208 * From input size calculate its nearest rounded unit scale (multiply of 2^10)
209 * and value in calculated unit scale multiplied by 10 (as fractional fixed
210 * point number with one decimal digit), which is human natural format,
211 * same what uses print_size() function for displaying. Mathematically it is:
212 * round_nearest(val * 2^scale) = size * 10; where: 10 <= val < 10240.
213 *
214 * For example for size=87654321 we calculate scale=20 and val=836 which means
215 * that input has natural human format 83.6 M (mega = 2^20).
216 */
217#define compute_size_scale_val(size, scale, val) do { \
218 scale = ilog2(size) / 10 * 10; \
219 val = (10 * size + ((1ULL << scale) >> 1)) >> scale; \
220 if (val == 10240) { val = 10; scale += 10; } \
221} while (0)
222
223/*
224 * Check if the sizes in their natural units written in decimal format with
225 * one fraction number are same.
226 */
227static int sizes_near(unsigned long long size1, unsigned long long size2)
228{
229 unsigned int size1_scale, size1_val, size2_scale, size2_val;
230
231 compute_size_scale_val(size1, size1_scale, size1_val);
232 compute_size_scale_val(size2, size2_scale, size2_val);
233
234 return size1_scale == size2_scale && size1_val == size2_val;
235}
236
Simon Glass1938f4a2013-03-11 06:49:53 +0000237static int show_dram_config(void)
238{
York Sunfa39ffe2014-05-02 17:28:05 -0700239 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000240 int i;
241
242 debug("\nRAM Configuration:\n");
243 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
244 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700245 debug("Bank #%d: %llx ", i,
246 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000247#ifdef DEBUG
248 print_size(gd->bd->bi_dram[i].size, "\n");
249#endif
250 }
251 debug("\nDRAM: ");
Simon Glass1938f4a2013-03-11 06:49:53 +0000252
Pali Rohár236f7392022-09-18 13:23:27 +0200253 print_size(gd->ram_size, "");
254 if (!sizes_near(gd->ram_size, size)) {
255 printf(" (effective ");
256 print_size(size, ")");
257 }
Simon Glasse4fef6c2013-03-11 14:30:42 +0000258 board_add_ram_info(0);
259 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000260
261 return 0;
262}
263
Simon Glass76b00ac2017-03-31 08:40:32 -0600264__weak int dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000265{
Stefan Roesef120aa72020-08-12 13:02:39 +0200266 gd->bd->bi_dram[0].start = gd->ram_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000267 gd->bd->bi_dram[0].size = get_effective_memsize();
Simon Glass76b00ac2017-03-31 08:40:32 -0600268
269 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000270}
271
Tom Rini55dabcc2021-08-18 23:12:24 -0400272#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000273static int init_func_i2c(void)
274{
275 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200276 i2c_init_all();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000277 puts("ready\n");
278 return 0;
279}
280#endif
281
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530282#if defined(CONFIG_VID)
283__weak int init_func_vid(void)
284{
285 return 0;
286}
287#endif
288
Simon Glass1938f4a2013-03-11 06:49:53 +0000289static int setup_mon_len(void)
290{
Michal Simeke945f6d2014-05-08 16:08:44 +0200291#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100292 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Simon Glass2c88d5e2023-01-15 14:15:40 -0700293#elif defined(CONFIG_SANDBOX) && !defined(__riscv)
294 gd->mon_len = (ulong)&_end - (ulong)_init;
Heinrich Schuchardt3c9fc232021-05-19 12:02:39 +0200295#elif defined(CONFIG_SANDBOX)
Simon Glass2c88d5e2023-01-15 14:15:40 -0700296 /* gcc does not provide _init in crti.o on RISC-V */
Heinrich Schuchardt3c9fc232021-05-19 12:02:39 +0200297 gd->mon_len = 0;
298#elif defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000299 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400300#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800301 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Tom Rini11232132022-04-06 09:21:25 -0400302#elif defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800303 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600304#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000305 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
306 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000307#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000308 return 0;
309}
310
Simon Glassb0edea32018-11-15 18:44:09 -0700311static int setup_spl_handoff(void)
312{
313#if CONFIG_IS_ENABLED(HANDOFF)
Simon Glass7f3b79a2022-01-12 19:26:17 -0700314 gd->spl_handoff = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF,
Simon Glassb0edea32018-11-15 18:44:09 -0700315 sizeof(struct spl_handoff));
316 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
317#endif
318
319 return 0;
320}
321
Simon Glass1938f4a2013-03-11 06:49:53 +0000322__weak int arch_cpu_init(void)
323{
324 return 0;
325}
326
Paul Burton8ebf5062016-09-21 11:18:46 +0100327__weak int mach_cpu_init(void)
328{
329 return 0;
330}
331
Simon Glass1938f4a2013-03-11 06:49:53 +0000332/* Get the top of usable RAM */
Heinrich Schuchardtd768dd82023-08-12 20:16:58 +0200333__weak phys_addr_t board_get_usable_ram_top(phys_size_t total_size)
Simon Glass1938f4a2013-03-11 06:49:53 +0000334{
Tom Riniaa6e94d2022-11-16 13:10:37 -0500335#if defined(CFG_SYS_SDRAM_BASE) && CFG_SYS_SDRAM_BASE > 0
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700336 /*
Simon Glass4c509342015-04-28 20:25:03 -0600337 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700338 * 32-bit address space. If so, clip the usable RAM so it doesn't.
339 */
Tom Riniaa6e94d2022-11-16 13:10:37 -0500340 if (gd->ram_top < CFG_SYS_SDRAM_BASE)
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700341 /*
342 * Will wrap back to top of 32-bit space when reservations
343 * are made.
344 */
345 return 0;
346#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000347 return gd->ram_top;
348}
349
Ovidiu Panaitd63fc992022-09-13 21:31:28 +0300350__weak int arch_setup_dest_addr(void)
351{
352 return 0;
353}
354
Simon Glass1938f4a2013-03-11 06:49:53 +0000355static int setup_dest_addr(void)
356{
357 debug("Monitor len: %08lX\n", gd->mon_len);
358 /*
359 * Ram is setup, size stored in gd !!
360 */
Pali Rohárd92aee52022-09-09 17:32:41 +0200361 debug("Ram size: %08llX\n", (unsigned long long)gd->ram_size);
Tom Rini24c904f2022-04-06 10:33:32 -0400362#if CONFIG_VAL(SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000363 /*
364 * Subtract specified amount of memory to hide so that it won't
365 * get "touched" at all by U-Boot. By fixing up gd->ram_size
366 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800367 * memory size and won't touch it either. This should work
368 * for arch/ppc and arch/powerpc. Only Linux board ports in
369 * arch/powerpc with bootwrapper support, that recalculate the
370 * memory size from the SDRAM controller setup will have to
371 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000372 */
York Sun36cc0de2017-03-06 09:02:28 -0800373 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
374#endif
Tom Riniaa6e94d2022-11-16 13:10:37 -0500375#ifdef CFG_SYS_SDRAM_BASE
376 gd->ram_base = CFG_SYS_SDRAM_BASE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000377#endif
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530378 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000379 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000380 gd->relocaddr = gd->ram_top;
Pali Rohárd92aee52022-09-09 17:32:41 +0200381 debug("Ram top: %08llX\n", (unsigned long long)gd->ram_top);
Ovidiu Panaitd63fc992022-09-13 21:31:28 +0300382
383 return arch_setup_dest_addr();
Simon Glass1938f4a2013-03-11 06:49:53 +0000384}
385
Tom Rini7c5c1372022-12-04 10:13:37 -0500386#ifdef CFG_PRAM
Simon Glass1938f4a2013-03-11 06:49:53 +0000387/* reserve protected RAM */
388static int reserve_pram(void)
389{
390 ulong reg;
391
Tom Rini7c5c1372022-12-04 10:13:37 -0500392 reg = env_get_ulong("pram", 10, CFG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000393 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000394 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000395 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000396 return 0;
397}
Tom Rini7c5c1372022-12-04 10:13:37 -0500398#endif /* CFG_PRAM */
Simon Glass1938f4a2013-03-11 06:49:53 +0000399
400/* Round memory pointer down to next 4 kB limit */
401static int reserve_round_4k(void)
402{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000403 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000404 return 0;
405}
406
Ovidiu Panait79926e42020-03-29 20:57:41 +0300407__weak int arch_reserve_mmu(void)
408{
409 return 0;
410}
411
Simon Glass5a541942016-01-18 19:52:21 -0700412static int reserve_video(void)
413{
Simon Glassb7080bf2023-07-30 11:16:05 -0600414 if (IS_ENABLED(CONFIG_SPL_VIDEO_HANDOFF) && spl_phase() > PHASE_SPL) {
Nikhil M Jain5bc610a2023-07-18 14:27:31 +0530415 struct video_handoff *ho;
416
417 ho = bloblist_find(BLOBLISTT_U_BOOT_VIDEO, sizeof(*ho));
418 if (!ho)
419 return log_msg_ret("blf", -ENOENT);
420 video_reserve_from_bloblist(ho);
421 gd->relocaddr = ho->fb;
422 } else if (CONFIG_IS_ENABLED(VIDEO)) {
Simon Glassf9b7bd72022-10-16 15:57:41 -0600423 ulong addr;
424 int ret;
Simon Glass5a541942016-01-18 19:52:21 -0700425
Simon Glassf9b7bd72022-10-16 15:57:41 -0600426 addr = gd->relocaddr;
427 ret = video_reserve(&addr);
428 if (ret)
429 return ret;
430 debug("Reserving %luk for video at: %08lx\n",
431 ((unsigned long)gd->relocaddr - addr) >> 10, addr);
432 gd->relocaddr = addr;
433 }
Simon Glass8703ef32016-01-18 19:52:20 -0700434
435 return 0;
436}
Simon Glass8703ef32016-01-18 19:52:20 -0700437
Simon Glass71c52db2013-06-11 11:14:42 -0700438static int reserve_trace(void)
439{
440#ifdef CONFIG_TRACE
441 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
442 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
Heinrich Schuchardt7ea33572019-06-14 21:52:22 +0200443 debug("Reserving %luk for trace data at: %08lx\n",
444 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
Simon Glass71c52db2013-06-11 11:14:42 -0700445#endif
446
447 return 0;
448}
449
Simon Glass1938f4a2013-03-11 06:49:53 +0000450static int reserve_uboot(void)
451{
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300452 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
453 /*
454 * reserve memory for U-Boot code, data & bss
455 * round down to next 4 kB limit
456 */
457 gd->relocaddr -= gd->mon_len;
458 gd->relocaddr &= ~(4096 - 1);
459 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
460 /* round down to next 64 kB limit so that IVPR stays aligned */
461 gd->relocaddr &= ~(65536 - 1);
462 #endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000463
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300464 debug("Reserving %ldk for U-Boot at: %08lx\n",
465 gd->mon_len >> 10, gd->relocaddr);
466 }
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000467
468 gd->start_addr_sp = gd->relocaddr;
469
Simon Glass1938f4a2013-03-11 06:49:53 +0000470 return 0;
471}
472
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100473/*
474 * reserve after start_addr_sp the requested size and make the stack pointer
475 * 16-byte aligned, this alignment is needed for cast on the reserved memory
476 * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes
477 * = ARMv8 Instruction Set Overview: quad word, 16 bytes
478 */
479static unsigned long reserve_stack_aligned(size_t size)
480{
481 return ALIGN_DOWN(gd->start_addr_sp - size, 16);
482}
483
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700484#ifdef CONFIG_SYS_NONCACHED_MEMORY
485static int reserve_noncached(void)
486{
Stephen Warren5e0404f2019-08-27 11:54:31 -0600487 /*
488 * The value of gd->start_addr_sp must match the value of malloc_start
Tom Rini02f5a012022-10-28 20:27:09 -0400489 * calculated in board_r.c:initr_malloc(), which is passed to
490 * dlmalloc.c:mem_malloc_init() and then used by
Stephen Warren5e0404f2019-08-27 11:54:31 -0600491 * cache.c:noncached_init()
492 *
493 * These calculations must match the code in cache.c:noncached_init()
494 */
495 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
496 MMU_SECTION_SIZE;
497 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
498 MMU_SECTION_SIZE);
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700499 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
500 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
501
502 return 0;
503}
504#endif
505
Simon Glass1938f4a2013-03-11 06:49:53 +0000506/* reserve memory for malloc() area */
507static int reserve_malloc(void)
508{
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100509 gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN);
Simon Glass1938f4a2013-03-11 06:49:53 +0000510 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100511 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700512#ifdef CONFIG_SYS_NONCACHED_MEMORY
513 reserve_noncached();
514#endif
515
Simon Glass1938f4a2013-03-11 06:49:53 +0000516 return 0;
517}
518
519/* (permanently) allocate a Board Info struct */
520static int reserve_board(void)
521{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800522 if (!gd->bd) {
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900523 gd->start_addr_sp = reserve_stack_aligned(sizeof(struct bd_info));
524 gd->bd = (struct bd_info *)map_sysmem(gd->start_addr_sp,
525 sizeof(struct bd_info));
526 memset(gd->bd, '\0', sizeof(struct bd_info));
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800527 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900528 sizeof(struct bd_info), gd->start_addr_sp);
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800529 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000530 return 0;
531}
532
Simon Glass1938f4a2013-03-11 06:49:53 +0000533static int reserve_global_data(void)
534{
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100535 gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t));
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000536 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000537 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100538 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000539 return 0;
540}
541
542static int reserve_fdt(void)
543{
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200544 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
545 /*
546 * If the device tree is sitting immediately above our image
547 * then we must relocate it. If it is embedded in the data
548 * section, then it will be relocated with other data.
549 */
550 if (gd->fdt_blob) {
551 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob), 32);
Simon Glass1938f4a2013-03-11 06:49:53 +0000552
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200553 gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size);
554 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
555 debug("Reserving %lu Bytes for FDT at: %08lx\n",
556 gd->fdt_size, gd->start_addr_sp);
557 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000558 }
559
560 return 0;
561}
562
Simon Glass25e7dc62017-05-22 05:05:30 -0600563static int reserve_bootstage(void)
564{
565#ifdef CONFIG_BOOTSTAGE
566 int size = bootstage_get_size();
567
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100568 gd->start_addr_sp = reserve_stack_aligned(size);
Simon Glass25e7dc62017-05-22 05:05:30 -0600569 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
570 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
571 gd->start_addr_sp);
572#endif
573
574 return 0;
575}
576
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100577__weak int arch_reserve_stacks(void)
Andreas Bießmann68145d42015-02-06 23:06:45 +0100578{
579 return 0;
580}
581
Simon Glass1938f4a2013-03-11 06:49:53 +0000582static int reserve_stacks(void)
583{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100584 /* make stack pointer 16-byte aligned */
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100585 gd->start_addr_sp = reserve_stack_aligned(16);
Simon Glass1938f4a2013-03-11 06:49:53 +0000586
587 /*
Simon Glass4c509342015-04-28 20:25:03 -0600588 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100589 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000590 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100591 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000592}
593
Simon Glassf0293d32018-11-15 18:43:52 -0700594static int reserve_bloblist(void)
595{
596#ifdef CONFIG_BLOBLIST
Simon Glass4a08fae2020-09-27 18:46:18 -0600597 /* Align to a 4KB boundary for easier reading of addresses */
Simon Glass9fe06462021-01-13 20:29:43 -0700598 gd->start_addr_sp = ALIGN_DOWN(gd->start_addr_sp -
599 CONFIG_BLOBLIST_SIZE_RELOC, 0x1000);
600 gd->new_bloblist = map_sysmem(gd->start_addr_sp,
601 CONFIG_BLOBLIST_SIZE_RELOC);
Simon Glassf0293d32018-11-15 18:43:52 -0700602#endif
603
604 return 0;
605}
606
Simon Glass1938f4a2013-03-11 06:49:53 +0000607static int display_new_sp(void)
608{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000609 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000610
611 return 0;
612}
613
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300614__weak int arch_setup_bdinfo(void)
Ovidiu Panaitba743102020-07-24 14:12:14 +0300615{
616 return 0;
617}
618
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300619int setup_bdinfo(void)
620{
Ovidiu Panaita4aa1882020-07-24 14:12:16 +0300621 struct bd_info *bd = gd->bd;
622
Ovidiu Panait49122242020-07-24 14:12:17 +0300623 if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
624 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
625 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
626 }
627
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300628 return arch_setup_bdinfo();
629}
630
Simon Glass1938f4a2013-03-11 06:49:53 +0000631#ifdef CONFIG_POST
632static int init_post(void)
633{
634 post_bootmode_init();
635 post_run(NULL, POST_ROM | post_bootmode_get(0));
636
637 return 0;
638}
639#endif
640
Simon Glass1938f4a2013-03-11 06:49:53 +0000641static int reloc_fdt(void)
642{
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200643 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200644 if (gd->new_fdt) {
645 memcpy(gd->new_fdt, gd->fdt_blob,
646 fdt_totalsize(gd->fdt_blob));
647 gd->fdt_blob = gd->new_fdt;
648 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000649 }
650
651 return 0;
652}
653
Simon Glass25e7dc62017-05-22 05:05:30 -0600654static int reloc_bootstage(void)
655{
656#ifdef CONFIG_BOOTSTAGE
657 if (gd->flags & GD_FLG_SKIP_RELOC)
658 return 0;
659 if (gd->new_bootstage) {
660 int size = bootstage_get_size();
661
662 debug("Copying bootstage from %p to %p, size %x\n",
663 gd->bootstage, gd->new_bootstage, size);
664 memcpy(gd->new_bootstage, gd->bootstage, size);
665 gd->bootstage = gd->new_bootstage;
Simon Glassac9cd482019-10-21 17:26:50 -0600666 bootstage_relocate();
Simon Glass25e7dc62017-05-22 05:05:30 -0600667 }
668#endif
669
670 return 0;
671}
672
Simon Glassf0293d32018-11-15 18:43:52 -0700673static int reloc_bloblist(void)
674{
675#ifdef CONFIG_BLOBLIST
Simon Glassd5b6e912021-11-03 21:09:20 -0600676 /*
677 * Relocate only if we are supposed to send it
678 */
679 if ((gd->flags & GD_FLG_SKIP_RELOC) &&
680 CONFIG_BLOBLIST_SIZE == CONFIG_BLOBLIST_SIZE_RELOC) {
681 debug("Not relocating bloblist\n");
Simon Glassf0293d32018-11-15 18:43:52 -0700682 return 0;
Simon Glassd5b6e912021-11-03 21:09:20 -0600683 }
Simon Glassf0293d32018-11-15 18:43:52 -0700684 if (gd->new_bloblist) {
685 int size = CONFIG_BLOBLIST_SIZE;
686
687 debug("Copying bloblist from %p to %p, size %x\n",
688 gd->bloblist, gd->new_bloblist, size);
Simon Glass9fe06462021-01-13 20:29:43 -0700689 bloblist_reloc(gd->new_bloblist, CONFIG_BLOBLIST_SIZE_RELOC,
690 gd->bloblist, size);
Simon Glassf0293d32018-11-15 18:43:52 -0700691 gd->bloblist = gd->new_bloblist;
692 }
693#endif
694
695 return 0;
696}
697
Simon Glass1938f4a2013-03-11 06:49:53 +0000698static int setup_reloc(void)
699{
Marek Vasut47d7d032021-11-13 18:34:04 +0100700 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
Simon Glass98463902022-10-20 18:22:39 -0600701#ifdef CONFIG_TEXT_BASE
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200702#ifdef ARM
Marek Vasut47d7d032021-11-13 18:34:04 +0100703 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
Michal Simekd58c0072022-06-24 14:15:01 +0200704#elif defined(CONFIG_MICROBLAZE)
705 gd->reloc_off = gd->relocaddr - (u32)_start;
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200706#elif defined(CONFIG_M68K)
Marek Vasut47d7d032021-11-13 18:34:04 +0100707 /*
708 * On all ColdFire arch cpu, monitor code starts always
709 * just after the default vector table location, so at 0x400
710 */
Simon Glass98463902022-10-20 18:22:39 -0600711 gd->reloc_off = gd->relocaddr - (CONFIG_TEXT_BASE + 0x400);
Simon Glass001d1882019-04-08 13:20:41 -0600712#elif !defined(CONFIG_SANDBOX)
Simon Glass98463902022-10-20 18:22:39 -0600713 gd->reloc_off = gd->relocaddr - CONFIG_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100714#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800715#endif
Marek Vasut47d7d032021-11-13 18:34:04 +0100716 }
717
Simon Glass1938f4a2013-03-11 06:49:53 +0000718 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
719
Marek Vasut47d7d032021-11-13 18:34:04 +0100720 if (gd->flags & GD_FLG_SKIP_RELOC) {
721 debug("Skipping relocation due to flag\n");
722 } else {
723 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
724 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
725 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
726 gd->start_addr_sp);
727 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000728
729 return 0;
730}
731
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100732#ifdef CONFIG_OF_BOARD_FIXUP
733static int fix_fdt(void)
734{
735 return board_fix_fdt((void *)gd->fdt_blob);
736}
737#endif
738
Simon Glass1938f4a2013-03-11 06:49:53 +0000739/* ARM calls relocate_code from its crt0.S */
Simon Glass8f015d32023-07-15 21:38:52 -0600740#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000741
742static int jump_to_copy(void)
743{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600744 if (gd->flags & GD_FLG_SKIP_RELOC)
745 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000746 /*
747 * x86 is special, but in a nice way. It uses a trampoline which
748 * enables the dcache if possible.
749 *
750 * For now, other archs use relocate_code(), which is implemented
751 * similarly for all archs. When we do generic relocation, hopefully
752 * we can make all archs enable the dcache prior to relocation.
753 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300754#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000755 /*
756 * SDRAM and console are now initialised. The final stack can now
757 * be setup in SDRAM. Code execution will continue in Flash, but
758 * with the stack in SDRAM and Global Data in temporary memory
759 * (CPU cache)
760 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600761 arch_setup_gd(gd->new_gd);
Simon Glass8f015d32023-07-15 21:38:52 -0600762# if CONFIG_IS_ENABLED(X86_64)
763 board_init_f_r_trampoline64(gd->new_gd, gd->start_addr_sp);
764# else
765 board_init_f_r_trampoline(gd->start_addr_sp);
766# endif
Simon Glass48a33802013-03-05 14:39:52 +0000767#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000768 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000769#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000770
771 return 0;
772}
773#endif
774
775/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glassb383d6c2017-05-22 05:05:25 -0600776static int initf_bootstage(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000777{
Simon Glassbaa7d342017-06-07 10:28:46 -0600778 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
779 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glassb383d6c2017-05-22 05:05:25 -0600780 int ret;
781
Simon Glass824bb1b2017-05-22 05:05:35 -0600782 ret = bootstage_init(!from_spl);
Simon Glassb383d6c2017-05-22 05:05:25 -0600783 if (ret)
784 return ret;
Simon Glass824bb1b2017-05-22 05:05:35 -0600785 if (from_spl) {
786 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
787 CONFIG_BOOTSTAGE_STASH_SIZE);
788
789 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
790 if (ret && ret != -ENOENT) {
791 debug("Failed to unstash bootstage: err=%d\n", ret);
792 return ret;
793 }
794 }
Simon Glassb383d6c2017-05-22 05:05:25 -0600795
Simon Glass1938f4a2013-03-11 06:49:53 +0000796 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
797
798 return 0;
799}
800
Simon Glassab7cd622014-07-23 06:55:04 -0600801static int initf_dm(void)
802{
Andy Yanf1896c42017-07-24 17:43:34 +0800803#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassab7cd622014-07-23 06:55:04 -0600804 int ret;
805
Simon Glassb67eefd2020-05-10 11:39:59 -0600806 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_F, "dm_f");
Simon Glassab7cd622014-07-23 06:55:04 -0600807 ret = dm_init_and_scan(true);
Simon Glassb67eefd2020-05-10 11:39:59 -0600808 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F);
Simon Glassab7cd622014-07-23 06:55:04 -0600809 if (ret)
810 return ret;
Ovidiu Panait4b9a1212020-11-28 10:43:05 +0200811
812 if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
813 ret = dm_timer_init();
814 if (ret)
815 return ret;
816 }
Simon Glass1057e6c2016-02-24 09:14:50 -0700817#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600818
819 return 0;
820}
821
Simon Glass146251f2015-01-19 22:16:12 -0700822/* Architecture-specific memory reservation */
823__weak int reserve_arch(void)
824{
825 return 0;
826}
827
Ovidiu Panait016e4ae2020-01-22 22:28:25 +0200828__weak int checkcpu(void)
829{
830 return 0;
831}
832
Ovidiu Panaitfbf9c152020-02-05 08:54:42 +0200833__weak int clear_bss(void)
834{
835 return 0;
836}
837
Simon Glass42fdceb2022-03-04 08:43:04 -0700838static int misc_init_f(void)
839{
840 return event_notify_null(EVT_MISC_INIT_F);
841}
842
Simon Glass4acff452017-01-16 07:03:50 -0700843static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000844 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700845#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700846 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700847#endif
Heinrich Schuchardt7ef8e9b2019-06-02 00:53:24 +0200848#ifdef CONFIG_TRACE_EARLY
Simon Glass71c52db2013-06-11 11:14:42 -0700849 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800850#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700851 initf_malloc,
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700852 log_init,
Simon Glass5ac44a52017-05-22 05:05:31 -0600853 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glass5a421902022-03-04 08:43:02 -0700854 event_init,
Simon Glassf0293d32018-11-15 18:43:52 -0700855#ifdef CONFIG_BLOBLIST
856 bloblist_init,
857#endif
Simon Glassb0edea32018-11-15 18:44:09 -0700858 setup_spl_handoff,
Ovidiu Panait8e8d45e2020-11-28 10:43:04 +0200859#if defined(CONFIG_CONSOLE_RECORD_INIT_F)
860 console_record_init,
861#endif
Simon Glass671549e2017-03-28 10:27:18 -0600862#if defined(CONFIG_HAVE_FSP)
863 arch_fsp_init,
Bin Menga52a068e2015-08-20 06:40:18 -0700864#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000865 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100866 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600867 initf_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000868#if defined(CONFIG_BOARD_EARLY_INIT_F)
869 board_early_init_f,
870#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600871#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600872 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000873 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600874#endif
Marek Vasut56c3aa92023-03-23 01:20:40 +0100875#if !defined(CONFIG_M68K) || (defined(CONFIG_M68K) && !defined(CONFIG_MCFTMR))
Simon Glass1938f4a2013-03-11 06:49:53 +0000876 timer_init, /* initialize timer */
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200877#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000878#if defined(CONFIG_BOARD_POSTCLK_INIT)
879 board_postclk_init,
880#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000881 env_init, /* initialize environment */
882 init_baud_rate, /* initialze baudrate settings */
883 serial_init, /* serial communications setup */
884 console_init_f, /* stage 1 init of console */
885 display_options, /* say that we are here */
886 display_text_info, /* show debugging info if required */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000887 checkcpu,
Mario Six23471ae2018-08-06 10:23:34 +0200888#if defined(CONFIG_SYSRESET)
889 print_resetinfo,
890#endif
Simon Glasscc664002017-01-23 13:31:25 -0700891#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000892 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700893#endif
Cooper Jr., Franklinaf9e6ad2017-06-16 17:25:12 -0500894#if defined(CONFIG_DTB_RESELECT)
895 embedded_dtb_select,
896#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000897#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900898 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000899#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000900 INIT_FUNC_WATCHDOG_INIT
Simon Glasse4fef6c2013-03-11 14:30:42 +0000901 misc_init_f,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000902 INIT_FUNC_WATCHDOG_RESET
Tom Rini55dabcc2021-08-18 23:12:24 -0400903#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000904 init_func_i2c,
905#endif
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530906#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
907 init_func_vid,
908#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000909 announce_dram_init,
Simon Glass1938f4a2013-03-11 06:49:53 +0000910 dram_init, /* configure available RAM banks */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000911#ifdef CONFIG_POST
912 post_init_f,
913#endif
914 INIT_FUNC_WATCHDOG_RESET
Tom Rini65cc0e22022-11-16 13:10:41 -0500915#if defined(CFG_SYS_DRAM_TEST)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000916 testdram,
Tom Rini65cc0e22022-11-16 13:10:41 -0500917#endif /* CFG_SYS_DRAM_TEST */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000918 INIT_FUNC_WATCHDOG_RESET
919
Simon Glass1938f4a2013-03-11 06:49:53 +0000920#ifdef CONFIG_POST
921 init_post,
922#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000923 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000924 /*
925 * Now that we have DRAM mapped and working, we can
926 * relocate the code and continue running from DRAM.
927 *
928 * Reserve memory at end of RAM for (top down in that order):
929 * - area that won't get touched by U-Boot and Linux (optional)
930 * - kernel log buffer
931 * - protected RAM
932 * - LCD framebuffer
933 * - monitor code
934 * - board info struct
935 */
936 setup_dest_addr,
Pragnesh Patel313981c2020-08-13 10:12:26 +0530937#ifdef CONFIG_OF_BOARD_FIXUP
938 fix_fdt,
939#endif
Tom Rini7c5c1372022-12-04 10:13:37 -0500940#ifdef CFG_PRAM
Simon Glass1938f4a2013-03-11 06:49:53 +0000941 reserve_pram,
942#endif
943 reserve_round_4k,
Ovidiu Panait79926e42020-03-29 20:57:41 +0300944 arch_reserve_mmu,
Simon Glass5a541942016-01-18 19:52:21 -0700945 reserve_video,
Simon Glass8703ef32016-01-18 19:52:20 -0700946 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000947 reserve_uboot,
948 reserve_malloc,
949 reserve_board,
Simon Glass1938f4a2013-03-11 06:49:53 +0000950 reserve_global_data,
951 reserve_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600952 reserve_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700953 reserve_bloblist,
Simon Glass146251f2015-01-19 22:16:12 -0700954 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000955 reserve_stacks,
Simon Glass76b00ac2017-03-31 08:40:32 -0600956 dram_init_banksize,
Simon Glass1938f4a2013-03-11 06:49:53 +0000957 show_dram_config,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000958 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panait15328852020-07-24 14:12:20 +0300959 setup_bdinfo,
Simon Glass1938f4a2013-03-11 06:49:53 +0000960 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000961 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000962 reloc_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600963 reloc_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700964 reloc_bloblist,
Simon Glass1938f4a2013-03-11 06:49:53 +0000965 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300966#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700967 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700968 do_elf_reloc_fixups,
969#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300970 clear_bss,
Rasmus Villemoes50128ae2022-10-28 13:50:54 +0200971 /*
972 * Deregister all cyclic functions before relocation, so that
973 * gd->cyclic_list does not contain any references to pre-relocation
974 * devices. Drivers will register their cyclic functions anew when the
975 * devices are probed again.
976 *
977 * This should happen as late as possible so that the window where a
978 * watchdog device is not serviced is as small as possible.
979 */
980 cyclic_unregister_all,
Simon Glass8f015d32023-07-15 21:38:52 -0600981#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000982 jump_to_copy,
983#endif
984 NULL,
985};
986
987void board_init_f(ulong boot_flags)
988{
Simon Glass1938f4a2013-03-11 06:49:53 +0000989 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +0400990 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000991
992 if (initcall_run_list(init_sequence_f))
993 hang();
994
Ben Stoltz9b217492015-07-31 09:31:37 -0600995#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkin264d2982015-12-16 19:24:10 +0300996 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
997 !defined(CONFIG_ARC)
Simon Glass1938f4a2013-03-11 06:49:53 +0000998 /* NOTREACHED - jump_to_copy() does not return */
999 hang();
1000#endif
1001}
1002
Alexey Brodkin3fb80162015-02-24 19:40:36 +03001003#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +00001004/*
1005 * For now this code is only used on x86.
1006 *
1007 * init_sequence_f_r is the list of init functions which are run when
1008 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1009 * The following limitations must be considered when implementing an
1010 * '_f_r' function:
1011 * - 'static' variables are read-only
1012 * - Global Data (gd->xxx) is read/write
1013 *
1014 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1015 * supported). It _should_, if possible, copy global data to RAM and
1016 * initialise the CPU caches (to speed up the relocation process)
1017 *
1018 * NOTE: At present only x86 uses this route, but it is intended that
1019 * all archs will move to this when generic relocation is implemented.
1020 */
Simon Glass4acff452017-01-16 07:03:50 -07001021static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -07001022#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +00001023 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -07001024#endif
Simon Glass48a33802013-03-05 14:39:52 +00001025
1026 NULL,
1027};
1028
1029void board_init_f_r(void)
1030{
1031 if (initcall_run_list(init_sequence_f_r))
1032 hang();
1033
1034 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -07001035 * The pre-relocation drivers may be using memory that has now gone
1036 * away. Mark serial as unavailable - this will fall back to the debug
1037 * UART if available.
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001038 *
1039 * Do the same with log drivers since the memory may not be available.
Simon Glasse4d6ab02016-03-11 22:06:51 -07001040 */
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001041 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glass5ee94b42017-09-05 19:49:45 -06001042#ifdef CONFIG_TIMER
1043 gd->timer = NULL;
1044#endif
Simon Glasse4d6ab02016-03-11 22:06:51 -07001045
1046 /*
Simon Glass48a33802013-03-05 14:39:52 +00001047 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1048 * Transfer execution from Flash to RAM by calculating the address
1049 * of the in-RAM copy of board_init_r() and calling it
1050 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001051 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001052
1053 /* NOTREACHED - board_init_r() does not return */
1054 hang();
1055}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001056#endif /* CONFIG_X86 */