blob: 2ec5dbaa6843c2dfd9dd7cf596c98b79e9705ff4 [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 Glass85d65312019-12-28 10:44:58 -070014#include <clock_legacy.h>
Simon Glassa73bda42015-11-08 23:47:45 -070015#include <console.h>
Mario Six97bbb602018-08-06 10:23:41 +020016#include <cpu.h>
Simon Glass1fa70f82019-11-14 12:57:34 -070017#include <cpu_func.h>
Simon Glassa730c5d2014-07-23 06:55:04 -060018#include <dm.h>
Simon Glass79fd2142019-08-01 09:46:43 -060019#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060020#include <env_internal.h>
Simon Glassc45e3592013-03-11 06:49:53 +000021#include <fdtdec.h>
Simon Glass15393432013-04-20 08:42:41 +000022#include <fs.h>
Simon Glassf11478f2019-12-28 10:45:07 -070023#include <hang.h>
Simon Glass50250b52013-03-11 14:30:42 +000024#include <i2c.h>
Simon Glass6980b6b2019-11-14 12:57:45 -070025#include <init.h>
Simon Glassc45e3592013-03-11 06:49:53 +000026#include <initcall.h>
Simon Glass42cf22f2019-08-01 09:46:38 -060027#include <lcd.h>
Simon Glassd1d087d2015-02-27 22:06:36 -070028#include <malloc.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050029#include <mapmem.h>
Simon Glass62cf9122013-04-26 02:53:43 +000030#include <os.h>
Simon Glassc45e3592013-03-11 06:49:53 +000031#include <post.h>
Simon Glass6ab91072017-03-31 08:40:38 -060032#include <relocate.h>
Simon Glass36736182019-11-14 12:57:24 -070033#include <serial.h>
Simon Glasse14f1a22018-11-15 18:44:09 -070034#ifdef CONFIG_SPL
35#include <spl.h>
36#endif
Jeroen Hofsteea802b982014-06-23 23:20:19 +020037#include <status_led.h>
Mario Six4481a5d2018-08-06 10:23:34 +020038#include <sysreset.h>
Simon Glass8e4f80f2016-02-24 09:14:50 -070039#include <timer.h>
Simon Glass209a1a62013-06-11 11:14:42 -070040#include <trace.h>
Simon Glassfce58f52016-01-18 19:52:21 -070041#include <video.h>
Simon Glass50250b52013-03-11 14:30:42 +000042#include <watchdog.h>
Simon Glassf004e8a2017-05-17 08:23:01 -060043#ifdef CONFIG_MACH_TYPE
44#include <asm/mach-types.h>
45#endif
Simon Glasse7706032017-03-31 08:40:39 -060046#if defined(CONFIG_MP) && defined(CONFIG_PPC)
47#include <asm/mp.h>
48#endif
Simon Glassc45e3592013-03-11 06:49:53 +000049#include <asm/io.h>
50#include <asm/sections.h>
Simon Glassa730c5d2014-07-23 06:55:04 -060051#include <dm/root.h>
Simon Glassb3c12562017-03-31 08:40:35 -060052#include <linux/errno.h>
Simon Glassc45e3592013-03-11 06:49:53 +000053
54/*
55 * Pointer to initial global data area
56 *
57 * Here we initialize it if needed.
58 */
59#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
60#undef XTRN_DECLARE_GLOBAL_DATA_PTR
61#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Mario Six80b66dd2018-01-15 11:10:02 +010062DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
Simon Glassc45e3592013-03-11 06:49:53 +000063#else
64DECLARE_GLOBAL_DATA_PTR;
65#endif
66
67/*
Simon Glass839855c2015-04-28 20:25:03 -060068 * TODO(sjg@chromium.org): IMO this code should be
Simon Glassc45e3592013-03-11 06:49:53 +000069 * refactored to a single function, something like:
70 *
71 * void led_set_state(enum led_colour_t colour, int on);
72 */
73/************************************************************************
74 * Coloured LED functionality
75 ************************************************************************
76 * May be supplied by boards if desired
77 */
Jeroen Hofsteea802b982014-06-23 23:20:19 +020078__weak void coloured_LED_init(void) {}
79__weak void red_led_on(void) {}
80__weak void red_led_off(void) {}
81__weak void green_led_on(void) {}
82__weak void green_led_off(void) {}
83__weak void yellow_led_on(void) {}
84__weak void yellow_led_off(void) {}
85__weak void blue_led_on(void) {}
86__weak void blue_led_off(void) {}
Simon Glassc45e3592013-03-11 06:49:53 +000087
88/*
89 * Why is gd allocated a register? Prior to reloc it might be better to
90 * just pass it around to each function in this file?
91 *
92 * After reloc one could argue that it is hardly used and doesn't need
93 * to be in a register. Or if it is it should perhaps hold pointers to all
94 * global data for all modules, so that post-reloc we can avoid the massive
95 * literal pool we get on ARM. Or perhaps just encourage each module to use
96 * a structure...
97 */
98
Sonic Zhangf503a522014-07-17 19:01:34 +080099#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glass50250b52013-03-11 14:30:42 +0000100static int init_func_watchdog_init(void)
101{
Tom Rini210ebce2017-03-14 11:08:10 -0400102# if defined(CONFIG_HW_WATCHDOG) && \
103 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -0700104 defined(CONFIG_SH) || \
Anatolij Gustschin87db2942016-06-13 14:24:23 +0200105 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roeseee86af22015-03-10 08:04:36 +0100106 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangf503a522014-07-17 19:01:34 +0800107 hw_watchdog_init();
Simon Glass50250b52013-03-11 14:30:42 +0000108 puts(" Watchdog enabled\n");
Anatolij Gustschind3aa98a2016-06-13 14:24:24 +0200109# endif
Simon Glass50250b52013-03-11 14:30:42 +0000110 WATCHDOG_RESET();
111
112 return 0;
113}
114
115int init_func_watchdog_reset(void)
116{
117 WATCHDOG_RESET();
118
119 return 0;
120}
121#endif /* CONFIG_WATCHDOG */
122
Jeroen Hofstee45846052014-10-08 22:57:22 +0200123__weak void board_add_ram_info(int use_default)
Simon Glass50250b52013-03-11 14:30:42 +0000124{
125 /* please define platform specific board_add_ram_info() */
126}
127
Simon Glassc45e3592013-03-11 06:49:53 +0000128static int init_baud_rate(void)
129{
Simon Glass22c34c22017-08-03 12:22:13 -0600130 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glassc45e3592013-03-11 06:49:53 +0000131 return 0;
132}
133
134static int display_text_info(void)
135{
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600136#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100137 ulong bss_start, bss_end, text_base;
Simon Glassc45e3592013-03-11 06:49:53 +0000138
Simon Glass9c9f44a2013-03-11 07:06:48 +0000139 bss_start = (ulong)&__bss_start;
140 bss_end = (ulong)&__bss_end;
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100141
Sonic Zhangf503a522014-07-17 19:01:34 +0800142#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100143 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800144#else
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100145 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800146#endif
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100147
148 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100149 text_base, bss_start, bss_end);
Simon Glass62cf9122013-04-26 02:53:43 +0000150#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000151
Simon Glassc45e3592013-03-11 06:49:53 +0000152 return 0;
153}
154
Mario Six4481a5d2018-08-06 10:23:34 +0200155#ifdef CONFIG_SYSRESET
156static int print_resetinfo(void)
157{
158 struct udevice *dev;
159 char status[256];
160 int ret;
161
162 ret = uclass_first_device_err(UCLASS_SYSRESET, &dev);
163 if (ret) {
164 debug("%s: No sysreset device found (error: %d)\n",
165 __func__, ret);
166 /* Not all boards have sysreset drivers available during early
167 * boot, so don't fail if one can't be found.
168 */
169 return 0;
170 }
171
172 if (!sysreset_get_status(dev, status, sizeof(status)))
173 printf("%s", status);
174
175 return 0;
176}
177#endif
178
Mario Six97bbb602018-08-06 10:23:41 +0200179#if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
180static int print_cpuinfo(void)
181{
182 struct udevice *dev;
183 char desc[512];
184 int ret;
185
186 ret = uclass_first_device_err(UCLASS_CPU, &dev);
187 if (ret) {
188 debug("%s: Could not get CPU device (err = %d)\n",
189 __func__, ret);
190 return ret;
191 }
192
193 ret = cpu_get_desc(dev, desc, sizeof(desc));
194 if (ret) {
195 debug("%s: Could not get CPU description (err = %d)\n",
196 dev->name, ret);
197 return ret;
198 }
199
Bin Mengbe2269f2018-10-10 22:06:55 -0700200 printf("CPU: %s\n", desc);
Mario Six97bbb602018-08-06 10:23:41 +0200201
202 return 0;
203}
204#endif
205
Simon Glassc45e3592013-03-11 06:49:53 +0000206static int announce_dram_init(void)
207{
208 puts("DRAM: ");
209 return 0;
210}
211
212static int show_dram_config(void)
213{
York Sun60ac15a2014-05-02 17:28:05 -0700214 unsigned long long size;
Simon Glassc45e3592013-03-11 06:49:53 +0000215
216#ifdef CONFIG_NR_DRAM_BANKS
217 int i;
218
219 debug("\nRAM Configuration:\n");
220 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
221 size += gd->bd->bi_dram[i].size;
Bin Mengc8964482015-08-06 01:31:20 -0700222 debug("Bank #%d: %llx ", i,
223 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glassc45e3592013-03-11 06:49:53 +0000224#ifdef DEBUG
225 print_size(gd->bd->bi_dram[i].size, "\n");
226#endif
227 }
228 debug("\nDRAM: ");
229#else
230 size = gd->ram_size;
231#endif
232
Simon Glass50250b52013-03-11 14:30:42 +0000233 print_size(size, "");
234 board_add_ram_info(0);
235 putc('\n');
Simon Glassc45e3592013-03-11 06:49:53 +0000236
237 return 0;
238}
239
Simon Glass2f949c32017-03-31 08:40:32 -0600240__weak int dram_init_banksize(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000241{
242#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
243 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
244 gd->bd->bi_dram[0].size = get_effective_memsize();
245#endif
Simon Glass2f949c32017-03-31 08:40:32 -0600246
247 return 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000248}
249
Simon Glass1a46a722017-05-12 21:09:56 -0600250#if defined(CONFIG_SYS_I2C)
Simon Glass50250b52013-03-11 14:30:42 +0000251static int init_func_i2c(void)
252{
253 puts("I2C: ");
trema6612902013-09-21 18:13:34 +0200254#ifdef CONFIG_SYS_I2C
255 i2c_init_all();
256#else
Simon Glass50250b52013-03-11 14:30:42 +0000257 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trema6612902013-09-21 18:13:34 +0200258#endif
Simon Glass50250b52013-03-11 14:30:42 +0000259 puts("ready\n");
260 return 0;
261}
262#endif
263
Rajesh Bhagatf7716782018-01-17 16:13:08 +0530264#if defined(CONFIG_VID)
265__weak int init_func_vid(void)
266{
267 return 0;
268}
269#endif
270
Simon Glassc45e3592013-03-11 06:49:53 +0000271static int setup_mon_len(void)
272{
Michal Simek65e915c2014-05-08 16:08:44 +0200273#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100274 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600275#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glass62cf9122013-04-26 02:53:43 +0000276 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Rini210ebce2017-03-14 11:08:10 -0400277#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangf503a522014-07-17 19:01:34 +0800278 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Rick Chen3301bfc2017-12-26 13:55:58 +0800279#elif defined(CONFIG_NDS32) || defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang89299e22015-08-24 14:52:35 +0800280 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glass90632bd2016-05-14 18:49:28 -0600281#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glass50250b52013-03-11 14:30:42 +0000282 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
283 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass9c9f44a2013-03-11 07:06:48 +0000284#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000285 return 0;
286}
287
Simon Glasse14f1a22018-11-15 18:44:09 -0700288static int setup_spl_handoff(void)
289{
290#if CONFIG_IS_ENABLED(HANDOFF)
291 gd->spl_handoff = bloblist_find(BLOBLISTT_SPL_HANDOFF,
292 sizeof(struct spl_handoff));
293 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
294#endif
295
296 return 0;
297}
298
Simon Glassc45e3592013-03-11 06:49:53 +0000299__weak int arch_cpu_init(void)
300{
301 return 0;
302}
303
Paul Burton1f508dd2016-09-21 11:18:46 +0100304__weak int mach_cpu_init(void)
305{
306 return 0;
307}
308
Simon Glassc45e3592013-03-11 06:49:53 +0000309/* Get the top of usable RAM */
310__weak ulong board_get_usable_ram_top(ulong total_size)
311{
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700312#ifdef CONFIG_SYS_SDRAM_BASE
313 /*
Simon Glass839855c2015-04-28 20:25:03 -0600314 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700315 * 32-bit address space. If so, clip the usable RAM so it doesn't.
316 */
317 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
318 /*
319 * Will wrap back to top of 32-bit space when reservations
320 * are made.
321 */
322 return 0;
323#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000324 return gd->ram_top;
325}
326
327static int setup_dest_addr(void)
328{
329 debug("Monitor len: %08lX\n", gd->mon_len);
330 /*
331 * Ram is setup, size stored in gd !!
332 */
333 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun4de24ef2017-03-06 09:02:28 -0800334#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glassc45e3592013-03-11 06:49:53 +0000335 /*
336 * Subtract specified amount of memory to hide so that it won't
337 * get "touched" at all by U-Boot. By fixing up gd->ram_size
338 * the Linux kernel should now get passed the now "corrected"
York Sun4de24ef2017-03-06 09:02:28 -0800339 * memory size and won't touch it either. This should work
340 * for arch/ppc and arch/powerpc. Only Linux board ports in
341 * arch/powerpc with bootwrapper support, that recalculate the
342 * memory size from the SDRAM controller setup will have to
343 * get fixed.
Simon Glassc45e3592013-03-11 06:49:53 +0000344 */
York Sun4de24ef2017-03-06 09:02:28 -0800345 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
346#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000347#ifdef CONFIG_SYS_SDRAM_BASE
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +0530348 gd->ram_base = CONFIG_SYS_SDRAM_BASE;
Simon Glassc45e3592013-03-11 06:49:53 +0000349#endif
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +0530350 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glassc45e3592013-03-11 06:49:53 +0000351 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000352 gd->relocaddr = gd->ram_top;
Simon Glassc45e3592013-03-11 06:49:53 +0000353 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauda0afc22014-09-03 13:57:54 -0700354#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glass50250b52013-03-11 14:30:42 +0000355 /*
356 * We need to make sure the location we intend to put secondary core
357 * boot code is reserved and not used by any part of u-boot
358 */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000359 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
360 gd->relocaddr = determine_mp_bootpg(NULL);
361 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glass50250b52013-03-11 14:30:42 +0000362 }
363#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000364 return 0;
365}
366
Simon Glassc45e3592013-03-11 06:49:53 +0000367#ifdef CONFIG_PRAM
368/* reserve protected RAM */
369static int reserve_pram(void)
370{
371 ulong reg;
372
Simon Glass22c34c22017-08-03 12:22:13 -0600373 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000374 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glassc45e3592013-03-11 06:49:53 +0000375 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadad1589242013-05-27 00:37:30 +0000376 gd->relocaddr);
Simon Glassc45e3592013-03-11 06:49:53 +0000377 return 0;
378}
379#endif /* CONFIG_PRAM */
380
381/* Round memory pointer down to next 4 kB limit */
382static int reserve_round_4k(void)
383{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000384 gd->relocaddr &= ~(4096 - 1);
Simon Glassc45e3592013-03-11 06:49:53 +0000385 return 0;
386}
387
Simon Glasse3cb4492017-03-31 08:40:29 -0600388#ifdef CONFIG_ARM
Siva Durga Prasad Paladugu05223532017-07-13 19:01:08 +0530389__weak int reserve_mmu(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000390{
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400391#if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
Simon Glassc45e3592013-03-11 06:49:53 +0000392 /* reserve TLB table */
David Feng1735de82013-12-14 11:47:36 +0800393 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadad1589242013-05-27 00:37:30 +0000394 gd->relocaddr -= gd->arch.tlb_size;
Simon Glassc45e3592013-03-11 06:49:53 +0000395
396 /* round down to next 64 kB limit */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000397 gd->relocaddr &= ~(0x10000 - 1);
Simon Glassc45e3592013-03-11 06:49:53 +0000398
Masahiro Yamadad1589242013-05-27 00:37:30 +0000399 gd->arch.tlb_addr = gd->relocaddr;
Simon Glassc45e3592013-03-11 06:49:53 +0000400 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
401 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sunf84f81e2016-06-24 16:46:19 -0700402
403#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
404 /*
405 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
406 * with location within secure ram.
407 */
408 gd->arch.tlb_allocated = gd->arch.tlb_addr;
409#endif
Simon Glasse3cb4492017-03-31 08:40:29 -0600410#endif
York Sunf84f81e2016-06-24 16:46:19 -0700411
Simon Glassc45e3592013-03-11 06:49:53 +0000412 return 0;
413}
414#endif
415
Simon Glassfce58f52016-01-18 19:52:21 -0700416static int reserve_video(void)
417{
Simon Glass70ac86c2017-03-31 08:40:30 -0600418#ifdef CONFIG_DM_VIDEO
Simon Glassfce58f52016-01-18 19:52:21 -0700419 ulong addr;
420 int ret;
421
422 addr = gd->relocaddr;
423 ret = video_reserve(&addr);
424 if (ret)
425 return ret;
426 gd->relocaddr = addr;
Simon Glass70ac86c2017-03-31 08:40:30 -0600427#elif defined(CONFIG_LCD)
Simon Glassfce58f52016-01-18 19:52:21 -0700428# ifdef CONFIG_FB_ADDR
Simon Glassc45e3592013-03-11 06:49:53 +0000429 gd->fb_base = CONFIG_FB_ADDR;
Simon Glassfce58f52016-01-18 19:52:21 -0700430# else
Simon Glassc45e3592013-03-11 06:49:53 +0000431 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000432 gd->relocaddr = lcd_setmem(gd->relocaddr);
433 gd->fb_base = gd->relocaddr;
Simon Glassfce58f52016-01-18 19:52:21 -0700434# endif /* CONFIG_FB_ADDR */
Simon Glass70ac86c2017-03-31 08:40:30 -0600435#endif
Simon Glass50250b52013-03-11 14:30:42 +0000436
437 return 0;
438}
Simon Glass50250b52013-03-11 14:30:42 +0000439
Simon Glass1008da02016-01-18 19:52:20 -0700440static int reserve_trace(void)
441{
442#ifdef CONFIG_TRACE
443 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
444 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
Heinrich Schuchardtc960b142019-06-14 21:52:22 +0200445 debug("Reserving %luk for trace data at: %08lx\n",
446 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
Simon Glass1008da02016-01-18 19:52:20 -0700447#endif
448
449 return 0;
450}
451
Simon Glassc45e3592013-03-11 06:49:53 +0000452static int reserve_uboot(void)
453{
Alexey Brodkinc76af2a2018-05-25 16:08:14 +0300454 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
455 /*
456 * reserve memory for U-Boot code, data & bss
457 * round down to next 4 kB limit
458 */
459 gd->relocaddr -= gd->mon_len;
460 gd->relocaddr &= ~(4096 - 1);
461 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
462 /* round down to next 64 kB limit so that IVPR stays aligned */
463 gd->relocaddr &= ~(65536 - 1);
464 #endif
Simon Glassc45e3592013-03-11 06:49:53 +0000465
Alexey Brodkinc76af2a2018-05-25 16:08:14 +0300466 debug("Reserving %ldk for U-Boot at: %08lx\n",
467 gd->mon_len >> 10, gd->relocaddr);
468 }
Masahiro Yamadad1589242013-05-27 00:37:30 +0000469
470 gd->start_addr_sp = gd->relocaddr;
471
Simon Glassc45e3592013-03-11 06:49:53 +0000472 return 0;
473}
474
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100475/*
476 * reserve after start_addr_sp the requested size and make the stack pointer
477 * 16-byte aligned, this alignment is needed for cast on the reserved memory
478 * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes
479 * = ARMv8 Instruction Set Overview: quad word, 16 bytes
480 */
481static unsigned long reserve_stack_aligned(size_t size)
482{
483 return ALIGN_DOWN(gd->start_addr_sp - size, 16);
484}
485
Vikas Manocha4d49e102019-08-16 09:57:44 -0700486#ifdef CONFIG_SYS_NONCACHED_MEMORY
487static int reserve_noncached(void)
488{
Stephen Warren9b496432019-08-27 11:54:31 -0600489 /*
490 * The value of gd->start_addr_sp must match the value of malloc_start
491 * calculated in boatrd_f.c:initr_malloc(), which is passed to
492 * board_r.c:mem_malloc_init() and then used by
493 * cache.c:noncached_init()
494 *
495 * These calculations must match the code in cache.c:noncached_init()
496 */
497 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
498 MMU_SECTION_SIZE;
499 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
500 MMU_SECTION_SIZE);
Vikas Manocha4d49e102019-08-16 09:57:44 -0700501 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
502 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
503
504 return 0;
505}
506#endif
507
Simon Glassc45e3592013-03-11 06:49:53 +0000508/* reserve memory for malloc() area */
509static int reserve_malloc(void)
510{
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100511 gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN);
Simon Glassc45e3592013-03-11 06:49:53 +0000512 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100513 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Vikas Manocha4d49e102019-08-16 09:57:44 -0700514#ifdef CONFIG_SYS_NONCACHED_MEMORY
515 reserve_noncached();
516#endif
517
Simon Glassc45e3592013-03-11 06:49:53 +0000518 return 0;
519}
520
521/* (permanently) allocate a Board Info struct */
522static int reserve_board(void)
523{
Sonic Zhangf503a522014-07-17 19:01:34 +0800524 if (!gd->bd) {
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100525 gd->start_addr_sp = reserve_stack_aligned(sizeof(bd_t));
Sonic Zhangf503a522014-07-17 19:01:34 +0800526 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
527 memset(gd->bd, '\0', sizeof(bd_t));
528 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
529 sizeof(bd_t), gd->start_addr_sp);
530 }
Simon Glassc45e3592013-03-11 06:49:53 +0000531 return 0;
532}
533
534static int setup_machine(void)
535{
536#ifdef CONFIG_MACH_TYPE
537 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
538#endif
539 return 0;
540}
541
542static int reserve_global_data(void)
543{
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100544 gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t));
Masahiro Yamadad1589242013-05-27 00:37:30 +0000545 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glassc45e3592013-03-11 06:49:53 +0000546 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100547 sizeof(gd_t), gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000548 return 0;
549}
550
551static int reserve_fdt(void)
552{
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100553#ifndef CONFIG_OF_EMBED
Simon Glassc45e3592013-03-11 06:49:53 +0000554 /*
Simon Glass839855c2015-04-28 20:25:03 -0600555 * If the device tree is sitting immediately above our image then we
Simon Glassc45e3592013-03-11 06:49:53 +0000556 * must relocate it. If it is embedded in the data section, then it
557 * will be relocated with other data.
558 */
559 if (gd->fdt_blob) {
560 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
561
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100562 gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000563 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glass62cf9122013-04-26 02:53:43 +0000564 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000565 gd->fdt_size, gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000566 }
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100567#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000568
569 return 0;
570}
571
Simon Glassb9aff922017-05-22 05:05:30 -0600572static int reserve_bootstage(void)
573{
574#ifdef CONFIG_BOOTSTAGE
575 int size = bootstage_get_size();
576
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100577 gd->start_addr_sp = reserve_stack_aligned(size);
Simon Glassb9aff922017-05-22 05:05:30 -0600578 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
579 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
580 gd->start_addr_sp);
581#endif
582
583 return 0;
584}
585
Patrick Delaunaya0a2b212018-03-13 13:57:00 +0100586__weak int arch_reserve_stacks(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000587{
Andreas Bießmann25429862015-02-06 23:06:45 +0100588 return 0;
589}
Simon Glass4d2aee82013-03-05 14:39:45 +0000590
Andreas Bießmann25429862015-02-06 23:06:45 +0100591static int reserve_stacks(void)
592{
593 /* make stack pointer 16-byte aligned */
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100594 gd->start_addr_sp = reserve_stack_aligned(16);
Simon Glassc45e3592013-03-11 06:49:53 +0000595
596 /*
Simon Glass839855c2015-04-28 20:25:03 -0600597 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann25429862015-02-06 23:06:45 +0100598 * gd->irq_sp
Simon Glassc45e3592013-03-11 06:49:53 +0000599 */
Andreas Bießmann25429862015-02-06 23:06:45 +0100600 return arch_reserve_stacks();
Simon Glassc45e3592013-03-11 06:49:53 +0000601}
602
Simon Glassa815dab2018-11-15 18:43:52 -0700603static int reserve_bloblist(void)
604{
605#ifdef CONFIG_BLOBLIST
Patrick Delaunaye177cbc2020-03-10 10:15:05 +0100606 gd->start_addr_sp = reserve_stack_aligned(CONFIG_BLOBLIST_SIZE);
Simon Glassa815dab2018-11-15 18:43:52 -0700607 gd->new_bloblist = map_sysmem(gd->start_addr_sp, CONFIG_BLOBLIST_SIZE);
608#endif
609
610 return 0;
611}
612
Simon Glassc45e3592013-03-11 06:49:53 +0000613static int display_new_sp(void)
614{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000615 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000616
617 return 0;
618}
619
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200620#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
621 defined(CONFIG_SH)
Simon Glass50250b52013-03-11 14:30:42 +0000622static int setup_board_part1(void)
623{
624 bd_t *bd = gd->bd;
625
626 /*
627 * Save local variables to board info struct
628 */
Simon Glass50250b52013-03-11 14:30:42 +0000629 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
630 bd->bi_memsize = gd->ram_size; /* size in bytes */
631
632#ifdef CONFIG_SYS_SRAM_BASE
633 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
634 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
635#endif
636
Heiko Schocherd4def9b2017-06-07 17:33:11 +0200637#if defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Simon Glass50250b52013-03-11 14:30:42 +0000638 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
639#endif
Heiko Schocher6f90e582017-06-14 05:49:40 +0200640#if defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000641 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
642#endif
643#if defined(CONFIG_MPC83xx)
644 bd->bi_immrbar = CONFIG_SYS_IMMR;
645#endif
Simon Glass50250b52013-03-11 14:30:42 +0000646
647 return 0;
648}
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100649#endif
Simon Glass50250b52013-03-11 14:30:42 +0000650
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100651#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000652static int setup_board_part2(void)
653{
654 bd_t *bd = gd->bd;
655
656 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
657 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
658#if defined(CONFIG_CPM2)
659 bd->bi_cpmfreq = gd->arch.cpm_clk;
660 bd->bi_brgfreq = gd->arch.brg_clk;
661 bd->bi_sccfreq = gd->arch.scc_clk;
662 bd->bi_vco = gd->arch.vco_out;
663#endif /* CONFIG_CPM2 */
Alison Wang8f6d8f32015-02-12 18:33:15 +0800664#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
665 bd->bi_pcifreq = gd->pci_clk;
666#endif
667#if defined(CONFIG_EXTRA_CLOCK)
668 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
669 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
670 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
671#endif
Simon Glass50250b52013-03-11 14:30:42 +0000672
673 return 0;
674}
675#endif
676
Simon Glassc45e3592013-03-11 06:49:53 +0000677#ifdef CONFIG_POST
678static int init_post(void)
679{
680 post_bootmode_init();
681 post_run(NULL, POST_ROM | post_bootmode_get(0));
682
683 return 0;
684}
685#endif
686
Simon Glassc45e3592013-03-11 06:49:53 +0000687static int reloc_fdt(void)
688{
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100689#ifndef CONFIG_OF_EMBED
Simon Glass00dd17a2015-08-04 12:33:39 -0600690 if (gd->flags & GD_FLG_SKIP_RELOC)
691 return 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000692 if (gd->new_fdt) {
693 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
694 gd->fdt_blob = gd->new_fdt;
695 }
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100696#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000697
698 return 0;
699}
700
Simon Glassb9aff922017-05-22 05:05:30 -0600701static int reloc_bootstage(void)
702{
703#ifdef CONFIG_BOOTSTAGE
704 if (gd->flags & GD_FLG_SKIP_RELOC)
705 return 0;
706 if (gd->new_bootstage) {
707 int size = bootstage_get_size();
708
709 debug("Copying bootstage from %p to %p, size %x\n",
710 gd->bootstage, gd->new_bootstage, size);
711 memcpy(gd->new_bootstage, gd->bootstage, size);
712 gd->bootstage = gd->new_bootstage;
Simon Glass39d58522019-10-21 17:26:50 -0600713 bootstage_relocate();
Simon Glassb9aff922017-05-22 05:05:30 -0600714 }
715#endif
716
717 return 0;
718}
719
Simon Glassa815dab2018-11-15 18:43:52 -0700720static int reloc_bloblist(void)
721{
722#ifdef CONFIG_BLOBLIST
723 if (gd->flags & GD_FLG_SKIP_RELOC)
724 return 0;
725 if (gd->new_bloblist) {
726 int size = CONFIG_BLOBLIST_SIZE;
727
728 debug("Copying bloblist from %p to %p, size %x\n",
729 gd->bloblist, gd->new_bloblist, size);
730 memcpy(gd->new_bloblist, gd->bloblist, size);
731 gd->bloblist = gd->new_bloblist;
732 }
733#endif
734
735 return 0;
736}
737
Simon Glassc45e3592013-03-11 06:49:53 +0000738static int setup_reloc(void)
739{
Simon Glass00dd17a2015-08-04 12:33:39 -0600740 if (gd->flags & GD_FLG_SKIP_RELOC) {
741 debug("Skipping relocation due to flag\n");
742 return 0;
743 }
744
Sonic Zhangf503a522014-07-17 19:01:34 +0800745#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann160583b2017-06-08 10:18:25 +0200746#ifdef ARM
747 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
748#elif defined(CONFIG_M68K)
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100749 /*
750 * On all ColdFire arch cpu, monitor code starts always
751 * just after the default vector table location, so at 0x400
752 */
753 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Simon Glass752707a2019-04-08 13:20:41 -0600754#elif !defined(CONFIG_SANDBOX)
Lothar Waßmann160583b2017-06-08 10:18:25 +0200755 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100756#endif
Sonic Zhangf503a522014-07-17 19:01:34 +0800757#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000758 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
759
760 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glass62cf9122013-04-26 02:53:43 +0000761 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000762 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
763 gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000764
765 return 0;
766}
767
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +0100768#ifdef CONFIG_OF_BOARD_FIXUP
769static int fix_fdt(void)
770{
771 return board_fix_fdt((void *)gd->fdt_blob);
772}
773#endif
774
Simon Glassc45e3592013-03-11 06:49:53 +0000775/* ARM calls relocate_code from its crt0.S */
Simon Glass6e1a81a2017-01-16 07:03:49 -0700776#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
777 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +0000778
779static int jump_to_copy(void)
780{
Simon Glass00dd17a2015-08-04 12:33:39 -0600781 if (gd->flags & GD_FLG_SKIP_RELOC)
782 return 0;
Simon Glass6d179872013-03-05 14:39:52 +0000783 /*
784 * x86 is special, but in a nice way. It uses a trampoline which
785 * enables the dcache if possible.
786 *
787 * For now, other archs use relocate_code(), which is implemented
788 * similarly for all archs. When we do generic relocation, hopefully
789 * we can make all archs enable the dcache prior to relocation.
790 */
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300791#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +0000792 /*
793 * SDRAM and console are now initialised. The final stack can now
794 * be setup in SDRAM. Code execution will continue in Flash, but
795 * with the stack in SDRAM and Global Data in temporary memory
796 * (CPU cache)
797 */
Simon Glass0e27b872015-08-10 20:44:32 -0600798 arch_setup_gd(gd->new_gd);
Simon Glass6d179872013-03-05 14:39:52 +0000799 board_init_f_r_trampoline(gd->start_addr_sp);
800#else
Masahiro Yamadad1589242013-05-27 00:37:30 +0000801 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +0000802#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000803
804 return 0;
805}
806#endif
807
808/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glass88200332017-05-22 05:05:25 -0600809static int initf_bootstage(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000810{
Simon Glassc55d5c32017-06-07 10:28:46 -0600811 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
812 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glass88200332017-05-22 05:05:25 -0600813 int ret;
814
Simon Glass01154cb2017-05-22 05:05:35 -0600815 ret = bootstage_init(!from_spl);
Simon Glass88200332017-05-22 05:05:25 -0600816 if (ret)
817 return ret;
Simon Glass01154cb2017-05-22 05:05:35 -0600818 if (from_spl) {
819 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
820 CONFIG_BOOTSTAGE_STASH_SIZE);
821
822 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
823 if (ret && ret != -ENOENT) {
824 debug("Failed to unstash bootstage: err=%d\n", ret);
825 return ret;
826 }
827 }
Simon Glass88200332017-05-22 05:05:25 -0600828
Simon Glassc45e3592013-03-11 06:49:53 +0000829 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
830
831 return 0;
832}
833
Simon Glass1bb49232015-11-08 23:47:48 -0700834static int initf_console_record(void)
835{
Andy Yan1fa20e4d2017-07-24 17:43:34 +0800836#if defined(CONFIG_CONSOLE_RECORD) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass1bb49232015-11-08 23:47:48 -0700837 return console_record_init();
838#else
839 return 0;
840#endif
841}
842
Simon Glassa730c5d2014-07-23 06:55:04 -0600843static int initf_dm(void)
844{
Andy Yan1fa20e4d2017-07-24 17:43:34 +0800845#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassa730c5d2014-07-23 06:55:04 -0600846 int ret;
847
Simon Glass405e2b02017-05-22 05:05:32 -0600848 bootstage_start(BOOTSTATE_ID_ACCUM_DM_F, "dm_f");
Simon Glassa730c5d2014-07-23 06:55:04 -0600849 ret = dm_init_and_scan(true);
Simon Glass405e2b02017-05-22 05:05:32 -0600850 bootstage_accum(BOOTSTATE_ID_ACCUM_DM_F);
Simon Glassa730c5d2014-07-23 06:55:04 -0600851 if (ret)
852 return ret;
853#endif
Simon Glass8e4f80f2016-02-24 09:14:50 -0700854#ifdef CONFIG_TIMER_EARLY
855 ret = dm_timer_init();
856 if (ret)
857 return ret;
858#endif
Simon Glassa730c5d2014-07-23 06:55:04 -0600859
860 return 0;
861}
862
Simon Glass5ded7e52015-01-19 22:16:12 -0700863/* Architecture-specific memory reservation */
864__weak int reserve_arch(void)
865{
866 return 0;
867}
868
Simon Glass7af8d052015-03-05 12:25:16 -0700869__weak int arch_cpu_init_dm(void)
870{
871 return 0;
872}
873
Ovidiu Panait8e0319f2020-01-22 22:28:25 +0200874__weak int checkcpu(void)
875{
876 return 0;
877}
878
Ovidiu Panaitc508b272020-02-05 08:54:42 +0200879__weak int clear_bss(void)
880{
881 return 0;
882}
883
Simon Glass2031fad2017-01-16 07:03:50 -0700884static const init_fnc_t init_sequence_f[] = {
Simon Glassc45e3592013-03-11 06:49:53 +0000885 setup_mon_len,
Simon Glass26b78b22015-02-27 22:06:34 -0700886#ifdef CONFIG_OF_CONTROL
Simon Glassa0877672015-02-27 22:06:35 -0700887 fdtdec_setup,
Simon Glass26b78b22015-02-27 22:06:34 -0700888#endif
Heinrich Schuchardt2aecfc52019-06-02 00:53:24 +0200889#ifdef CONFIG_TRACE_EARLY
Simon Glass209a1a62013-06-11 11:14:42 -0700890 trace_early_init,
Kevin Hilman676f0192014-12-09 15:03:58 -0800891#endif
Simon Glasscfcb8862014-11-10 18:00:18 -0700892 initf_malloc,
Simon Glass55e32ba2017-12-04 13:48:28 -0700893 log_init,
Simon Glasse635af12017-05-22 05:05:31 -0600894 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glassa815dab2018-11-15 18:43:52 -0700895#ifdef CONFIG_BLOBLIST
896 bloblist_init,
897#endif
Simon Glasse14f1a22018-11-15 18:44:09 -0700898 setup_spl_handoff,
Simon Glass1bb49232015-11-08 23:47:48 -0700899 initf_console_record,
Simon Glass295c4232017-03-28 10:27:18 -0600900#if defined(CONFIG_HAVE_FSP)
901 arch_fsp_init,
Bin Meng178f8972015-08-20 06:40:18 -0700902#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000903 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton1f508dd2016-09-21 11:18:46 +0100904 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass6df5de22014-09-03 17:36:59 -0600905 initf_dm,
Simon Glass7af8d052015-03-05 12:25:16 -0700906 arch_cpu_init_dm,
Simon Glassc45e3592013-03-11 06:49:53 +0000907#if defined(CONFIG_BOARD_EARLY_INIT_F)
908 board_early_init_f,
909#endif
Simon Glass6829d8c2017-03-28 10:27:26 -0600910#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glass70064a72017-03-28 10:27:19 -0600911 /* get CPU and bus clocks according to the environment variable */
Simon Glass50250b52013-03-11 14:30:42 +0000912 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glasse8d20d42017-03-28 10:27:23 -0600913#endif
Angelo Dureghellocd226852017-05-10 23:58:06 +0200914#if !defined(CONFIG_M68K)
Simon Glassc45e3592013-03-11 06:49:53 +0000915 timer_init, /* initialize timer */
Angelo Dureghellocd226852017-05-10 23:58:06 +0200916#endif
Simon Glass50250b52013-03-11 14:30:42 +0000917#if defined(CONFIG_BOARD_POSTCLK_INIT)
918 board_postclk_init,
919#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000920 env_init, /* initialize environment */
921 init_baud_rate, /* initialze baudrate settings */
922 serial_init, /* serial communications setup */
923 console_init_f, /* stage 1 init of console */
924 display_options, /* say that we are here */
925 display_text_info, /* show debugging info if required */
Simon Glass50250b52013-03-11 14:30:42 +0000926 checkcpu,
Mario Six4481a5d2018-08-06 10:23:34 +0200927#if defined(CONFIG_SYSRESET)
928 print_resetinfo,
929#endif
Simon Glass68c1d012017-01-23 13:31:25 -0700930#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glassc45e3592013-03-11 06:49:53 +0000931 print_cpuinfo, /* display cpu info (and speed) */
Simon Glass68c1d012017-01-23 13:31:25 -0700932#endif
Cooper Jr., Franklind8b354a2017-06-16 17:25:12 -0500933#if defined(CONFIG_DTB_RESELECT)
934 embedded_dtb_select,
935#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000936#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada9607f7a2015-01-14 17:07:05 +0900937 show_board_info,
Simon Glassc45e3592013-03-11 06:49:53 +0000938#endif
Simon Glass50250b52013-03-11 14:30:42 +0000939 INIT_FUNC_WATCHDOG_INIT
940#if defined(CONFIG_MISC_INIT_F)
941 misc_init_f,
942#endif
943 INIT_FUNC_WATCHDOG_RESET
Simon Glass1a46a722017-05-12 21:09:56 -0600944#if defined(CONFIG_SYS_I2C)
Simon Glass50250b52013-03-11 14:30:42 +0000945 init_func_i2c,
946#endif
Rajesh Bhagatf7716782018-01-17 16:13:08 +0530947#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
948 init_func_vid,
949#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000950 announce_dram_init,
Simon Glassc45e3592013-03-11 06:49:53 +0000951 dram_init, /* configure available RAM banks */
Simon Glass50250b52013-03-11 14:30:42 +0000952#ifdef CONFIG_POST
953 post_init_f,
954#endif
955 INIT_FUNC_WATCHDOG_RESET
956#if defined(CONFIG_SYS_DRAM_TEST)
957 testdram,
958#endif /* CONFIG_SYS_DRAM_TEST */
959 INIT_FUNC_WATCHDOG_RESET
960
Simon Glassc45e3592013-03-11 06:49:53 +0000961#ifdef CONFIG_POST
962 init_post,
963#endif
Simon Glass50250b52013-03-11 14:30:42 +0000964 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +0000965 /*
966 * Now that we have DRAM mapped and working, we can
967 * relocate the code and continue running from DRAM.
968 *
969 * Reserve memory at end of RAM for (top down in that order):
970 * - area that won't get touched by U-Boot and Linux (optional)
971 * - kernel log buffer
972 * - protected RAM
973 * - LCD framebuffer
974 * - monitor code
975 * - board info struct
976 */
977 setup_dest_addr,
Simon Glassc45e3592013-03-11 06:49:53 +0000978#ifdef CONFIG_PRAM
979 reserve_pram,
980#endif
981 reserve_round_4k,
Simon Glasse3cb4492017-03-31 08:40:29 -0600982#ifdef CONFIG_ARM
Simon Glassc45e3592013-03-11 06:49:53 +0000983 reserve_mmu,
984#endif
Simon Glassfce58f52016-01-18 19:52:21 -0700985 reserve_video,
Simon Glass1008da02016-01-18 19:52:20 -0700986 reserve_trace,
Simon Glassc45e3592013-03-11 06:49:53 +0000987 reserve_uboot,
988 reserve_malloc,
989 reserve_board,
Simon Glassc45e3592013-03-11 06:49:53 +0000990 setup_machine,
991 reserve_global_data,
992 reserve_fdt,
Simon Glassb9aff922017-05-22 05:05:30 -0600993 reserve_bootstage,
Simon Glassa815dab2018-11-15 18:43:52 -0700994 reserve_bloblist,
Simon Glass5ded7e52015-01-19 22:16:12 -0700995 reserve_arch,
Simon Glassc45e3592013-03-11 06:49:53 +0000996 reserve_stacks,
Simon Glass2f949c32017-03-31 08:40:32 -0600997 dram_init_banksize,
Simon Glassc45e3592013-03-11 06:49:53 +0000998 show_dram_config,
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200999#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
1000 defined(CONFIG_SH)
Simon Glass50250b52013-03-11 14:30:42 +00001001 setup_board_part1,
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +01001002#endif
1003#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +00001004 INIT_FUNC_WATCHDOG_RESET
1005 setup_board_part2,
1006#endif
Simon Glassc45e3592013-03-11 06:49:53 +00001007 display_new_sp,
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +01001008#ifdef CONFIG_OF_BOARD_FIXUP
1009 fix_fdt,
1010#endif
Simon Glass50250b52013-03-11 14:30:42 +00001011 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +00001012 reloc_fdt,
Simon Glassb9aff922017-05-22 05:05:30 -06001013 reloc_bootstage,
Simon Glassa815dab2018-11-15 18:43:52 -07001014 reloc_bloblist,
Simon Glassc45e3592013-03-11 06:49:53 +00001015 setup_reloc,
Alexey Brodkin913e9f02015-02-24 19:40:36 +03001016#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glassd50b2f42015-01-01 16:18:09 -07001017 copy_uboot_to_ram,
Simon Glassd50b2f42015-01-01 16:18:09 -07001018 do_elf_reloc_fixups,
1019#endif
Chris Zankel41e37372016-08-10 18:36:43 +03001020 clear_bss,
Simon Glass6e1a81a2017-01-16 07:03:49 -07001021#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
1022 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +00001023 jump_to_copy,
1024#endif
1025 NULL,
1026};
1027
1028void board_init_f(ulong boot_flags)
1029{
Simon Glassc45e3592013-03-11 06:49:53 +00001030 gd->flags = boot_flags;
Alexey Brodkin07236912013-11-27 22:32:40 +04001031 gd->have_console = 0;
Simon Glassc45e3592013-03-11 06:49:53 +00001032
1033 if (initcall_run_list(init_sequence_f))
1034 hang();
1035
Ben Stoltz1930e8d2015-07-31 09:31:37 -06001036#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkinc157ab92015-12-16 19:24:10 +03001037 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
1038 !defined(CONFIG_ARC)
Simon Glassc45e3592013-03-11 06:49:53 +00001039 /* NOTREACHED - jump_to_copy() does not return */
1040 hang();
1041#endif
1042}
Simon Glass6d179872013-03-05 14:39:52 +00001043
Alexey Brodkin913e9f02015-02-24 19:40:36 +03001044#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +00001045/*
1046 * For now this code is only used on x86.
1047 *
1048 * init_sequence_f_r is the list of init functions which are run when
1049 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1050 * The following limitations must be considered when implementing an
1051 * '_f_r' function:
1052 * - 'static' variables are read-only
1053 * - Global Data (gd->xxx) is read/write
1054 *
1055 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1056 * supported). It _should_, if possible, copy global data to RAM and
1057 * initialise the CPU caches (to speed up the relocation process)
1058 *
1059 * NOTE: At present only x86 uses this route, but it is intended that
1060 * all archs will move to this when generic relocation is implemented.
1061 */
Simon Glass2031fad2017-01-16 07:03:50 -07001062static const init_fnc_t init_sequence_f_r[] = {
Simon Glass6e1a81a2017-01-16 07:03:49 -07001063#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass6d179872013-03-05 14:39:52 +00001064 init_cache_f_r,
Simon Glass6e1a81a2017-01-16 07:03:49 -07001065#endif
Simon Glass6d179872013-03-05 14:39:52 +00001066
1067 NULL,
1068};
1069
1070void board_init_f_r(void)
1071{
1072 if (initcall_run_list(init_sequence_f_r))
1073 hang();
1074
1075 /*
Simon Glass51f73f12016-03-11 22:06:51 -07001076 * The pre-relocation drivers may be using memory that has now gone
1077 * away. Mark serial as unavailable - this will fall back to the debug
1078 * UART if available.
Simon Glass55e32ba2017-12-04 13:48:28 -07001079 *
1080 * Do the same with log drivers since the memory may not be available.
Simon Glass51f73f12016-03-11 22:06:51 -07001081 */
Simon Glass55e32ba2017-12-04 13:48:28 -07001082 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glassb77fe1f2017-09-05 19:49:45 -06001083#ifdef CONFIG_TIMER
1084 gd->timer = NULL;
1085#endif
Simon Glass51f73f12016-03-11 22:06:51 -07001086
1087 /*
Simon Glass6d179872013-03-05 14:39:52 +00001088 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1089 * Transfer execution from Flash to RAM by calculating the address
1090 * of the in-RAM copy of board_init_r() and calling it
1091 */
Alexey Brodkin9c832f12015-02-25 17:59:02 +03001092 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +00001093
1094 /* NOTREACHED - board_init_r() does not return */
1095 hang();
1096}
Alexey Brodkin73503182015-03-24 11:12:47 +03001097#endif /* CONFIG_X86 */