blob: fa667c764bc650a13b29ddd15d2859dfa657ce68 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass1938f4a2013-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 Glass1938f4a2013-03-11 06:49:53 +000010 */
11
12#include <common.h>
Simon Glass24b852a2015-11-08 23:47:45 -070013#include <console.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000014#include <environment.h>
Simon Glassab7cd622014-07-23 06:55:04 -060015#include <dm.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000016#include <fdtdec.h>
Simon Glassf828bf22013-04-20 08:42:41 +000017#include <fs.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000018#include <i2c.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000019#include <initcall.h>
Simon Glassfb5cf7f2015-02-27 22:06:36 -070020#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050021#include <mapmem.h>
Simon Glassa733b062013-04-26 02:53:43 +000022#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000023#include <post.h>
Simon Glasse47b2d62017-03-31 08:40:38 -060024#include <relocate.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000025#include <spi.h>
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020026#include <status_led.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070027#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070028#include <trace.h>
Simon Glass5a541942016-01-18 19:52:21 -070029#include <video.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000030#include <watchdog.h>
Simon Glassb885d022017-05-17 08:23:01 -060031#ifdef CONFIG_MACH_TYPE
32#include <asm/mach-types.h>
33#endif
Simon Glass1fbf97d2017-03-31 08:40:39 -060034#if defined(CONFIG_MP) && defined(CONFIG_PPC)
35#include <asm/mp.h>
36#endif
Simon Glass1938f4a2013-03-11 06:49:53 +000037#include <asm/io.h>
38#include <asm/sections.h>
Simon Glassab7cd622014-07-23 06:55:04 -060039#include <dm/root.h>
Simon Glass056285f2017-03-31 08:40:35 -060040#include <linux/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000041
42/*
43 * Pointer to initial global data area
44 *
45 * Here we initialize it if needed.
46 */
47#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
48#undef XTRN_DECLARE_GLOBAL_DATA_PTR
49#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Mario Six16ef1472018-01-15 11:10:02 +010050DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
Simon Glass1938f4a2013-03-11 06:49:53 +000051#else
52DECLARE_GLOBAL_DATA_PTR;
53#endif
54
55/*
Simon Glass4c509342015-04-28 20:25:03 -060056 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000057 * refactored to a single function, something like:
58 *
59 * void led_set_state(enum led_colour_t colour, int on);
60 */
61/************************************************************************
62 * Coloured LED functionality
63 ************************************************************************
64 * May be supplied by boards if desired
65 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020066__weak void coloured_LED_init(void) {}
67__weak void red_led_on(void) {}
68__weak void red_led_off(void) {}
69__weak void green_led_on(void) {}
70__weak void green_led_off(void) {}
71__weak void yellow_led_on(void) {}
72__weak void yellow_led_off(void) {}
73__weak void blue_led_on(void) {}
74__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000075
76/*
77 * Why is gd allocated a register? Prior to reloc it might be better to
78 * just pass it around to each function in this file?
79 *
80 * After reloc one could argue that it is hardly used and doesn't need
81 * to be in a register. Or if it is it should perhaps hold pointers to all
82 * global data for all modules, so that post-reloc we can avoid the massive
83 * literal pool we get on ARM. Or perhaps just encourage each module to use
84 * a structure...
85 */
86
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080087#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +000088static int init_func_watchdog_init(void)
89{
Tom Riniea3310e2017-03-14 11:08:10 -040090# if defined(CONFIG_HW_WATCHDOG) && \
91 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Stefan Roese14a380a2015-03-10 08:04:36 +010092 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
Anatolij Gustschin46d7a3b2016-06-13 14:24:23 +020093 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roese14a380a2015-03-10 08:04:36 +010094 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080095 hw_watchdog_init();
Simon Glasse4fef6c2013-03-11 14:30:42 +000096 puts(" Watchdog enabled\n");
Anatolij Gustschinba169d92016-06-13 14:24:24 +020097# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +000098 WATCHDOG_RESET();
99
100 return 0;
101}
102
103int init_func_watchdog_reset(void)
104{
105 WATCHDOG_RESET();
106
107 return 0;
108}
109#endif /* CONFIG_WATCHDOG */
110
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200111__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000112{
113 /* please define platform specific board_add_ram_info() */
114}
115
Simon Glass1938f4a2013-03-11 06:49:53 +0000116static int init_baud_rate(void)
117{
Simon Glassbfebc8c2017-08-03 12:22:13 -0600118 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glass1938f4a2013-03-11 06:49:53 +0000119 return 0;
120}
121
122static int display_text_info(void)
123{
Ben Stoltz9b217492015-07-31 09:31:37 -0600124#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100125 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000126
Simon Glass632efa72013-03-11 07:06:48 +0000127 bss_start = (ulong)&__bss_start;
128 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100129
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800130#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100131 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800132#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100133 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800134#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100135
136 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six16ef1472018-01-15 11:10:02 +0100137 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000138#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000139
Simon Glass1938f4a2013-03-11 06:49:53 +0000140 return 0;
141}
142
143static int announce_dram_init(void)
144{
145 puts("DRAM: ");
146 return 0;
147}
148
149static int show_dram_config(void)
150{
York Sunfa39ffe2014-05-02 17:28:05 -0700151 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000152
153#ifdef CONFIG_NR_DRAM_BANKS
154 int i;
155
156 debug("\nRAM Configuration:\n");
157 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
158 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700159 debug("Bank #%d: %llx ", i,
160 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000161#ifdef DEBUG
162 print_size(gd->bd->bi_dram[i].size, "\n");
163#endif
164 }
165 debug("\nDRAM: ");
166#else
167 size = gd->ram_size;
168#endif
169
Simon Glasse4fef6c2013-03-11 14:30:42 +0000170 print_size(size, "");
171 board_add_ram_info(0);
172 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000173
174 return 0;
175}
176
Simon Glass76b00ac2017-03-31 08:40:32 -0600177__weak int dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000178{
179#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
180 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
181 gd->bd->bi_dram[0].size = get_effective_memsize();
182#endif
Simon Glass76b00ac2017-03-31 08:40:32 -0600183
184 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000185}
186
Simon Glass69153982017-05-12 21:09:56 -0600187#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000188static int init_func_i2c(void)
189{
190 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200191#ifdef CONFIG_SYS_I2C
192 i2c_init_all();
193#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000194 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200195#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000196 puts("ready\n");
197 return 0;
198}
199#endif
200
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530201#if defined(CONFIG_VID)
202__weak int init_func_vid(void)
203{
204 return 0;
205}
206#endif
207
Simon Glasse4fef6c2013-03-11 14:30:42 +0000208#if defined(CONFIG_HARD_SPI)
209static int init_func_spi(void)
210{
211 puts("SPI: ");
212 spi_init();
213 puts("ready\n");
214 return 0;
215}
216#endif
217
Simon Glass1938f4a2013-03-11 06:49:53 +0000218static int setup_mon_len(void)
219{
Michal Simeke945f6d2014-05-08 16:08:44 +0200220#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100221 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz9b217492015-07-31 09:31:37 -0600222#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000223 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400224#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800225 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Rick Chen068feb92017-12-26 13:55:58 +0800226#elif defined(CONFIG_NDS32) || defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800227 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600228#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000229 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
230 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000231#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000232 return 0;
233}
234
235__weak int arch_cpu_init(void)
236{
237 return 0;
238}
239
Paul Burton8ebf5062016-09-21 11:18:46 +0100240__weak int mach_cpu_init(void)
241{
242 return 0;
243}
244
Simon Glass1938f4a2013-03-11 06:49:53 +0000245/* Get the top of usable RAM */
246__weak ulong board_get_usable_ram_top(ulong total_size)
247{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700248#ifdef CONFIG_SYS_SDRAM_BASE
249 /*
Simon Glass4c509342015-04-28 20:25:03 -0600250 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700251 * 32-bit address space. If so, clip the usable RAM so it doesn't.
252 */
253 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
254 /*
255 * Will wrap back to top of 32-bit space when reservations
256 * are made.
257 */
258 return 0;
259#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000260 return gd->ram_top;
261}
262
263static int setup_dest_addr(void)
264{
265 debug("Monitor len: %08lX\n", gd->mon_len);
266 /*
267 * Ram is setup, size stored in gd !!
268 */
269 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun36cc0de2017-03-06 09:02:28 -0800270#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000271 /*
272 * Subtract specified amount of memory to hide so that it won't
273 * get "touched" at all by U-Boot. By fixing up gd->ram_size
274 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800275 * memory size and won't touch it either. This should work
276 * for arch/ppc and arch/powerpc. Only Linux board ports in
277 * arch/powerpc with bootwrapper support, that recalculate the
278 * memory size from the SDRAM controller setup will have to
279 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000280 */
York Sun36cc0de2017-03-06 09:02:28 -0800281 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
282#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000283#ifdef CONFIG_SYS_SDRAM_BASE
284 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
285#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000286 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000287 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000288 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000289 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700290#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000291 /*
292 * We need to make sure the location we intend to put secondary core
293 * boot code is reserved and not used by any part of u-boot
294 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000295 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
296 gd->relocaddr = determine_mp_bootpg(NULL);
297 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000298 }
299#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000300 return 0;
301}
302
Simon Glass1938f4a2013-03-11 06:49:53 +0000303#ifdef CONFIG_PRAM
304/* reserve protected RAM */
305static int reserve_pram(void)
306{
307 ulong reg;
308
Simon Glassbfebc8c2017-08-03 12:22:13 -0600309 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000310 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000311 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000312 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000313 return 0;
314}
315#endif /* CONFIG_PRAM */
316
317/* Round memory pointer down to next 4 kB limit */
318static int reserve_round_4k(void)
319{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000320 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000321 return 0;
322}
323
Simon Glass80d4bcd2017-03-31 08:40:29 -0600324#ifdef CONFIG_ARM
Siva Durga Prasad Paladugu60873f72017-07-13 19:01:08 +0530325__weak int reserve_mmu(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000326{
Simon Glass80d4bcd2017-03-31 08:40:29 -0600327#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Simon Glass1938f4a2013-03-11 06:49:53 +0000328 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800329 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000330 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000331
332 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000333 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000334
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000335 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000336 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
337 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sun50e93b92016-06-24 16:46:19 -0700338
339#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
340 /*
341 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
342 * with location within secure ram.
343 */
344 gd->arch.tlb_allocated = gd->arch.tlb_addr;
345#endif
Simon Glass80d4bcd2017-03-31 08:40:29 -0600346#endif
York Sun50e93b92016-06-24 16:46:19 -0700347
Simon Glass1938f4a2013-03-11 06:49:53 +0000348 return 0;
349}
350#endif
351
Simon Glass5a541942016-01-18 19:52:21 -0700352static int reserve_video(void)
353{
Simon Glass0f079eb2017-03-31 08:40:30 -0600354#ifdef CONFIG_DM_VIDEO
Simon Glass5a541942016-01-18 19:52:21 -0700355 ulong addr;
356 int ret;
357
358 addr = gd->relocaddr;
359 ret = video_reserve(&addr);
360 if (ret)
361 return ret;
362 gd->relocaddr = addr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600363#elif defined(CONFIG_LCD)
Simon Glass5a541942016-01-18 19:52:21 -0700364# ifdef CONFIG_FB_ADDR
Simon Glass1938f4a2013-03-11 06:49:53 +0000365 gd->fb_base = CONFIG_FB_ADDR;
Simon Glass5a541942016-01-18 19:52:21 -0700366# else
Simon Glass1938f4a2013-03-11 06:49:53 +0000367 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000368 gd->relocaddr = lcd_setmem(gd->relocaddr);
369 gd->fb_base = gd->relocaddr;
Simon Glass5a541942016-01-18 19:52:21 -0700370# endif /* CONFIG_FB_ADDR */
Simon Glass0f079eb2017-03-31 08:40:30 -0600371#elif defined(CONFIG_VIDEO) && \
Heiko Schocher5b8e76c2017-06-07 17:33:09 +0200372 (!defined(CONFIG_PPC)) && \
Simon Glass8703ef32016-01-18 19:52:20 -0700373 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Riniea3310e2017-03-14 11:08:10 -0400374 !defined(CONFIG_M68K)
Simon Glass8703ef32016-01-18 19:52:20 -0700375 /* reserve memory for video display (always full pages) */
376 gd->relocaddr = video_setmem(gd->relocaddr);
377 gd->fb_base = gd->relocaddr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600378#endif
Simon Glass8703ef32016-01-18 19:52:20 -0700379
380 return 0;
381}
Simon Glass8703ef32016-01-18 19:52:20 -0700382
Simon Glass71c52db2013-06-11 11:14:42 -0700383static int reserve_trace(void)
384{
385#ifdef CONFIG_TRACE
386 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
387 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
388 debug("Reserving %dk for trace data at: %08lx\n",
389 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
390#endif
391
392 return 0;
393}
394
Simon Glass1938f4a2013-03-11 06:49:53 +0000395static int reserve_uboot(void)
396{
397 /*
398 * reserve memory for U-Boot code, data & bss
399 * round down to next 4 kB limit
400 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000401 gd->relocaddr -= gd->mon_len;
402 gd->relocaddr &= ~(4096 - 1);
Paul Burton703ec9d2017-06-19 11:53:47 -0700403#if defined(CONFIG_E500) || defined(CONFIG_MIPS)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000404 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000405 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000406#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000407
408 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000409 gd->relocaddr);
410
411 gd->start_addr_sp = gd->relocaddr;
412
Simon Glass1938f4a2013-03-11 06:49:53 +0000413 return 0;
414}
415
416/* reserve memory for malloc() area */
417static int reserve_malloc(void)
418{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000419 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000420 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100421 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000422 return 0;
423}
424
425/* (permanently) allocate a Board Info struct */
426static int reserve_board(void)
427{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800428 if (!gd->bd) {
429 gd->start_addr_sp -= sizeof(bd_t);
430 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
431 memset(gd->bd, '\0', sizeof(bd_t));
432 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
433 sizeof(bd_t), gd->start_addr_sp);
434 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000435 return 0;
436}
437
438static int setup_machine(void)
439{
440#ifdef CONFIG_MACH_TYPE
441 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
442#endif
443 return 0;
444}
445
446static int reserve_global_data(void)
447{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000448 gd->start_addr_sp -= sizeof(gd_t);
449 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000450 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100451 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000452 return 0;
453}
454
455static int reserve_fdt(void)
456{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100457#ifndef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000458 /*
Simon Glass4c509342015-04-28 20:25:03 -0600459 * If the device tree is sitting immediately above our image then we
Simon Glass1938f4a2013-03-11 06:49:53 +0000460 * must relocate it. If it is embedded in the data section, then it
461 * will be relocated with other data.
462 */
463 if (gd->fdt_blob) {
464 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
465
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000466 gd->start_addr_sp -= gd->fdt_size;
467 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000468 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000469 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000470 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100471#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000472
473 return 0;
474}
475
Simon Glass25e7dc62017-05-22 05:05:30 -0600476static int reserve_bootstage(void)
477{
478#ifdef CONFIG_BOOTSTAGE
479 int size = bootstage_get_size();
480
481 gd->start_addr_sp -= size;
482 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
483 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
484 gd->start_addr_sp);
485#endif
486
487 return 0;
488}
489
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100490__weak int arch_reserve_stacks(void)
Andreas Bießmann68145d42015-02-06 23:06:45 +0100491{
492 return 0;
493}
494
Simon Glass1938f4a2013-03-11 06:49:53 +0000495static int reserve_stacks(void)
496{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100497 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000498 gd->start_addr_sp -= 16;
499 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000500
501 /*
Simon Glass4c509342015-04-28 20:25:03 -0600502 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100503 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000504 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100505 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000506}
507
508static int display_new_sp(void)
509{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000510 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000511
512 return 0;
513}
514
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200515#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
516 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000517static int setup_board_part1(void)
518{
519 bd_t *bd = gd->bd;
520
521 /*
522 * Save local variables to board info struct
523 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000524 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
525 bd->bi_memsize = gd->ram_size; /* size in bytes */
526
527#ifdef CONFIG_SYS_SRAM_BASE
528 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
529 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
530#endif
531
Heiko Schocher50258972017-06-07 17:33:11 +0200532#if defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000533 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
534#endif
Heiko Schocher064b55c2017-06-14 05:49:40 +0200535#if defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000536 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
537#endif
538#if defined(CONFIG_MPC83xx)
539 bd->bi_immrbar = CONFIG_SYS_IMMR;
540#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000541
542 return 0;
543}
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100544#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000545
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100546#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000547static int setup_board_part2(void)
548{
549 bd_t *bd = gd->bd;
550
551 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
552 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
553#if defined(CONFIG_CPM2)
554 bd->bi_cpmfreq = gd->arch.cpm_clk;
555 bd->bi_brgfreq = gd->arch.brg_clk;
556 bd->bi_sccfreq = gd->arch.scc_clk;
557 bd->bi_vco = gd->arch.vco_out;
558#endif /* CONFIG_CPM2 */
Alison Wang1313db42015-02-12 18:33:15 +0800559#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
560 bd->bi_pcifreq = gd->pci_clk;
561#endif
562#if defined(CONFIG_EXTRA_CLOCK)
563 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
564 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
565 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
566#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000567
568 return 0;
569}
570#endif
571
Simon Glass1938f4a2013-03-11 06:49:53 +0000572#ifdef CONFIG_POST
573static int init_post(void)
574{
575 post_bootmode_init();
576 post_run(NULL, POST_ROM | post_bootmode_get(0));
577
578 return 0;
579}
580#endif
581
Simon Glass1938f4a2013-03-11 06:49:53 +0000582static int reloc_fdt(void)
583{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100584#ifndef CONFIG_OF_EMBED
Simon Glassf05ad9b2015-08-04 12:33:39 -0600585 if (gd->flags & GD_FLG_SKIP_RELOC)
586 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000587 if (gd->new_fdt) {
588 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
589 gd->fdt_blob = gd->new_fdt;
590 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100591#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000592
593 return 0;
594}
595
Simon Glass25e7dc62017-05-22 05:05:30 -0600596static int reloc_bootstage(void)
597{
598#ifdef CONFIG_BOOTSTAGE
599 if (gd->flags & GD_FLG_SKIP_RELOC)
600 return 0;
601 if (gd->new_bootstage) {
602 int size = bootstage_get_size();
603
604 debug("Copying bootstage from %p to %p, size %x\n",
605 gd->bootstage, gd->new_bootstage, size);
606 memcpy(gd->new_bootstage, gd->bootstage, size);
607 gd->bootstage = gd->new_bootstage;
608 }
609#endif
610
611 return 0;
612}
613
Simon Glass1938f4a2013-03-11 06:49:53 +0000614static int setup_reloc(void)
615{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600616 if (gd->flags & GD_FLG_SKIP_RELOC) {
617 debug("Skipping relocation due to flag\n");
618 return 0;
619 }
620
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800621#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200622#ifdef ARM
623 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
624#elif defined(CONFIG_M68K)
angelo@sysam.ite310b932015-02-12 01:40:17 +0100625 /*
626 * On all ColdFire arch cpu, monitor code starts always
627 * just after the default vector table location, so at 0x400
628 */
629 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200630#else
631 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100632#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800633#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000634 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
635
636 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000637 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000638 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
639 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000640
641 return 0;
642}
643
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100644#ifdef CONFIG_OF_BOARD_FIXUP
645static int fix_fdt(void)
646{
647 return board_fix_fdt((void *)gd->fdt_blob);
648}
649#endif
650
Simon Glass1938f4a2013-03-11 06:49:53 +0000651/* ARM calls relocate_code from its crt0.S */
Simon Glass530f27e2017-01-16 07:03:49 -0700652#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
653 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000654
655static int jump_to_copy(void)
656{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600657 if (gd->flags & GD_FLG_SKIP_RELOC)
658 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000659 /*
660 * x86 is special, but in a nice way. It uses a trampoline which
661 * enables the dcache if possible.
662 *
663 * For now, other archs use relocate_code(), which is implemented
664 * similarly for all archs. When we do generic relocation, hopefully
665 * we can make all archs enable the dcache prior to relocation.
666 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300667#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000668 /*
669 * SDRAM and console are now initialised. The final stack can now
670 * be setup in SDRAM. Code execution will continue in Flash, but
671 * with the stack in SDRAM and Global Data in temporary memory
672 * (CPU cache)
673 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600674 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000675 board_init_f_r_trampoline(gd->start_addr_sp);
676#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000677 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000678#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000679
680 return 0;
681}
682#endif
683
684/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glassb383d6c2017-05-22 05:05:25 -0600685static int initf_bootstage(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000686{
Simon Glassbaa7d342017-06-07 10:28:46 -0600687 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
688 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glassb383d6c2017-05-22 05:05:25 -0600689 int ret;
690
Simon Glass824bb1b2017-05-22 05:05:35 -0600691 ret = bootstage_init(!from_spl);
Simon Glassb383d6c2017-05-22 05:05:25 -0600692 if (ret)
693 return ret;
Simon Glass824bb1b2017-05-22 05:05:35 -0600694 if (from_spl) {
695 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
696 CONFIG_BOOTSTAGE_STASH_SIZE);
697
698 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
699 if (ret && ret != -ENOENT) {
700 debug("Failed to unstash bootstage: err=%d\n", ret);
701 return ret;
702 }
703 }
Simon Glassb383d6c2017-05-22 05:05:25 -0600704
Simon Glass1938f4a2013-03-11 06:49:53 +0000705 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
706
707 return 0;
708}
709
Simon Glass9854a872015-11-08 23:47:48 -0700710static int initf_console_record(void)
711{
Andy Yanf1896c42017-07-24 17:43:34 +0800712#if defined(CONFIG_CONSOLE_RECORD) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass9854a872015-11-08 23:47:48 -0700713 return console_record_init();
714#else
715 return 0;
716#endif
717}
718
Simon Glassab7cd622014-07-23 06:55:04 -0600719static int initf_dm(void)
720{
Andy Yanf1896c42017-07-24 17:43:34 +0800721#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassab7cd622014-07-23 06:55:04 -0600722 int ret;
723
Simon Glass63c5bf42017-05-22 05:05:32 -0600724 bootstage_start(BOOTSTATE_ID_ACCUM_DM_F, "dm_f");
Simon Glassab7cd622014-07-23 06:55:04 -0600725 ret = dm_init_and_scan(true);
Simon Glass63c5bf42017-05-22 05:05:32 -0600726 bootstage_accum(BOOTSTATE_ID_ACCUM_DM_F);
Simon Glassab7cd622014-07-23 06:55:04 -0600727 if (ret)
728 return ret;
729#endif
Simon Glass1057e6c2016-02-24 09:14:50 -0700730#ifdef CONFIG_TIMER_EARLY
731 ret = dm_timer_init();
732 if (ret)
733 return ret;
734#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600735
736 return 0;
737}
738
Simon Glass146251f2015-01-19 22:16:12 -0700739/* Architecture-specific memory reservation */
740__weak int reserve_arch(void)
741{
742 return 0;
743}
744
Simon Glassd4c671c2015-03-05 12:25:16 -0700745__weak int arch_cpu_init_dm(void)
746{
747 return 0;
748}
749
Simon Glass4acff452017-01-16 07:03:50 -0700750static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000751 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700752#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700753 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700754#endif
Kevin Hilmand2107182014-12-09 15:03:58 -0800755#ifdef CONFIG_TRACE
Simon Glass71c52db2013-06-11 11:14:42 -0700756 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800757#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700758 initf_malloc,
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700759 log_init,
Simon Glass5ac44a52017-05-22 05:05:31 -0600760 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glass9854a872015-11-08 23:47:48 -0700761 initf_console_record,
Simon Glass671549e2017-03-28 10:27:18 -0600762#if defined(CONFIG_HAVE_FSP)
763 arch_fsp_init,
Bin Menga52a068e2015-08-20 06:40:18 -0700764#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000765 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100766 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600767 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700768 arch_cpu_init_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000769#if defined(CONFIG_BOARD_EARLY_INIT_F)
770 board_early_init_f,
771#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600772#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600773 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000774 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600775#endif
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200776#if !defined(CONFIG_M68K)
Simon Glass1938f4a2013-03-11 06:49:53 +0000777 timer_init, /* initialize timer */
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200778#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000779#if defined(CONFIG_BOARD_POSTCLK_INIT)
780 board_postclk_init,
781#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000782 env_init, /* initialize environment */
783 init_baud_rate, /* initialze baudrate settings */
784 serial_init, /* serial communications setup */
785 console_init_f, /* stage 1 init of console */
786 display_options, /* say that we are here */
787 display_text_info, /* show debugging info if required */
Angelo Dureghellob9153fe32017-08-20 00:01:55 +0200788#if defined(CONFIG_PPC) || defined(CONFIG_SH) || defined(CONFIG_X86)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000789 checkcpu,
790#endif
Simon Glasscc664002017-01-23 13:31:25 -0700791#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000792 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700793#endif
Cooper Jr., Franklinaf9e6ad2017-06-16 17:25:12 -0500794#if defined(CONFIG_DTB_RESELECT)
795 embedded_dtb_select,
796#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000797#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900798 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000799#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000800 INIT_FUNC_WATCHDOG_INIT
801#if defined(CONFIG_MISC_INIT_F)
802 misc_init_f,
803#endif
804 INIT_FUNC_WATCHDOG_RESET
Simon Glass69153982017-05-12 21:09:56 -0600805#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000806 init_func_i2c,
807#endif
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530808#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
809 init_func_vid,
810#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000811#if defined(CONFIG_HARD_SPI)
812 init_func_spi,
813#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000814 announce_dram_init,
Simon Glass1938f4a2013-03-11 06:49:53 +0000815 dram_init, /* configure available RAM banks */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000816#ifdef CONFIG_POST
817 post_init_f,
818#endif
819 INIT_FUNC_WATCHDOG_RESET
820#if defined(CONFIG_SYS_DRAM_TEST)
821 testdram,
822#endif /* CONFIG_SYS_DRAM_TEST */
823 INIT_FUNC_WATCHDOG_RESET
824
Simon Glass1938f4a2013-03-11 06:49:53 +0000825#ifdef CONFIG_POST
826 init_post,
827#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000828 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000829 /*
830 * Now that we have DRAM mapped and working, we can
831 * relocate the code and continue running from DRAM.
832 *
833 * Reserve memory at end of RAM for (top down in that order):
834 * - area that won't get touched by U-Boot and Linux (optional)
835 * - kernel log buffer
836 * - protected RAM
837 * - LCD framebuffer
838 * - monitor code
839 * - board info struct
840 */
841 setup_dest_addr,
Simon Glass1938f4a2013-03-11 06:49:53 +0000842#ifdef CONFIG_PRAM
843 reserve_pram,
844#endif
845 reserve_round_4k,
Simon Glass80d4bcd2017-03-31 08:40:29 -0600846#ifdef CONFIG_ARM
Simon Glass1938f4a2013-03-11 06:49:53 +0000847 reserve_mmu,
848#endif
Simon Glass5a541942016-01-18 19:52:21 -0700849 reserve_video,
Simon Glass8703ef32016-01-18 19:52:20 -0700850 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000851 reserve_uboot,
852 reserve_malloc,
853 reserve_board,
Simon Glass1938f4a2013-03-11 06:49:53 +0000854 setup_machine,
855 reserve_global_data,
856 reserve_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600857 reserve_bootstage,
Simon Glass146251f2015-01-19 22:16:12 -0700858 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000859 reserve_stacks,
Simon Glass76b00ac2017-03-31 08:40:32 -0600860 dram_init_banksize,
Simon Glass1938f4a2013-03-11 06:49:53 +0000861 show_dram_config,
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200862#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
863 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000864 setup_board_part1,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100865#endif
866#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000867 INIT_FUNC_WATCHDOG_RESET
868 setup_board_part2,
869#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000870 display_new_sp,
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100871#ifdef CONFIG_OF_BOARD_FIXUP
872 fix_fdt,
873#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000874 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000875 reloc_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600876 reloc_bootstage,
Simon Glass1938f4a2013-03-11 06:49:53 +0000877 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300878#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700879 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700880 do_elf_reloc_fixups,
Simon Glass6bda55a2017-01-16 07:03:52 -0700881 clear_bss,
Simon Glass313aef32015-01-01 16:18:09 -0700882#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300883#if defined(CONFIG_XTENSA)
884 clear_bss,
885#endif
Simon Glass530f27e2017-01-16 07:03:49 -0700886#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
887 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000888 jump_to_copy,
889#endif
890 NULL,
891};
892
893void board_init_f(ulong boot_flags)
894{
Simon Glass1938f4a2013-03-11 06:49:53 +0000895 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +0400896 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000897
898 if (initcall_run_list(init_sequence_f))
899 hang();
900
Ben Stoltz9b217492015-07-31 09:31:37 -0600901#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkin264d2982015-12-16 19:24:10 +0300902 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
903 !defined(CONFIG_ARC)
Simon Glass1938f4a2013-03-11 06:49:53 +0000904 /* NOTREACHED - jump_to_copy() does not return */
905 hang();
906#endif
907}
908
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300909#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000910/*
911 * For now this code is only used on x86.
912 *
913 * init_sequence_f_r is the list of init functions which are run when
914 * U-Boot is executing from Flash with a semi-limited 'C' environment.
915 * The following limitations must be considered when implementing an
916 * '_f_r' function:
917 * - 'static' variables are read-only
918 * - Global Data (gd->xxx) is read/write
919 *
920 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
921 * supported). It _should_, if possible, copy global data to RAM and
922 * initialise the CPU caches (to speed up the relocation process)
923 *
924 * NOTE: At present only x86 uses this route, but it is intended that
925 * all archs will move to this when generic relocation is implemented.
926 */
Simon Glass4acff452017-01-16 07:03:50 -0700927static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -0700928#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +0000929 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -0700930#endif
Simon Glass48a33802013-03-05 14:39:52 +0000931
932 NULL,
933};
934
935void board_init_f_r(void)
936{
937 if (initcall_run_list(init_sequence_f_r))
938 hang();
939
940 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -0700941 * The pre-relocation drivers may be using memory that has now gone
942 * away. Mark serial as unavailable - this will fall back to the debug
943 * UART if available.
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700944 *
945 * Do the same with log drivers since the memory may not be available.
Simon Glasse4d6ab02016-03-11 22:06:51 -0700946 */
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700947 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glass5ee94b42017-09-05 19:49:45 -0600948#ifdef CONFIG_TIMER
949 gd->timer = NULL;
950#endif
Simon Glasse4d6ab02016-03-11 22:06:51 -0700951
952 /*
Simon Glass48a33802013-03-05 14:39:52 +0000953 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
954 * Transfer execution from Flash to RAM by calculating the address
955 * of the in-RAM copy of board_init_r() and calling it
956 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +0300957 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000958
959 /* NOTREACHED - board_init_r() does not return */
960 hang();
961}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +0300962#endif /* CONFIG_X86 */