blob: 43564314886b77f34e273ee02740609f9abc24c7 [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 Glassc45e3592013-03-11 06:49:53 +000052#include <asm/io.h>
53#include <asm/sections.h>
Simon Glassa730c5d2014-07-23 06:55:04 -060054#include <dm/root.h>
Simon Glassb3c12562017-03-31 08:40:35 -060055#include <linux/errno.h>
Simon Glassc45e3592013-03-11 06:49:53 +000056
57/*
58 * Pointer to initial global data area
59 *
60 * Here we initialize it if needed.
61 */
62#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
63#undef XTRN_DECLARE_GLOBAL_DATA_PTR
64#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Mario Six80b66dd2018-01-15 11:10:02 +010065DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
Simon Glassc45e3592013-03-11 06:49:53 +000066#else
67DECLARE_GLOBAL_DATA_PTR;
68#endif
69
70/*
Simon Glass839855c2015-04-28 20:25:03 -060071 * TODO(sjg@chromium.org): IMO this code should be
Simon Glassc45e3592013-03-11 06:49:53 +000072 * refactored to a single function, something like:
73 *
74 * void led_set_state(enum led_colour_t colour, int on);
75 */
76/************************************************************************
77 * Coloured LED functionality
78 ************************************************************************
79 * May be supplied by boards if desired
80 */
Jeroen Hofsteea802b982014-06-23 23:20:19 +020081__weak void coloured_LED_init(void) {}
82__weak void red_led_on(void) {}
83__weak void red_led_off(void) {}
84__weak void green_led_on(void) {}
85__weak void green_led_off(void) {}
86__weak void yellow_led_on(void) {}
87__weak void yellow_led_off(void) {}
88__weak void blue_led_on(void) {}
89__weak void blue_led_off(void) {}
Simon Glassc45e3592013-03-11 06:49:53 +000090
91/*
92 * Why is gd allocated a register? Prior to reloc it might be better to
93 * just pass it around to each function in this file?
94 *
95 * After reloc one could argue that it is hardly used and doesn't need
96 * to be in a register. Or if it is it should perhaps hold pointers to all
97 * global data for all modules, so that post-reloc we can avoid the massive
98 * literal pool we get on ARM. Or perhaps just encourage each module to use
99 * a structure...
100 */
101
Sonic Zhangf503a522014-07-17 19:01:34 +0800102#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glass50250b52013-03-11 14:30:42 +0000103static int init_func_watchdog_init(void)
104{
Tom Rini210ebce2017-03-14 11:08:10 -0400105# if defined(CONFIG_HW_WATCHDOG) && \
106 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -0700107 defined(CONFIG_SH) || \
Anatolij Gustschin87db2942016-06-13 14:24:23 +0200108 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roeseee86af22015-03-10 08:04:36 +0100109 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangf503a522014-07-17 19:01:34 +0800110 hw_watchdog_init();
Simon Glass50250b52013-03-11 14:30:42 +0000111 puts(" Watchdog enabled\n");
Anatolij Gustschind3aa98a2016-06-13 14:24:24 +0200112# endif
Simon Glass50250b52013-03-11 14:30:42 +0000113 WATCHDOG_RESET();
114
115 return 0;
116}
117
118int init_func_watchdog_reset(void)
119{
120 WATCHDOG_RESET();
121
122 return 0;
123}
124#endif /* CONFIG_WATCHDOG */
125
Jeroen Hofstee45846052014-10-08 22:57:22 +0200126__weak void board_add_ram_info(int use_default)
Simon Glass50250b52013-03-11 14:30:42 +0000127{
128 /* please define platform specific board_add_ram_info() */
129}
130
Simon Glassc45e3592013-03-11 06:49:53 +0000131static int init_baud_rate(void)
132{
Simon Glass22c34c22017-08-03 12:22:13 -0600133 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glassc45e3592013-03-11 06:49:53 +0000134 return 0;
135}
136
137static int display_text_info(void)
138{
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600139#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100140 ulong bss_start, bss_end, text_base;
Simon Glassc45e3592013-03-11 06:49:53 +0000141
Simon Glass9c9f44a2013-03-11 07:06:48 +0000142 bss_start = (ulong)&__bss_start;
143 bss_end = (ulong)&__bss_end;
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100144
Sonic Zhangf503a522014-07-17 19:01:34 +0800145#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100146 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800147#else
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100148 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800149#endif
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100150
151 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100152 text_base, bss_start, bss_end);
Simon Glass62cf9122013-04-26 02:53:43 +0000153#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000154
Simon Glassc45e3592013-03-11 06:49:53 +0000155 return 0;
156}
157
Mario Six4481a5d2018-08-06 10:23:34 +0200158#ifdef CONFIG_SYSRESET
159static int print_resetinfo(void)
160{
161 struct udevice *dev;
162 char status[256];
163 int ret;
164
165 ret = uclass_first_device_err(UCLASS_SYSRESET, &dev);
166 if (ret) {
167 debug("%s: No sysreset device found (error: %d)\n",
168 __func__, ret);
169 /* Not all boards have sysreset drivers available during early
170 * boot, so don't fail if one can't be found.
171 */
172 return 0;
173 }
174
175 if (!sysreset_get_status(dev, status, sizeof(status)))
176 printf("%s", status);
177
178 return 0;
179}
180#endif
181
Mario Six97bbb602018-08-06 10:23:41 +0200182#if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
183static int print_cpuinfo(void)
184{
185 struct udevice *dev;
186 char desc[512];
187 int ret;
188
Ye Li28abafd2020-05-03 21:58:50 +0800189 dev = cpu_get_current_dev();
190 if (!dev) {
191 debug("%s: Could not get CPU device\n",
192 __func__);
193 return -ENODEV;
Mario Six97bbb602018-08-06 10:23:41 +0200194 }
195
196 ret = cpu_get_desc(dev, desc, sizeof(desc));
197 if (ret) {
198 debug("%s: Could not get CPU description (err = %d)\n",
199 dev->name, ret);
200 return ret;
201 }
202
Bin Mengbe2269f2018-10-10 22:06:55 -0700203 printf("CPU: %s\n", desc);
Mario Six97bbb602018-08-06 10:23:41 +0200204
205 return 0;
206}
207#endif
208
Simon Glassc45e3592013-03-11 06:49:53 +0000209static int announce_dram_init(void)
210{
211 puts("DRAM: ");
212 return 0;
213}
214
215static int show_dram_config(void)
216{
York Sun60ac15a2014-05-02 17:28:05 -0700217 unsigned long long size;
Simon Glassc45e3592013-03-11 06:49:53 +0000218
219#ifdef CONFIG_NR_DRAM_BANKS
220 int i;
221
222 debug("\nRAM Configuration:\n");
223 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
224 size += gd->bd->bi_dram[i].size;
Bin Mengc8964482015-08-06 01:31:20 -0700225 debug("Bank #%d: %llx ", i,
226 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glassc45e3592013-03-11 06:49:53 +0000227#ifdef DEBUG
228 print_size(gd->bd->bi_dram[i].size, "\n");
229#endif
230 }
231 debug("\nDRAM: ");
232#else
233 size = gd->ram_size;
234#endif
235
Simon Glass50250b52013-03-11 14:30:42 +0000236 print_size(size, "");
237 board_add_ram_info(0);
238 putc('\n');
Simon Glassc45e3592013-03-11 06:49:53 +0000239
240 return 0;
241}
242
Simon Glass2f949c32017-03-31 08:40:32 -0600243__weak int dram_init_banksize(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000244{
245#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
246 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
247 gd->bd->bi_dram[0].size = get_effective_memsize();
248#endif
Simon Glass2f949c32017-03-31 08:40:32 -0600249
250 return 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000251}
252
Simon Glass1a46a722017-05-12 21:09:56 -0600253#if defined(CONFIG_SYS_I2C)
Simon Glass50250b52013-03-11 14:30:42 +0000254static int init_func_i2c(void)
255{
256 puts("I2C: ");
trema6612902013-09-21 18:13:34 +0200257#ifdef CONFIG_SYS_I2C
258 i2c_init_all();
259#else
Simon Glass50250b52013-03-11 14:30:42 +0000260 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trema6612902013-09-21 18:13:34 +0200261#endif
Simon Glass50250b52013-03-11 14:30:42 +0000262 puts("ready\n");
263 return 0;
264}
265#endif
266
Rajesh Bhagatf7716782018-01-17 16:13:08 +0530267#if defined(CONFIG_VID)
268__weak int init_func_vid(void)
269{
270 return 0;
271}
272#endif
273
Simon Glassc45e3592013-03-11 06:49:53 +0000274static int setup_mon_len(void)
275{
Michal Simek65e915c2014-05-08 16:08:44 +0200276#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100277 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600278#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glass62cf9122013-04-26 02:53:43 +0000279 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Rini210ebce2017-03-14 11:08:10 -0400280#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangf503a522014-07-17 19:01:34 +0800281 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Rick Chen3301bfc2017-12-26 13:55:58 +0800282#elif defined(CONFIG_NDS32) || defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang89299e22015-08-24 14:52:35 +0800283 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glass90632bd2016-05-14 18:49:28 -0600284#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glass50250b52013-03-11 14:30:42 +0000285 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
286 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass9c9f44a2013-03-11 07:06:48 +0000287#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000288 return 0;
289}
290
Simon Glasse14f1a22018-11-15 18:44:09 -0700291static int setup_spl_handoff(void)
292{
293#if CONFIG_IS_ENABLED(HANDOFF)
294 gd->spl_handoff = bloblist_find(BLOBLISTT_SPL_HANDOFF,
295 sizeof(struct spl_handoff));
296 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
297#endif
298
299 return 0;
300}
301
Simon Glassc45e3592013-03-11 06:49:53 +0000302__weak int arch_cpu_init(void)
303{
304 return 0;
305}
306
Paul Burton1f508dd2016-09-21 11:18:46 +0100307__weak int mach_cpu_init(void)
308{
309 return 0;
310}
311
Simon Glassc45e3592013-03-11 06:49:53 +0000312/* Get the top of usable RAM */
313__weak ulong board_get_usable_ram_top(ulong total_size)
314{
Heinrich Schuchardtf6a18be2020-05-09 21:21:14 +0200315#if defined(CONFIG_SYS_SDRAM_BASE) && CONFIG_SYS_SDRAM_BASE > 0
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700316 /*
Simon Glass839855c2015-04-28 20:25:03 -0600317 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700318 * 32-bit address space. If so, clip the usable RAM so it doesn't.
319 */
320 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
321 /*
322 * Will wrap back to top of 32-bit space when reservations
323 * are made.
324 */
325 return 0;
326#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000327 return gd->ram_top;
328}
329
330static int setup_dest_addr(void)
331{
332 debug("Monitor len: %08lX\n", gd->mon_len);
333 /*
334 * Ram is setup, size stored in gd !!
335 */
336 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun4de24ef2017-03-06 09:02:28 -0800337#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glassc45e3592013-03-11 06:49:53 +0000338 /*
339 * Subtract specified amount of memory to hide so that it won't
340 * get "touched" at all by U-Boot. By fixing up gd->ram_size
341 * the Linux kernel should now get passed the now "corrected"
York Sun4de24ef2017-03-06 09:02:28 -0800342 * memory size and won't touch it either. This should work
343 * for arch/ppc and arch/powerpc. Only Linux board ports in
344 * arch/powerpc with bootwrapper support, that recalculate the
345 * memory size from the SDRAM controller setup will have to
346 * get fixed.
Simon Glassc45e3592013-03-11 06:49:53 +0000347 */
York Sun4de24ef2017-03-06 09:02:28 -0800348 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
349#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000350#ifdef CONFIG_SYS_SDRAM_BASE
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +0530351 gd->ram_base = CONFIG_SYS_SDRAM_BASE;
Simon Glassc45e3592013-03-11 06:49:53 +0000352#endif
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +0530353 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glassc45e3592013-03-11 06:49:53 +0000354 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000355 gd->relocaddr = gd->ram_top;
Simon Glassc45e3592013-03-11 06:49:53 +0000356 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauda0afc22014-09-03 13:57:54 -0700357#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glass50250b52013-03-11 14:30:42 +0000358 /*
359 * We need to make sure the location we intend to put secondary core
360 * boot code is reserved and not used by any part of u-boot
361 */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000362 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
363 gd->relocaddr = determine_mp_bootpg(NULL);
364 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glass50250b52013-03-11 14:30:42 +0000365 }
366#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000367 return 0;
368}
369
Simon Glassc45e3592013-03-11 06:49:53 +0000370#ifdef CONFIG_PRAM
371/* reserve protected RAM */
372static int reserve_pram(void)
373{
374 ulong reg;
375
Simon Glass22c34c22017-08-03 12:22:13 -0600376 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000377 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glassc45e3592013-03-11 06:49:53 +0000378 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadad1589242013-05-27 00:37:30 +0000379 gd->relocaddr);
Simon Glassc45e3592013-03-11 06:49:53 +0000380 return 0;
381}
382#endif /* CONFIG_PRAM */
383
384/* Round memory pointer down to next 4 kB limit */
385static int reserve_round_4k(void)
386{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000387 gd->relocaddr &= ~(4096 - 1);
Simon Glassc45e3592013-03-11 06:49:53 +0000388 return 0;
389}
390
Ovidiu Panait2a2941b2020-03-29 20:57:41 +0300391__weak int arch_reserve_mmu(void)
392{
393 return 0;
394}
395
Simon Glassfce58f52016-01-18 19:52:21 -0700396static int reserve_video(void)
397{
Simon Glass70ac86c2017-03-31 08:40:30 -0600398#ifdef CONFIG_DM_VIDEO
Simon Glassfce58f52016-01-18 19:52:21 -0700399 ulong addr;
400 int ret;
401
402 addr = gd->relocaddr;
403 ret = video_reserve(&addr);
404 if (ret)
405 return ret;
406 gd->relocaddr = addr;
Simon Glass70ac86c2017-03-31 08:40:30 -0600407#elif defined(CONFIG_LCD)
Simon Glassfce58f52016-01-18 19:52:21 -0700408# ifdef CONFIG_FB_ADDR
Simon Glassc45e3592013-03-11 06:49:53 +0000409 gd->fb_base = CONFIG_FB_ADDR;
Simon Glassfce58f52016-01-18 19:52:21 -0700410# else
Simon Glassc45e3592013-03-11 06:49:53 +0000411 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000412 gd->relocaddr = lcd_setmem(gd->relocaddr);
413 gd->fb_base = gd->relocaddr;
Simon Glassfce58f52016-01-18 19:52:21 -0700414# endif /* CONFIG_FB_ADDR */
Simon Glass70ac86c2017-03-31 08:40:30 -0600415#endif
Simon Glass50250b52013-03-11 14:30:42 +0000416
417 return 0;
418}
Simon Glass50250b52013-03-11 14:30:42 +0000419
Simon Glass1008da02016-01-18 19:52:20 -0700420static int reserve_trace(void)
421{
422#ifdef CONFIG_TRACE
423 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
424 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
Heinrich Schuchardtc960b142019-06-14 21:52:22 +0200425 debug("Reserving %luk for trace data at: %08lx\n",
426 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
Simon Glass1008da02016-01-18 19:52:20 -0700427#endif
428
429 return 0;
430}
431
Simon Glassc45e3592013-03-11 06:49:53 +0000432static int reserve_uboot(void)
433{
Alexey Brodkinc76af2a2018-05-25 16:08:14 +0300434 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
435 /*
436 * reserve memory for U-Boot code, data & bss
437 * round down to next 4 kB limit
438 */
439 gd->relocaddr -= gd->mon_len;
440 gd->relocaddr &= ~(4096 - 1);
441 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
442 /* round down to next 64 kB limit so that IVPR stays aligned */
443 gd->relocaddr &= ~(65536 - 1);
444 #endif
Simon Glassc45e3592013-03-11 06:49:53 +0000445
Alexey Brodkinc76af2a2018-05-25 16:08:14 +0300446 debug("Reserving %ldk for U-Boot at: %08lx\n",
447 gd->mon_len >> 10, gd->relocaddr);
448 }
Masahiro Yamadad1589242013-05-27 00:37:30 +0000449
450 gd->start_addr_sp = gd->relocaddr;
451
Simon Glassc45e3592013-03-11 06:49:53 +0000452 return 0;
453}
454
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100455/*
456 * reserve after start_addr_sp the requested size and make the stack pointer
457 * 16-byte aligned, this alignment is needed for cast on the reserved memory
458 * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes
459 * = ARMv8 Instruction Set Overview: quad word, 16 bytes
460 */
461static unsigned long reserve_stack_aligned(size_t size)
462{
463 return ALIGN_DOWN(gd->start_addr_sp - size, 16);
464}
465
Vikas Manocha4d49e102019-08-16 09:57:44 -0700466#ifdef CONFIG_SYS_NONCACHED_MEMORY
467static int reserve_noncached(void)
468{
Stephen Warren9b496432019-08-27 11:54:31 -0600469 /*
470 * The value of gd->start_addr_sp must match the value of malloc_start
471 * calculated in boatrd_f.c:initr_malloc(), which is passed to
472 * board_r.c:mem_malloc_init() and then used by
473 * cache.c:noncached_init()
474 *
475 * These calculations must match the code in cache.c:noncached_init()
476 */
477 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
478 MMU_SECTION_SIZE;
479 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
480 MMU_SECTION_SIZE);
Vikas Manocha4d49e102019-08-16 09:57:44 -0700481 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
482 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
483
484 return 0;
485}
486#endif
487
Simon Glassc45e3592013-03-11 06:49:53 +0000488/* reserve memory for malloc() area */
489static int reserve_malloc(void)
490{
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100491 gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN);
Simon Glassc45e3592013-03-11 06:49:53 +0000492 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100493 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Vikas Manocha4d49e102019-08-16 09:57:44 -0700494#ifdef CONFIG_SYS_NONCACHED_MEMORY
495 reserve_noncached();
496#endif
497
Simon Glassc45e3592013-03-11 06:49:53 +0000498 return 0;
499}
500
501/* (permanently) allocate a Board Info struct */
502static int reserve_board(void)
503{
Sonic Zhangf503a522014-07-17 19:01:34 +0800504 if (!gd->bd) {
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900505 gd->start_addr_sp = reserve_stack_aligned(sizeof(struct bd_info));
506 gd->bd = (struct bd_info *)map_sysmem(gd->start_addr_sp,
507 sizeof(struct bd_info));
508 memset(gd->bd, '\0', sizeof(struct bd_info));
Sonic Zhangf503a522014-07-17 19:01:34 +0800509 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900510 sizeof(struct bd_info), gd->start_addr_sp);
Sonic Zhangf503a522014-07-17 19:01:34 +0800511 }
Simon Glassc45e3592013-03-11 06:49:53 +0000512 return 0;
513}
514
515static int setup_machine(void)
516{
517#ifdef CONFIG_MACH_TYPE
518 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
519#endif
520 return 0;
521}
522
523static int reserve_global_data(void)
524{
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100525 gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t));
Masahiro Yamadad1589242013-05-27 00:37:30 +0000526 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glassc45e3592013-03-11 06:49:53 +0000527 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100528 sizeof(gd_t), gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000529 return 0;
530}
531
532static int reserve_fdt(void)
533{
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100534#ifndef CONFIG_OF_EMBED
Simon Glassc45e3592013-03-11 06:49:53 +0000535 /*
Simon Glass839855c2015-04-28 20:25:03 -0600536 * If the device tree is sitting immediately above our image then we
Simon Glassc45e3592013-03-11 06:49:53 +0000537 * must relocate it. If it is embedded in the data section, then it
538 * will be relocated with other data.
539 */
540 if (gd->fdt_blob) {
Ashok Reddy Soma585ac8d2020-04-06 07:58:30 -0600541 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob), 32);
Simon Glassc45e3592013-03-11 06:49:53 +0000542
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100543 gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000544 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glass62cf9122013-04-26 02:53:43 +0000545 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000546 gd->fdt_size, gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000547 }
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100548#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000549
550 return 0;
551}
552
Simon Glassb9aff922017-05-22 05:05:30 -0600553static int reserve_bootstage(void)
554{
555#ifdef CONFIG_BOOTSTAGE
556 int size = bootstage_get_size();
557
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100558 gd->start_addr_sp = reserve_stack_aligned(size);
Simon Glassb9aff922017-05-22 05:05:30 -0600559 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
560 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
561 gd->start_addr_sp);
562#endif
563
564 return 0;
565}
566
Patrick Delaunaya0a2b212018-03-13 13:57:00 +0100567__weak int arch_reserve_stacks(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000568{
Andreas Bießmann25429862015-02-06 23:06:45 +0100569 return 0;
570}
Simon Glass4d2aee82013-03-05 14:39:45 +0000571
Andreas Bießmann25429862015-02-06 23:06:45 +0100572static int reserve_stacks(void)
573{
574 /* make stack pointer 16-byte aligned */
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100575 gd->start_addr_sp = reserve_stack_aligned(16);
Simon Glassc45e3592013-03-11 06:49:53 +0000576
577 /*
Simon Glass839855c2015-04-28 20:25:03 -0600578 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann25429862015-02-06 23:06:45 +0100579 * gd->irq_sp
Simon Glassc45e3592013-03-11 06:49:53 +0000580 */
Andreas Bießmann25429862015-02-06 23:06:45 +0100581 return arch_reserve_stacks();
Simon Glassc45e3592013-03-11 06:49:53 +0000582}
583
Simon Glassa815dab2018-11-15 18:43:52 -0700584static int reserve_bloblist(void)
585{
586#ifdef CONFIG_BLOBLIST
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100587 gd->start_addr_sp = reserve_stack_aligned(CONFIG_BLOBLIST_SIZE);
Simon Glassa815dab2018-11-15 18:43:52 -0700588 gd->new_bloblist = map_sysmem(gd->start_addr_sp, CONFIG_BLOBLIST_SIZE);
589#endif
590
591 return 0;
592}
593
Simon Glassc45e3592013-03-11 06:49:53 +0000594static int display_new_sp(void)
595{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000596 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000597
598 return 0;
599}
600
Ovidiu Panait3d0b0402020-07-24 14:12:15 +0300601__weak int arch_setup_bdinfo(void)
Ovidiu Panait0c5e9a02020-07-24 14:12:14 +0300602{
603 return 0;
604}
605
Ovidiu Panait3d0b0402020-07-24 14:12:15 +0300606int setup_bdinfo(void)
607{
608 return arch_setup_bdinfo();
609}
610
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200611#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
612 defined(CONFIG_SH)
Simon Glass50250b52013-03-11 14:30:42 +0000613static int setup_board_part1(void)
614{
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900615 struct bd_info *bd = gd->bd;
Simon Glass50250b52013-03-11 14:30:42 +0000616
617 /*
618 * Save local variables to board info struct
619 */
Simon Glass50250b52013-03-11 14:30:42 +0000620 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
621 bd->bi_memsize = gd->ram_size; /* size in bytes */
622
623#ifdef CONFIG_SYS_SRAM_BASE
624 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
625 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
626#endif
627
Heiko Schocherd4def9b2017-06-07 17:33:11 +0200628#if defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Simon Glass50250b52013-03-11 14:30:42 +0000629 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
630#endif
Heiko Schocher6f90e582017-06-14 05:49:40 +0200631#if defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000632 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
633#endif
634#if defined(CONFIG_MPC83xx)
635 bd->bi_immrbar = CONFIG_SYS_IMMR;
636#endif
Simon Glass50250b52013-03-11 14:30:42 +0000637
638 return 0;
639}
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100640#endif
Simon Glass50250b52013-03-11 14:30:42 +0000641
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100642#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000643static int setup_board_part2(void)
644{
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900645 struct bd_info *bd = gd->bd;
Simon Glass50250b52013-03-11 14:30:42 +0000646
647 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
648 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
649#if defined(CONFIG_CPM2)
650 bd->bi_cpmfreq = gd->arch.cpm_clk;
651 bd->bi_brgfreq = gd->arch.brg_clk;
652 bd->bi_sccfreq = gd->arch.scc_clk;
653 bd->bi_vco = gd->arch.vco_out;
654#endif /* CONFIG_CPM2 */
Alison Wang8f6d8f32015-02-12 18:33:15 +0800655#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
656 bd->bi_pcifreq = gd->pci_clk;
657#endif
658#if defined(CONFIG_EXTRA_CLOCK)
659 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
660 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
661 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
662#endif
Simon Glass50250b52013-03-11 14:30:42 +0000663
664 return 0;
665}
666#endif
667
Simon Glassc45e3592013-03-11 06:49:53 +0000668#ifdef CONFIG_POST
669static int init_post(void)
670{
671 post_bootmode_init();
672 post_run(NULL, POST_ROM | post_bootmode_get(0));
673
674 return 0;
675}
676#endif
677
Simon Glassc45e3592013-03-11 06:49:53 +0000678static int reloc_fdt(void)
679{
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100680#ifndef CONFIG_OF_EMBED
Simon Glass00dd17a2015-08-04 12:33:39 -0600681 if (gd->flags & GD_FLG_SKIP_RELOC)
682 return 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000683 if (gd->new_fdt) {
Oleksandr Andrushchenko86dde172020-06-19 11:22:18 +0300684 memcpy(gd->new_fdt, gd->fdt_blob, fdt_totalsize(gd->fdt_blob));
Simon Glassc45e3592013-03-11 06:49:53 +0000685 gd->fdt_blob = gd->new_fdt;
686 }
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100687#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000688
689 return 0;
690}
691
Simon Glassb9aff922017-05-22 05:05:30 -0600692static int reloc_bootstage(void)
693{
694#ifdef CONFIG_BOOTSTAGE
695 if (gd->flags & GD_FLG_SKIP_RELOC)
696 return 0;
697 if (gd->new_bootstage) {
698 int size = bootstage_get_size();
699
700 debug("Copying bootstage from %p to %p, size %x\n",
701 gd->bootstage, gd->new_bootstage, size);
702 memcpy(gd->new_bootstage, gd->bootstage, size);
703 gd->bootstage = gd->new_bootstage;
Simon Glass39d58522019-10-21 17:26:50 -0600704 bootstage_relocate();
Simon Glassb9aff922017-05-22 05:05:30 -0600705 }
706#endif
707
708 return 0;
709}
710
Simon Glassa815dab2018-11-15 18:43:52 -0700711static int reloc_bloblist(void)
712{
713#ifdef CONFIG_BLOBLIST
714 if (gd->flags & GD_FLG_SKIP_RELOC)
715 return 0;
716 if (gd->new_bloblist) {
717 int size = CONFIG_BLOBLIST_SIZE;
718
719 debug("Copying bloblist from %p to %p, size %x\n",
720 gd->bloblist, gd->new_bloblist, size);
721 memcpy(gd->new_bloblist, gd->bloblist, size);
722 gd->bloblist = gd->new_bloblist;
723 }
724#endif
725
726 return 0;
727}
728
Simon Glassc45e3592013-03-11 06:49:53 +0000729static int setup_reloc(void)
730{
Simon Glass00dd17a2015-08-04 12:33:39 -0600731 if (gd->flags & GD_FLG_SKIP_RELOC) {
732 debug("Skipping relocation due to flag\n");
733 return 0;
734 }
735
Sonic Zhangf503a522014-07-17 19:01:34 +0800736#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann160583b2017-06-08 10:18:25 +0200737#ifdef ARM
738 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
739#elif defined(CONFIG_M68K)
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100740 /*
741 * On all ColdFire arch cpu, monitor code starts always
742 * just after the default vector table location, so at 0x400
743 */
744 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Simon Glass752707a2019-04-08 13:20:41 -0600745#elif !defined(CONFIG_SANDBOX)
Lothar Waßmann160583b2017-06-08 10:18:25 +0200746 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100747#endif
Sonic Zhangf503a522014-07-17 19:01:34 +0800748#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000749 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
750
751 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glass62cf9122013-04-26 02:53:43 +0000752 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000753 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
754 gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000755
756 return 0;
757}
758
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +0100759#ifdef CONFIG_OF_BOARD_FIXUP
760static int fix_fdt(void)
761{
762 return board_fix_fdt((void *)gd->fdt_blob);
763}
764#endif
765
Simon Glassc45e3592013-03-11 06:49:53 +0000766/* ARM calls relocate_code from its crt0.S */
Simon Glass6e1a81a2017-01-16 07:03:49 -0700767#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
768 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +0000769
770static int jump_to_copy(void)
771{
Simon Glass00dd17a2015-08-04 12:33:39 -0600772 if (gd->flags & GD_FLG_SKIP_RELOC)
773 return 0;
Simon Glass6d179872013-03-05 14:39:52 +0000774 /*
775 * x86 is special, but in a nice way. It uses a trampoline which
776 * enables the dcache if possible.
777 *
778 * For now, other archs use relocate_code(), which is implemented
779 * similarly for all archs. When we do generic relocation, hopefully
780 * we can make all archs enable the dcache prior to relocation.
781 */
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300782#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +0000783 /*
784 * SDRAM and console are now initialised. The final stack can now
785 * be setup in SDRAM. Code execution will continue in Flash, but
786 * with the stack in SDRAM and Global Data in temporary memory
787 * (CPU cache)
788 */
Simon Glass0e27b872015-08-10 20:44:32 -0600789 arch_setup_gd(gd->new_gd);
Simon Glass6d179872013-03-05 14:39:52 +0000790 board_init_f_r_trampoline(gd->start_addr_sp);
791#else
Masahiro Yamadad1589242013-05-27 00:37:30 +0000792 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +0000793#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000794
795 return 0;
796}
797#endif
798
799/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glass88200332017-05-22 05:05:25 -0600800static int initf_bootstage(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000801{
Simon Glassc55d5c32017-06-07 10:28:46 -0600802 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
803 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glass88200332017-05-22 05:05:25 -0600804 int ret;
805
Simon Glass01154cb2017-05-22 05:05:35 -0600806 ret = bootstage_init(!from_spl);
Simon Glass88200332017-05-22 05:05:25 -0600807 if (ret)
808 return ret;
Simon Glass01154cb2017-05-22 05:05:35 -0600809 if (from_spl) {
810 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
811 CONFIG_BOOTSTAGE_STASH_SIZE);
812
813 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
814 if (ret && ret != -ENOENT) {
815 debug("Failed to unstash bootstage: err=%d\n", ret);
816 return ret;
817 }
818 }
Simon Glass88200332017-05-22 05:05:25 -0600819
Simon Glassc45e3592013-03-11 06:49:53 +0000820 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
821
822 return 0;
823}
824
Simon Glass1bb49232015-11-08 23:47:48 -0700825static int initf_console_record(void)
826{
Andy Yan1fa20e4d2017-07-24 17:43:34 +0800827#if defined(CONFIG_CONSOLE_RECORD) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass1bb49232015-11-08 23:47:48 -0700828 return console_record_init();
829#else
830 return 0;
831#endif
832}
833
Simon Glassa730c5d2014-07-23 06:55:04 -0600834static int initf_dm(void)
835{
Andy Yan1fa20e4d2017-07-24 17:43:34 +0800836#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassa730c5d2014-07-23 06:55:04 -0600837 int ret;
838
Simon Glassea6a6092020-05-10 11:39:59 -0600839 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_F, "dm_f");
Simon Glassa730c5d2014-07-23 06:55:04 -0600840 ret = dm_init_and_scan(true);
Simon Glassea6a6092020-05-10 11:39:59 -0600841 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F);
Simon Glassa730c5d2014-07-23 06:55:04 -0600842 if (ret)
843 return ret;
844#endif
Simon Glass8e4f80f2016-02-24 09:14:50 -0700845#ifdef CONFIG_TIMER_EARLY
846 ret = dm_timer_init();
847 if (ret)
848 return ret;
849#endif
Simon Glassa730c5d2014-07-23 06:55:04 -0600850
851 return 0;
852}
853
Simon Glass5ded7e52015-01-19 22:16:12 -0700854/* Architecture-specific memory reservation */
855__weak int reserve_arch(void)
856{
857 return 0;
858}
859
Simon Glass7af8d052015-03-05 12:25:16 -0700860__weak int arch_cpu_init_dm(void)
861{
862 return 0;
863}
864
Ovidiu Panait8e0319f2020-01-22 22:28:25 +0200865__weak int checkcpu(void)
866{
867 return 0;
868}
869
Ovidiu Panaitc508b272020-02-05 08:54:42 +0200870__weak int clear_bss(void)
871{
872 return 0;
873}
874
Simon Glass2031fad2017-01-16 07:03:50 -0700875static const init_fnc_t init_sequence_f[] = {
Simon Glassc45e3592013-03-11 06:49:53 +0000876 setup_mon_len,
Simon Glass26b78b22015-02-27 22:06:34 -0700877#ifdef CONFIG_OF_CONTROL
Simon Glassa0877672015-02-27 22:06:35 -0700878 fdtdec_setup,
Simon Glass26b78b22015-02-27 22:06:34 -0700879#endif
Heinrich Schuchardt2aecfc52019-06-02 00:53:24 +0200880#ifdef CONFIG_TRACE_EARLY
Simon Glass209a1a62013-06-11 11:14:42 -0700881 trace_early_init,
Kevin Hilman676f0192014-12-09 15:03:58 -0800882#endif
Simon Glasscfcb8862014-11-10 18:00:18 -0700883 initf_malloc,
Simon Glass55e32ba2017-12-04 13:48:28 -0700884 log_init,
Simon Glasse635af12017-05-22 05:05:31 -0600885 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glassa815dab2018-11-15 18:43:52 -0700886#ifdef CONFIG_BLOBLIST
887 bloblist_init,
888#endif
Simon Glasse14f1a22018-11-15 18:44:09 -0700889 setup_spl_handoff,
Simon Glass1bb49232015-11-08 23:47:48 -0700890 initf_console_record,
Simon Glass295c4232017-03-28 10:27:18 -0600891#if defined(CONFIG_HAVE_FSP)
892 arch_fsp_init,
Bin Meng178f8972015-08-20 06:40:18 -0700893#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000894 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton1f508dd2016-09-21 11:18:46 +0100895 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass6df5de22014-09-03 17:36:59 -0600896 initf_dm,
Simon Glass7af8d052015-03-05 12:25:16 -0700897 arch_cpu_init_dm,
Simon Glassc45e3592013-03-11 06:49:53 +0000898#if defined(CONFIG_BOARD_EARLY_INIT_F)
899 board_early_init_f,
900#endif
Simon Glass6829d8c2017-03-28 10:27:26 -0600901#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glass70064a72017-03-28 10:27:19 -0600902 /* get CPU and bus clocks according to the environment variable */
Simon Glass50250b52013-03-11 14:30:42 +0000903 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glasse8d20d42017-03-28 10:27:23 -0600904#endif
Angelo Dureghellocd226852017-05-10 23:58:06 +0200905#if !defined(CONFIG_M68K)
Simon Glassc45e3592013-03-11 06:49:53 +0000906 timer_init, /* initialize timer */
Angelo Dureghellocd226852017-05-10 23:58:06 +0200907#endif
Simon Glass50250b52013-03-11 14:30:42 +0000908#if defined(CONFIG_BOARD_POSTCLK_INIT)
909 board_postclk_init,
910#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000911 env_init, /* initialize environment */
912 init_baud_rate, /* initialze baudrate settings */
913 serial_init, /* serial communications setup */
914 console_init_f, /* stage 1 init of console */
915 display_options, /* say that we are here */
916 display_text_info, /* show debugging info if required */
Simon Glass50250b52013-03-11 14:30:42 +0000917 checkcpu,
Mario Six4481a5d2018-08-06 10:23:34 +0200918#if defined(CONFIG_SYSRESET)
919 print_resetinfo,
920#endif
Simon Glass68c1d012017-01-23 13:31:25 -0700921#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glassc45e3592013-03-11 06:49:53 +0000922 print_cpuinfo, /* display cpu info (and speed) */
Simon Glass68c1d012017-01-23 13:31:25 -0700923#endif
Cooper Jr., Franklind8b354a2017-06-16 17:25:12 -0500924#if defined(CONFIG_DTB_RESELECT)
925 embedded_dtb_select,
926#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000927#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada9607f7a2015-01-14 17:07:05 +0900928 show_board_info,
Simon Glassc45e3592013-03-11 06:49:53 +0000929#endif
Simon Glass50250b52013-03-11 14:30:42 +0000930 INIT_FUNC_WATCHDOG_INIT
931#if defined(CONFIG_MISC_INIT_F)
932 misc_init_f,
933#endif
934 INIT_FUNC_WATCHDOG_RESET
Simon Glass1a46a722017-05-12 21:09:56 -0600935#if defined(CONFIG_SYS_I2C)
Simon Glass50250b52013-03-11 14:30:42 +0000936 init_func_i2c,
937#endif
Rajesh Bhagatf7716782018-01-17 16:13:08 +0530938#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
939 init_func_vid,
940#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000941 announce_dram_init,
Simon Glassc45e3592013-03-11 06:49:53 +0000942 dram_init, /* configure available RAM banks */
Simon Glass50250b52013-03-11 14:30:42 +0000943#ifdef CONFIG_POST
944 post_init_f,
945#endif
946 INIT_FUNC_WATCHDOG_RESET
947#if defined(CONFIG_SYS_DRAM_TEST)
948 testdram,
949#endif /* CONFIG_SYS_DRAM_TEST */
950 INIT_FUNC_WATCHDOG_RESET
951
Simon Glassc45e3592013-03-11 06:49:53 +0000952#ifdef CONFIG_POST
953 init_post,
954#endif
Simon Glass50250b52013-03-11 14:30:42 +0000955 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +0000956 /*
957 * Now that we have DRAM mapped and working, we can
958 * relocate the code and continue running from DRAM.
959 *
960 * Reserve memory at end of RAM for (top down in that order):
961 * - area that won't get touched by U-Boot and Linux (optional)
962 * - kernel log buffer
963 * - protected RAM
964 * - LCD framebuffer
965 * - monitor code
966 * - board info struct
967 */
968 setup_dest_addr,
Simon Glassc45e3592013-03-11 06:49:53 +0000969#ifdef CONFIG_PRAM
970 reserve_pram,
971#endif
972 reserve_round_4k,
Ovidiu Panait2a2941b2020-03-29 20:57:41 +0300973 arch_reserve_mmu,
Simon Glassfce58f52016-01-18 19:52:21 -0700974 reserve_video,
Simon Glass1008da02016-01-18 19:52:20 -0700975 reserve_trace,
Simon Glassc45e3592013-03-11 06:49:53 +0000976 reserve_uboot,
977 reserve_malloc,
978 reserve_board,
Simon Glassc45e3592013-03-11 06:49:53 +0000979 setup_machine,
980 reserve_global_data,
981 reserve_fdt,
Simon Glassb9aff922017-05-22 05:05:30 -0600982 reserve_bootstage,
Simon Glassa815dab2018-11-15 18:43:52 -0700983 reserve_bloblist,
Simon Glass5ded7e52015-01-19 22:16:12 -0700984 reserve_arch,
Simon Glassc45e3592013-03-11 06:49:53 +0000985 reserve_stacks,
Simon Glass2f949c32017-03-31 08:40:32 -0600986 dram_init_banksize,
Simon Glassc45e3592013-03-11 06:49:53 +0000987 show_dram_config,
Ovidiu Panait0c5e9a02020-07-24 14:12:14 +0300988 setup_bdinfo,
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200989#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
990 defined(CONFIG_SH)
Simon Glass50250b52013-03-11 14:30:42 +0000991 setup_board_part1,
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100992#endif
993#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000994 INIT_FUNC_WATCHDOG_RESET
995 setup_board_part2,
996#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000997 display_new_sp,
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +0100998#ifdef CONFIG_OF_BOARD_FIXUP
999 fix_fdt,
1000#endif
Simon Glass50250b52013-03-11 14:30:42 +00001001 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +00001002 reloc_fdt,
Simon Glassb9aff922017-05-22 05:05:30 -06001003 reloc_bootstage,
Simon Glassa815dab2018-11-15 18:43:52 -07001004 reloc_bloblist,
Simon Glassc45e3592013-03-11 06:49:53 +00001005 setup_reloc,
Alexey Brodkin913e9f02015-02-24 19:40:36 +03001006#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glassd50b2f42015-01-01 16:18:09 -07001007 copy_uboot_to_ram,
Simon Glassd50b2f42015-01-01 16:18:09 -07001008 do_elf_reloc_fixups,
1009#endif
Chris Zankel41e37372016-08-10 18:36:43 +03001010 clear_bss,
Simon Glass6e1a81a2017-01-16 07:03:49 -07001011#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
1012 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +00001013 jump_to_copy,
1014#endif
1015 NULL,
1016};
1017
1018void board_init_f(ulong boot_flags)
1019{
Simon Glassc45e3592013-03-11 06:49:53 +00001020 gd->flags = boot_flags;
Alexey Brodkin07236912013-11-27 22:32:40 +04001021 gd->have_console = 0;
Simon Glassc45e3592013-03-11 06:49:53 +00001022
1023 if (initcall_run_list(init_sequence_f))
1024 hang();
1025
Ben Stoltz1930e8d2015-07-31 09:31:37 -06001026#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkinc157ab92015-12-16 19:24:10 +03001027 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
1028 !defined(CONFIG_ARC)
Simon Glassc45e3592013-03-11 06:49:53 +00001029 /* NOTREACHED - jump_to_copy() does not return */
1030 hang();
1031#endif
1032}
Simon Glass6d179872013-03-05 14:39:52 +00001033
Alexey Brodkin913e9f02015-02-24 19:40:36 +03001034#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +00001035/*
1036 * For now this code is only used on x86.
1037 *
1038 * init_sequence_f_r is the list of init functions which are run when
1039 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1040 * The following limitations must be considered when implementing an
1041 * '_f_r' function:
1042 * - 'static' variables are read-only
1043 * - Global Data (gd->xxx) is read/write
1044 *
1045 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1046 * supported). It _should_, if possible, copy global data to RAM and
1047 * initialise the CPU caches (to speed up the relocation process)
1048 *
1049 * NOTE: At present only x86 uses this route, but it is intended that
1050 * all archs will move to this when generic relocation is implemented.
1051 */
Simon Glass2031fad2017-01-16 07:03:50 -07001052static const init_fnc_t init_sequence_f_r[] = {
Simon Glass6e1a81a2017-01-16 07:03:49 -07001053#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass6d179872013-03-05 14:39:52 +00001054 init_cache_f_r,
Simon Glass6e1a81a2017-01-16 07:03:49 -07001055#endif
Simon Glass6d179872013-03-05 14:39:52 +00001056
1057 NULL,
1058};
1059
1060void board_init_f_r(void)
1061{
1062 if (initcall_run_list(init_sequence_f_r))
1063 hang();
1064
1065 /*
Simon Glass51f73f12016-03-11 22:06:51 -07001066 * The pre-relocation drivers may be using memory that has now gone
1067 * away. Mark serial as unavailable - this will fall back to the debug
1068 * UART if available.
Simon Glass55e32ba2017-12-04 13:48:28 -07001069 *
1070 * Do the same with log drivers since the memory may not be available.
Simon Glass51f73f12016-03-11 22:06:51 -07001071 */
Simon Glass55e32ba2017-12-04 13:48:28 -07001072 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glassb77fe1f2017-09-05 19:49:45 -06001073#ifdef CONFIG_TIMER
1074 gd->timer = NULL;
1075#endif
Simon Glass51f73f12016-03-11 22:06:51 -07001076
1077 /*
Simon Glass6d179872013-03-05 14:39:52 +00001078 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1079 * Transfer execution from Flash to RAM by calculating the address
1080 * of the in-RAM copy of board_init_r() and calling it
1081 */
Alexey Brodkin9c832f12015-02-25 17:59:02 +03001082 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +00001083
1084 /* NOTREACHED - board_init_r() does not return */
1085 hang();
1086}
Alexey Brodkin73503182015-03-24 11:12:47 +03001087#endif /* CONFIG_X86 */