blob: f7ea7c7a1e4507867aaff72510403fed4b6742e3 [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>
Simon Glassa730c5d2014-07-23 06:55:04 -060019#include <dm.h>
Simon Glass79fd2142019-08-01 09:46:43 -060020#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060021#include <env_internal.h>
Simon Glassc45e3592013-03-11 06:49:53 +000022#include <fdtdec.h>
Simon Glass15393432013-04-20 08:42:41 +000023#include <fs.h>
Simon Glassf11478f2019-12-28 10:45:07 -070024#include <hang.h>
Simon Glass50250b52013-03-11 14:30:42 +000025#include <i2c.h>
Simon Glass6980b6b2019-11-14 12:57:45 -070026#include <init.h>
Simon Glassc45e3592013-03-11 06:49:53 +000027#include <initcall.h>
Simon Glass42cf22f2019-08-01 09:46:38 -060028#include <lcd.h>
Simon Glass0f2af882020-05-10 11:40:05 -060029#include <log.h>
Simon Glassd1d087d2015-02-27 22:06:36 -070030#include <malloc.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050031#include <mapmem.h>
Simon Glass62cf9122013-04-26 02:53:43 +000032#include <os.h>
Simon Glassc45e3592013-03-11 06:49:53 +000033#include <post.h>
Simon Glass6ab91072017-03-31 08:40:38 -060034#include <relocate.h>
Simon Glass36736182019-11-14 12:57:24 -070035#include <serial.h>
Simon Glasse14f1a22018-11-15 18:44:09 -070036#ifdef CONFIG_SPL
37#include <spl.h>
38#endif
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 Glassfce58f52016-01-18 19:52:21 -070043#include <video.h>
Simon Glass50250b52013-03-11 14:30:42 +000044#include <watchdog.h>
Simon Glass274e0b02020-05-10 11:39:56 -060045#include <asm/cache.h>
Simon Glassf004e8a2017-05-17 08:23:01 -060046#ifdef CONFIG_MACH_TYPE
47#include <asm/mach-types.h>
48#endif
Simon Glasse7706032017-03-31 08:40:39 -060049#if defined(CONFIG_MP) && defined(CONFIG_PPC)
50#include <asm/mp.h>
51#endif
Simon Glass3ba929a2020-10-30 21:38:53 -060052#include <asm/global_data.h>
Simon Glassc45e3592013-03-11 06:49:53 +000053#include <asm/io.h>
54#include <asm/sections.h>
Simon Glassa730c5d2014-07-23 06:55:04 -060055#include <dm/root.h>
Simon Glassb3c12562017-03-31 08:40:35 -060056#include <linux/errno.h>
Simon Glassc45e3592013-03-11 06:49:53 +000057
58/*
59 * Pointer to initial global data area
60 *
61 * Here we initialize it if needed.
62 */
63#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
64#undef XTRN_DECLARE_GLOBAL_DATA_PTR
65#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Mario Six80b66dd2018-01-15 11:10:02 +010066DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
Simon Glassc45e3592013-03-11 06:49:53 +000067#else
68DECLARE_GLOBAL_DATA_PTR;
69#endif
70
71/*
Simon Glass839855c2015-04-28 20:25:03 -060072 * TODO(sjg@chromium.org): IMO this code should be
Simon Glassc45e3592013-03-11 06:49:53 +000073 * refactored to a single function, something like:
74 *
75 * void led_set_state(enum led_colour_t colour, int on);
76 */
77/************************************************************************
78 * Coloured LED functionality
79 ************************************************************************
80 * May be supplied by boards if desired
81 */
Jeroen Hofsteea802b982014-06-23 23:20:19 +020082__weak void coloured_LED_init(void) {}
83__weak void red_led_on(void) {}
84__weak void red_led_off(void) {}
85__weak void green_led_on(void) {}
86__weak void green_led_off(void) {}
87__weak void yellow_led_on(void) {}
88__weak void yellow_led_off(void) {}
89__weak void blue_led_on(void) {}
90__weak void blue_led_off(void) {}
Simon Glassc45e3592013-03-11 06:49:53 +000091
92/*
93 * Why is gd allocated a register? Prior to reloc it might be better to
94 * just pass it around to each function in this file?
95 *
96 * After reloc one could argue that it is hardly used and doesn't need
97 * to be in a register. Or if it is it should perhaps hold pointers to all
98 * global data for all modules, so that post-reloc we can avoid the massive
99 * literal pool we get on ARM. Or perhaps just encourage each module to use
100 * a structure...
101 */
102
Sonic Zhangf503a522014-07-17 19:01:34 +0800103#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glass50250b52013-03-11 14:30:42 +0000104static int init_func_watchdog_init(void)
105{
Tom Rini210ebce2017-03-14 11:08:10 -0400106# if defined(CONFIG_HW_WATCHDOG) && \
107 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -0700108 defined(CONFIG_SH) || \
Anatolij Gustschin87db2942016-06-13 14:24:23 +0200109 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roeseee86af22015-03-10 08:04:36 +0100110 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangf503a522014-07-17 19:01:34 +0800111 hw_watchdog_init();
Simon Glass50250b52013-03-11 14:30:42 +0000112 puts(" Watchdog enabled\n");
Anatolij Gustschind3aa98a2016-06-13 14:24:24 +0200113# endif
Simon Glass50250b52013-03-11 14:30:42 +0000114 WATCHDOG_RESET();
115
116 return 0;
117}
118
119int init_func_watchdog_reset(void)
120{
121 WATCHDOG_RESET();
122
123 return 0;
124}
125#endif /* CONFIG_WATCHDOG */
126
Jeroen Hofstee45846052014-10-08 22:57:22 +0200127__weak void board_add_ram_info(int use_default)
Simon Glass50250b52013-03-11 14:30:42 +0000128{
129 /* please define platform specific board_add_ram_info() */
130}
131
Simon Glassc45e3592013-03-11 06:49:53 +0000132static int init_baud_rate(void)
133{
Simon Glass22c34c22017-08-03 12:22:13 -0600134 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glassc45e3592013-03-11 06:49:53 +0000135 return 0;
136}
137
138static int display_text_info(void)
139{
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600140#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100141 ulong bss_start, bss_end, text_base;
Simon Glassc45e3592013-03-11 06:49:53 +0000142
Simon Glass9c9f44a2013-03-11 07:06:48 +0000143 bss_start = (ulong)&__bss_start;
144 bss_end = (ulong)&__bss_end;
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100145
Sonic Zhangf503a522014-07-17 19:01:34 +0800146#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100147 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800148#else
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100149 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800150#endif
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100151
152 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100153 text_base, bss_start, bss_end);
Simon Glass62cf9122013-04-26 02:53:43 +0000154#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000155
Simon Glassc45e3592013-03-11 06:49:53 +0000156 return 0;
157}
158
Mario Six4481a5d2018-08-06 10:23:34 +0200159#ifdef CONFIG_SYSRESET
160static int print_resetinfo(void)
161{
162 struct udevice *dev;
163 char status[256];
164 int ret;
165
166 ret = uclass_first_device_err(UCLASS_SYSRESET, &dev);
167 if (ret) {
168 debug("%s: No sysreset device found (error: %d)\n",
169 __func__, ret);
170 /* Not all boards have sysreset drivers available during early
171 * boot, so don't fail if one can't be found.
172 */
173 return 0;
174 }
175
176 if (!sysreset_get_status(dev, status, sizeof(status)))
177 printf("%s", status);
178
179 return 0;
180}
181#endif
182
Mario Six97bbb602018-08-06 10:23:41 +0200183#if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
184static int print_cpuinfo(void)
185{
186 struct udevice *dev;
187 char desc[512];
188 int ret;
189
Ye Li28abafd2020-05-03 21:58:50 +0800190 dev = cpu_get_current_dev();
191 if (!dev) {
192 debug("%s: Could not get CPU device\n",
193 __func__);
194 return -ENODEV;
Mario Six97bbb602018-08-06 10:23:41 +0200195 }
196
197 ret = cpu_get_desc(dev, desc, sizeof(desc));
198 if (ret) {
199 debug("%s: Could not get CPU description (err = %d)\n",
200 dev->name, ret);
201 return ret;
202 }
203
Bin Mengbe2269f2018-10-10 22:06:55 -0700204 printf("CPU: %s\n", desc);
Mario Six97bbb602018-08-06 10:23:41 +0200205
206 return 0;
207}
208#endif
209
Simon Glassc45e3592013-03-11 06:49:53 +0000210static int announce_dram_init(void)
211{
212 puts("DRAM: ");
213 return 0;
214}
215
216static int show_dram_config(void)
217{
York Sun60ac15a2014-05-02 17:28:05 -0700218 unsigned long long size;
Simon Glassc45e3592013-03-11 06:49:53 +0000219 int i;
220
221 debug("\nRAM Configuration:\n");
222 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
223 size += gd->bd->bi_dram[i].size;
Bin Mengc8964482015-08-06 01:31:20 -0700224 debug("Bank #%d: %llx ", i,
225 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glassc45e3592013-03-11 06:49:53 +0000226#ifdef DEBUG
227 print_size(gd->bd->bi_dram[i].size, "\n");
228#endif
229 }
230 debug("\nDRAM: ");
Simon Glassc45e3592013-03-11 06:49:53 +0000231
Simon Glass50250b52013-03-11 14:30:42 +0000232 print_size(size, "");
233 board_add_ram_info(0);
234 putc('\n');
Simon Glassc45e3592013-03-11 06:49:53 +0000235
236 return 0;
237}
238
Simon Glass2f949c32017-03-31 08:40:32 -0600239__weak int dram_init_banksize(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000240{
Stefan Roese90cda992020-08-12 13:02:39 +0200241 gd->bd->bi_dram[0].start = gd->ram_base;
Simon Glassc45e3592013-03-11 06:49:53 +0000242 gd->bd->bi_dram[0].size = get_effective_memsize();
Simon Glass2f949c32017-03-31 08:40:32 -0600243
244 return 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000245}
246
Tom Rini52b2e262021-08-18 23:12:24 -0400247#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glass50250b52013-03-11 14:30:42 +0000248static int init_func_i2c(void)
249{
250 puts("I2C: ");
trema6612902013-09-21 18:13:34 +0200251 i2c_init_all();
Simon Glass50250b52013-03-11 14:30:42 +0000252 puts("ready\n");
253 return 0;
254}
255#endif
256
Rajesh Bhagatf7716782018-01-17 16:13:08 +0530257#if defined(CONFIG_VID)
258__weak int init_func_vid(void)
259{
260 return 0;
261}
262#endif
263
Simon Glassc45e3592013-03-11 06:49:53 +0000264static int setup_mon_len(void)
265{
Michal Simek65e915c2014-05-08 16:08:44 +0200266#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100267 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Heinrich Schuchardte7301bb2021-05-19 12:02:39 +0200268#elif defined(CONFIG_SANDBOX)
269 gd->mon_len = 0;
270#elif defined(CONFIG_EFI_APP)
Simon Glass62cf9122013-04-26 02:53:43 +0000271 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Rini210ebce2017-03-14 11:08:10 -0400272#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangf503a522014-07-17 19:01:34 +0800273 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Rick Chen3301bfc2017-12-26 13:55:58 +0800274#elif defined(CONFIG_NDS32) || defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang89299e22015-08-24 14:52:35 +0800275 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glass90632bd2016-05-14 18:49:28 -0600276#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glass50250b52013-03-11 14:30:42 +0000277 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
278 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass9c9f44a2013-03-11 07:06:48 +0000279#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000280 return 0;
281}
282
Simon Glasse14f1a22018-11-15 18:44:09 -0700283static int setup_spl_handoff(void)
284{
285#if CONFIG_IS_ENABLED(HANDOFF)
286 gd->spl_handoff = bloblist_find(BLOBLISTT_SPL_HANDOFF,
287 sizeof(struct spl_handoff));
288 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
289#endif
290
291 return 0;
292}
293
Simon Glassc45e3592013-03-11 06:49:53 +0000294__weak int arch_cpu_init(void)
295{
296 return 0;
297}
298
Paul Burton1f508dd2016-09-21 11:18:46 +0100299__weak int mach_cpu_init(void)
300{
301 return 0;
302}
303
Simon Glassc45e3592013-03-11 06:49:53 +0000304/* Get the top of usable RAM */
305__weak ulong board_get_usable_ram_top(ulong total_size)
306{
Heinrich Schuchardtf6a18be2020-05-09 21:21:14 +0200307#if defined(CONFIG_SYS_SDRAM_BASE) && CONFIG_SYS_SDRAM_BASE > 0
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700308 /*
Simon Glass839855c2015-04-28 20:25:03 -0600309 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700310 * 32-bit address space. If so, clip the usable RAM so it doesn't.
311 */
312 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
313 /*
314 * Will wrap back to top of 32-bit space when reservations
315 * are made.
316 */
317 return 0;
318#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000319 return gd->ram_top;
320}
321
322static int setup_dest_addr(void)
323{
324 debug("Monitor len: %08lX\n", gd->mon_len);
325 /*
326 * Ram is setup, size stored in gd !!
327 */
328 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun4de24ef2017-03-06 09:02:28 -0800329#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glassc45e3592013-03-11 06:49:53 +0000330 /*
331 * Subtract specified amount of memory to hide so that it won't
332 * get "touched" at all by U-Boot. By fixing up gd->ram_size
333 * the Linux kernel should now get passed the now "corrected"
York Sun4de24ef2017-03-06 09:02:28 -0800334 * memory size and won't touch it either. This should work
335 * for arch/ppc and arch/powerpc. Only Linux board ports in
336 * arch/powerpc with bootwrapper support, that recalculate the
337 * memory size from the SDRAM controller setup will have to
338 * get fixed.
Simon Glassc45e3592013-03-11 06:49:53 +0000339 */
York Sun4de24ef2017-03-06 09:02:28 -0800340 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
341#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000342#ifdef CONFIG_SYS_SDRAM_BASE
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +0530343 gd->ram_base = CONFIG_SYS_SDRAM_BASE;
Simon Glassc45e3592013-03-11 06:49:53 +0000344#endif
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +0530345 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glassc45e3592013-03-11 06:49:53 +0000346 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000347 gd->relocaddr = gd->ram_top;
Simon Glassc45e3592013-03-11 06:49:53 +0000348 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauda0afc22014-09-03 13:57:54 -0700349#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glass50250b52013-03-11 14:30:42 +0000350 /*
351 * We need to make sure the location we intend to put secondary core
352 * boot code is reserved and not used by any part of u-boot
353 */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000354 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
355 gd->relocaddr = determine_mp_bootpg(NULL);
356 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glass50250b52013-03-11 14:30:42 +0000357 }
358#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000359 return 0;
360}
361
Simon Glassc45e3592013-03-11 06:49:53 +0000362#ifdef CONFIG_PRAM
363/* reserve protected RAM */
364static int reserve_pram(void)
365{
366 ulong reg;
367
Simon Glass22c34c22017-08-03 12:22:13 -0600368 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000369 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glassc45e3592013-03-11 06:49:53 +0000370 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadad1589242013-05-27 00:37:30 +0000371 gd->relocaddr);
Simon Glassc45e3592013-03-11 06:49:53 +0000372 return 0;
373}
374#endif /* CONFIG_PRAM */
375
376/* Round memory pointer down to next 4 kB limit */
377static int reserve_round_4k(void)
378{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000379 gd->relocaddr &= ~(4096 - 1);
Simon Glassc45e3592013-03-11 06:49:53 +0000380 return 0;
381}
382
Ovidiu Panait2a2941b2020-03-29 20:57:41 +0300383__weak int arch_reserve_mmu(void)
384{
385 return 0;
386}
387
Simon Glassfce58f52016-01-18 19:52:21 -0700388static int reserve_video(void)
389{
Simon Glass70ac86c2017-03-31 08:40:30 -0600390#ifdef CONFIG_DM_VIDEO
Simon Glassfce58f52016-01-18 19:52:21 -0700391 ulong addr;
392 int ret;
393
394 addr = gd->relocaddr;
395 ret = video_reserve(&addr);
396 if (ret)
397 return ret;
Simon Glass379e41f2020-09-27 18:46:22 -0600398 debug("Reserving %luk for video at: %08lx\n",
Patrick Delaunaya73a7d32021-04-09 18:02:06 +0200399 ((unsigned long)gd->relocaddr - addr) >> 10, addr);
Simon Glassfce58f52016-01-18 19:52:21 -0700400 gd->relocaddr = addr;
Simon Glass70ac86c2017-03-31 08:40:30 -0600401#elif defined(CONFIG_LCD)
Simon Glassfce58f52016-01-18 19:52:21 -0700402# ifdef CONFIG_FB_ADDR
Simon Glassc45e3592013-03-11 06:49:53 +0000403 gd->fb_base = CONFIG_FB_ADDR;
Simon Glassfce58f52016-01-18 19:52:21 -0700404# else
Simon Glassc45e3592013-03-11 06:49:53 +0000405 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000406 gd->relocaddr = lcd_setmem(gd->relocaddr);
407 gd->fb_base = gd->relocaddr;
Simon Glassfce58f52016-01-18 19:52:21 -0700408# endif /* CONFIG_FB_ADDR */
Simon Glass70ac86c2017-03-31 08:40:30 -0600409#endif
Simon Glass50250b52013-03-11 14:30:42 +0000410
411 return 0;
412}
Simon Glass50250b52013-03-11 14:30:42 +0000413
Simon Glass1008da02016-01-18 19:52:20 -0700414static int reserve_trace(void)
415{
416#ifdef CONFIG_TRACE
417 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
418 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
Heinrich Schuchardtc960b142019-06-14 21:52:22 +0200419 debug("Reserving %luk for trace data at: %08lx\n",
420 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
Simon Glass1008da02016-01-18 19:52:20 -0700421#endif
422
423 return 0;
424}
425
Simon Glassc45e3592013-03-11 06:49:53 +0000426static int reserve_uboot(void)
427{
Alexey Brodkinc76af2a2018-05-25 16:08:14 +0300428 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
429 /*
430 * reserve memory for U-Boot code, data & bss
431 * round down to next 4 kB limit
432 */
433 gd->relocaddr -= gd->mon_len;
434 gd->relocaddr &= ~(4096 - 1);
435 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
436 /* round down to next 64 kB limit so that IVPR stays aligned */
437 gd->relocaddr &= ~(65536 - 1);
438 #endif
Simon Glassc45e3592013-03-11 06:49:53 +0000439
Alexey Brodkinc76af2a2018-05-25 16:08:14 +0300440 debug("Reserving %ldk for U-Boot at: %08lx\n",
441 gd->mon_len >> 10, gd->relocaddr);
442 }
Masahiro Yamadad1589242013-05-27 00:37:30 +0000443
444 gd->start_addr_sp = gd->relocaddr;
445
Simon Glassc45e3592013-03-11 06:49:53 +0000446 return 0;
447}
448
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100449/*
450 * reserve after start_addr_sp the requested size and make the stack pointer
451 * 16-byte aligned, this alignment is needed for cast on the reserved memory
452 * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes
453 * = ARMv8 Instruction Set Overview: quad word, 16 bytes
454 */
455static unsigned long reserve_stack_aligned(size_t size)
456{
457 return ALIGN_DOWN(gd->start_addr_sp - size, 16);
458}
459
Vikas Manocha4d49e102019-08-16 09:57:44 -0700460#ifdef CONFIG_SYS_NONCACHED_MEMORY
461static int reserve_noncached(void)
462{
Stephen Warren9b496432019-08-27 11:54:31 -0600463 /*
464 * The value of gd->start_addr_sp must match the value of malloc_start
465 * calculated in boatrd_f.c:initr_malloc(), which is passed to
466 * board_r.c:mem_malloc_init() and then used by
467 * cache.c:noncached_init()
468 *
469 * These calculations must match the code in cache.c:noncached_init()
470 */
471 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
472 MMU_SECTION_SIZE;
473 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
474 MMU_SECTION_SIZE);
Vikas Manocha4d49e102019-08-16 09:57:44 -0700475 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
476 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
477
478 return 0;
479}
480#endif
481
Simon Glassc45e3592013-03-11 06:49:53 +0000482/* reserve memory for malloc() area */
483static int reserve_malloc(void)
484{
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100485 gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN);
Simon Glassc45e3592013-03-11 06:49:53 +0000486 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100487 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Vikas Manocha4d49e102019-08-16 09:57:44 -0700488#ifdef CONFIG_SYS_NONCACHED_MEMORY
489 reserve_noncached();
490#endif
491
Simon Glassc45e3592013-03-11 06:49:53 +0000492 return 0;
493}
494
495/* (permanently) allocate a Board Info struct */
496static int reserve_board(void)
497{
Sonic Zhangf503a522014-07-17 19:01:34 +0800498 if (!gd->bd) {
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900499 gd->start_addr_sp = reserve_stack_aligned(sizeof(struct bd_info));
500 gd->bd = (struct bd_info *)map_sysmem(gd->start_addr_sp,
501 sizeof(struct bd_info));
502 memset(gd->bd, '\0', sizeof(struct bd_info));
Sonic Zhangf503a522014-07-17 19:01:34 +0800503 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900504 sizeof(struct bd_info), gd->start_addr_sp);
Sonic Zhangf503a522014-07-17 19:01:34 +0800505 }
Simon Glassc45e3592013-03-11 06:49:53 +0000506 return 0;
507}
508
Simon Glassc45e3592013-03-11 06:49:53 +0000509static int reserve_global_data(void)
510{
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100511 gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t));
Masahiro Yamadad1589242013-05-27 00:37:30 +0000512 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glassc45e3592013-03-11 06:49:53 +0000513 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100514 sizeof(gd_t), gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000515 return 0;
516}
517
518static int reserve_fdt(void)
519{
Ovidiu Panaitb6225b52020-11-28 10:43:07 +0200520 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
521 /*
522 * If the device tree is sitting immediately above our image
523 * then we must relocate it. If it is embedded in the data
524 * section, then it will be relocated with other data.
525 */
526 if (gd->fdt_blob) {
527 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob), 32);
Simon Glassc45e3592013-03-11 06:49:53 +0000528
Ovidiu Panaitb6225b52020-11-28 10:43:07 +0200529 gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size);
530 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
531 debug("Reserving %lu Bytes for FDT at: %08lx\n",
532 gd->fdt_size, gd->start_addr_sp);
533 }
Simon Glassc45e3592013-03-11 06:49:53 +0000534 }
535
536 return 0;
537}
538
Simon Glassb9aff922017-05-22 05:05:30 -0600539static int reserve_bootstage(void)
540{
541#ifdef CONFIG_BOOTSTAGE
542 int size = bootstage_get_size();
543
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100544 gd->start_addr_sp = reserve_stack_aligned(size);
Simon Glassb9aff922017-05-22 05:05:30 -0600545 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
546 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
547 gd->start_addr_sp);
548#endif
549
550 return 0;
551}
552
Patrick Delaunaya0a2b212018-03-13 13:57:00 +0100553__weak int arch_reserve_stacks(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000554{
Andreas Bießmann25429862015-02-06 23:06:45 +0100555 return 0;
556}
Simon Glass4d2aee82013-03-05 14:39:45 +0000557
Andreas Bießmann25429862015-02-06 23:06:45 +0100558static int reserve_stacks(void)
559{
560 /* make stack pointer 16-byte aligned */
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100561 gd->start_addr_sp = reserve_stack_aligned(16);
Simon Glassc45e3592013-03-11 06:49:53 +0000562
563 /*
Simon Glass839855c2015-04-28 20:25:03 -0600564 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann25429862015-02-06 23:06:45 +0100565 * gd->irq_sp
Simon Glassc45e3592013-03-11 06:49:53 +0000566 */
Andreas Bießmann25429862015-02-06 23:06:45 +0100567 return arch_reserve_stacks();
Simon Glassc45e3592013-03-11 06:49:53 +0000568}
569
Simon Glassa815dab2018-11-15 18:43:52 -0700570static int reserve_bloblist(void)
571{
572#ifdef CONFIG_BLOBLIST
Simon Glass9e945052020-09-27 18:46:18 -0600573 /* Align to a 4KB boundary for easier reading of addresses */
Simon Glassab7e7462021-01-13 20:29:43 -0700574 gd->start_addr_sp = ALIGN_DOWN(gd->start_addr_sp -
575 CONFIG_BLOBLIST_SIZE_RELOC, 0x1000);
576 gd->new_bloblist = map_sysmem(gd->start_addr_sp,
577 CONFIG_BLOBLIST_SIZE_RELOC);
Simon Glassa815dab2018-11-15 18:43:52 -0700578#endif
579
580 return 0;
581}
582
Simon Glassc45e3592013-03-11 06:49:53 +0000583static int display_new_sp(void)
584{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000585 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000586
587 return 0;
588}
589
Ovidiu Panait3d0b0402020-07-24 14:12:15 +0300590__weak int arch_setup_bdinfo(void)
Ovidiu Panait0c5e9a02020-07-24 14:12:14 +0300591{
592 return 0;
593}
594
Ovidiu Panait3d0b0402020-07-24 14:12:15 +0300595int setup_bdinfo(void)
596{
Ovidiu Panaita5855882020-07-24 14:12:16 +0300597 struct bd_info *bd = gd->bd;
598
Ovidiu Panait5fc60602020-07-24 14:12:17 +0300599 if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
600 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
601 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
602 }
603
Ovidiu Panait941e6e62020-11-28 10:43:06 +0200604#ifdef CONFIG_MACH_TYPE
605 bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
606#endif
607
Ovidiu Panait3d0b0402020-07-24 14:12:15 +0300608 return arch_setup_bdinfo();
609}
610
Simon Glassc45e3592013-03-11 06:49:53 +0000611#ifdef CONFIG_POST
612static int init_post(void)
613{
614 post_bootmode_init();
615 post_run(NULL, POST_ROM | post_bootmode_get(0));
616
617 return 0;
618}
619#endif
620
Simon Glassc45e3592013-03-11 06:49:53 +0000621static int reloc_fdt(void)
622{
Ovidiu Panaitb6225b52020-11-28 10:43:07 +0200623 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
624 if (gd->flags & GD_FLG_SKIP_RELOC)
625 return 0;
626 if (gd->new_fdt) {
627 memcpy(gd->new_fdt, gd->fdt_blob,
628 fdt_totalsize(gd->fdt_blob));
629 gd->fdt_blob = gd->new_fdt;
630 }
Simon Glassc45e3592013-03-11 06:49:53 +0000631 }
632
633 return 0;
634}
635
Simon Glassb9aff922017-05-22 05:05:30 -0600636static int reloc_bootstage(void)
637{
638#ifdef CONFIG_BOOTSTAGE
639 if (gd->flags & GD_FLG_SKIP_RELOC)
640 return 0;
641 if (gd->new_bootstage) {
642 int size = bootstage_get_size();
643
644 debug("Copying bootstage from %p to %p, size %x\n",
645 gd->bootstage, gd->new_bootstage, size);
646 memcpy(gd->new_bootstage, gd->bootstage, size);
647 gd->bootstage = gd->new_bootstage;
Simon Glass39d58522019-10-21 17:26:50 -0600648 bootstage_relocate();
Simon Glassb9aff922017-05-22 05:05:30 -0600649 }
650#endif
651
652 return 0;
653}
654
Simon Glassa815dab2018-11-15 18:43:52 -0700655static int reloc_bloblist(void)
656{
657#ifdef CONFIG_BLOBLIST
658 if (gd->flags & GD_FLG_SKIP_RELOC)
659 return 0;
660 if (gd->new_bloblist) {
661 int size = CONFIG_BLOBLIST_SIZE;
662
663 debug("Copying bloblist from %p to %p, size %x\n",
664 gd->bloblist, gd->new_bloblist, size);
Simon Glassab7e7462021-01-13 20:29:43 -0700665 bloblist_reloc(gd->new_bloblist, CONFIG_BLOBLIST_SIZE_RELOC,
666 gd->bloblist, size);
Simon Glassa815dab2018-11-15 18:43:52 -0700667 gd->bloblist = gd->new_bloblist;
668 }
669#endif
670
671 return 0;
672}
673
Simon Glassc45e3592013-03-11 06:49:53 +0000674static int setup_reloc(void)
675{
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100676 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
Sonic Zhangf503a522014-07-17 19:01:34 +0800677#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann160583b2017-06-08 10:18:25 +0200678#ifdef ARM
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100679 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
Lothar Waßmann160583b2017-06-08 10:18:25 +0200680#elif defined(CONFIG_M68K)
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100681 /*
682 * On all ColdFire arch cpu, monitor code starts always
683 * just after the default vector table location, so at 0x400
684 */
685 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Simon Glass752707a2019-04-08 13:20:41 -0600686#elif !defined(CONFIG_SANDBOX)
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100687 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100688#endif
Sonic Zhangf503a522014-07-17 19:01:34 +0800689#endif
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100690 }
691
Simon Glassc45e3592013-03-11 06:49:53 +0000692 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
693
Marek Vasut8c4a68e2021-11-13 18:34:04 +0100694 if (gd->flags & GD_FLG_SKIP_RELOC) {
695 debug("Skipping relocation due to flag\n");
696 } else {
697 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
698 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
699 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
700 gd->start_addr_sp);
701 }
Simon Glassc45e3592013-03-11 06:49:53 +0000702
703 return 0;
704}
705
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +0100706#ifdef CONFIG_OF_BOARD_FIXUP
707static int fix_fdt(void)
708{
709 return board_fix_fdt((void *)gd->fdt_blob);
710}
711#endif
712
Simon Glassc45e3592013-03-11 06:49:53 +0000713/* ARM calls relocate_code from its crt0.S */
Simon Glass6e1a81a2017-01-16 07:03:49 -0700714#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
715 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +0000716
717static int jump_to_copy(void)
718{
Simon Glass00dd17a2015-08-04 12:33:39 -0600719 if (gd->flags & GD_FLG_SKIP_RELOC)
720 return 0;
Simon Glass6d179872013-03-05 14:39:52 +0000721 /*
722 * x86 is special, but in a nice way. It uses a trampoline which
723 * enables the dcache if possible.
724 *
725 * For now, other archs use relocate_code(), which is implemented
726 * similarly for all archs. When we do generic relocation, hopefully
727 * we can make all archs enable the dcache prior to relocation.
728 */
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300729#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +0000730 /*
731 * SDRAM and console are now initialised. The final stack can now
732 * be setup in SDRAM. Code execution will continue in Flash, but
733 * with the stack in SDRAM and Global Data in temporary memory
734 * (CPU cache)
735 */
Simon Glass0e27b872015-08-10 20:44:32 -0600736 arch_setup_gd(gd->new_gd);
Simon Glass6d179872013-03-05 14:39:52 +0000737 board_init_f_r_trampoline(gd->start_addr_sp);
738#else
Masahiro Yamadad1589242013-05-27 00:37:30 +0000739 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +0000740#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000741
742 return 0;
743}
744#endif
745
746/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glass88200332017-05-22 05:05:25 -0600747static int initf_bootstage(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000748{
Simon Glassc55d5c32017-06-07 10:28:46 -0600749 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
750 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glass88200332017-05-22 05:05:25 -0600751 int ret;
752
Simon Glass01154cb2017-05-22 05:05:35 -0600753 ret = bootstage_init(!from_spl);
Simon Glass88200332017-05-22 05:05:25 -0600754 if (ret)
755 return ret;
Simon Glass01154cb2017-05-22 05:05:35 -0600756 if (from_spl) {
757 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
758 CONFIG_BOOTSTAGE_STASH_SIZE);
759
760 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
761 if (ret && ret != -ENOENT) {
762 debug("Failed to unstash bootstage: err=%d\n", ret);
763 return ret;
764 }
765 }
Simon Glass88200332017-05-22 05:05:25 -0600766
Simon Glassc45e3592013-03-11 06:49:53 +0000767 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
768
769 return 0;
770}
771
Simon Glassa730c5d2014-07-23 06:55:04 -0600772static int initf_dm(void)
773{
Andy Yan1fa20e4d2017-07-24 17:43:34 +0800774#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassa730c5d2014-07-23 06:55:04 -0600775 int ret;
776
Simon Glassea6a6092020-05-10 11:39:59 -0600777 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_F, "dm_f");
Simon Glassa730c5d2014-07-23 06:55:04 -0600778 ret = dm_init_and_scan(true);
Simon Glassea6a6092020-05-10 11:39:59 -0600779 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F);
Simon Glassa730c5d2014-07-23 06:55:04 -0600780 if (ret)
781 return ret;
Ovidiu Panait525a2ec2020-11-28 10:43:05 +0200782
783 if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
784 ret = dm_timer_init();
785 if (ret)
786 return ret;
787 }
Simon Glass8e4f80f2016-02-24 09:14:50 -0700788#endif
Simon Glassa730c5d2014-07-23 06:55:04 -0600789
790 return 0;
791}
792
Simon Glass5ded7e52015-01-19 22:16:12 -0700793/* Architecture-specific memory reservation */
794__weak int reserve_arch(void)
795{
796 return 0;
797}
798
Simon Glass7af8d052015-03-05 12:25:16 -0700799__weak int arch_cpu_init_dm(void)
800{
801 return 0;
802}
803
Ovidiu Panait8e0319f2020-01-22 22:28:25 +0200804__weak int checkcpu(void)
805{
806 return 0;
807}
808
Ovidiu Panaitc508b272020-02-05 08:54:42 +0200809__weak int clear_bss(void)
810{
811 return 0;
812}
813
Simon Glass2031fad2017-01-16 07:03:50 -0700814static const init_fnc_t init_sequence_f[] = {
Simon Glassc45e3592013-03-11 06:49:53 +0000815 setup_mon_len,
Simon Glass26b78b22015-02-27 22:06:34 -0700816#ifdef CONFIG_OF_CONTROL
Simon Glassa0877672015-02-27 22:06:35 -0700817 fdtdec_setup,
Simon Glass26b78b22015-02-27 22:06:34 -0700818#endif
Heinrich Schuchardt2aecfc52019-06-02 00:53:24 +0200819#ifdef CONFIG_TRACE_EARLY
Simon Glass209a1a62013-06-11 11:14:42 -0700820 trace_early_init,
Kevin Hilman676f0192014-12-09 15:03:58 -0800821#endif
Simon Glasscfcb8862014-11-10 18:00:18 -0700822 initf_malloc,
Simon Glass55e32ba2017-12-04 13:48:28 -0700823 log_init,
Simon Glasse635af12017-05-22 05:05:31 -0600824 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glassa815dab2018-11-15 18:43:52 -0700825#ifdef CONFIG_BLOBLIST
826 bloblist_init,
827#endif
Simon Glasse14f1a22018-11-15 18:44:09 -0700828 setup_spl_handoff,
Ovidiu Panait85a31ac2020-11-28 10:43:04 +0200829#if defined(CONFIG_CONSOLE_RECORD_INIT_F)
830 console_record_init,
831#endif
Simon Glass295c4232017-03-28 10:27:18 -0600832#if defined(CONFIG_HAVE_FSP)
833 arch_fsp_init,
Bin Meng178f8972015-08-20 06:40:18 -0700834#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000835 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton1f508dd2016-09-21 11:18:46 +0100836 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass6df5de22014-09-03 17:36:59 -0600837 initf_dm,
Simon Glass7af8d052015-03-05 12:25:16 -0700838 arch_cpu_init_dm,
Simon Glassc45e3592013-03-11 06:49:53 +0000839#if defined(CONFIG_BOARD_EARLY_INIT_F)
840 board_early_init_f,
841#endif
Simon Glass6829d8c2017-03-28 10:27:26 -0600842#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glass70064a72017-03-28 10:27:19 -0600843 /* get CPU and bus clocks according to the environment variable */
Simon Glass50250b52013-03-11 14:30:42 +0000844 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glasse8d20d42017-03-28 10:27:23 -0600845#endif
Angelo Dureghellocd226852017-05-10 23:58:06 +0200846#if !defined(CONFIG_M68K)
Simon Glassc45e3592013-03-11 06:49:53 +0000847 timer_init, /* initialize timer */
Angelo Dureghellocd226852017-05-10 23:58:06 +0200848#endif
Simon Glass50250b52013-03-11 14:30:42 +0000849#if defined(CONFIG_BOARD_POSTCLK_INIT)
850 board_postclk_init,
851#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000852 env_init, /* initialize environment */
853 init_baud_rate, /* initialze baudrate settings */
854 serial_init, /* serial communications setup */
855 console_init_f, /* stage 1 init of console */
856 display_options, /* say that we are here */
857 display_text_info, /* show debugging info if required */
Simon Glass50250b52013-03-11 14:30:42 +0000858 checkcpu,
Mario Six4481a5d2018-08-06 10:23:34 +0200859#if defined(CONFIG_SYSRESET)
860 print_resetinfo,
861#endif
Simon Glass68c1d012017-01-23 13:31:25 -0700862#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glassc45e3592013-03-11 06:49:53 +0000863 print_cpuinfo, /* display cpu info (and speed) */
Simon Glass68c1d012017-01-23 13:31:25 -0700864#endif
Cooper Jr., Franklind8b354a2017-06-16 17:25:12 -0500865#if defined(CONFIG_DTB_RESELECT)
866 embedded_dtb_select,
867#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000868#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada9607f7a2015-01-14 17:07:05 +0900869 show_board_info,
Simon Glassc45e3592013-03-11 06:49:53 +0000870#endif
Simon Glass50250b52013-03-11 14:30:42 +0000871 INIT_FUNC_WATCHDOG_INIT
872#if defined(CONFIG_MISC_INIT_F)
873 misc_init_f,
874#endif
875 INIT_FUNC_WATCHDOG_RESET
Tom Rini52b2e262021-08-18 23:12:24 -0400876#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
Simon Glass50250b52013-03-11 14:30:42 +0000877 init_func_i2c,
878#endif
Rajesh Bhagatf7716782018-01-17 16:13:08 +0530879#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
880 init_func_vid,
881#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000882 announce_dram_init,
Simon Glassc45e3592013-03-11 06:49:53 +0000883 dram_init, /* configure available RAM banks */
Simon Glass50250b52013-03-11 14:30:42 +0000884#ifdef CONFIG_POST
885 post_init_f,
886#endif
887 INIT_FUNC_WATCHDOG_RESET
888#if defined(CONFIG_SYS_DRAM_TEST)
889 testdram,
890#endif /* CONFIG_SYS_DRAM_TEST */
891 INIT_FUNC_WATCHDOG_RESET
892
Simon Glassc45e3592013-03-11 06:49:53 +0000893#ifdef CONFIG_POST
894 init_post,
895#endif
Simon Glass50250b52013-03-11 14:30:42 +0000896 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +0000897 /*
898 * Now that we have DRAM mapped and working, we can
899 * relocate the code and continue running from DRAM.
900 *
901 * Reserve memory at end of RAM for (top down in that order):
902 * - area that won't get touched by U-Boot and Linux (optional)
903 * - kernel log buffer
904 * - protected RAM
905 * - LCD framebuffer
906 * - monitor code
907 * - board info struct
908 */
909 setup_dest_addr,
Pragnesh Patelad51fec2020-08-13 10:12:26 +0530910#ifdef CONFIG_OF_BOARD_FIXUP
911 fix_fdt,
912#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000913#ifdef CONFIG_PRAM
914 reserve_pram,
915#endif
916 reserve_round_4k,
Ovidiu Panait2a2941b2020-03-29 20:57:41 +0300917 arch_reserve_mmu,
Simon Glassfce58f52016-01-18 19:52:21 -0700918 reserve_video,
Simon Glass1008da02016-01-18 19:52:20 -0700919 reserve_trace,
Simon Glassc45e3592013-03-11 06:49:53 +0000920 reserve_uboot,
921 reserve_malloc,
922 reserve_board,
Simon Glassc45e3592013-03-11 06:49:53 +0000923 reserve_global_data,
924 reserve_fdt,
Simon Glassb9aff922017-05-22 05:05:30 -0600925 reserve_bootstage,
Simon Glassa815dab2018-11-15 18:43:52 -0700926 reserve_bloblist,
Simon Glass5ded7e52015-01-19 22:16:12 -0700927 reserve_arch,
Simon Glassc45e3592013-03-11 06:49:53 +0000928 reserve_stacks,
Simon Glass2f949c32017-03-31 08:40:32 -0600929 dram_init_banksize,
Simon Glassc45e3592013-03-11 06:49:53 +0000930 show_dram_config,
Simon Glass50250b52013-03-11 14:30:42 +0000931 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panait6183c8d2020-07-24 14:12:20 +0300932 setup_bdinfo,
Simon Glassc45e3592013-03-11 06:49:53 +0000933 display_new_sp,
Simon Glass50250b52013-03-11 14:30:42 +0000934 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +0000935 reloc_fdt,
Simon Glassb9aff922017-05-22 05:05:30 -0600936 reloc_bootstage,
Simon Glassa815dab2018-11-15 18:43:52 -0700937 reloc_bloblist,
Simon Glassc45e3592013-03-11 06:49:53 +0000938 setup_reloc,
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300939#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glassd50b2f42015-01-01 16:18:09 -0700940 copy_uboot_to_ram,
Simon Glassd50b2f42015-01-01 16:18:09 -0700941 do_elf_reloc_fixups,
942#endif
Chris Zankel41e37372016-08-10 18:36:43 +0300943 clear_bss,
Simon Glass6e1a81a2017-01-16 07:03:49 -0700944#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
945 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +0000946 jump_to_copy,
947#endif
948 NULL,
949};
950
951void board_init_f(ulong boot_flags)
952{
Simon Glassc45e3592013-03-11 06:49:53 +0000953 gd->flags = boot_flags;
Alexey Brodkin07236912013-11-27 22:32:40 +0400954 gd->have_console = 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000955
956 if (initcall_run_list(init_sequence_f))
957 hang();
958
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600959#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkinc157ab92015-12-16 19:24:10 +0300960 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
961 !defined(CONFIG_ARC)
Simon Glassc45e3592013-03-11 06:49:53 +0000962 /* NOTREACHED - jump_to_copy() does not return */
963 hang();
964#endif
965}
Simon Glass6d179872013-03-05 14:39:52 +0000966
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300967#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +0000968/*
969 * For now this code is only used on x86.
970 *
971 * init_sequence_f_r is the list of init functions which are run when
972 * U-Boot is executing from Flash with a semi-limited 'C' environment.
973 * The following limitations must be considered when implementing an
974 * '_f_r' function:
975 * - 'static' variables are read-only
976 * - Global Data (gd->xxx) is read/write
977 *
978 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
979 * supported). It _should_, if possible, copy global data to RAM and
980 * initialise the CPU caches (to speed up the relocation process)
981 *
982 * NOTE: At present only x86 uses this route, but it is intended that
983 * all archs will move to this when generic relocation is implemented.
984 */
Simon Glass2031fad2017-01-16 07:03:50 -0700985static const init_fnc_t init_sequence_f_r[] = {
Simon Glass6e1a81a2017-01-16 07:03:49 -0700986#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass6d179872013-03-05 14:39:52 +0000987 init_cache_f_r,
Simon Glass6e1a81a2017-01-16 07:03:49 -0700988#endif
Simon Glass6d179872013-03-05 14:39:52 +0000989
990 NULL,
991};
992
993void board_init_f_r(void)
994{
995 if (initcall_run_list(init_sequence_f_r))
996 hang();
997
998 /*
Simon Glass51f73f12016-03-11 22:06:51 -0700999 * The pre-relocation drivers may be using memory that has now gone
1000 * away. Mark serial as unavailable - this will fall back to the debug
1001 * UART if available.
Simon Glass55e32ba2017-12-04 13:48:28 -07001002 *
1003 * Do the same with log drivers since the memory may not be available.
Simon Glass51f73f12016-03-11 22:06:51 -07001004 */
Simon Glass55e32ba2017-12-04 13:48:28 -07001005 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glassb77fe1f2017-09-05 19:49:45 -06001006#ifdef CONFIG_TIMER
1007 gd->timer = NULL;
1008#endif
Simon Glass51f73f12016-03-11 22:06:51 -07001009
1010 /*
Simon Glass6d179872013-03-05 14:39:52 +00001011 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1012 * Transfer execution from Flash to RAM by calculating the address
1013 * of the in-RAM copy of board_init_r() and calling it
1014 */
Alexey Brodkin9c832f12015-02-25 17:59:02 +03001015 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +00001016
1017 /* NOTREACHED - board_init_r() does not return */
1018 hang();
1019}
Alexey Brodkin73503182015-03-24 11:12:47 +03001020#endif /* CONFIG_X86 */