blob: 4355d1c82d4bc29a0695a712203ceee5f5abfde4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassc45e3592013-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 Glassc45e3592013-03-11 06:49:53 +000010 */
11
12#include <common.h>
Simon Glassa815dab2018-11-15 18:43:52 -070013#include <bloblist.h>
Simon Glass1ea97892020-05-10 11:40:00 -060014#include <bootstage.h>
Simon Glass85d65312019-12-28 10:44:58 -070015#include <clock_legacy.h>
Simon Glassa73bda42015-11-08 23:47:45 -070016#include <console.h>
Mario Six97bbb602018-08-06 10:23:41 +020017#include <cpu.h>
Simon Glass1fa70f82019-11-14 12:57:34 -070018#include <cpu_func.h>
Stefan Roese7513df32022-09-02 13:57:50 +020019#include <cyclic.h>
Simon Glass1ab16922022-07-31 12:28:48 -060020#include <display_options.h>
Simon Glassa730c5d2014-07-23 06:55:04 -060021#include <dm.h>
Simon Glass79fd2142019-08-01 09:46:43 -060022#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060023#include <env_internal.h>
Simon Glass4f542532022-03-04 08:43:02 -070024#include <event.h>
Simon Glassc45e3592013-03-11 06:49:53 +000025#include <fdtdec.h>
Simon Glass15393432013-04-20 08:42:41 +000026#include <fs.h>
Simon Glassf11478f2019-12-28 10:45:07 -070027#include <hang.h>
Simon Glass50250b52013-03-11 14:30:42 +000028#include <i2c.h>
Simon Glass6980b6b2019-11-14 12:57:45 -070029#include <init.h>
Simon Glassc45e3592013-03-11 06:49:53 +000030#include <initcall.h>
Simon Glass42cf22f2019-08-01 09:46:38 -060031#include <lcd.h>
Simon Glass0f2af882020-05-10 11:40:05 -060032#include <log.h>
Simon Glassd1d087d2015-02-27 22:06:36 -070033#include <malloc.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050034#include <mapmem.h>
Simon Glass62cf9122013-04-26 02:53:43 +000035#include <os.h>
Simon Glassc45e3592013-03-11 06:49:53 +000036#include <post.h>
Simon Glass6ab91072017-03-31 08:40:38 -060037#include <relocate.h>
Simon Glass36736182019-11-14 12:57:24 -070038#include <serial.h>
Simon Glasse14f1a22018-11-15 18:44:09 -070039#include <spl.h>
Jeroen Hofsteea802b982014-06-23 23:20:19 +020040#include <status_led.h>
Mario Six4481a5d2018-08-06 10:23:34 +020041#include <sysreset.h>
Simon Glass8e4f80f2016-02-24 09:14:50 -070042#include <timer.h>
Simon Glass209a1a62013-06-11 11:14:42 -070043#include <trace.h>
Simon Glassfce58f52016-01-18 19:52:21 -070044#include <video.h>
Simon Glass50250b52013-03-11 14:30:42 +000045#include <watchdog.h>
Simon Glass274e0b02020-05-10 11:39:56 -060046#include <asm/cache.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060047#include <asm/global_data.h>
Simon Glassc45e3592013-03-11 06:49:53 +000048#include <asm/io.h>
49#include <asm/sections.h>
Simon Glassa730c5d2014-07-23 06:55:04 -060050#include <dm/root.h>
Simon Glassb3c12562017-03-31 08:40:35 -060051#include <linux/errno.h>
Pali Rohár8dc23ef2022-09-18 13:23:27 +020052#include <linux/log2.h>
Simon Glassc45e3592013-03-11 06:49:53 +000053
Simon Glassc45e3592013-03-11 06:49:53 +000054DECLARE_GLOBAL_DATA_PTR;
Simon Glassc45e3592013-03-11 06:49:53 +000055
56/*
Simon Glass839855c2015-04-28 20:25:03 -060057 * TODO(sjg@chromium.org): IMO this code should be
Simon Glassc45e3592013-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 Hofsteea802b982014-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 Glassc45e3592013-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 Zhangf503a522014-07-17 19:01:34 +080088#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glass50250b52013-03-11 14:30:42 +000089static int init_func_watchdog_init(void)
90{
Tom Rini210ebce2017-03-14 11:08:10 -040091# if defined(CONFIG_HW_WATCHDOG) && \
92 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -070093 defined(CONFIG_SH) || \
Anatolij Gustschin87db2942016-06-13 14:24:23 +020094 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roeseee86af22015-03-10 08:04:36 +010095 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangf503a522014-07-17 19:01:34 +080096 hw_watchdog_init();
Simon Glass50250b52013-03-11 14:30:42 +000097 puts(" Watchdog enabled\n");
Anatolij Gustschind3aa98a2016-06-13 14:24:24 +020098# endif
Stefan Roese80877fa2022-09-02 14:10:46 +020099 schedule();
Simon Glass50250b52013-03-11 14:30:42 +0000100
101 return 0;
102}
103
104int init_func_watchdog_reset(void)
105{
Stefan Roese80877fa2022-09-02 14:10:46 +0200106 schedule();
Simon Glass50250b52013-03-11 14:30:42 +0000107
108 return 0;
109}
110#endif /* CONFIG_WATCHDOG */
111
Jeroen Hofstee45846052014-10-08 22:57:22 +0200112__weak void board_add_ram_info(int use_default)
Simon Glass50250b52013-03-11 14:30:42 +0000113{
114 /* please define platform specific board_add_ram_info() */
115}
116
Simon Glassc45e3592013-03-11 06:49:53 +0000117static int init_baud_rate(void)
118{
Simon Glass22c34c22017-08-03 12:22:13 -0600119 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glassc45e3592013-03-11 06:49:53 +0000120 return 0;
121}
122
123static int display_text_info(void)
124{
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600125#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100126 ulong bss_start, bss_end, text_base;
Simon Glassc45e3592013-03-11 06:49:53 +0000127
Simon Glass9c9f44a2013-03-11 07:06:48 +0000128 bss_start = (ulong)&__bss_start;
129 bss_end = (ulong)&__bss_end;
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100130
Sonic Zhangf503a522014-07-17 19:01:34 +0800131#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100132 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800133#else
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100134 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800135#endif
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100136
137 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100138 text_base, bss_start, bss_end);
Simon Glass62cf9122013-04-26 02:53:43 +0000139#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000140
Simon Glassc45e3592013-03-11 06:49:53 +0000141 return 0;
142}
143
Mario Six4481a5d2018-08-06 10:23:34 +0200144#ifdef CONFIG_SYSRESET
145static int print_resetinfo(void)
146{
147 struct udevice *dev;
148 char status[256];
Michal Suchanek32c58c12022-10-10 20:29:40 +0200149 bool status_printed = false;
Mario Six4481a5d2018-08-06 10:23:34 +0200150 int ret;
151
Michal Suchanek32c58c12022-10-10 20:29:40 +0200152 /* Not all boards have sysreset drivers available during early
153 * boot, so don't fail if one can't be found.
154 */
155 for (ret = uclass_first_device_check(UCLASS_SYSRESET, &dev); dev;
156 ret = uclass_next_device_check(&dev)) {
157 if (ret) {
158 debug("%s: %s sysreset device (error: %d)\n",
159 __func__, dev->name, ret);
160 continue;
161 }
Mario Six4481a5d2018-08-06 10:23:34 +0200162
Michal Suchanek32c58c12022-10-10 20:29:40 +0200163 if (!sysreset_get_status(dev, status, sizeof(status))) {
164 printf("%s%s", status_printed ? " " : "", status);
165 status_printed = true;
166 }
167 }
168 if (status_printed)
169 printf("\n");
Mario Six4481a5d2018-08-06 10:23:34 +0200170
171 return 0;
172}
173#endif
174
Mario Six97bbb602018-08-06 10:23:41 +0200175#if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
176static int print_cpuinfo(void)
177{
178 struct udevice *dev;
179 char desc[512];
180 int ret;
181
Ye Li28abafd2020-05-03 21:58:50 +0800182 dev = cpu_get_current_dev();
183 if (!dev) {
184 debug("%s: Could not get CPU device\n",
185 __func__);
186 return -ENODEV;
Mario Six97bbb602018-08-06 10:23:41 +0200187 }
188
189 ret = cpu_get_desc(dev, desc, sizeof(desc));
190 if (ret) {
191 debug("%s: Could not get CPU description (err = %d)\n",
192 dev->name, ret);
193 return ret;
194 }
195
Bin Mengbe2269f2018-10-10 22:06:55 -0700196 printf("CPU: %s\n", desc);
Mario Six97bbb602018-08-06 10:23:41 +0200197
198 return 0;
199}
200#endif
201
Simon Glassc45e3592013-03-11 06:49:53 +0000202static int announce_dram_init(void)
203{
204 puts("DRAM: ");
205 return 0;
206}
207
Pali Rohár8dc23ef2022-09-18 13:23:27 +0200208/*
209 * From input size calculate its nearest rounded unit scale (multiply of 2^10)
210 * and value in calculated unit scale multiplied by 10 (as fractional fixed
211 * point number with one decimal digit), which is human natural format,
212 * same what uses print_size() function for displaying. Mathematically it is:
213 * round_nearest(val * 2^scale) = size * 10; where: 10 <= val < 10240.
214 *
215 * For example for size=87654321 we calculate scale=20 and val=836 which means
216 * that input has natural human format 83.6 M (mega = 2^20).
217 */
218#define compute_size_scale_val(size, scale, val) do { \
219 scale = ilog2(size) / 10 * 10; \
220 val = (10 * size + ((1ULL << scale) >> 1)) >> scale; \
221 if (val == 10240) { val = 10; scale += 10; } \
222} while (0)
223
224/*
225 * Check if the sizes in their natural units written in decimal format with
226 * one fraction number are same.
227 */
228static int sizes_near(unsigned long long size1, unsigned long long size2)
229{
230 unsigned int size1_scale, size1_val, size2_scale, size2_val;
231
232 compute_size_scale_val(size1, size1_scale, size1_val);
233 compute_size_scale_val(size2, size2_scale, size2_val);
234
235 return size1_scale == size2_scale && size1_val == size2_val;
236}
237
Simon Glassc45e3592013-03-11 06:49:53 +0000238static int show_dram_config(void)
239{
York Sun60ac15a2014-05-02 17:28:05 -0700240 unsigned long long size;
Simon Glassc45e3592013-03-11 06:49:53 +0000241 int i;
242
243 debug("\nRAM Configuration:\n");
244 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
245 size += gd->bd->bi_dram[i].size;
Bin Mengc8964482015-08-06 01:31:20 -0700246 debug("Bank #%d: %llx ", i,
247 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glassc45e3592013-03-11 06:49:53 +0000248#ifdef DEBUG
249 print_size(gd->bd->bi_dram[i].size, "\n");
250#endif
251 }
252 debug("\nDRAM: ");
Simon Glassc45e3592013-03-11 06:49:53 +0000253
Pali Rohár8dc23ef2022-09-18 13:23:27 +0200254 print_size(gd->ram_size, "");
255 if (!sizes_near(gd->ram_size, size)) {
256 printf(" (effective ");
257 print_size(size, ")");
258 }
Simon Glass50250b52013-03-11 14:30:42 +0000259 board_add_ram_info(0);
260 putc('\n');
Simon Glassc45e3592013-03-11 06:49:53 +0000261
262 return 0;
263}
264
Simon Glass2f949c32017-03-31 08:40:32 -0600265__weak int dram_init_banksize(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000266{
Stefan Roese90cda992020-08-12 13:02:39 +0200267 gd->bd->bi_dram[0].start = gd->ram_base;
Simon Glassc45e3592013-03-11 06:49:53 +0000268 gd->bd->bi_dram[0].size = get_effective_memsize();
Simon Glass2f949c32017-03-31 08:40:32 -0600269
270 return 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000271}
272
Tom Rini52b2e262021-08-18 23:12:24 -0400273#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glass50250b52013-03-11 14:30:42 +0000274static int init_func_i2c(void)
275{
276 puts("I2C: ");
trema6612902013-09-21 18:13:34 +0200277 i2c_init_all();
Simon Glass50250b52013-03-11 14:30:42 +0000278 puts("ready\n");
279 return 0;
280}
281#endif
282
Rajesh Bhagatf7716782018-01-17 16:13:08 +0530283#if defined(CONFIG_VID)
284__weak int init_func_vid(void)
285{
286 return 0;
287}
288#endif
289
Simon Glassc45e3592013-03-11 06:49:53 +0000290static int setup_mon_len(void)
291{
Michal Simek65e915c2014-05-08 16:08:44 +0200292#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100293 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Heinrich Schuchardte7301bb2021-05-19 12:02:39 +0200294#elif defined(CONFIG_SANDBOX)
295 gd->mon_len = 0;
296#elif defined(CONFIG_EFI_APP)
Simon Glass62cf9122013-04-26 02:53:43 +0000297 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Rini210ebce2017-03-14 11:08:10 -0400298#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangf503a522014-07-17 19:01:34 +0800299 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Tom Rini53320122022-04-06 09:21:25 -0400300#elif defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang89299e22015-08-24 14:52:35 +0800301 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glass90632bd2016-05-14 18:49:28 -0600302#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glass50250b52013-03-11 14:30:42 +0000303 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
304 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass9c9f44a2013-03-11 07:06:48 +0000305#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000306 return 0;
307}
308
Simon Glasse14f1a22018-11-15 18:44:09 -0700309static int setup_spl_handoff(void)
310{
311#if CONFIG_IS_ENABLED(HANDOFF)
Simon Glass90c1a582022-01-12 19:26:17 -0700312 gd->spl_handoff = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF,
Simon Glasse14f1a22018-11-15 18:44:09 -0700313 sizeof(struct spl_handoff));
314 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
315#endif
316
317 return 0;
318}
319
Simon Glassc45e3592013-03-11 06:49:53 +0000320__weak int arch_cpu_init(void)
321{
322 return 0;
323}
324
Paul Burton1f508dd2016-09-21 11:18:46 +0100325__weak int mach_cpu_init(void)
326{
327 return 0;
328}
329
Simon Glassc45e3592013-03-11 06:49:53 +0000330/* Get the top of usable RAM */
Pali Rohár4f4f5832022-09-09 17:32:40 +0200331__weak phys_size_t board_get_usable_ram_top(phys_size_t total_size)
Simon Glassc45e3592013-03-11 06:49:53 +0000332{
Heinrich Schuchardtf6a18be2020-05-09 21:21:14 +0200333#if defined(CONFIG_SYS_SDRAM_BASE) && CONFIG_SYS_SDRAM_BASE > 0
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700334 /*
Simon Glass839855c2015-04-28 20:25:03 -0600335 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700336 * 32-bit address space. If so, clip the usable RAM so it doesn't.
337 */
338 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
339 /*
340 * Will wrap back to top of 32-bit space when reservations
341 * are made.
342 */
343 return 0;
344#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000345 return gd->ram_top;
346}
347
Ovidiu Panaitbbce5f32022-09-13 21:31:28 +0300348__weak int arch_setup_dest_addr(void)
349{
350 return 0;
351}
352
Simon Glassc45e3592013-03-11 06:49:53 +0000353static int setup_dest_addr(void)
354{
355 debug("Monitor len: %08lX\n", gd->mon_len);
356 /*
357 * Ram is setup, size stored in gd !!
358 */
Pali Rohárad37d422022-09-09 17:32:41 +0200359 debug("Ram size: %08llX\n", (unsigned long long)gd->ram_size);
Tom Rini5c1e7272022-04-06 10:33:32 -0400360#if CONFIG_VAL(SYS_MEM_TOP_HIDE)
Simon Glassc45e3592013-03-11 06:49:53 +0000361 /*
362 * Subtract specified amount of memory to hide so that it won't
363 * get "touched" at all by U-Boot. By fixing up gd->ram_size
364 * the Linux kernel should now get passed the now "corrected"
York Sun4de24ef2017-03-06 09:02:28 -0800365 * memory size and won't touch it either. This should work
366 * for arch/ppc and arch/powerpc. Only Linux board ports in
367 * arch/powerpc with bootwrapper support, that recalculate the
368 * memory size from the SDRAM controller setup will have to
369 * get fixed.
Simon Glassc45e3592013-03-11 06:49:53 +0000370 */
York Sun4de24ef2017-03-06 09:02:28 -0800371 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
372#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000373#ifdef CONFIG_SYS_SDRAM_BASE
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +0530374 gd->ram_base = CONFIG_SYS_SDRAM_BASE;
Simon Glassc45e3592013-03-11 06:49:53 +0000375#endif
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +0530376 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glassc45e3592013-03-11 06:49:53 +0000377 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000378 gd->relocaddr = gd->ram_top;
Pali Rohárad37d422022-09-09 17:32:41 +0200379 debug("Ram top: %08llX\n", (unsigned long long)gd->ram_top);
Ovidiu Panaitbbce5f32022-09-13 21:31:28 +0300380
381 return arch_setup_dest_addr();
Simon Glassc45e3592013-03-11 06:49:53 +0000382}
383
Simon Glassc45e3592013-03-11 06:49:53 +0000384#ifdef CONFIG_PRAM
385/* reserve protected RAM */
386static int reserve_pram(void)
387{
388 ulong reg;
389
Simon Glass22c34c22017-08-03 12:22:13 -0600390 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000391 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glassc45e3592013-03-11 06:49:53 +0000392 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadad1589242013-05-27 00:37:30 +0000393 gd->relocaddr);
Simon Glassc45e3592013-03-11 06:49:53 +0000394 return 0;
395}
396#endif /* CONFIG_PRAM */
397
398/* Round memory pointer down to next 4 kB limit */
399static int reserve_round_4k(void)
400{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000401 gd->relocaddr &= ~(4096 - 1);
Simon Glassc45e3592013-03-11 06:49:53 +0000402 return 0;
403}
404
Ovidiu Panait2a2941b2020-03-29 20:57:41 +0300405__weak int arch_reserve_mmu(void)
406{
407 return 0;
408}
409
Simon Glassfce58f52016-01-18 19:52:21 -0700410static int reserve_video(void)
411{
Simon Glass70ac86c2017-03-31 08:40:30 -0600412#ifdef CONFIG_DM_VIDEO
Simon Glassfce58f52016-01-18 19:52:21 -0700413 ulong addr;
414 int ret;
415
416 addr = gd->relocaddr;
417 ret = video_reserve(&addr);
418 if (ret)
419 return ret;
Simon Glass379e41f2020-09-27 18:46:22 -0600420 debug("Reserving %luk for video at: %08lx\n",
Patrick Delaunaya73a7d32021-04-09 18:02:06 +0200421 ((unsigned long)gd->relocaddr - addr) >> 10, addr);
Simon Glassfce58f52016-01-18 19:52:21 -0700422 gd->relocaddr = addr;
Simon Glass70ac86c2017-03-31 08:40:30 -0600423#elif defined(CONFIG_LCD)
Simon Glassc45e3592013-03-11 06:49:53 +0000424 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000425 gd->relocaddr = lcd_setmem(gd->relocaddr);
426 gd->fb_base = gd->relocaddr;
Simon Glass70ac86c2017-03-31 08:40:30 -0600427#endif
Simon Glass50250b52013-03-11 14:30:42 +0000428
429 return 0;
430}
Simon Glass50250b52013-03-11 14:30:42 +0000431
Simon Glass1008da02016-01-18 19:52:20 -0700432static int reserve_trace(void)
433{
434#ifdef CONFIG_TRACE
435 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
436 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
Heinrich Schuchardtc960b142019-06-14 21:52:22 +0200437 debug("Reserving %luk for trace data at: %08lx\n",
438 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
Simon Glass1008da02016-01-18 19:52:20 -0700439#endif
440
441 return 0;
442}
443
Simon Glassc45e3592013-03-11 06:49:53 +0000444static int reserve_uboot(void)
445{
Alexey Brodkinc76af2a2018-05-25 16:08:14 +0300446 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
447 /*
448 * reserve memory for U-Boot code, data & bss
449 * round down to next 4 kB limit
450 */
451 gd->relocaddr -= gd->mon_len;
452 gd->relocaddr &= ~(4096 - 1);
453 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
454 /* round down to next 64 kB limit so that IVPR stays aligned */
455 gd->relocaddr &= ~(65536 - 1);
456 #endif
Simon Glassc45e3592013-03-11 06:49:53 +0000457
Alexey Brodkinc76af2a2018-05-25 16:08:14 +0300458 debug("Reserving %ldk for U-Boot at: %08lx\n",
459 gd->mon_len >> 10, gd->relocaddr);
460 }
Masahiro Yamadad1589242013-05-27 00:37:30 +0000461
462 gd->start_addr_sp = gd->relocaddr;
463
Simon Glassc45e3592013-03-11 06:49:53 +0000464 return 0;
465}
466
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100467/*
468 * reserve after start_addr_sp the requested size and make the stack pointer
469 * 16-byte aligned, this alignment is needed for cast on the reserved memory
470 * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes
471 * = ARMv8 Instruction Set Overview: quad word, 16 bytes
472 */
473static unsigned long reserve_stack_aligned(size_t size)
474{
475 return ALIGN_DOWN(gd->start_addr_sp - size, 16);
476}
477
Vikas Manocha4d49e102019-08-16 09:57:44 -0700478#ifdef CONFIG_SYS_NONCACHED_MEMORY
479static int reserve_noncached(void)
480{
Stephen Warren9b496432019-08-27 11:54:31 -0600481 /*
482 * The value of gd->start_addr_sp must match the value of malloc_start
483 * calculated in boatrd_f.c:initr_malloc(), which is passed to
484 * board_r.c:mem_malloc_init() and then used by
485 * cache.c:noncached_init()
486 *
487 * These calculations must match the code in cache.c:noncached_init()
488 */
489 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
490 MMU_SECTION_SIZE;
491 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
492 MMU_SECTION_SIZE);
Vikas Manocha4d49e102019-08-16 09:57:44 -0700493 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
494 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
495
496 return 0;
497}
498#endif
499
Simon Glassc45e3592013-03-11 06:49:53 +0000500/* reserve memory for malloc() area */
501static int reserve_malloc(void)
502{
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100503 gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN);
Simon Glassc45e3592013-03-11 06:49:53 +0000504 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100505 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Vikas Manocha4d49e102019-08-16 09:57:44 -0700506#ifdef CONFIG_SYS_NONCACHED_MEMORY
507 reserve_noncached();
508#endif
509
Simon Glassc45e3592013-03-11 06:49:53 +0000510 return 0;
511}
512
513/* (permanently) allocate a Board Info struct */
514static int reserve_board(void)
515{
Sonic Zhangf503a522014-07-17 19:01:34 +0800516 if (!gd->bd) {
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900517 gd->start_addr_sp = reserve_stack_aligned(sizeof(struct bd_info));
518 gd->bd = (struct bd_info *)map_sysmem(gd->start_addr_sp,
519 sizeof(struct bd_info));
520 memset(gd->bd, '\0', sizeof(struct bd_info));
Sonic Zhangf503a522014-07-17 19:01:34 +0800521 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900522 sizeof(struct bd_info), gd->start_addr_sp);
Sonic Zhangf503a522014-07-17 19:01:34 +0800523 }
Simon Glassc45e3592013-03-11 06:49:53 +0000524 return 0;
525}
526
Simon Glassc45e3592013-03-11 06:49:53 +0000527static int reserve_global_data(void)
528{
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100529 gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t));
Masahiro Yamadad1589242013-05-27 00:37:30 +0000530 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glassc45e3592013-03-11 06:49:53 +0000531 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100532 sizeof(gd_t), gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000533 return 0;
534}
535
536static int reserve_fdt(void)
537{
Ovidiu Panaitb6225b52020-11-28 10:43:07 +0200538 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
539 /*
540 * If the device tree is sitting immediately above our image
541 * then we must relocate it. If it is embedded in the data
542 * section, then it will be relocated with other data.
543 */
544 if (gd->fdt_blob) {
545 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob), 32);
Simon Glassc45e3592013-03-11 06:49:53 +0000546
Ovidiu Panaitb6225b52020-11-28 10:43:07 +0200547 gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size);
548 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
549 debug("Reserving %lu Bytes for FDT at: %08lx\n",
550 gd->fdt_size, gd->start_addr_sp);
551 }
Simon Glassc45e3592013-03-11 06:49:53 +0000552 }
553
554 return 0;
555}
556
Simon Glassb9aff922017-05-22 05:05:30 -0600557static int reserve_bootstage(void)
558{
559#ifdef CONFIG_BOOTSTAGE
560 int size = bootstage_get_size();
561
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100562 gd->start_addr_sp = reserve_stack_aligned(size);
Simon Glassb9aff922017-05-22 05:05:30 -0600563 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
564 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
565 gd->start_addr_sp);
566#endif
567
568 return 0;
569}
570
Patrick Delaunaya0a2b212018-03-13 13:57:00 +0100571__weak int arch_reserve_stacks(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000572{
Andreas Bießmann25429862015-02-06 23:06:45 +0100573 return 0;
574}
Simon Glass4d2aee82013-03-05 14:39:45 +0000575
Andreas Bießmann25429862015-02-06 23:06:45 +0100576static int reserve_stacks(void)
577{
578 /* make stack pointer 16-byte aligned */
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100579 gd->start_addr_sp = reserve_stack_aligned(16);
Simon Glassc45e3592013-03-11 06:49:53 +0000580
581 /*
Simon Glass839855c2015-04-28 20:25:03 -0600582 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann25429862015-02-06 23:06:45 +0100583 * gd->irq_sp
Simon Glassc45e3592013-03-11 06:49:53 +0000584 */
Andreas Bießmann25429862015-02-06 23:06:45 +0100585 return arch_reserve_stacks();
Simon Glassc45e3592013-03-11 06:49:53 +0000586}
587
Simon Glassa815dab2018-11-15 18:43:52 -0700588static int reserve_bloblist(void)
589{
590#ifdef CONFIG_BLOBLIST
Simon Glass9e945052020-09-27 18:46:18 -0600591 /* Align to a 4KB boundary for easier reading of addresses */
Simon Glassab7e7462021-01-13 20:29:43 -0700592 gd->start_addr_sp = ALIGN_DOWN(gd->start_addr_sp -
593 CONFIG_BLOBLIST_SIZE_RELOC, 0x1000);
594 gd->new_bloblist = map_sysmem(gd->start_addr_sp,
595 CONFIG_BLOBLIST_SIZE_RELOC);
Simon Glassa815dab2018-11-15 18:43:52 -0700596#endif
597
598 return 0;
599}
600
Simon Glassc45e3592013-03-11 06:49:53 +0000601static int display_new_sp(void)
602{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000603 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000604
605 return 0;
606}
607
Ovidiu Panait3d0b0402020-07-24 14:12:15 +0300608__weak int arch_setup_bdinfo(void)
Ovidiu Panait0c5e9a02020-07-24 14:12:14 +0300609{
610 return 0;
611}
612
Ovidiu Panait3d0b0402020-07-24 14:12:15 +0300613int setup_bdinfo(void)
614{
Ovidiu Panaita5855882020-07-24 14:12:16 +0300615 struct bd_info *bd = gd->bd;
616
Ovidiu Panait5fc60602020-07-24 14:12:17 +0300617 if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
618 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
619 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
620 }
621
Ovidiu Panait3d0b0402020-07-24 14:12:15 +0300622 return arch_setup_bdinfo();
623}
624
Simon Glassc45e3592013-03-11 06:49:53 +0000625#ifdef CONFIG_POST
626static int init_post(void)
627{
628 post_bootmode_init();
629 post_run(NULL, POST_ROM | post_bootmode_get(0));
630
631 return 0;
632}
633#endif
634
Simon Glassc45e3592013-03-11 06:49:53 +0000635static int reloc_fdt(void)
636{
Ovidiu Panaitb6225b52020-11-28 10:43:07 +0200637 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
638 if (gd->flags & GD_FLG_SKIP_RELOC)
639 return 0;
640 if (gd->new_fdt) {
641 memcpy(gd->new_fdt, gd->fdt_blob,
642 fdt_totalsize(gd->fdt_blob));
643 gd->fdt_blob = gd->new_fdt;
644 }
Simon Glassc45e3592013-03-11 06:49:53 +0000645 }
646
647 return 0;
648}
649
Simon Glassb9aff922017-05-22 05:05:30 -0600650static int reloc_bootstage(void)
651{
652#ifdef CONFIG_BOOTSTAGE
653 if (gd->flags & GD_FLG_SKIP_RELOC)
654 return 0;
655 if (gd->new_bootstage) {
656 int size = bootstage_get_size();
657
658 debug("Copying bootstage from %p to %p, size %x\n",
659 gd->bootstage, gd->new_bootstage, size);
660 memcpy(gd->new_bootstage, gd->bootstage, size);
661 gd->bootstage = gd->new_bootstage;
Simon Glass39d58522019-10-21 17:26:50 -0600662 bootstage_relocate();
Simon Glassb9aff922017-05-22 05:05:30 -0600663 }
664#endif
665
666 return 0;
667}
668
Simon Glassa815dab2018-11-15 18:43:52 -0700669static int reloc_bloblist(void)
670{
671#ifdef CONFIG_BLOBLIST
Simon Glass5d2199d2021-11-03 21:09:20 -0600672 /*
673 * Relocate only if we are supposed to send it
674 */
675 if ((gd->flags & GD_FLG_SKIP_RELOC) &&
676 CONFIG_BLOBLIST_SIZE == CONFIG_BLOBLIST_SIZE_RELOC) {
677 debug("Not relocating bloblist\n");
Simon Glassa815dab2018-11-15 18:43:52 -0700678 return 0;
Simon Glass5d2199d2021-11-03 21:09:20 -0600679 }
Simon Glassa815dab2018-11-15 18:43:52 -0700680 if (gd->new_bloblist) {
681 int size = CONFIG_BLOBLIST_SIZE;
682
683 debug("Copying bloblist from %p to %p, size %x\n",
684 gd->bloblist, gd->new_bloblist, size);
Simon Glassab7e7462021-01-13 20:29:43 -0700685 bloblist_reloc(gd->new_bloblist, CONFIG_BLOBLIST_SIZE_RELOC,
686 gd->bloblist, size);
Simon Glassa815dab2018-11-15 18:43:52 -0700687 gd->bloblist = gd->new_bloblist;
688 }
689#endif
690
691 return 0;
692}
693
Simon Glassc45e3592013-03-11 06:49:53 +0000694static int setup_reloc(void)
695{
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100696 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
Sonic Zhangf503a522014-07-17 19:01:34 +0800697#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann160583b2017-06-08 10:18:25 +0200698#ifdef ARM
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100699 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
Michal Simekf942ebb2022-06-24 14:15:01 +0200700#elif defined(CONFIG_MICROBLAZE)
701 gd->reloc_off = gd->relocaddr - (u32)_start;
Lothar Waßmann160583b2017-06-08 10:18:25 +0200702#elif defined(CONFIG_M68K)
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100703 /*
704 * On all ColdFire arch cpu, monitor code starts always
705 * just after the default vector table location, so at 0x400
706 */
707 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Simon Glass752707a2019-04-08 13:20:41 -0600708#elif !defined(CONFIG_SANDBOX)
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100709 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100710#endif
Sonic Zhangf503a522014-07-17 19:01:34 +0800711#endif
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100712 }
713
Simon Glassc45e3592013-03-11 06:49:53 +0000714 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
715
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100716 if (gd->flags & GD_FLG_SKIP_RELOC) {
717 debug("Skipping relocation due to flag\n");
718 } else {
719 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
720 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
721 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
722 gd->start_addr_sp);
723 }
Simon Glassc45e3592013-03-11 06:49:53 +0000724
725 return 0;
726}
727
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +0100728#ifdef CONFIG_OF_BOARD_FIXUP
729static int fix_fdt(void)
730{
731 return board_fix_fdt((void *)gd->fdt_blob);
732}
733#endif
734
Simon Glassc45e3592013-03-11 06:49:53 +0000735/* ARM calls relocate_code from its crt0.S */
Simon Glass6e1a81a2017-01-16 07:03:49 -0700736#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
737 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +0000738
739static int jump_to_copy(void)
740{
Simon Glass00dd17a2015-08-04 12:33:39 -0600741 if (gd->flags & GD_FLG_SKIP_RELOC)
742 return 0;
Simon Glass6d179872013-03-05 14:39:52 +0000743 /*
744 * x86 is special, but in a nice way. It uses a trampoline which
745 * enables the dcache if possible.
746 *
747 * For now, other archs use relocate_code(), which is implemented
748 * similarly for all archs. When we do generic relocation, hopefully
749 * we can make all archs enable the dcache prior to relocation.
750 */
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300751#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +0000752 /*
753 * SDRAM and console are now initialised. The final stack can now
754 * be setup in SDRAM. Code execution will continue in Flash, but
755 * with the stack in SDRAM and Global Data in temporary memory
756 * (CPU cache)
757 */
Simon Glass0e27b872015-08-10 20:44:32 -0600758 arch_setup_gd(gd->new_gd);
Simon Glass6d179872013-03-05 14:39:52 +0000759 board_init_f_r_trampoline(gd->start_addr_sp);
760#else
Masahiro Yamadad1589242013-05-27 00:37:30 +0000761 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +0000762#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000763
764 return 0;
765}
766#endif
767
768/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glass88200332017-05-22 05:05:25 -0600769static int initf_bootstage(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000770{
Simon Glassc55d5c32017-06-07 10:28:46 -0600771 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
772 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glass88200332017-05-22 05:05:25 -0600773 int ret;
774
Simon Glass01154cb2017-05-22 05:05:35 -0600775 ret = bootstage_init(!from_spl);
Simon Glass88200332017-05-22 05:05:25 -0600776 if (ret)
777 return ret;
Simon Glass01154cb2017-05-22 05:05:35 -0600778 if (from_spl) {
779 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
780 CONFIG_BOOTSTAGE_STASH_SIZE);
781
782 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
783 if (ret && ret != -ENOENT) {
784 debug("Failed to unstash bootstage: err=%d\n", ret);
785 return ret;
786 }
787 }
Simon Glass88200332017-05-22 05:05:25 -0600788
Simon Glassc45e3592013-03-11 06:49:53 +0000789 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
790
791 return 0;
792}
793
Simon Glassa730c5d2014-07-23 06:55:04 -0600794static int initf_dm(void)
795{
Andy Yan1fa20e4d2017-07-24 17:43:34 +0800796#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassa730c5d2014-07-23 06:55:04 -0600797 int ret;
798
Simon Glassea6a6092020-05-10 11:39:59 -0600799 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_F, "dm_f");
Simon Glassa730c5d2014-07-23 06:55:04 -0600800 ret = dm_init_and_scan(true);
Simon Glassea6a6092020-05-10 11:39:59 -0600801 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F);
Simon Glassa730c5d2014-07-23 06:55:04 -0600802 if (ret)
803 return ret;
Ovidiu Panait525a2ec2020-11-28 10:43:05 +0200804
805 if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
806 ret = dm_timer_init();
807 if (ret)
808 return ret;
809 }
Simon Glass8e4f80f2016-02-24 09:14:50 -0700810#endif
Simon Glassa730c5d2014-07-23 06:55:04 -0600811
812 return 0;
813}
814
Simon Glass5ded7e52015-01-19 22:16:12 -0700815/* Architecture-specific memory reservation */
816__weak int reserve_arch(void)
817{
818 return 0;
819}
820
Ovidiu Panait8e0319f2020-01-22 22:28:25 +0200821__weak int checkcpu(void)
822{
823 return 0;
824}
825
Ovidiu Panaitc508b272020-02-05 08:54:42 +0200826__weak int clear_bss(void)
827{
828 return 0;
829}
830
Simon Glassf1c51912022-03-04 08:43:04 -0700831static int misc_init_f(void)
832{
833 return event_notify_null(EVT_MISC_INIT_F);
834}
835
Simon Glass2031fad2017-01-16 07:03:50 -0700836static const init_fnc_t init_sequence_f[] = {
Simon Glassc45e3592013-03-11 06:49:53 +0000837 setup_mon_len,
Simon Glass26b78b22015-02-27 22:06:34 -0700838#ifdef CONFIG_OF_CONTROL
Simon Glassa0877672015-02-27 22:06:35 -0700839 fdtdec_setup,
Simon Glass26b78b22015-02-27 22:06:34 -0700840#endif
Heinrich Schuchardt2aecfc52019-06-02 00:53:24 +0200841#ifdef CONFIG_TRACE_EARLY
Simon Glass209a1a62013-06-11 11:14:42 -0700842 trace_early_init,
Kevin Hilman676f0192014-12-09 15:03:58 -0800843#endif
Simon Glasscfcb8862014-11-10 18:00:18 -0700844 initf_malloc,
Simon Glass55e32ba2017-12-04 13:48:28 -0700845 log_init,
Simon Glasse635af12017-05-22 05:05:31 -0600846 initf_bootstage, /* uses its own timer, so does not need DM */
Stefan Roese7513df32022-09-02 13:57:50 +0200847 cyclic_init,
Simon Glass4f542532022-03-04 08:43:02 -0700848 event_init,
Simon Glassa815dab2018-11-15 18:43:52 -0700849#ifdef CONFIG_BLOBLIST
850 bloblist_init,
851#endif
Simon Glasse14f1a22018-11-15 18:44:09 -0700852 setup_spl_handoff,
Ovidiu Panait85a31ac2020-11-28 10:43:04 +0200853#if defined(CONFIG_CONSOLE_RECORD_INIT_F)
854 console_record_init,
855#endif
Simon Glass295c4232017-03-28 10:27:18 -0600856#if defined(CONFIG_HAVE_FSP)
857 arch_fsp_init,
Bin Meng178f8972015-08-20 06:40:18 -0700858#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000859 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton1f508dd2016-09-21 11:18:46 +0100860 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass6df5de22014-09-03 17:36:59 -0600861 initf_dm,
Simon Glassc45e3592013-03-11 06:49:53 +0000862#if defined(CONFIG_BOARD_EARLY_INIT_F)
863 board_early_init_f,
864#endif
Simon Glass6829d8c2017-03-28 10:27:26 -0600865#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glass70064a72017-03-28 10:27:19 -0600866 /* get CPU and bus clocks according to the environment variable */
Simon Glass50250b52013-03-11 14:30:42 +0000867 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glasse8d20d42017-03-28 10:27:23 -0600868#endif
Angelo Dureghellocd226852017-05-10 23:58:06 +0200869#if !defined(CONFIG_M68K)
Simon Glassc45e3592013-03-11 06:49:53 +0000870 timer_init, /* initialize timer */
Angelo Dureghellocd226852017-05-10 23:58:06 +0200871#endif
Simon Glass50250b52013-03-11 14:30:42 +0000872#if defined(CONFIG_BOARD_POSTCLK_INIT)
873 board_postclk_init,
874#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000875 env_init, /* initialize environment */
876 init_baud_rate, /* initialze baudrate settings */
877 serial_init, /* serial communications setup */
878 console_init_f, /* stage 1 init of console */
879 display_options, /* say that we are here */
880 display_text_info, /* show debugging info if required */
Simon Glass50250b52013-03-11 14:30:42 +0000881 checkcpu,
Mario Six4481a5d2018-08-06 10:23:34 +0200882#if defined(CONFIG_SYSRESET)
883 print_resetinfo,
884#endif
Simon Glass68c1d012017-01-23 13:31:25 -0700885#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glassc45e3592013-03-11 06:49:53 +0000886 print_cpuinfo, /* display cpu info (and speed) */
Simon Glass68c1d012017-01-23 13:31:25 -0700887#endif
Cooper Jr., Franklind8b354a2017-06-16 17:25:12 -0500888#if defined(CONFIG_DTB_RESELECT)
889 embedded_dtb_select,
890#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000891#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada9607f7a2015-01-14 17:07:05 +0900892 show_board_info,
Simon Glassc45e3592013-03-11 06:49:53 +0000893#endif
Simon Glass50250b52013-03-11 14:30:42 +0000894 INIT_FUNC_WATCHDOG_INIT
Simon Glass50250b52013-03-11 14:30:42 +0000895 misc_init_f,
Simon Glass50250b52013-03-11 14:30:42 +0000896 INIT_FUNC_WATCHDOG_RESET
Tom Rini52b2e262021-08-18 23:12:24 -0400897#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glass50250b52013-03-11 14:30:42 +0000898 init_func_i2c,
899#endif
Rajesh Bhagatf7716782018-01-17 16:13:08 +0530900#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
901 init_func_vid,
902#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000903 announce_dram_init,
Simon Glassc45e3592013-03-11 06:49:53 +0000904 dram_init, /* configure available RAM banks */
Simon Glass50250b52013-03-11 14:30:42 +0000905#ifdef CONFIG_POST
906 post_init_f,
907#endif
908 INIT_FUNC_WATCHDOG_RESET
909#if defined(CONFIG_SYS_DRAM_TEST)
910 testdram,
911#endif /* CONFIG_SYS_DRAM_TEST */
912 INIT_FUNC_WATCHDOG_RESET
913
Simon Glassc45e3592013-03-11 06:49:53 +0000914#ifdef CONFIG_POST
915 init_post,
916#endif
Simon Glass50250b52013-03-11 14:30:42 +0000917 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +0000918 /*
919 * Now that we have DRAM mapped and working, we can
920 * relocate the code and continue running from DRAM.
921 *
922 * Reserve memory at end of RAM for (top down in that order):
923 * - area that won't get touched by U-Boot and Linux (optional)
924 * - kernel log buffer
925 * - protected RAM
926 * - LCD framebuffer
927 * - monitor code
928 * - board info struct
929 */
930 setup_dest_addr,
Pragnesh Patelad51fec2020-08-13 10:12:26 +0530931#ifdef CONFIG_OF_BOARD_FIXUP
932 fix_fdt,
933#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000934#ifdef CONFIG_PRAM
935 reserve_pram,
936#endif
937 reserve_round_4k,
Ovidiu Panait2a2941b2020-03-29 20:57:41 +0300938 arch_reserve_mmu,
Simon Glassfce58f52016-01-18 19:52:21 -0700939 reserve_video,
Simon Glass1008da02016-01-18 19:52:20 -0700940 reserve_trace,
Simon Glassc45e3592013-03-11 06:49:53 +0000941 reserve_uboot,
942 reserve_malloc,
943 reserve_board,
Simon Glassc45e3592013-03-11 06:49:53 +0000944 reserve_global_data,
945 reserve_fdt,
Simon Glassb9aff922017-05-22 05:05:30 -0600946 reserve_bootstage,
Simon Glassa815dab2018-11-15 18:43:52 -0700947 reserve_bloblist,
Simon Glass5ded7e52015-01-19 22:16:12 -0700948 reserve_arch,
Simon Glassc45e3592013-03-11 06:49:53 +0000949 reserve_stacks,
Simon Glass2f949c32017-03-31 08:40:32 -0600950 dram_init_banksize,
Simon Glassc45e3592013-03-11 06:49:53 +0000951 show_dram_config,
Simon Glass50250b52013-03-11 14:30:42 +0000952 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panait6183c8d2020-07-24 14:12:20 +0300953 setup_bdinfo,
Simon Glassc45e3592013-03-11 06:49:53 +0000954 display_new_sp,
Simon Glass50250b52013-03-11 14:30:42 +0000955 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +0000956 reloc_fdt,
Simon Glassb9aff922017-05-22 05:05:30 -0600957 reloc_bootstage,
Simon Glassa815dab2018-11-15 18:43:52 -0700958 reloc_bloblist,
Simon Glassc45e3592013-03-11 06:49:53 +0000959 setup_reloc,
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300960#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glassd50b2f42015-01-01 16:18:09 -0700961 copy_uboot_to_ram,
Simon Glassd50b2f42015-01-01 16:18:09 -0700962 do_elf_reloc_fixups,
963#endif
Chris Zankel41e37372016-08-10 18:36:43 +0300964 clear_bss,
Simon Glass6e1a81a2017-01-16 07:03:49 -0700965#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
966 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +0000967 jump_to_copy,
968#endif
969 NULL,
970};
971
972void board_init_f(ulong boot_flags)
973{
Simon Glassc45e3592013-03-11 06:49:53 +0000974 gd->flags = boot_flags;
Alexey Brodkin07236912013-11-27 22:32:40 +0400975 gd->have_console = 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000976
977 if (initcall_run_list(init_sequence_f))
978 hang();
979
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600980#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkinc157ab92015-12-16 19:24:10 +0300981 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
982 !defined(CONFIG_ARC)
Simon Glassc45e3592013-03-11 06:49:53 +0000983 /* NOTREACHED - jump_to_copy() does not return */
984 hang();
985#endif
986}
Simon Glass6d179872013-03-05 14:39:52 +0000987
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300988#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +0000989/*
990 * For now this code is only used on x86.
991 *
992 * init_sequence_f_r is the list of init functions which are run when
993 * U-Boot is executing from Flash with a semi-limited 'C' environment.
994 * The following limitations must be considered when implementing an
995 * '_f_r' function:
996 * - 'static' variables are read-only
997 * - Global Data (gd->xxx) is read/write
998 *
999 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1000 * supported). It _should_, if possible, copy global data to RAM and
1001 * initialise the CPU caches (to speed up the relocation process)
1002 *
1003 * NOTE: At present only x86 uses this route, but it is intended that
1004 * all archs will move to this when generic relocation is implemented.
1005 */
Simon Glass2031fad2017-01-16 07:03:50 -07001006static const init_fnc_t init_sequence_f_r[] = {
Simon Glass6e1a81a2017-01-16 07:03:49 -07001007#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass6d179872013-03-05 14:39:52 +00001008 init_cache_f_r,
Simon Glass6e1a81a2017-01-16 07:03:49 -07001009#endif
Simon Glass6d179872013-03-05 14:39:52 +00001010
1011 NULL,
1012};
1013
1014void board_init_f_r(void)
1015{
1016 if (initcall_run_list(init_sequence_f_r))
1017 hang();
1018
1019 /*
Simon Glass51f73f12016-03-11 22:06:51 -07001020 * The pre-relocation drivers may be using memory that has now gone
1021 * away. Mark serial as unavailable - this will fall back to the debug
1022 * UART if available.
Simon Glass55e32ba2017-12-04 13:48:28 -07001023 *
1024 * Do the same with log drivers since the memory may not be available.
Simon Glass51f73f12016-03-11 22:06:51 -07001025 */
Simon Glass55e32ba2017-12-04 13:48:28 -07001026 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glassb77fe1f2017-09-05 19:49:45 -06001027#ifdef CONFIG_TIMER
1028 gd->timer = NULL;
1029#endif
Simon Glass51f73f12016-03-11 22:06:51 -07001030
1031 /*
Simon Glass6d179872013-03-05 14:39:52 +00001032 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1033 * Transfer execution from Flash to RAM by calculating the address
1034 * of the in-RAM copy of board_init_r() and calling it
1035 */
Alexey Brodkin9c832f12015-02-25 17:59:02 +03001036 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +00001037
1038 /* NOTREACHED - board_init_r() does not return */
1039 hang();
1040}
Alexey Brodkin73503182015-03-24 11:12:47 +03001041#endif /* CONFIG_X86 */