blob: 0521178ac3c9bb66c10bcadaae00ea9ef6555ec8 [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 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
Wolfgang Denk57cac1f2006-01-29 19:12:41 +010028/*
29 * To match the U-Boot user interface on ARM platforms to the U-Boot
30 * standard (as on PPC platforms), some messages with debug character
31 * are removed from the default U-Boot build.
32 *
33 * Define DEBUG here if you want additional info as shown below
34 * printed upon startup:
35 *
36 * U-Boot code: 00F00000 -> 00F3C774 BSS: -> 00FC3274
37 * IRQ Stack: 00ebff7c
38 * FIQ Stack: 00ebef7c
39 */
40
wdenkc6097192002-11-03 00:24:07 +000041#include <common.h>
42#include <command.h>
Simon Glass06fd8532012-11-30 13:01:17 +000043#include <environment.h>
wdenk3595ac42003-06-22 17:18:28 +000044#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020045#include <stdio_dev.h>
wdenkc6097192002-11-03 00:24:07 +000046#include <version.h>
47#include <net.h>
Marcel Ziswilerb71190f2008-05-01 09:05:26 +020048#include <serial.h>
Scott Woodd6ac2ed2008-05-22 10:49:46 -050049#include <nand.h>
50#include <onenand_uboot.h>
Ilya Yanok379e9fc2009-06-08 04:12:50 +040051#include <mmc.h>
Simon Glassf5437ad2011-10-24 19:15:33 +000052#include <libfdt.h>
53#include <fdtdec.h>
Valentin Longchampea3681a2011-09-02 04:59:03 +000054#include <post.h>
55#include <logbuff.h>
Simon Glasse103b7a2013-03-05 14:39:38 +000056#include <asm/sections.h>
wdenkc6097192002-11-03 00:24:07 +000057
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020058#ifdef CONFIG_BITBANGMII
59#include <miiphy.h>
60#endif
61
Markus Klotzbücherb2b43462006-02-10 11:25:41 +010062DECLARE_GLOBAL_DATA_PTR;
63
wdenk3b57fe02003-05-30 12:48:29 +000064ulong monitor_flash_len;
65
wdenk2abbe072003-06-16 23:50:08 +000066#ifdef CONFIG_HAS_DATAFLASH
67extern int AT91F_DataflashInit(void);
68extern void dataflash_print_info(void);
69#endif
70
Hebbarf7ad79b2007-12-18 16:00:54 -080071#if defined(CONFIG_HARD_I2C) || \
72 defined(CONFIG_SOFT_I2C)
73#include <i2c.h>
74#endif
75
wdenkc6097192002-11-03 00:24:07 +000076/************************************************************************
Peter Pearse9f5c3d32007-09-04 16:18:38 +010077 * Coloured LED functionality
78 ************************************************************************
79 * May be supplied by boards if desired
80 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +000081inline void __coloured_LED_init(void) {}
82void coloured_LED_init(void)
83 __attribute__((weak, alias("__coloured_LED_init")));
Jason Kridner2d3be7c2011-09-04 14:40:16 -040084inline void __red_led_on(void) {}
85void red_led_on(void) __attribute__((weak, alias("__red_led_on")));
86inline void __red_led_off(void) {}
87void red_led_off(void) __attribute__((weak, alias("__red_led_off")));
88inline void __green_led_on(void) {}
89void green_led_on(void) __attribute__((weak, alias("__green_led_on")));
90inline void __green_led_off(void) {}
91void green_led_off(void) __attribute__((weak, alias("__green_led_off")));
92inline void __yellow_led_on(void) {}
93void yellow_led_on(void) __attribute__((weak, alias("__yellow_led_on")));
94inline void __yellow_led_off(void) {}
95void yellow_led_off(void) __attribute__((weak, alias("__yellow_led_off")));
96inline void __blue_led_on(void) {}
97void blue_led_on(void) __attribute__((weak, alias("__blue_led_on")));
98inline void __blue_led_off(void) {}
99void blue_led_off(void) __attribute__((weak, alias("__blue_led_off")));
Peter Pearse9f5c3d32007-09-04 16:18:38 +0100100
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000101/*
102 ************************************************************************
wdenkc6097192002-11-03 00:24:07 +0000103 * Init Utilities *
104 ************************************************************************
105 * Some of this code should be moved into the core functions,
106 * or dropped completely,
107 * but let's get it working (again) first...
108 */
109
Jean-Christophe PLAGNIOL-VILLARD4f572892009-02-22 15:49:28 +0100110#if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
111#define CONFIG_BAUDRATE 115200
112#endif
Simon Glassdc8bbea2011-10-13 14:43:06 +0000113
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000114static int init_baudrate(void)
wdenkc6097192002-11-03 00:24:07 +0000115{
Simon Glassdc8bbea2011-10-13 14:43:06 +0000116 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
117 return 0;
wdenkc6097192002-11-03 00:24:07 +0000118}
119
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000120static int display_banner(void)
wdenkc6097192002-11-03 00:24:07 +0000121{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000122 printf("\n\n%s\n\n", version_string);
123 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200124 _TEXT_BASE,
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000125 _bss_start_ofs + _TEXT_BASE, _bss_end_ofs + _TEXT_BASE);
wdenkc6097192002-11-03 00:24:07 +0000126#ifdef CONFIG_MODEM_SUPPORT
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000127 debug("Modem Support enabled\n");
wdenkc6097192002-11-03 00:24:07 +0000128#endif
129#ifdef CONFIG_USE_IRQ
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000130 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
131 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
wdenkc6097192002-11-03 00:24:07 +0000132#endif
wdenkf72da342003-10-10 10:05:42 +0000133
wdenkc6097192002-11-03 00:24:07 +0000134 return (0);
135}
136
137/*
138 * WARNING: this code looks "cleaner" than the PowerPC version, but
139 * has the disadvantage that you either get nothing, or everything.
140 * On PowerPC, you might see "DRAM: " before the system hangs - which
141 * gives a simple yet clear indication which part of the
142 * initialization if failing.
143 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000144static int display_dram_config(void)
wdenkc6097192002-11-03 00:24:07 +0000145{
wdenkc6097192002-11-03 00:24:07 +0000146 int i;
147
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100148#ifdef DEBUG
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000149 puts("RAM Configuration:\n");
wdenkc6097192002-11-03 00:24:07 +0000150
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000151 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
152 printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
153 print_size(gd->bd->bi_dram[i].size, "\n");
wdenkc6097192002-11-03 00:24:07 +0000154 }
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100155#else
156 ulong size = 0;
157
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000158 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100159 size += gd->bd->bi_dram[i].size;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000160
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100161 puts("DRAM: ");
162 print_size(size, "\n");
163#endif
wdenkc6097192002-11-03 00:24:07 +0000164
165 return (0);
166}
167
Hebbarf7ad79b2007-12-18 16:00:54 -0800168#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000169static int init_func_i2c(void)
Hebbarf7ad79b2007-12-18 16:00:54 -0800170{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000171 puts("I2C: ");
172 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
173 puts("ready\n");
Hebbarf7ad79b2007-12-18 16:00:54 -0800174 return (0);
175}
176#endif
177
Jean-Christophe PLAGNIOL-VILLARDf90c8022009-01-31 09:04:58 +0100178#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
179#include <pci.h>
180static int arm_pci_init(void)
181{
182 pci_init();
183 return 0;
184}
185#endif /* CONFIG_CMD_PCI || CONFIG_PCI */
186
wdenkc6097192002-11-03 00:24:07 +0000187/*
wdenka8c7c702003-12-06 19:49:23 +0000188 * Breathe some life into the board...
wdenkc6097192002-11-03 00:24:07 +0000189 *
wdenkb0639ca2003-09-17 22:48:07 +0000190 * Initialize a serial port as console, and carry out some hardware
wdenkc6097192002-11-03 00:24:07 +0000191 * tests.
192 *
193 * The first part of initialization is running from Flash memory;
194 * its main purpose is to initialize the RAM so that we
195 * can relocate the monitor code to RAM.
196 */
197
198/*
199 * All attempts to come up with a "common" initialization sequence
200 * that works for all boards and architectures failed: some of the
201 * requirements are just _too_ different. To get rid of the resulting
wdenkf6e20fc2004-02-08 19:38:38 +0000202 * mess of board dependent #ifdef'ed code we now make the whole
wdenkc6097192002-11-03 00:24:07 +0000203 * initialization sequence configurable to the user.
204 *
205 * The requirements for any new initalization function is simple: it
206 * receives a pointer to the "global data" structure as it's only
207 * argument, and returns an integer return code, where 0 means
208 * "continue" and != 0 means "fatal error, hang the system".
209 */
210typedef int (init_fnc_t) (void);
211
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000212int print_cpuinfo(void);
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100213
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200214void __dram_init_banksize(void)
215{
216 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
217 gd->bd->bi_dram[0].size = gd->ram_size;
218}
219void dram_init_banksize(void)
220 __attribute__((weak, alias("__dram_init_banksize")));
221
Fabio Estevama21c6512012-03-01 04:02:38 +0000222int __arch_cpu_init(void)
223{
224 return 0;
225}
226int arch_cpu_init(void)
227 __attribute__((weak, alias("__arch_cpu_init")));
228
Łukasz Majewski2ffb4be2012-11-13 03:21:56 +0000229int __power_init_board(void)
230{
231 return 0;
232}
233int power_init_board(void)
234 __attribute__((weak, alias("__power_init_board")));
235
Simon Glass2f8d8d62012-11-30 13:01:22 +0000236 /* Record the board_init_f() bootstage (after arch_cpu_init()) */
237static int mark_bootstage(void)
238{
239 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
240
241 return 0;
242}
243
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200244init_fnc_t *init_sequence[] = {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200245 arch_cpu_init, /* basic arch cpu dependent setup */
Simon Glass2f8d8d62012-11-30 13:01:22 +0000246 mark_bootstage,
Simon Glassf5437ad2011-10-24 19:15:33 +0000247#ifdef CONFIG_OF_CONTROL
248 fdtdec_check_fdt,
249#endif
Simon Glasseae78c32012-11-30 13:01:16 +0000250#if defined(CONFIG_BOARD_EARLY_INIT_F)
251 board_early_init_f,
252#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200253 timer_init, /* initialize timer */
Markus Hubige23e5ee2012-08-16 08:22:08 +0000254#ifdef CONFIG_BOARD_POSTCLK_INIT
255 board_postclk_init,
256#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200257#ifdef CONFIG_FSL_ESDHC
258 get_clocks,
259#endif
260 env_init, /* initialize environment */
261 init_baudrate, /* initialze baudrate settings */
262 serial_init, /* serial communications setup */
263 console_init_f, /* stage 1 init of console */
264 display_banner, /* say that we are here */
265#if defined(CONFIG_DISPLAY_CPUINFO)
266 print_cpuinfo, /* display cpu info (and speed) */
267#endif
268#if defined(CONFIG_DISPLAY_BOARDINFO)
269 checkboard, /* display board info */
270#endif
271#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
272 init_func_i2c,
273#endif
274 dram_init, /* configure available RAM banks */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200275 NULL,
276};
277
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000278void board_init_f(ulong bootflag)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200279{
280 bd_t *bd;
281 init_fnc_t **init_fnc_ptr;
282 gd_t *id;
283 ulong addr, addr_sp;
Simon Glassdc8bbea2011-10-13 14:43:06 +0000284#ifdef CONFIG_PRAM
285 ulong reg;
286#endif
Simon Glass39826f02012-09-27 15:41:55 +0000287 void *new_fdt = NULL;
288 size_t fdt_size = 0;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200289
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000290 memset((void *)gd, 0, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200291
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200292 gd->mon_len = _bss_end_ofs;
Simon Glassf5437ad2011-10-24 19:15:33 +0000293#ifdef CONFIG_OF_EMBED
294 /* Get a pointer to the FDT */
295 gd->fdt_blob = _binary_dt_dtb_start;
296#elif defined CONFIG_OF_SEPARATE
297 /* FDT is at end of image */
298 gd->fdt_blob = (void *)(_end_ofs + _TEXT_BASE);
299#endif
Simon Glasseea63e02011-10-24 19:15:34 +0000300 /* Allow the early environment to override the fdt address */
301 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
302 (uintptr_t)gd->fdt_blob);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200303
304 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
305 if ((*init_fnc_ptr)() != 0) {
306 hang ();
307 }
308 }
309
Simon Glass28669032012-03-28 10:08:25 +0000310#ifdef CONFIG_OF_CONTROL
311 /* For now, put this check after the console is ready */
312 if (fdtdec_prepare_fdt()) {
313 panic("** CONFIG_OF_CONTROL defined but no FDT - please see "
314 "doc/README.fdt-control");
315 }
316#endif
317
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000318 debug("monitor len: %08lX\n", gd->mon_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200319 /*
320 * Ram is setup, size stored in gd !!
321 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000322 debug("ramsize: %08lX\n", gd->ram_size);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200323#if defined(CONFIG_SYS_MEM_TOP_HIDE)
324 /*
325 * Subtract specified amount of memory to hide so that it won't
326 * get "touched" at all by U-Boot. By fixing up gd->ram_size
327 * the Linux kernel should now get passed the now "corrected"
328 * memory size and won't touch it either. This should work
329 * for arch/ppc and arch/powerpc. Only Linux board ports in
330 * arch/powerpc with bootwrapper support, that recalculate the
331 * memory size from the SDRAM controller setup will have to
332 * get fixed.
333 */
334 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
335#endif
336
337 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
338
339#ifdef CONFIG_LOGBUFFER
340#ifndef CONFIG_ALT_LB_ADDR
341 /* reserve kernel log buffer */
342 addr -= (LOGBUFF_RESERVE);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000343 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
344 addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200345#endif
346#endif
347
348#ifdef CONFIG_PRAM
349 /*
350 * reserve protected RAM
351 */
Simon Glassdc8bbea2011-10-13 14:43:06 +0000352 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200353 addr -= (reg << 10); /* size is in kB */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000354 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200355#endif /* CONFIG_PRAM */
356
Aneesh Ve47f2db2011-06-16 23:30:48 +0000357#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200358 /* reserve TLB table */
Simon Glass34fd5d22012-12-13 20:48:39 +0000359 gd->arch.tlb_size = 4096 * 4;
360 addr -= gd->arch.tlb_size;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200361
362 /* round down to next 64 kB limit */
363 addr &= ~(0x10000 - 1);
364
Simon Glass34fd5d22012-12-13 20:48:39 +0000365 gd->arch.tlb_addr = addr;
366 debug("TLB table from %08lx to %08lx\n", addr, addr + gd->arch.tlb_size);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200367#endif
368
369 /* round down to next 4 kB limit */
370 addr &= ~(4096 - 1);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000371 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200372
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200373#ifdef CONFIG_LCD
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000374#ifdef CONFIG_FB_ADDR
375 gd->fb_base = CONFIG_FB_ADDR;
376#else
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200377 /* reserve memory for LCD display (always full pages) */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000378 addr = lcd_setmem(addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200379 gd->fb_base = addr;
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000380#endif /* CONFIG_FB_ADDR */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200381#endif /* CONFIG_LCD */
382
383 /*
384 * reserve memory for U-Boot code, data & bss
385 * round down to next 4 kB limit
386 */
387 addr -= gd->mon_len;
388 addr &= ~(4096 - 1);
389
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000390 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200391
Aneesh V401bb302011-07-13 05:11:07 +0000392#ifndef CONFIG_SPL_BUILD
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200393 /*
394 * reserve memory for malloc() arena
395 */
396 addr_sp = addr - TOTAL_MALLOC_LEN;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000397 debug("Reserving %dk for malloc() at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200398 TOTAL_MALLOC_LEN >> 10, addr_sp);
399 /*
400 * (permanently) allocate a Board Info struct
401 * and a permanent copy of the "global" data
402 */
403 addr_sp -= sizeof (bd_t);
404 bd = (bd_t *) addr_sp;
405 gd->bd = bd;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000406 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200407 sizeof (bd_t), addr_sp);
Igor Grinberg15c2e2c2011-08-16 23:48:23 +0000408
409#ifdef CONFIG_MACH_TYPE
410 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
411#endif
412
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200413 addr_sp -= sizeof (gd_t);
414 id = (gd_t *) addr_sp;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000415 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200416 sizeof (gd_t), addr_sp);
417
Simon Glass39826f02012-09-27 15:41:55 +0000418#if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL)
419 /*
420 * If the device tree is sitting immediate above our image then we
421 * must relocate it. If it is embedded in the data section, then it
422 * will be relocated with other data.
423 */
424 if (gd->fdt_blob) {
425 fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
426
427 addr_sp -= fdt_size;
428 new_fdt = (void *)addr_sp;
429 debug("Reserving %zu Bytes for FDT at: %08lx\n",
430 fdt_size, addr_sp);
431 }
432#endif
433
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200434 /* setup stackpointer for exeptions */
435 gd->irq_sp = addr_sp;
436#ifdef CONFIG_USE_IRQ
437 addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000438 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200439 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
440#endif
441 /* leave 3 words for abort-stack */
Eric Cooper6445a302011-04-14 12:32:37 +0000442 addr_sp -= 12;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200443
444 /* 8-byte alignment for ABI compliance */
445 addr_sp &= ~0x07;
446#else
447 addr_sp += 128; /* leave 32 words for abort-stack */
448 gd->irq_sp = addr_sp;
449#endif
450
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000451 debug("New Stack Pointer is: %08lx\n", addr_sp);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200452
453#ifdef CONFIG_POST
454 post_bootmode_init();
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000455 post_run(NULL, POST_ROM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200456#endif
457
458 gd->bd->bi_baudrate = gd->baudrate;
459 /* Ram ist board specific, so move it to board code ... */
460 dram_init_banksize();
461 display_dram_config(); /* and display it */
462
463 gd->relocaddr = addr;
464 gd->start_addr_sp = addr_sp;
465 gd->reloc_off = addr - _TEXT_BASE;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000466 debug("relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glass39826f02012-09-27 15:41:55 +0000467 if (new_fdt) {
468 memcpy(new_fdt, gd->fdt_blob, fdt_size);
469 gd->fdt_blob = new_fdt;
470 }
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000471 memcpy(id, (void *)gd, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200472}
473
474#if !defined(CONFIG_SYS_NO_FLASH)
475static char *failed = "*** failed ***\n";
476#endif
477
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000478/*
Simon Glass06fd8532012-11-30 13:01:17 +0000479 * Tell if it's OK to load the environment early in boot.
480 *
481 * If CONFIG_OF_CONFIG is defined, we'll check with the FDT to see
482 * if this is OK (defaulting to saying it's not OK).
483 *
484 * NOTE: Loading the environment early can be a bad idea if security is
485 * important, since no verification is done on the environment.
486 *
487 * @return 0 if environment should not be loaded, !=0 if it is ok to load
488 */
489static int should_load_env(void)
490{
491#ifdef CONFIG_OF_CONTROL
Lucas Stach4e5eb452013-01-22 00:15:49 +0000492 return fdtdec_get_config_int(gd->fdt_blob, "load-environment", 1);
Simon Glass06fd8532012-11-30 13:01:17 +0000493#elif defined CONFIG_DELAY_ENVIRONMENT
494 return 0;
495#else
496 return 1;
497#endif
498}
499
Simon Glasse2e3e2b2012-11-30 13:01:19 +0000500#if defined(CONFIG_DISPLAY_BOARDINFO_LATE) && defined(CONFIG_OF_CONTROL)
501static void display_fdt_model(const void *blob)
502{
503 const char *model;
504
505 model = (char *)fdt_getprop(blob, 0, "model", NULL);
506 printf("Model: %s\n", model ? model : "<unknown>");
507}
508#endif
509
Simon Glass06fd8532012-11-30 13:01:17 +0000510/************************************************************************
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200511 *
512 * This is the next part if the initialization sequence: we are now
513 * running from RAM and have a "normal" C environment, i. e. global
514 * data can be written, BSS has been cleared, the stack size in not
515 * that critical any more, etc.
516 *
517 ************************************************************************
518 */
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200519
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000520void board_init_r(gd_t *id, ulong dest_addr)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200521{
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200522 ulong malloc_start;
523#if !defined(CONFIG_SYS_NO_FLASH)
524 ulong flash_size;
525#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200526
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200527 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
Simon Glassf933e842012-02-13 13:51:21 +0000528 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200529
Po-Yu Chuangf326cbb2011-03-01 23:02:04 +0000530 monitor_flash_len = _end_ofs;
Aneesh Vcba4b182011-08-16 04:33:05 +0000531
532 /* Enable caches */
533 enable_caches();
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000534
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000535 debug("monitor flash len: %08lX\n", monitor_flash_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200536 board_init(); /* Setup chipselects */
Hadli, Manjunath8f5d4682012-02-06 00:30:44 +0000537 /*
538 * TODO: printing of the clock inforamtion of the board is now
539 * implemented as part of bdinfo command. Currently only support for
540 * davinci SOC's is added. Remove this check once all the board
541 * implement this.
542 */
543#ifdef CONFIG_CLOCKS
544 set_cpu_clk_info(); /* Setup clock information */
545#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200546 serial_initialize();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200547
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000548 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200549
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200550#ifdef CONFIG_LOGBUFFER
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000551 logbuff_init_ptrs();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200552#endif
553#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000554 post_output_backlog();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200555#endif
556
557 /* The Malloc area is immediately below the monitor copy in DRAM */
558 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
559 mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200560
Fabio Estevamd519b4b2012-04-02 11:19:45 +0000561#ifdef CONFIG_ARCH_EARLY_INIT_R
562 arch_early_init_r();
563#endif
Łukasz Majewski2ffb4be2012-11-13 03:21:56 +0000564 power_init_board();
Fabio Estevamd519b4b2012-04-02 11:19:45 +0000565
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200566#if !defined(CONFIG_SYS_NO_FLASH)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000567 puts("Flash: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200568
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000569 flash_size = flash_init();
570 if (flash_size > 0) {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200571# ifdef CONFIG_SYS_FLASH_CHECKSUM
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000572 print_size(flash_size, "");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200573 /*
574 * Compute and print flash CRC if flashchecksum is set to 'y'
575 *
576 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
577 */
Joe Hershbergerec8a2522012-12-11 22:16:22 -0600578 if (getenv_yesno("flashchecksum") == 1) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000579 printf(" CRC: %08X", crc32(0,
580 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
581 flash_size));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200582 }
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000583 putc('\n');
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200584# else /* !CONFIG_SYS_FLASH_CHECKSUM */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000585 print_size(flash_size, "\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200586# endif /* CONFIG_SYS_FLASH_CHECKSUM */
587 } else {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000588 puts(failed);
589 hang();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200590 }
591#endif
592
593#if defined(CONFIG_CMD_NAND)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000594 puts("NAND: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200595 nand_init(); /* go init the NAND */
596#endif
597
598#if defined(CONFIG_CMD_ONENAND)
599 onenand_init();
600#endif
601
Steve Sakomand470a6f2010-10-11 05:51:39 -0700602#ifdef CONFIG_GENERIC_MMC
Taylor Hutt80e40952012-11-30 13:01:23 +0000603 puts("MMC: ");
604 mmc_initialize(gd->bd);
Steve Sakomand470a6f2010-10-11 05:51:39 -0700605#endif
606
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200607#ifdef CONFIG_HAS_DATAFLASH
608 AT91F_DataflashInit();
609 dataflash_print_info();
610#endif
611
612 /* initialize environment */
Simon Glass06fd8532012-11-30 13:01:17 +0000613 if (should_load_env())
614 env_relocate();
615 else
616 set_default_env(NULL);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200617
Michael Schwingen1ed63c52011-05-23 00:00:13 +0200618#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
619 arm_pci_init();
620#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200621
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000622 stdio_init(); /* get the devices list going. */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200623
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000624 jumptable_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200625
626#if defined(CONFIG_API)
627 /* Initialize API */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000628 api_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200629#endif
630
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000631 console_init_r(); /* fully init console as a device */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200632
Simon Glasse2e3e2b2012-11-30 13:01:19 +0000633#ifdef CONFIG_DISPLAY_BOARDINFO_LATE
634# ifdef CONFIG_OF_CONTROL
635 /* Put this here so it appears on the LCD, now it is ready */
636 display_fdt_model(gd->fdt_blob);
637# else
638 checkboard();
639# endif
640#endif
641
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200642#if defined(CONFIG_ARCH_MISC_INIT)
643 /* miscellaneous arch dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000644 arch_misc_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200645#endif
646#if defined(CONFIG_MISC_INIT_R)
647 /* miscellaneous platform dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000648 misc_init_r();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200649#endif
650
651 /* set up exceptions */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000652 interrupt_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200653 /* enable exceptions */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000654 enable_interrupts();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200655
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200656 /* Initialize from environment */
Simon Glassdc8bbea2011-10-13 14:43:06 +0000657 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200658
Helmut Raiger9660e442011-10-20 04:19:47 +0000659#ifdef CONFIG_BOARD_LATE_INIT
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000660 board_late_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200661#endif
662
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200663#ifdef CONFIG_BITBANGMII
664 bb_miiphy_init();
665#endif
666#if defined(CONFIG_CMD_NET)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000667 puts("Net: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200668 eth_initialize(gd->bd);
669#if defined(CONFIG_RESET_PHY_R)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000670 debug("Reset Ethernet PHY\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200671 reset_phy();
672#endif
673#endif
674
675#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000676 post_run(NULL, POST_RAM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200677#endif
678
679#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
680 /*
681 * Export available size of memory for Linux,
682 * taking into account the protected RAM at top of memory
683 */
684 {
Simon Glassdc8bbea2011-10-13 14:43:06 +0000685 ulong pram = 0;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200686 uchar memsz[32];
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200687
Simon Glassdc8bbea2011-10-13 14:43:06 +0000688#ifdef CONFIG_PRAM
689 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200690#endif
691#ifdef CONFIG_LOGBUFFER
692#ifndef CONFIG_ALT_LB_ADDR
693 /* Also take the logbuffer into account (pram is in kB) */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000694 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200695#endif
696#endif
Heiko Schocherb2b8f982011-06-02 22:11:37 +0000697 sprintf((char *)memsz, "%ldk", (gd->ram_size / 1024) - pram);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000698 setenv("mem", (char *)memsz);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200699 }
700#endif
701
702 /* main_loop() can return to retry autoboot, if so just run it again. */
703 for (;;) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000704 main_loop();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200705 }
706
707 /* NOTREACHED - no way out of command loop except booting */
708}
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200709
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000710void hang(void)
wdenkc6097192002-11-03 00:24:07 +0000711{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000712 puts("### ERROR ### Please RESET the board ###\n");
wdenkc6097192002-11-03 00:24:07 +0000713 for (;;);
714}