blob: 5360883db7dc1df94c69270215d39666daab76e7 [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) || \
Heiko Schocher3f4978c2012-01-16 21:12:24 +000072 defined(CONFIG_SYS_I2C)
Hebbarf7ad79b2007-12-18 16:00:54 -080073#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
Heiko Schocherea818db2013-01-29 08:53:15 +0100168#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_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: ");
Heiko Schocher3f4978c2012-01-16 21:12:24 +0000172#ifdef CONFIG_SYS_I2C
173 i2c_init_all();
174#else
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000175 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
Heiko Schocher3f4978c2012-01-16 21:12:24 +0000176#endif
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000177 puts("ready\n");
Hebbarf7ad79b2007-12-18 16:00:54 -0800178 return (0);
179}
180#endif
181
Jean-Christophe PLAGNIOL-VILLARDf90c8022009-01-31 09:04:58 +0100182#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
183#include <pci.h>
184static int arm_pci_init(void)
185{
186 pci_init();
187 return 0;
188}
189#endif /* CONFIG_CMD_PCI || CONFIG_PCI */
190
wdenkc6097192002-11-03 00:24:07 +0000191/*
wdenka8c7c702003-12-06 19:49:23 +0000192 * Breathe some life into the board...
wdenkc6097192002-11-03 00:24:07 +0000193 *
wdenkb0639ca2003-09-17 22:48:07 +0000194 * Initialize a serial port as console, and carry out some hardware
wdenkc6097192002-11-03 00:24:07 +0000195 * tests.
196 *
197 * The first part of initialization is running from Flash memory;
198 * its main purpose is to initialize the RAM so that we
199 * can relocate the monitor code to RAM.
200 */
201
202/*
203 * All attempts to come up with a "common" initialization sequence
204 * that works for all boards and architectures failed: some of the
205 * requirements are just _too_ different. To get rid of the resulting
wdenkf6e20fc2004-02-08 19:38:38 +0000206 * mess of board dependent #ifdef'ed code we now make the whole
wdenkc6097192002-11-03 00:24:07 +0000207 * initialization sequence configurable to the user.
208 *
209 * The requirements for any new initalization function is simple: it
210 * receives a pointer to the "global data" structure as it's only
211 * argument, and returns an integer return code, where 0 means
212 * "continue" and != 0 means "fatal error, hang the system".
213 */
214typedef int (init_fnc_t) (void);
215
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000216int print_cpuinfo(void);
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100217
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200218void __dram_init_banksize(void)
219{
220 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
221 gd->bd->bi_dram[0].size = gd->ram_size;
222}
223void dram_init_banksize(void)
224 __attribute__((weak, alias("__dram_init_banksize")));
225
Fabio Estevama21c6512012-03-01 04:02:38 +0000226int __arch_cpu_init(void)
227{
228 return 0;
229}
230int arch_cpu_init(void)
231 __attribute__((weak, alias("__arch_cpu_init")));
232
Łukasz Majewski2ffb4be2012-11-13 03:21:56 +0000233int __power_init_board(void)
234{
235 return 0;
236}
237int power_init_board(void)
238 __attribute__((weak, alias("__power_init_board")));
239
Simon Glass2f8d8d62012-11-30 13:01:22 +0000240 /* Record the board_init_f() bootstage (after arch_cpu_init()) */
241static int mark_bootstage(void)
242{
243 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
244
245 return 0;
246}
247
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200248init_fnc_t *init_sequence[] = {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200249 arch_cpu_init, /* basic arch cpu dependent setup */
Simon Glass2f8d8d62012-11-30 13:01:22 +0000250 mark_bootstage,
Simon Glassf5437ad2011-10-24 19:15:33 +0000251#ifdef CONFIG_OF_CONTROL
252 fdtdec_check_fdt,
253#endif
Simon Glasseae78c32012-11-30 13:01:16 +0000254#if defined(CONFIG_BOARD_EARLY_INIT_F)
255 board_early_init_f,
256#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200257 timer_init, /* initialize timer */
Markus Hubige23e5ee2012-08-16 08:22:08 +0000258#ifdef CONFIG_BOARD_POSTCLK_INIT
259 board_postclk_init,
260#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200261#ifdef CONFIG_FSL_ESDHC
262 get_clocks,
263#endif
264 env_init, /* initialize environment */
265 init_baudrate, /* initialze baudrate settings */
266 serial_init, /* serial communications setup */
267 console_init_f, /* stage 1 init of console */
268 display_banner, /* say that we are here */
269#if defined(CONFIG_DISPLAY_CPUINFO)
270 print_cpuinfo, /* display cpu info (and speed) */
271#endif
272#if defined(CONFIG_DISPLAY_BOARDINFO)
273 checkboard, /* display board info */
274#endif
Heiko Schocherea818db2013-01-29 08:53:15 +0100275#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200276 init_func_i2c,
277#endif
278 dram_init, /* configure available RAM banks */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200279 NULL,
280};
281
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000282void board_init_f(ulong bootflag)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200283{
284 bd_t *bd;
285 init_fnc_t **init_fnc_ptr;
286 gd_t *id;
287 ulong addr, addr_sp;
Simon Glassdc8bbea2011-10-13 14:43:06 +0000288#ifdef CONFIG_PRAM
289 ulong reg;
290#endif
Simon Glass39826f02012-09-27 15:41:55 +0000291 void *new_fdt = NULL;
292 size_t fdt_size = 0;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200293
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000294 memset((void *)gd, 0, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200295
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200296 gd->mon_len = _bss_end_ofs;
Simon Glassf5437ad2011-10-24 19:15:33 +0000297#ifdef CONFIG_OF_EMBED
298 /* Get a pointer to the FDT */
299 gd->fdt_blob = _binary_dt_dtb_start;
300#elif defined CONFIG_OF_SEPARATE
301 /* FDT is at end of image */
302 gd->fdt_blob = (void *)(_end_ofs + _TEXT_BASE);
303#endif
Simon Glasseea63e02011-10-24 19:15:34 +0000304 /* Allow the early environment to override the fdt address */
305 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
306 (uintptr_t)gd->fdt_blob);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200307
308 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
309 if ((*init_fnc_ptr)() != 0) {
310 hang ();
311 }
312 }
313
Simon Glass28669032012-03-28 10:08:25 +0000314#ifdef CONFIG_OF_CONTROL
315 /* For now, put this check after the console is ready */
316 if (fdtdec_prepare_fdt()) {
317 panic("** CONFIG_OF_CONTROL defined but no FDT - please see "
318 "doc/README.fdt-control");
319 }
320#endif
321
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000322 debug("monitor len: %08lX\n", gd->mon_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200323 /*
324 * Ram is setup, size stored in gd !!
325 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000326 debug("ramsize: %08lX\n", gd->ram_size);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200327#if defined(CONFIG_SYS_MEM_TOP_HIDE)
328 /*
329 * Subtract specified amount of memory to hide so that it won't
330 * get "touched" at all by U-Boot. By fixing up gd->ram_size
331 * the Linux kernel should now get passed the now "corrected"
332 * memory size and won't touch it either. This should work
333 * for arch/ppc and arch/powerpc. Only Linux board ports in
334 * arch/powerpc with bootwrapper support, that recalculate the
335 * memory size from the SDRAM controller setup will have to
336 * get fixed.
337 */
338 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
339#endif
340
341 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
342
343#ifdef CONFIG_LOGBUFFER
344#ifndef CONFIG_ALT_LB_ADDR
345 /* reserve kernel log buffer */
346 addr -= (LOGBUFF_RESERVE);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000347 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
348 addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200349#endif
350#endif
351
352#ifdef CONFIG_PRAM
353 /*
354 * reserve protected RAM
355 */
Simon Glassdc8bbea2011-10-13 14:43:06 +0000356 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200357 addr -= (reg << 10); /* size is in kB */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000358 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200359#endif /* CONFIG_PRAM */
360
Aneesh Ve47f2db2011-06-16 23:30:48 +0000361#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200362 /* reserve TLB table */
Simon Glass34fd5d22012-12-13 20:48:39 +0000363 gd->arch.tlb_size = 4096 * 4;
364 addr -= gd->arch.tlb_size;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200365
366 /* round down to next 64 kB limit */
367 addr &= ~(0x10000 - 1);
368
Simon Glass34fd5d22012-12-13 20:48:39 +0000369 gd->arch.tlb_addr = addr;
370 debug("TLB table from %08lx to %08lx\n", addr, addr + gd->arch.tlb_size);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200371#endif
372
373 /* round down to next 4 kB limit */
374 addr &= ~(4096 - 1);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000375 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200376
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200377#ifdef CONFIG_LCD
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000378#ifdef CONFIG_FB_ADDR
379 gd->fb_base = CONFIG_FB_ADDR;
380#else
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200381 /* reserve memory for LCD display (always full pages) */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000382 addr = lcd_setmem(addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200383 gd->fb_base = addr;
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000384#endif /* CONFIG_FB_ADDR */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200385#endif /* CONFIG_LCD */
386
387 /*
388 * reserve memory for U-Boot code, data & bss
389 * round down to next 4 kB limit
390 */
391 addr -= gd->mon_len;
392 addr &= ~(4096 - 1);
393
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000394 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200395
Aneesh V401bb302011-07-13 05:11:07 +0000396#ifndef CONFIG_SPL_BUILD
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200397 /*
398 * reserve memory for malloc() arena
399 */
400 addr_sp = addr - TOTAL_MALLOC_LEN;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000401 debug("Reserving %dk for malloc() at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200402 TOTAL_MALLOC_LEN >> 10, addr_sp);
403 /*
404 * (permanently) allocate a Board Info struct
405 * and a permanent copy of the "global" data
406 */
407 addr_sp -= sizeof (bd_t);
408 bd = (bd_t *) addr_sp;
409 gd->bd = bd;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000410 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200411 sizeof (bd_t), addr_sp);
Igor Grinberg15c2e2c2011-08-16 23:48:23 +0000412
413#ifdef CONFIG_MACH_TYPE
414 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
415#endif
416
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200417 addr_sp -= sizeof (gd_t);
418 id = (gd_t *) addr_sp;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000419 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200420 sizeof (gd_t), addr_sp);
421
Simon Glass39826f02012-09-27 15:41:55 +0000422#if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL)
423 /*
424 * If the device tree is sitting immediate above our image then we
425 * must relocate it. If it is embedded in the data section, then it
426 * will be relocated with other data.
427 */
428 if (gd->fdt_blob) {
429 fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
430
431 addr_sp -= fdt_size;
432 new_fdt = (void *)addr_sp;
433 debug("Reserving %zu Bytes for FDT at: %08lx\n",
434 fdt_size, addr_sp);
435 }
436#endif
437
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200438 /* setup stackpointer for exeptions */
439 gd->irq_sp = addr_sp;
440#ifdef CONFIG_USE_IRQ
441 addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000442 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200443 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
444#endif
445 /* leave 3 words for abort-stack */
Eric Cooper6445a302011-04-14 12:32:37 +0000446 addr_sp -= 12;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200447
448 /* 8-byte alignment for ABI compliance */
449 addr_sp &= ~0x07;
450#else
451 addr_sp += 128; /* leave 32 words for abort-stack */
452 gd->irq_sp = addr_sp;
453#endif
454
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000455 debug("New Stack Pointer is: %08lx\n", addr_sp);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200456
457#ifdef CONFIG_POST
458 post_bootmode_init();
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000459 post_run(NULL, POST_ROM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200460#endif
461
462 gd->bd->bi_baudrate = gd->baudrate;
463 /* Ram ist board specific, so move it to board code ... */
464 dram_init_banksize();
465 display_dram_config(); /* and display it */
466
467 gd->relocaddr = addr;
468 gd->start_addr_sp = addr_sp;
469 gd->reloc_off = addr - _TEXT_BASE;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000470 debug("relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glass39826f02012-09-27 15:41:55 +0000471 if (new_fdt) {
472 memcpy(new_fdt, gd->fdt_blob, fdt_size);
473 gd->fdt_blob = new_fdt;
474 }
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000475 memcpy(id, (void *)gd, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200476}
477
478#if !defined(CONFIG_SYS_NO_FLASH)
479static char *failed = "*** failed ***\n";
480#endif
481
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000482/*
Simon Glass06fd8532012-11-30 13:01:17 +0000483 * Tell if it's OK to load the environment early in boot.
484 *
485 * If CONFIG_OF_CONFIG is defined, we'll check with the FDT to see
486 * if this is OK (defaulting to saying it's not OK).
487 *
488 * NOTE: Loading the environment early can be a bad idea if security is
489 * important, since no verification is done on the environment.
490 *
491 * @return 0 if environment should not be loaded, !=0 if it is ok to load
492 */
493static int should_load_env(void)
494{
495#ifdef CONFIG_OF_CONTROL
Lucas Stach4e5eb452013-01-22 00:15:49 +0000496 return fdtdec_get_config_int(gd->fdt_blob, "load-environment", 1);
Simon Glass06fd8532012-11-30 13:01:17 +0000497#elif defined CONFIG_DELAY_ENVIRONMENT
498 return 0;
499#else
500 return 1;
501#endif
502}
503
Simon Glasse2e3e2b2012-11-30 13:01:19 +0000504#if defined(CONFIG_DISPLAY_BOARDINFO_LATE) && defined(CONFIG_OF_CONTROL)
505static void display_fdt_model(const void *blob)
506{
507 const char *model;
508
509 model = (char *)fdt_getprop(blob, 0, "model", NULL);
510 printf("Model: %s\n", model ? model : "<unknown>");
511}
512#endif
513
Simon Glass06fd8532012-11-30 13:01:17 +0000514/************************************************************************
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200515 *
516 * This is the next part if the initialization sequence: we are now
517 * running from RAM and have a "normal" C environment, i. e. global
518 * data can be written, BSS has been cleared, the stack size in not
519 * that critical any more, etc.
520 *
521 ************************************************************************
522 */
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200523
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000524void board_init_r(gd_t *id, ulong dest_addr)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200525{
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200526 ulong malloc_start;
527#if !defined(CONFIG_SYS_NO_FLASH)
528 ulong flash_size;
529#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200530
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200531 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
Simon Glassf933e842012-02-13 13:51:21 +0000532 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200533
Po-Yu Chuangf326cbb2011-03-01 23:02:04 +0000534 monitor_flash_len = _end_ofs;
Aneesh Vcba4b182011-08-16 04:33:05 +0000535
536 /* Enable caches */
537 enable_caches();
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000538
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000539 debug("monitor flash len: %08lX\n", monitor_flash_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200540 board_init(); /* Setup chipselects */
Hadli, Manjunath8f5d4682012-02-06 00:30:44 +0000541 /*
542 * TODO: printing of the clock inforamtion of the board is now
543 * implemented as part of bdinfo command. Currently only support for
544 * davinci SOC's is added. Remove this check once all the board
545 * implement this.
546 */
547#ifdef CONFIG_CLOCKS
548 set_cpu_clk_info(); /* Setup clock information */
549#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200550 serial_initialize();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200551
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000552 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200553
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200554#ifdef CONFIG_LOGBUFFER
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000555 logbuff_init_ptrs();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200556#endif
557#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000558 post_output_backlog();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200559#endif
560
561 /* The Malloc area is immediately below the monitor copy in DRAM */
562 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
563 mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200564
Fabio Estevamd519b4b2012-04-02 11:19:45 +0000565#ifdef CONFIG_ARCH_EARLY_INIT_R
566 arch_early_init_r();
567#endif
Łukasz Majewski2ffb4be2012-11-13 03:21:56 +0000568 power_init_board();
Fabio Estevamd519b4b2012-04-02 11:19:45 +0000569
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200570#if !defined(CONFIG_SYS_NO_FLASH)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000571 puts("Flash: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200572
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000573 flash_size = flash_init();
574 if (flash_size > 0) {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200575# ifdef CONFIG_SYS_FLASH_CHECKSUM
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000576 print_size(flash_size, "");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200577 /*
578 * Compute and print flash CRC if flashchecksum is set to 'y'
579 *
580 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
581 */
Joe Hershbergerec8a2522012-12-11 22:16:22 -0600582 if (getenv_yesno("flashchecksum") == 1) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000583 printf(" CRC: %08X", crc32(0,
584 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
585 flash_size));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200586 }
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000587 putc('\n');
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200588# else /* !CONFIG_SYS_FLASH_CHECKSUM */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000589 print_size(flash_size, "\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200590# endif /* CONFIG_SYS_FLASH_CHECKSUM */
591 } else {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000592 puts(failed);
593 hang();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200594 }
595#endif
596
597#if defined(CONFIG_CMD_NAND)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000598 puts("NAND: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200599 nand_init(); /* go init the NAND */
600#endif
601
602#if defined(CONFIG_CMD_ONENAND)
603 onenand_init();
604#endif
605
Steve Sakomand470a6f2010-10-11 05:51:39 -0700606#ifdef CONFIG_GENERIC_MMC
Taylor Hutt80e40952012-11-30 13:01:23 +0000607 puts("MMC: ");
608 mmc_initialize(gd->bd);
Steve Sakomand470a6f2010-10-11 05:51:39 -0700609#endif
610
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200611#ifdef CONFIG_HAS_DATAFLASH
612 AT91F_DataflashInit();
613 dataflash_print_info();
614#endif
615
616 /* initialize environment */
Simon Glass06fd8532012-11-30 13:01:17 +0000617 if (should_load_env())
618 env_relocate();
619 else
620 set_default_env(NULL);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200621
Michael Schwingen1ed63c52011-05-23 00:00:13 +0200622#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
623 arm_pci_init();
624#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200625
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000626 stdio_init(); /* get the devices list going. */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200627
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000628 jumptable_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200629
630#if defined(CONFIG_API)
631 /* Initialize API */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000632 api_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200633#endif
634
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000635 console_init_r(); /* fully init console as a device */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200636
Simon Glasse2e3e2b2012-11-30 13:01:19 +0000637#ifdef CONFIG_DISPLAY_BOARDINFO_LATE
638# ifdef CONFIG_OF_CONTROL
639 /* Put this here so it appears on the LCD, now it is ready */
640 display_fdt_model(gd->fdt_blob);
641# else
642 checkboard();
643# endif
644#endif
645
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200646#if defined(CONFIG_ARCH_MISC_INIT)
647 /* miscellaneous arch dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000648 arch_misc_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200649#endif
650#if defined(CONFIG_MISC_INIT_R)
651 /* miscellaneous platform dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000652 misc_init_r();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200653#endif
654
655 /* set up exceptions */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000656 interrupt_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200657 /* enable exceptions */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000658 enable_interrupts();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200659
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200660 /* Initialize from environment */
Simon Glassdc8bbea2011-10-13 14:43:06 +0000661 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200662
Helmut Raiger9660e442011-10-20 04:19:47 +0000663#ifdef CONFIG_BOARD_LATE_INIT
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000664 board_late_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200665#endif
666
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200667#ifdef CONFIG_BITBANGMII
668 bb_miiphy_init();
669#endif
670#if defined(CONFIG_CMD_NET)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000671 puts("Net: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200672 eth_initialize(gd->bd);
673#if defined(CONFIG_RESET_PHY_R)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000674 debug("Reset Ethernet PHY\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200675 reset_phy();
676#endif
677#endif
678
679#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000680 post_run(NULL, POST_RAM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200681#endif
682
683#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
684 /*
685 * Export available size of memory for Linux,
686 * taking into account the protected RAM at top of memory
687 */
688 {
Simon Glassdc8bbea2011-10-13 14:43:06 +0000689 ulong pram = 0;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200690 uchar memsz[32];
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200691
Simon Glassdc8bbea2011-10-13 14:43:06 +0000692#ifdef CONFIG_PRAM
693 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200694#endif
695#ifdef CONFIG_LOGBUFFER
696#ifndef CONFIG_ALT_LB_ADDR
697 /* Also take the logbuffer into account (pram is in kB) */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000698 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200699#endif
700#endif
Heiko Schocherb2b8f982011-06-02 22:11:37 +0000701 sprintf((char *)memsz, "%ldk", (gd->ram_size / 1024) - pram);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000702 setenv("mem", (char *)memsz);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200703 }
704#endif
705
706 /* main_loop() can return to retry autoboot, if so just run it again. */
707 for (;;) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000708 main_loop();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200709 }
710
711 /* NOTREACHED - no way out of command loop except booting */
712}