blob: e483b4b06c9f6f43ce5e75a1def32636536e156b [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 Glass1938f4a2013-03-11 06:49:53 +000014#include <version.h>
Simon Glass24b852a2015-11-08 23:47:45 -070015#include <console.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000016#include <environment.h>
Simon Glassab7cd622014-07-23 06:55:04 -060017#include <dm.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000018#include <fdtdec.h>
Simon Glassf828bf22013-04-20 08:42:41 +000019#include <fs.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000020#include <i2c.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000021#include <initcall.h>
22#include <logbuff.h>
Simon Glassfb5cf7f2015-02-27 22:06:36 -070023#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050024#include <mapmem.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000025
26/* TODO: Can we move these into arch/ headers? */
27#ifdef CONFIG_8xx
28#include <mpc8xx.h>
29#endif
30#ifdef CONFIG_5xx
31#include <mpc5xx.h>
32#endif
33#ifdef CONFIG_MPC5xxx
34#include <mpc5xxx.h>
35#endif
Gabriel Huauec3b4822014-09-03 13:57:54 -070036#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Gabriel Huaua76df702014-07-26 11:35:43 -070037#include <asm/mp.h>
38#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +000039
Simon Glassa733b062013-04-26 02:53:43 +000040#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000041#include <post.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000042#include <spi.h>
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020043#include <status_led.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070044#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070045#include <trace.h>
Simon Glass5a541942016-01-18 19:52:21 -070046#include <video.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000047#include <watchdog.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000048#include <asm/io.h>
49#include <asm/sections.h>
Alexey Brodkin3fb80162015-02-24 19:40:36 +030050#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +000051#include <asm/init_helpers.h>
Chris Zankelde5e5ce2016-08-10 18:36:43 +030052#endif
53#if defined(CONFIG_X86) || defined(CONFIG_ARC) || defined(CONFIG_XTENSA)
Simon Glass48a33802013-03-05 14:39:52 +000054#include <asm/relocate.h>
55#endif
Simon Glassab7cd622014-07-23 06:55:04 -060056#include <dm/root.h>
Simon Glass056285f2017-03-31 08:40:35 -060057#include <linux/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000058
59/*
60 * Pointer to initial global data area
61 *
62 * Here we initialize it if needed.
63 */
64#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
65#undef XTRN_DECLARE_GLOBAL_DATA_PTR
66#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
67DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
68#else
69DECLARE_GLOBAL_DATA_PTR;
70#endif
71
72/*
Simon Glass4c509342015-04-28 20:25:03 -060073 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000074 * refactored to a single function, something like:
75 *
76 * void led_set_state(enum led_colour_t colour, int on);
77 */
78/************************************************************************
79 * Coloured LED functionality
80 ************************************************************************
81 * May be supplied by boards if desired
82 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020083__weak void coloured_LED_init(void) {}
84__weak void red_led_on(void) {}
85__weak void red_led_off(void) {}
86__weak void green_led_on(void) {}
87__weak void green_led_off(void) {}
88__weak void yellow_led_on(void) {}
89__weak void yellow_led_off(void) {}
90__weak void blue_led_on(void) {}
91__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000092
93/*
94 * Why is gd allocated a register? Prior to reloc it might be better to
95 * just pass it around to each function in this file?
96 *
97 * After reloc one could argue that it is hardly used and doesn't need
98 * to be in a register. Or if it is it should perhaps hold pointers to all
99 * global data for all modules, so that post-reloc we can avoid the massive
100 * literal pool we get on ARM. Or perhaps just encourage each module to use
101 * a structure...
102 */
103
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800104#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000105static int init_func_watchdog_init(void)
106{
Tom Riniea3310e2017-03-14 11:08:10 -0400107# if defined(CONFIG_HW_WATCHDOG) && \
108 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Stefan Roese14a380a2015-03-10 08:04:36 +0100109 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
Anatolij Gustschin46d7a3b2016-06-13 14:24:23 +0200110 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roese14a380a2015-03-10 08:04:36 +0100111 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800112 hw_watchdog_init();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000113 puts(" Watchdog enabled\n");
Anatolij Gustschinba169d92016-06-13 14:24:24 +0200114# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000115 WATCHDOG_RESET();
116
117 return 0;
118}
119
120int init_func_watchdog_reset(void)
121{
122 WATCHDOG_RESET();
123
124 return 0;
125}
126#endif /* CONFIG_WATCHDOG */
127
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200128__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000129{
130 /* please define platform specific board_add_ram_info() */
131}
132
Simon Glass1938f4a2013-03-11 06:49:53 +0000133static int init_baud_rate(void)
134{
135 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
136 return 0;
137}
138
139static int display_text_info(void)
140{
Ben Stoltz9b217492015-07-31 09:31:37 -0600141#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100142 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000143
Simon Glass632efa72013-03-11 07:06:48 +0000144 bss_start = (ulong)&__bss_start;
145 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100146
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800147#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100148 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800149#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100150 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800151#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100152
153 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
154 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000155#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000156
Simon Glass1938f4a2013-03-11 06:49:53 +0000157#ifdef CONFIG_USE_IRQ
158 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
159 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
160#endif
161
162 return 0;
163}
164
165static int announce_dram_init(void)
166{
167 puts("DRAM: ");
168 return 0;
169}
170
angelo@sysam.ite310b932015-02-12 01:40:17 +0100171#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000172static int init_func_ram(void)
173{
Simon Glass088454c2017-03-31 08:40:25 -0600174 return initdram();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000175}
176#endif
177
Simon Glass1938f4a2013-03-11 06:49:53 +0000178static int show_dram_config(void)
179{
York Sunfa39ffe2014-05-02 17:28:05 -0700180 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000181
182#ifdef CONFIG_NR_DRAM_BANKS
183 int i;
184
185 debug("\nRAM Configuration:\n");
186 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
187 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700188 debug("Bank #%d: %llx ", i,
189 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000190#ifdef DEBUG
191 print_size(gd->bd->bi_dram[i].size, "\n");
192#endif
193 }
194 debug("\nDRAM: ");
195#else
196 size = gd->ram_size;
197#endif
198
Simon Glasse4fef6c2013-03-11 14:30:42 +0000199 print_size(size, "");
200 board_add_ram_info(0);
201 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000202
203 return 0;
204}
205
Simon Glass76b00ac2017-03-31 08:40:32 -0600206__weak int dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000207{
208#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
209 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
210 gd->bd->bi_dram[0].size = get_effective_memsize();
211#endif
Simon Glass76b00ac2017-03-31 08:40:32 -0600212
213 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000214}
215
Heiko Schocherea818db2013-01-29 08:53:15 +0100216#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000217static int init_func_i2c(void)
218{
219 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200220#ifdef CONFIG_SYS_I2C
221 i2c_init_all();
222#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000223 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200224#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000225 puts("ready\n");
226 return 0;
227}
228#endif
229
230#if defined(CONFIG_HARD_SPI)
231static int init_func_spi(void)
232{
233 puts("SPI: ");
234 spi_init();
235 puts("ready\n");
236 return 0;
237}
238#endif
239
240__maybe_unused
Simon Glass1938f4a2013-03-11 06:49:53 +0000241static int zero_global_data(void)
242{
243 memset((void *)gd, '\0', sizeof(gd_t));
244
245 return 0;
246}
247
248static int setup_mon_len(void)
249{
Michal Simeke945f6d2014-05-08 16:08:44 +0200250#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100251 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz9b217492015-07-31 09:31:37 -0600252#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000253 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400254#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800255 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200256#elif defined(CONFIG_NDS32) || defined(CONFIG_SH)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800257 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600258#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000259 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
260 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000261#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000262 return 0;
263}
264
265__weak int arch_cpu_init(void)
266{
267 return 0;
268}
269
Paul Burton8ebf5062016-09-21 11:18:46 +0100270__weak int mach_cpu_init(void)
271{
272 return 0;
273}
274
Simon Glass1938f4a2013-03-11 06:49:53 +0000275/* Get the top of usable RAM */
276__weak ulong board_get_usable_ram_top(ulong total_size)
277{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700278#ifdef CONFIG_SYS_SDRAM_BASE
279 /*
Simon Glass4c509342015-04-28 20:25:03 -0600280 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700281 * 32-bit address space. If so, clip the usable RAM so it doesn't.
282 */
283 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
284 /*
285 * Will wrap back to top of 32-bit space when reservations
286 * are made.
287 */
288 return 0;
289#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000290 return gd->ram_top;
291}
292
293static int setup_dest_addr(void)
294{
295 debug("Monitor len: %08lX\n", gd->mon_len);
296 /*
297 * Ram is setup, size stored in gd !!
298 */
299 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun36cc0de2017-03-06 09:02:28 -0800300#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000301 /*
302 * Subtract specified amount of memory to hide so that it won't
303 * get "touched" at all by U-Boot. By fixing up gd->ram_size
304 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800305 * memory size and won't touch it either. This should work
306 * for arch/ppc and arch/powerpc. Only Linux board ports in
307 * arch/powerpc with bootwrapper support, that recalculate the
308 * memory size from the SDRAM controller setup will have to
309 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000310 */
York Sun36cc0de2017-03-06 09:02:28 -0800311 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
312#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000313#ifdef CONFIG_SYS_SDRAM_BASE
314 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
315#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000316 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000317 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000318 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000319 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700320#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000321 /*
322 * We need to make sure the location we intend to put secondary core
323 * boot code is reserved and not used by any part of u-boot
324 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000325 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
326 gd->relocaddr = determine_mp_bootpg(NULL);
327 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000328 }
329#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000330 return 0;
331}
332
Simon Glassb56db482017-03-31 08:40:28 -0600333#if defined(CONFIG_LOGBUFFER)
Simon Glass1938f4a2013-03-11 06:49:53 +0000334static int reserve_logbuffer(void)
335{
Simon Glassb56db482017-03-31 08:40:28 -0600336#ifndef CONFIG_ALT_LB_ADDR
Simon Glass1938f4a2013-03-11 06:49:53 +0000337 /* reserve kernel log buffer */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000338 gd->relocaddr -= LOGBUFF_RESERVE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000339 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000340 gd->relocaddr);
Simon Glassb56db482017-03-31 08:40:28 -0600341#endif
342
Simon Glass1938f4a2013-03-11 06:49:53 +0000343 return 0;
344}
345#endif
346
347#ifdef CONFIG_PRAM
348/* reserve protected RAM */
349static int reserve_pram(void)
350{
351 ulong reg;
352
353 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000354 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000355 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000356 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000357 return 0;
358}
359#endif /* CONFIG_PRAM */
360
361/* Round memory pointer down to next 4 kB limit */
362static int reserve_round_4k(void)
363{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000364 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000365 return 0;
366}
367
Simon Glass80d4bcd2017-03-31 08:40:29 -0600368#ifdef CONFIG_ARM
Simon Glass1938f4a2013-03-11 06:49:53 +0000369static int reserve_mmu(void)
370{
Simon Glass80d4bcd2017-03-31 08:40:29 -0600371#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Simon Glass1938f4a2013-03-11 06:49:53 +0000372 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800373 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000374 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000375
376 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000377 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000378
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000379 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000380 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
381 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sun50e93b92016-06-24 16:46:19 -0700382
383#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
384 /*
385 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
386 * with location within secure ram.
387 */
388 gd->arch.tlb_allocated = gd->arch.tlb_addr;
389#endif
Simon Glass80d4bcd2017-03-31 08:40:29 -0600390#endif
York Sun50e93b92016-06-24 16:46:19 -0700391
Simon Glass1938f4a2013-03-11 06:49:53 +0000392 return 0;
393}
394#endif
395
Simon Glass5a541942016-01-18 19:52:21 -0700396static int reserve_video(void)
397{
Simon Glass0f079eb2017-03-31 08:40:30 -0600398#ifdef CONFIG_DM_VIDEO
Simon Glass5a541942016-01-18 19:52:21 -0700399 ulong addr;
400 int ret;
401
402 addr = gd->relocaddr;
403 ret = video_reserve(&addr);
404 if (ret)
405 return ret;
406 gd->relocaddr = addr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600407#elif defined(CONFIG_LCD)
Simon Glass5a541942016-01-18 19:52:21 -0700408# ifdef CONFIG_FB_ADDR
Simon Glass1938f4a2013-03-11 06:49:53 +0000409 gd->fb_base = CONFIG_FB_ADDR;
Simon Glass5a541942016-01-18 19:52:21 -0700410# else
Simon Glass1938f4a2013-03-11 06:49:53 +0000411 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000412 gd->relocaddr = lcd_setmem(gd->relocaddr);
413 gd->fb_base = gd->relocaddr;
Simon Glass5a541942016-01-18 19:52:21 -0700414# endif /* CONFIG_FB_ADDR */
Simon Glass0f079eb2017-03-31 08:40:30 -0600415#elif defined(CONFIG_VIDEO) && \
416 (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
Simon Glass8703ef32016-01-18 19:52:20 -0700417 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Riniea3310e2017-03-14 11:08:10 -0400418 !defined(CONFIG_M68K)
Simon Glass8703ef32016-01-18 19:52:20 -0700419 /* reserve memory for video display (always full pages) */
420 gd->relocaddr = video_setmem(gd->relocaddr);
421 gd->fb_base = gd->relocaddr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600422#endif
Simon Glass8703ef32016-01-18 19:52:20 -0700423
424 return 0;
425}
Simon Glass8703ef32016-01-18 19:52:20 -0700426
Simon Glass71c52db2013-06-11 11:14:42 -0700427static int reserve_trace(void)
428{
429#ifdef CONFIG_TRACE
430 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
431 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
432 debug("Reserving %dk for trace data at: %08lx\n",
433 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
434#endif
435
436 return 0;
437}
438
Simon Glass1938f4a2013-03-11 06:49:53 +0000439static int reserve_uboot(void)
440{
441 /*
442 * reserve memory for U-Boot code, data & bss
443 * round down to next 4 kB limit
444 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000445 gd->relocaddr -= gd->mon_len;
446 gd->relocaddr &= ~(4096 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000447#ifdef CONFIG_E500
448 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000449 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000450#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000451
452 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000453 gd->relocaddr);
454
455 gd->start_addr_sp = gd->relocaddr;
456
Simon Glass1938f4a2013-03-11 06:49:53 +0000457 return 0;
458}
459
460/* reserve memory for malloc() area */
461static int reserve_malloc(void)
462{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000463 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000464 debug("Reserving %dk for malloc() at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000465 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000466 return 0;
467}
468
469/* (permanently) allocate a Board Info struct */
470static int reserve_board(void)
471{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800472 if (!gd->bd) {
473 gd->start_addr_sp -= sizeof(bd_t);
474 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
475 memset(gd->bd, '\0', sizeof(bd_t));
476 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
477 sizeof(bd_t), gd->start_addr_sp);
478 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000479 return 0;
480}
481
482static int setup_machine(void)
483{
484#ifdef CONFIG_MACH_TYPE
485 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
486#endif
487 return 0;
488}
489
490static int reserve_global_data(void)
491{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000492 gd->start_addr_sp -= sizeof(gd_t);
493 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000494 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000495 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000496 return 0;
497}
498
499static int reserve_fdt(void)
500{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100501#ifndef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000502 /*
Simon Glass4c509342015-04-28 20:25:03 -0600503 * If the device tree is sitting immediately above our image then we
Simon Glass1938f4a2013-03-11 06:49:53 +0000504 * must relocate it. If it is embedded in the data section, then it
505 * will be relocated with other data.
506 */
507 if (gd->fdt_blob) {
508 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
509
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000510 gd->start_addr_sp -= gd->fdt_size;
511 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000512 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000513 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000514 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100515#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000516
517 return 0;
518}
519
Andreas Bießmann68145d42015-02-06 23:06:45 +0100520int arch_reserve_stacks(void)
521{
522 return 0;
523}
524
Simon Glass1938f4a2013-03-11 06:49:53 +0000525static int reserve_stacks(void)
526{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100527 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000528 gd->start_addr_sp -= 16;
529 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000530
531 /*
Simon Glass4c509342015-04-28 20:25:03 -0600532 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100533 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000534 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100535 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000536}
537
538static int display_new_sp(void)
539{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000540 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000541
542 return 0;
543}
544
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200545#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
546 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000547static int setup_board_part1(void)
548{
549 bd_t *bd = gd->bd;
550
551 /*
552 * Save local variables to board info struct
553 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000554 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
555 bd->bi_memsize = gd->ram_size; /* size in bytes */
556
557#ifdef CONFIG_SYS_SRAM_BASE
558 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
559 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
560#endif
561
Masahiro Yamada58dac322014-03-05 17:40:10 +0900562#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Simon Glasse4fef6c2013-03-11 14:30:42 +0000563 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
564 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
565#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100566#if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000567 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
568#endif
569#if defined(CONFIG_MPC83xx)
570 bd->bi_immrbar = CONFIG_SYS_IMMR;
571#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000572
573 return 0;
574}
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100575#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000576
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100577#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000578static int setup_board_part2(void)
579{
580 bd_t *bd = gd->bd;
581
582 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
583 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
584#if defined(CONFIG_CPM2)
585 bd->bi_cpmfreq = gd->arch.cpm_clk;
586 bd->bi_brgfreq = gd->arch.brg_clk;
587 bd->bi_sccfreq = gd->arch.scc_clk;
588 bd->bi_vco = gd->arch.vco_out;
589#endif /* CONFIG_CPM2 */
590#if defined(CONFIG_MPC512X)
591 bd->bi_ipsfreq = gd->arch.ips_clk;
592#endif /* CONFIG_MPC512X */
593#if defined(CONFIG_MPC5xxx)
594 bd->bi_ipbfreq = gd->arch.ipb_clk;
595 bd->bi_pcifreq = gd->pci_clk;
596#endif /* CONFIG_MPC5xxx */
Alison Wang1313db42015-02-12 18:33:15 +0800597#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
598 bd->bi_pcifreq = gd->pci_clk;
599#endif
600#if defined(CONFIG_EXTRA_CLOCK)
601 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
602 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
603 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
604#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000605
606 return 0;
607}
608#endif
609
610#ifdef CONFIG_SYS_EXTBDINFO
611static int setup_board_extra(void)
612{
613 bd_t *bd = gd->bd;
614
615 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
616 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
617 sizeof(bd->bi_r_version));
618
619 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
620 bd->bi_plb_busfreq = gd->bus_clk;
621#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
622 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
623 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
624 bd->bi_pci_busfreq = get_PCI_freq();
625 bd->bi_opbfreq = get_OPB_freq();
626#elif defined(CONFIG_XILINX_405)
627 bd->bi_pci_busfreq = get_PCI_freq();
628#endif
629
630 return 0;
631}
632#endif
633
Simon Glass1938f4a2013-03-11 06:49:53 +0000634#ifdef CONFIG_POST
635static int init_post(void)
636{
637 post_bootmode_init();
638 post_run(NULL, POST_ROM | post_bootmode_get(0));
639
640 return 0;
641}
642#endif
643
Simon Glass1938f4a2013-03-11 06:49:53 +0000644static int reloc_fdt(void)
645{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100646#ifndef CONFIG_OF_EMBED
Simon Glassf05ad9b2015-08-04 12:33:39 -0600647 if (gd->flags & GD_FLG_SKIP_RELOC)
648 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000649 if (gd->new_fdt) {
650 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
651 gd->fdt_blob = gd->new_fdt;
652 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100653#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000654
655 return 0;
656}
657
658static int setup_reloc(void)
659{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600660 if (gd->flags & GD_FLG_SKIP_RELOC) {
661 debug("Skipping relocation due to flag\n");
662 return 0;
663 }
664
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800665#ifdef CONFIG_SYS_TEXT_BASE
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000666 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100667#ifdef CONFIG_M68K
668 /*
669 * On all ColdFire arch cpu, monitor code starts always
670 * just after the default vector table location, so at 0x400
671 */
672 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
673#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800674#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000675 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
676
677 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000678 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000679 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
680 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000681
682 return 0;
683}
684
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100685#ifdef CONFIG_OF_BOARD_FIXUP
686static int fix_fdt(void)
687{
688 return board_fix_fdt((void *)gd->fdt_blob);
689}
690#endif
691
Simon Glass1938f4a2013-03-11 06:49:53 +0000692/* ARM calls relocate_code from its crt0.S */
Simon Glass530f27e2017-01-16 07:03:49 -0700693#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
694 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000695
696static int jump_to_copy(void)
697{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600698 if (gd->flags & GD_FLG_SKIP_RELOC)
699 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000700 /*
701 * x86 is special, but in a nice way. It uses a trampoline which
702 * enables the dcache if possible.
703 *
704 * For now, other archs use relocate_code(), which is implemented
705 * similarly for all archs. When we do generic relocation, hopefully
706 * we can make all archs enable the dcache prior to relocation.
707 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300708#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000709 /*
710 * SDRAM and console are now initialised. The final stack can now
711 * be setup in SDRAM. Code execution will continue in Flash, but
712 * with the stack in SDRAM and Global Data in temporary memory
713 * (CPU cache)
714 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600715 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000716 board_init_f_r_trampoline(gd->start_addr_sp);
717#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000718 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000719#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000720
721 return 0;
722}
723#endif
724
725/* Record the board_init_f() bootstage (after arch_cpu_init()) */
726static int mark_bootstage(void)
727{
728 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
729
730 return 0;
731}
732
Simon Glass9854a872015-11-08 23:47:48 -0700733static int initf_console_record(void)
734{
735#if defined(CONFIG_CONSOLE_RECORD) && defined(CONFIG_SYS_MALLOC_F_LEN)
736 return console_record_init();
737#else
738 return 0;
739#endif
740}
741
Simon Glassab7cd622014-07-23 06:55:04 -0600742static int initf_dm(void)
743{
744#if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
745 int ret;
746
747 ret = dm_init_and_scan(true);
748 if (ret)
749 return ret;
750#endif
Simon Glass1057e6c2016-02-24 09:14:50 -0700751#ifdef CONFIG_TIMER_EARLY
752 ret = dm_timer_init();
753 if (ret)
754 return ret;
755#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600756
757 return 0;
758}
759
Simon Glass146251f2015-01-19 22:16:12 -0700760/* Architecture-specific memory reservation */
761__weak int reserve_arch(void)
762{
763 return 0;
764}
765
Simon Glassd4c671c2015-03-05 12:25:16 -0700766__weak int arch_cpu_init_dm(void)
767{
768 return 0;
769}
770
Simon Glass4acff452017-01-16 07:03:50 -0700771static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000772 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700773#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700774 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700775#endif
Kevin Hilmand2107182014-12-09 15:03:58 -0800776#ifdef CONFIG_TRACE
Simon Glass71c52db2013-06-11 11:14:42 -0700777 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800778#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700779 initf_malloc,
Simon Glass9854a872015-11-08 23:47:48 -0700780 initf_console_record,
Simon Glass671549e2017-03-28 10:27:18 -0600781#if defined(CONFIG_HAVE_FSP)
782 arch_fsp_init,
Bin Menga52a0682015-08-20 06:40:18 -0700783#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000784 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100785 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600786 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700787 arch_cpu_init_dm,
Thomas Chou67521952015-10-30 15:35:51 +0800788 mark_bootstage, /* need timer, go after init dm */
Simon Glass1938f4a2013-03-11 06:49:53 +0000789#if defined(CONFIG_BOARD_EARLY_INIT_F)
790 board_early_init_f,
791#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600792#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600793 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000794 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600795#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000796 timer_init, /* initialize timer */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000797#if defined(CONFIG_BOARD_POSTCLK_INIT)
798 board_postclk_init,
799#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000800 env_init, /* initialize environment */
801 init_baud_rate, /* initialze baudrate settings */
802 serial_init, /* serial communications setup */
803 console_init_f, /* stage 1 init of console */
804 display_options, /* say that we are here */
805 display_text_info, /* show debugging info if required */
Simon Glass76d1d022017-03-28 10:27:30 -0600806#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SH) || \
807 defined(CONFIG_X86)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000808 checkcpu,
809#endif
Simon Glasscc664002017-01-23 13:31:25 -0700810#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000811 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700812#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000813#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900814 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000815#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000816 INIT_FUNC_WATCHDOG_INIT
817#if defined(CONFIG_MISC_INIT_F)
818 misc_init_f,
819#endif
820 INIT_FUNC_WATCHDOG_RESET
Heiko Schocherea818db2013-01-29 08:53:15 +0100821#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000822 init_func_i2c,
823#endif
824#if defined(CONFIG_HARD_SPI)
825 init_func_spi,
826#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000827 announce_dram_init,
828 /* TODO: unify all these dram functions? */
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800829#if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_NDS32) || \
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200830 defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32) || \
831 defined(CONFIG_SH)
Simon Glass1938f4a2013-03-11 06:49:53 +0000832 dram_init, /* configure available RAM banks */
833#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100834#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000835 init_func_ram,
836#endif
837#ifdef CONFIG_POST
838 post_init_f,
839#endif
840 INIT_FUNC_WATCHDOG_RESET
841#if defined(CONFIG_SYS_DRAM_TEST)
842 testdram,
843#endif /* CONFIG_SYS_DRAM_TEST */
844 INIT_FUNC_WATCHDOG_RESET
845
Simon Glass1938f4a2013-03-11 06:49:53 +0000846#ifdef CONFIG_POST
847 init_post,
848#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000849 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000850 /*
851 * Now that we have DRAM mapped and working, we can
852 * relocate the code and continue running from DRAM.
853 *
854 * Reserve memory at end of RAM for (top down in that order):
855 * - area that won't get touched by U-Boot and Linux (optional)
856 * - kernel log buffer
857 * - protected RAM
858 * - LCD framebuffer
859 * - monitor code
860 * - board info struct
861 */
862 setup_dest_addr,
Simon Glassb56db482017-03-31 08:40:28 -0600863#if defined(CONFIG_LOGBUFFER)
Simon Glass1938f4a2013-03-11 06:49:53 +0000864 reserve_logbuffer,
865#endif
866#ifdef CONFIG_PRAM
867 reserve_pram,
868#endif
869 reserve_round_4k,
Simon Glass80d4bcd2017-03-31 08:40:29 -0600870#ifdef CONFIG_ARM
Simon Glass1938f4a2013-03-11 06:49:53 +0000871 reserve_mmu,
872#endif
Simon Glass5a541942016-01-18 19:52:21 -0700873 reserve_video,
Simon Glass8703ef32016-01-18 19:52:20 -0700874 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000875 reserve_uboot,
876 reserve_malloc,
877 reserve_board,
Simon Glass1938f4a2013-03-11 06:49:53 +0000878 setup_machine,
879 reserve_global_data,
880 reserve_fdt,
Simon Glass146251f2015-01-19 22:16:12 -0700881 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000882 reserve_stacks,
Simon Glass76b00ac2017-03-31 08:40:32 -0600883 dram_init_banksize,
Simon Glass1938f4a2013-03-11 06:49:53 +0000884 show_dram_config,
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200885#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
886 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000887 setup_board_part1,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100888#endif
889#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000890 INIT_FUNC_WATCHDOG_RESET
891 setup_board_part2,
892#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000893 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000894#ifdef CONFIG_SYS_EXTBDINFO
895 setup_board_extra,
896#endif
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100897#ifdef CONFIG_OF_BOARD_FIXUP
898 fix_fdt,
899#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000900 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000901 reloc_fdt,
902 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300903#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700904 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700905 do_elf_reloc_fixups,
Simon Glass6bda55a2017-01-16 07:03:52 -0700906 clear_bss,
Simon Glass313aef32015-01-01 16:18:09 -0700907#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300908#if defined(CONFIG_XTENSA)
909 clear_bss,
910#endif
Simon Glass530f27e2017-01-16 07:03:49 -0700911#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
912 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000913 jump_to_copy,
914#endif
915 NULL,
916};
917
918void board_init_f(ulong boot_flags)
919{
York Sun2a1680e2014-05-02 17:28:04 -0700920#ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
921 /*
Robert P. J. Dayfc0b5942016-09-07 14:27:59 -0400922 * For some architectures, global data is initialized and used before
York Sun2a1680e2014-05-02 17:28:04 -0700923 * calling this function. The data should be preserved. For others,
924 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
925 * here to host global data until relocation.
926 */
Simon Glass1938f4a2013-03-11 06:49:53 +0000927 gd_t data;
928
929 gd = &data;
930
David Fengcce6be72013-12-14 11:47:36 +0800931 /*
932 * Clear global data before it is accessed at debug print
933 * in initcall_run_list. Otherwise the debug print probably
Robert P. J. Dayfc0b5942016-09-07 14:27:59 -0400934 * get the wrong value of gd->have_console.
David Fengcce6be72013-12-14 11:47:36 +0800935 */
David Fengcce6be72013-12-14 11:47:36 +0800936 zero_global_data();
937#endif
938
Simon Glass1938f4a2013-03-11 06:49:53 +0000939 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +0400940 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000941
942 if (initcall_run_list(init_sequence_f))
943 hang();
944
Ben Stoltz9b217492015-07-31 09:31:37 -0600945#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Simon Glass530f27e2017-01-16 07:03:49 -0700946 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000947 /* NOTREACHED - jump_to_copy() does not return */
948 hang();
949#endif
950}
951
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300952#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000953/*
954 * For now this code is only used on x86.
955 *
956 * init_sequence_f_r is the list of init functions which are run when
957 * U-Boot is executing from Flash with a semi-limited 'C' environment.
958 * The following limitations must be considered when implementing an
959 * '_f_r' function:
960 * - 'static' variables are read-only
961 * - Global Data (gd->xxx) is read/write
962 *
963 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
964 * supported). It _should_, if possible, copy global data to RAM and
965 * initialise the CPU caches (to speed up the relocation process)
966 *
967 * NOTE: At present only x86 uses this route, but it is intended that
968 * all archs will move to this when generic relocation is implemented.
969 */
Simon Glass4acff452017-01-16 07:03:50 -0700970static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -0700971#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +0000972 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -0700973#endif
Simon Glass48a33802013-03-05 14:39:52 +0000974
975 NULL,
976};
977
978void board_init_f_r(void)
979{
980 if (initcall_run_list(init_sequence_f_r))
981 hang();
982
983 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -0700984 * The pre-relocation drivers may be using memory that has now gone
985 * away. Mark serial as unavailable - this will fall back to the debug
986 * UART if available.
987 */
988 gd->flags &= ~GD_FLG_SERIAL_READY;
989
990 /*
Simon Glass48a33802013-03-05 14:39:52 +0000991 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
992 * Transfer execution from Flash to RAM by calculating the address
993 * of the in-RAM copy of board_init_r() and calling it
994 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +0300995 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000996
997 /* NOTREACHED - board_init_r() does not return */
998 hang();
999}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001000#endif /* CONFIG_X86 */