blob: ff078866655a89af0a7ae4bce1a43cbfae03c077 [file] [log] [blame]
Simon Glassc45e3592013-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 Denkd79de1d2013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Simon Glassc45e3592013-03-11 06:49:53 +000011 */
12
13#include <common.h>
Simon Glassa73bda42015-11-08 23:47:45 -070014#include <console.h>
Simon Glassc45e3592013-03-11 06:49:53 +000015#include <environment.h>
Simon Glassa730c5d2014-07-23 06:55:04 -060016#include <dm.h>
Simon Glassc45e3592013-03-11 06:49:53 +000017#include <fdtdec.h>
Simon Glass15393432013-04-20 08:42:41 +000018#include <fs.h>
Simon Glass50250b52013-03-11 14:30:42 +000019#include <i2c.h>
Simon Glassc45e3592013-03-11 06:49:53 +000020#include <initcall.h>
Simon Glass6bbf83f2017-03-31 08:40:37 -060021#include <init_helpers.h>
Simon Glassc45e3592013-03-11 06:49:53 +000022#include <logbuff.h>
Simon Glassd1d087d2015-02-27 22:06:36 -070023#include <malloc.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050024#include <mapmem.h>
Simon Glass62cf9122013-04-26 02:53:43 +000025#include <os.h>
Simon Glassc45e3592013-03-11 06:49:53 +000026#include <post.h>
Simon Glass6ab91072017-03-31 08:40:38 -060027#include <relocate.h>
Simon Glass50250b52013-03-11 14:30:42 +000028#include <spi.h>
Jeroen Hofsteea802b982014-06-23 23:20:19 +020029#include <status_led.h>
Simon Glass8e4f80f2016-02-24 09:14:50 -070030#include <timer.h>
Simon Glass209a1a62013-06-11 11:14:42 -070031#include <trace.h>
Simon Glassfce58f52016-01-18 19:52:21 -070032#include <video.h>
Simon Glass50250b52013-03-11 14:30:42 +000033#include <watchdog.h>
Simon Glasse7706032017-03-31 08:40:39 -060034#if defined(CONFIG_MP) && defined(CONFIG_PPC)
35#include <asm/mp.h>
36#endif
Simon Glassc45e3592013-03-11 06:49:53 +000037#include <asm/io.h>
38#include <asm/sections.h>
Simon Glassa730c5d2014-07-23 06:55:04 -060039#include <dm/root.h>
Simon Glassb3c12562017-03-31 08:40:35 -060040#include <linux/errno.h>
Simon Glassc45e3592013-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 */
50DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
51#else
52DECLARE_GLOBAL_DATA_PTR;
53#endif
54
55/*
Simon Glass839855c2015-04-28 20:25:03 -060056 * TODO(sjg@chromium.org): IMO this code should be
Simon Glassc45e3592013-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 Hofsteea802b982014-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 Glassc45e3592013-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 Zhangf503a522014-07-17 19:01:34 +080087#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glass50250b52013-03-11 14:30:42 +000088static int init_func_watchdog_init(void)
89{
Tom Rini210ebce2017-03-14 11:08:10 -040090# if defined(CONFIG_HW_WATCHDOG) && \
91 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Stefan Roeseee86af22015-03-10 08:04:36 +010092 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
Anatolij Gustschin87db2942016-06-13 14:24:23 +020093 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roeseee86af22015-03-10 08:04:36 +010094 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangf503a522014-07-17 19:01:34 +080095 hw_watchdog_init();
Simon Glass50250b52013-03-11 14:30:42 +000096 puts(" Watchdog enabled\n");
Anatolij Gustschind3aa98a2016-06-13 14:24:24 +020097# endif
Simon Glass50250b52013-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 Hofstee45846052014-10-08 22:57:22 +0200111__weak void board_add_ram_info(int use_default)
Simon Glass50250b52013-03-11 14:30:42 +0000112{
113 /* please define platform specific board_add_ram_info() */
114}
115
Simon Glassc45e3592013-03-11 06:49:53 +0000116static int init_baud_rate(void)
117{
118 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
119 return 0;
120}
121
122static int display_text_info(void)
123{
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600124#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100125 ulong bss_start, bss_end, text_base;
Simon Glassc45e3592013-03-11 06:49:53 +0000126
Simon Glass9c9f44a2013-03-11 07:06:48 +0000127 bss_start = (ulong)&__bss_start;
128 bss_end = (ulong)&__bss_end;
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100129
Sonic Zhangf503a522014-07-17 19:01:34 +0800130#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100131 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800132#else
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100133 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800134#endif
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100135
136 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
137 text_base, bss_start, bss_end);
Simon Glass62cf9122013-04-26 02:53:43 +0000138#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000139
Simon Glassc45e3592013-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
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100149#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000150static int init_func_ram(void)
151{
Simon Glass39f90ba2017-03-31 08:40:25 -0600152 return initdram();
Simon Glass50250b52013-03-11 14:30:42 +0000153}
154#endif
155
Simon Glassc45e3592013-03-11 06:49:53 +0000156static int show_dram_config(void)
157{
York Sun60ac15a2014-05-02 17:28:05 -0700158 unsigned long long size;
Simon Glassc45e3592013-03-11 06:49:53 +0000159
160#ifdef CONFIG_NR_DRAM_BANKS
161 int i;
162
163 debug("\nRAM Configuration:\n");
164 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
165 size += gd->bd->bi_dram[i].size;
Bin Mengc8964482015-08-06 01:31:20 -0700166 debug("Bank #%d: %llx ", i,
167 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glassc45e3592013-03-11 06:49:53 +0000168#ifdef DEBUG
169 print_size(gd->bd->bi_dram[i].size, "\n");
170#endif
171 }
172 debug("\nDRAM: ");
173#else
174 size = gd->ram_size;
175#endif
176
Simon Glass50250b52013-03-11 14:30:42 +0000177 print_size(size, "");
178 board_add_ram_info(0);
179 putc('\n');
Simon Glassc45e3592013-03-11 06:49:53 +0000180
181 return 0;
182}
183
Simon Glass2f949c32017-03-31 08:40:32 -0600184__weak int dram_init_banksize(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000185{
186#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
187 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
188 gd->bd->bi_dram[0].size = get_effective_memsize();
189#endif
Simon Glass2f949c32017-03-31 08:40:32 -0600190
191 return 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000192}
193
Heiko Schocher479a4cf2013-01-29 08:53:15 +0100194#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glass50250b52013-03-11 14:30:42 +0000195static int init_func_i2c(void)
196{
197 puts("I2C: ");
trema6612902013-09-21 18:13:34 +0200198#ifdef CONFIG_SYS_I2C
199 i2c_init_all();
200#else
Simon Glass50250b52013-03-11 14:30:42 +0000201 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trema6612902013-09-21 18:13:34 +0200202#endif
Simon Glass50250b52013-03-11 14:30:42 +0000203 puts("ready\n");
204 return 0;
205}
206#endif
207
208#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
218__maybe_unused
Simon Glassc45e3592013-03-11 06:49:53 +0000219static int zero_global_data(void)
220{
221 memset((void *)gd, '\0', sizeof(gd_t));
222
223 return 0;
224}
225
226static int setup_mon_len(void)
227{
Michal Simek65e915c2014-05-08 16:08:44 +0200228#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100229 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600230#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glass62cf9122013-04-26 02:53:43 +0000231 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Rini210ebce2017-03-14 11:08:10 -0400232#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangf503a522014-07-17 19:01:34 +0800233 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200234#elif defined(CONFIG_NDS32) || defined(CONFIG_SH)
Kun-Hua Huang89299e22015-08-24 14:52:35 +0800235 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glass90632bd2016-05-14 18:49:28 -0600236#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glass50250b52013-03-11 14:30:42 +0000237 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
238 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass9c9f44a2013-03-11 07:06:48 +0000239#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000240 return 0;
241}
242
243__weak int arch_cpu_init(void)
244{
245 return 0;
246}
247
Paul Burton1f508dd2016-09-21 11:18:46 +0100248__weak int mach_cpu_init(void)
249{
250 return 0;
251}
252
Simon Glassc45e3592013-03-11 06:49:53 +0000253/* Get the top of usable RAM */
254__weak ulong board_get_usable_ram_top(ulong total_size)
255{
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700256#ifdef CONFIG_SYS_SDRAM_BASE
257 /*
Simon Glass839855c2015-04-28 20:25:03 -0600258 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700259 * 32-bit address space. If so, clip the usable RAM so it doesn't.
260 */
261 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
262 /*
263 * Will wrap back to top of 32-bit space when reservations
264 * are made.
265 */
266 return 0;
267#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000268 return gd->ram_top;
269}
270
271static int setup_dest_addr(void)
272{
273 debug("Monitor len: %08lX\n", gd->mon_len);
274 /*
275 * Ram is setup, size stored in gd !!
276 */
277 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun4de24ef2017-03-06 09:02:28 -0800278#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glassc45e3592013-03-11 06:49:53 +0000279 /*
280 * Subtract specified amount of memory to hide so that it won't
281 * get "touched" at all by U-Boot. By fixing up gd->ram_size
282 * the Linux kernel should now get passed the now "corrected"
York Sun4de24ef2017-03-06 09:02:28 -0800283 * memory size and won't touch it either. This should work
284 * for arch/ppc and arch/powerpc. Only Linux board ports in
285 * arch/powerpc with bootwrapper support, that recalculate the
286 * memory size from the SDRAM controller setup will have to
287 * get fixed.
Simon Glassc45e3592013-03-11 06:49:53 +0000288 */
York Sun4de24ef2017-03-06 09:02:28 -0800289 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
290#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000291#ifdef CONFIG_SYS_SDRAM_BASE
292 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
293#endif
Simon Glass50250b52013-03-11 14:30:42 +0000294 gd->ram_top += get_effective_memsize();
Simon Glassc45e3592013-03-11 06:49:53 +0000295 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000296 gd->relocaddr = gd->ram_top;
Simon Glassc45e3592013-03-11 06:49:53 +0000297 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauda0afc22014-09-03 13:57:54 -0700298#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glass50250b52013-03-11 14:30:42 +0000299 /*
300 * We need to make sure the location we intend to put secondary core
301 * boot code is reserved and not used by any part of u-boot
302 */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000303 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
304 gd->relocaddr = determine_mp_bootpg(NULL);
305 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glass50250b52013-03-11 14:30:42 +0000306 }
307#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000308 return 0;
309}
310
Simon Glassbcf257d2017-03-31 08:40:28 -0600311#if defined(CONFIG_LOGBUFFER)
Simon Glassc45e3592013-03-11 06:49:53 +0000312static int reserve_logbuffer(void)
313{
Simon Glassbcf257d2017-03-31 08:40:28 -0600314#ifndef CONFIG_ALT_LB_ADDR
Simon Glassc45e3592013-03-11 06:49:53 +0000315 /* reserve kernel log buffer */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000316 gd->relocaddr -= LOGBUFF_RESERVE;
Simon Glassc45e3592013-03-11 06:49:53 +0000317 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
Masahiro Yamadad1589242013-05-27 00:37:30 +0000318 gd->relocaddr);
Simon Glassbcf257d2017-03-31 08:40:28 -0600319#endif
320
Simon Glassc45e3592013-03-11 06:49:53 +0000321 return 0;
322}
323#endif
324
325#ifdef CONFIG_PRAM
326/* reserve protected RAM */
327static int reserve_pram(void)
328{
329 ulong reg;
330
331 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000332 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glassc45e3592013-03-11 06:49:53 +0000333 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadad1589242013-05-27 00:37:30 +0000334 gd->relocaddr);
Simon Glassc45e3592013-03-11 06:49:53 +0000335 return 0;
336}
337#endif /* CONFIG_PRAM */
338
339/* Round memory pointer down to next 4 kB limit */
340static int reserve_round_4k(void)
341{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000342 gd->relocaddr &= ~(4096 - 1);
Simon Glassc45e3592013-03-11 06:49:53 +0000343 return 0;
344}
345
Simon Glasse3cb4492017-03-31 08:40:29 -0600346#ifdef CONFIG_ARM
Simon Glassc45e3592013-03-11 06:49:53 +0000347static int reserve_mmu(void)
348{
Simon Glasse3cb4492017-03-31 08:40:29 -0600349#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Simon Glassc45e3592013-03-11 06:49:53 +0000350 /* reserve TLB table */
David Feng1735de82013-12-14 11:47:36 +0800351 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadad1589242013-05-27 00:37:30 +0000352 gd->relocaddr -= gd->arch.tlb_size;
Simon Glassc45e3592013-03-11 06:49:53 +0000353
354 /* round down to next 64 kB limit */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000355 gd->relocaddr &= ~(0x10000 - 1);
Simon Glassc45e3592013-03-11 06:49:53 +0000356
Masahiro Yamadad1589242013-05-27 00:37:30 +0000357 gd->arch.tlb_addr = gd->relocaddr;
Simon Glassc45e3592013-03-11 06:49:53 +0000358 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
359 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sunf84f81e2016-06-24 16:46:19 -0700360
361#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
362 /*
363 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
364 * with location within secure ram.
365 */
366 gd->arch.tlb_allocated = gd->arch.tlb_addr;
367#endif
Simon Glasse3cb4492017-03-31 08:40:29 -0600368#endif
York Sunf84f81e2016-06-24 16:46:19 -0700369
Simon Glassc45e3592013-03-11 06:49:53 +0000370 return 0;
371}
372#endif
373
Simon Glassfce58f52016-01-18 19:52:21 -0700374static int reserve_video(void)
375{
Simon Glass70ac86c2017-03-31 08:40:30 -0600376#ifdef CONFIG_DM_VIDEO
Simon Glassfce58f52016-01-18 19:52:21 -0700377 ulong addr;
378 int ret;
379
380 addr = gd->relocaddr;
381 ret = video_reserve(&addr);
382 if (ret)
383 return ret;
384 gd->relocaddr = addr;
Simon Glass70ac86c2017-03-31 08:40:30 -0600385#elif defined(CONFIG_LCD)
Simon Glassfce58f52016-01-18 19:52:21 -0700386# ifdef CONFIG_FB_ADDR
Simon Glassc45e3592013-03-11 06:49:53 +0000387 gd->fb_base = CONFIG_FB_ADDR;
Simon Glassfce58f52016-01-18 19:52:21 -0700388# else
Simon Glassc45e3592013-03-11 06:49:53 +0000389 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000390 gd->relocaddr = lcd_setmem(gd->relocaddr);
391 gd->fb_base = gd->relocaddr;
Simon Glassfce58f52016-01-18 19:52:21 -0700392# endif /* CONFIG_FB_ADDR */
Simon Glass70ac86c2017-03-31 08:40:30 -0600393#elif defined(CONFIG_VIDEO) && \
394 (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
Sonic Zhangf503a522014-07-17 19:01:34 +0800395 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Rini210ebce2017-03-14 11:08:10 -0400396 !defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000397 /* reserve memory for video display (always full pages) */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000398 gd->relocaddr = video_setmem(gd->relocaddr);
399 gd->fb_base = gd->relocaddr;
Simon Glass70ac86c2017-03-31 08:40:30 -0600400#endif
Simon Glass50250b52013-03-11 14:30:42 +0000401
402 return 0;
403}
Simon Glass50250b52013-03-11 14:30:42 +0000404
Simon Glass1008da02016-01-18 19:52:20 -0700405static int reserve_trace(void)
406{
407#ifdef CONFIG_TRACE
408 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
409 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
410 debug("Reserving %dk for trace data at: %08lx\n",
411 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
412#endif
413
414 return 0;
415}
416
Simon Glassc45e3592013-03-11 06:49:53 +0000417static int reserve_uboot(void)
418{
419 /*
420 * reserve memory for U-Boot code, data & bss
421 * round down to next 4 kB limit
422 */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000423 gd->relocaddr -= gd->mon_len;
424 gd->relocaddr &= ~(4096 - 1);
Simon Glass50250b52013-03-11 14:30:42 +0000425#ifdef CONFIG_E500
426 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000427 gd->relocaddr &= ~(65536 - 1);
Simon Glass50250b52013-03-11 14:30:42 +0000428#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000429
430 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadad1589242013-05-27 00:37:30 +0000431 gd->relocaddr);
432
433 gd->start_addr_sp = gd->relocaddr;
434
Simon Glassc45e3592013-03-11 06:49:53 +0000435 return 0;
436}
437
438/* reserve memory for malloc() area */
439static int reserve_malloc(void)
440{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000441 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glassc45e3592013-03-11 06:49:53 +0000442 debug("Reserving %dk for malloc() at: %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000443 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000444 return 0;
445}
446
447/* (permanently) allocate a Board Info struct */
448static int reserve_board(void)
449{
Sonic Zhangf503a522014-07-17 19:01:34 +0800450 if (!gd->bd) {
451 gd->start_addr_sp -= sizeof(bd_t);
452 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
453 memset(gd->bd, '\0', sizeof(bd_t));
454 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
455 sizeof(bd_t), gd->start_addr_sp);
456 }
Simon Glassc45e3592013-03-11 06:49:53 +0000457 return 0;
458}
459
460static int setup_machine(void)
461{
462#ifdef CONFIG_MACH_TYPE
463 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
464#endif
465 return 0;
466}
467
468static int reserve_global_data(void)
469{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000470 gd->start_addr_sp -= sizeof(gd_t);
471 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glassc45e3592013-03-11 06:49:53 +0000472 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000473 sizeof(gd_t), gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000474 return 0;
475}
476
477static int reserve_fdt(void)
478{
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100479#ifndef CONFIG_OF_EMBED
Simon Glassc45e3592013-03-11 06:49:53 +0000480 /*
Simon Glass839855c2015-04-28 20:25:03 -0600481 * If the device tree is sitting immediately above our image then we
Simon Glassc45e3592013-03-11 06:49:53 +0000482 * must relocate it. If it is embedded in the data section, then it
483 * will be relocated with other data.
484 */
485 if (gd->fdt_blob) {
486 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
487
Masahiro Yamadad1589242013-05-27 00:37:30 +0000488 gd->start_addr_sp -= gd->fdt_size;
489 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glass62cf9122013-04-26 02:53:43 +0000490 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000491 gd->fdt_size, gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000492 }
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100493#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000494
495 return 0;
496}
497
Andreas Bießmann25429862015-02-06 23:06:45 +0100498int arch_reserve_stacks(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000499{
Andreas Bießmann25429862015-02-06 23:06:45 +0100500 return 0;
501}
Simon Glass4d2aee82013-03-05 14:39:45 +0000502
Andreas Bießmann25429862015-02-06 23:06:45 +0100503static int reserve_stacks(void)
504{
505 /* make stack pointer 16-byte aligned */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000506 gd->start_addr_sp -= 16;
507 gd->start_addr_sp &= ~0xf;
Simon Glassc45e3592013-03-11 06:49:53 +0000508
509 /*
Simon Glass839855c2015-04-28 20:25:03 -0600510 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann25429862015-02-06 23:06:45 +0100511 * gd->irq_sp
Simon Glassc45e3592013-03-11 06:49:53 +0000512 */
Andreas Bießmann25429862015-02-06 23:06:45 +0100513 return arch_reserve_stacks();
Simon Glassc45e3592013-03-11 06:49:53 +0000514}
515
516static int display_new_sp(void)
517{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000518 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000519
520 return 0;
521}
522
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200523#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
524 defined(CONFIG_SH)
Simon Glass50250b52013-03-11 14:30:42 +0000525static int setup_board_part1(void)
526{
527 bd_t *bd = gd->bd;
528
529 /*
530 * Save local variables to board info struct
531 */
Simon Glass50250b52013-03-11 14:30:42 +0000532 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
533 bd->bi_memsize = gd->ram_size; /* size in bytes */
534
535#ifdef CONFIG_SYS_SRAM_BASE
536 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
537 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
538#endif
539
Masahiro Yamada5a2bf982014-03-05 17:40:10 +0900540#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Simon Glass50250b52013-03-11 14:30:42 +0000541 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
542 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
543#endif
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100544#if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000545 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
546#endif
547#if defined(CONFIG_MPC83xx)
548 bd->bi_immrbar = CONFIG_SYS_IMMR;
549#endif
Simon Glass50250b52013-03-11 14:30:42 +0000550
551 return 0;
552}
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100553#endif
Simon Glass50250b52013-03-11 14:30:42 +0000554
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100555#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000556static int setup_board_part2(void)
557{
558 bd_t *bd = gd->bd;
559
560 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
561 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
562#if defined(CONFIG_CPM2)
563 bd->bi_cpmfreq = gd->arch.cpm_clk;
564 bd->bi_brgfreq = gd->arch.brg_clk;
565 bd->bi_sccfreq = gd->arch.scc_clk;
566 bd->bi_vco = gd->arch.vco_out;
567#endif /* CONFIG_CPM2 */
568#if defined(CONFIG_MPC512X)
569 bd->bi_ipsfreq = gd->arch.ips_clk;
570#endif /* CONFIG_MPC512X */
571#if defined(CONFIG_MPC5xxx)
572 bd->bi_ipbfreq = gd->arch.ipb_clk;
573 bd->bi_pcifreq = gd->pci_clk;
574#endif /* CONFIG_MPC5xxx */
Alison Wang8f6d8f32015-02-12 18:33:15 +0800575#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
576 bd->bi_pcifreq = gd->pci_clk;
577#endif
578#if defined(CONFIG_EXTRA_CLOCK)
579 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
580 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
581 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
582#endif
Simon Glass50250b52013-03-11 14:30:42 +0000583
584 return 0;
585}
586#endif
587
Simon Glassc45e3592013-03-11 06:49:53 +0000588#ifdef CONFIG_POST
589static int init_post(void)
590{
591 post_bootmode_init();
592 post_run(NULL, POST_ROM | post_bootmode_get(0));
593
594 return 0;
595}
596#endif
597
Simon Glassc45e3592013-03-11 06:49:53 +0000598static int reloc_fdt(void)
599{
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100600#ifndef CONFIG_OF_EMBED
Simon Glass00dd17a2015-08-04 12:33:39 -0600601 if (gd->flags & GD_FLG_SKIP_RELOC)
602 return 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000603 if (gd->new_fdt) {
604 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
605 gd->fdt_blob = gd->new_fdt;
606 }
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100607#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000608
609 return 0;
610}
611
612static int setup_reloc(void)
613{
Simon Glass00dd17a2015-08-04 12:33:39 -0600614 if (gd->flags & GD_FLG_SKIP_RELOC) {
615 debug("Skipping relocation due to flag\n");
616 return 0;
617 }
618
Sonic Zhangf503a522014-07-17 19:01:34 +0800619#ifdef CONFIG_SYS_TEXT_BASE
Masahiro Yamadad1589242013-05-27 00:37:30 +0000620 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100621#ifdef CONFIG_M68K
622 /*
623 * On all ColdFire arch cpu, monitor code starts always
624 * just after the default vector table location, so at 0x400
625 */
626 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
627#endif
Sonic Zhangf503a522014-07-17 19:01:34 +0800628#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000629 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
630
631 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glass62cf9122013-04-26 02:53:43 +0000632 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000633 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
634 gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000635
636 return 0;
637}
638
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +0100639#ifdef CONFIG_OF_BOARD_FIXUP
640static int fix_fdt(void)
641{
642 return board_fix_fdt((void *)gd->fdt_blob);
643}
644#endif
645
Simon Glassc45e3592013-03-11 06:49:53 +0000646/* ARM calls relocate_code from its crt0.S */
Simon Glass6e1a81a2017-01-16 07:03:49 -0700647#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
648 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +0000649
650static int jump_to_copy(void)
651{
Simon Glass00dd17a2015-08-04 12:33:39 -0600652 if (gd->flags & GD_FLG_SKIP_RELOC)
653 return 0;
Simon Glass6d179872013-03-05 14:39:52 +0000654 /*
655 * x86 is special, but in a nice way. It uses a trampoline which
656 * enables the dcache if possible.
657 *
658 * For now, other archs use relocate_code(), which is implemented
659 * similarly for all archs. When we do generic relocation, hopefully
660 * we can make all archs enable the dcache prior to relocation.
661 */
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300662#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +0000663 /*
664 * SDRAM and console are now initialised. The final stack can now
665 * be setup in SDRAM. Code execution will continue in Flash, but
666 * with the stack in SDRAM and Global Data in temporary memory
667 * (CPU cache)
668 */
Simon Glass0e27b872015-08-10 20:44:32 -0600669 arch_setup_gd(gd->new_gd);
Simon Glass6d179872013-03-05 14:39:52 +0000670 board_init_f_r_trampoline(gd->start_addr_sp);
671#else
Masahiro Yamadad1589242013-05-27 00:37:30 +0000672 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +0000673#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000674
675 return 0;
676}
677#endif
678
679/* Record the board_init_f() bootstage (after arch_cpu_init()) */
680static int mark_bootstage(void)
681{
682 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
683
684 return 0;
685}
686
Simon Glass1bb49232015-11-08 23:47:48 -0700687static int initf_console_record(void)
688{
689#if defined(CONFIG_CONSOLE_RECORD) && defined(CONFIG_SYS_MALLOC_F_LEN)
690 return console_record_init();
691#else
692 return 0;
693#endif
694}
695
Simon Glassa730c5d2014-07-23 06:55:04 -0600696static int initf_dm(void)
697{
698#if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
699 int ret;
700
701 ret = dm_init_and_scan(true);
702 if (ret)
703 return ret;
704#endif
Simon Glass8e4f80f2016-02-24 09:14:50 -0700705#ifdef CONFIG_TIMER_EARLY
706 ret = dm_timer_init();
707 if (ret)
708 return ret;
709#endif
Simon Glassa730c5d2014-07-23 06:55:04 -0600710
711 return 0;
712}
713
Simon Glass5ded7e52015-01-19 22:16:12 -0700714/* Architecture-specific memory reservation */
715__weak int reserve_arch(void)
716{
717 return 0;
718}
719
Simon Glass7af8d052015-03-05 12:25:16 -0700720__weak int arch_cpu_init_dm(void)
721{
722 return 0;
723}
724
Simon Glass2031fad2017-01-16 07:03:50 -0700725static const init_fnc_t init_sequence_f[] = {
Simon Glassc45e3592013-03-11 06:49:53 +0000726 setup_mon_len,
Simon Glass26b78b22015-02-27 22:06:34 -0700727#ifdef CONFIG_OF_CONTROL
Simon Glassa0877672015-02-27 22:06:35 -0700728 fdtdec_setup,
Simon Glass26b78b22015-02-27 22:06:34 -0700729#endif
Kevin Hilman676f0192014-12-09 15:03:58 -0800730#ifdef CONFIG_TRACE
Simon Glass209a1a62013-06-11 11:14:42 -0700731 trace_early_init,
Kevin Hilman676f0192014-12-09 15:03:58 -0800732#endif
Simon Glasscfcb8862014-11-10 18:00:18 -0700733 initf_malloc,
Simon Glass1bb49232015-11-08 23:47:48 -0700734 initf_console_record,
Simon Glass295c4232017-03-28 10:27:18 -0600735#if defined(CONFIG_HAVE_FSP)
736 arch_fsp_init,
Bin Meng178f8972015-08-20 06:40:18 -0700737#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000738 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton1f508dd2016-09-21 11:18:46 +0100739 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass6df5de22014-09-03 17:36:59 -0600740 initf_dm,
Simon Glass7af8d052015-03-05 12:25:16 -0700741 arch_cpu_init_dm,
Thomas Chouc2fbaa22015-10-30 15:35:51 +0800742 mark_bootstage, /* need timer, go after init dm */
Simon Glassc45e3592013-03-11 06:49:53 +0000743#if defined(CONFIG_BOARD_EARLY_INIT_F)
744 board_early_init_f,
745#endif
Simon Glass6829d8c2017-03-28 10:27:26 -0600746#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glass70064a72017-03-28 10:27:19 -0600747 /* get CPU and bus clocks according to the environment variable */
Simon Glass50250b52013-03-11 14:30:42 +0000748 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glasse8d20d42017-03-28 10:27:23 -0600749#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000750 timer_init, /* initialize timer */
Simon Glass50250b52013-03-11 14:30:42 +0000751#if defined(CONFIG_BOARD_POSTCLK_INIT)
752 board_postclk_init,
753#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000754 env_init, /* initialize environment */
755 init_baud_rate, /* initialze baudrate settings */
756 serial_init, /* serial communications setup */
757 console_init_f, /* stage 1 init of console */
758 display_options, /* say that we are here */
759 display_text_info, /* show debugging info if required */
Simon Glassee7c36f2017-03-28 10:27:30 -0600760#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SH) || \
761 defined(CONFIG_X86)
Simon Glass50250b52013-03-11 14:30:42 +0000762 checkcpu,
763#endif
Simon Glass68c1d012017-01-23 13:31:25 -0700764#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glassc45e3592013-03-11 06:49:53 +0000765 print_cpuinfo, /* display cpu info (and speed) */
Simon Glass68c1d012017-01-23 13:31:25 -0700766#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000767#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada9607f7a2015-01-14 17:07:05 +0900768 show_board_info,
Simon Glassc45e3592013-03-11 06:49:53 +0000769#endif
Simon Glass50250b52013-03-11 14:30:42 +0000770 INIT_FUNC_WATCHDOG_INIT
771#if defined(CONFIG_MISC_INIT_F)
772 misc_init_f,
773#endif
774 INIT_FUNC_WATCHDOG_RESET
Heiko Schocher479a4cf2013-01-29 08:53:15 +0100775#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glass50250b52013-03-11 14:30:42 +0000776 init_func_i2c,
777#endif
778#if defined(CONFIG_HARD_SPI)
779 init_func_spi,
780#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000781 announce_dram_init,
782 /* TODO: unify all these dram functions? */
Kun-Hua Huang89299e22015-08-24 14:52:35 +0800783#if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_NDS32) || \
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200784 defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32) || \
785 defined(CONFIG_SH)
Simon Glassc45e3592013-03-11 06:49:53 +0000786 dram_init, /* configure available RAM banks */
787#endif
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100788#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000789 init_func_ram,
790#endif
791#ifdef CONFIG_POST
792 post_init_f,
793#endif
794 INIT_FUNC_WATCHDOG_RESET
795#if defined(CONFIG_SYS_DRAM_TEST)
796 testdram,
797#endif /* CONFIG_SYS_DRAM_TEST */
798 INIT_FUNC_WATCHDOG_RESET
799
Simon Glassc45e3592013-03-11 06:49:53 +0000800#ifdef CONFIG_POST
801 init_post,
802#endif
Simon Glass50250b52013-03-11 14:30:42 +0000803 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +0000804 /*
805 * Now that we have DRAM mapped and working, we can
806 * relocate the code and continue running from DRAM.
807 *
808 * Reserve memory at end of RAM for (top down in that order):
809 * - area that won't get touched by U-Boot and Linux (optional)
810 * - kernel log buffer
811 * - protected RAM
812 * - LCD framebuffer
813 * - monitor code
814 * - board info struct
815 */
816 setup_dest_addr,
Simon Glassbcf257d2017-03-31 08:40:28 -0600817#if defined(CONFIG_LOGBUFFER)
Simon Glassc45e3592013-03-11 06:49:53 +0000818 reserve_logbuffer,
819#endif
820#ifdef CONFIG_PRAM
821 reserve_pram,
822#endif
823 reserve_round_4k,
Simon Glasse3cb4492017-03-31 08:40:29 -0600824#ifdef CONFIG_ARM
Simon Glassc45e3592013-03-11 06:49:53 +0000825 reserve_mmu,
826#endif
Simon Glassfce58f52016-01-18 19:52:21 -0700827 reserve_video,
Simon Glass1008da02016-01-18 19:52:20 -0700828 reserve_trace,
Simon Glassc45e3592013-03-11 06:49:53 +0000829 reserve_uboot,
830 reserve_malloc,
831 reserve_board,
Simon Glassc45e3592013-03-11 06:49:53 +0000832 setup_machine,
833 reserve_global_data,
834 reserve_fdt,
Simon Glass5ded7e52015-01-19 22:16:12 -0700835 reserve_arch,
Simon Glassc45e3592013-03-11 06:49:53 +0000836 reserve_stacks,
Simon Glass2f949c32017-03-31 08:40:32 -0600837 dram_init_banksize,
Simon Glassc45e3592013-03-11 06:49:53 +0000838 show_dram_config,
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200839#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
840 defined(CONFIG_SH)
Simon Glass50250b52013-03-11 14:30:42 +0000841 setup_board_part1,
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100842#endif
843#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000844 INIT_FUNC_WATCHDOG_RESET
845 setup_board_part2,
846#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000847 display_new_sp,
Simon Glass50250b52013-03-11 14:30:42 +0000848#ifdef CONFIG_SYS_EXTBDINFO
849 setup_board_extra,
850#endif
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +0100851#ifdef CONFIG_OF_BOARD_FIXUP
852 fix_fdt,
853#endif
Simon Glass50250b52013-03-11 14:30:42 +0000854 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +0000855 reloc_fdt,
856 setup_reloc,
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300857#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glassd50b2f42015-01-01 16:18:09 -0700858 copy_uboot_to_ram,
Simon Glassd50b2f42015-01-01 16:18:09 -0700859 do_elf_reloc_fixups,
Simon Glass2a7bf772017-01-16 07:03:52 -0700860 clear_bss,
Simon Glassd50b2f42015-01-01 16:18:09 -0700861#endif
Chris Zankel41e37372016-08-10 18:36:43 +0300862#if defined(CONFIG_XTENSA)
863 clear_bss,
864#endif
Simon Glass6e1a81a2017-01-16 07:03:49 -0700865#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
866 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +0000867 jump_to_copy,
868#endif
869 NULL,
870};
871
872void board_init_f(ulong boot_flags)
873{
York Sun021d2022014-05-02 17:28:04 -0700874#ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
875 /*
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -0400876 * For some architectures, global data is initialized and used before
York Sun021d2022014-05-02 17:28:04 -0700877 * calling this function. The data should be preserved. For others,
878 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
879 * here to host global data until relocation.
880 */
Simon Glassc45e3592013-03-11 06:49:53 +0000881 gd_t data;
882
883 gd = &data;
884
David Feng1735de82013-12-14 11:47:36 +0800885 /*
886 * Clear global data before it is accessed at debug print
887 * in initcall_run_list. Otherwise the debug print probably
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -0400888 * get the wrong value of gd->have_console.
David Feng1735de82013-12-14 11:47:36 +0800889 */
David Feng1735de82013-12-14 11:47:36 +0800890 zero_global_data();
891#endif
892
Simon Glassc45e3592013-03-11 06:49:53 +0000893 gd->flags = boot_flags;
Alexey Brodkin07236912013-11-27 22:32:40 +0400894 gd->have_console = 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000895
896 if (initcall_run_list(init_sequence_f))
897 hang();
898
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600899#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Simon Glass6e1a81a2017-01-16 07:03:49 -0700900 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +0000901 /* NOTREACHED - jump_to_copy() does not return */
902 hang();
903#endif
904}
Simon Glass6d179872013-03-05 14:39:52 +0000905
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300906#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +0000907/*
908 * For now this code is only used on x86.
909 *
910 * init_sequence_f_r is the list of init functions which are run when
911 * U-Boot is executing from Flash with a semi-limited 'C' environment.
912 * The following limitations must be considered when implementing an
913 * '_f_r' function:
914 * - 'static' variables are read-only
915 * - Global Data (gd->xxx) is read/write
916 *
917 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
918 * supported). It _should_, if possible, copy global data to RAM and
919 * initialise the CPU caches (to speed up the relocation process)
920 *
921 * NOTE: At present only x86 uses this route, but it is intended that
922 * all archs will move to this when generic relocation is implemented.
923 */
Simon Glass2031fad2017-01-16 07:03:50 -0700924static const init_fnc_t init_sequence_f_r[] = {
Simon Glass6e1a81a2017-01-16 07:03:49 -0700925#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass6d179872013-03-05 14:39:52 +0000926 init_cache_f_r,
Simon Glass6e1a81a2017-01-16 07:03:49 -0700927#endif
Simon Glass6d179872013-03-05 14:39:52 +0000928
929 NULL,
930};
931
932void board_init_f_r(void)
933{
934 if (initcall_run_list(init_sequence_f_r))
935 hang();
936
937 /*
Simon Glass51f73f12016-03-11 22:06:51 -0700938 * The pre-relocation drivers may be using memory that has now gone
939 * away. Mark serial as unavailable - this will fall back to the debug
940 * UART if available.
941 */
942 gd->flags &= ~GD_FLG_SERIAL_READY;
943
944 /*
Simon Glass6d179872013-03-05 14:39:52 +0000945 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
946 * Transfer execution from Flash to RAM by calculating the address
947 * of the in-RAM copy of board_init_r() and calling it
948 */
Alexey Brodkin9c832f12015-02-25 17:59:02 +0300949 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +0000950
951 /* NOTREACHED - board_init_r() does not return */
952 hang();
953}
Alexey Brodkin73503182015-03-24 11:12:47 +0300954#endif /* CONFIG_X86 */