blob: 14a56f6f0a921ee84f1616b6ba8c1ff3caa43fee [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>
wdenkc6097192002-11-03 00:24:07 +000051
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020052#ifdef CONFIG_BITBANGMII
53#include <miiphy.h>
54#endif
55
wdenkf39748a2004-06-09 13:37:52 +000056#ifdef CONFIG_DRIVER_SMC91111
Jean-Christophe PLAGNIOL-VILLARD2439e4b2007-11-21 21:19:24 +010057#include "../drivers/net/smc91111.h"
wdenkf39748a2004-06-09 13:37:52 +000058#endif
59#ifdef CONFIG_DRIVER_LAN91C96
Jean-Christophe PLAGNIOL-VILLARD2439e4b2007-11-21 21:19:24 +010060#include "../drivers/net/lan91c96.h"
wdenkf39748a2004-06-09 13:37:52 +000061#endif
62
Markus Klotzbücherb2b43462006-02-10 11:25:41 +010063DECLARE_GLOBAL_DATA_PTR;
64
wdenk3b57fe02003-05-30 12:48:29 +000065ulong monitor_flash_len;
66
wdenk2abbe072003-06-16 23:50:08 +000067#ifdef CONFIG_HAS_DATAFLASH
68extern int AT91F_DataflashInit(void);
69extern void dataflash_print_info(void);
70#endif
71
wdenk5ca26792004-06-06 22:11:41 +000072#ifdef CONFIG_DRIVER_RTL8019
wdenkef5a9672003-12-07 00:46:27 +000073extern void rtl8019_get_enetaddr (uchar * addr);
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
Stelian Pop39cf4802008-05-09 21:57:18 +020081
wdenkc6097192002-11-03 00:24:07 +000082/************************************************************************
Peter Pearse9f5c3d32007-09-04 16:18:38 +010083 * Coloured LED functionality
84 ************************************************************************
85 * May be supplied by boards if desired
86 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +000087inline void __coloured_LED_init(void) {}
88void coloured_LED_init(void)
89 __attribute__((weak, alias("__coloured_LED_init")));
90inline void __red_LED_on(void) {}
91void red_LED_on(void) __attribute__((weak, alias("__red_LED_on")));
92inline void __red_LED_off(void) {}
Ron Leef865fcb2009-08-05 20:14:01 +020093void red_LED_off(void) __attribute__((weak, alias("__red_LED_off")));
Heiko Schocherceb1d6d2011-07-15 19:36:36 +000094inline void __green_LED_on(void) {}
Ron Leef865fcb2009-08-05 20:14:01 +020095void green_LED_on(void) __attribute__((weak, alias("__green_LED_on")));
Heiko Schocherceb1d6d2011-07-15 19:36:36 +000096inline void __green_LED_off(void) {}
Ron Leef865fcb2009-08-05 20:14:01 +020097void green_LED_off(void) __attribute__((weak, alias("__green_LED_off")));
Heiko Schocherceb1d6d2011-07-15 19:36:36 +000098inline void __yellow_LED_on(void) {}
Ron Leef865fcb2009-08-05 20:14:01 +020099void yellow_LED_on(void) __attribute__((weak, alias("__yellow_LED_on")));
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000100inline void __yellow_LED_off(void) {}
Ron Leef865fcb2009-08-05 20:14:01 +0200101void yellow_LED_off(void) __attribute__((weak, alias("__yellow_LED_off")));
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000102inline void __blue_LED_on(void) {}
Ron Leef865fcb2009-08-05 20:14:01 +0200103void blue_LED_on(void) __attribute__((weak, alias("__blue_LED_on")));
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000104inline void __blue_LED_off(void) {}
Ron Leef865fcb2009-08-05 20:14:01 +0200105void blue_LED_off(void) __attribute__((weak, alias("__blue_LED_off")));
Peter Pearse9f5c3d32007-09-04 16:18:38 +0100106
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000107/*
108 ************************************************************************
wdenkc6097192002-11-03 00:24:07 +0000109 * Init Utilities *
110 ************************************************************************
111 * Some of this code should be moved into the core functions,
112 * or dropped completely,
113 * but let's get it working (again) first...
114 */
115
Jean-Christophe PLAGNIOL-VILLARD4f572892009-02-22 15:49:28 +0100116#if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
117#define CONFIG_BAUDRATE 115200
118#endif
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000119static int init_baudrate(void)
wdenkc6097192002-11-03 00:24:07 +0000120{
Wolfgang Denkd52fb7e2006-03-11 22:53:33 +0100121 char tmp[64]; /* long enough for environment variables */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000122 int i = getenv_f("baudrate", tmp, sizeof(tmp));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200123
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200124 gd->baudrate = (i > 0)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000125 ? (int) simple_strtoul(tmp, NULL, 10)
wdenkc6097192002-11-03 00:24:07 +0000126 : CONFIG_BAUDRATE;
127
128 return (0);
129}
130
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000131static int display_banner(void)
wdenkc6097192002-11-03 00:24:07 +0000132{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000133 printf("\n\n%s\n\n", version_string);
134 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200135 _TEXT_BASE,
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000136 _bss_start_ofs + _TEXT_BASE, _bss_end_ofs + _TEXT_BASE);
wdenkc6097192002-11-03 00:24:07 +0000137#ifdef CONFIG_MODEM_SUPPORT
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000138 debug("Modem Support enabled\n");
wdenkc6097192002-11-03 00:24:07 +0000139#endif
140#ifdef CONFIG_USE_IRQ
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000141 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
142 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
wdenkc6097192002-11-03 00:24:07 +0000143#endif
wdenkf72da342003-10-10 10:05:42 +0000144
wdenkc6097192002-11-03 00:24:07 +0000145 return (0);
146}
147
148/*
149 * WARNING: this code looks "cleaner" than the PowerPC version, but
150 * has the disadvantage that you either get nothing, or everything.
151 * On PowerPC, you might see "DRAM: " before the system hangs - which
152 * gives a simple yet clear indication which part of the
153 * initialization if failing.
154 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000155static int display_dram_config(void)
wdenkc6097192002-11-03 00:24:07 +0000156{
wdenkc6097192002-11-03 00:24:07 +0000157 int i;
158
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100159#ifdef DEBUG
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000160 puts("RAM Configuration:\n");
wdenkc6097192002-11-03 00:24:07 +0000161
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000162 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
163 printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
164 print_size(gd->bd->bi_dram[i].size, "\n");
wdenkc6097192002-11-03 00:24:07 +0000165 }
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100166#else
167 ulong size = 0;
168
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000169 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100170 size += gd->bd->bi_dram[i].size;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000171
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100172 puts("DRAM: ");
173 print_size(size, "\n");
174#endif
wdenkc6097192002-11-03 00:24:07 +0000175
176 return (0);
177}
178
Hebbarf7ad79b2007-12-18 16:00:54 -0800179#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000180static int init_func_i2c(void)
Hebbarf7ad79b2007-12-18 16:00:54 -0800181{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000182 puts("I2C: ");
183 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
184 puts("ready\n");
Hebbarf7ad79b2007-12-18 16:00:54 -0800185 return (0);
186}
187#endif
188
Jean-Christophe PLAGNIOL-VILLARDf90c8022009-01-31 09:04:58 +0100189#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
190#include <pci.h>
191static int arm_pci_init(void)
192{
193 pci_init();
194 return 0;
195}
196#endif /* CONFIG_CMD_PCI || CONFIG_PCI */
197
wdenkc6097192002-11-03 00:24:07 +0000198/*
wdenka8c7c702003-12-06 19:49:23 +0000199 * Breathe some life into the board...
wdenkc6097192002-11-03 00:24:07 +0000200 *
wdenkb0639ca2003-09-17 22:48:07 +0000201 * Initialize a serial port as console, and carry out some hardware
wdenkc6097192002-11-03 00:24:07 +0000202 * tests.
203 *
204 * The first part of initialization is running from Flash memory;
205 * its main purpose is to initialize the RAM so that we
206 * can relocate the monitor code to RAM.
207 */
208
209/*
210 * All attempts to come up with a "common" initialization sequence
211 * that works for all boards and architectures failed: some of the
212 * requirements are just _too_ different. To get rid of the resulting
wdenkf6e20fc2004-02-08 19:38:38 +0000213 * mess of board dependent #ifdef'ed code we now make the whole
wdenkc6097192002-11-03 00:24:07 +0000214 * initialization sequence configurable to the user.
215 *
216 * The requirements for any new initalization function is simple: it
217 * receives a pointer to the "global data" structure as it's only
218 * argument, and returns an integer return code, where 0 means
219 * "continue" and != 0 means "fatal error, hang the system".
220 */
221typedef int (init_fnc_t) (void);
222
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000223int print_cpuinfo(void);
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100224
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200225void __dram_init_banksize(void)
226{
227 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
228 gd->bd->bi_dram[0].size = gd->ram_size;
229}
230void dram_init_banksize(void)
231 __attribute__((weak, alias("__dram_init_banksize")));
232
233init_fnc_t *init_sequence[] = {
234#if defined(CONFIG_ARCH_CPU_INIT)
235 arch_cpu_init, /* basic arch cpu dependent setup */
236#endif
237#if defined(CONFIG_BOARD_EARLY_INIT_F)
238 board_early_init_f,
239#endif
240 timer_init, /* initialize timer */
241#ifdef CONFIG_FSL_ESDHC
242 get_clocks,
243#endif
244 env_init, /* initialize environment */
245 init_baudrate, /* initialze baudrate settings */
246 serial_init, /* serial communications setup */
247 console_init_f, /* stage 1 init of console */
248 display_banner, /* say that we are here */
249#if defined(CONFIG_DISPLAY_CPUINFO)
250 print_cpuinfo, /* display cpu info (and speed) */
251#endif
252#if defined(CONFIG_DISPLAY_BOARDINFO)
253 checkboard, /* display board info */
254#endif
255#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
256 init_func_i2c,
257#endif
258 dram_init, /* configure available RAM banks */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200259 NULL,
260};
261
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000262void board_init_f(ulong bootflag)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200263{
264 bd_t *bd;
265 init_fnc_t **init_fnc_ptr;
266 gd_t *id;
267 ulong addr, addr_sp;
268
269 /* Pointer is writable since we allocated a register for it */
Heiko Schocher296cae72010-11-12 07:53:55 +0100270 gd = (gd_t *) ((CONFIG_SYS_INIT_SP_ADDR) & ~0x07);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200271 /* compiler optimization barrier needed for GCC >= 3.4 */
272 __asm__ __volatile__("": : :"memory");
273
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000274 memset((void *)gd, 0, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200275
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200276 gd->mon_len = _bss_end_ofs;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200277
Igor Grinberg7eb29392011-07-14 05:45:07 +0000278#ifdef CONFIG_MACH_TYPE
279 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
280#endif
281
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200282 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
283 if ((*init_fnc_ptr)() != 0) {
284 hang ();
285 }
286 }
287
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000288 debug("monitor len: %08lX\n", gd->mon_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200289 /*
290 * Ram is setup, size stored in gd !!
291 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000292 debug("ramsize: %08lX\n", gd->ram_size);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200293#if defined(CONFIG_SYS_MEM_TOP_HIDE)
294 /*
295 * Subtract specified amount of memory to hide so that it won't
296 * get "touched" at all by U-Boot. By fixing up gd->ram_size
297 * the Linux kernel should now get passed the now "corrected"
298 * memory size and won't touch it either. This should work
299 * for arch/ppc and arch/powerpc. Only Linux board ports in
300 * arch/powerpc with bootwrapper support, that recalculate the
301 * memory size from the SDRAM controller setup will have to
302 * get fixed.
303 */
304 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
305#endif
306
307 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
308
309#ifdef CONFIG_LOGBUFFER
310#ifndef CONFIG_ALT_LB_ADDR
311 /* reserve kernel log buffer */
312 addr -= (LOGBUFF_RESERVE);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000313 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
314 addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200315#endif
316#endif
317
318#ifdef CONFIG_PRAM
319 /*
320 * reserve protected RAM
321 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000322 i = getenv_r("pram", (char *)tmp, sizeof(tmp));
323 reg = (i > 0) ? simple_strtoul((const char *)tmp, NULL, 10) :
324 CONFIG_PRAM;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200325 addr -= (reg << 10); /* size is in kB */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000326 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200327#endif /* CONFIG_PRAM */
328
Aneesh Ve47f2db2011-06-16 23:30:48 +0000329#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200330 /* reserve TLB table */
331 addr -= (4096 * 4);
332
333 /* round down to next 64 kB limit */
334 addr &= ~(0x10000 - 1);
335
336 gd->tlb_addr = addr;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000337 debug("TLB table at: %08lx\n", addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200338#endif
339
340 /* round down to next 4 kB limit */
341 addr &= ~(4096 - 1);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000342 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200343
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200344#ifdef CONFIG_LCD
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000345#ifdef CONFIG_FB_ADDR
346 gd->fb_base = CONFIG_FB_ADDR;
347#else
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200348 /* reserve memory for LCD display (always full pages) */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000349 addr = lcd_setmem(addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200350 gd->fb_base = addr;
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000351#endif /* CONFIG_FB_ADDR */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200352#endif /* CONFIG_LCD */
353
354 /*
355 * reserve memory for U-Boot code, data & bss
356 * round down to next 4 kB limit
357 */
358 addr -= gd->mon_len;
359 addr &= ~(4096 - 1);
360
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000361 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200362
Aneesh V401bb302011-07-13 05:11:07 +0000363#ifndef CONFIG_SPL_BUILD
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200364 /*
365 * reserve memory for malloc() arena
366 */
367 addr_sp = addr - TOTAL_MALLOC_LEN;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000368 debug("Reserving %dk for malloc() at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200369 TOTAL_MALLOC_LEN >> 10, addr_sp);
370 /*
371 * (permanently) allocate a Board Info struct
372 * and a permanent copy of the "global" data
373 */
374 addr_sp -= sizeof (bd_t);
375 bd = (bd_t *) addr_sp;
376 gd->bd = bd;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000377 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200378 sizeof (bd_t), addr_sp);
379 addr_sp -= sizeof (gd_t);
380 id = (gd_t *) addr_sp;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000381 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200382 sizeof (gd_t), addr_sp);
383
384 /* setup stackpointer for exeptions */
385 gd->irq_sp = addr_sp;
386#ifdef CONFIG_USE_IRQ
387 addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000388 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200389 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
390#endif
391 /* leave 3 words for abort-stack */
Eric Cooper6445a302011-04-14 12:32:37 +0000392 addr_sp -= 12;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200393
394 /* 8-byte alignment for ABI compliance */
395 addr_sp &= ~0x07;
396#else
397 addr_sp += 128; /* leave 32 words for abort-stack */
398 gd->irq_sp = addr_sp;
399#endif
400
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000401 debug("New Stack Pointer is: %08lx\n", addr_sp);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200402
403#ifdef CONFIG_POST
404 post_bootmode_init();
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000405 post_run(NULL, POST_ROM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200406#endif
407
408 gd->bd->bi_baudrate = gd->baudrate;
409 /* Ram ist board specific, so move it to board code ... */
410 dram_init_banksize();
411 display_dram_config(); /* and display it */
412
413 gd->relocaddr = addr;
414 gd->start_addr_sp = addr_sp;
415 gd->reloc_off = addr - _TEXT_BASE;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000416 debug("relocation Offset is: %08lx\n", gd->reloc_off);
417 memcpy(id, (void *)gd, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200418
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000419 relocate_code(addr_sp, id, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200420
421 /* NOTREACHED - relocate_code() does not return */
422}
423
424#if !defined(CONFIG_SYS_NO_FLASH)
425static char *failed = "*** failed ***\n";
426#endif
427
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000428/*
429 ************************************************************************
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200430 *
431 * This is the next part if the initialization sequence: we are now
432 * running from RAM and have a "normal" C environment, i. e. global
433 * data can be written, BSS has been cleared, the stack size in not
434 * that critical any more, etc.
435 *
436 ************************************************************************
437 */
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200438
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000439void board_init_r(gd_t *id, ulong dest_addr)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200440{
441 char *s;
442 bd_t *bd;
443 ulong malloc_start;
444#if !defined(CONFIG_SYS_NO_FLASH)
445 ulong flash_size;
446#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200447
448 gd = id;
449 bd = gd->bd;
450
451 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
452
Po-Yu Chuangf326cbb2011-03-01 23:02:04 +0000453 monitor_flash_len = _end_ofs;
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000454 /*
455 * Enable D$:
456 * I$, if needed, must be already enabled in start.S
457 */
458 dcache_enable();
459
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000460 debug("monitor flash len: %08lX\n", monitor_flash_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200461 board_init(); /* Setup chipselects */
462
463#ifdef CONFIG_SERIAL_MULTI
464 serial_initialize();
465#endif
466
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000467 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200468
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200469#ifdef CONFIG_LOGBUFFER
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000470 logbuff_init_ptrs();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200471#endif
472#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000473 post_output_backlog();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200474#endif
475
476 /* The Malloc area is immediately below the monitor copy in DRAM */
477 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
478 mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200479
480#if !defined(CONFIG_SYS_NO_FLASH)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000481 puts("Flash: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200482
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000483 flash_size = flash_init();
484 if (flash_size > 0) {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200485# ifdef CONFIG_SYS_FLASH_CHECKSUM
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000486 print_size(flash_size, "");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200487 /*
488 * Compute and print flash CRC if flashchecksum is set to 'y'
489 *
490 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
491 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000492 s = getenv("flashchecksum");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200493 if (s && (*s == 'y')) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000494 printf(" CRC: %08X", crc32(0,
495 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
496 flash_size));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200497 }
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000498 putc('\n');
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200499# else /* !CONFIG_SYS_FLASH_CHECKSUM */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000500 print_size(flash_size, "\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200501# endif /* CONFIG_SYS_FLASH_CHECKSUM */
502 } else {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000503 puts(failed);
504 hang();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200505 }
506#endif
507
508#if defined(CONFIG_CMD_NAND)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000509 puts("NAND: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200510 nand_init(); /* go init the NAND */
511#endif
512
513#if defined(CONFIG_CMD_ONENAND)
514 onenand_init();
515#endif
516
Steve Sakomand470a6f2010-10-11 05:51:39 -0700517#ifdef CONFIG_GENERIC_MMC
518 puts("MMC: ");
519 mmc_initialize(bd);
520#endif
521
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200522#ifdef CONFIG_HAS_DATAFLASH
523 AT91F_DataflashInit();
524 dataflash_print_info();
525#endif
526
527 /* initialize environment */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000528 env_relocate();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200529
Michael Schwingen1ed63c52011-05-23 00:00:13 +0200530#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
531 arm_pci_init();
532#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200533
534 /* IP Address */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000535 gd->bd->bi_ip_addr = getenv_IPaddr("ipaddr");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200536
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000537 stdio_init(); /* get the devices list going. */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200538
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000539 jumptable_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200540
541#if defined(CONFIG_API)
542 /* Initialize API */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000543 api_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200544#endif
545
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000546 console_init_r(); /* fully init console as a device */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200547
548#if defined(CONFIG_ARCH_MISC_INIT)
549 /* miscellaneous arch dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000550 arch_misc_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200551#endif
552#if defined(CONFIG_MISC_INIT_R)
553 /* miscellaneous platform dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000554 misc_init_r();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200555#endif
556
557 /* set up exceptions */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000558 interrupt_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200559 /* enable exceptions */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000560 enable_interrupts();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200561
562 /* Perform network card initialisation if necessary */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200563#if defined(CONFIG_DRIVER_SMC91111) || defined (CONFIG_DRIVER_LAN91C96)
564 /* XXX: this needs to be moved to board init */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000565 if (getenv("ethaddr")) {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200566 uchar enetaddr[6];
567 eth_getenv_enetaddr("ethaddr", enetaddr);
568 smc_set_mac_addr(enetaddr);
569 }
570#endif /* CONFIG_DRIVER_SMC91111 || CONFIG_DRIVER_LAN91C96 */
571
572 /* Initialize from environment */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000573 s = getenv("loadaddr");
574 if (s != NULL)
575 load_addr = simple_strtoul(s, NULL, 16);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200576#if defined(CONFIG_CMD_NET)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000577 s = getenv("bootfile");
578 if (s != NULL)
579 copy_filename(BootFile, s, sizeof(BootFile));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200580#endif
581
582#ifdef BOARD_LATE_INIT
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000583 board_late_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200584#endif
585
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200586#ifdef CONFIG_BITBANGMII
587 bb_miiphy_init();
588#endif
589#if defined(CONFIG_CMD_NET)
590#if defined(CONFIG_NET_MULTI)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000591 puts("Net: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200592#endif
593 eth_initialize(gd->bd);
594#if defined(CONFIG_RESET_PHY_R)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000595 debug("Reset Ethernet PHY\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200596 reset_phy();
597#endif
598#endif
599
600#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000601 post_run(NULL, POST_RAM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200602#endif
603
604#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
605 /*
606 * Export available size of memory for Linux,
607 * taking into account the protected RAM at top of memory
608 */
609 {
610 ulong pram;
611 uchar memsz[32];
612#ifdef CONFIG_PRAM
613 char *s;
614
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000615 s = getenv("pram");
616 if (s != NULL)
617 pram = simple_strtoul(s, NULL, 10);
618 else
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200619 pram = CONFIG_PRAM;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200620#else
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000621 pram = 0;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200622#endif
623#ifdef CONFIG_LOGBUFFER
624#ifndef CONFIG_ALT_LB_ADDR
625 /* Also take the logbuffer into account (pram is in kB) */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000626 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200627#endif
628#endif
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000629 sprintf((char *)memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
630 setenv("mem", (char *)memsz);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200631 }
632#endif
633
634 /* main_loop() can return to retry autoboot, if so just run it again. */
635 for (;;) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000636 main_loop();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200637 }
638
639 /* NOTREACHED - no way out of command loop except booting */
640}
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200641
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000642void hang(void)
wdenkc6097192002-11-03 00:24:07 +0000643{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000644 puts("### ERROR ### Please RESET the board ###\n");
wdenkc6097192002-11-03 00:24:07 +0000645 for (;;);
646}