blob: faa096479b3d1c58035c37caec9be48582b29f9e [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;
Heinrich Schuchardt3c9fc232021-05-19 12:02:39 +0200293#elif defined(CONFIG_SANDBOX)
294 gd->mon_len = 0;
295#elif defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000296 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400297#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800298 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Tom Rini11232132022-04-06 09:21:25 -0400299#elif defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800300 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600301#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000302 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
303 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000304#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000305 return 0;
306}
307
Simon Glassb0edea32018-11-15 18:44:09 -0700308static int setup_spl_handoff(void)
309{
310#if CONFIG_IS_ENABLED(HANDOFF)
Simon Glass7f3b79a2022-01-12 19:26:17 -0700311 gd->spl_handoff = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF,
Simon Glassb0edea32018-11-15 18:44:09 -0700312 sizeof(struct spl_handoff));
313 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
314#endif
315
316 return 0;
317}
318
Simon Glass1938f4a2013-03-11 06:49:53 +0000319__weak int arch_cpu_init(void)
320{
321 return 0;
322}
323
Paul Burton8ebf5062016-09-21 11:18:46 +0100324__weak int mach_cpu_init(void)
325{
326 return 0;
327}
328
Simon Glass1938f4a2013-03-11 06:49:53 +0000329/* Get the top of usable RAM */
Pali Rohár049704f2022-09-09 17:32:40 +0200330__weak phys_size_t board_get_usable_ram_top(phys_size_t total_size)
Simon Glass1938f4a2013-03-11 06:49:53 +0000331{
Heinrich Schuchardt54280962020-05-09 21:21:14 +0200332#if defined(CONFIG_SYS_SDRAM_BASE) && CONFIG_SYS_SDRAM_BASE > 0
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700333 /*
Simon Glass4c509342015-04-28 20:25:03 -0600334 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700335 * 32-bit address space. If so, clip the usable RAM so it doesn't.
336 */
337 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
338 /*
339 * Will wrap back to top of 32-bit space when reservations
340 * are made.
341 */
342 return 0;
343#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000344 return gd->ram_top;
345}
346
Ovidiu Panaitd63fc992022-09-13 21:31:28 +0300347__weak int arch_setup_dest_addr(void)
348{
349 return 0;
350}
351
Simon Glass1938f4a2013-03-11 06:49:53 +0000352static int setup_dest_addr(void)
353{
354 debug("Monitor len: %08lX\n", gd->mon_len);
355 /*
356 * Ram is setup, size stored in gd !!
357 */
Pali Rohárd92aee52022-09-09 17:32:41 +0200358 debug("Ram size: %08llX\n", (unsigned long long)gd->ram_size);
Tom Rini24c904f2022-04-06 10:33:32 -0400359#if CONFIG_VAL(SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000360 /*
361 * Subtract specified amount of memory to hide so that it won't
362 * get "touched" at all by U-Boot. By fixing up gd->ram_size
363 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800364 * memory size and won't touch it either. This should work
365 * for arch/ppc and arch/powerpc. Only Linux board ports in
366 * arch/powerpc with bootwrapper support, that recalculate the
367 * memory size from the SDRAM controller setup will have to
368 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000369 */
York Sun36cc0de2017-03-06 09:02:28 -0800370 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
371#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000372#ifdef CONFIG_SYS_SDRAM_BASE
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530373 gd->ram_base = CONFIG_SYS_SDRAM_BASE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000374#endif
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530375 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000376 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000377 gd->relocaddr = gd->ram_top;
Pali Rohárd92aee52022-09-09 17:32:41 +0200378 debug("Ram top: %08llX\n", (unsigned long long)gd->ram_top);
Ovidiu Panaitd63fc992022-09-13 21:31:28 +0300379
380 return arch_setup_dest_addr();
Simon Glass1938f4a2013-03-11 06:49:53 +0000381}
382
Simon Glass1938f4a2013-03-11 06:49:53 +0000383#ifdef CONFIG_PRAM
384/* reserve protected RAM */
385static int reserve_pram(void)
386{
387 ulong reg;
388
Simon Glassbfebc8c2017-08-03 12:22:13 -0600389 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000390 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000391 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000392 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000393 return 0;
394}
395#endif /* CONFIG_PRAM */
396
397/* Round memory pointer down to next 4 kB limit */
398static int reserve_round_4k(void)
399{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000400 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000401 return 0;
402}
403
Ovidiu Panait79926e42020-03-29 20:57:41 +0300404__weak int arch_reserve_mmu(void)
405{
406 return 0;
407}
408
Simon Glass5a541942016-01-18 19:52:21 -0700409static int reserve_video(void)
410{
Simon Glassb86986c2022-10-18 07:46:31 -0600411 if (IS_ENABLED(CONFIG_VIDEO)) {
Simon Glassf9b7bd72022-10-16 15:57:41 -0600412 ulong addr;
413 int ret;
Simon Glass5a541942016-01-18 19:52:21 -0700414
Simon Glassf9b7bd72022-10-16 15:57:41 -0600415 addr = gd->relocaddr;
416 ret = video_reserve(&addr);
417 if (ret)
418 return ret;
419 debug("Reserving %luk for video at: %08lx\n",
420 ((unsigned long)gd->relocaddr - addr) >> 10, addr);
421 gd->relocaddr = addr;
422 }
Simon Glass8703ef32016-01-18 19:52:20 -0700423
424 return 0;
425}
Simon Glass8703ef32016-01-18 19:52:20 -0700426
Simon Glass71c52db2013-06-11 11:14:42 -0700427static int reserve_trace(void)
428{
429#ifdef CONFIG_TRACE
430 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
431 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
Heinrich Schuchardt7ea33572019-06-14 21:52:22 +0200432 debug("Reserving %luk for trace data at: %08lx\n",
433 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
Simon Glass71c52db2013-06-11 11:14:42 -0700434#endif
435
436 return 0;
437}
438
Simon Glass1938f4a2013-03-11 06:49:53 +0000439static int reserve_uboot(void)
440{
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300441 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
442 /*
443 * reserve memory for U-Boot code, data & bss
444 * round down to next 4 kB limit
445 */
446 gd->relocaddr -= gd->mon_len;
447 gd->relocaddr &= ~(4096 - 1);
448 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
449 /* round down to next 64 kB limit so that IVPR stays aligned */
450 gd->relocaddr &= ~(65536 - 1);
451 #endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000452
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300453 debug("Reserving %ldk for U-Boot at: %08lx\n",
454 gd->mon_len >> 10, gd->relocaddr);
455 }
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000456
457 gd->start_addr_sp = gd->relocaddr;
458
Simon Glass1938f4a2013-03-11 06:49:53 +0000459 return 0;
460}
461
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100462/*
463 * reserve after start_addr_sp the requested size and make the stack pointer
464 * 16-byte aligned, this alignment is needed for cast on the reserved memory
465 * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes
466 * = ARMv8 Instruction Set Overview: quad word, 16 bytes
467 */
468static unsigned long reserve_stack_aligned(size_t size)
469{
470 return ALIGN_DOWN(gd->start_addr_sp - size, 16);
471}
472
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700473#ifdef CONFIG_SYS_NONCACHED_MEMORY
474static int reserve_noncached(void)
475{
Stephen Warren5e0404f2019-08-27 11:54:31 -0600476 /*
477 * The value of gd->start_addr_sp must match the value of malloc_start
478 * calculated in boatrd_f.c:initr_malloc(), which is passed to
479 * board_r.c:mem_malloc_init() and then used by
480 * cache.c:noncached_init()
481 *
482 * These calculations must match the code in cache.c:noncached_init()
483 */
484 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
485 MMU_SECTION_SIZE;
486 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
487 MMU_SECTION_SIZE);
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700488 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
489 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
490
491 return 0;
492}
493#endif
494
Simon Glass1938f4a2013-03-11 06:49:53 +0000495/* reserve memory for malloc() area */
496static int reserve_malloc(void)
497{
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100498 gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN);
Simon Glass1938f4a2013-03-11 06:49:53 +0000499 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100500 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700501#ifdef CONFIG_SYS_NONCACHED_MEMORY
502 reserve_noncached();
503#endif
504
Simon Glass1938f4a2013-03-11 06:49:53 +0000505 return 0;
506}
507
508/* (permanently) allocate a Board Info struct */
509static int reserve_board(void)
510{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800511 if (!gd->bd) {
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900512 gd->start_addr_sp = reserve_stack_aligned(sizeof(struct bd_info));
513 gd->bd = (struct bd_info *)map_sysmem(gd->start_addr_sp,
514 sizeof(struct bd_info));
515 memset(gd->bd, '\0', sizeof(struct bd_info));
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800516 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900517 sizeof(struct bd_info), gd->start_addr_sp);
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800518 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000519 return 0;
520}
521
Simon Glass1938f4a2013-03-11 06:49:53 +0000522static int reserve_global_data(void)
523{
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100524 gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t));
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000525 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000526 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100527 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000528 return 0;
529}
530
531static int reserve_fdt(void)
532{
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200533 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
534 /*
535 * If the device tree is sitting immediately above our image
536 * then we must relocate it. If it is embedded in the data
537 * section, then it will be relocated with other data.
538 */
539 if (gd->fdt_blob) {
540 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob), 32);
Simon Glass1938f4a2013-03-11 06:49:53 +0000541
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200542 gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size);
543 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
544 debug("Reserving %lu Bytes for FDT at: %08lx\n",
545 gd->fdt_size, gd->start_addr_sp);
546 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000547 }
548
549 return 0;
550}
551
Simon Glass25e7dc62017-05-22 05:05:30 -0600552static int reserve_bootstage(void)
553{
554#ifdef CONFIG_BOOTSTAGE
555 int size = bootstage_get_size();
556
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100557 gd->start_addr_sp = reserve_stack_aligned(size);
Simon Glass25e7dc62017-05-22 05:05:30 -0600558 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
559 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
560 gd->start_addr_sp);
561#endif
562
563 return 0;
564}
565
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100566__weak int arch_reserve_stacks(void)
Andreas Bießmann68145d42015-02-06 23:06:45 +0100567{
568 return 0;
569}
570
Simon Glass1938f4a2013-03-11 06:49:53 +0000571static int reserve_stacks(void)
572{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100573 /* make stack pointer 16-byte aligned */
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100574 gd->start_addr_sp = reserve_stack_aligned(16);
Simon Glass1938f4a2013-03-11 06:49:53 +0000575
576 /*
Simon Glass4c509342015-04-28 20:25:03 -0600577 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100578 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000579 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100580 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000581}
582
Simon Glassf0293d32018-11-15 18:43:52 -0700583static int reserve_bloblist(void)
584{
585#ifdef CONFIG_BLOBLIST
Simon Glass4a08fae2020-09-27 18:46:18 -0600586 /* Align to a 4KB boundary for easier reading of addresses */
Simon Glass9fe06462021-01-13 20:29:43 -0700587 gd->start_addr_sp = ALIGN_DOWN(gd->start_addr_sp -
588 CONFIG_BLOBLIST_SIZE_RELOC, 0x1000);
589 gd->new_bloblist = map_sysmem(gd->start_addr_sp,
590 CONFIG_BLOBLIST_SIZE_RELOC);
Simon Glassf0293d32018-11-15 18:43:52 -0700591#endif
592
593 return 0;
594}
595
Simon Glass1938f4a2013-03-11 06:49:53 +0000596static int display_new_sp(void)
597{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000598 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000599
600 return 0;
601}
602
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300603__weak int arch_setup_bdinfo(void)
Ovidiu Panaitba743102020-07-24 14:12:14 +0300604{
605 return 0;
606}
607
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300608int setup_bdinfo(void)
609{
Ovidiu Panaita4aa1882020-07-24 14:12:16 +0300610 struct bd_info *bd = gd->bd;
611
Ovidiu Panait49122242020-07-24 14:12:17 +0300612 if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
613 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
614 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
615 }
616
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300617 return arch_setup_bdinfo();
618}
619
Simon Glass1938f4a2013-03-11 06:49:53 +0000620#ifdef CONFIG_POST
621static int init_post(void)
622{
623 post_bootmode_init();
624 post_run(NULL, POST_ROM | post_bootmode_get(0));
625
626 return 0;
627}
628#endif
629
Simon Glass1938f4a2013-03-11 06:49:53 +0000630static int reloc_fdt(void)
631{
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200632 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
633 if (gd->flags & GD_FLG_SKIP_RELOC)
634 return 0;
635 if (gd->new_fdt) {
636 memcpy(gd->new_fdt, gd->fdt_blob,
637 fdt_totalsize(gd->fdt_blob));
638 gd->fdt_blob = gd->new_fdt;
639 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000640 }
641
642 return 0;
643}
644
Simon Glass25e7dc62017-05-22 05:05:30 -0600645static int reloc_bootstage(void)
646{
647#ifdef CONFIG_BOOTSTAGE
648 if (gd->flags & GD_FLG_SKIP_RELOC)
649 return 0;
650 if (gd->new_bootstage) {
651 int size = bootstage_get_size();
652
653 debug("Copying bootstage from %p to %p, size %x\n",
654 gd->bootstage, gd->new_bootstage, size);
655 memcpy(gd->new_bootstage, gd->bootstage, size);
656 gd->bootstage = gd->new_bootstage;
Simon Glassac9cd482019-10-21 17:26:50 -0600657 bootstage_relocate();
Simon Glass25e7dc62017-05-22 05:05:30 -0600658 }
659#endif
660
661 return 0;
662}
663
Simon Glassf0293d32018-11-15 18:43:52 -0700664static int reloc_bloblist(void)
665{
666#ifdef CONFIG_BLOBLIST
Simon Glassd5b6e912021-11-03 21:09:20 -0600667 /*
668 * Relocate only if we are supposed to send it
669 */
670 if ((gd->flags & GD_FLG_SKIP_RELOC) &&
671 CONFIG_BLOBLIST_SIZE == CONFIG_BLOBLIST_SIZE_RELOC) {
672 debug("Not relocating bloblist\n");
Simon Glassf0293d32018-11-15 18:43:52 -0700673 return 0;
Simon Glassd5b6e912021-11-03 21:09:20 -0600674 }
Simon Glassf0293d32018-11-15 18:43:52 -0700675 if (gd->new_bloblist) {
676 int size = CONFIG_BLOBLIST_SIZE;
677
678 debug("Copying bloblist from %p to %p, size %x\n",
679 gd->bloblist, gd->new_bloblist, size);
Simon Glass9fe06462021-01-13 20:29:43 -0700680 bloblist_reloc(gd->new_bloblist, CONFIG_BLOBLIST_SIZE_RELOC,
681 gd->bloblist, size);
Simon Glassf0293d32018-11-15 18:43:52 -0700682 gd->bloblist = gd->new_bloblist;
683 }
684#endif
685
686 return 0;
687}
688
Simon Glass1938f4a2013-03-11 06:49:53 +0000689static int setup_reloc(void)
690{
Marek Vasut47d7d032021-11-13 18:34:04 +0100691 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
Simon Glass98463902022-10-20 18:22:39 -0600692#ifdef CONFIG_TEXT_BASE
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200693#ifdef ARM
Marek Vasut47d7d032021-11-13 18:34:04 +0100694 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
Michal Simekd58c0072022-06-24 14:15:01 +0200695#elif defined(CONFIG_MICROBLAZE)
696 gd->reloc_off = gd->relocaddr - (u32)_start;
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200697#elif defined(CONFIG_M68K)
Marek Vasut47d7d032021-11-13 18:34:04 +0100698 /*
699 * On all ColdFire arch cpu, monitor code starts always
700 * just after the default vector table location, so at 0x400
701 */
Simon Glass98463902022-10-20 18:22:39 -0600702 gd->reloc_off = gd->relocaddr - (CONFIG_TEXT_BASE + 0x400);
Simon Glass001d1882019-04-08 13:20:41 -0600703#elif !defined(CONFIG_SANDBOX)
Simon Glass98463902022-10-20 18:22:39 -0600704 gd->reloc_off = gd->relocaddr - CONFIG_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100705#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800706#endif
Marek Vasut47d7d032021-11-13 18:34:04 +0100707 }
708
Simon Glass1938f4a2013-03-11 06:49:53 +0000709 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
710
Marek Vasut47d7d032021-11-13 18:34:04 +0100711 if (gd->flags & GD_FLG_SKIP_RELOC) {
712 debug("Skipping relocation due to flag\n");
713 } else {
714 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
715 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
716 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
717 gd->start_addr_sp);
718 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000719
720 return 0;
721}
722
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100723#ifdef CONFIG_OF_BOARD_FIXUP
724static int fix_fdt(void)
725{
726 return board_fix_fdt((void *)gd->fdt_blob);
727}
728#endif
729
Simon Glass1938f4a2013-03-11 06:49:53 +0000730/* ARM calls relocate_code from its crt0.S */
Simon Glass530f27e2017-01-16 07:03:49 -0700731#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
732 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000733
734static int jump_to_copy(void)
735{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600736 if (gd->flags & GD_FLG_SKIP_RELOC)
737 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000738 /*
739 * x86 is special, but in a nice way. It uses a trampoline which
740 * enables the dcache if possible.
741 *
742 * For now, other archs use relocate_code(), which is implemented
743 * similarly for all archs. When we do generic relocation, hopefully
744 * we can make all archs enable the dcache prior to relocation.
745 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300746#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000747 /*
748 * SDRAM and console are now initialised. The final stack can now
749 * be setup in SDRAM. Code execution will continue in Flash, but
750 * with the stack in SDRAM and Global Data in temporary memory
751 * (CPU cache)
752 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600753 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000754 board_init_f_r_trampoline(gd->start_addr_sp);
755#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000756 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000757#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000758
759 return 0;
760}
761#endif
762
763/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glassb383d6c2017-05-22 05:05:25 -0600764static int initf_bootstage(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000765{
Simon Glassbaa7d342017-06-07 10:28:46 -0600766 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
767 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glassb383d6c2017-05-22 05:05:25 -0600768 int ret;
769
Simon Glass824bb1b2017-05-22 05:05:35 -0600770 ret = bootstage_init(!from_spl);
Simon Glassb383d6c2017-05-22 05:05:25 -0600771 if (ret)
772 return ret;
Simon Glass824bb1b2017-05-22 05:05:35 -0600773 if (from_spl) {
774 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
775 CONFIG_BOOTSTAGE_STASH_SIZE);
776
777 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
778 if (ret && ret != -ENOENT) {
779 debug("Failed to unstash bootstage: err=%d\n", ret);
780 return ret;
781 }
782 }
Simon Glassb383d6c2017-05-22 05:05:25 -0600783
Simon Glass1938f4a2013-03-11 06:49:53 +0000784 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
785
786 return 0;
787}
788
Simon Glassab7cd622014-07-23 06:55:04 -0600789static int initf_dm(void)
790{
Andy Yanf1896c42017-07-24 17:43:34 +0800791#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassab7cd622014-07-23 06:55:04 -0600792 int ret;
793
Simon Glassb67eefd2020-05-10 11:39:59 -0600794 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_F, "dm_f");
Simon Glassab7cd622014-07-23 06:55:04 -0600795 ret = dm_init_and_scan(true);
Simon Glassb67eefd2020-05-10 11:39:59 -0600796 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F);
Simon Glassab7cd622014-07-23 06:55:04 -0600797 if (ret)
798 return ret;
Ovidiu Panait4b9a1212020-11-28 10:43:05 +0200799
800 if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
801 ret = dm_timer_init();
802 if (ret)
803 return ret;
804 }
Simon Glass1057e6c2016-02-24 09:14:50 -0700805#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600806
807 return 0;
808}
809
Simon Glass146251f2015-01-19 22:16:12 -0700810/* Architecture-specific memory reservation */
811__weak int reserve_arch(void)
812{
813 return 0;
814}
815
Ovidiu Panait016e4ae2020-01-22 22:28:25 +0200816__weak int checkcpu(void)
817{
818 return 0;
819}
820
Ovidiu Panaitfbf9c152020-02-05 08:54:42 +0200821__weak int clear_bss(void)
822{
823 return 0;
824}
825
Simon Glass42fdceb2022-03-04 08:43:04 -0700826static int misc_init_f(void)
827{
828 return event_notify_null(EVT_MISC_INIT_F);
829}
830
Simon Glass4acff452017-01-16 07:03:50 -0700831static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000832 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700833#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700834 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700835#endif
Heinrich Schuchardt7ef8e9b2019-06-02 00:53:24 +0200836#ifdef CONFIG_TRACE_EARLY
Simon Glass71c52db2013-06-11 11:14:42 -0700837 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800838#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700839 initf_malloc,
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700840 log_init,
Simon Glass5ac44a52017-05-22 05:05:31 -0600841 initf_bootstage, /* uses its own timer, so does not need DM */
Stefan Roese70545642022-09-02 13:57:50 +0200842 cyclic_init,
Simon Glass5a421902022-03-04 08:43:02 -0700843 event_init,
Simon Glassf0293d32018-11-15 18:43:52 -0700844#ifdef CONFIG_BLOBLIST
845 bloblist_init,
846#endif
Simon Glassb0edea32018-11-15 18:44:09 -0700847 setup_spl_handoff,
Ovidiu Panait8e8d45e2020-11-28 10:43:04 +0200848#if defined(CONFIG_CONSOLE_RECORD_INIT_F)
849 console_record_init,
850#endif
Simon Glass671549e2017-03-28 10:27:18 -0600851#if defined(CONFIG_HAVE_FSP)
852 arch_fsp_init,
Bin Menga52a068e2015-08-20 06:40:18 -0700853#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000854 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100855 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600856 initf_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000857#if defined(CONFIG_BOARD_EARLY_INIT_F)
858 board_early_init_f,
859#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600860#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600861 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000862 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600863#endif
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200864#if !defined(CONFIG_M68K)
Simon Glass1938f4a2013-03-11 06:49:53 +0000865 timer_init, /* initialize timer */
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200866#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000867#if defined(CONFIG_BOARD_POSTCLK_INIT)
868 board_postclk_init,
869#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000870 env_init, /* initialize environment */
871 init_baud_rate, /* initialze baudrate settings */
872 serial_init, /* serial communications setup */
873 console_init_f, /* stage 1 init of console */
874 display_options, /* say that we are here */
875 display_text_info, /* show debugging info if required */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000876 checkcpu,
Mario Six23471ae2018-08-06 10:23:34 +0200877#if defined(CONFIG_SYSRESET)
878 print_resetinfo,
879#endif
Simon Glasscc664002017-01-23 13:31:25 -0700880#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000881 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700882#endif
Cooper Jr., Franklinaf9e6ad2017-06-16 17:25:12 -0500883#if defined(CONFIG_DTB_RESELECT)
884 embedded_dtb_select,
885#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000886#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900887 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000888#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000889 INIT_FUNC_WATCHDOG_INIT
Simon Glasse4fef6c2013-03-11 14:30:42 +0000890 misc_init_f,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000891 INIT_FUNC_WATCHDOG_RESET
Tom Rini55dabcc2021-08-18 23:12:24 -0400892#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000893 init_func_i2c,
894#endif
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530895#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
896 init_func_vid,
897#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000898 announce_dram_init,
Simon Glass1938f4a2013-03-11 06:49:53 +0000899 dram_init, /* configure available RAM banks */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000900#ifdef CONFIG_POST
901 post_init_f,
902#endif
903 INIT_FUNC_WATCHDOG_RESET
904#if defined(CONFIG_SYS_DRAM_TEST)
905 testdram,
906#endif /* CONFIG_SYS_DRAM_TEST */
907 INIT_FUNC_WATCHDOG_RESET
908
Simon Glass1938f4a2013-03-11 06:49:53 +0000909#ifdef CONFIG_POST
910 init_post,
911#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000912 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000913 /*
914 * Now that we have DRAM mapped and working, we can
915 * relocate the code and continue running from DRAM.
916 *
917 * Reserve memory at end of RAM for (top down in that order):
918 * - area that won't get touched by U-Boot and Linux (optional)
919 * - kernel log buffer
920 * - protected RAM
921 * - LCD framebuffer
922 * - monitor code
923 * - board info struct
924 */
925 setup_dest_addr,
Pragnesh Patel313981c2020-08-13 10:12:26 +0530926#ifdef CONFIG_OF_BOARD_FIXUP
927 fix_fdt,
928#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000929#ifdef CONFIG_PRAM
930 reserve_pram,
931#endif
932 reserve_round_4k,
Ovidiu Panait79926e42020-03-29 20:57:41 +0300933 arch_reserve_mmu,
Simon Glass5a541942016-01-18 19:52:21 -0700934 reserve_video,
Simon Glass8703ef32016-01-18 19:52:20 -0700935 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000936 reserve_uboot,
937 reserve_malloc,
938 reserve_board,
Simon Glass1938f4a2013-03-11 06:49:53 +0000939 reserve_global_data,
940 reserve_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600941 reserve_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700942 reserve_bloblist,
Simon Glass146251f2015-01-19 22:16:12 -0700943 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000944 reserve_stacks,
Simon Glass76b00ac2017-03-31 08:40:32 -0600945 dram_init_banksize,
Simon Glass1938f4a2013-03-11 06:49:53 +0000946 show_dram_config,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000947 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panait15328852020-07-24 14:12:20 +0300948 setup_bdinfo,
Simon Glass1938f4a2013-03-11 06:49:53 +0000949 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000950 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000951 reloc_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600952 reloc_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700953 reloc_bloblist,
Simon Glass1938f4a2013-03-11 06:49:53 +0000954 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300955#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700956 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700957 do_elf_reloc_fixups,
958#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300959 clear_bss,
Simon Glass530f27e2017-01-16 07:03:49 -0700960#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
961 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000962 jump_to_copy,
963#endif
964 NULL,
965};
966
967void board_init_f(ulong boot_flags)
968{
Simon Glass1938f4a2013-03-11 06:49:53 +0000969 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +0400970 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000971
972 if (initcall_run_list(init_sequence_f))
973 hang();
974
Ben Stoltz9b217492015-07-31 09:31:37 -0600975#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkin264d2982015-12-16 19:24:10 +0300976 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
977 !defined(CONFIG_ARC)
Simon Glass1938f4a2013-03-11 06:49:53 +0000978 /* NOTREACHED - jump_to_copy() does not return */
979 hang();
980#endif
981}
982
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300983#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000984/*
985 * For now this code is only used on x86.
986 *
987 * init_sequence_f_r is the list of init functions which are run when
988 * U-Boot is executing from Flash with a semi-limited 'C' environment.
989 * The following limitations must be considered when implementing an
990 * '_f_r' function:
991 * - 'static' variables are read-only
992 * - Global Data (gd->xxx) is read/write
993 *
994 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
995 * supported). It _should_, if possible, copy global data to RAM and
996 * initialise the CPU caches (to speed up the relocation process)
997 *
998 * NOTE: At present only x86 uses this route, but it is intended that
999 * all archs will move to this when generic relocation is implemented.
1000 */
Simon Glass4acff452017-01-16 07:03:50 -07001001static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -07001002#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +00001003 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -07001004#endif
Simon Glass48a33802013-03-05 14:39:52 +00001005
1006 NULL,
1007};
1008
1009void board_init_f_r(void)
1010{
1011 if (initcall_run_list(init_sequence_f_r))
1012 hang();
1013
1014 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -07001015 * The pre-relocation drivers may be using memory that has now gone
1016 * away. Mark serial as unavailable - this will fall back to the debug
1017 * UART if available.
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001018 *
1019 * Do the same with log drivers since the memory may not be available.
Simon Glasse4d6ab02016-03-11 22:06:51 -07001020 */
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001021 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glass5ee94b42017-09-05 19:49:45 -06001022#ifdef CONFIG_TIMER
1023 gd->timer = NULL;
1024#endif
Simon Glasse4d6ab02016-03-11 22:06:51 -07001025
1026 /*
Simon Glass48a33802013-03-05 14:39:52 +00001027 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1028 * Transfer execution from Flash to RAM by calculating the address
1029 * of the in-RAM copy of board_init_r() and calling it
1030 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001031 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001032
1033 /* NOTREACHED - board_init_r() does not return */
1034 hang();
1035}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001036#endif /* CONFIG_X86 */