blob: ae8bdb7c5c0c577df2d1999603bc5224f8318a97 [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 Glassfb5cf7f2015-02-27 22:06:36 -070021#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050022#include <mapmem.h>
Simon Glassa733b062013-04-26 02:53:43 +000023#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000024#include <post.h>
Simon Glasse47b2d62017-03-31 08:40:38 -060025#include <relocate.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000026#include <spi.h>
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020027#include <status_led.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070028#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070029#include <trace.h>
Simon Glass5a541942016-01-18 19:52:21 -070030#include <video.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000031#include <watchdog.h>
Simon Glassb885d022017-05-17 08:23:01 -060032#ifdef CONFIG_MACH_TYPE
33#include <asm/mach-types.h>
34#endif
Simon Glass1fbf97d2017-03-31 08:40:39 -060035#if defined(CONFIG_MP) && defined(CONFIG_PPC)
36#include <asm/mp.h>
37#endif
Simon Glass1938f4a2013-03-11 06:49:53 +000038#include <asm/io.h>
39#include <asm/sections.h>
Simon Glassab7cd622014-07-23 06:55:04 -060040#include <dm/root.h>
Simon Glass056285f2017-03-31 08:40:35 -060041#include <linux/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000042
43/*
44 * Pointer to initial global data area
45 *
46 * Here we initialize it if needed.
47 */
48#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
49#undef XTRN_DECLARE_GLOBAL_DATA_PTR
50#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Mario Six16ef1472018-01-15 11:10:02 +010051DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
Simon Glass1938f4a2013-03-11 06:49:53 +000052#else
53DECLARE_GLOBAL_DATA_PTR;
54#endif
55
56/*
Simon Glass4c509342015-04-28 20:25:03 -060057 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000058 * refactored to a single function, something like:
59 *
60 * void led_set_state(enum led_colour_t colour, int on);
61 */
62/************************************************************************
63 * Coloured LED functionality
64 ************************************************************************
65 * May be supplied by boards if desired
66 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020067__weak void coloured_LED_init(void) {}
68__weak void red_led_on(void) {}
69__weak void red_led_off(void) {}
70__weak void green_led_on(void) {}
71__weak void green_led_off(void) {}
72__weak void yellow_led_on(void) {}
73__weak void yellow_led_off(void) {}
74__weak void blue_led_on(void) {}
75__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000076
77/*
78 * Why is gd allocated a register? Prior to reloc it might be better to
79 * just pass it around to each function in this file?
80 *
81 * After reloc one could argue that it is hardly used and doesn't need
82 * to be in a register. Or if it is it should perhaps hold pointers to all
83 * global data for all modules, so that post-reloc we can avoid the massive
84 * literal pool we get on ARM. Or perhaps just encourage each module to use
85 * a structure...
86 */
87
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080088#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +000089static int init_func_watchdog_init(void)
90{
Tom Riniea3310e2017-03-14 11:08:10 -040091# if defined(CONFIG_HW_WATCHDOG) && \
92 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Stefan Roese14a380a2015-03-10 08:04:36 +010093 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
Anatolij Gustschin46d7a3b2016-06-13 14:24:23 +020094 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roese14a380a2015-03-10 08:04:36 +010095 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080096 hw_watchdog_init();
Simon Glasse4fef6c2013-03-11 14:30:42 +000097 puts(" Watchdog enabled\n");
Anatolij Gustschinba169d92016-06-13 14:24:24 +020098# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +000099 WATCHDOG_RESET();
100
101 return 0;
102}
103
104int init_func_watchdog_reset(void)
105{
106 WATCHDOG_RESET();
107
108 return 0;
109}
110#endif /* CONFIG_WATCHDOG */
111
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200112__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000113{
114 /* please define platform specific board_add_ram_info() */
115}
116
Simon Glass1938f4a2013-03-11 06:49:53 +0000117static int init_baud_rate(void)
118{
Simon Glassbfebc8c2017-08-03 12:22:13 -0600119 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glass1938f4a2013-03-11 06:49:53 +0000120 return 0;
121}
122
123static int display_text_info(void)
124{
Ben Stoltz9b217492015-07-31 09:31:37 -0600125#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100126 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000127
Simon Glass632efa72013-03-11 07:06:48 +0000128 bss_start = (ulong)&__bss_start;
129 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100130
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800131#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100132 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800133#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100134 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800135#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100136
137 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six16ef1472018-01-15 11:10:02 +0100138 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000139#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000140
Simon Glass1938f4a2013-03-11 06:49:53 +0000141 return 0;
142}
143
144static int announce_dram_init(void)
145{
146 puts("DRAM: ");
147 return 0;
148}
149
150static int show_dram_config(void)
151{
York Sunfa39ffe2014-05-02 17:28:05 -0700152 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000153
154#ifdef CONFIG_NR_DRAM_BANKS
155 int i;
156
157 debug("\nRAM Configuration:\n");
158 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
159 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700160 debug("Bank #%d: %llx ", i,
161 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000162#ifdef DEBUG
163 print_size(gd->bd->bi_dram[i].size, "\n");
164#endif
165 }
166 debug("\nDRAM: ");
167#else
168 size = gd->ram_size;
169#endif
170
Simon Glasse4fef6c2013-03-11 14:30:42 +0000171 print_size(size, "");
172 board_add_ram_info(0);
173 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000174
175 return 0;
176}
177
Simon Glass76b00ac2017-03-31 08:40:32 -0600178__weak int dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000179{
180#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
181 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
182 gd->bd->bi_dram[0].size = get_effective_memsize();
183#endif
Simon Glass76b00ac2017-03-31 08:40:32 -0600184
185 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000186}
187
Simon Glass69153982017-05-12 21:09:56 -0600188#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000189static int init_func_i2c(void)
190{
191 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200192#ifdef CONFIG_SYS_I2C
193 i2c_init_all();
194#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000195 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200196#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000197 puts("ready\n");
198 return 0;
199}
200#endif
201
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530202#if defined(CONFIG_VID)
203__weak int init_func_vid(void)
204{
205 return 0;
206}
207#endif
208
Simon Glasse4fef6c2013-03-11 14:30:42 +0000209#if defined(CONFIG_HARD_SPI)
210static int init_func_spi(void)
211{
212 puts("SPI: ");
213 spi_init();
214 puts("ready\n");
215 return 0;
216}
217#endif
218
Simon Glass1938f4a2013-03-11 06:49:53 +0000219static int setup_mon_len(void)
220{
Michal Simeke945f6d2014-05-08 16:08:44 +0200221#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100222 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz9b217492015-07-31 09:31:37 -0600223#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000224 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400225#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800226 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Rick Chen068feb92017-12-26 13:55:58 +0800227#elif defined(CONFIG_NDS32) || defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800228 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600229#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000230 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
231 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000232#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000233 return 0;
234}
235
236__weak int arch_cpu_init(void)
237{
238 return 0;
239}
240
Paul Burton8ebf5062016-09-21 11:18:46 +0100241__weak int mach_cpu_init(void)
242{
243 return 0;
244}
245
Simon Glass1938f4a2013-03-11 06:49:53 +0000246/* Get the top of usable RAM */
247__weak ulong board_get_usable_ram_top(ulong total_size)
248{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700249#ifdef CONFIG_SYS_SDRAM_BASE
250 /*
Simon Glass4c509342015-04-28 20:25:03 -0600251 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700252 * 32-bit address space. If so, clip the usable RAM so it doesn't.
253 */
254 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
255 /*
256 * Will wrap back to top of 32-bit space when reservations
257 * are made.
258 */
259 return 0;
260#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000261 return gd->ram_top;
262}
263
264static int setup_dest_addr(void)
265{
266 debug("Monitor len: %08lX\n", gd->mon_len);
267 /*
268 * Ram is setup, size stored in gd !!
269 */
270 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun36cc0de2017-03-06 09:02:28 -0800271#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000272 /*
273 * Subtract specified amount of memory to hide so that it won't
274 * get "touched" at all by U-Boot. By fixing up gd->ram_size
275 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800276 * memory size and won't touch it either. This should work
277 * for arch/ppc and arch/powerpc. Only Linux board ports in
278 * arch/powerpc with bootwrapper support, that recalculate the
279 * memory size from the SDRAM controller setup will have to
280 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000281 */
York Sun36cc0de2017-03-06 09:02:28 -0800282 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
283#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000284#ifdef CONFIG_SYS_SDRAM_BASE
285 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
286#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000287 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000288 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000289 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000290 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700291#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000292 /*
293 * We need to make sure the location we intend to put secondary core
294 * boot code is reserved and not used by any part of u-boot
295 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000296 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
297 gd->relocaddr = determine_mp_bootpg(NULL);
298 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000299 }
300#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000301 return 0;
302}
303
Simon Glass1938f4a2013-03-11 06:49:53 +0000304#ifdef CONFIG_PRAM
305/* reserve protected RAM */
306static int reserve_pram(void)
307{
308 ulong reg;
309
Simon Glassbfebc8c2017-08-03 12:22:13 -0600310 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000311 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000312 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000313 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000314 return 0;
315}
316#endif /* CONFIG_PRAM */
317
318/* Round memory pointer down to next 4 kB limit */
319static int reserve_round_4k(void)
320{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000321 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000322 return 0;
323}
324
Simon Glass80d4bcd2017-03-31 08:40:29 -0600325#ifdef CONFIG_ARM
Siva Durga Prasad Paladugu60873f72017-07-13 19:01:08 +0530326__weak int reserve_mmu(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000327{
Simon Glass80d4bcd2017-03-31 08:40:29 -0600328#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Simon Glass1938f4a2013-03-11 06:49:53 +0000329 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800330 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000331 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000332
333 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000334 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000335
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000336 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000337 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
338 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sun50e93b92016-06-24 16:46:19 -0700339
340#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
341 /*
342 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
343 * with location within secure ram.
344 */
345 gd->arch.tlb_allocated = gd->arch.tlb_addr;
346#endif
Simon Glass80d4bcd2017-03-31 08:40:29 -0600347#endif
York Sun50e93b92016-06-24 16:46:19 -0700348
Simon Glass1938f4a2013-03-11 06:49:53 +0000349 return 0;
350}
351#endif
352
Simon Glass5a541942016-01-18 19:52:21 -0700353static int reserve_video(void)
354{
Simon Glass0f079eb2017-03-31 08:40:30 -0600355#ifdef CONFIG_DM_VIDEO
Simon Glass5a541942016-01-18 19:52:21 -0700356 ulong addr;
357 int ret;
358
359 addr = gd->relocaddr;
360 ret = video_reserve(&addr);
361 if (ret)
362 return ret;
363 gd->relocaddr = addr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600364#elif defined(CONFIG_LCD)
Simon Glass5a541942016-01-18 19:52:21 -0700365# ifdef CONFIG_FB_ADDR
Simon Glass1938f4a2013-03-11 06:49:53 +0000366 gd->fb_base = CONFIG_FB_ADDR;
Simon Glass5a541942016-01-18 19:52:21 -0700367# else
Simon Glass1938f4a2013-03-11 06:49:53 +0000368 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000369 gd->relocaddr = lcd_setmem(gd->relocaddr);
370 gd->fb_base = gd->relocaddr;
Simon Glass5a541942016-01-18 19:52:21 -0700371# endif /* CONFIG_FB_ADDR */
Simon Glass0f079eb2017-03-31 08:40:30 -0600372#elif defined(CONFIG_VIDEO) && \
Heiko Schocher5b8e76c2017-06-07 17:33:09 +0200373 (!defined(CONFIG_PPC)) && \
Simon Glass8703ef32016-01-18 19:52:20 -0700374 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Riniea3310e2017-03-14 11:08:10 -0400375 !defined(CONFIG_M68K)
Simon Glass8703ef32016-01-18 19:52:20 -0700376 /* reserve memory for video display (always full pages) */
377 gd->relocaddr = video_setmem(gd->relocaddr);
378 gd->fb_base = gd->relocaddr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600379#endif
Simon Glass8703ef32016-01-18 19:52:20 -0700380
381 return 0;
382}
Simon Glass8703ef32016-01-18 19:52:20 -0700383
Simon Glass71c52db2013-06-11 11:14:42 -0700384static int reserve_trace(void)
385{
386#ifdef CONFIG_TRACE
387 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
388 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
389 debug("Reserving %dk for trace data at: %08lx\n",
390 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
391#endif
392
393 return 0;
394}
395
Simon Glass1938f4a2013-03-11 06:49:53 +0000396static int reserve_uboot(void)
397{
398 /*
399 * reserve memory for U-Boot code, data & bss
400 * round down to next 4 kB limit
401 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000402 gd->relocaddr -= gd->mon_len;
403 gd->relocaddr &= ~(4096 - 1);
Paul Burton703ec9d2017-06-19 11:53:47 -0700404#if defined(CONFIG_E500) || defined(CONFIG_MIPS)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000405 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000406 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000407#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000408
409 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000410 gd->relocaddr);
411
412 gd->start_addr_sp = gd->relocaddr;
413
Simon Glass1938f4a2013-03-11 06:49:53 +0000414 return 0;
415}
416
417/* reserve memory for malloc() area */
418static int reserve_malloc(void)
419{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000420 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000421 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100422 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000423 return 0;
424}
425
426/* (permanently) allocate a Board Info struct */
427static int reserve_board(void)
428{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800429 if (!gd->bd) {
430 gd->start_addr_sp -= sizeof(bd_t);
431 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
432 memset(gd->bd, '\0', sizeof(bd_t));
433 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
434 sizeof(bd_t), gd->start_addr_sp);
435 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000436 return 0;
437}
438
439static int setup_machine(void)
440{
441#ifdef CONFIG_MACH_TYPE
442 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
443#endif
444 return 0;
445}
446
447static int reserve_global_data(void)
448{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000449 gd->start_addr_sp -= sizeof(gd_t);
450 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000451 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100452 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000453 return 0;
454}
455
456static int reserve_fdt(void)
457{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100458#ifndef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000459 /*
Simon Glass4c509342015-04-28 20:25:03 -0600460 * If the device tree is sitting immediately above our image then we
Simon Glass1938f4a2013-03-11 06:49:53 +0000461 * must relocate it. If it is embedded in the data section, then it
462 * will be relocated with other data.
463 */
464 if (gd->fdt_blob) {
465 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
466
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000467 gd->start_addr_sp -= gd->fdt_size;
468 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000469 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000470 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000471 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100472#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000473
474 return 0;
475}
476
Simon Glass25e7dc62017-05-22 05:05:30 -0600477static int reserve_bootstage(void)
478{
479#ifdef CONFIG_BOOTSTAGE
480 int size = bootstage_get_size();
481
482 gd->start_addr_sp -= size;
483 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
484 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
485 gd->start_addr_sp);
486#endif
487
488 return 0;
489}
490
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100491__weak int arch_reserve_stacks(void)
Andreas Bießmann68145d42015-02-06 23:06:45 +0100492{
493 return 0;
494}
495
Simon Glass1938f4a2013-03-11 06:49:53 +0000496static int reserve_stacks(void)
497{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100498 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000499 gd->start_addr_sp -= 16;
500 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000501
502 /*
Simon Glass4c509342015-04-28 20:25:03 -0600503 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100504 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000505 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100506 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000507}
508
509static int display_new_sp(void)
510{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000511 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000512
513 return 0;
514}
515
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200516#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
517 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000518static int setup_board_part1(void)
519{
520 bd_t *bd = gd->bd;
521
522 /*
523 * Save local variables to board info struct
524 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000525 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
526 bd->bi_memsize = gd->ram_size; /* size in bytes */
527
528#ifdef CONFIG_SYS_SRAM_BASE
529 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
530 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
531#endif
532
Heiko Schocher50258972017-06-07 17:33:11 +0200533#if defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000534 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
535#endif
Heiko Schocher064b55c2017-06-14 05:49:40 +0200536#if defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000537 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
538#endif
539#if defined(CONFIG_MPC83xx)
540 bd->bi_immrbar = CONFIG_SYS_IMMR;
541#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000542
543 return 0;
544}
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100545#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000546
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100547#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000548static int setup_board_part2(void)
549{
550 bd_t *bd = gd->bd;
551
552 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
553 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
554#if defined(CONFIG_CPM2)
555 bd->bi_cpmfreq = gd->arch.cpm_clk;
556 bd->bi_brgfreq = gd->arch.brg_clk;
557 bd->bi_sccfreq = gd->arch.scc_clk;
558 bd->bi_vco = gd->arch.vco_out;
559#endif /* CONFIG_CPM2 */
Alison Wang1313db42015-02-12 18:33:15 +0800560#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
561 bd->bi_pcifreq = gd->pci_clk;
562#endif
563#if defined(CONFIG_EXTRA_CLOCK)
564 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
565 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
566 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
567#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000568
569 return 0;
570}
571#endif
572
Simon Glass1938f4a2013-03-11 06:49:53 +0000573#ifdef CONFIG_POST
574static int init_post(void)
575{
576 post_bootmode_init();
577 post_run(NULL, POST_ROM | post_bootmode_get(0));
578
579 return 0;
580}
581#endif
582
Simon Glass1938f4a2013-03-11 06:49:53 +0000583static int reloc_fdt(void)
584{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100585#ifndef CONFIG_OF_EMBED
Simon Glassf05ad9b2015-08-04 12:33:39 -0600586 if (gd->flags & GD_FLG_SKIP_RELOC)
587 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000588 if (gd->new_fdt) {
589 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
590 gd->fdt_blob = gd->new_fdt;
591 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100592#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000593
594 return 0;
595}
596
Simon Glass25e7dc62017-05-22 05:05:30 -0600597static int reloc_bootstage(void)
598{
599#ifdef CONFIG_BOOTSTAGE
600 if (gd->flags & GD_FLG_SKIP_RELOC)
601 return 0;
602 if (gd->new_bootstage) {
603 int size = bootstage_get_size();
604
605 debug("Copying bootstage from %p to %p, size %x\n",
606 gd->bootstage, gd->new_bootstage, size);
607 memcpy(gd->new_bootstage, gd->bootstage, size);
608 gd->bootstage = gd->new_bootstage;
609 }
610#endif
611
612 return 0;
613}
614
Simon Glass1938f4a2013-03-11 06:49:53 +0000615static int setup_reloc(void)
616{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600617 if (gd->flags & GD_FLG_SKIP_RELOC) {
618 debug("Skipping relocation due to flag\n");
619 return 0;
620 }
621
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800622#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200623#ifdef ARM
624 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
625#elif defined(CONFIG_M68K)
angelo@sysam.ite310b932015-02-12 01:40:17 +0100626 /*
627 * On all ColdFire arch cpu, monitor code starts always
628 * just after the default vector table location, so at 0x400
629 */
630 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200631#else
632 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100633#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800634#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000635 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
636
637 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000638 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000639 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
640 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000641
642 return 0;
643}
644
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100645#ifdef CONFIG_OF_BOARD_FIXUP
646static int fix_fdt(void)
647{
648 return board_fix_fdt((void *)gd->fdt_blob);
649}
650#endif
651
Simon Glass1938f4a2013-03-11 06:49:53 +0000652/* ARM calls relocate_code from its crt0.S */
Simon Glass530f27e2017-01-16 07:03:49 -0700653#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
654 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000655
656static int jump_to_copy(void)
657{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600658 if (gd->flags & GD_FLG_SKIP_RELOC)
659 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000660 /*
661 * x86 is special, but in a nice way. It uses a trampoline which
662 * enables the dcache if possible.
663 *
664 * For now, other archs use relocate_code(), which is implemented
665 * similarly for all archs. When we do generic relocation, hopefully
666 * we can make all archs enable the dcache prior to relocation.
667 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300668#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000669 /*
670 * SDRAM and console are now initialised. The final stack can now
671 * be setup in SDRAM. Code execution will continue in Flash, but
672 * with the stack in SDRAM and Global Data in temporary memory
673 * (CPU cache)
674 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600675 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000676 board_init_f_r_trampoline(gd->start_addr_sp);
677#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000678 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000679#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000680
681 return 0;
682}
683#endif
684
685/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glassb383d6c2017-05-22 05:05:25 -0600686static int initf_bootstage(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000687{
Simon Glassbaa7d342017-06-07 10:28:46 -0600688 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
689 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glassb383d6c2017-05-22 05:05:25 -0600690 int ret;
691
Simon Glass824bb1b2017-05-22 05:05:35 -0600692 ret = bootstage_init(!from_spl);
Simon Glassb383d6c2017-05-22 05:05:25 -0600693 if (ret)
694 return ret;
Simon Glass824bb1b2017-05-22 05:05:35 -0600695 if (from_spl) {
696 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
697 CONFIG_BOOTSTAGE_STASH_SIZE);
698
699 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
700 if (ret && ret != -ENOENT) {
701 debug("Failed to unstash bootstage: err=%d\n", ret);
702 return ret;
703 }
704 }
Simon Glassb383d6c2017-05-22 05:05:25 -0600705
Simon Glass1938f4a2013-03-11 06:49:53 +0000706 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
707
708 return 0;
709}
710
Simon Glass9854a872015-11-08 23:47:48 -0700711static int initf_console_record(void)
712{
Andy Yanf1896c42017-07-24 17:43:34 +0800713#if defined(CONFIG_CONSOLE_RECORD) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass9854a872015-11-08 23:47:48 -0700714 return console_record_init();
715#else
716 return 0;
717#endif
718}
719
Simon Glassab7cd622014-07-23 06:55:04 -0600720static int initf_dm(void)
721{
Andy Yanf1896c42017-07-24 17:43:34 +0800722#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassab7cd622014-07-23 06:55:04 -0600723 int ret;
724
Simon Glass63c5bf42017-05-22 05:05:32 -0600725 bootstage_start(BOOTSTATE_ID_ACCUM_DM_F, "dm_f");
Simon Glassab7cd622014-07-23 06:55:04 -0600726 ret = dm_init_and_scan(true);
Simon Glass63c5bf42017-05-22 05:05:32 -0600727 bootstage_accum(BOOTSTATE_ID_ACCUM_DM_F);
Simon Glassab7cd622014-07-23 06:55:04 -0600728 if (ret)
729 return ret;
730#endif
Simon Glass1057e6c2016-02-24 09:14:50 -0700731#ifdef CONFIG_TIMER_EARLY
732 ret = dm_timer_init();
733 if (ret)
734 return ret;
735#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600736
737 return 0;
738}
739
Simon Glass146251f2015-01-19 22:16:12 -0700740/* Architecture-specific memory reservation */
741__weak int reserve_arch(void)
742{
743 return 0;
744}
745
Simon Glassd4c671c2015-03-05 12:25:16 -0700746__weak int arch_cpu_init_dm(void)
747{
748 return 0;
749}
750
Simon Glass4acff452017-01-16 07:03:50 -0700751static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000752 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700753#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700754 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700755#endif
Kevin Hilmand2107182014-12-09 15:03:58 -0800756#ifdef CONFIG_TRACE
Simon Glass71c52db2013-06-11 11:14:42 -0700757 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800758#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700759 initf_malloc,
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700760 log_init,
Simon Glass5ac44a52017-05-22 05:05:31 -0600761 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glass9854a872015-11-08 23:47:48 -0700762 initf_console_record,
Simon Glass671549e2017-03-28 10:27:18 -0600763#if defined(CONFIG_HAVE_FSP)
764 arch_fsp_init,
Bin Menga52a068e2015-08-20 06:40:18 -0700765#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000766 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100767 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600768 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700769 arch_cpu_init_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000770#if defined(CONFIG_BOARD_EARLY_INIT_F)
771 board_early_init_f,
772#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600773#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600774 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000775 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600776#endif
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200777#if !defined(CONFIG_M68K)
Simon Glass1938f4a2013-03-11 06:49:53 +0000778 timer_init, /* initialize timer */
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200779#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000780#if defined(CONFIG_BOARD_POSTCLK_INIT)
781 board_postclk_init,
782#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000783 env_init, /* initialize environment */
784 init_baud_rate, /* initialze baudrate settings */
785 serial_init, /* serial communications setup */
786 console_init_f, /* stage 1 init of console */
787 display_options, /* say that we are here */
788 display_text_info, /* show debugging info if required */
Angelo Dureghellob9153fe32017-08-20 00:01:55 +0200789#if defined(CONFIG_PPC) || defined(CONFIG_SH) || defined(CONFIG_X86)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000790 checkcpu,
791#endif
Simon Glasscc664002017-01-23 13:31:25 -0700792#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000793 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700794#endif
Cooper Jr., Franklinaf9e6ad2017-06-16 17:25:12 -0500795#if defined(CONFIG_DTB_RESELECT)
796 embedded_dtb_select,
797#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000798#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900799 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000800#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000801 INIT_FUNC_WATCHDOG_INIT
802#if defined(CONFIG_MISC_INIT_F)
803 misc_init_f,
804#endif
805 INIT_FUNC_WATCHDOG_RESET
Simon Glass69153982017-05-12 21:09:56 -0600806#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000807 init_func_i2c,
808#endif
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530809#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
810 init_func_vid,
811#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000812#if defined(CONFIG_HARD_SPI)
813 init_func_spi,
814#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000815 announce_dram_init,
Simon Glass1938f4a2013-03-11 06:49:53 +0000816 dram_init, /* configure available RAM banks */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000817#ifdef CONFIG_POST
818 post_init_f,
819#endif
820 INIT_FUNC_WATCHDOG_RESET
821#if defined(CONFIG_SYS_DRAM_TEST)
822 testdram,
823#endif /* CONFIG_SYS_DRAM_TEST */
824 INIT_FUNC_WATCHDOG_RESET
825
Simon Glass1938f4a2013-03-11 06:49:53 +0000826#ifdef CONFIG_POST
827 init_post,
828#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000829 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000830 /*
831 * Now that we have DRAM mapped and working, we can
832 * relocate the code and continue running from DRAM.
833 *
834 * Reserve memory at end of RAM for (top down in that order):
835 * - area that won't get touched by U-Boot and Linux (optional)
836 * - kernel log buffer
837 * - protected RAM
838 * - LCD framebuffer
839 * - monitor code
840 * - board info struct
841 */
842 setup_dest_addr,
Simon Glass1938f4a2013-03-11 06:49:53 +0000843#ifdef CONFIG_PRAM
844 reserve_pram,
845#endif
846 reserve_round_4k,
Simon Glass80d4bcd2017-03-31 08:40:29 -0600847#ifdef CONFIG_ARM
Simon Glass1938f4a2013-03-11 06:49:53 +0000848 reserve_mmu,
849#endif
Simon Glass5a541942016-01-18 19:52:21 -0700850 reserve_video,
Simon Glass8703ef32016-01-18 19:52:20 -0700851 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000852 reserve_uboot,
853 reserve_malloc,
854 reserve_board,
Simon Glass1938f4a2013-03-11 06:49:53 +0000855 setup_machine,
856 reserve_global_data,
857 reserve_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600858 reserve_bootstage,
Simon Glass146251f2015-01-19 22:16:12 -0700859 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000860 reserve_stacks,
Simon Glass76b00ac2017-03-31 08:40:32 -0600861 dram_init_banksize,
Simon Glass1938f4a2013-03-11 06:49:53 +0000862 show_dram_config,
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200863#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
864 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000865 setup_board_part1,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100866#endif
867#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000868 INIT_FUNC_WATCHDOG_RESET
869 setup_board_part2,
870#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000871 display_new_sp,
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100872#ifdef CONFIG_OF_BOARD_FIXUP
873 fix_fdt,
874#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000875 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000876 reloc_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600877 reloc_bootstage,
Simon Glass1938f4a2013-03-11 06:49:53 +0000878 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300879#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700880 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700881 do_elf_reloc_fixups,
Simon Glass6bda55a2017-01-16 07:03:52 -0700882 clear_bss,
Simon Glass313aef32015-01-01 16:18:09 -0700883#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300884#if defined(CONFIG_XTENSA)
885 clear_bss,
886#endif
Simon Glass530f27e2017-01-16 07:03:49 -0700887#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
888 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000889 jump_to_copy,
890#endif
891 NULL,
892};
893
894void board_init_f(ulong boot_flags)
895{
Simon Glass1938f4a2013-03-11 06:49:53 +0000896 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +0400897 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000898
899 if (initcall_run_list(init_sequence_f))
900 hang();
901
Ben Stoltz9b217492015-07-31 09:31:37 -0600902#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkin264d2982015-12-16 19:24:10 +0300903 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
904 !defined(CONFIG_ARC)
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 */