blob: 98dc2591e1d0a8846bca27f20c1eda97c518996e [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
Tom Rinidec7ea02024-05-20 13:35:03 -060012#include <config.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 Glass0f2af882020-05-10 11:40:05 -060031#include <log.h>
Simon Glassd1d087d2015-02-27 22:06:36 -070032#include <malloc.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050033#include <mapmem.h>
Simon Glass62cf9122013-04-26 02:53:43 +000034#include <os.h>
Simon Glassc45e3592013-03-11 06:49:53 +000035#include <post.h>
Simon Glass6ab91072017-03-31 08:40:38 -060036#include <relocate.h>
Simon Glass36736182019-11-14 12:57:24 -070037#include <serial.h>
Simon Glasse14f1a22018-11-15 18:44:09 -070038#include <spl.h>
Jeroen Hofsteea802b982014-06-23 23:20:19 +020039#include <status_led.h>
Mario Six4481a5d2018-08-06 10:23:34 +020040#include <sysreset.h>
Simon Glass8e4f80f2016-02-24 09:14:50 -070041#include <timer.h>
Simon Glass209a1a62013-06-11 11:14:42 -070042#include <trace.h>
Simon Glass45aec8e2024-08-07 16:47:34 -060043#include <upl.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
Shiji Yangeff11fa2023-08-03 09:47:17 +0800128 bss_start = (ulong)__bss_start;
129 bss_end = (ulong)__bss_end;
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100130
Simon Glass72cc5382022-10-20 18:22:39 -0600131#ifdef CONFIG_TEXT_BASE
132 text_base = CONFIG_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
Bin Meng50a132b2023-07-22 00:15:21 +0800152 /*
153 * Not all boards have sysreset drivers available during early
Michal Suchanek32c58c12022-10-10 20:29:40 +0200154 * boot, so don't fail if one can't be found.
155 */
156 for (ret = uclass_first_device_check(UCLASS_SYSRESET, &dev); dev;
Bin Meng50a132b2023-07-22 00:15:21 +0800157 ret = uclass_next_device_check(&dev)) {
Michal Suchanek32c58c12022-10-10 20:29:40 +0200158 if (ret) {
159 debug("%s: %s sysreset device (error: %d)\n",
160 __func__, dev->name, ret);
161 continue;
162 }
Mario Six4481a5d2018-08-06 10:23:34 +0200163
Michal Suchanek32c58c12022-10-10 20:29:40 +0200164 if (!sysreset_get_status(dev, status, sizeof(status))) {
165 printf("%s%s", status_printed ? " " : "", status);
166 status_printed = true;
167 }
168 }
169 if (status_printed)
170 printf("\n");
Mario Six4481a5d2018-08-06 10:23:34 +0200171
172 return 0;
173}
174#endif
175
Mario Six97bbb602018-08-06 10:23:41 +0200176#if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
177static int print_cpuinfo(void)
178{
179 struct udevice *dev;
180 char desc[512];
181 int ret;
182
Ye Li28abafd2020-05-03 21:58:50 +0800183 dev = cpu_get_current_dev();
184 if (!dev) {
185 debug("%s: Could not get CPU device\n",
186 __func__);
187 return -ENODEV;
Mario Six97bbb602018-08-06 10:23:41 +0200188 }
189
190 ret = cpu_get_desc(dev, desc, sizeof(desc));
191 if (ret) {
192 debug("%s: Could not get CPU description (err = %d)\n",
193 dev->name, ret);
194 return ret;
195 }
196
Bin Mengbe2269f2018-10-10 22:06:55 -0700197 printf("CPU: %s\n", desc);
Mario Six97bbb602018-08-06 10:23:41 +0200198
199 return 0;
200}
201#endif
202
Simon Glassc45e3592013-03-11 06:49:53 +0000203static int announce_dram_init(void)
204{
205 puts("DRAM: ");
206 return 0;
207}
208
Pali Rohár8dc23ef2022-09-18 13:23:27 +0200209/*
210 * From input size calculate its nearest rounded unit scale (multiply of 2^10)
211 * and value in calculated unit scale multiplied by 10 (as fractional fixed
212 * point number with one decimal digit), which is human natural format,
213 * same what uses print_size() function for displaying. Mathematically it is:
214 * round_nearest(val * 2^scale) = size * 10; where: 10 <= val < 10240.
215 *
216 * For example for size=87654321 we calculate scale=20 and val=836 which means
217 * that input has natural human format 83.6 M (mega = 2^20).
218 */
219#define compute_size_scale_val(size, scale, val) do { \
220 scale = ilog2(size) / 10 * 10; \
221 val = (10 * size + ((1ULL << scale) >> 1)) >> scale; \
222 if (val == 10240) { val = 10; scale += 10; } \
223} while (0)
224
225/*
226 * Check if the sizes in their natural units written in decimal format with
227 * one fraction number are same.
228 */
229static int sizes_near(unsigned long long size1, unsigned long long size2)
230{
231 unsigned int size1_scale, size1_val, size2_scale, size2_val;
232
233 compute_size_scale_val(size1, size1_scale, size1_val);
234 compute_size_scale_val(size2, size2_scale, size2_val);
235
236 return size1_scale == size2_scale && size1_val == size2_val;
237}
238
Simon Glassc45e3592013-03-11 06:49:53 +0000239static int show_dram_config(void)
240{
York Sun60ac15a2014-05-02 17:28:05 -0700241 unsigned long long size;
Simon Glassc45e3592013-03-11 06:49:53 +0000242 int i;
243
244 debug("\nRAM Configuration:\n");
245 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
246 size += gd->bd->bi_dram[i].size;
Bin Mengc8964482015-08-06 01:31:20 -0700247 debug("Bank #%d: %llx ", i,
248 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glassc45e3592013-03-11 06:49:53 +0000249#ifdef DEBUG
250 print_size(gd->bd->bi_dram[i].size, "\n");
251#endif
252 }
253 debug("\nDRAM: ");
Simon Glassc45e3592013-03-11 06:49:53 +0000254
Pali Rohár8dc23ef2022-09-18 13:23:27 +0200255 print_size(gd->ram_size, "");
256 if (!sizes_near(gd->ram_size, size)) {
257 printf(" (effective ");
258 print_size(size, ")");
259 }
Simon Glass50250b52013-03-11 14:30:42 +0000260 board_add_ram_info(0);
261 putc('\n');
Simon Glassc45e3592013-03-11 06:49:53 +0000262
263 return 0;
264}
265
Simon Glass2f949c32017-03-31 08:40:32 -0600266__weak int dram_init_banksize(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000267{
Stefan Roese90cda992020-08-12 13:02:39 +0200268 gd->bd->bi_dram[0].start = gd->ram_base;
Simon Glassc45e3592013-03-11 06:49:53 +0000269 gd->bd->bi_dram[0].size = get_effective_memsize();
Simon Glass2f949c32017-03-31 08:40:32 -0600270
271 return 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000272}
273
Tom Rini52b2e262021-08-18 23:12:24 -0400274#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glass50250b52013-03-11 14:30:42 +0000275static int init_func_i2c(void)
276{
277 puts("I2C: ");
trema6612902013-09-21 18:13:34 +0200278 i2c_init_all();
Simon Glass50250b52013-03-11 14:30:42 +0000279 puts("ready\n");
280 return 0;
281}
282#endif
283
Simon Glassc45e3592013-03-11 06:49:53 +0000284static int setup_mon_len(void)
285{
Stefan Bosch26f51302024-01-26 12:50:55 +0000286#if defined(CONFIG_ARCH_NEXELL)
287 gd->mon_len = (ulong)__bss_end - (ulong)__image_copy_start;
288#elif defined(__ARM__) || defined(__MICROBLAZE__)
Shiji Yangeff11fa2023-08-03 09:47:17 +0800289 gd->mon_len = (ulong)__bss_end - (ulong)_start;
Simon Glass7e9f5882023-01-15 14:15:40 -0700290#elif defined(CONFIG_SANDBOX) && !defined(__riscv)
Shiji Yangeff11fa2023-08-03 09:47:17 +0800291 gd->mon_len = (ulong)_end - (ulong)_init;
Heinrich Schuchardte7301bb2021-05-19 12:02:39 +0200292#elif defined(CONFIG_SANDBOX)
Simon Glass7e9f5882023-01-15 14:15:40 -0700293 /* gcc does not provide _init in crti.o on RISC-V */
Heinrich Schuchardte7301bb2021-05-19 12:02:39 +0200294 gd->mon_len = 0;
295#elif defined(CONFIG_EFI_APP)
Shiji Yangeff11fa2023-08-03 09:47:17 +0800296 gd->mon_len = (ulong)_end - (ulong)_init;
Tom Rini210ebce2017-03-14 11:08:10 -0400297#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangf503a522014-07-17 19:01:34 +0800298 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Tom Rini53320122022-04-06 09:21:25 -0400299#elif defined(CONFIG_SH) || defined(CONFIG_RISCV)
Shiji Yangeff11fa2023-08-03 09:47:17 +0800300 gd->mon_len = (ulong)(__bss_end) - (ulong)(_start);
Simon Glass90632bd2016-05-14 18:49:28 -0600301#elif defined(CONFIG_SYS_MONITOR_BASE)
Shiji Yangeff11fa2023-08-03 09:47:17 +0800302 /* TODO: use (ulong)__bss_end - (ulong)__text_start; ? */
303 gd->mon_len = (ulong)__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass9c9f44a2013-03-11 07:06:48 +0000304#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000305 return 0;
306}
307
308__weak int arch_cpu_init(void)
309{
310 return 0;
311}
312
Paul Burton1f508dd2016-09-21 11:18:46 +0100313__weak int mach_cpu_init(void)
314{
315 return 0;
316}
317
Simon Glassc45e3592013-03-11 06:49:53 +0000318/* Get the top of usable RAM */
Heinrich Schuchardt51a9aac2023-08-12 20:16:58 +0200319__weak phys_addr_t board_get_usable_ram_top(phys_size_t total_size)
Simon Glassc45e3592013-03-11 06:49:53 +0000320{
Tom Rinibb4dd962022-11-16 13:10:37 -0500321#if defined(CFG_SYS_SDRAM_BASE) && CFG_SYS_SDRAM_BASE > 0
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700322 /*
Simon Glass839855c2015-04-28 20:25:03 -0600323 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700324 * 32-bit address space. If so, clip the usable RAM so it doesn't.
325 */
Tom Rinibb4dd962022-11-16 13:10:37 -0500326 if (gd->ram_top < CFG_SYS_SDRAM_BASE)
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700327 /*
328 * Will wrap back to top of 32-bit space when reservations
329 * are made.
330 */
331 return 0;
332#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000333 return gd->ram_top;
334}
335
Ovidiu Panaitbbce5f32022-09-13 21:31:28 +0300336__weak int arch_setup_dest_addr(void)
337{
338 return 0;
339}
340
Simon Glassc45e3592013-03-11 06:49:53 +0000341static int setup_dest_addr(void)
342{
Simon Glass0b6675d2024-08-21 10:19:16 -0600343 debug("Monitor len: %08x\n", gd->mon_len);
Simon Glassc45e3592013-03-11 06:49:53 +0000344 /*
345 * Ram is setup, size stored in gd !!
346 */
Pali Rohárad37d422022-09-09 17:32:41 +0200347 debug("Ram size: %08llX\n", (unsigned long long)gd->ram_size);
Tom Rini5c1e7272022-04-06 10:33:32 -0400348#if CONFIG_VAL(SYS_MEM_TOP_HIDE)
Simon Glassc45e3592013-03-11 06:49:53 +0000349 /*
350 * Subtract specified amount of memory to hide so that it won't
351 * get "touched" at all by U-Boot. By fixing up gd->ram_size
352 * the Linux kernel should now get passed the now "corrected"
York Sun4de24ef2017-03-06 09:02:28 -0800353 * memory size and won't touch it either. This should work
354 * for arch/ppc and arch/powerpc. Only Linux board ports in
355 * arch/powerpc with bootwrapper support, that recalculate the
356 * memory size from the SDRAM controller setup will have to
357 * get fixed.
Simon Glassc45e3592013-03-11 06:49:53 +0000358 */
York Sun4de24ef2017-03-06 09:02:28 -0800359 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
360#endif
Tom Rinibb4dd962022-11-16 13:10:37 -0500361#ifdef CFG_SYS_SDRAM_BASE
362 gd->ram_base = CFG_SYS_SDRAM_BASE;
Simon Glassc45e3592013-03-11 06:49:53 +0000363#endif
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +0530364 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glassc45e3592013-03-11 06:49:53 +0000365 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000366 gd->relocaddr = gd->ram_top;
Pali Rohárad37d422022-09-09 17:32:41 +0200367 debug("Ram top: %08llX\n", (unsigned long long)gd->ram_top);
Ovidiu Panaitbbce5f32022-09-13 21:31:28 +0300368
369 return arch_setup_dest_addr();
Simon Glassc45e3592013-03-11 06:49:53 +0000370}
371
Tom Rini0bb9b092022-12-04 10:13:37 -0500372#ifdef CFG_PRAM
Simon Glassc45e3592013-03-11 06:49:53 +0000373/* reserve protected RAM */
374static int reserve_pram(void)
375{
376 ulong reg;
377
Tom Rini0bb9b092022-12-04 10:13:37 -0500378 reg = env_get_ulong("pram", 10, CFG_PRAM);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000379 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glassc45e3592013-03-11 06:49:53 +0000380 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadad1589242013-05-27 00:37:30 +0000381 gd->relocaddr);
Simon Glassc45e3592013-03-11 06:49:53 +0000382 return 0;
383}
Tom Rini0bb9b092022-12-04 10:13:37 -0500384#endif /* CFG_PRAM */
Simon Glassc45e3592013-03-11 06:49:53 +0000385
386/* Round memory pointer down to next 4 kB limit */
387static int reserve_round_4k(void)
388{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000389 gd->relocaddr &= ~(4096 - 1);
Simon Glassc45e3592013-03-11 06:49:53 +0000390 return 0;
391}
392
Ovidiu Panait2a2941b2020-03-29 20:57:41 +0300393__weak int arch_reserve_mmu(void)
394{
395 return 0;
396}
397
Devarsh Thakkar46245d42023-12-05 21:25:19 +0530398static int reserve_video_from_videoblob(void)
Simon Glassfce58f52016-01-18 19:52:21 -0700399{
Simon Glassd4dce4a2024-09-29 19:49:36 -0600400 if (IS_ENABLED(CONFIG_SPL_VIDEO_HANDOFF) && xpl_phase() > PHASE_SPL) {
Nikhil M Jainf7ec5312023-07-18 14:27:31 +0530401 struct video_handoff *ho;
Devarsh Thakkar2febd462023-12-05 21:25:20 +0530402 int ret = 0;
Nikhil M Jainf7ec5312023-07-18 14:27:31 +0530403
404 ho = bloblist_find(BLOBLISTT_U_BOOT_VIDEO, sizeof(*ho));
405 if (!ho)
Devarsh Thakkar2febd462023-12-05 21:25:20 +0530406 return log_msg_ret("Missing video bloblist", -ENOENT);
407
408 ret = video_reserve_from_bloblist(ho);
409 if (ret)
410 return log_msg_ret("Invalid Video handoff info", ret);
Devarsh Thakkar46245d42023-12-05 21:25:19 +0530411
412 /* Sanity check fb from blob is before current relocaddr */
413 if (likely(gd->relocaddr > (unsigned long)ho->fb))
414 gd->relocaddr = ho->fb;
415 }
416
417 return 0;
418}
419
420/*
421 * Check if any bloblist received specifying reserved areas from previous stage and adjust
422 * gd->relocaddr accordingly, so that we start reserving after pre-reserved areas
423 * from previous stage.
424 *
425 * NOTE:
426 * IT is recommended that all bloblists from previous stage are reserved from ram_top
427 * as next stage will simply start reserving further regions after them.
428 */
429static int setup_relocaddr_from_bloblist(void)
430{
431 reserve_video_from_videoblob();
432
433 return 0;
434}
435
436static int reserve_video(void)
437{
438 if (CONFIG_IS_ENABLED(VIDEO)) {
Simon Glassb24a7d92022-10-16 15:57:41 -0600439 ulong addr;
440 int ret;
Simon Glassfce58f52016-01-18 19:52:21 -0700441
Simon Glassb24a7d92022-10-16 15:57:41 -0600442 addr = gd->relocaddr;
443 ret = video_reserve(&addr);
444 if (ret)
445 return ret;
446 debug("Reserving %luk for video at: %08lx\n",
447 ((unsigned long)gd->relocaddr - addr) >> 10, addr);
448 gd->relocaddr = addr;
449 }
Simon Glass50250b52013-03-11 14:30:42 +0000450
451 return 0;
452}
Simon Glass50250b52013-03-11 14:30:42 +0000453
Simon Glass1008da02016-01-18 19:52:20 -0700454static int reserve_trace(void)
455{
456#ifdef CONFIG_TRACE
457 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
458 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
Heinrich Schuchardtc960b142019-06-14 21:52:22 +0200459 debug("Reserving %luk for trace data at: %08lx\n",
460 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
Simon Glass1008da02016-01-18 19:52:20 -0700461#endif
462
463 return 0;
464}
465
Simon Glassc45e3592013-03-11 06:49:53 +0000466static int reserve_uboot(void)
467{
Alexey Brodkinc76af2a2018-05-25 16:08:14 +0300468 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
469 /*
470 * reserve memory for U-Boot code, data & bss
471 * round down to next 4 kB limit
472 */
473 gd->relocaddr -= gd->mon_len;
474 gd->relocaddr &= ~(4096 - 1);
475 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
476 /* round down to next 64 kB limit so that IVPR stays aligned */
477 gd->relocaddr &= ~(65536 - 1);
478 #endif
Simon Glassc45e3592013-03-11 06:49:53 +0000479
Simon Glass0b6675d2024-08-21 10:19:16 -0600480 debug("Reserving %dk for U-Boot at: %08lx\n",
Alexey Brodkinc76af2a2018-05-25 16:08:14 +0300481 gd->mon_len >> 10, gd->relocaddr);
482 }
Masahiro Yamadad1589242013-05-27 00:37:30 +0000483
484 gd->start_addr_sp = gd->relocaddr;
485
Simon Glassc45e3592013-03-11 06:49:53 +0000486 return 0;
487}
488
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100489/*
490 * reserve after start_addr_sp the requested size and make the stack pointer
491 * 16-byte aligned, this alignment is needed for cast on the reserved memory
492 * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes
493 * = ARMv8 Instruction Set Overview: quad word, 16 bytes
494 */
495static unsigned long reserve_stack_aligned(size_t size)
496{
497 return ALIGN_DOWN(gd->start_addr_sp - size, 16);
498}
499
Vikas Manocha4d49e102019-08-16 09:57:44 -0700500#ifdef CONFIG_SYS_NONCACHED_MEMORY
501static int reserve_noncached(void)
502{
Stephen Warren9b496432019-08-27 11:54:31 -0600503 /*
Simon Glassa9c12f12024-10-21 10:19:25 +0200504 * The value of gd->start_addr_sp must match the value of
505 * mem_malloc_start calculated in board_r.c:initr_malloc(), which is
506 * passed to dlmalloc.c:mem_malloc_init() and then used by
Stephen Warren9b496432019-08-27 11:54:31 -0600507 * cache.c:noncached_init()
508 *
509 * These calculations must match the code in cache.c:noncached_init()
510 */
511 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
512 MMU_SECTION_SIZE;
513 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
514 MMU_SECTION_SIZE);
Vikas Manocha4d49e102019-08-16 09:57:44 -0700515 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
516 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
517
518 return 0;
519}
520#endif
521
Simon Glassc45e3592013-03-11 06:49:53 +0000522/* reserve memory for malloc() area */
523static int reserve_malloc(void)
524{
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100525 gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN);
Simon Glassc45e3592013-03-11 06:49:53 +0000526 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100527 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Vikas Manocha4d49e102019-08-16 09:57:44 -0700528#ifdef CONFIG_SYS_NONCACHED_MEMORY
529 reserve_noncached();
530#endif
531
Simon Glassc45e3592013-03-11 06:49:53 +0000532 return 0;
533}
534
535/* (permanently) allocate a Board Info struct */
536static int reserve_board(void)
537{
Sonic Zhangf503a522014-07-17 19:01:34 +0800538 if (!gd->bd) {
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900539 gd->start_addr_sp = reserve_stack_aligned(sizeof(struct bd_info));
540 gd->bd = (struct bd_info *)map_sysmem(gd->start_addr_sp,
541 sizeof(struct bd_info));
542 memset(gd->bd, '\0', sizeof(struct bd_info));
Sonic Zhangf503a522014-07-17 19:01:34 +0800543 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900544 sizeof(struct bd_info), gd->start_addr_sp);
Sonic Zhangf503a522014-07-17 19:01:34 +0800545 }
Simon Glassc45e3592013-03-11 06:49:53 +0000546 return 0;
547}
548
Simon Glassc45e3592013-03-11 06:49:53 +0000549static int reserve_global_data(void)
550{
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100551 gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t));
Masahiro Yamadad1589242013-05-27 00:37:30 +0000552 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glassc45e3592013-03-11 06:49:53 +0000553 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100554 sizeof(gd_t), gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000555 return 0;
556}
557
558static int reserve_fdt(void)
559{
Ovidiu Panaitb6225b52020-11-28 10:43:07 +0200560 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
561 /*
562 * If the device tree is sitting immediately above our image
563 * then we must relocate it. If it is embedded in the data
564 * section, then it will be relocated with other data.
565 */
566 if (gd->fdt_blob) {
Simon Glass00f860f2024-08-21 10:19:10 -0600567 gd->boardf->fdt_size =
568 ALIGN(fdt_totalsize(gd->fdt_blob), 32);
Simon Glassc45e3592013-03-11 06:49:53 +0000569
Simon Glass00f860f2024-08-21 10:19:10 -0600570 gd->start_addr_sp = reserve_stack_aligned(
571 gd->boardf->fdt_size);
572 gd->boardf->new_fdt = map_sysmem(gd->start_addr_sp,
573 gd->boardf->fdt_size);
Ovidiu Panaitb6225b52020-11-28 10:43:07 +0200574 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Simon Glass00f860f2024-08-21 10:19:10 -0600575 gd->boardf->fdt_size, gd->start_addr_sp);
Ovidiu Panaitb6225b52020-11-28 10:43:07 +0200576 }
Simon Glassc45e3592013-03-11 06:49:53 +0000577 }
578
579 return 0;
580}
581
Simon Glassb9aff922017-05-22 05:05:30 -0600582static int reserve_bootstage(void)
583{
584#ifdef CONFIG_BOOTSTAGE
Simon Glassa036dbb2024-10-21 10:19:28 +0200585 int size = bootstage_get_size(true);
Simon Glassb9aff922017-05-22 05:05:30 -0600586
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100587 gd->start_addr_sp = reserve_stack_aligned(size);
Simon Glassd5d6f682024-08-21 10:19:11 -0600588 gd->boardf->new_bootstage = map_sysmem(gd->start_addr_sp, size);
Simon Glassb9aff922017-05-22 05:05:30 -0600589 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
590 gd->start_addr_sp);
591#endif
592
593 return 0;
594}
595
Patrick Delaunaya0a2b212018-03-13 13:57:00 +0100596__weak int arch_reserve_stacks(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000597{
Andreas Bießmann25429862015-02-06 23:06:45 +0100598 return 0;
599}
Simon Glass4d2aee82013-03-05 14:39:45 +0000600
Andreas Bießmann25429862015-02-06 23:06:45 +0100601static int reserve_stacks(void)
602{
603 /* make stack pointer 16-byte aligned */
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100604 gd->start_addr_sp = reserve_stack_aligned(16);
Simon Glassc45e3592013-03-11 06:49:53 +0000605
606 /*
Simon Glass839855c2015-04-28 20:25:03 -0600607 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann25429862015-02-06 23:06:45 +0100608 * gd->irq_sp
Simon Glassc45e3592013-03-11 06:49:53 +0000609 */
Andreas Bießmann25429862015-02-06 23:06:45 +0100610 return arch_reserve_stacks();
Simon Glassc45e3592013-03-11 06:49:53 +0000611}
612
Simon Glassa815dab2018-11-15 18:43:52 -0700613static int reserve_bloblist(void)
614{
615#ifdef CONFIG_BLOBLIST
Simon Glass9e945052020-09-27 18:46:18 -0600616 /* Align to a 4KB boundary for easier reading of addresses */
Simon Glassab7e7462021-01-13 20:29:43 -0700617 gd->start_addr_sp = ALIGN_DOWN(gd->start_addr_sp -
618 CONFIG_BLOBLIST_SIZE_RELOC, 0x1000);
Simon Glassda0eeb82024-08-21 10:19:12 -0600619 gd->boardf->new_bloblist = map_sysmem(gd->start_addr_sp,
620 CONFIG_BLOBLIST_SIZE_RELOC);
Simon Glassa815dab2018-11-15 18:43:52 -0700621#endif
622
623 return 0;
624}
625
Simon Glassc45e3592013-03-11 06:49:53 +0000626static int display_new_sp(void)
627{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000628 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000629
630 return 0;
631}
632
Ovidiu Panait3d0b0402020-07-24 14:12:15 +0300633__weak int arch_setup_bdinfo(void)
Ovidiu Panait0c5e9a02020-07-24 14:12:14 +0300634{
635 return 0;
636}
637
Ovidiu Panait3d0b0402020-07-24 14:12:15 +0300638int setup_bdinfo(void)
639{
Ovidiu Panaita5855882020-07-24 14:12:16 +0300640 struct bd_info *bd = gd->bd;
641
Ovidiu Panait5fc60602020-07-24 14:12:17 +0300642 if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
643 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
644 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
645 }
646
Ovidiu Panait3d0b0402020-07-24 14:12:15 +0300647 return arch_setup_bdinfo();
648}
649
Simon Glassc45e3592013-03-11 06:49:53 +0000650#ifdef CONFIG_POST
651static int init_post(void)
652{
653 post_bootmode_init();
654 post_run(NULL, POST_ROM | post_bootmode_get(0));
655
656 return 0;
657}
658#endif
659
Simon Glassc45e3592013-03-11 06:49:53 +0000660static int reloc_fdt(void)
661{
Ovidiu Panaitb6225b52020-11-28 10:43:07 +0200662 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
Simon Glass7f67b372024-08-21 10:19:09 -0600663 if (gd->boardf->new_fdt) {
664 memcpy(gd->boardf->new_fdt, gd->fdt_blob,
Ovidiu Panaitb6225b52020-11-28 10:43:07 +0200665 fdt_totalsize(gd->fdt_blob));
Simon Glass7f67b372024-08-21 10:19:09 -0600666 gd->fdt_blob = gd->boardf->new_fdt;
Ovidiu Panaitb6225b52020-11-28 10:43:07 +0200667 }
Simon Glassc45e3592013-03-11 06:49:53 +0000668 }
669
670 return 0;
671}
672
Simon Glassb9aff922017-05-22 05:05:30 -0600673static int reloc_bootstage(void)
674{
675#ifdef CONFIG_BOOTSTAGE
676 if (gd->flags & GD_FLG_SKIP_RELOC)
677 return 0;
Simon Glassd5d6f682024-08-21 10:19:11 -0600678 if (gd->boardf->new_bootstage)
679 bootstage_relocate(gd->boardf->new_bootstage);
Simon Glassb9aff922017-05-22 05:05:30 -0600680#endif
681
682 return 0;
683}
684
Simon Glassa815dab2018-11-15 18:43:52 -0700685static int reloc_bloblist(void)
686{
687#ifdef CONFIG_BLOBLIST
Simon Glass5d2199d2021-11-03 21:09:20 -0600688 /*
689 * Relocate only if we are supposed to send it
690 */
691 if ((gd->flags & GD_FLG_SKIP_RELOC) &&
692 CONFIG_BLOBLIST_SIZE == CONFIG_BLOBLIST_SIZE_RELOC) {
693 debug("Not relocating bloblist\n");
Simon Glassa815dab2018-11-15 18:43:52 -0700694 return 0;
Simon Glass5d2199d2021-11-03 21:09:20 -0600695 }
Simon Glassda0eeb82024-08-21 10:19:12 -0600696 if (gd->boardf->new_bloblist) {
Simon Glassa815dab2018-11-15 18:43:52 -0700697 debug("Copying bloblist from %p to %p, size %x\n",
Simon Glassda0eeb82024-08-21 10:19:12 -0600698 gd->bloblist, gd->boardf->new_bloblist,
699 gd->bloblist->total_size);
700 return bloblist_reloc(gd->boardf->new_bloblist,
Raymond Mao1a99d2c2024-02-03 08:36:22 -0800701 CONFIG_BLOBLIST_SIZE_RELOC);
Simon Glassa815dab2018-11-15 18:43:52 -0700702 }
703#endif
704
705 return 0;
706}
707
Eugene Urieve84d69a2024-03-31 23:03:25 +0300708void mcheck_on_ramrelocation(size_t offset);
Simon Glassc45e3592013-03-11 06:49:53 +0000709static int setup_reloc(void)
710{
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100711 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
Simon Glass72cc5382022-10-20 18:22:39 -0600712#ifdef CONFIG_TEXT_BASE
Lothar Waßmann160583b2017-06-08 10:18:25 +0200713#ifdef ARM
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100714 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
Michal Simekf942ebb2022-06-24 14:15:01 +0200715#elif defined(CONFIG_MICROBLAZE)
716 gd->reloc_off = gd->relocaddr - (u32)_start;
Lothar Waßmann160583b2017-06-08 10:18:25 +0200717#elif defined(CONFIG_M68K)
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100718 /*
719 * On all ColdFire arch cpu, monitor code starts always
720 * just after the default vector table location, so at 0x400
721 */
Simon Glass72cc5382022-10-20 18:22:39 -0600722 gd->reloc_off = gd->relocaddr - (CONFIG_TEXT_BASE + 0x400);
Simon Glass752707a2019-04-08 13:20:41 -0600723#elif !defined(CONFIG_SANDBOX)
Simon Glass72cc5382022-10-20 18:22:39 -0600724 gd->reloc_off = gd->relocaddr - CONFIG_TEXT_BASE;
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100725#endif
Sonic Zhangf503a522014-07-17 19:01:34 +0800726#endif
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100727 }
728
Simon Glassc45e3592013-03-11 06:49:53 +0000729 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
730
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100731 if (gd->flags & GD_FLG_SKIP_RELOC) {
732 debug("Skipping relocation due to flag\n");
733 } else {
Eugene Urieve84d69a2024-03-31 23:03:25 +0300734#ifdef MCHECK_HEAP_PROTECTION
735 mcheck_on_ramrelocation(gd->reloc_off);
736#endif
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100737 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
738 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
739 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
740 gd->start_addr_sp);
741 }
Simon Glassc45e3592013-03-11 06:49:53 +0000742
743 return 0;
744}
745
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +0100746#ifdef CONFIG_OF_BOARD_FIXUP
747static int fix_fdt(void)
748{
749 return board_fix_fdt((void *)gd->fdt_blob);
750}
751#endif
752
Simon Glassc45e3592013-03-11 06:49:53 +0000753/* ARM calls relocate_code from its crt0.S */
Simon Glasse6b03502023-07-15 21:38:52 -0600754#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glassc45e3592013-03-11 06:49:53 +0000755
756static int jump_to_copy(void)
757{
Simon Glass00dd17a2015-08-04 12:33:39 -0600758 if (gd->flags & GD_FLG_SKIP_RELOC)
759 return 0;
Simon Glass6d179872013-03-05 14:39:52 +0000760 /*
761 * x86 is special, but in a nice way. It uses a trampoline which
762 * enables the dcache if possible.
763 *
764 * For now, other archs use relocate_code(), which is implemented
765 * similarly for all archs. When we do generic relocation, hopefully
766 * we can make all archs enable the dcache prior to relocation.
767 */
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300768#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +0000769 /*
770 * SDRAM and console are now initialised. The final stack can now
771 * be setup in SDRAM. Code execution will continue in Flash, but
772 * with the stack in SDRAM and Global Data in temporary memory
773 * (CPU cache)
774 */
Simon Glass0e27b872015-08-10 20:44:32 -0600775 arch_setup_gd(gd->new_gd);
Simon Glasse6b03502023-07-15 21:38:52 -0600776# if CONFIG_IS_ENABLED(X86_64)
777 board_init_f_r_trampoline64(gd->new_gd, gd->start_addr_sp);
778# else
779 board_init_f_r_trampoline(gd->start_addr_sp);
780# endif
Simon Glass6d179872013-03-05 14:39:52 +0000781#else
Masahiro Yamadad1589242013-05-27 00:37:30 +0000782 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +0000783#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000784
785 return 0;
786}
787#endif
788
789/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glass88200332017-05-22 05:05:25 -0600790static int initf_bootstage(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000791{
Simon Glassc55d5c32017-06-07 10:28:46 -0600792 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
793 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glass88200332017-05-22 05:05:25 -0600794 int ret;
795
Simon Glass01154cb2017-05-22 05:05:35 -0600796 ret = bootstage_init(!from_spl);
Simon Glass88200332017-05-22 05:05:25 -0600797 if (ret)
798 return ret;
Simon Glass01154cb2017-05-22 05:05:35 -0600799 if (from_spl) {
Jonas Karlmanca052692024-08-03 12:41:44 +0000800 ret = bootstage_unstash_default();
Simon Glass01154cb2017-05-22 05:05:35 -0600801 if (ret && ret != -ENOENT) {
802 debug("Failed to unstash bootstage: err=%d\n", ret);
803 return ret;
804 }
805 }
Simon Glass88200332017-05-22 05:05:25 -0600806
Simon Glassc45e3592013-03-11 06:49:53 +0000807 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
808
809 return 0;
810}
811
Simon Glassa730c5d2014-07-23 06:55:04 -0600812static int initf_dm(void)
813{
Simon Glassadad2d02023-09-26 08:14:27 -0600814#if defined(CONFIG_DM) && CONFIG_IS_ENABLED(SYS_MALLOC_F)
Simon Glassa730c5d2014-07-23 06:55:04 -0600815 int ret;
816
Simon Glassea6a6092020-05-10 11:39:59 -0600817 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_F, "dm_f");
Simon Glassa730c5d2014-07-23 06:55:04 -0600818 ret = dm_init_and_scan(true);
Simon Glassea6a6092020-05-10 11:39:59 -0600819 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F);
Simon Glassa730c5d2014-07-23 06:55:04 -0600820 if (ret)
821 return ret;
Ovidiu Panait525a2ec2020-11-28 10:43:05 +0200822
823 if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
824 ret = dm_timer_init();
825 if (ret)
826 return ret;
827 }
Simon Glass8e4f80f2016-02-24 09:14:50 -0700828#endif
Simon Glassa730c5d2014-07-23 06:55:04 -0600829
830 return 0;
831}
832
Simon Glass5ded7e52015-01-19 22:16:12 -0700833/* Architecture-specific memory reservation */
834__weak int reserve_arch(void)
835{
836 return 0;
837}
838
Ovidiu Panait8e0319f2020-01-22 22:28:25 +0200839__weak int checkcpu(void)
840{
841 return 0;
842}
843
Ovidiu Panaitc508b272020-02-05 08:54:42 +0200844__weak int clear_bss(void)
845{
846 return 0;
847}
848
Simon Glass45aec8e2024-08-07 16:47:34 -0600849static int initf_upl(void)
850{
851 struct upl *upl;
852 int ret;
853
854 if (!IS_ENABLED(CONFIG_UPL_IN) || !(gd->flags & GD_FLG_UPL))
855 return 0;
856
857 upl = malloc(sizeof(struct upl));
858 if (upl)
859 ret = upl_read_handoff(upl, oftree_default());
860 if (ret) {
861 printf("UPL handoff: read failure (err=%dE)\n", ret);
862 return ret;
863 }
864 gd_set_upl(upl);
865
866 return 0;
867}
868
Simon Glass2031fad2017-01-16 07:03:50 -0700869static const init_fnc_t init_sequence_f[] = {
Simon Glassc45e3592013-03-11 06:49:53 +0000870 setup_mon_len,
Simon Glass26b78b22015-02-27 22:06:34 -0700871#ifdef CONFIG_OF_CONTROL
Simon Glassa0877672015-02-27 22:06:35 -0700872 fdtdec_setup,
Simon Glass26b78b22015-02-27 22:06:34 -0700873#endif
Heinrich Schuchardt2aecfc52019-06-02 00:53:24 +0200874#ifdef CONFIG_TRACE_EARLY
Simon Glass209a1a62013-06-11 11:14:42 -0700875 trace_early_init,
Kevin Hilman676f0192014-12-09 15:03:58 -0800876#endif
Simon Glasscfcb8862014-11-10 18:00:18 -0700877 initf_malloc,
Simon Glass45aec8e2024-08-07 16:47:34 -0600878 initf_upl,
Simon Glass55e32ba2017-12-04 13:48:28 -0700879 log_init,
Simon Glasse635af12017-05-22 05:05:31 -0600880 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glass4f542532022-03-04 08:43:02 -0700881 event_init,
Simon Glassa28f39c2023-09-26 08:14:51 -0600882 bloblist_maybe_init,
Ovidiu Panait85a31ac2020-11-28 10:43:04 +0200883#if defined(CONFIG_CONSOLE_RECORD_INIT_F)
884 console_record_init,
885#endif
Simon Glassfcebb7b2023-08-21 21:16:59 -0600886 INITCALL_EVENT(EVT_FSP_INIT_F),
Simon Glassc45e3592013-03-11 06:49:53 +0000887 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton1f508dd2016-09-21 11:18:46 +0100888 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass6df5de22014-09-03 17:36:59 -0600889 initf_dm,
Simon Glassc45e3592013-03-11 06:49:53 +0000890#if defined(CONFIG_BOARD_EARLY_INIT_F)
891 board_early_init_f,
892#endif
Simon Glass6829d8c2017-03-28 10:27:26 -0600893#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glass70064a72017-03-28 10:27:19 -0600894 /* get CPU and bus clocks according to the environment variable */
Simon Glass50250b52013-03-11 14:30:42 +0000895 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glasse8d20d42017-03-28 10:27:23 -0600896#endif
Marek Vasut4c77f062023-03-23 01:20:40 +0100897#if !defined(CONFIG_M68K) || (defined(CONFIG_M68K) && !defined(CONFIG_MCFTMR))
Simon Glassc45e3592013-03-11 06:49:53 +0000898 timer_init, /* initialize timer */
Angelo Dureghellocd226852017-05-10 23:58:06 +0200899#endif
Simon Glass50250b52013-03-11 14:30:42 +0000900#if defined(CONFIG_BOARD_POSTCLK_INIT)
901 board_postclk_init,
902#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000903 env_init, /* initialize environment */
904 init_baud_rate, /* initialze baudrate settings */
905 serial_init, /* serial communications setup */
906 console_init_f, /* stage 1 init of console */
907 display_options, /* say that we are here */
908 display_text_info, /* show debugging info if required */
Simon Glass50250b52013-03-11 14:30:42 +0000909 checkcpu,
Mario Six4481a5d2018-08-06 10:23:34 +0200910#if defined(CONFIG_SYSRESET)
911 print_resetinfo,
912#endif
Simon Glass68c1d012017-01-23 13:31:25 -0700913#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glassc45e3592013-03-11 06:49:53 +0000914 print_cpuinfo, /* display cpu info (and speed) */
Simon Glass68c1d012017-01-23 13:31:25 -0700915#endif
Cooper Jr., Franklind8b354a2017-06-16 17:25:12 -0500916#if defined(CONFIG_DTB_RESELECT)
917 embedded_dtb_select,
918#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000919#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada9607f7a2015-01-14 17:07:05 +0900920 show_board_info,
Simon Glassc45e3592013-03-11 06:49:53 +0000921#endif
Simon Glass50250b52013-03-11 14:30:42 +0000922 INIT_FUNC_WATCHDOG_INIT
Simon Glass6b42d382023-08-21 21:16:54 -0600923 INITCALL_EVENT(EVT_MISC_INIT_F),
Simon Glass50250b52013-03-11 14:30:42 +0000924 INIT_FUNC_WATCHDOG_RESET
Tom Rini52b2e262021-08-18 23:12:24 -0400925#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glass50250b52013-03-11 14:30:42 +0000926 init_func_i2c,
927#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000928 announce_dram_init,
Simon Glassc45e3592013-03-11 06:49:53 +0000929 dram_init, /* configure available RAM banks */
Simon Glass50250b52013-03-11 14:30:42 +0000930#ifdef CONFIG_POST
931 post_init_f,
932#endif
933 INIT_FUNC_WATCHDOG_RESET
Tom Rini6a5dccc2022-11-16 13:10:41 -0500934#if defined(CFG_SYS_DRAM_TEST)
Simon Glass50250b52013-03-11 14:30:42 +0000935 testdram,
Tom Rini6a5dccc2022-11-16 13:10:41 -0500936#endif /* CFG_SYS_DRAM_TEST */
Simon Glass50250b52013-03-11 14:30:42 +0000937 INIT_FUNC_WATCHDOG_RESET
938
Simon Glassc45e3592013-03-11 06:49:53 +0000939#ifdef CONFIG_POST
940 init_post,
941#endif
Simon Glass50250b52013-03-11 14:30:42 +0000942 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +0000943 /*
944 * Now that we have DRAM mapped and working, we can
945 * relocate the code and continue running from DRAM.
946 *
947 * Reserve memory at end of RAM for (top down in that order):
948 * - area that won't get touched by U-Boot and Linux (optional)
949 * - kernel log buffer
950 * - protected RAM
951 * - LCD framebuffer
952 * - monitor code
953 * - board info struct
954 */
955 setup_dest_addr,
Pali Rohár64a15c82024-06-06 18:33:21 +0200956#if defined(CONFIG_OF_BOARD_FIXUP) && !defined(CONFIG_OF_INITIAL_DTB_READONLY)
Pragnesh Patelad51fec2020-08-13 10:12:26 +0530957 fix_fdt,
958#endif
Tom Rini0bb9b092022-12-04 10:13:37 -0500959#ifdef CFG_PRAM
Simon Glassc45e3592013-03-11 06:49:53 +0000960 reserve_pram,
961#endif
962 reserve_round_4k,
Devarsh Thakkar46245d42023-12-05 21:25:19 +0530963 setup_relocaddr_from_bloblist,
Ovidiu Panait2a2941b2020-03-29 20:57:41 +0300964 arch_reserve_mmu,
Simon Glassfce58f52016-01-18 19:52:21 -0700965 reserve_video,
Simon Glass1008da02016-01-18 19:52:20 -0700966 reserve_trace,
Simon Glassc45e3592013-03-11 06:49:53 +0000967 reserve_uboot,
968 reserve_malloc,
969 reserve_board,
Simon Glassc45e3592013-03-11 06:49:53 +0000970 reserve_global_data,
971 reserve_fdt,
Pali Rohár64a15c82024-06-06 18:33:21 +0200972#if defined(CONFIG_OF_BOARD_FIXUP) && defined(CONFIG_OF_INITIAL_DTB_READONLY)
973 reloc_fdt,
974 fix_fdt,
975#endif
Simon Glassb9aff922017-05-22 05:05:30 -0600976 reserve_bootstage,
Simon Glassa815dab2018-11-15 18:43:52 -0700977 reserve_bloblist,
Simon Glass5ded7e52015-01-19 22:16:12 -0700978 reserve_arch,
Simon Glassc45e3592013-03-11 06:49:53 +0000979 reserve_stacks,
Simon Glass2f949c32017-03-31 08:40:32 -0600980 dram_init_banksize,
Simon Glassc45e3592013-03-11 06:49:53 +0000981 show_dram_config,
Simon Glass50250b52013-03-11 14:30:42 +0000982 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panait6183c8d2020-07-24 14:12:20 +0300983 setup_bdinfo,
Simon Glassc45e3592013-03-11 06:49:53 +0000984 display_new_sp,
Simon Glass50250b52013-03-11 14:30:42 +0000985 INIT_FUNC_WATCHDOG_RESET
Pali Rohár64a15c82024-06-06 18:33:21 +0200986#if !defined(CONFIG_OF_BOARD_FIXUP) || !defined(CONFIG_OF_INITIAL_DTB_READONLY)
Simon Glassc45e3592013-03-11 06:49:53 +0000987 reloc_fdt,
Pali Rohár64a15c82024-06-06 18:33:21 +0200988#endif
Simon Glassb9aff922017-05-22 05:05:30 -0600989 reloc_bootstage,
Simon Glassa815dab2018-11-15 18:43:52 -0700990 reloc_bloblist,
Simon Glassc45e3592013-03-11 06:49:53 +0000991 setup_reloc,
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300992#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glassd50b2f42015-01-01 16:18:09 -0700993 copy_uboot_to_ram,
Simon Glassd50b2f42015-01-01 16:18:09 -0700994 do_elf_reloc_fixups,
995#endif
Chris Zankel41e37372016-08-10 18:36:43 +0300996 clear_bss,
Rasmus Villemoesc794e492022-10-28 13:50:54 +0200997 /*
998 * Deregister all cyclic functions before relocation, so that
999 * gd->cyclic_list does not contain any references to pre-relocation
1000 * devices. Drivers will register their cyclic functions anew when the
1001 * devices are probed again.
1002 *
1003 * This should happen as late as possible so that the window where a
1004 * watchdog device is not serviced is as small as possible.
1005 */
1006 cyclic_unregister_all,
Simon Glasse6b03502023-07-15 21:38:52 -06001007#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glassc45e3592013-03-11 06:49:53 +00001008 jump_to_copy,
1009#endif
1010 NULL,
1011};
1012
1013void board_init_f(ulong boot_flags)
1014{
Simon Glass7f67b372024-08-21 10:19:09 -06001015 struct board_f boardf;
1016
Simon Glassc45e3592013-03-11 06:49:53 +00001017 gd->flags = boot_flags;
Simon Glassd4b0fdb2024-08-21 10:19:04 -06001018 gd->flags &= ~GD_FLG_HAVE_CONSOLE;
Simon Glass7f67b372024-08-21 10:19:09 -06001019 gd->boardf = &boardf;
Simon Glassc45e3592013-03-11 06:49:53 +00001020
1021 if (initcall_run_list(init_sequence_f))
1022 hang();
1023
Ben Stoltz1930e8d2015-07-31 09:31:37 -06001024#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkinc157ab92015-12-16 19:24:10 +03001025 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
1026 !defined(CONFIG_ARC)
Simon Glassc45e3592013-03-11 06:49:53 +00001027 /* NOTREACHED - jump_to_copy() does not return */
1028 hang();
1029#endif
1030}
Simon Glass6d179872013-03-05 14:39:52 +00001031
Alexey Brodkin913e9f02015-02-24 19:40:36 +03001032#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +00001033/*
1034 * For now this code is only used on x86.
1035 *
1036 * init_sequence_f_r is the list of init functions which are run when
1037 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1038 * The following limitations must be considered when implementing an
1039 * '_f_r' function:
1040 * - 'static' variables are read-only
1041 * - Global Data (gd->xxx) is read/write
1042 *
1043 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1044 * supported). It _should_, if possible, copy global data to RAM and
1045 * initialise the CPU caches (to speed up the relocation process)
1046 *
1047 * NOTE: At present only x86 uses this route, but it is intended that
1048 * all archs will move to this when generic relocation is implemented.
1049 */
Simon Glass2031fad2017-01-16 07:03:50 -07001050static const init_fnc_t init_sequence_f_r[] = {
Simon Glass6e1a81a2017-01-16 07:03:49 -07001051#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass6d179872013-03-05 14:39:52 +00001052 init_cache_f_r,
Simon Glass6e1a81a2017-01-16 07:03:49 -07001053#endif
Simon Glass6d179872013-03-05 14:39:52 +00001054
1055 NULL,
1056};
1057
1058void board_init_f_r(void)
1059{
1060 if (initcall_run_list(init_sequence_f_r))
1061 hang();
1062
1063 /*
Simon Glass51f73f12016-03-11 22:06:51 -07001064 * The pre-relocation drivers may be using memory that has now gone
1065 * away. Mark serial as unavailable - this will fall back to the debug
1066 * UART if available.
Simon Glass55e32ba2017-12-04 13:48:28 -07001067 *
1068 * Do the same with log drivers since the memory may not be available.
Simon Glass51f73f12016-03-11 22:06:51 -07001069 */
Simon Glass55e32ba2017-12-04 13:48:28 -07001070 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glassb77fe1f2017-09-05 19:49:45 -06001071#ifdef CONFIG_TIMER
1072 gd->timer = NULL;
1073#endif
Simon Glass51f73f12016-03-11 22:06:51 -07001074
1075 /*
Simon Glass6d179872013-03-05 14:39:52 +00001076 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1077 * Transfer execution from Flash to RAM by calculating the address
1078 * of the in-RAM copy of board_init_r() and calling it
1079 */
Alexey Brodkin9c832f12015-02-25 17:59:02 +03001080 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +00001081
1082 /* NOTREACHED - board_init_r() does not return */
1083 hang();
1084}
Alexey Brodkin73503182015-03-24 11:12:47 +03001085#endif /* CONFIG_X86 */