blob: 92e85c4db5152cf1f4d68671b1e76d68dcba1bcd [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>
Ian Campbellc6f3d502014-03-07 01:20:56 +000036#include <scsi.h>
Simon Glassf5437ad2011-10-24 19:15:33 +000037#include <libfdt.h>
38#include <fdtdec.h>
Valentin Longchampea3681a2011-09-02 04:59:03 +000039#include <post.h>
40#include <logbuff.h>
Simon Glasse103b7a2013-03-05 14:39:38 +000041#include <asm/sections.h>
wdenkc6097192002-11-03 00:24:07 +000042
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020043#ifdef CONFIG_BITBANGMII
44#include <miiphy.h>
45#endif
46
Markus Klotzbücherb2b43462006-02-10 11:25:41 +010047DECLARE_GLOBAL_DATA_PTR;
48
wdenk3b57fe02003-05-30 12:48:29 +000049ulong monitor_flash_len;
50
wdenk2abbe072003-06-16 23:50:08 +000051#ifdef CONFIG_HAS_DATAFLASH
52extern int AT91F_DataflashInit(void);
53extern void dataflash_print_info(void);
54#endif
55
Hebbarf7ad79b2007-12-18 16:00:54 -080056#if defined(CONFIG_HARD_I2C) || \
Heiko Schocher3f4978c2012-01-16 21:12:24 +000057 defined(CONFIG_SYS_I2C)
Hebbarf7ad79b2007-12-18 16:00:54 -080058#include <i2c.h>
59#endif
60
wdenkc6097192002-11-03 00:24:07 +000061/************************************************************************
Peter Pearse9f5c3d32007-09-04 16:18:38 +010062 * Coloured LED functionality
63 ************************************************************************
64 * May be supplied by boards if desired
65 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +000066inline void __coloured_LED_init(void) {}
67void coloured_LED_init(void)
68 __attribute__((weak, alias("__coloured_LED_init")));
Jason Kridner2d3be7c2011-09-04 14:40:16 -040069inline void __red_led_on(void) {}
70void red_led_on(void) __attribute__((weak, alias("__red_led_on")));
71inline void __red_led_off(void) {}
72void red_led_off(void) __attribute__((weak, alias("__red_led_off")));
73inline void __green_led_on(void) {}
74void green_led_on(void) __attribute__((weak, alias("__green_led_on")));
75inline void __green_led_off(void) {}
76void green_led_off(void) __attribute__((weak, alias("__green_led_off")));
77inline void __yellow_led_on(void) {}
78void yellow_led_on(void) __attribute__((weak, alias("__yellow_led_on")));
79inline void __yellow_led_off(void) {}
80void yellow_led_off(void) __attribute__((weak, alias("__yellow_led_off")));
81inline void __blue_led_on(void) {}
82void blue_led_on(void) __attribute__((weak, alias("__blue_led_on")));
83inline void __blue_led_off(void) {}
84void blue_led_off(void) __attribute__((weak, alias("__blue_led_off")));
Peter Pearse9f5c3d32007-09-04 16:18:38 +010085
Heiko Schocherceb1d6d2011-07-15 19:36:36 +000086/*
87 ************************************************************************
wdenkc6097192002-11-03 00:24:07 +000088 * Init Utilities *
89 ************************************************************************
90 * Some of this code should be moved into the core functions,
91 * or dropped completely,
92 * but let's get it working (again) first...
93 */
94
Jean-Christophe PLAGNIOL-VILLARD4f572892009-02-22 15:49:28 +010095#if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
96#define CONFIG_BAUDRATE 115200
97#endif
Simon Glassdc8bbea2011-10-13 14:43:06 +000098
Heiko Schocherceb1d6d2011-07-15 19:36:36 +000099static int init_baudrate(void)
wdenkc6097192002-11-03 00:24:07 +0000100{
Simon Glassdc8bbea2011-10-13 14:43:06 +0000101 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
102 return 0;
wdenkc6097192002-11-03 00:24:07 +0000103}
104
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000105static int display_banner(void)
wdenkc6097192002-11-03 00:24:07 +0000106{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000107 printf("\n\n%s\n\n", version_string);
108 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100109 (ulong)&_start,
110 (ulong)&__bss_start, (ulong)&__bss_end);
wdenkc6097192002-11-03 00:24:07 +0000111#ifdef CONFIG_MODEM_SUPPORT
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000112 debug("Modem Support enabled\n");
wdenkc6097192002-11-03 00:24:07 +0000113#endif
114#ifdef CONFIG_USE_IRQ
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000115 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
116 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
wdenkc6097192002-11-03 00:24:07 +0000117#endif
wdenkf72da342003-10-10 10:05:42 +0000118
wdenkc6097192002-11-03 00:24:07 +0000119 return (0);
120}
121
122/*
123 * WARNING: this code looks "cleaner" than the PowerPC version, but
124 * has the disadvantage that you either get nothing, or everything.
125 * On PowerPC, you might see "DRAM: " before the system hangs - which
126 * gives a simple yet clear indication which part of the
127 * initialization if failing.
128 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000129static int display_dram_config(void)
wdenkc6097192002-11-03 00:24:07 +0000130{
wdenkc6097192002-11-03 00:24:07 +0000131 int i;
132
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100133#ifdef DEBUG
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000134 puts("RAM Configuration:\n");
wdenkc6097192002-11-03 00:24:07 +0000135
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000136 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
137 printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
138 print_size(gd->bd->bi_dram[i].size, "\n");
wdenkc6097192002-11-03 00:24:07 +0000139 }
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100140#else
141 ulong size = 0;
142
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000143 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100144 size += gd->bd->bi_dram[i].size;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000145
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100146 puts("DRAM: ");
147 print_size(size, "\n");
148#endif
wdenkc6097192002-11-03 00:24:07 +0000149
150 return (0);
151}
152
Heiko Schocherea818db2013-01-29 08:53:15 +0100153#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000154static int init_func_i2c(void)
Hebbarf7ad79b2007-12-18 16:00:54 -0800155{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000156 puts("I2C: ");
Heiko Schocher3f4978c2012-01-16 21:12:24 +0000157#ifdef CONFIG_SYS_I2C
158 i2c_init_all();
159#else
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000160 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
Heiko Schocher3f4978c2012-01-16 21:12:24 +0000161#endif
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000162 puts("ready\n");
Hebbarf7ad79b2007-12-18 16:00:54 -0800163 return (0);
164}
165#endif
166
Jean-Christophe PLAGNIOL-VILLARDf90c8022009-01-31 09:04:58 +0100167#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
168#include <pci.h>
169static int arm_pci_init(void)
170{
171 pci_init();
172 return 0;
173}
174#endif /* CONFIG_CMD_PCI || CONFIG_PCI */
175
wdenkc6097192002-11-03 00:24:07 +0000176/*
wdenka8c7c702003-12-06 19:49:23 +0000177 * Breathe some life into the board...
wdenkc6097192002-11-03 00:24:07 +0000178 *
wdenkb0639ca2003-09-17 22:48:07 +0000179 * Initialize a serial port as console, and carry out some hardware
wdenkc6097192002-11-03 00:24:07 +0000180 * tests.
181 *
182 * The first part of initialization is running from Flash memory;
183 * its main purpose is to initialize the RAM so that we
184 * can relocate the monitor code to RAM.
185 */
186
187/*
188 * All attempts to come up with a "common" initialization sequence
189 * that works for all boards and architectures failed: some of the
190 * requirements are just _too_ different. To get rid of the resulting
wdenkf6e20fc2004-02-08 19:38:38 +0000191 * mess of board dependent #ifdef'ed code we now make the whole
wdenkc6097192002-11-03 00:24:07 +0000192 * initialization sequence configurable to the user.
193 *
194 * The requirements for any new initalization function is simple: it
195 * receives a pointer to the "global data" structure as it's only
196 * argument, and returns an integer return code, where 0 means
197 * "continue" and != 0 means "fatal error, hang the system".
198 */
199typedef int (init_fnc_t) (void);
200
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200201void __dram_init_banksize(void)
202{
203 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
204 gd->bd->bi_dram[0].size = gd->ram_size;
205}
206void dram_init_banksize(void)
207 __attribute__((weak, alias("__dram_init_banksize")));
208
Fabio Estevama21c6512012-03-01 04:02:38 +0000209int __arch_cpu_init(void)
210{
211 return 0;
212}
213int arch_cpu_init(void)
214 __attribute__((weak, alias("__arch_cpu_init")));
215
Łukasz Majewski2ffb4be2012-11-13 03:21:56 +0000216int __power_init_board(void)
217{
218 return 0;
219}
220int power_init_board(void)
221 __attribute__((weak, alias("__power_init_board")));
222
Simon Glass2f8d8d62012-11-30 13:01:22 +0000223 /* Record the board_init_f() bootstage (after arch_cpu_init()) */
224static int mark_bootstage(void)
225{
226 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
227
228 return 0;
229}
230
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200231init_fnc_t *init_sequence[] = {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200232 arch_cpu_init, /* basic arch cpu dependent setup */
Simon Glass2f8d8d62012-11-30 13:01:22 +0000233 mark_bootstage,
Simon Glassf5437ad2011-10-24 19:15:33 +0000234#ifdef CONFIG_OF_CONTROL
235 fdtdec_check_fdt,
236#endif
Simon Glasseae78c32012-11-30 13:01:16 +0000237#if defined(CONFIG_BOARD_EARLY_INIT_F)
238 board_early_init_f,
239#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200240 timer_init, /* initialize timer */
Markus Hubige23e5ee2012-08-16 08:22:08 +0000241#ifdef CONFIG_BOARD_POSTCLK_INIT
242 board_postclk_init,
243#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200244#ifdef CONFIG_FSL_ESDHC
245 get_clocks,
246#endif
247 env_init, /* initialize environment */
248 init_baudrate, /* initialze baudrate settings */
249 serial_init, /* serial communications setup */
250 console_init_f, /* stage 1 init of console */
251 display_banner, /* say that we are here */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200252 print_cpuinfo, /* display cpu info (and speed) */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200253#if defined(CONFIG_DISPLAY_BOARDINFO)
254 checkboard, /* display board info */
255#endif
Heiko Schocherea818db2013-01-29 08:53:15 +0100256#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200257 init_func_i2c,
258#endif
259 dram_init, /* configure available RAM banks */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200260 NULL,
261};
262
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000263void board_init_f(ulong bootflag)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200264{
265 bd_t *bd;
266 init_fnc_t **init_fnc_ptr;
267 gd_t *id;
268 ulong addr, addr_sp;
Simon Glassdc8bbea2011-10-13 14:43:06 +0000269#ifdef CONFIG_PRAM
270 ulong reg;
271#endif
Simon Glass39826f02012-09-27 15:41:55 +0000272 void *new_fdt = NULL;
273 size_t fdt_size = 0;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200274
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000275 memset((void *)gd, 0, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200276
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100277 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Simon Glassf5437ad2011-10-24 19:15:33 +0000278#ifdef CONFIG_OF_EMBED
279 /* Get a pointer to the FDT */
Masahiro Yamada6ab6b2a2014-02-05 11:28:25 +0900280 gd->fdt_blob = __dtb_db_begin;
Simon Glassf5437ad2011-10-24 19:15:33 +0000281#elif defined CONFIG_OF_SEPARATE
282 /* FDT is at end of image */
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100283 gd->fdt_blob = &_end;
Simon Glassf5437ad2011-10-24 19:15:33 +0000284#endif
Simon Glasseea63e02011-10-24 19:15:34 +0000285 /* Allow the early environment to override the fdt address */
286 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
287 (uintptr_t)gd->fdt_blob);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200288
289 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
290 if ((*init_fnc_ptr)() != 0) {
291 hang ();
292 }
293 }
294
Simon Glass28669032012-03-28 10:08:25 +0000295#ifdef CONFIG_OF_CONTROL
296 /* For now, put this check after the console is ready */
297 if (fdtdec_prepare_fdt()) {
298 panic("** CONFIG_OF_CONTROL defined but no FDT - please see "
299 "doc/README.fdt-control");
300 }
301#endif
302
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000303 debug("monitor len: %08lX\n", gd->mon_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200304 /*
305 * Ram is setup, size stored in gd !!
306 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000307 debug("ramsize: %08lX\n", gd->ram_size);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200308#if defined(CONFIG_SYS_MEM_TOP_HIDE)
309 /*
310 * Subtract specified amount of memory to hide so that it won't
311 * get "touched" at all by U-Boot. By fixing up gd->ram_size
312 * the Linux kernel should now get passed the now "corrected"
313 * memory size and won't touch it either. This should work
314 * for arch/ppc and arch/powerpc. Only Linux board ports in
315 * arch/powerpc with bootwrapper support, that recalculate the
316 * memory size from the SDRAM controller setup will have to
317 * get fixed.
318 */
319 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
320#endif
321
York Sune3866162014-02-11 11:57:26 -0800322 addr = CONFIG_SYS_SDRAM_BASE + get_effective_memsize();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200323
324#ifdef CONFIG_LOGBUFFER
325#ifndef CONFIG_ALT_LB_ADDR
326 /* reserve kernel log buffer */
327 addr -= (LOGBUFF_RESERVE);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000328 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
329 addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200330#endif
331#endif
332
333#ifdef CONFIG_PRAM
334 /*
335 * reserve protected RAM
336 */
Simon Glassdc8bbea2011-10-13 14:43:06 +0000337 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200338 addr -= (reg << 10); /* size is in kB */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000339 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200340#endif /* CONFIG_PRAM */
341
Aneesh Ve47f2db2011-06-16 23:30:48 +0000342#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200343 /* reserve TLB table */
David Feng0ae76532013-12-14 11:47:35 +0800344 gd->arch.tlb_size = PGTABLE_SIZE;
Simon Glass34fd5d22012-12-13 20:48:39 +0000345 addr -= gd->arch.tlb_size;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200346
347 /* round down to next 64 kB limit */
348 addr &= ~(0x10000 - 1);
349
Simon Glass34fd5d22012-12-13 20:48:39 +0000350 gd->arch.tlb_addr = addr;
351 debug("TLB table from %08lx to %08lx\n", addr, addr + gd->arch.tlb_size);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200352#endif
353
354 /* round down to next 4 kB limit */
355 addr &= ~(4096 - 1);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000356 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200357
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200358#ifdef CONFIG_LCD
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000359#ifdef CONFIG_FB_ADDR
360 gd->fb_base = CONFIG_FB_ADDR;
361#else
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200362 /* reserve memory for LCD display (always full pages) */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000363 addr = lcd_setmem(addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200364 gd->fb_base = addr;
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000365#endif /* CONFIG_FB_ADDR */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200366#endif /* CONFIG_LCD */
367
368 /*
369 * reserve memory for U-Boot code, data & bss
370 * round down to next 4 kB limit
371 */
372 addr -= gd->mon_len;
373 addr &= ~(4096 - 1);
374
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000375 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200376
Aneesh V401bb302011-07-13 05:11:07 +0000377#ifndef CONFIG_SPL_BUILD
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200378 /*
379 * reserve memory for malloc() arena
380 */
381 addr_sp = addr - TOTAL_MALLOC_LEN;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000382 debug("Reserving %dk for malloc() at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200383 TOTAL_MALLOC_LEN >> 10, addr_sp);
384 /*
385 * (permanently) allocate a Board Info struct
386 * and a permanent copy of the "global" data
387 */
388 addr_sp -= sizeof (bd_t);
389 bd = (bd_t *) addr_sp;
390 gd->bd = bd;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000391 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200392 sizeof (bd_t), addr_sp);
Igor Grinberg15c2e2c2011-08-16 23:48:23 +0000393
394#ifdef CONFIG_MACH_TYPE
395 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
396#endif
397
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200398 addr_sp -= sizeof (gd_t);
399 id = (gd_t *) addr_sp;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000400 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200401 sizeof (gd_t), addr_sp);
402
Simon Glass39826f02012-09-27 15:41:55 +0000403#if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL)
404 /*
405 * If the device tree is sitting immediate above our image then we
406 * must relocate it. If it is embedded in the data section, then it
407 * will be relocated with other data.
408 */
409 if (gd->fdt_blob) {
410 fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
411
412 addr_sp -= fdt_size;
413 new_fdt = (void *)addr_sp;
414 debug("Reserving %zu Bytes for FDT at: %08lx\n",
415 fdt_size, addr_sp);
416 }
417#endif
418
David Feng0ae76532013-12-14 11:47:35 +0800419#ifndef CONFIG_ARM64
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200420 /* setup stackpointer for exeptions */
421 gd->irq_sp = addr_sp;
422#ifdef CONFIG_USE_IRQ
423 addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000424 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200425 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
426#endif
427 /* leave 3 words for abort-stack */
Eric Cooper6445a302011-04-14 12:32:37 +0000428 addr_sp -= 12;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200429
430 /* 8-byte alignment for ABI compliance */
431 addr_sp &= ~0x07;
David Feng0ae76532013-12-14 11:47:35 +0800432#else /* CONFIG_ARM64 */
433 /* 16-byte alignment for ABI compliance */
434 addr_sp &= ~0x0f;
435#endif /* CONFIG_ARM64 */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200436#else
437 addr_sp += 128; /* leave 32 words for abort-stack */
438 gd->irq_sp = addr_sp;
439#endif
440
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000441 debug("New Stack Pointer is: %08lx\n", addr_sp);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200442
443#ifdef CONFIG_POST
444 post_bootmode_init();
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000445 post_run(NULL, POST_ROM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200446#endif
447
448 gd->bd->bi_baudrate = gd->baudrate;
449 /* Ram ist board specific, so move it to board code ... */
450 dram_init_banksize();
451 display_dram_config(); /* and display it */
452
453 gd->relocaddr = addr;
454 gd->start_addr_sp = addr_sp;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100455 gd->reloc_off = addr - (ulong)&_start;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000456 debug("relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glass39826f02012-09-27 15:41:55 +0000457 if (new_fdt) {
458 memcpy(new_fdt, gd->fdt_blob, fdt_size);
459 gd->fdt_blob = new_fdt;
460 }
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000461 memcpy(id, (void *)gd, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200462}
463
464#if !defined(CONFIG_SYS_NO_FLASH)
465static char *failed = "*** failed ***\n";
466#endif
467
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000468/*
Simon Glass06fd8532012-11-30 13:01:17 +0000469 * Tell if it's OK to load the environment early in boot.
470 *
471 * If CONFIG_OF_CONFIG is defined, we'll check with the FDT to see
472 * if this is OK (defaulting to saying it's not OK).
473 *
474 * NOTE: Loading the environment early can be a bad idea if security is
475 * important, since no verification is done on the environment.
476 *
477 * @return 0 if environment should not be loaded, !=0 if it is ok to load
478 */
479static int should_load_env(void)
480{
481#ifdef CONFIG_OF_CONTROL
Lucas Stach4e5eb452013-01-22 00:15:49 +0000482 return fdtdec_get_config_int(gd->fdt_blob, "load-environment", 1);
Simon Glass06fd8532012-11-30 13:01:17 +0000483#elif defined CONFIG_DELAY_ENVIRONMENT
484 return 0;
485#else
486 return 1;
487#endif
488}
489
Simon Glasse2e3e2b2012-11-30 13:01:19 +0000490#if defined(CONFIG_DISPLAY_BOARDINFO_LATE) && defined(CONFIG_OF_CONTROL)
491static void display_fdt_model(const void *blob)
492{
493 const char *model;
494
495 model = (char *)fdt_getprop(blob, 0, "model", NULL);
496 printf("Model: %s\n", model ? model : "<unknown>");
497}
498#endif
499
Simon Glass06fd8532012-11-30 13:01:17 +0000500/************************************************************************
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200501 *
502 * This is the next part if the initialization sequence: we are now
503 * running from RAM and have a "normal" C environment, i. e. global
504 * data can be written, BSS has been cleared, the stack size in not
505 * that critical any more, etc.
506 *
507 ************************************************************************
508 */
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200509
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000510void board_init_r(gd_t *id, ulong dest_addr)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200511{
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200512 ulong malloc_start;
513#if !defined(CONFIG_SYS_NO_FLASH)
514 ulong flash_size;
515#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200516
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200517 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
Simon Glassf933e842012-02-13 13:51:21 +0000518 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200519
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100520 monitor_flash_len = (ulong)&__rel_dyn_end - (ulong)_start;
Aneesh Vcba4b182011-08-16 04:33:05 +0000521
522 /* Enable caches */
523 enable_caches();
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000524
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000525 debug("monitor flash len: %08lX\n", monitor_flash_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200526 board_init(); /* Setup chipselects */
Hadli, Manjunath8f5d4682012-02-06 00:30:44 +0000527 /*
528 * TODO: printing of the clock inforamtion of the board is now
529 * implemented as part of bdinfo command. Currently only support for
530 * davinci SOC's is added. Remove this check once all the board
531 * implement this.
532 */
533#ifdef CONFIG_CLOCKS
534 set_cpu_clk_info(); /* Setup clock information */
535#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200536 serial_initialize();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200537
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000538 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200539
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200540#ifdef CONFIG_LOGBUFFER
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000541 logbuff_init_ptrs();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200542#endif
543#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000544 post_output_backlog();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200545#endif
546
547 /* The Malloc area is immediately below the monitor copy in DRAM */
548 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
549 mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200550
Fabio Estevamd519b4b2012-04-02 11:19:45 +0000551#ifdef CONFIG_ARCH_EARLY_INIT_R
552 arch_early_init_r();
553#endif
Łukasz Majewski2ffb4be2012-11-13 03:21:56 +0000554 power_init_board();
Fabio Estevamd519b4b2012-04-02 11:19:45 +0000555
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200556#if !defined(CONFIG_SYS_NO_FLASH)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000557 puts("Flash: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200558
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000559 flash_size = flash_init();
560 if (flash_size > 0) {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200561# ifdef CONFIG_SYS_FLASH_CHECKSUM
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000562 print_size(flash_size, "");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200563 /*
564 * Compute and print flash CRC if flashchecksum is set to 'y'
565 *
566 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
567 */
Joe Hershbergerec8a2522012-12-11 22:16:22 -0600568 if (getenv_yesno("flashchecksum") == 1) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000569 printf(" CRC: %08X", crc32(0,
570 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
571 flash_size));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200572 }
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000573 putc('\n');
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200574# else /* !CONFIG_SYS_FLASH_CHECKSUM */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000575 print_size(flash_size, "\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200576# endif /* CONFIG_SYS_FLASH_CHECKSUM */
577 } else {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000578 puts(failed);
579 hang();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200580 }
581#endif
582
583#if defined(CONFIG_CMD_NAND)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000584 puts("NAND: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200585 nand_init(); /* go init the NAND */
586#endif
587
588#if defined(CONFIG_CMD_ONENAND)
589 onenand_init();
590#endif
591
Steve Sakomand470a6f2010-10-11 05:51:39 -0700592#ifdef CONFIG_GENERIC_MMC
Taylor Hutt80e40952012-11-30 13:01:23 +0000593 puts("MMC: ");
594 mmc_initialize(gd->bd);
Steve Sakomand470a6f2010-10-11 05:51:39 -0700595#endif
596
Ian Campbellc6f3d502014-03-07 01:20:56 +0000597#ifdef CONFIG_CMD_SCSI
598 puts("SCSI: ");
599 scsi_init();
600#endif
601
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200602#ifdef CONFIG_HAS_DATAFLASH
603 AT91F_DataflashInit();
604 dataflash_print_info();
605#endif
606
607 /* initialize environment */
Simon Glass06fd8532012-11-30 13:01:17 +0000608 if (should_load_env())
609 env_relocate();
610 else
611 set_default_env(NULL);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200612
Michael Schwingen1ed63c52011-05-23 00:00:13 +0200613#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
614 arm_pci_init();
615#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200616
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000617 stdio_init(); /* get the devices list going. */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200618
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000619 jumptable_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200620
621#if defined(CONFIG_API)
622 /* Initialize API */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000623 api_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200624#endif
625
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000626 console_init_r(); /* fully init console as a device */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200627
Simon Glasse2e3e2b2012-11-30 13:01:19 +0000628#ifdef CONFIG_DISPLAY_BOARDINFO_LATE
629# ifdef CONFIG_OF_CONTROL
630 /* Put this here so it appears on the LCD, now it is ready */
631 display_fdt_model(gd->fdt_blob);
632# else
633 checkboard();
634# endif
635#endif
636
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200637#if defined(CONFIG_ARCH_MISC_INIT)
638 /* miscellaneous arch dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000639 arch_misc_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200640#endif
641#if defined(CONFIG_MISC_INIT_R)
642 /* miscellaneous platform dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000643 misc_init_r();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200644#endif
645
Albert ARIBAUDbd851c72013-11-08 22:37:33 +0100646 /* set up exceptions */
647 interrupt_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200648 /* enable exceptions */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000649 enable_interrupts();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200650
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200651 /* Initialize from environment */
Simon Glassdc8bbea2011-10-13 14:43:06 +0000652 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200653
Helmut Raiger9660e442011-10-20 04:19:47 +0000654#ifdef CONFIG_BOARD_LATE_INIT
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000655 board_late_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200656#endif
657
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200658#ifdef CONFIG_BITBANGMII
659 bb_miiphy_init();
660#endif
661#if defined(CONFIG_CMD_NET)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000662 puts("Net: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200663 eth_initialize(gd->bd);
664#if defined(CONFIG_RESET_PHY_R)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000665 debug("Reset Ethernet PHY\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200666 reset_phy();
667#endif
668#endif
669
670#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000671 post_run(NULL, POST_RAM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200672#endif
673
674#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
675 /*
676 * Export available size of memory for Linux,
677 * taking into account the protected RAM at top of memory
678 */
679 {
Simon Glassdc8bbea2011-10-13 14:43:06 +0000680 ulong pram = 0;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200681 uchar memsz[32];
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200682
Simon Glassdc8bbea2011-10-13 14:43:06 +0000683#ifdef CONFIG_PRAM
684 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200685#endif
686#ifdef CONFIG_LOGBUFFER
687#ifndef CONFIG_ALT_LB_ADDR
688 /* Also take the logbuffer into account (pram is in kB) */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000689 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200690#endif
691#endif
Heiko Schocherb2b8f982011-06-02 22:11:37 +0000692 sprintf((char *)memsz, "%ldk", (gd->ram_size / 1024) - pram);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000693 setenv("mem", (char *)memsz);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200694 }
695#endif
696
697 /* main_loop() can return to retry autoboot, if so just run it again. */
698 for (;;) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000699 main_loop();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200700 }
701
702 /* NOTREACHED - no way out of command loop except booting */
703}