blob: 5f1711181c7b8f444031089ed0c7eb4b3e50eb6d [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 Glass3c1ecde2019-08-01 09:46:38 -060031#include <lcd.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060032#include <log.h>
Simon Glassfb5cf7f2015-02-27 22:06:36 -070033#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050034#include <mapmem.h>
Simon Glassa733b062013-04-26 02:53:43 +000035#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000036#include <post.h>
Simon Glasse47b2d62017-03-31 08:40:38 -060037#include <relocate.h>
Simon Glassb03e0512019-11-14 12:57:24 -070038#include <serial.h>
Simon Glassb0edea32018-11-15 18:44:09 -070039#include <spl.h>
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020040#include <status_led.h>
Mario Six23471ae2018-08-06 10:23:34 +020041#include <sysreset.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070042#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070043#include <trace.h>
Simon Glass5a541942016-01-18 19:52:21 -070044#include <video.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000045#include <watchdog.h>
Simon Glass90526e92020-05-10 11:39:56 -060046#include <asm/cache.h>
Simon Glass401d1c42020-10-30 21:38:53 -060047#include <asm/global_data.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000048#include <asm/io.h>
49#include <asm/sections.h>
Simon Glassab7cd622014-07-23 06:55:04 -060050#include <dm/root.h>
Simon Glass056285f2017-03-31 08:40:35 -060051#include <linux/errno.h>
Pali Rohár236f7392022-09-18 13:23:27 +020052#include <linux/log2.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000053
Simon Glass1938f4a2013-03-11 06:49:53 +000054DECLARE_GLOBAL_DATA_PTR;
Simon Glass1938f4a2013-03-11 06:49:53 +000055
56/*
Simon Glass4c509342015-04-28 20:25:03 -060057 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000058 * refactored to a single function, something like:
59 *
60 * void led_set_state(enum led_colour_t colour, int on);
61 */
62/************************************************************************
63 * Coloured LED functionality
64 ************************************************************************
65 * May be supplied by boards if desired
66 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020067__weak void coloured_LED_init(void) {}
68__weak void red_led_on(void) {}
69__weak void red_led_off(void) {}
70__weak void green_led_on(void) {}
71__weak void green_led_off(void) {}
72__weak void yellow_led_on(void) {}
73__weak void yellow_led_off(void) {}
74__weak void blue_led_on(void) {}
75__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000076
77/*
78 * Why is gd allocated a register? Prior to reloc it might be better to
79 * just pass it around to each function in this file?
80 *
81 * After reloc one could argue that it is hardly used and doesn't need
82 * to be in a register. Or if it is it should perhaps hold pointers to all
83 * global data for all modules, so that post-reloc we can avoid the massive
84 * literal pool we get on ARM. Or perhaps just encourage each module to use
85 * a structure...
86 */
87
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080088#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +000089static int init_func_watchdog_init(void)
90{
Tom Riniea3310e2017-03-14 11:08:10 -040091# if defined(CONFIG_HW_WATCHDOG) && \
92 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Prasanthi Chellakumar1473f6a2018-10-09 11:46:40 -070093 defined(CONFIG_SH) || \
Anatolij Gustschin46d7a3b2016-06-13 14:24:23 +020094 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roese14a380a2015-03-10 08:04:36 +010095 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080096 hw_watchdog_init();
Simon Glasse4fef6c2013-03-11 14:30:42 +000097 puts(" Watchdog enabled\n");
Anatolij Gustschinba169d92016-06-13 14:24:24 +020098# endif
Stefan Roese29caf932022-09-02 14:10:46 +020099 schedule();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000100
101 return 0;
102}
103
104int init_func_watchdog_reset(void)
105{
Stefan Roese29caf932022-09-02 14:10:46 +0200106 schedule();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000107
108 return 0;
109}
110#endif /* CONFIG_WATCHDOG */
111
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200112__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000113{
114 /* please define platform specific board_add_ram_info() */
115}
116
Simon Glass1938f4a2013-03-11 06:49:53 +0000117static int init_baud_rate(void)
118{
Simon Glassbfebc8c2017-08-03 12:22:13 -0600119 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glass1938f4a2013-03-11 06:49:53 +0000120 return 0;
121}
122
123static int display_text_info(void)
124{
Ben Stoltz9b217492015-07-31 09:31:37 -0600125#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100126 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000127
Simon Glass632efa72013-03-11 07:06:48 +0000128 bss_start = (ulong)&__bss_start;
129 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100130
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800131#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100132 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800133#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100134 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800135#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100136
137 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six16ef1472018-01-15 11:10:02 +0100138 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000139#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000140
Simon Glass1938f4a2013-03-11 06:49:53 +0000141 return 0;
142}
143
Mario Six23471ae2018-08-06 10:23:34 +0200144#ifdef CONFIG_SYSRESET
145static int print_resetinfo(void)
146{
147 struct udevice *dev;
148 char status[256];
149 int ret;
150
151 ret = uclass_first_device_err(UCLASS_SYSRESET, &dev);
152 if (ret) {
153 debug("%s: No sysreset device found (error: %d)\n",
154 __func__, ret);
155 /* Not all boards have sysreset drivers available during early
156 * boot, so don't fail if one can't be found.
157 */
158 return 0;
159 }
160
161 if (!sysreset_get_status(dev, status, sizeof(status)))
162 printf("%s", status);
163
164 return 0;
165}
166#endif
167
Mario Six5d6c61a2018-08-06 10:23:41 +0200168#if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
169static int print_cpuinfo(void)
170{
171 struct udevice *dev;
172 char desc[512];
173 int ret;
174
Ye Lif5b66af2020-05-03 21:58:50 +0800175 dev = cpu_get_current_dev();
176 if (!dev) {
177 debug("%s: Could not get CPU device\n",
178 __func__);
179 return -ENODEV;
Mario Six5d6c61a2018-08-06 10:23:41 +0200180 }
181
182 ret = cpu_get_desc(dev, desc, sizeof(desc));
183 if (ret) {
184 debug("%s: Could not get CPU description (err = %d)\n",
185 dev->name, ret);
186 return ret;
187 }
188
Bin Mengecfe6632018-10-10 22:06:55 -0700189 printf("CPU: %s\n", desc);
Mario Six5d6c61a2018-08-06 10:23:41 +0200190
191 return 0;
192}
193#endif
194
Simon Glass1938f4a2013-03-11 06:49:53 +0000195static int announce_dram_init(void)
196{
197 puts("DRAM: ");
198 return 0;
199}
200
Pali Rohár236f7392022-09-18 13:23:27 +0200201/*
202 * From input size calculate its nearest rounded unit scale (multiply of 2^10)
203 * and value in calculated unit scale multiplied by 10 (as fractional fixed
204 * point number with one decimal digit), which is human natural format,
205 * same what uses print_size() function for displaying. Mathematically it is:
206 * round_nearest(val * 2^scale) = size * 10; where: 10 <= val < 10240.
207 *
208 * For example for size=87654321 we calculate scale=20 and val=836 which means
209 * that input has natural human format 83.6 M (mega = 2^20).
210 */
211#define compute_size_scale_val(size, scale, val) do { \
212 scale = ilog2(size) / 10 * 10; \
213 val = (10 * size + ((1ULL << scale) >> 1)) >> scale; \
214 if (val == 10240) { val = 10; scale += 10; } \
215} while (0)
216
217/*
218 * Check if the sizes in their natural units written in decimal format with
219 * one fraction number are same.
220 */
221static int sizes_near(unsigned long long size1, unsigned long long size2)
222{
223 unsigned int size1_scale, size1_val, size2_scale, size2_val;
224
225 compute_size_scale_val(size1, size1_scale, size1_val);
226 compute_size_scale_val(size2, size2_scale, size2_val);
227
228 return size1_scale == size2_scale && size1_val == size2_val;
229}
230
Simon Glass1938f4a2013-03-11 06:49:53 +0000231static int show_dram_config(void)
232{
York Sunfa39ffe2014-05-02 17:28:05 -0700233 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000234 int i;
235
236 debug("\nRAM Configuration:\n");
237 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
238 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700239 debug("Bank #%d: %llx ", i,
240 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000241#ifdef DEBUG
242 print_size(gd->bd->bi_dram[i].size, "\n");
243#endif
244 }
245 debug("\nDRAM: ");
Simon Glass1938f4a2013-03-11 06:49:53 +0000246
Pali Rohár236f7392022-09-18 13:23:27 +0200247 print_size(gd->ram_size, "");
248 if (!sizes_near(gd->ram_size, size)) {
249 printf(" (effective ");
250 print_size(size, ")");
251 }
Simon Glasse4fef6c2013-03-11 14:30:42 +0000252 board_add_ram_info(0);
253 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000254
255 return 0;
256}
257
Simon Glass76b00ac2017-03-31 08:40:32 -0600258__weak int dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000259{
Stefan Roesef120aa72020-08-12 13:02:39 +0200260 gd->bd->bi_dram[0].start = gd->ram_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000261 gd->bd->bi_dram[0].size = get_effective_memsize();
Simon Glass76b00ac2017-03-31 08:40:32 -0600262
263 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000264}
265
Tom Rini55dabcc2021-08-18 23:12:24 -0400266#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000267static int init_func_i2c(void)
268{
269 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200270 i2c_init_all();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000271 puts("ready\n");
272 return 0;
273}
274#endif
275
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530276#if defined(CONFIG_VID)
277__weak int init_func_vid(void)
278{
279 return 0;
280}
281#endif
282
Simon Glass1938f4a2013-03-11 06:49:53 +0000283static int setup_mon_len(void)
284{
Michal Simeke945f6d2014-05-08 16:08:44 +0200285#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100286 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Heinrich Schuchardt3c9fc232021-05-19 12:02:39 +0200287#elif defined(CONFIG_SANDBOX)
288 gd->mon_len = 0;
289#elif defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000290 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400291#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800292 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Tom Rini11232132022-04-06 09:21:25 -0400293#elif defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800294 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600295#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000296 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
297 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000298#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000299 return 0;
300}
301
Simon Glassb0edea32018-11-15 18:44:09 -0700302static int setup_spl_handoff(void)
303{
304#if CONFIG_IS_ENABLED(HANDOFF)
Simon Glass7f3b79a2022-01-12 19:26:17 -0700305 gd->spl_handoff = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF,
Simon Glassb0edea32018-11-15 18:44:09 -0700306 sizeof(struct spl_handoff));
307 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
308#endif
309
310 return 0;
311}
312
Simon Glass1938f4a2013-03-11 06:49:53 +0000313__weak int arch_cpu_init(void)
314{
315 return 0;
316}
317
Paul Burton8ebf5062016-09-21 11:18:46 +0100318__weak int mach_cpu_init(void)
319{
320 return 0;
321}
322
Simon Glass1938f4a2013-03-11 06:49:53 +0000323/* Get the top of usable RAM */
Pali Rohár049704f2022-09-09 17:32:40 +0200324__weak phys_size_t board_get_usable_ram_top(phys_size_t total_size)
Simon Glass1938f4a2013-03-11 06:49:53 +0000325{
Heinrich Schuchardt54280962020-05-09 21:21:14 +0200326#if defined(CONFIG_SYS_SDRAM_BASE) && CONFIG_SYS_SDRAM_BASE > 0
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700327 /*
Simon Glass4c509342015-04-28 20:25:03 -0600328 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700329 * 32-bit address space. If so, clip the usable RAM so it doesn't.
330 */
331 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
332 /*
333 * Will wrap back to top of 32-bit space when reservations
334 * are made.
335 */
336 return 0;
337#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000338 return gd->ram_top;
339}
340
Ovidiu Panaitd63fc992022-09-13 21:31:28 +0300341__weak int arch_setup_dest_addr(void)
342{
343 return 0;
344}
345
Simon Glass1938f4a2013-03-11 06:49:53 +0000346static int setup_dest_addr(void)
347{
348 debug("Monitor len: %08lX\n", gd->mon_len);
349 /*
350 * Ram is setup, size stored in gd !!
351 */
Pali Rohárd92aee52022-09-09 17:32:41 +0200352 debug("Ram size: %08llX\n", (unsigned long long)gd->ram_size);
Tom Rini24c904f2022-04-06 10:33:32 -0400353#if CONFIG_VAL(SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000354 /*
355 * Subtract specified amount of memory to hide so that it won't
356 * get "touched" at all by U-Boot. By fixing up gd->ram_size
357 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800358 * memory size and won't touch it either. This should work
359 * for arch/ppc and arch/powerpc. Only Linux board ports in
360 * arch/powerpc with bootwrapper support, that recalculate the
361 * memory size from the SDRAM controller setup will have to
362 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000363 */
York Sun36cc0de2017-03-06 09:02:28 -0800364 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
365#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000366#ifdef CONFIG_SYS_SDRAM_BASE
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530367 gd->ram_base = CONFIG_SYS_SDRAM_BASE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000368#endif
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530369 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000370 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000371 gd->relocaddr = gd->ram_top;
Pali Rohárd92aee52022-09-09 17:32:41 +0200372 debug("Ram top: %08llX\n", (unsigned long long)gd->ram_top);
Ovidiu Panaitd63fc992022-09-13 21:31:28 +0300373
374 return arch_setup_dest_addr();
Simon Glass1938f4a2013-03-11 06:49:53 +0000375}
376
Simon Glass1938f4a2013-03-11 06:49:53 +0000377#ifdef CONFIG_PRAM
378/* reserve protected RAM */
379static int reserve_pram(void)
380{
381 ulong reg;
382
Simon Glassbfebc8c2017-08-03 12:22:13 -0600383 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000384 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000385 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000386 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000387 return 0;
388}
389#endif /* CONFIG_PRAM */
390
391/* Round memory pointer down to next 4 kB limit */
392static int reserve_round_4k(void)
393{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000394 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000395 return 0;
396}
397
Ovidiu Panait79926e42020-03-29 20:57:41 +0300398__weak int arch_reserve_mmu(void)
399{
400 return 0;
401}
402
Simon Glass5a541942016-01-18 19:52:21 -0700403static int reserve_video(void)
404{
Simon Glass0f079eb2017-03-31 08:40:30 -0600405#ifdef CONFIG_DM_VIDEO
Simon Glass5a541942016-01-18 19:52:21 -0700406 ulong addr;
407 int ret;
408
409 addr = gd->relocaddr;
410 ret = video_reserve(&addr);
411 if (ret)
412 return ret;
Simon Glass5630d2f2020-09-27 18:46:22 -0600413 debug("Reserving %luk for video at: %08lx\n",
Patrick Delaunay83064c22021-04-09 18:02:06 +0200414 ((unsigned long)gd->relocaddr - addr) >> 10, addr);
Simon Glass5a541942016-01-18 19:52:21 -0700415 gd->relocaddr = addr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600416#elif defined(CONFIG_LCD)
Simon Glass1938f4a2013-03-11 06:49:53 +0000417 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000418 gd->relocaddr = lcd_setmem(gd->relocaddr);
419 gd->fb_base = gd->relocaddr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600420#endif
Simon Glass8703ef32016-01-18 19:52:20 -0700421
422 return 0;
423}
Simon Glass8703ef32016-01-18 19:52:20 -0700424
Simon Glass71c52db2013-06-11 11:14:42 -0700425static int reserve_trace(void)
426{
427#ifdef CONFIG_TRACE
428 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
429 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
Heinrich Schuchardt7ea33572019-06-14 21:52:22 +0200430 debug("Reserving %luk for trace data at: %08lx\n",
431 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
Simon Glass71c52db2013-06-11 11:14:42 -0700432#endif
433
434 return 0;
435}
436
Simon Glass1938f4a2013-03-11 06:49:53 +0000437static int reserve_uboot(void)
438{
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300439 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
440 /*
441 * reserve memory for U-Boot code, data & bss
442 * round down to next 4 kB limit
443 */
444 gd->relocaddr -= gd->mon_len;
445 gd->relocaddr &= ~(4096 - 1);
446 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
447 /* round down to next 64 kB limit so that IVPR stays aligned */
448 gd->relocaddr &= ~(65536 - 1);
449 #endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000450
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300451 debug("Reserving %ldk for U-Boot at: %08lx\n",
452 gd->mon_len >> 10, gd->relocaddr);
453 }
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000454
455 gd->start_addr_sp = gd->relocaddr;
456
Simon Glass1938f4a2013-03-11 06:49:53 +0000457 return 0;
458}
459
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100460/*
461 * reserve after start_addr_sp the requested size and make the stack pointer
462 * 16-byte aligned, this alignment is needed for cast on the reserved memory
463 * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes
464 * = ARMv8 Instruction Set Overview: quad word, 16 bytes
465 */
466static unsigned long reserve_stack_aligned(size_t size)
467{
468 return ALIGN_DOWN(gd->start_addr_sp - size, 16);
469}
470
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700471#ifdef CONFIG_SYS_NONCACHED_MEMORY
472static int reserve_noncached(void)
473{
Stephen Warren5e0404f2019-08-27 11:54:31 -0600474 /*
475 * The value of gd->start_addr_sp must match the value of malloc_start
476 * calculated in boatrd_f.c:initr_malloc(), which is passed to
477 * board_r.c:mem_malloc_init() and then used by
478 * cache.c:noncached_init()
479 *
480 * These calculations must match the code in cache.c:noncached_init()
481 */
482 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
483 MMU_SECTION_SIZE;
484 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
485 MMU_SECTION_SIZE);
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700486 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
487 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
488
489 return 0;
490}
491#endif
492
Simon Glass1938f4a2013-03-11 06:49:53 +0000493/* reserve memory for malloc() area */
494static int reserve_malloc(void)
495{
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100496 gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN);
Simon Glass1938f4a2013-03-11 06:49:53 +0000497 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100498 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700499#ifdef CONFIG_SYS_NONCACHED_MEMORY
500 reserve_noncached();
501#endif
502
Simon Glass1938f4a2013-03-11 06:49:53 +0000503 return 0;
504}
505
506/* (permanently) allocate a Board Info struct */
507static int reserve_board(void)
508{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800509 if (!gd->bd) {
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900510 gd->start_addr_sp = reserve_stack_aligned(sizeof(struct bd_info));
511 gd->bd = (struct bd_info *)map_sysmem(gd->start_addr_sp,
512 sizeof(struct bd_info));
513 memset(gd->bd, '\0', sizeof(struct bd_info));
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800514 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900515 sizeof(struct bd_info), gd->start_addr_sp);
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800516 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000517 return 0;
518}
519
Simon Glass1938f4a2013-03-11 06:49:53 +0000520static int reserve_global_data(void)
521{
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100522 gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t));
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000523 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000524 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100525 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000526 return 0;
527}
528
529static int reserve_fdt(void)
530{
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200531 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
532 /*
533 * If the device tree is sitting immediately above our image
534 * then we must relocate it. If it is embedded in the data
535 * section, then it will be relocated with other data.
536 */
537 if (gd->fdt_blob) {
538 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob), 32);
Simon Glass1938f4a2013-03-11 06:49:53 +0000539
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200540 gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size);
541 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
542 debug("Reserving %lu Bytes for FDT at: %08lx\n",
543 gd->fdt_size, gd->start_addr_sp);
544 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000545 }
546
547 return 0;
548}
549
Simon Glass25e7dc62017-05-22 05:05:30 -0600550static int reserve_bootstage(void)
551{
552#ifdef CONFIG_BOOTSTAGE
553 int size = bootstage_get_size();
554
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100555 gd->start_addr_sp = reserve_stack_aligned(size);
Simon Glass25e7dc62017-05-22 05:05:30 -0600556 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
557 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
558 gd->start_addr_sp);
559#endif
560
561 return 0;
562}
563
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100564__weak int arch_reserve_stacks(void)
Andreas Bießmann68145d42015-02-06 23:06:45 +0100565{
566 return 0;
567}
568
Simon Glass1938f4a2013-03-11 06:49:53 +0000569static int reserve_stacks(void)
570{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100571 /* make stack pointer 16-byte aligned */
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100572 gd->start_addr_sp = reserve_stack_aligned(16);
Simon Glass1938f4a2013-03-11 06:49:53 +0000573
574 /*
Simon Glass4c509342015-04-28 20:25:03 -0600575 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100576 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000577 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100578 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000579}
580
Simon Glassf0293d32018-11-15 18:43:52 -0700581static int reserve_bloblist(void)
582{
583#ifdef CONFIG_BLOBLIST
Simon Glass4a08fae2020-09-27 18:46:18 -0600584 /* Align to a 4KB boundary for easier reading of addresses */
Simon Glass9fe06462021-01-13 20:29:43 -0700585 gd->start_addr_sp = ALIGN_DOWN(gd->start_addr_sp -
586 CONFIG_BLOBLIST_SIZE_RELOC, 0x1000);
587 gd->new_bloblist = map_sysmem(gd->start_addr_sp,
588 CONFIG_BLOBLIST_SIZE_RELOC);
Simon Glassf0293d32018-11-15 18:43:52 -0700589#endif
590
591 return 0;
592}
593
Simon Glass1938f4a2013-03-11 06:49:53 +0000594static int display_new_sp(void)
595{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000596 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000597
598 return 0;
599}
600
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300601__weak int arch_setup_bdinfo(void)
Ovidiu Panaitba743102020-07-24 14:12:14 +0300602{
603 return 0;
604}
605
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300606int setup_bdinfo(void)
607{
Ovidiu Panaita4aa1882020-07-24 14:12:16 +0300608 struct bd_info *bd = gd->bd;
609
Ovidiu Panait49122242020-07-24 14:12:17 +0300610 if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
611 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
612 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
613 }
614
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300615 return arch_setup_bdinfo();
616}
617
Simon Glass1938f4a2013-03-11 06:49:53 +0000618#ifdef CONFIG_POST
619static int init_post(void)
620{
621 post_bootmode_init();
622 post_run(NULL, POST_ROM | post_bootmode_get(0));
623
624 return 0;
625}
626#endif
627
Simon Glass1938f4a2013-03-11 06:49:53 +0000628static int reloc_fdt(void)
629{
Ovidiu Panait19b18da2020-11-28 10:43:07 +0200630 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
631 if (gd->flags & GD_FLG_SKIP_RELOC)
632 return 0;
633 if (gd->new_fdt) {
634 memcpy(gd->new_fdt, gd->fdt_blob,
635 fdt_totalsize(gd->fdt_blob));
636 gd->fdt_blob = gd->new_fdt;
637 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000638 }
639
640 return 0;
641}
642
Simon Glass25e7dc62017-05-22 05:05:30 -0600643static int reloc_bootstage(void)
644{
645#ifdef CONFIG_BOOTSTAGE
646 if (gd->flags & GD_FLG_SKIP_RELOC)
647 return 0;
648 if (gd->new_bootstage) {
649 int size = bootstage_get_size();
650
651 debug("Copying bootstage from %p to %p, size %x\n",
652 gd->bootstage, gd->new_bootstage, size);
653 memcpy(gd->new_bootstage, gd->bootstage, size);
654 gd->bootstage = gd->new_bootstage;
Simon Glassac9cd482019-10-21 17:26:50 -0600655 bootstage_relocate();
Simon Glass25e7dc62017-05-22 05:05:30 -0600656 }
657#endif
658
659 return 0;
660}
661
Simon Glassf0293d32018-11-15 18:43:52 -0700662static int reloc_bloblist(void)
663{
664#ifdef CONFIG_BLOBLIST
Simon Glassd5b6e912021-11-03 21:09:20 -0600665 /*
666 * Relocate only if we are supposed to send it
667 */
668 if ((gd->flags & GD_FLG_SKIP_RELOC) &&
669 CONFIG_BLOBLIST_SIZE == CONFIG_BLOBLIST_SIZE_RELOC) {
670 debug("Not relocating bloblist\n");
Simon Glassf0293d32018-11-15 18:43:52 -0700671 return 0;
Simon Glassd5b6e912021-11-03 21:09:20 -0600672 }
Simon Glassf0293d32018-11-15 18:43:52 -0700673 if (gd->new_bloblist) {
674 int size = CONFIG_BLOBLIST_SIZE;
675
676 debug("Copying bloblist from %p to %p, size %x\n",
677 gd->bloblist, gd->new_bloblist, size);
Simon Glass9fe06462021-01-13 20:29:43 -0700678 bloblist_reloc(gd->new_bloblist, CONFIG_BLOBLIST_SIZE_RELOC,
679 gd->bloblist, size);
Simon Glassf0293d32018-11-15 18:43:52 -0700680 gd->bloblist = gd->new_bloblist;
681 }
682#endif
683
684 return 0;
685}
686
Simon Glass1938f4a2013-03-11 06:49:53 +0000687static int setup_reloc(void)
688{
Marek Vasut47d7d032021-11-13 18:34:04 +0100689 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800690#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200691#ifdef ARM
Marek Vasut47d7d032021-11-13 18:34:04 +0100692 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
Michal Simekd58c0072022-06-24 14:15:01 +0200693#elif defined(CONFIG_MICROBLAZE)
694 gd->reloc_off = gd->relocaddr - (u32)_start;
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200695#elif defined(CONFIG_M68K)
Marek Vasut47d7d032021-11-13 18:34:04 +0100696 /*
697 * On all ColdFire arch cpu, monitor code starts always
698 * just after the default vector table location, so at 0x400
699 */
700 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Simon Glass001d1882019-04-08 13:20:41 -0600701#elif !defined(CONFIG_SANDBOX)
Marek Vasut47d7d032021-11-13 18:34:04 +0100702 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100703#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800704#endif
Marek Vasut47d7d032021-11-13 18:34:04 +0100705 }
706
Simon Glass1938f4a2013-03-11 06:49:53 +0000707 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
708
Marek Vasut47d7d032021-11-13 18:34:04 +0100709 if (gd->flags & GD_FLG_SKIP_RELOC) {
710 debug("Skipping relocation due to flag\n");
711 } else {
712 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
713 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
714 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
715 gd->start_addr_sp);
716 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000717
718 return 0;
719}
720
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100721#ifdef CONFIG_OF_BOARD_FIXUP
722static int fix_fdt(void)
723{
724 return board_fix_fdt((void *)gd->fdt_blob);
725}
726#endif
727
Simon Glass1938f4a2013-03-11 06:49:53 +0000728/* ARM calls relocate_code from its crt0.S */
Simon Glass530f27e2017-01-16 07:03:49 -0700729#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
730 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000731
732static int jump_to_copy(void)
733{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600734 if (gd->flags & GD_FLG_SKIP_RELOC)
735 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000736 /*
737 * x86 is special, but in a nice way. It uses a trampoline which
738 * enables the dcache if possible.
739 *
740 * For now, other archs use relocate_code(), which is implemented
741 * similarly for all archs. When we do generic relocation, hopefully
742 * we can make all archs enable the dcache prior to relocation.
743 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300744#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000745 /*
746 * SDRAM and console are now initialised. The final stack can now
747 * be setup in SDRAM. Code execution will continue in Flash, but
748 * with the stack in SDRAM and Global Data in temporary memory
749 * (CPU cache)
750 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600751 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000752 board_init_f_r_trampoline(gd->start_addr_sp);
753#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000754 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000755#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000756
757 return 0;
758}
759#endif
760
761/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glassb383d6c2017-05-22 05:05:25 -0600762static int initf_bootstage(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000763{
Simon Glassbaa7d342017-06-07 10:28:46 -0600764 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
765 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glassb383d6c2017-05-22 05:05:25 -0600766 int ret;
767
Simon Glass824bb1b2017-05-22 05:05:35 -0600768 ret = bootstage_init(!from_spl);
Simon Glassb383d6c2017-05-22 05:05:25 -0600769 if (ret)
770 return ret;
Simon Glass824bb1b2017-05-22 05:05:35 -0600771 if (from_spl) {
772 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
773 CONFIG_BOOTSTAGE_STASH_SIZE);
774
775 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
776 if (ret && ret != -ENOENT) {
777 debug("Failed to unstash bootstage: err=%d\n", ret);
778 return ret;
779 }
780 }
Simon Glassb383d6c2017-05-22 05:05:25 -0600781
Simon Glass1938f4a2013-03-11 06:49:53 +0000782 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
783
784 return 0;
785}
786
Simon Glassab7cd622014-07-23 06:55:04 -0600787static int initf_dm(void)
788{
Andy Yanf1896c42017-07-24 17:43:34 +0800789#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassab7cd622014-07-23 06:55:04 -0600790 int ret;
791
Simon Glassb67eefd2020-05-10 11:39:59 -0600792 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_F, "dm_f");
Simon Glassab7cd622014-07-23 06:55:04 -0600793 ret = dm_init_and_scan(true);
Simon Glassb67eefd2020-05-10 11:39:59 -0600794 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F);
Simon Glassab7cd622014-07-23 06:55:04 -0600795 if (ret)
796 return ret;
Ovidiu Panait4b9a1212020-11-28 10:43:05 +0200797
798 if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
799 ret = dm_timer_init();
800 if (ret)
801 return ret;
802 }
Simon Glass1057e6c2016-02-24 09:14:50 -0700803#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600804
805 return 0;
806}
807
Simon Glass146251f2015-01-19 22:16:12 -0700808/* Architecture-specific memory reservation */
809__weak int reserve_arch(void)
810{
811 return 0;
812}
813
Ovidiu Panait016e4ae2020-01-22 22:28:25 +0200814__weak int checkcpu(void)
815{
816 return 0;
817}
818
Ovidiu Panaitfbf9c152020-02-05 08:54:42 +0200819__weak int clear_bss(void)
820{
821 return 0;
822}
823
Simon Glass42fdceb2022-03-04 08:43:04 -0700824static int misc_init_f(void)
825{
826 return event_notify_null(EVT_MISC_INIT_F);
827}
828
Simon Glass4acff452017-01-16 07:03:50 -0700829static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000830 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700831#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700832 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700833#endif
Heinrich Schuchardt7ef8e9b2019-06-02 00:53:24 +0200834#ifdef CONFIG_TRACE_EARLY
Simon Glass71c52db2013-06-11 11:14:42 -0700835 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800836#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700837 initf_malloc,
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700838 log_init,
Simon Glass5ac44a52017-05-22 05:05:31 -0600839 initf_bootstage, /* uses its own timer, so does not need DM */
Stefan Roese70545642022-09-02 13:57:50 +0200840 cyclic_init,
Simon Glass5a421902022-03-04 08:43:02 -0700841 event_init,
Simon Glassf0293d32018-11-15 18:43:52 -0700842#ifdef CONFIG_BLOBLIST
843 bloblist_init,
844#endif
Simon Glassb0edea32018-11-15 18:44:09 -0700845 setup_spl_handoff,
Ovidiu Panait8e8d45e2020-11-28 10:43:04 +0200846#if defined(CONFIG_CONSOLE_RECORD_INIT_F)
847 console_record_init,
848#endif
Simon Glass671549e2017-03-28 10:27:18 -0600849#if defined(CONFIG_HAVE_FSP)
850 arch_fsp_init,
Bin Menga52a068e2015-08-20 06:40:18 -0700851#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000852 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100853 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600854 initf_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000855#if defined(CONFIG_BOARD_EARLY_INIT_F)
856 board_early_init_f,
857#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600858#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600859 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000860 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600861#endif
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200862#if !defined(CONFIG_M68K)
Simon Glass1938f4a2013-03-11 06:49:53 +0000863 timer_init, /* initialize timer */
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200864#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000865#if defined(CONFIG_BOARD_POSTCLK_INIT)
866 board_postclk_init,
867#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000868 env_init, /* initialize environment */
869 init_baud_rate, /* initialze baudrate settings */
870 serial_init, /* serial communications setup */
871 console_init_f, /* stage 1 init of console */
872 display_options, /* say that we are here */
873 display_text_info, /* show debugging info if required */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000874 checkcpu,
Mario Six23471ae2018-08-06 10:23:34 +0200875#if defined(CONFIG_SYSRESET)
876 print_resetinfo,
877#endif
Simon Glasscc664002017-01-23 13:31:25 -0700878#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000879 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700880#endif
Cooper Jr., Franklinaf9e6ad2017-06-16 17:25:12 -0500881#if defined(CONFIG_DTB_RESELECT)
882 embedded_dtb_select,
883#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000884#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900885 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000886#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000887 INIT_FUNC_WATCHDOG_INIT
Simon Glasse4fef6c2013-03-11 14:30:42 +0000888 misc_init_f,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000889 INIT_FUNC_WATCHDOG_RESET
Tom Rini55dabcc2021-08-18 23:12:24 -0400890#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000891 init_func_i2c,
892#endif
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530893#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
894 init_func_vid,
895#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000896 announce_dram_init,
Simon Glass1938f4a2013-03-11 06:49:53 +0000897 dram_init, /* configure available RAM banks */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000898#ifdef CONFIG_POST
899 post_init_f,
900#endif
901 INIT_FUNC_WATCHDOG_RESET
902#if defined(CONFIG_SYS_DRAM_TEST)
903 testdram,
904#endif /* CONFIG_SYS_DRAM_TEST */
905 INIT_FUNC_WATCHDOG_RESET
906
Simon Glass1938f4a2013-03-11 06:49:53 +0000907#ifdef CONFIG_POST
908 init_post,
909#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000910 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000911 /*
912 * Now that we have DRAM mapped and working, we can
913 * relocate the code and continue running from DRAM.
914 *
915 * Reserve memory at end of RAM for (top down in that order):
916 * - area that won't get touched by U-Boot and Linux (optional)
917 * - kernel log buffer
918 * - protected RAM
919 * - LCD framebuffer
920 * - monitor code
921 * - board info struct
922 */
923 setup_dest_addr,
Pragnesh Patel313981c2020-08-13 10:12:26 +0530924#ifdef CONFIG_OF_BOARD_FIXUP
925 fix_fdt,
926#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000927#ifdef CONFIG_PRAM
928 reserve_pram,
929#endif
930 reserve_round_4k,
Ovidiu Panait79926e42020-03-29 20:57:41 +0300931 arch_reserve_mmu,
Simon Glass5a541942016-01-18 19:52:21 -0700932 reserve_video,
Simon Glass8703ef32016-01-18 19:52:20 -0700933 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000934 reserve_uboot,
935 reserve_malloc,
936 reserve_board,
Simon Glass1938f4a2013-03-11 06:49:53 +0000937 reserve_global_data,
938 reserve_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600939 reserve_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700940 reserve_bloblist,
Simon Glass146251f2015-01-19 22:16:12 -0700941 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000942 reserve_stacks,
Simon Glass76b00ac2017-03-31 08:40:32 -0600943 dram_init_banksize,
Simon Glass1938f4a2013-03-11 06:49:53 +0000944 show_dram_config,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000945 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panait15328852020-07-24 14:12:20 +0300946 setup_bdinfo,
Simon Glass1938f4a2013-03-11 06:49:53 +0000947 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000948 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000949 reloc_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600950 reloc_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700951 reloc_bloblist,
Simon Glass1938f4a2013-03-11 06:49:53 +0000952 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300953#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700954 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700955 do_elf_reloc_fixups,
956#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300957 clear_bss,
Simon Glass530f27e2017-01-16 07:03:49 -0700958#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
959 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000960 jump_to_copy,
961#endif
962 NULL,
963};
964
965void board_init_f(ulong boot_flags)
966{
Simon Glass1938f4a2013-03-11 06:49:53 +0000967 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +0400968 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000969
970 if (initcall_run_list(init_sequence_f))
971 hang();
972
Ben Stoltz9b217492015-07-31 09:31:37 -0600973#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkin264d2982015-12-16 19:24:10 +0300974 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
975 !defined(CONFIG_ARC)
Simon Glass1938f4a2013-03-11 06:49:53 +0000976 /* NOTREACHED - jump_to_copy() does not return */
977 hang();
978#endif
979}
980
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300981#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000982/*
983 * For now this code is only used on x86.
984 *
985 * init_sequence_f_r is the list of init functions which are run when
986 * U-Boot is executing from Flash with a semi-limited 'C' environment.
987 * The following limitations must be considered when implementing an
988 * '_f_r' function:
989 * - 'static' variables are read-only
990 * - Global Data (gd->xxx) is read/write
991 *
992 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
993 * supported). It _should_, if possible, copy global data to RAM and
994 * initialise the CPU caches (to speed up the relocation process)
995 *
996 * NOTE: At present only x86 uses this route, but it is intended that
997 * all archs will move to this when generic relocation is implemented.
998 */
Simon Glass4acff452017-01-16 07:03:50 -0700999static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -07001000#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +00001001 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -07001002#endif
Simon Glass48a33802013-03-05 14:39:52 +00001003
1004 NULL,
1005};
1006
1007void board_init_f_r(void)
1008{
1009 if (initcall_run_list(init_sequence_f_r))
1010 hang();
1011
1012 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -07001013 * The pre-relocation drivers may be using memory that has now gone
1014 * away. Mark serial as unavailable - this will fall back to the debug
1015 * UART if available.
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001016 *
1017 * Do the same with log drivers since the memory may not be available.
Simon Glasse4d6ab02016-03-11 22:06:51 -07001018 */
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001019 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glass5ee94b42017-09-05 19:49:45 -06001020#ifdef CONFIG_TIMER
1021 gd->timer = NULL;
1022#endif
Simon Glasse4d6ab02016-03-11 22:06:51 -07001023
1024 /*
Simon Glass48a33802013-03-05 14:39:52 +00001025 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1026 * Transfer execution from Flash to RAM by calculating the address
1027 * of the in-RAM copy of board_init_r() and calling it
1028 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001029 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001030
1031 /* NOTREACHED - board_init_r() does not return */
1032 hang();
1033}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001034#endif /* CONFIG_X86 */