blob: c6bc53e1bf058c783214b08e01d3724bfc06cf87 [file] [log] [blame]
Simon Glass1938f4a2013-03-11 06:49:53 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 * (C) Copyright 2002-2006
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
9 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Simon Glass1938f4a2013-03-11 06:49:53 +000011 */
12
13#include <common.h>
Simon Glass24b852a2015-11-08 23:47:45 -070014#include <console.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000015#include <environment.h>
Simon Glassab7cd622014-07-23 06:55:04 -060016#include <dm.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000017#include <fdtdec.h>
Simon Glassf828bf22013-04-20 08:42:41 +000018#include <fs.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000019#include <i2c.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000020#include <initcall.h>
Simon Glass96d4b752017-03-31 08:40:37 -060021#include <init_helpers.h>
Simon Glassfb5cf7f2015-02-27 22:06:36 -070022#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050023#include <mapmem.h>
Simon Glassa733b062013-04-26 02:53:43 +000024#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000025#include <post.h>
Simon Glasse47b2d62017-03-31 08:40:38 -060026#include <relocate.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000027#include <spi.h>
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020028#include <status_led.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070029#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070030#include <trace.h>
Simon Glass5a541942016-01-18 19:52:21 -070031#include <video.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000032#include <watchdog.h>
Simon Glassb885d022017-05-17 08:23:01 -060033#ifdef CONFIG_MACH_TYPE
34#include <asm/mach-types.h>
35#endif
Simon Glass1fbf97d2017-03-31 08:40:39 -060036#if defined(CONFIG_MP) && defined(CONFIG_PPC)
37#include <asm/mp.h>
38#endif
Simon Glass1938f4a2013-03-11 06:49:53 +000039#include <asm/io.h>
40#include <asm/sections.h>
Simon Glassab7cd622014-07-23 06:55:04 -060041#include <dm/root.h>
Simon Glass056285f2017-03-31 08:40:35 -060042#include <linux/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000043
44/*
45 * Pointer to initial global data area
46 *
47 * Here we initialize it if needed.
48 */
49#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
50#undef XTRN_DECLARE_GLOBAL_DATA_PTR
51#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Mario Six16ef1472018-01-15 11:10:02 +010052DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
Simon Glass1938f4a2013-03-11 06:49:53 +000053#else
54DECLARE_GLOBAL_DATA_PTR;
55#endif
56
57/*
Simon Glass4c509342015-04-28 20:25:03 -060058 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000059 * refactored to a single function, something like:
60 *
61 * void led_set_state(enum led_colour_t colour, int on);
62 */
63/************************************************************************
64 * Coloured LED functionality
65 ************************************************************************
66 * May be supplied by boards if desired
67 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020068__weak void coloured_LED_init(void) {}
69__weak void red_led_on(void) {}
70__weak void red_led_off(void) {}
71__weak void green_led_on(void) {}
72__weak void green_led_off(void) {}
73__weak void yellow_led_on(void) {}
74__weak void yellow_led_off(void) {}
75__weak void blue_led_on(void) {}
76__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000077
78/*
79 * Why is gd allocated a register? Prior to reloc it might be better to
80 * just pass it around to each function in this file?
81 *
82 * After reloc one could argue that it is hardly used and doesn't need
83 * to be in a register. Or if it is it should perhaps hold pointers to all
84 * global data for all modules, so that post-reloc we can avoid the massive
85 * literal pool we get on ARM. Or perhaps just encourage each module to use
86 * a structure...
87 */
88
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080089#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +000090static int init_func_watchdog_init(void)
91{
Tom Riniea3310e2017-03-14 11:08:10 -040092# if defined(CONFIG_HW_WATCHDOG) && \
93 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Stefan Roese14a380a2015-03-10 08:04:36 +010094 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
Anatolij Gustschin46d7a3b2016-06-13 14:24:23 +020095 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roese14a380a2015-03-10 08:04:36 +010096 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080097 hw_watchdog_init();
Simon Glasse4fef6c2013-03-11 14:30:42 +000098 puts(" Watchdog enabled\n");
Anatolij Gustschinba169d92016-06-13 14:24:24 +020099# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000100 WATCHDOG_RESET();
101
102 return 0;
103}
104
105int init_func_watchdog_reset(void)
106{
107 WATCHDOG_RESET();
108
109 return 0;
110}
111#endif /* CONFIG_WATCHDOG */
112
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200113__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000114{
115 /* please define platform specific board_add_ram_info() */
116}
117
Simon Glass1938f4a2013-03-11 06:49:53 +0000118static int init_baud_rate(void)
119{
Simon Glassbfebc8c2017-08-03 12:22:13 -0600120 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glass1938f4a2013-03-11 06:49:53 +0000121 return 0;
122}
123
124static int display_text_info(void)
125{
Ben Stoltz9b217492015-07-31 09:31:37 -0600126#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100127 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000128
Simon Glass632efa72013-03-11 07:06:48 +0000129 bss_start = (ulong)&__bss_start;
130 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100131
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800132#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100133 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800134#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100135 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800136#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100137
138 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six16ef1472018-01-15 11:10:02 +0100139 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000140#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000141
Simon Glass1938f4a2013-03-11 06:49:53 +0000142 return 0;
143}
144
145static int announce_dram_init(void)
146{
147 puts("DRAM: ");
148 return 0;
149}
150
151static int show_dram_config(void)
152{
York Sunfa39ffe2014-05-02 17:28:05 -0700153 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000154
155#ifdef CONFIG_NR_DRAM_BANKS
156 int i;
157
158 debug("\nRAM Configuration:\n");
159 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
160 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700161 debug("Bank #%d: %llx ", i,
162 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000163#ifdef DEBUG
164 print_size(gd->bd->bi_dram[i].size, "\n");
165#endif
166 }
167 debug("\nDRAM: ");
168#else
169 size = gd->ram_size;
170#endif
171
Simon Glasse4fef6c2013-03-11 14:30:42 +0000172 print_size(size, "");
173 board_add_ram_info(0);
174 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000175
176 return 0;
177}
178
Simon Glass76b00ac2017-03-31 08:40:32 -0600179__weak int dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000180{
181#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
182 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
183 gd->bd->bi_dram[0].size = get_effective_memsize();
184#endif
Simon Glass76b00ac2017-03-31 08:40:32 -0600185
186 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000187}
188
Simon Glass69153982017-05-12 21:09:56 -0600189#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000190static int init_func_i2c(void)
191{
192 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200193#ifdef CONFIG_SYS_I2C
194 i2c_init_all();
195#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000196 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200197#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000198 puts("ready\n");
199 return 0;
200}
201#endif
202
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530203#if defined(CONFIG_VID)
204__weak int init_func_vid(void)
205{
206 return 0;
207}
208#endif
209
Simon Glasse4fef6c2013-03-11 14:30:42 +0000210#if defined(CONFIG_HARD_SPI)
211static int init_func_spi(void)
212{
213 puts("SPI: ");
214 spi_init();
215 puts("ready\n");
216 return 0;
217}
218#endif
219
Simon Glass1938f4a2013-03-11 06:49:53 +0000220static int setup_mon_len(void)
221{
Michal Simeke945f6d2014-05-08 16:08:44 +0200222#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100223 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz9b217492015-07-31 09:31:37 -0600224#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000225 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400226#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800227 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Rick Chen068feb92017-12-26 13:55:58 +0800228#elif defined(CONFIG_NDS32) || defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800229 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600230#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000231 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
232 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000233#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000234 return 0;
235}
236
237__weak int arch_cpu_init(void)
238{
239 return 0;
240}
241
Paul Burton8ebf5062016-09-21 11:18:46 +0100242__weak int mach_cpu_init(void)
243{
244 return 0;
245}
246
Simon Glass1938f4a2013-03-11 06:49:53 +0000247/* Get the top of usable RAM */
248__weak ulong board_get_usable_ram_top(ulong total_size)
249{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700250#ifdef CONFIG_SYS_SDRAM_BASE
251 /*
Simon Glass4c509342015-04-28 20:25:03 -0600252 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700253 * 32-bit address space. If so, clip the usable RAM so it doesn't.
254 */
255 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
256 /*
257 * Will wrap back to top of 32-bit space when reservations
258 * are made.
259 */
260 return 0;
261#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000262 return gd->ram_top;
263}
264
265static int setup_dest_addr(void)
266{
267 debug("Monitor len: %08lX\n", gd->mon_len);
268 /*
269 * Ram is setup, size stored in gd !!
270 */
271 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun36cc0de2017-03-06 09:02:28 -0800272#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000273 /*
274 * Subtract specified amount of memory to hide so that it won't
275 * get "touched" at all by U-Boot. By fixing up gd->ram_size
276 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800277 * memory size and won't touch it either. This should work
278 * for arch/ppc and arch/powerpc. Only Linux board ports in
279 * arch/powerpc with bootwrapper support, that recalculate the
280 * memory size from the SDRAM controller setup will have to
281 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000282 */
York Sun36cc0de2017-03-06 09:02:28 -0800283 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
284#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000285#ifdef CONFIG_SYS_SDRAM_BASE
286 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
287#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000288 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000289 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000290 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000291 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700292#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000293 /*
294 * We need to make sure the location we intend to put secondary core
295 * boot code is reserved and not used by any part of u-boot
296 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000297 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
298 gd->relocaddr = determine_mp_bootpg(NULL);
299 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000300 }
301#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000302 return 0;
303}
304
Simon Glass1938f4a2013-03-11 06:49:53 +0000305#ifdef CONFIG_PRAM
306/* reserve protected RAM */
307static int reserve_pram(void)
308{
309 ulong reg;
310
Simon Glassbfebc8c2017-08-03 12:22:13 -0600311 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000312 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000313 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000314 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000315 return 0;
316}
317#endif /* CONFIG_PRAM */
318
319/* Round memory pointer down to next 4 kB limit */
320static int reserve_round_4k(void)
321{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000322 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000323 return 0;
324}
325
Simon Glass80d4bcd2017-03-31 08:40:29 -0600326#ifdef CONFIG_ARM
Siva Durga Prasad Paladugu60873f72017-07-13 19:01:08 +0530327__weak int reserve_mmu(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000328{
Simon Glass80d4bcd2017-03-31 08:40:29 -0600329#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Simon Glass1938f4a2013-03-11 06:49:53 +0000330 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800331 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000332 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000333
334 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000335 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000336
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000337 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000338 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
339 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sun50e93b92016-06-24 16:46:19 -0700340
341#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
342 /*
343 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
344 * with location within secure ram.
345 */
346 gd->arch.tlb_allocated = gd->arch.tlb_addr;
347#endif
Simon Glass80d4bcd2017-03-31 08:40:29 -0600348#endif
York Sun50e93b92016-06-24 16:46:19 -0700349
Simon Glass1938f4a2013-03-11 06:49:53 +0000350 return 0;
351}
352#endif
353
Simon Glass5a541942016-01-18 19:52:21 -0700354static int reserve_video(void)
355{
Simon Glass0f079eb2017-03-31 08:40:30 -0600356#ifdef CONFIG_DM_VIDEO
Simon Glass5a541942016-01-18 19:52:21 -0700357 ulong addr;
358 int ret;
359
360 addr = gd->relocaddr;
361 ret = video_reserve(&addr);
362 if (ret)
363 return ret;
364 gd->relocaddr = addr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600365#elif defined(CONFIG_LCD)
Simon Glass5a541942016-01-18 19:52:21 -0700366# ifdef CONFIG_FB_ADDR
Simon Glass1938f4a2013-03-11 06:49:53 +0000367 gd->fb_base = CONFIG_FB_ADDR;
Simon Glass5a541942016-01-18 19:52:21 -0700368# else
Simon Glass1938f4a2013-03-11 06:49:53 +0000369 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000370 gd->relocaddr = lcd_setmem(gd->relocaddr);
371 gd->fb_base = gd->relocaddr;
Simon Glass5a541942016-01-18 19:52:21 -0700372# endif /* CONFIG_FB_ADDR */
Simon Glass0f079eb2017-03-31 08:40:30 -0600373#elif defined(CONFIG_VIDEO) && \
Heiko Schocher5b8e76c2017-06-07 17:33:09 +0200374 (!defined(CONFIG_PPC)) && \
Simon Glass8703ef32016-01-18 19:52:20 -0700375 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Riniea3310e2017-03-14 11:08:10 -0400376 !defined(CONFIG_M68K)
Simon Glass8703ef32016-01-18 19:52:20 -0700377 /* reserve memory for video display (always full pages) */
378 gd->relocaddr = video_setmem(gd->relocaddr);
379 gd->fb_base = gd->relocaddr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600380#endif
Simon Glass8703ef32016-01-18 19:52:20 -0700381
382 return 0;
383}
Simon Glass8703ef32016-01-18 19:52:20 -0700384
Simon Glass71c52db2013-06-11 11:14:42 -0700385static int reserve_trace(void)
386{
387#ifdef CONFIG_TRACE
388 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
389 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
390 debug("Reserving %dk for trace data at: %08lx\n",
391 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
392#endif
393
394 return 0;
395}
396
Simon Glass1938f4a2013-03-11 06:49:53 +0000397static int reserve_uboot(void)
398{
399 /*
400 * reserve memory for U-Boot code, data & bss
401 * round down to next 4 kB limit
402 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000403 gd->relocaddr -= gd->mon_len;
404 gd->relocaddr &= ~(4096 - 1);
Paul Burton703ec9d2017-06-19 11:53:47 -0700405#if defined(CONFIG_E500) || defined(CONFIG_MIPS)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000406 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000407 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000408#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000409
410 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000411 gd->relocaddr);
412
413 gd->start_addr_sp = gd->relocaddr;
414
Simon Glass1938f4a2013-03-11 06:49:53 +0000415 return 0;
416}
417
418/* reserve memory for malloc() area */
419static int reserve_malloc(void)
420{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000421 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000422 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100423 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000424 return 0;
425}
426
427/* (permanently) allocate a Board Info struct */
428static int reserve_board(void)
429{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800430 if (!gd->bd) {
431 gd->start_addr_sp -= sizeof(bd_t);
432 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
433 memset(gd->bd, '\0', sizeof(bd_t));
434 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
435 sizeof(bd_t), gd->start_addr_sp);
436 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000437 return 0;
438}
439
440static int setup_machine(void)
441{
442#ifdef CONFIG_MACH_TYPE
443 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
444#endif
445 return 0;
446}
447
448static int reserve_global_data(void)
449{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000450 gd->start_addr_sp -= sizeof(gd_t);
451 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000452 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100453 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000454 return 0;
455}
456
457static int reserve_fdt(void)
458{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100459#ifndef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000460 /*
Simon Glass4c509342015-04-28 20:25:03 -0600461 * If the device tree is sitting immediately above our image then we
Simon Glass1938f4a2013-03-11 06:49:53 +0000462 * must relocate it. If it is embedded in the data section, then it
463 * will be relocated with other data.
464 */
465 if (gd->fdt_blob) {
466 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
467
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000468 gd->start_addr_sp -= gd->fdt_size;
469 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000470 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000471 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000472 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100473#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000474
475 return 0;
476}
477
Simon Glass25e7dc62017-05-22 05:05:30 -0600478static int reserve_bootstage(void)
479{
480#ifdef CONFIG_BOOTSTAGE
481 int size = bootstage_get_size();
482
483 gd->start_addr_sp -= size;
484 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
485 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
486 gd->start_addr_sp);
487#endif
488
489 return 0;
490}
491
Andreas Bießmann68145d42015-02-06 23:06:45 +0100492int arch_reserve_stacks(void)
493{
494 return 0;
495}
496
Simon Glass1938f4a2013-03-11 06:49:53 +0000497static int reserve_stacks(void)
498{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100499 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000500 gd->start_addr_sp -= 16;
501 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000502
503 /*
Simon Glass4c509342015-04-28 20:25:03 -0600504 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100505 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000506 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100507 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000508}
509
510static int display_new_sp(void)
511{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000512 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000513
514 return 0;
515}
516
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200517#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
518 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000519static int setup_board_part1(void)
520{
521 bd_t *bd = gd->bd;
522
523 /*
524 * Save local variables to board info struct
525 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000526 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
527 bd->bi_memsize = gd->ram_size; /* size in bytes */
528
529#ifdef CONFIG_SYS_SRAM_BASE
530 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
531 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
532#endif
533
Heiko Schocher50258972017-06-07 17:33:11 +0200534#if defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000535 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
536#endif
Heiko Schocher064b55c2017-06-14 05:49:40 +0200537#if defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000538 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
539#endif
540#if defined(CONFIG_MPC83xx)
541 bd->bi_immrbar = CONFIG_SYS_IMMR;
542#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000543
544 return 0;
545}
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100546#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000547
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100548#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000549static int setup_board_part2(void)
550{
551 bd_t *bd = gd->bd;
552
553 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
554 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
555#if defined(CONFIG_CPM2)
556 bd->bi_cpmfreq = gd->arch.cpm_clk;
557 bd->bi_brgfreq = gd->arch.brg_clk;
558 bd->bi_sccfreq = gd->arch.scc_clk;
559 bd->bi_vco = gd->arch.vco_out;
560#endif /* CONFIG_CPM2 */
Alison Wang1313db42015-02-12 18:33:15 +0800561#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
562 bd->bi_pcifreq = gd->pci_clk;
563#endif
564#if defined(CONFIG_EXTRA_CLOCK)
565 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
566 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
567 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
568#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000569
570 return 0;
571}
572#endif
573
Simon Glass1938f4a2013-03-11 06:49:53 +0000574#ifdef CONFIG_POST
575static int init_post(void)
576{
577 post_bootmode_init();
578 post_run(NULL, POST_ROM | post_bootmode_get(0));
579
580 return 0;
581}
582#endif
583
Simon Glass1938f4a2013-03-11 06:49:53 +0000584static int reloc_fdt(void)
585{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100586#ifndef CONFIG_OF_EMBED
Simon Glassf05ad9b2015-08-04 12:33:39 -0600587 if (gd->flags & GD_FLG_SKIP_RELOC)
588 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000589 if (gd->new_fdt) {
590 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
591 gd->fdt_blob = gd->new_fdt;
592 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100593#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000594
595 return 0;
596}
597
Simon Glass25e7dc62017-05-22 05:05:30 -0600598static int reloc_bootstage(void)
599{
600#ifdef CONFIG_BOOTSTAGE
601 if (gd->flags & GD_FLG_SKIP_RELOC)
602 return 0;
603 if (gd->new_bootstage) {
604 int size = bootstage_get_size();
605
606 debug("Copying bootstage from %p to %p, size %x\n",
607 gd->bootstage, gd->new_bootstage, size);
608 memcpy(gd->new_bootstage, gd->bootstage, size);
609 gd->bootstage = gd->new_bootstage;
610 }
611#endif
612
613 return 0;
614}
615
Simon Glass1938f4a2013-03-11 06:49:53 +0000616static int setup_reloc(void)
617{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600618 if (gd->flags & GD_FLG_SKIP_RELOC) {
619 debug("Skipping relocation due to flag\n");
620 return 0;
621 }
622
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800623#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200624#ifdef ARM
625 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
626#elif defined(CONFIG_M68K)
angelo@sysam.ite310b932015-02-12 01:40:17 +0100627 /*
628 * On all ColdFire arch cpu, monitor code starts always
629 * just after the default vector table location, so at 0x400
630 */
631 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200632#else
633 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100634#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800635#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000636 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
637
638 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000639 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000640 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
641 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000642
643 return 0;
644}
645
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100646#ifdef CONFIG_OF_BOARD_FIXUP
647static int fix_fdt(void)
648{
649 return board_fix_fdt((void *)gd->fdt_blob);
650}
651#endif
652
Simon Glass1938f4a2013-03-11 06:49:53 +0000653/* ARM calls relocate_code from its crt0.S */
Simon Glass530f27e2017-01-16 07:03:49 -0700654#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
655 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000656
657static int jump_to_copy(void)
658{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600659 if (gd->flags & GD_FLG_SKIP_RELOC)
660 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000661 /*
662 * x86 is special, but in a nice way. It uses a trampoline which
663 * enables the dcache if possible.
664 *
665 * For now, other archs use relocate_code(), which is implemented
666 * similarly for all archs. When we do generic relocation, hopefully
667 * we can make all archs enable the dcache prior to relocation.
668 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300669#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000670 /*
671 * SDRAM and console are now initialised. The final stack can now
672 * be setup in SDRAM. Code execution will continue in Flash, but
673 * with the stack in SDRAM and Global Data in temporary memory
674 * (CPU cache)
675 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600676 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000677 board_init_f_r_trampoline(gd->start_addr_sp);
678#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000679 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000680#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000681
682 return 0;
683}
684#endif
685
686/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glassb383d6c2017-05-22 05:05:25 -0600687static int initf_bootstage(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000688{
Simon Glassbaa7d342017-06-07 10:28:46 -0600689 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
690 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glassb383d6c2017-05-22 05:05:25 -0600691 int ret;
692
Simon Glass824bb1b2017-05-22 05:05:35 -0600693 ret = bootstage_init(!from_spl);
Simon Glassb383d6c2017-05-22 05:05:25 -0600694 if (ret)
695 return ret;
Simon Glass824bb1b2017-05-22 05:05:35 -0600696 if (from_spl) {
697 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
698 CONFIG_BOOTSTAGE_STASH_SIZE);
699
700 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
701 if (ret && ret != -ENOENT) {
702 debug("Failed to unstash bootstage: err=%d\n", ret);
703 return ret;
704 }
705 }
Simon Glassb383d6c2017-05-22 05:05:25 -0600706
Simon Glass1938f4a2013-03-11 06:49:53 +0000707 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
708
709 return 0;
710}
711
Simon Glass9854a872015-11-08 23:47:48 -0700712static int initf_console_record(void)
713{
Andy Yanf1896c42017-07-24 17:43:34 +0800714#if defined(CONFIG_CONSOLE_RECORD) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass9854a872015-11-08 23:47:48 -0700715 return console_record_init();
716#else
717 return 0;
718#endif
719}
720
Simon Glassab7cd622014-07-23 06:55:04 -0600721static int initf_dm(void)
722{
Andy Yanf1896c42017-07-24 17:43:34 +0800723#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassab7cd622014-07-23 06:55:04 -0600724 int ret;
725
Simon Glass63c5bf42017-05-22 05:05:32 -0600726 bootstage_start(BOOTSTATE_ID_ACCUM_DM_F, "dm_f");
Simon Glassab7cd622014-07-23 06:55:04 -0600727 ret = dm_init_and_scan(true);
Simon Glass63c5bf42017-05-22 05:05:32 -0600728 bootstage_accum(BOOTSTATE_ID_ACCUM_DM_F);
Simon Glassab7cd622014-07-23 06:55:04 -0600729 if (ret)
730 return ret;
731#endif
Simon Glass1057e6c2016-02-24 09:14:50 -0700732#ifdef CONFIG_TIMER_EARLY
733 ret = dm_timer_init();
734 if (ret)
735 return ret;
736#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600737
738 return 0;
739}
740
Simon Glass146251f2015-01-19 22:16:12 -0700741/* Architecture-specific memory reservation */
742__weak int reserve_arch(void)
743{
744 return 0;
745}
746
Simon Glassd4c671c2015-03-05 12:25:16 -0700747__weak int arch_cpu_init_dm(void)
748{
749 return 0;
750}
751
Simon Glass4acff452017-01-16 07:03:50 -0700752static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000753 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700754#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700755 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700756#endif
Kevin Hilmand2107182014-12-09 15:03:58 -0800757#ifdef CONFIG_TRACE
Simon Glass71c52db2013-06-11 11:14:42 -0700758 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800759#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700760 initf_malloc,
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700761 log_init,
Simon Glass5ac44a52017-05-22 05:05:31 -0600762 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glass9854a872015-11-08 23:47:48 -0700763 initf_console_record,
Simon Glass671549e2017-03-28 10:27:18 -0600764#if defined(CONFIG_HAVE_FSP)
765 arch_fsp_init,
Bin Menga52a068e2015-08-20 06:40:18 -0700766#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000767 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100768 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600769 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700770 arch_cpu_init_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000771#if defined(CONFIG_BOARD_EARLY_INIT_F)
772 board_early_init_f,
773#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600774#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600775 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000776 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600777#endif
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200778#if !defined(CONFIG_M68K)
Simon Glass1938f4a2013-03-11 06:49:53 +0000779 timer_init, /* initialize timer */
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200780#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000781#if defined(CONFIG_BOARD_POSTCLK_INIT)
782 board_postclk_init,
783#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000784 env_init, /* initialize environment */
785 init_baud_rate, /* initialze baudrate settings */
786 serial_init, /* serial communications setup */
787 console_init_f, /* stage 1 init of console */
788 display_options, /* say that we are here */
789 display_text_info, /* show debugging info if required */
Angelo Dureghellob9153fe32017-08-20 00:01:55 +0200790#if defined(CONFIG_PPC) || defined(CONFIG_SH) || defined(CONFIG_X86)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000791 checkcpu,
792#endif
Simon Glasscc664002017-01-23 13:31:25 -0700793#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000794 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700795#endif
Cooper Jr., Franklinaf9e6ad2017-06-16 17:25:12 -0500796#if defined(CONFIG_DTB_RESELECT)
797 embedded_dtb_select,
798#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000799#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900800 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000801#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000802 INIT_FUNC_WATCHDOG_INIT
803#if defined(CONFIG_MISC_INIT_F)
804 misc_init_f,
805#endif
806 INIT_FUNC_WATCHDOG_RESET
Simon Glass69153982017-05-12 21:09:56 -0600807#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000808 init_func_i2c,
809#endif
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530810#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
811 init_func_vid,
812#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000813#if defined(CONFIG_HARD_SPI)
814 init_func_spi,
815#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000816 announce_dram_init,
Simon Glass1938f4a2013-03-11 06:49:53 +0000817 dram_init, /* configure available RAM banks */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000818#ifdef CONFIG_POST
819 post_init_f,
820#endif
821 INIT_FUNC_WATCHDOG_RESET
822#if defined(CONFIG_SYS_DRAM_TEST)
823 testdram,
824#endif /* CONFIG_SYS_DRAM_TEST */
825 INIT_FUNC_WATCHDOG_RESET
826
Simon Glass1938f4a2013-03-11 06:49:53 +0000827#ifdef CONFIG_POST
828 init_post,
829#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000830 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000831 /*
832 * Now that we have DRAM mapped and working, we can
833 * relocate the code and continue running from DRAM.
834 *
835 * Reserve memory at end of RAM for (top down in that order):
836 * - area that won't get touched by U-Boot and Linux (optional)
837 * - kernel log buffer
838 * - protected RAM
839 * - LCD framebuffer
840 * - monitor code
841 * - board info struct
842 */
843 setup_dest_addr,
Simon Glass1938f4a2013-03-11 06:49:53 +0000844#ifdef CONFIG_PRAM
845 reserve_pram,
846#endif
847 reserve_round_4k,
Simon Glass80d4bcd2017-03-31 08:40:29 -0600848#ifdef CONFIG_ARM
Simon Glass1938f4a2013-03-11 06:49:53 +0000849 reserve_mmu,
850#endif
Simon Glass5a541942016-01-18 19:52:21 -0700851 reserve_video,
Simon Glass8703ef32016-01-18 19:52:20 -0700852 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000853 reserve_uboot,
854 reserve_malloc,
855 reserve_board,
Simon Glass1938f4a2013-03-11 06:49:53 +0000856 setup_machine,
857 reserve_global_data,
858 reserve_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600859 reserve_bootstage,
Simon Glass146251f2015-01-19 22:16:12 -0700860 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000861 reserve_stacks,
Simon Glass76b00ac2017-03-31 08:40:32 -0600862 dram_init_banksize,
Simon Glass1938f4a2013-03-11 06:49:53 +0000863 show_dram_config,
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200864#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
865 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000866 setup_board_part1,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100867#endif
868#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000869 INIT_FUNC_WATCHDOG_RESET
870 setup_board_part2,
871#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000872 display_new_sp,
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100873#ifdef CONFIG_OF_BOARD_FIXUP
874 fix_fdt,
875#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000876 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000877 reloc_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600878 reloc_bootstage,
Simon Glass1938f4a2013-03-11 06:49:53 +0000879 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300880#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700881 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700882 do_elf_reloc_fixups,
Simon Glass6bda55a2017-01-16 07:03:52 -0700883 clear_bss,
Simon Glass313aef32015-01-01 16:18:09 -0700884#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300885#if defined(CONFIG_XTENSA)
886 clear_bss,
887#endif
Simon Glass530f27e2017-01-16 07:03:49 -0700888#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
889 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000890 jump_to_copy,
891#endif
892 NULL,
893};
894
895void board_init_f(ulong boot_flags)
896{
Simon Glass1938f4a2013-03-11 06:49:53 +0000897 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +0400898 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000899
900 if (initcall_run_list(init_sequence_f))
901 hang();
902
Ben Stoltz9b217492015-07-31 09:31:37 -0600903#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Simon Glass530f27e2017-01-16 07:03:49 -0700904 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000905 /* NOTREACHED - jump_to_copy() does not return */
906 hang();
907#endif
908}
909
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300910#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000911/*
912 * For now this code is only used on x86.
913 *
914 * init_sequence_f_r is the list of init functions which are run when
915 * U-Boot is executing from Flash with a semi-limited 'C' environment.
916 * The following limitations must be considered when implementing an
917 * '_f_r' function:
918 * - 'static' variables are read-only
919 * - Global Data (gd->xxx) is read/write
920 *
921 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
922 * supported). It _should_, if possible, copy global data to RAM and
923 * initialise the CPU caches (to speed up the relocation process)
924 *
925 * NOTE: At present only x86 uses this route, but it is intended that
926 * all archs will move to this when generic relocation is implemented.
927 */
Simon Glass4acff452017-01-16 07:03:50 -0700928static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -0700929#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +0000930 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -0700931#endif
Simon Glass48a33802013-03-05 14:39:52 +0000932
933 NULL,
934};
935
936void board_init_f_r(void)
937{
938 if (initcall_run_list(init_sequence_f_r))
939 hang();
940
941 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -0700942 * The pre-relocation drivers may be using memory that has now gone
943 * away. Mark serial as unavailable - this will fall back to the debug
944 * UART if available.
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700945 *
946 * Do the same with log drivers since the memory may not be available.
Simon Glasse4d6ab02016-03-11 22:06:51 -0700947 */
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700948 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glass5ee94b42017-09-05 19:49:45 -0600949#ifdef CONFIG_TIMER
950 gd->timer = NULL;
951#endif
Simon Glasse4d6ab02016-03-11 22:06:51 -0700952
953 /*
Simon Glass48a33802013-03-05 14:39:52 +0000954 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
955 * Transfer execution from Flash to RAM by calculating the address
956 * of the in-RAM copy of board_init_r() and calling it
957 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +0300958 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000959
960 /* NOTREACHED - board_init_r() does not return */
961 hang();
962}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +0300963#endif /* CONFIG_X86 */