blob: 98782ca56289eab505af6f14d8af00e61cc3c4c4 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
Wolfgang Denk7a132ae2006-01-29 19:12:41 +01002 * (C) Copyright 2002-2006
wdenkc6097192002-11-03 00:24:07 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
8 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +000010 */
11
Wolfgang Denk7a132ae2006-01-29 19:12:41 +010012/*
13 * To match the U-Boot user interface on ARM platforms to the U-Boot
14 * standard (as on PPC platforms), some messages with debug character
15 * are removed from the default U-Boot build.
16 *
17 * Define DEBUG here if you want additional info as shown below
18 * printed upon startup:
19 *
20 * U-Boot code: 00F00000 -> 00F3C774 BSS: -> 00FC3274
21 * IRQ Stack: 00ebff7c
22 * FIQ Stack: 00ebef7c
23 */
24
wdenkc6097192002-11-03 00:24:07 +000025#include <common.h>
26#include <command.h>
Simon Glass6b8d5fd2012-11-30 13:01:17 +000027#include <environment.h>
wdenk56958612003-06-22 17:18:28 +000028#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +020029#include <stdio_dev.h>
wdenkc6097192002-11-03 00:24:07 +000030#include <version.h>
31#include <net.h>
Marcel Ziswilerb5a75412008-05-01 09:05:26 +020032#include <serial.h>
Scott Woode898dfd2008-05-22 10:49:46 -050033#include <nand.h>
34#include <onenand_uboot.h>
Ilya Yanok50ff6df2009-06-08 04:12:50 +040035#include <mmc.h>
Ian Campbell19349962014-03-07 01:20:56 +000036#include <scsi.h>
Simon Glass3433dd72011-10-24 19:15:33 +000037#include <libfdt.h>
38#include <fdtdec.h>
Valentin Longchampe3c4c942011-09-02 04:59:03 +000039#include <post.h>
40#include <logbuff.h>
Simon Glasse0e641e2013-03-05 14:39:38 +000041#include <asm/sections.h>
wdenkc6097192002-11-03 00:24:07 +000042
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +020043#ifdef CONFIG_BITBANGMII
44#include <miiphy.h>
45#endif
46
Markus Klotzbücheraedd96a2006-02-10 11:25:41 +010047DECLARE_GLOBAL_DATA_PTR;
48
wdenkb9a83a92003-05-30 12:48:29 +000049ulong monitor_flash_len;
50
wdenk381669a2003-06-16 23:50:08 +000051#ifdef CONFIG_HAS_DATAFLASH
52extern int AT91F_DataflashInit(void);
53extern void dataflash_print_info(void);
54#endif
55
Hebbarb7d11642007-12-18 16:00:54 -080056#if defined(CONFIG_HARD_I2C) || \
Heiko Schochere0e55bc2012-01-16 21:12:24 +000057 defined(CONFIG_SYS_I2C)
Hebbarb7d11642007-12-18 16:00:54 -080058#include <i2c.h>
59#endif
60
wdenkc6097192002-11-03 00:24:07 +000061/************************************************************************
Peter Pearse2c261ca2007-09-04 16:18:38 +010062 * Coloured LED functionality
63 ************************************************************************
64 * May be supplied by boards if desired
65 */
Jeroen Hofsteedca7d082014-10-08 22:57:21 +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) {}
Peter Pearse2c261ca2007-09-04 16:18:38 +010075
Heiko Schocher417e0732011-07-15 19:36:36 +000076/*
77 ************************************************************************
wdenkc6097192002-11-03 00:24:07 +000078 * Init Utilities *
79 ************************************************************************
80 * Some of this code should be moved into the core functions,
81 * or dropped completely,
82 * but let's get it working (again) first...
83 */
84
Jean-Christophe PLAGNIOL-VILLARDb8023102009-02-22 15:49:28 +010085#if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
86#define CONFIG_BAUDRATE 115200
87#endif
Simon Glass706c2342011-10-13 14:43:06 +000088
Heiko Schocher417e0732011-07-15 19:36:36 +000089static int init_baudrate(void)
wdenkc6097192002-11-03 00:24:07 +000090{
Simon Glass706c2342011-10-13 14:43:06 +000091 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
92 return 0;
wdenkc6097192002-11-03 00:24:07 +000093}
94
Heiko Schocher417e0732011-07-15 19:36:36 +000095static int display_banner(void)
wdenkc6097192002-11-03 00:24:07 +000096{
Heiko Schocher417e0732011-07-15 19:36:36 +000097 printf("\n\n%s\n\n", version_string);
98 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Albert ARIBAUD6e294722014-02-22 17:53:43 +010099 (ulong)&_start,
100 (ulong)&__bss_start, (ulong)&__bss_end);
wdenkc6097192002-11-03 00:24:07 +0000101#ifdef CONFIG_MODEM_SUPPORT
Heiko Schocher417e0732011-07-15 19:36:36 +0000102 debug("Modem Support enabled\n");
wdenkc6097192002-11-03 00:24:07 +0000103#endif
104#ifdef CONFIG_USE_IRQ
Heiko Schocher417e0732011-07-15 19:36:36 +0000105 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
106 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
wdenkc6097192002-11-03 00:24:07 +0000107#endif
wdenk808532a2003-10-10 10:05:42 +0000108
wdenkc6097192002-11-03 00:24:07 +0000109 return (0);
110}
111
112/*
113 * WARNING: this code looks "cleaner" than the PowerPC version, but
114 * has the disadvantage that you either get nothing, or everything.
115 * On PowerPC, you might see "DRAM: " before the system hangs - which
116 * gives a simple yet clear indication which part of the
117 * initialization if failing.
118 */
Heiko Schocher417e0732011-07-15 19:36:36 +0000119static int display_dram_config(void)
wdenkc6097192002-11-03 00:24:07 +0000120{
wdenkc6097192002-11-03 00:24:07 +0000121 int i;
122
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100123#ifdef DEBUG
Heiko Schocher417e0732011-07-15 19:36:36 +0000124 puts("RAM Configuration:\n");
wdenkc6097192002-11-03 00:24:07 +0000125
Heiko Schocher417e0732011-07-15 19:36:36 +0000126 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
127 printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
128 print_size(gd->bd->bi_dram[i].size, "\n");
wdenkc6097192002-11-03 00:24:07 +0000129 }
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100130#else
131 ulong size = 0;
132
Heiko Schocher417e0732011-07-15 19:36:36 +0000133 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100134 size += gd->bd->bi_dram[i].size;
Heiko Schocher417e0732011-07-15 19:36:36 +0000135
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100136 puts("DRAM: ");
137 print_size(size, "\n");
138#endif
wdenkc6097192002-11-03 00:24:07 +0000139
140 return (0);
141}
wdenkc6097192002-11-03 00:24:07 +0000142
Heiko Schocher479a4cf2013-01-29 08:53:15 +0100143#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Heiko Schocher417e0732011-07-15 19:36:36 +0000144static int init_func_i2c(void)
Hebbarb7d11642007-12-18 16:00:54 -0800145{
Heiko Schocher417e0732011-07-15 19:36:36 +0000146 puts("I2C: ");
Heiko Schochere0e55bc2012-01-16 21:12:24 +0000147#ifdef CONFIG_SYS_I2C
148 i2c_init_all();
149#else
Heiko Schocher417e0732011-07-15 19:36:36 +0000150 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
Heiko Schochere0e55bc2012-01-16 21:12:24 +0000151#endif
Heiko Schocher417e0732011-07-15 19:36:36 +0000152 puts("ready\n");
Hebbarb7d11642007-12-18 16:00:54 -0800153 return (0);
154}
155#endif
156
Jean-Christophe PLAGNIOL-VILLARD86588ea2009-01-31 09:04:58 +0100157#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
158#include <pci.h>
159static int arm_pci_init(void)
160{
161 pci_init();
162 return 0;
163}
164#endif /* CONFIG_CMD_PCI || CONFIG_PCI */
165
wdenkc6097192002-11-03 00:24:07 +0000166/*
wdenkc0aa5c52003-12-06 19:49:23 +0000167 * Breathe some life into the board...
wdenkc6097192002-11-03 00:24:07 +0000168 *
wdenkb6b2f0e2003-09-17 22:48:07 +0000169 * Initialize a serial port as console, and carry out some hardware
wdenkc6097192002-11-03 00:24:07 +0000170 * tests.
171 *
172 * The first part of initialization is running from Flash memory;
173 * its main purpose is to initialize the RAM so that we
174 * can relocate the monitor code to RAM.
175 */
176
177/*
178 * All attempts to come up with a "common" initialization sequence
179 * that works for all boards and architectures failed: some of the
180 * requirements are just _too_ different. To get rid of the resulting
wdenk927034e2004-02-08 19:38:38 +0000181 * mess of board dependent #ifdef'ed code we now make the whole
wdenkc6097192002-11-03 00:24:07 +0000182 * initialization sequence configurable to the user.
183 *
184 * The requirements for any new initalization function is simple: it
185 * receives a pointer to the "global data" structure as it's only
186 * argument, and returns an integer return code, where 0 means
187 * "continue" and != 0 means "fatal error, hang the system".
188 */
189typedef int (init_fnc_t) (void);
190
Jeroen Hofsteedca7d082014-10-08 22:57:21 +0200191__weak void dram_init_banksize(void)
Heiko Schocheraeb29912010-09-17 13:10:39 +0200192{
193 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
194 gd->bd->bi_dram[0].size = gd->ram_size;
195}
Heiko Schocheraeb29912010-09-17 13:10:39 +0200196
Jeroen Hofsteedca7d082014-10-08 22:57:21 +0200197__weak int arch_cpu_init(void)
Fabio Estevam3f703e82012-03-01 04:02:38 +0000198{
199 return 0;
200}
Fabio Estevam3f703e82012-03-01 04:02:38 +0000201
Jeroen Hofsteedca7d082014-10-08 22:57:21 +0200202__weak int power_init_board(void)
Łukasz Majewski3636a342012-11-13 03:21:56 +0000203{
204 return 0;
205}
Łukasz Majewski3636a342012-11-13 03:21:56 +0000206
Simon Glass25d02272012-11-30 13:01:22 +0000207 /* Record the board_init_f() bootstage (after arch_cpu_init()) */
208static int mark_bootstage(void)
209{
210 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
211
212 return 0;
213}
214
Heiko Schocheraeb29912010-09-17 13:10:39 +0200215init_fnc_t *init_sequence[] = {
Heiko Schocheraeb29912010-09-17 13:10:39 +0200216 arch_cpu_init, /* basic arch cpu dependent setup */
Simon Glass25d02272012-11-30 13:01:22 +0000217 mark_bootstage,
Simon Glass3433dd72011-10-24 19:15:33 +0000218#ifdef CONFIG_OF_CONTROL
219 fdtdec_check_fdt,
220#endif
Simon Glass7d5c0362012-11-30 13:01:16 +0000221#if defined(CONFIG_BOARD_EARLY_INIT_F)
222 board_early_init_f,
223#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200224 timer_init, /* initialize timer */
Markus Hubig3c92e0e2012-08-16 08:22:08 +0000225#ifdef CONFIG_BOARD_POSTCLK_INIT
226 board_postclk_init,
227#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200228#ifdef CONFIG_FSL_ESDHC
229 get_clocks,
230#endif
231 env_init, /* initialize environment */
232 init_baudrate, /* initialze baudrate settings */
233 serial_init, /* serial communications setup */
234 console_init_f, /* stage 1 init of console */
235 display_banner, /* say that we are here */
Heiko Schocheraeb29912010-09-17 13:10:39 +0200236 print_cpuinfo, /* display cpu info (and speed) */
Heiko Schocheraeb29912010-09-17 13:10:39 +0200237#if defined(CONFIG_DISPLAY_BOARDINFO)
238 checkboard, /* display board info */
239#endif
Heiko Schocher479a4cf2013-01-29 08:53:15 +0100240#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Heiko Schocheraeb29912010-09-17 13:10:39 +0200241 init_func_i2c,
242#endif
243 dram_init, /* configure available RAM banks */
Heiko Schocheraeb29912010-09-17 13:10:39 +0200244 NULL,
245};
246
Heiko Schocher417e0732011-07-15 19:36:36 +0000247void board_init_f(ulong bootflag)
Heiko Schocheraeb29912010-09-17 13:10:39 +0200248{
249 bd_t *bd;
250 init_fnc_t **init_fnc_ptr;
251 gd_t *id;
252 ulong addr, addr_sp;
Simon Glass706c2342011-10-13 14:43:06 +0000253#ifdef CONFIG_PRAM
254 ulong reg;
255#endif
Simon Glassd4678232012-09-27 15:41:55 +0000256 void *new_fdt = NULL;
257 size_t fdt_size = 0;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200258
Heiko Schocher417e0732011-07-15 19:36:36 +0000259 memset((void *)gd, 0, sizeof(gd_t));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200260
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100261 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Simon Glass3433dd72011-10-24 19:15:33 +0000262#ifdef CONFIG_OF_EMBED
263 /* Get a pointer to the FDT */
Masahiro Yamada7c3f1302014-04-25 21:51:09 +0900264 gd->fdt_blob = __dtb_dt_begin;
Simon Glass3433dd72011-10-24 19:15:33 +0000265#elif defined CONFIG_OF_SEPARATE
266 /* FDT is at end of image */
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100267 gd->fdt_blob = &_end;
Simon Glass3433dd72011-10-24 19:15:33 +0000268#endif
Simon Glassdc6fa642011-10-24 19:15:34 +0000269 /* Allow the early environment to override the fdt address */
270 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
271 (uintptr_t)gd->fdt_blob);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200272
273 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
274 if ((*init_fnc_ptr)() != 0) {
275 hang ();
276 }
277 }
278
Simon Glassd3842c42012-03-28 10:08:25 +0000279#ifdef CONFIG_OF_CONTROL
280 /* For now, put this check after the console is ready */
281 if (fdtdec_prepare_fdt()) {
282 panic("** CONFIG_OF_CONTROL defined but no FDT - please see "
283 "doc/README.fdt-control");
284 }
285#endif
286
Heiko Schocher417e0732011-07-15 19:36:36 +0000287 debug("monitor len: %08lX\n", gd->mon_len);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200288 /*
289 * Ram is setup, size stored in gd !!
290 */
Heiko Schocher417e0732011-07-15 19:36:36 +0000291 debug("ramsize: %08lX\n", gd->ram_size);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200292#if defined(CONFIG_SYS_MEM_TOP_HIDE)
293 /*
294 * Subtract specified amount of memory to hide so that it won't
295 * get "touched" at all by U-Boot. By fixing up gd->ram_size
296 * the Linux kernel should now get passed the now "corrected"
297 * memory size and won't touch it either. This should work
298 * for arch/ppc and arch/powerpc. Only Linux board ports in
299 * arch/powerpc with bootwrapper support, that recalculate the
300 * memory size from the SDRAM controller setup will have to
301 * get fixed.
302 */
303 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
304#endif
305
York Sun863e8d82014-02-11 11:57:26 -0800306 addr = CONFIG_SYS_SDRAM_BASE + get_effective_memsize();
Heiko Schocheraeb29912010-09-17 13:10:39 +0200307
308#ifdef CONFIG_LOGBUFFER
309#ifndef CONFIG_ALT_LB_ADDR
310 /* reserve kernel log buffer */
311 addr -= (LOGBUFF_RESERVE);
Heiko Schocher417e0732011-07-15 19:36:36 +0000312 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
313 addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200314#endif
315#endif
316
317#ifdef CONFIG_PRAM
318 /*
319 * reserve protected RAM
320 */
Simon Glass706c2342011-10-13 14:43:06 +0000321 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200322 addr -= (reg << 10); /* size is in kB */
Heiko Schocher417e0732011-07-15 19:36:36 +0000323 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200324#endif /* CONFIG_PRAM */
325
Aneesh Vecee9c82011-06-16 23:30:48 +0000326#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Heiko Schocheraeb29912010-09-17 13:10:39 +0200327 /* reserve TLB table */
David Feng85fd5f12013-12-14 11:47:35 +0800328 gd->arch.tlb_size = PGTABLE_SIZE;
Simon Glass6b4ee152012-12-13 20:48:39 +0000329 addr -= gd->arch.tlb_size;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200330
331 /* round down to next 64 kB limit */
332 addr &= ~(0x10000 - 1);
333
Simon Glass6b4ee152012-12-13 20:48:39 +0000334 gd->arch.tlb_addr = addr;
335 debug("TLB table from %08lx to %08lx\n", addr, addr + gd->arch.tlb_size);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200336#endif
337
338 /* round down to next 4 kB limit */
339 addr &= ~(4096 - 1);
Heiko Schocher417e0732011-07-15 19:36:36 +0000340 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200341
Heiko Schocheraeb29912010-09-17 13:10:39 +0200342#ifdef CONFIG_LCD
Minkyu Kang50777c42011-04-24 22:22:34 +0000343#ifdef CONFIG_FB_ADDR
344 gd->fb_base = CONFIG_FB_ADDR;
345#else
Heiko Schocheraeb29912010-09-17 13:10:39 +0200346 /* reserve memory for LCD display (always full pages) */
Heiko Schocher417e0732011-07-15 19:36:36 +0000347 addr = lcd_setmem(addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200348 gd->fb_base = addr;
Minkyu Kang50777c42011-04-24 22:22:34 +0000349#endif /* CONFIG_FB_ADDR */
Heiko Schocheraeb29912010-09-17 13:10:39 +0200350#endif /* CONFIG_LCD */
351
352 /*
353 * reserve memory for U-Boot code, data & bss
354 * round down to next 4 kB limit
355 */
356 addr -= gd->mon_len;
357 addr &= ~(4096 - 1);
358
Heiko Schocher417e0732011-07-15 19:36:36 +0000359 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200360
Aneesh V552a3192011-07-13 05:11:07 +0000361#ifndef CONFIG_SPL_BUILD
Heiko Schocheraeb29912010-09-17 13:10:39 +0200362 /*
363 * reserve memory for malloc() arena
364 */
365 addr_sp = addr - TOTAL_MALLOC_LEN;
Heiko Schocher417e0732011-07-15 19:36:36 +0000366 debug("Reserving %dk for malloc() at: %08lx\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200367 TOTAL_MALLOC_LEN >> 10, addr_sp);
368 /*
369 * (permanently) allocate a Board Info struct
370 * and a permanent copy of the "global" data
371 */
372 addr_sp -= sizeof (bd_t);
373 bd = (bd_t *) addr_sp;
374 gd->bd = bd;
Heiko Schocher417e0732011-07-15 19:36:36 +0000375 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200376 sizeof (bd_t), addr_sp);
Igor Grinbergfa94c282011-08-16 23:48:23 +0000377
378#ifdef CONFIG_MACH_TYPE
379 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
380#endif
381
Heiko Schocheraeb29912010-09-17 13:10:39 +0200382 addr_sp -= sizeof (gd_t);
383 id = (gd_t *) addr_sp;
Heiko Schocher417e0732011-07-15 19:36:36 +0000384 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200385 sizeof (gd_t), addr_sp);
386
Simon Glassd4678232012-09-27 15:41:55 +0000387#if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL)
388 /*
389 * If the device tree is sitting immediate above our image then we
390 * must relocate it. If it is embedded in the data section, then it
391 * will be relocated with other data.
392 */
393 if (gd->fdt_blob) {
394 fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
395
396 addr_sp -= fdt_size;
397 new_fdt = (void *)addr_sp;
398 debug("Reserving %zu Bytes for FDT at: %08lx\n",
399 fdt_size, addr_sp);
400 }
401#endif
402
David Feng85fd5f12013-12-14 11:47:35 +0800403#ifndef CONFIG_ARM64
Heiko Schocheraeb29912010-09-17 13:10:39 +0200404 /* setup stackpointer for exeptions */
405 gd->irq_sp = addr_sp;
406#ifdef CONFIG_USE_IRQ
407 addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
Heiko Schocher417e0732011-07-15 19:36:36 +0000408 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200409 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
410#endif
411 /* leave 3 words for abort-stack */
Eric Coopera346ba92011-04-14 12:32:37 +0000412 addr_sp -= 12;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200413
414 /* 8-byte alignment for ABI compliance */
415 addr_sp &= ~0x07;
David Feng85fd5f12013-12-14 11:47:35 +0800416#else /* CONFIG_ARM64 */
417 /* 16-byte alignment for ABI compliance */
418 addr_sp &= ~0x0f;
419#endif /* CONFIG_ARM64 */
Heiko Schocheraeb29912010-09-17 13:10:39 +0200420#else
421 addr_sp += 128; /* leave 32 words for abort-stack */
422 gd->irq_sp = addr_sp;
423#endif
424
Heiko Schocher417e0732011-07-15 19:36:36 +0000425 debug("New Stack Pointer is: %08lx\n", addr_sp);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200426
427#ifdef CONFIG_POST
428 post_bootmode_init();
Heiko Schocher417e0732011-07-15 19:36:36 +0000429 post_run(NULL, POST_ROM | post_bootmode_get(0));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200430#endif
431
Heiko Schocheraeb29912010-09-17 13:10:39 +0200432 /* Ram ist board specific, so move it to board code ... */
433 dram_init_banksize();
434 display_dram_config(); /* and display it */
435
436 gd->relocaddr = addr;
437 gd->start_addr_sp = addr_sp;
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100438 gd->reloc_off = addr - (ulong)&_start;
Heiko Schocher417e0732011-07-15 19:36:36 +0000439 debug("relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassd4678232012-09-27 15:41:55 +0000440 if (new_fdt) {
441 memcpy(new_fdt, gd->fdt_blob, fdt_size);
442 gd->fdt_blob = new_fdt;
443 }
Heiko Schocher417e0732011-07-15 19:36:36 +0000444 memcpy(id, (void *)gd, sizeof(gd_t));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200445}
446
447#if !defined(CONFIG_SYS_NO_FLASH)
448static char *failed = "*** failed ***\n";
449#endif
450
Heiko Schocher417e0732011-07-15 19:36:36 +0000451/*
Simon Glass6b8d5fd2012-11-30 13:01:17 +0000452 * Tell if it's OK to load the environment early in boot.
453 *
454 * If CONFIG_OF_CONFIG is defined, we'll check with the FDT to see
455 * if this is OK (defaulting to saying it's not OK).
456 *
457 * NOTE: Loading the environment early can be a bad idea if security is
458 * important, since no verification is done on the environment.
459 *
460 * @return 0 if environment should not be loaded, !=0 if it is ok to load
461 */
462static int should_load_env(void)
463{
464#ifdef CONFIG_OF_CONTROL
Lucas Stach97ec7392013-01-22 00:15:49 +0000465 return fdtdec_get_config_int(gd->fdt_blob, "load-environment", 1);
Simon Glass6b8d5fd2012-11-30 13:01:17 +0000466#elif defined CONFIG_DELAY_ENVIRONMENT
467 return 0;
468#else
469 return 1;
470#endif
471}
472
Simon Glasse8822012012-11-30 13:01:19 +0000473#if defined(CONFIG_DISPLAY_BOARDINFO_LATE) && defined(CONFIG_OF_CONTROL)
474static void display_fdt_model(const void *blob)
475{
476 const char *model;
477
478 model = (char *)fdt_getprop(blob, 0, "model", NULL);
479 printf("Model: %s\n", model ? model : "<unknown>");
480}
481#endif
482
Simon Glass6b8d5fd2012-11-30 13:01:17 +0000483/************************************************************************
Heiko Schocheraeb29912010-09-17 13:10:39 +0200484 *
485 * This is the next part if the initialization sequence: we are now
486 * running from RAM and have a "normal" C environment, i. e. global
487 * data can be written, BSS has been cleared, the stack size in not
488 * that critical any more, etc.
489 *
490 ************************************************************************
491 */
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200492
Heiko Schocher417e0732011-07-15 19:36:36 +0000493void board_init_r(gd_t *id, ulong dest_addr)
Heiko Schocheraeb29912010-09-17 13:10:39 +0200494{
Heiko Schocheraeb29912010-09-17 13:10:39 +0200495 ulong malloc_start;
496#if !defined(CONFIG_SYS_NO_FLASH)
497 ulong flash_size;
498#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200499
Heiko Schocheraeb29912010-09-17 13:10:39 +0200500 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
Simon Glassef980a72012-02-13 13:51:21 +0000501 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200502
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100503 monitor_flash_len = (ulong)&__rel_dyn_end - (ulong)_start;
Aneesh Vfffbb972011-08-16 04:33:05 +0000504
505 /* Enable caches */
506 enable_caches();
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000507
Heiko Schocher417e0732011-07-15 19:36:36 +0000508 debug("monitor flash len: %08lX\n", monitor_flash_len);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200509 board_init(); /* Setup chipselects */
Hadli, Manjunath0dfccbe2012-02-06 00:30:44 +0000510 /*
511 * TODO: printing of the clock inforamtion of the board is now
512 * implemented as part of bdinfo command. Currently only support for
513 * davinci SOC's is added. Remove this check once all the board
514 * implement this.
515 */
516#ifdef CONFIG_CLOCKS
517 set_cpu_clk_info(); /* Setup clock information */
518#endif
stefano babic5ab4f032007-08-30 22:57:04 +0200519 serial_initialize();
stefano babic5ab4f032007-08-30 22:57:04 +0200520
Heiko Schocher417e0732011-07-15 19:36:36 +0000521 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200522
Heiko Schocheraeb29912010-09-17 13:10:39 +0200523#ifdef CONFIG_LOGBUFFER
Heiko Schocher417e0732011-07-15 19:36:36 +0000524 logbuff_init_ptrs();
Heiko Schocheraeb29912010-09-17 13:10:39 +0200525#endif
526#ifdef CONFIG_POST
Heiko Schocher417e0732011-07-15 19:36:36 +0000527 post_output_backlog();
Heiko Schocheraeb29912010-09-17 13:10:39 +0200528#endif
529
530 /* The Malloc area is immediately below the monitor copy in DRAM */
531 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
532 mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200533
Fabio Estevam4310ecc2012-04-02 11:19:45 +0000534#ifdef CONFIG_ARCH_EARLY_INIT_R
535 arch_early_init_r();
536#endif
Łukasz Majewski3636a342012-11-13 03:21:56 +0000537 power_init_board();
Fabio Estevam4310ecc2012-04-02 11:19:45 +0000538
Heiko Schocheraeb29912010-09-17 13:10:39 +0200539#if !defined(CONFIG_SYS_NO_FLASH)
Heiko Schocher417e0732011-07-15 19:36:36 +0000540 puts("Flash: ");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200541
Heiko Schocher417e0732011-07-15 19:36:36 +0000542 flash_size = flash_init();
543 if (flash_size > 0) {
Heiko Schocheraeb29912010-09-17 13:10:39 +0200544# ifdef CONFIG_SYS_FLASH_CHECKSUM
Heiko Schocher417e0732011-07-15 19:36:36 +0000545 print_size(flash_size, "");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200546 /*
547 * Compute and print flash CRC if flashchecksum is set to 'y'
548 *
549 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
550 */
Joe Hershberger864ec562012-12-11 22:16:22 -0600551 if (getenv_yesno("flashchecksum") == 1) {
Heiko Schocher417e0732011-07-15 19:36:36 +0000552 printf(" CRC: %08X", crc32(0,
553 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
554 flash_size));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200555 }
Heiko Schocher417e0732011-07-15 19:36:36 +0000556 putc('\n');
Heiko Schocheraeb29912010-09-17 13:10:39 +0200557# else /* !CONFIG_SYS_FLASH_CHECKSUM */
Heiko Schocher417e0732011-07-15 19:36:36 +0000558 print_size(flash_size, "\n");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200559# endif /* CONFIG_SYS_FLASH_CHECKSUM */
560 } else {
Heiko Schocher417e0732011-07-15 19:36:36 +0000561 puts(failed);
562 hang();
Heiko Schocheraeb29912010-09-17 13:10:39 +0200563 }
564#endif
565
566#if defined(CONFIG_CMD_NAND)
Heiko Schocher417e0732011-07-15 19:36:36 +0000567 puts("NAND: ");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200568 nand_init(); /* go init the NAND */
569#endif
570
571#if defined(CONFIG_CMD_ONENAND)
572 onenand_init();
573#endif
574
Steve Sakomana93ec572010-10-11 05:51:39 -0700575#ifdef CONFIG_GENERIC_MMC
Taylor Huttd84d60f2012-11-30 13:01:23 +0000576 puts("MMC: ");
577 mmc_initialize(gd->bd);
Steve Sakomana93ec572010-10-11 05:51:39 -0700578#endif
579
Ian Campbell19349962014-03-07 01:20:56 +0000580#ifdef CONFIG_CMD_SCSI
581 puts("SCSI: ");
582 scsi_init();
583#endif
584
Heiko Schocheraeb29912010-09-17 13:10:39 +0200585#ifdef CONFIG_HAS_DATAFLASH
586 AT91F_DataflashInit();
587 dataflash_print_info();
588#endif
589
590 /* initialize environment */
Simon Glass6b8d5fd2012-11-30 13:01:17 +0000591 if (should_load_env())
592 env_relocate();
593 else
594 set_default_env(NULL);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200595
Michael Schwingen24599de2011-05-23 00:00:13 +0200596#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
597 arm_pci_init();
598#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200599
Heiko Schocher417e0732011-07-15 19:36:36 +0000600 stdio_init(); /* get the devices list going. */
wdenk56958612003-06-22 17:18:28 +0000601
Heiko Schocher417e0732011-07-15 19:36:36 +0000602 jumptable_init();
wdenk56958612003-06-22 17:18:28 +0000603
Rafal Jaworowski9d9689f2009-01-23 13:27:16 +0100604#if defined(CONFIG_API)
605 /* Initialize API */
Heiko Schocher417e0732011-07-15 19:36:36 +0000606 api_init();
Rafal Jaworowski9d9689f2009-01-23 13:27:16 +0100607#endif
608
Heiko Schocher417e0732011-07-15 19:36:36 +0000609 console_init_r(); /* fully init console as a device */
wdenk56958612003-06-22 17:18:28 +0000610
Simon Glasse8822012012-11-30 13:01:19 +0000611#ifdef CONFIG_DISPLAY_BOARDINFO_LATE
612# ifdef CONFIG_OF_CONTROL
613 /* Put this here so it appears on the LCD, now it is ready */
614 display_fdt_model(gd->fdt_blob);
615# else
616 checkboard();
617# endif
618#endif
619
Prafulla Wadaskar98196702009-05-31 14:53:20 +0200620#if defined(CONFIG_ARCH_MISC_INIT)
621 /* miscellaneous arch dependent initialisations */
Heiko Schocher417e0732011-07-15 19:36:36 +0000622 arch_misc_init();
Prafulla Wadaskar98196702009-05-31 14:53:20 +0200623#endif
wdenkc6097192002-11-03 00:24:07 +0000624#if defined(CONFIG_MISC_INIT_R)
625 /* miscellaneous platform dependent initialisations */
Heiko Schocher417e0732011-07-15 19:36:36 +0000626 misc_init_r();
wdenkc6097192002-11-03 00:24:07 +0000627#endif
628
Albert ARIBAUD1559ee72013-11-08 22:37:33 +0100629 /* set up exceptions */
630 interrupt_init();
wdenkc6097192002-11-03 00:24:07 +0000631 /* enable exceptions */
Heiko Schocher417e0732011-07-15 19:36:36 +0000632 enable_interrupts();
wdenkc6097192002-11-03 00:24:07 +0000633
wdenkb02744a2003-04-05 00:53:31 +0000634 /* Initialize from environment */
Simon Glass706c2342011-10-13 14:43:06 +0000635 load_addr = getenv_ulong("loadaddr", 16, load_addr);
wdenkb02744a2003-04-05 00:53:31 +0000636
Helmut Raigerd5a184b2011-10-20 04:19:47 +0000637#ifdef CONFIG_BOARD_LATE_INIT
Heiko Schocher417e0732011-07-15 19:36:36 +0000638 board_late_init();
wdenkc6097192002-11-03 00:24:07 +0000639#endif
Ilya Yanok50ff6df2009-06-08 04:12:50 +0400640
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +0200641#ifdef CONFIG_BITBANGMII
642 bb_miiphy_init();
643#endif
Jon Loeliger12077972007-07-09 18:05:38 -0500644#if defined(CONFIG_CMD_NET)
Heiko Schocher417e0732011-07-15 19:36:36 +0000645 puts("Net: ");
wdenk26c58432005-01-09 17:12:27 +0000646 eth_initialize(gd->bd);
Jean-Christophe PLAGNIOL-VILLARD6beda0c2007-12-11 10:53:12 +0100647#if defined(CONFIG_RESET_PHY_R)
Heiko Schocher417e0732011-07-15 19:36:36 +0000648 debug("Reset Ethernet PHY\n");
Jean-Christophe PLAGNIOL-VILLARD6beda0c2007-12-11 10:53:12 +0100649 reset_phy();
650#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200651#endif
652
653#ifdef CONFIG_POST
Heiko Schocher417e0732011-07-15 19:36:36 +0000654 post_run(NULL, POST_RAM | post_bootmode_get(0));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200655#endif
656
657#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
658 /*
659 * Export available size of memory for Linux,
660 * taking into account the protected RAM at top of memory
661 */
662 {
Simon Glass706c2342011-10-13 14:43:06 +0000663 ulong pram = 0;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200664 uchar memsz[32];
Heiko Schocheraeb29912010-09-17 13:10:39 +0200665
Simon Glass706c2342011-10-13 14:43:06 +0000666#ifdef CONFIG_PRAM
667 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200668#endif
669#ifdef CONFIG_LOGBUFFER
670#ifndef CONFIG_ALT_LB_ADDR
671 /* Also take the logbuffer into account (pram is in kB) */
Heiko Schocher417e0732011-07-15 19:36:36 +0000672 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
wdenk26c58432005-01-09 17:12:27 +0000673#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200674#endif
Heiko Schocherb852aaf2011-06-02 22:11:37 +0000675 sprintf((char *)memsz, "%ldk", (gd->ram_size / 1024) - pram);
Heiko Schocher417e0732011-07-15 19:36:36 +0000676 setenv("mem", (char *)memsz);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200677 }
678#endif
679
wdenkc6097192002-11-03 00:24:07 +0000680 /* main_loop() can return to retry autoboot, if so just run it again. */
681 for (;;) {
Heiko Schocher417e0732011-07-15 19:36:36 +0000682 main_loop();
wdenkc6097192002-11-03 00:24:07 +0000683 }
684
685 /* NOTREACHED - no way out of command loop except booting */
686}