blob: 5270c112626a85ff7e2ae31d72e34a855fdacabc [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>
wdenk3595ac42003-06-22 17:18:28 +000043#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020044#include <stdio_dev.h>
wdenkc6097192002-11-03 00:24:07 +000045#include <version.h>
46#include <net.h>
Marcel Ziswilerb71190f2008-05-01 09:05:26 +020047#include <serial.h>
Scott Woodd6ac2ed2008-05-22 10:49:46 -050048#include <nand.h>
49#include <onenand_uboot.h>
Ilya Yanok379e9fc2009-06-08 04:12:50 +040050#include <mmc.h>
Simon Glassf5437ad2011-10-24 19:15:33 +000051#include <libfdt.h>
52#include <fdtdec.h>
Valentin Longchampea3681a2011-09-02 04:59:03 +000053#include <post.h>
54#include <logbuff.h>
wdenkc6097192002-11-03 00:24:07 +000055
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020056#ifdef CONFIG_BITBANGMII
57#include <miiphy.h>
58#endif
59
wdenkf39748a2004-06-09 13:37:52 +000060#ifdef CONFIG_DRIVER_SMC91111
Jean-Christophe PLAGNIOL-VILLARD2439e4b2007-11-21 21:19:24 +010061#include "../drivers/net/smc91111.h"
wdenkf39748a2004-06-09 13:37:52 +000062#endif
63#ifdef CONFIG_DRIVER_LAN91C96
Jean-Christophe PLAGNIOL-VILLARD2439e4b2007-11-21 21:19:24 +010064#include "../drivers/net/lan91c96.h"
wdenkf39748a2004-06-09 13:37:52 +000065#endif
66
Markus Klotzbücherb2b43462006-02-10 11:25:41 +010067DECLARE_GLOBAL_DATA_PTR;
68
wdenk3b57fe02003-05-30 12:48:29 +000069ulong monitor_flash_len;
70
wdenk2abbe072003-06-16 23:50:08 +000071#ifdef CONFIG_HAS_DATAFLASH
72extern int AT91F_DataflashInit(void);
73extern void dataflash_print_info(void);
74#endif
75
Hebbarf7ad79b2007-12-18 16:00:54 -080076#if defined(CONFIG_HARD_I2C) || \
77 defined(CONFIG_SOFT_I2C)
78#include <i2c.h>
79#endif
80
wdenkc6097192002-11-03 00:24:07 +000081/************************************************************************
Peter Pearse9f5c3d32007-09-04 16:18:38 +010082 * Coloured LED functionality
83 ************************************************************************
84 * May be supplied by boards if desired
85 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +000086inline void __coloured_LED_init(void) {}
87void coloured_LED_init(void)
88 __attribute__((weak, alias("__coloured_LED_init")));
Jason Kridner2d3be7c2011-09-04 14:40:16 -040089inline void __red_led_on(void) {}
90void red_led_on(void) __attribute__((weak, alias("__red_led_on")));
91inline void __red_led_off(void) {}
92void red_led_off(void) __attribute__((weak, alias("__red_led_off")));
93inline void __green_led_on(void) {}
94void green_led_on(void) __attribute__((weak, alias("__green_led_on")));
95inline void __green_led_off(void) {}
96void green_led_off(void) __attribute__((weak, alias("__green_led_off")));
97inline void __yellow_led_on(void) {}
98void yellow_led_on(void) __attribute__((weak, alias("__yellow_led_on")));
99inline void __yellow_led_off(void) {}
100void yellow_led_off(void) __attribute__((weak, alias("__yellow_led_off")));
101inline void __blue_led_on(void) {}
102void blue_led_on(void) __attribute__((weak, alias("__blue_led_on")));
103inline void __blue_led_off(void) {}
104void blue_led_off(void) __attribute__((weak, alias("__blue_led_off")));
Peter Pearse9f5c3d32007-09-04 16:18:38 +0100105
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000106/*
107 ************************************************************************
wdenkc6097192002-11-03 00:24:07 +0000108 * Init Utilities *
109 ************************************************************************
110 * Some of this code should be moved into the core functions,
111 * or dropped completely,
112 * but let's get it working (again) first...
113 */
114
Jean-Christophe PLAGNIOL-VILLARD4f572892009-02-22 15:49:28 +0100115#if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
116#define CONFIG_BAUDRATE 115200
117#endif
Simon Glassdc8bbea2011-10-13 14:43:06 +0000118
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000119static int init_baudrate(void)
wdenkc6097192002-11-03 00:24:07 +0000120{
Simon Glassdc8bbea2011-10-13 14:43:06 +0000121 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
122 return 0;
wdenkc6097192002-11-03 00:24:07 +0000123}
124
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000125static int display_banner(void)
wdenkc6097192002-11-03 00:24:07 +0000126{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000127 printf("\n\n%s\n\n", version_string);
128 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200129 _TEXT_BASE,
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000130 _bss_start_ofs + _TEXT_BASE, _bss_end_ofs + _TEXT_BASE);
wdenkc6097192002-11-03 00:24:07 +0000131#ifdef CONFIG_MODEM_SUPPORT
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000132 debug("Modem Support enabled\n");
wdenkc6097192002-11-03 00:24:07 +0000133#endif
134#ifdef CONFIG_USE_IRQ
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000135 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
136 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
wdenkc6097192002-11-03 00:24:07 +0000137#endif
wdenkf72da342003-10-10 10:05:42 +0000138
wdenkc6097192002-11-03 00:24:07 +0000139 return (0);
140}
141
142/*
143 * WARNING: this code looks "cleaner" than the PowerPC version, but
144 * has the disadvantage that you either get nothing, or everything.
145 * On PowerPC, you might see "DRAM: " before the system hangs - which
146 * gives a simple yet clear indication which part of the
147 * initialization if failing.
148 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000149static int display_dram_config(void)
wdenkc6097192002-11-03 00:24:07 +0000150{
wdenkc6097192002-11-03 00:24:07 +0000151 int i;
152
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100153#ifdef DEBUG
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000154 puts("RAM Configuration:\n");
wdenkc6097192002-11-03 00:24:07 +0000155
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000156 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
157 printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
158 print_size(gd->bd->bi_dram[i].size, "\n");
wdenkc6097192002-11-03 00:24:07 +0000159 }
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100160#else
161 ulong size = 0;
162
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000163 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100164 size += gd->bd->bi_dram[i].size;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000165
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100166 puts("DRAM: ");
167 print_size(size, "\n");
168#endif
wdenkc6097192002-11-03 00:24:07 +0000169
170 return (0);
171}
172
Hebbarf7ad79b2007-12-18 16:00:54 -0800173#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000174static int init_func_i2c(void)
Hebbarf7ad79b2007-12-18 16:00:54 -0800175{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000176 puts("I2C: ");
177 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
178 puts("ready\n");
Hebbarf7ad79b2007-12-18 16:00:54 -0800179 return (0);
180}
181#endif
182
Jean-Christophe PLAGNIOL-VILLARDf90c8022009-01-31 09:04:58 +0100183#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
184#include <pci.h>
185static int arm_pci_init(void)
186{
187 pci_init();
188 return 0;
189}
190#endif /* CONFIG_CMD_PCI || CONFIG_PCI */
191
wdenkc6097192002-11-03 00:24:07 +0000192/*
wdenka8c7c702003-12-06 19:49:23 +0000193 * Breathe some life into the board...
wdenkc6097192002-11-03 00:24:07 +0000194 *
wdenkb0639ca2003-09-17 22:48:07 +0000195 * Initialize a serial port as console, and carry out some hardware
wdenkc6097192002-11-03 00:24:07 +0000196 * tests.
197 *
198 * The first part of initialization is running from Flash memory;
199 * its main purpose is to initialize the RAM so that we
200 * can relocate the monitor code to RAM.
201 */
202
203/*
204 * All attempts to come up with a "common" initialization sequence
205 * that works for all boards and architectures failed: some of the
206 * requirements are just _too_ different. To get rid of the resulting
wdenkf6e20fc2004-02-08 19:38:38 +0000207 * mess of board dependent #ifdef'ed code we now make the whole
wdenkc6097192002-11-03 00:24:07 +0000208 * initialization sequence configurable to the user.
209 *
210 * The requirements for any new initalization function is simple: it
211 * receives a pointer to the "global data" structure as it's only
212 * argument, and returns an integer return code, where 0 means
213 * "continue" and != 0 means "fatal error, hang the system".
214 */
215typedef int (init_fnc_t) (void);
216
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000217int print_cpuinfo(void);
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100218
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200219void __dram_init_banksize(void)
220{
221 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
222 gd->bd->bi_dram[0].size = gd->ram_size;
223}
224void dram_init_banksize(void)
225 __attribute__((weak, alias("__dram_init_banksize")));
226
227init_fnc_t *init_sequence[] = {
228#if defined(CONFIG_ARCH_CPU_INIT)
229 arch_cpu_init, /* basic arch cpu dependent setup */
230#endif
231#if defined(CONFIG_BOARD_EARLY_INIT_F)
232 board_early_init_f,
233#endif
Simon Glassf5437ad2011-10-24 19:15:33 +0000234#ifdef CONFIG_OF_CONTROL
235 fdtdec_check_fdt,
236#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200237 timer_init, /* initialize timer */
238#ifdef CONFIG_FSL_ESDHC
239 get_clocks,
240#endif
241 env_init, /* initialize environment */
242 init_baudrate, /* initialze baudrate settings */
243 serial_init, /* serial communications setup */
244 console_init_f, /* stage 1 init of console */
245 display_banner, /* say that we are here */
246#if defined(CONFIG_DISPLAY_CPUINFO)
247 print_cpuinfo, /* display cpu info (and speed) */
248#endif
249#if defined(CONFIG_DISPLAY_BOARDINFO)
250 checkboard, /* display board info */
251#endif
252#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
253 init_func_i2c,
254#endif
255 dram_init, /* configure available RAM banks */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200256 NULL,
257};
258
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000259void board_init_f(ulong bootflag)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200260{
261 bd_t *bd;
262 init_fnc_t **init_fnc_ptr;
263 gd_t *id;
264 ulong addr, addr_sp;
Simon Glassdc8bbea2011-10-13 14:43:06 +0000265#ifdef CONFIG_PRAM
266 ulong reg;
267#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200268
Simon Glassf933e842012-02-13 13:51:21 +0000269 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
270
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200271 /* Pointer is writable since we allocated a register for it */
Heiko Schocher296cae72010-11-12 07:53:55 +0100272 gd = (gd_t *) ((CONFIG_SYS_INIT_SP_ADDR) & ~0x07);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200273 /* compiler optimization barrier needed for GCC >= 3.4 */
274 __asm__ __volatile__("": : :"memory");
275
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000276 memset((void *)gd, 0, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200277
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200278 gd->mon_len = _bss_end_ofs;
Simon Glassf5437ad2011-10-24 19:15:33 +0000279#ifdef CONFIG_OF_EMBED
280 /* Get a pointer to the FDT */
281 gd->fdt_blob = _binary_dt_dtb_start;
282#elif defined CONFIG_OF_SEPARATE
283 /* FDT is at end of image */
284 gd->fdt_blob = (void *)(_end_ofs + _TEXT_BASE);
285#endif
Simon Glasseea63e02011-10-24 19:15:34 +0000286 /* Allow the early environment to override the fdt address */
287 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
288 (uintptr_t)gd->fdt_blob);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200289
290 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
291 if ((*init_fnc_ptr)() != 0) {
292 hang ();
293 }
294 }
295
Simon Glass28669032012-03-28 10:08:25 +0000296#ifdef CONFIG_OF_CONTROL
297 /* For now, put this check after the console is ready */
298 if (fdtdec_prepare_fdt()) {
299 panic("** CONFIG_OF_CONTROL defined but no FDT - please see "
300 "doc/README.fdt-control");
301 }
302#endif
303
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000304 debug("monitor len: %08lX\n", gd->mon_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200305 /*
306 * Ram is setup, size stored in gd !!
307 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000308 debug("ramsize: %08lX\n", gd->ram_size);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200309#if defined(CONFIG_SYS_MEM_TOP_HIDE)
310 /*
311 * Subtract specified amount of memory to hide so that it won't
312 * get "touched" at all by U-Boot. By fixing up gd->ram_size
313 * the Linux kernel should now get passed the now "corrected"
314 * memory size and won't touch it either. This should work
315 * for arch/ppc and arch/powerpc. Only Linux board ports in
316 * arch/powerpc with bootwrapper support, that recalculate the
317 * memory size from the SDRAM controller setup will have to
318 * get fixed.
319 */
320 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
321#endif
322
323 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
324
325#ifdef CONFIG_LOGBUFFER
326#ifndef CONFIG_ALT_LB_ADDR
327 /* reserve kernel log buffer */
328 addr -= (LOGBUFF_RESERVE);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000329 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
330 addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200331#endif
332#endif
333
334#ifdef CONFIG_PRAM
335 /*
336 * reserve protected RAM
337 */
Simon Glassdc8bbea2011-10-13 14:43:06 +0000338 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200339 addr -= (reg << 10); /* size is in kB */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000340 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200341#endif /* CONFIG_PRAM */
342
Aneesh Ve47f2db2011-06-16 23:30:48 +0000343#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200344 /* reserve TLB table */
345 addr -= (4096 * 4);
346
347 /* round down to next 64 kB limit */
348 addr &= ~(0x10000 - 1);
349
350 gd->tlb_addr = addr;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000351 debug("TLB table at: %08lx\n", addr);
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
403 /* setup stackpointer for exeptions */
404 gd->irq_sp = addr_sp;
405#ifdef CONFIG_USE_IRQ
406 addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000407 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200408 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
409#endif
410 /* leave 3 words for abort-stack */
Eric Cooper6445a302011-04-14 12:32:37 +0000411 addr_sp -= 12;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200412
413 /* 8-byte alignment for ABI compliance */
414 addr_sp &= ~0x07;
415#else
416 addr_sp += 128; /* leave 32 words for abort-stack */
417 gd->irq_sp = addr_sp;
418#endif
419
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000420 debug("New Stack Pointer is: %08lx\n", addr_sp);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200421
422#ifdef CONFIG_POST
423 post_bootmode_init();
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000424 post_run(NULL, POST_ROM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200425#endif
426
427 gd->bd->bi_baudrate = gd->baudrate;
428 /* Ram ist board specific, so move it to board code ... */
429 dram_init_banksize();
430 display_dram_config(); /* and display it */
431
432 gd->relocaddr = addr;
433 gd->start_addr_sp = addr_sp;
434 gd->reloc_off = addr - _TEXT_BASE;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000435 debug("relocation Offset is: %08lx\n", gd->reloc_off);
436 memcpy(id, (void *)gd, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200437
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000438 relocate_code(addr_sp, id, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200439
440 /* NOTREACHED - relocate_code() does not return */
441}
442
443#if !defined(CONFIG_SYS_NO_FLASH)
444static char *failed = "*** failed ***\n";
445#endif
446
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000447/*
448 ************************************************************************
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200449 *
450 * This is the next part if the initialization sequence: we are now
451 * running from RAM and have a "normal" C environment, i. e. global
452 * data can be written, BSS has been cleared, the stack size in not
453 * that critical any more, etc.
454 *
455 ************************************************************************
456 */
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200457
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000458void board_init_r(gd_t *id, ulong dest_addr)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200459{
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200460 ulong malloc_start;
461#if !defined(CONFIG_SYS_NO_FLASH)
462 ulong flash_size;
463#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200464
465 gd = id;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200466
467 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
Simon Glassf933e842012-02-13 13:51:21 +0000468 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200469
Po-Yu Chuangf326cbb2011-03-01 23:02:04 +0000470 monitor_flash_len = _end_ofs;
Aneesh Vcba4b182011-08-16 04:33:05 +0000471
472 /* Enable caches */
473 enable_caches();
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000474
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000475 debug("monitor flash len: %08lX\n", monitor_flash_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200476 board_init(); /* Setup chipselects */
Hadli, Manjunath8f5d4682012-02-06 00:30:44 +0000477 /*
478 * TODO: printing of the clock inforamtion of the board is now
479 * implemented as part of bdinfo command. Currently only support for
480 * davinci SOC's is added. Remove this check once all the board
481 * implement this.
482 */
483#ifdef CONFIG_CLOCKS
484 set_cpu_clk_info(); /* Setup clock information */
485#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200486#ifdef CONFIG_SERIAL_MULTI
487 serial_initialize();
488#endif
489
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000490 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200491
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200492#ifdef CONFIG_LOGBUFFER
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000493 logbuff_init_ptrs();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200494#endif
495#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000496 post_output_backlog();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200497#endif
498
499 /* The Malloc area is immediately below the monitor copy in DRAM */
500 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
501 mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200502
503#if !defined(CONFIG_SYS_NO_FLASH)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000504 puts("Flash: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200505
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000506 flash_size = flash_init();
507 if (flash_size > 0) {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200508# ifdef CONFIG_SYS_FLASH_CHECKSUM
Simon Glassbc4e14c2011-10-23 17:44:35 +0000509 char *s = getenv("flashchecksum");
510
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000511 print_size(flash_size, "");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200512 /*
513 * Compute and print flash CRC if flashchecksum is set to 'y'
514 *
515 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
516 */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200517 if (s && (*s == 'y')) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000518 printf(" CRC: %08X", crc32(0,
519 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
520 flash_size));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200521 }
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000522 putc('\n');
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200523# else /* !CONFIG_SYS_FLASH_CHECKSUM */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000524 print_size(flash_size, "\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200525# endif /* CONFIG_SYS_FLASH_CHECKSUM */
526 } else {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000527 puts(failed);
528 hang();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200529 }
530#endif
531
532#if defined(CONFIG_CMD_NAND)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000533 puts("NAND: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200534 nand_init(); /* go init the NAND */
535#endif
536
537#if defined(CONFIG_CMD_ONENAND)
538 onenand_init();
539#endif
540
Steve Sakomand470a6f2010-10-11 05:51:39 -0700541#ifdef CONFIG_GENERIC_MMC
542 puts("MMC: ");
Wolfgang Denk80c6abc2011-10-05 22:44:43 +0200543 mmc_initialize(gd->bd);
Steve Sakomand470a6f2010-10-11 05:51:39 -0700544#endif
545
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200546#ifdef CONFIG_HAS_DATAFLASH
547 AT91F_DataflashInit();
548 dataflash_print_info();
549#endif
550
551 /* initialize environment */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000552 env_relocate();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200553
Michael Schwingen1ed63c52011-05-23 00:00:13 +0200554#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
555 arm_pci_init();
556#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200557
558 /* IP Address */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000559 gd->bd->bi_ip_addr = getenv_IPaddr("ipaddr");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200560
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000561 stdio_init(); /* get the devices list going. */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200562
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000563 jumptable_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200564
565#if defined(CONFIG_API)
566 /* Initialize API */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000567 api_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200568#endif
569
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000570 console_init_r(); /* fully init console as a device */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200571
572#if defined(CONFIG_ARCH_MISC_INIT)
573 /* miscellaneous arch dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000574 arch_misc_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200575#endif
576#if defined(CONFIG_MISC_INIT_R)
577 /* miscellaneous platform dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000578 misc_init_r();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200579#endif
580
581 /* set up exceptions */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000582 interrupt_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200583 /* enable exceptions */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000584 enable_interrupts();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200585
586 /* Perform network card initialisation if necessary */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200587#if defined(CONFIG_DRIVER_SMC91111) || defined (CONFIG_DRIVER_LAN91C96)
588 /* XXX: this needs to be moved to board init */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000589 if (getenv("ethaddr")) {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200590 uchar enetaddr[6];
591 eth_getenv_enetaddr("ethaddr", enetaddr);
592 smc_set_mac_addr(enetaddr);
593 }
594#endif /* CONFIG_DRIVER_SMC91111 || CONFIG_DRIVER_LAN91C96 */
595
596 /* Initialize from environment */
Simon Glassdc8bbea2011-10-13 14:43:06 +0000597 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200598#if defined(CONFIG_CMD_NET)
Simon Glassbc4e14c2011-10-23 17:44:35 +0000599 {
600 char *s = getenv("bootfile");
601
602 if (s != NULL)
603 copy_filename(BootFile, s, sizeof(BootFile));
604 }
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200605#endif
606
Helmut Raiger9660e442011-10-20 04:19:47 +0000607#ifdef CONFIG_BOARD_LATE_INIT
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000608 board_late_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200609#endif
610
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200611#ifdef CONFIG_BITBANGMII
612 bb_miiphy_init();
613#endif
614#if defined(CONFIG_CMD_NET)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000615 puts("Net: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200616 eth_initialize(gd->bd);
617#if defined(CONFIG_RESET_PHY_R)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000618 debug("Reset Ethernet PHY\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200619 reset_phy();
620#endif
621#endif
622
623#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000624 post_run(NULL, POST_RAM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200625#endif
626
627#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
628 /*
629 * Export available size of memory for Linux,
630 * taking into account the protected RAM at top of memory
631 */
632 {
Simon Glassdc8bbea2011-10-13 14:43:06 +0000633 ulong pram = 0;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200634 uchar memsz[32];
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200635
Simon Glassdc8bbea2011-10-13 14:43:06 +0000636#ifdef CONFIG_PRAM
637 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200638#endif
639#ifdef CONFIG_LOGBUFFER
640#ifndef CONFIG_ALT_LB_ADDR
641 /* Also take the logbuffer into account (pram is in kB) */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000642 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200643#endif
644#endif
Heiko Schocherb2b8f982011-06-02 22:11:37 +0000645 sprintf((char *)memsz, "%ldk", (gd->ram_size / 1024) - pram);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000646 setenv("mem", (char *)memsz);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200647 }
648#endif
649
650 /* main_loop() can return to retry autoboot, if so just run it again. */
651 for (;;) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000652 main_loop();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200653 }
654
655 /* NOTREACHED - no way out of command loop except booting */
656}
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200657
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000658void hang(void)
wdenkc6097192002-11-03 00:24:07 +0000659{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000660 puts("### ERROR ### Please RESET the board ###\n");
wdenkc6097192002-11-03 00:24:07 +0000661 for (;;);
662}