blob: ba62394a9d49d72638bc0896f1d81c2631bcb8d6 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
Wolfgang Denk57cac1f2006-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 Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +000010 */
11
Wolfgang Denk57cac1f2006-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 Glass06fd8532012-11-30 13:01:17 +000027#include <environment.h>
wdenk3595ac42003-06-22 17:18:28 +000028#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-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 Ziswilerb71190f2008-05-01 09:05:26 +020032#include <serial.h>
Scott Woodd6ac2ed2008-05-22 10:49:46 -050033#include <nand.h>
34#include <onenand_uboot.h>
Ilya Yanok379e9fc2009-06-08 04:12:50 +040035#include <mmc.h>
Simon Glassf5437ad2011-10-24 19:15:33 +000036#include <libfdt.h>
37#include <fdtdec.h>
Valentin Longchampea3681a2011-09-02 04:59:03 +000038#include <post.h>
39#include <logbuff.h>
Simon Glasse103b7a2013-03-05 14:39:38 +000040#include <asm/sections.h>
wdenkc6097192002-11-03 00:24:07 +000041
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020042#ifdef CONFIG_BITBANGMII
43#include <miiphy.h>
44#endif
45
Markus Klotzbücherb2b43462006-02-10 11:25:41 +010046DECLARE_GLOBAL_DATA_PTR;
47
wdenk3b57fe02003-05-30 12:48:29 +000048ulong monitor_flash_len;
49
wdenk2abbe072003-06-16 23:50:08 +000050#ifdef CONFIG_HAS_DATAFLASH
51extern int AT91F_DataflashInit(void);
52extern void dataflash_print_info(void);
53#endif
54
Hebbarf7ad79b2007-12-18 16:00:54 -080055#if defined(CONFIG_HARD_I2C) || \
Heiko Schocher3f4978c2012-01-16 21:12:24 +000056 defined(CONFIG_SYS_I2C)
Hebbarf7ad79b2007-12-18 16:00:54 -080057#include <i2c.h>
58#endif
59
wdenkc6097192002-11-03 00:24:07 +000060/************************************************************************
Peter Pearse9f5c3d32007-09-04 16:18:38 +010061 * Coloured LED functionality
62 ************************************************************************
63 * May be supplied by boards if desired
64 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +000065inline void __coloured_LED_init(void) {}
66void coloured_LED_init(void)
67 __attribute__((weak, alias("__coloured_LED_init")));
Jason Kridner2d3be7c2011-09-04 14:40:16 -040068inline void __red_led_on(void) {}
69void red_led_on(void) __attribute__((weak, alias("__red_led_on")));
70inline void __red_led_off(void) {}
71void red_led_off(void) __attribute__((weak, alias("__red_led_off")));
72inline void __green_led_on(void) {}
73void green_led_on(void) __attribute__((weak, alias("__green_led_on")));
74inline void __green_led_off(void) {}
75void green_led_off(void) __attribute__((weak, alias("__green_led_off")));
76inline void __yellow_led_on(void) {}
77void yellow_led_on(void) __attribute__((weak, alias("__yellow_led_on")));
78inline void __yellow_led_off(void) {}
79void yellow_led_off(void) __attribute__((weak, alias("__yellow_led_off")));
80inline void __blue_led_on(void) {}
81void blue_led_on(void) __attribute__((weak, alias("__blue_led_on")));
82inline void __blue_led_off(void) {}
83void blue_led_off(void) __attribute__((weak, alias("__blue_led_off")));
Peter Pearse9f5c3d32007-09-04 16:18:38 +010084
Heiko Schocherceb1d6d2011-07-15 19:36:36 +000085/*
86 ************************************************************************
wdenkc6097192002-11-03 00:24:07 +000087 * Init Utilities *
88 ************************************************************************
89 * Some of this code should be moved into the core functions,
90 * or dropped completely,
91 * but let's get it working (again) first...
92 */
93
Jean-Christophe PLAGNIOL-VILLARD4f572892009-02-22 15:49:28 +010094#if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
95#define CONFIG_BAUDRATE 115200
96#endif
Simon Glassdc8bbea2011-10-13 14:43:06 +000097
Heiko Schocherceb1d6d2011-07-15 19:36:36 +000098static int init_baudrate(void)
wdenkc6097192002-11-03 00:24:07 +000099{
Simon Glassdc8bbea2011-10-13 14:43:06 +0000100 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
101 return 0;
wdenkc6097192002-11-03 00:24:07 +0000102}
103
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000104static int display_banner(void)
wdenkc6097192002-11-03 00:24:07 +0000105{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000106 printf("\n\n%s\n\n", version_string);
107 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200108 _TEXT_BASE,
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000109 _bss_start_ofs + _TEXT_BASE, _bss_end_ofs + _TEXT_BASE);
wdenkc6097192002-11-03 00:24:07 +0000110#ifdef CONFIG_MODEM_SUPPORT
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000111 debug("Modem Support enabled\n");
wdenkc6097192002-11-03 00:24:07 +0000112#endif
113#ifdef CONFIG_USE_IRQ
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000114 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
115 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
wdenkc6097192002-11-03 00:24:07 +0000116#endif
wdenkf72da342003-10-10 10:05:42 +0000117
wdenkc6097192002-11-03 00:24:07 +0000118 return (0);
119}
120
121/*
122 * WARNING: this code looks "cleaner" than the PowerPC version, but
123 * has the disadvantage that you either get nothing, or everything.
124 * On PowerPC, you might see "DRAM: " before the system hangs - which
125 * gives a simple yet clear indication which part of the
126 * initialization if failing.
127 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000128static int display_dram_config(void)
wdenkc6097192002-11-03 00:24:07 +0000129{
wdenkc6097192002-11-03 00:24:07 +0000130 int i;
131
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100132#ifdef DEBUG
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000133 puts("RAM Configuration:\n");
wdenkc6097192002-11-03 00:24:07 +0000134
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000135 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
136 printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
137 print_size(gd->bd->bi_dram[i].size, "\n");
wdenkc6097192002-11-03 00:24:07 +0000138 }
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100139#else
140 ulong size = 0;
141
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000142 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100143 size += gd->bd->bi_dram[i].size;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000144
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100145 puts("DRAM: ");
146 print_size(size, "\n");
147#endif
wdenkc6097192002-11-03 00:24:07 +0000148
149 return (0);
150}
151
Heiko Schocherea818db2013-01-29 08:53:15 +0100152#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000153static int init_func_i2c(void)
Hebbarf7ad79b2007-12-18 16:00:54 -0800154{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000155 puts("I2C: ");
Heiko Schocher3f4978c2012-01-16 21:12:24 +0000156#ifdef CONFIG_SYS_I2C
157 i2c_init_all();
158#else
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000159 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
Heiko Schocher3f4978c2012-01-16 21:12:24 +0000160#endif
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000161 puts("ready\n");
Hebbarf7ad79b2007-12-18 16:00:54 -0800162 return (0);
163}
164#endif
165
Jean-Christophe PLAGNIOL-VILLARDf90c8022009-01-31 09:04:58 +0100166#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
167#include <pci.h>
168static int arm_pci_init(void)
169{
170 pci_init();
171 return 0;
172}
173#endif /* CONFIG_CMD_PCI || CONFIG_PCI */
174
wdenkc6097192002-11-03 00:24:07 +0000175/*
wdenka8c7c702003-12-06 19:49:23 +0000176 * Breathe some life into the board...
wdenkc6097192002-11-03 00:24:07 +0000177 *
wdenkb0639ca2003-09-17 22:48:07 +0000178 * Initialize a serial port as console, and carry out some hardware
wdenkc6097192002-11-03 00:24:07 +0000179 * tests.
180 *
181 * The first part of initialization is running from Flash memory;
182 * its main purpose is to initialize the RAM so that we
183 * can relocate the monitor code to RAM.
184 */
185
186/*
187 * All attempts to come up with a "common" initialization sequence
188 * that works for all boards and architectures failed: some of the
189 * requirements are just _too_ different. To get rid of the resulting
wdenkf6e20fc2004-02-08 19:38:38 +0000190 * mess of board dependent #ifdef'ed code we now make the whole
wdenkc6097192002-11-03 00:24:07 +0000191 * initialization sequence configurable to the user.
192 *
193 * The requirements for any new initalization function is simple: it
194 * receives a pointer to the "global data" structure as it's only
195 * argument, and returns an integer return code, where 0 means
196 * "continue" and != 0 means "fatal error, hang the system".
197 */
198typedef int (init_fnc_t) (void);
199
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200200void __dram_init_banksize(void)
201{
202 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
203 gd->bd->bi_dram[0].size = gd->ram_size;
204}
205void dram_init_banksize(void)
206 __attribute__((weak, alias("__dram_init_banksize")));
207
Fabio Estevama21c6512012-03-01 04:02:38 +0000208int __arch_cpu_init(void)
209{
210 return 0;
211}
212int arch_cpu_init(void)
213 __attribute__((weak, alias("__arch_cpu_init")));
214
Łukasz Majewski2ffb4be2012-11-13 03:21:56 +0000215int __power_init_board(void)
216{
217 return 0;
218}
219int power_init_board(void)
220 __attribute__((weak, alias("__power_init_board")));
221
Simon Glass2f8d8d62012-11-30 13:01:22 +0000222 /* Record the board_init_f() bootstage (after arch_cpu_init()) */
223static int mark_bootstage(void)
224{
225 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
226
227 return 0;
228}
229
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200230init_fnc_t *init_sequence[] = {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200231 arch_cpu_init, /* basic arch cpu dependent setup */
Simon Glass2f8d8d62012-11-30 13:01:22 +0000232 mark_bootstage,
Simon Glassf5437ad2011-10-24 19:15:33 +0000233#ifdef CONFIG_OF_CONTROL
234 fdtdec_check_fdt,
235#endif
Simon Glasseae78c32012-11-30 13:01:16 +0000236#if defined(CONFIG_BOARD_EARLY_INIT_F)
237 board_early_init_f,
238#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200239 timer_init, /* initialize timer */
Markus Hubige23e5ee2012-08-16 08:22:08 +0000240#ifdef CONFIG_BOARD_POSTCLK_INIT
241 board_postclk_init,
242#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200243#ifdef CONFIG_FSL_ESDHC
244 get_clocks,
245#endif
246 env_init, /* initialize environment */
247 init_baudrate, /* initialze baudrate settings */
248 serial_init, /* serial communications setup */
249 console_init_f, /* stage 1 init of console */
250 display_banner, /* say that we are here */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200251 print_cpuinfo, /* display cpu info (and speed) */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200252#if defined(CONFIG_DISPLAY_BOARDINFO)
253 checkboard, /* display board info */
254#endif
Heiko Schocherea818db2013-01-29 08:53:15 +0100255#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200256 init_func_i2c,
257#endif
258 dram_init, /* configure available RAM banks */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200259 NULL,
260};
261
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000262void board_init_f(ulong bootflag)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200263{
264 bd_t *bd;
265 init_fnc_t **init_fnc_ptr;
266 gd_t *id;
267 ulong addr, addr_sp;
Simon Glassdc8bbea2011-10-13 14:43:06 +0000268#ifdef CONFIG_PRAM
269 ulong reg;
270#endif
Simon Glass39826f02012-09-27 15:41:55 +0000271 void *new_fdt = NULL;
272 size_t fdt_size = 0;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200273
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000274 memset((void *)gd, 0, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200275
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200276 gd->mon_len = _bss_end_ofs;
Simon Glassf5437ad2011-10-24 19:15:33 +0000277#ifdef CONFIG_OF_EMBED
278 /* Get a pointer to the FDT */
Masahiro Yamada6ab6b2a2014-02-05 11:28:25 +0900279 gd->fdt_blob = __dtb_db_begin;
Simon Glassf5437ad2011-10-24 19:15:33 +0000280#elif defined CONFIG_OF_SEPARATE
281 /* FDT is at end of image */
282 gd->fdt_blob = (void *)(_end_ofs + _TEXT_BASE);
283#endif
Simon Glasseea63e02011-10-24 19:15:34 +0000284 /* Allow the early environment to override the fdt address */
285 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
286 (uintptr_t)gd->fdt_blob);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200287
288 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
289 if ((*init_fnc_ptr)() != 0) {
290 hang ();
291 }
292 }
293
Simon Glass28669032012-03-28 10:08:25 +0000294#ifdef CONFIG_OF_CONTROL
295 /* For now, put this check after the console is ready */
296 if (fdtdec_prepare_fdt()) {
297 panic("** CONFIG_OF_CONTROL defined but no FDT - please see "
298 "doc/README.fdt-control");
299 }
300#endif
301
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000302 debug("monitor len: %08lX\n", gd->mon_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200303 /*
304 * Ram is setup, size stored in gd !!
305 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000306 debug("ramsize: %08lX\n", gd->ram_size);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200307#if defined(CONFIG_SYS_MEM_TOP_HIDE)
308 /*
309 * Subtract specified amount of memory to hide so that it won't
310 * get "touched" at all by U-Boot. By fixing up gd->ram_size
311 * the Linux kernel should now get passed the now "corrected"
312 * memory size and won't touch it either. This should work
313 * for arch/ppc and arch/powerpc. Only Linux board ports in
314 * arch/powerpc with bootwrapper support, that recalculate the
315 * memory size from the SDRAM controller setup will have to
316 * get fixed.
317 */
318 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
319#endif
320
York Sune3866162014-02-11 11:57:26 -0800321 addr = CONFIG_SYS_SDRAM_BASE + get_effective_memsize();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200322
323#ifdef CONFIG_LOGBUFFER
324#ifndef CONFIG_ALT_LB_ADDR
325 /* reserve kernel log buffer */
326 addr -= (LOGBUFF_RESERVE);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000327 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
328 addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200329#endif
330#endif
331
332#ifdef CONFIG_PRAM
333 /*
334 * reserve protected RAM
335 */
Simon Glassdc8bbea2011-10-13 14:43:06 +0000336 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200337 addr -= (reg << 10); /* size is in kB */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000338 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200339#endif /* CONFIG_PRAM */
340
Aneesh Ve47f2db2011-06-16 23:30:48 +0000341#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200342 /* reserve TLB table */
David Feng0ae76532013-12-14 11:47:35 +0800343 gd->arch.tlb_size = PGTABLE_SIZE;
Simon Glass34fd5d22012-12-13 20:48:39 +0000344 addr -= gd->arch.tlb_size;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200345
346 /* round down to next 64 kB limit */
347 addr &= ~(0x10000 - 1);
348
Simon Glass34fd5d22012-12-13 20:48:39 +0000349 gd->arch.tlb_addr = addr;
350 debug("TLB table from %08lx to %08lx\n", addr, addr + gd->arch.tlb_size);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200351#endif
352
353 /* round down to next 4 kB limit */
354 addr &= ~(4096 - 1);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000355 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200356
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200357#ifdef CONFIG_LCD
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000358#ifdef CONFIG_FB_ADDR
359 gd->fb_base = CONFIG_FB_ADDR;
360#else
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200361 /* reserve memory for LCD display (always full pages) */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000362 addr = lcd_setmem(addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200363 gd->fb_base = addr;
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000364#endif /* CONFIG_FB_ADDR */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200365#endif /* CONFIG_LCD */
366
367 /*
368 * reserve memory for U-Boot code, data & bss
369 * round down to next 4 kB limit
370 */
371 addr -= gd->mon_len;
372 addr &= ~(4096 - 1);
373
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000374 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200375
Aneesh V401bb302011-07-13 05:11:07 +0000376#ifndef CONFIG_SPL_BUILD
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200377 /*
378 * reserve memory for malloc() arena
379 */
380 addr_sp = addr - TOTAL_MALLOC_LEN;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000381 debug("Reserving %dk for malloc() at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200382 TOTAL_MALLOC_LEN >> 10, addr_sp);
383 /*
384 * (permanently) allocate a Board Info struct
385 * and a permanent copy of the "global" data
386 */
387 addr_sp -= sizeof (bd_t);
388 bd = (bd_t *) addr_sp;
389 gd->bd = bd;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000390 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200391 sizeof (bd_t), addr_sp);
Igor Grinberg15c2e2c2011-08-16 23:48:23 +0000392
393#ifdef CONFIG_MACH_TYPE
394 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
395#endif
396
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200397 addr_sp -= sizeof (gd_t);
398 id = (gd_t *) addr_sp;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000399 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200400 sizeof (gd_t), addr_sp);
401
Simon Glass39826f02012-09-27 15:41:55 +0000402#if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL)
403 /*
404 * If the device tree is sitting immediate above our image then we
405 * must relocate it. If it is embedded in the data section, then it
406 * will be relocated with other data.
407 */
408 if (gd->fdt_blob) {
409 fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
410
411 addr_sp -= fdt_size;
412 new_fdt = (void *)addr_sp;
413 debug("Reserving %zu Bytes for FDT at: %08lx\n",
414 fdt_size, addr_sp);
415 }
416#endif
417
David Feng0ae76532013-12-14 11:47:35 +0800418#ifndef CONFIG_ARM64
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200419 /* setup stackpointer for exeptions */
420 gd->irq_sp = addr_sp;
421#ifdef CONFIG_USE_IRQ
422 addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000423 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200424 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
425#endif
426 /* leave 3 words for abort-stack */
Eric Cooper6445a302011-04-14 12:32:37 +0000427 addr_sp -= 12;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200428
429 /* 8-byte alignment for ABI compliance */
430 addr_sp &= ~0x07;
David Feng0ae76532013-12-14 11:47:35 +0800431#else /* CONFIG_ARM64 */
432 /* 16-byte alignment for ABI compliance */
433 addr_sp &= ~0x0f;
434#endif /* CONFIG_ARM64 */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200435#else
436 addr_sp += 128; /* leave 32 words for abort-stack */
437 gd->irq_sp = addr_sp;
438#endif
439
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000440 debug("New Stack Pointer is: %08lx\n", addr_sp);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200441
442#ifdef CONFIG_POST
443 post_bootmode_init();
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000444 post_run(NULL, POST_ROM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200445#endif
446
447 gd->bd->bi_baudrate = gd->baudrate;
448 /* Ram ist board specific, so move it to board code ... */
449 dram_init_banksize();
450 display_dram_config(); /* and display it */
451
452 gd->relocaddr = addr;
453 gd->start_addr_sp = addr_sp;
454 gd->reloc_off = addr - _TEXT_BASE;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000455 debug("relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glass39826f02012-09-27 15:41:55 +0000456 if (new_fdt) {
457 memcpy(new_fdt, gd->fdt_blob, fdt_size);
458 gd->fdt_blob = new_fdt;
459 }
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000460 memcpy(id, (void *)gd, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200461}
462
463#if !defined(CONFIG_SYS_NO_FLASH)
464static char *failed = "*** failed ***\n";
465#endif
466
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000467/*
Simon Glass06fd8532012-11-30 13:01:17 +0000468 * Tell if it's OK to load the environment early in boot.
469 *
470 * If CONFIG_OF_CONFIG is defined, we'll check with the FDT to see
471 * if this is OK (defaulting to saying it's not OK).
472 *
473 * NOTE: Loading the environment early can be a bad idea if security is
474 * important, since no verification is done on the environment.
475 *
476 * @return 0 if environment should not be loaded, !=0 if it is ok to load
477 */
478static int should_load_env(void)
479{
480#ifdef CONFIG_OF_CONTROL
Lucas Stach4e5eb452013-01-22 00:15:49 +0000481 return fdtdec_get_config_int(gd->fdt_blob, "load-environment", 1);
Simon Glass06fd8532012-11-30 13:01:17 +0000482#elif defined CONFIG_DELAY_ENVIRONMENT
483 return 0;
484#else
485 return 1;
486#endif
487}
488
Simon Glasse2e3e2b2012-11-30 13:01:19 +0000489#if defined(CONFIG_DISPLAY_BOARDINFO_LATE) && defined(CONFIG_OF_CONTROL)
490static void display_fdt_model(const void *blob)
491{
492 const char *model;
493
494 model = (char *)fdt_getprop(blob, 0, "model", NULL);
495 printf("Model: %s\n", model ? model : "<unknown>");
496}
497#endif
498
Simon Glass06fd8532012-11-30 13:01:17 +0000499/************************************************************************
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200500 *
501 * This is the next part if the initialization sequence: we are now
502 * running from RAM and have a "normal" C environment, i. e. global
503 * data can be written, BSS has been cleared, the stack size in not
504 * that critical any more, etc.
505 *
506 ************************************************************************
507 */
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200508
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000509void board_init_r(gd_t *id, ulong dest_addr)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200510{
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200511 ulong malloc_start;
512#if !defined(CONFIG_SYS_NO_FLASH)
513 ulong flash_size;
514#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200515
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200516 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
Simon Glassf933e842012-02-13 13:51:21 +0000517 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200518
Po-Yu Chuangf326cbb2011-03-01 23:02:04 +0000519 monitor_flash_len = _end_ofs;
Aneesh Vcba4b182011-08-16 04:33:05 +0000520
521 /* Enable caches */
522 enable_caches();
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000523
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000524 debug("monitor flash len: %08lX\n", monitor_flash_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200525 board_init(); /* Setup chipselects */
Hadli, Manjunath8f5d4682012-02-06 00:30:44 +0000526 /*
527 * TODO: printing of the clock inforamtion of the board is now
528 * implemented as part of bdinfo command. Currently only support for
529 * davinci SOC's is added. Remove this check once all the board
530 * implement this.
531 */
532#ifdef CONFIG_CLOCKS
533 set_cpu_clk_info(); /* Setup clock information */
534#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200535 serial_initialize();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200536
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000537 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200538
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200539#ifdef CONFIG_LOGBUFFER
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000540 logbuff_init_ptrs();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200541#endif
542#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000543 post_output_backlog();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200544#endif
545
546 /* The Malloc area is immediately below the monitor copy in DRAM */
547 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
548 mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200549
Fabio Estevamd519b4b2012-04-02 11:19:45 +0000550#ifdef CONFIG_ARCH_EARLY_INIT_R
551 arch_early_init_r();
552#endif
Łukasz Majewski2ffb4be2012-11-13 03:21:56 +0000553 power_init_board();
Fabio Estevamd519b4b2012-04-02 11:19:45 +0000554
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200555#if !defined(CONFIG_SYS_NO_FLASH)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000556 puts("Flash: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200557
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000558 flash_size = flash_init();
559 if (flash_size > 0) {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200560# ifdef CONFIG_SYS_FLASH_CHECKSUM
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000561 print_size(flash_size, "");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200562 /*
563 * Compute and print flash CRC if flashchecksum is set to 'y'
564 *
565 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
566 */
Joe Hershbergerec8a2522012-12-11 22:16:22 -0600567 if (getenv_yesno("flashchecksum") == 1) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000568 printf(" CRC: %08X", crc32(0,
569 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
570 flash_size));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200571 }
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000572 putc('\n');
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200573# else /* !CONFIG_SYS_FLASH_CHECKSUM */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000574 print_size(flash_size, "\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200575# endif /* CONFIG_SYS_FLASH_CHECKSUM */
576 } else {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000577 puts(failed);
578 hang();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200579 }
580#endif
581
582#if defined(CONFIG_CMD_NAND)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000583 puts("NAND: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200584 nand_init(); /* go init the NAND */
585#endif
586
587#if defined(CONFIG_CMD_ONENAND)
588 onenand_init();
589#endif
590
Steve Sakomand470a6f2010-10-11 05:51:39 -0700591#ifdef CONFIG_GENERIC_MMC
Taylor Hutt80e40952012-11-30 13:01:23 +0000592 puts("MMC: ");
593 mmc_initialize(gd->bd);
Steve Sakomand470a6f2010-10-11 05:51:39 -0700594#endif
595
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200596#ifdef CONFIG_HAS_DATAFLASH
597 AT91F_DataflashInit();
598 dataflash_print_info();
599#endif
600
601 /* initialize environment */
Simon Glass06fd8532012-11-30 13:01:17 +0000602 if (should_load_env())
603 env_relocate();
604 else
605 set_default_env(NULL);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200606
Michael Schwingen1ed63c52011-05-23 00:00:13 +0200607#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
608 arm_pci_init();
609#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200610
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000611 stdio_init(); /* get the devices list going. */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200612
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000613 jumptable_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200614
615#if defined(CONFIG_API)
616 /* Initialize API */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000617 api_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200618#endif
619
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000620 console_init_r(); /* fully init console as a device */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200621
Simon Glasse2e3e2b2012-11-30 13:01:19 +0000622#ifdef CONFIG_DISPLAY_BOARDINFO_LATE
623# ifdef CONFIG_OF_CONTROL
624 /* Put this here so it appears on the LCD, now it is ready */
625 display_fdt_model(gd->fdt_blob);
626# else
627 checkboard();
628# endif
629#endif
630
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200631#if defined(CONFIG_ARCH_MISC_INIT)
632 /* miscellaneous arch dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000633 arch_misc_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200634#endif
635#if defined(CONFIG_MISC_INIT_R)
636 /* miscellaneous platform dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000637 misc_init_r();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200638#endif
639
Albert ARIBAUDbd851c72013-11-08 22:37:33 +0100640 /* set up exceptions */
641 interrupt_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200642 /* enable exceptions */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000643 enable_interrupts();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200644
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200645 /* Initialize from environment */
Simon Glassdc8bbea2011-10-13 14:43:06 +0000646 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200647
Helmut Raiger9660e442011-10-20 04:19:47 +0000648#ifdef CONFIG_BOARD_LATE_INIT
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000649 board_late_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200650#endif
651
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200652#ifdef CONFIG_BITBANGMII
653 bb_miiphy_init();
654#endif
655#if defined(CONFIG_CMD_NET)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000656 puts("Net: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200657 eth_initialize(gd->bd);
658#if defined(CONFIG_RESET_PHY_R)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000659 debug("Reset Ethernet PHY\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200660 reset_phy();
661#endif
662#endif
663
664#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000665 post_run(NULL, POST_RAM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200666#endif
667
668#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
669 /*
670 * Export available size of memory for Linux,
671 * taking into account the protected RAM at top of memory
672 */
673 {
Simon Glassdc8bbea2011-10-13 14:43:06 +0000674 ulong pram = 0;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200675 uchar memsz[32];
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200676
Simon Glassdc8bbea2011-10-13 14:43:06 +0000677#ifdef CONFIG_PRAM
678 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200679#endif
680#ifdef CONFIG_LOGBUFFER
681#ifndef CONFIG_ALT_LB_ADDR
682 /* Also take the logbuffer into account (pram is in kB) */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000683 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200684#endif
685#endif
Heiko Schocherb2b8f982011-06-02 22:11:37 +0000686 sprintf((char *)memsz, "%ldk", (gd->ram_size / 1024) - pram);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000687 setenv("mem", (char *)memsz);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200688 }
689#endif
690
691 /* main_loop() can return to retry autoboot, if so just run it again. */
692 for (;;) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000693 main_loop();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200694 }
695
696 /* NOTREACHED - no way out of command loop except booting */
697}