blob: 7434b34f9c3d03103b54729e9fa0664443b3ae80 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
Wolfgang Denk7a132ae2006-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 Denk7a132ae2006-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>
wdenk56958612003-06-22 17:18:28 +000043#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-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 Ziswilerb5a75412008-05-01 09:05:26 +020047#include <serial.h>
Scott Woode898dfd2008-05-22 10:49:46 -050048#include <nand.h>
49#include <onenand_uboot.h>
Ilya Yanok50ff6df2009-06-08 04:12:50 +040050#include <mmc.h>
Valentin Longchampe3c4c942011-09-02 04:59:03 +000051#include <post.h>
52#include <logbuff.h>
wdenkc6097192002-11-03 00:24:07 +000053
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +020054#ifdef CONFIG_BITBANGMII
55#include <miiphy.h>
56#endif
57
wdenk3c711762004-06-09 13:37:52 +000058#ifdef CONFIG_DRIVER_SMC91111
Jean-Christophe PLAGNIOL-VILLARDed0ea1f2007-11-21 21:19:24 +010059#include "../drivers/net/smc91111.h"
wdenk3c711762004-06-09 13:37:52 +000060#endif
61#ifdef CONFIG_DRIVER_LAN91C96
Jean-Christophe PLAGNIOL-VILLARDed0ea1f2007-11-21 21:19:24 +010062#include "../drivers/net/lan91c96.h"
wdenk3c711762004-06-09 13:37:52 +000063#endif
64
Markus Klotzbücheraedd96a2006-02-10 11:25:41 +010065DECLARE_GLOBAL_DATA_PTR;
66
wdenkb9a83a92003-05-30 12:48:29 +000067ulong monitor_flash_len;
68
wdenk381669a2003-06-16 23:50:08 +000069#ifdef CONFIG_HAS_DATAFLASH
70extern int AT91F_DataflashInit(void);
71extern void dataflash_print_info(void);
72#endif
73
wdenk6b1aa8d2004-06-06 22:11:41 +000074#ifdef CONFIG_DRIVER_RTL8019
wdenk5d5317e2003-12-07 00:46:27 +000075extern void rtl8019_get_enetaddr (uchar * addr);
76#endif
77
Hebbarb7d11642007-12-18 16:00:54 -080078#if defined(CONFIG_HARD_I2C) || \
79 defined(CONFIG_SOFT_I2C)
80#include <i2c.h>
81#endif
82
Stelian Popf6f86652008-05-09 21:57:18 +020083
wdenkc6097192002-11-03 00:24:07 +000084/************************************************************************
Peter Pearse2c261ca2007-09-04 16:18:38 +010085 * Coloured LED functionality
86 ************************************************************************
87 * May be supplied by boards if desired
88 */
Heiko Schocher417e0732011-07-15 19:36:36 +000089inline void __coloured_LED_init(void) {}
90void coloured_LED_init(void)
91 __attribute__((weak, alias("__coloured_LED_init")));
Jason Kridneraff0aa82011-09-04 14:40:16 -040092inline void __red_led_on(void) {}
93void red_led_on(void) __attribute__((weak, alias("__red_led_on")));
94inline void __red_led_off(void) {}
95void red_led_off(void) __attribute__((weak, alias("__red_led_off")));
96inline void __green_led_on(void) {}
97void green_led_on(void) __attribute__((weak, alias("__green_led_on")));
98inline void __green_led_off(void) {}
99void green_led_off(void) __attribute__((weak, alias("__green_led_off")));
100inline void __yellow_led_on(void) {}
101void yellow_led_on(void) __attribute__((weak, alias("__yellow_led_on")));
102inline void __yellow_led_off(void) {}
103void yellow_led_off(void) __attribute__((weak, alias("__yellow_led_off")));
104inline void __blue_led_on(void) {}
105void blue_led_on(void) __attribute__((weak, alias("__blue_led_on")));
106inline void __blue_led_off(void) {}
107void blue_led_off(void) __attribute__((weak, alias("__blue_led_off")));
Peter Pearse2c261ca2007-09-04 16:18:38 +0100108
Heiko Schocher417e0732011-07-15 19:36:36 +0000109/*
110 ************************************************************************
wdenkc6097192002-11-03 00:24:07 +0000111 * Init Utilities *
112 ************************************************************************
113 * Some of this code should be moved into the core functions,
114 * or dropped completely,
115 * but let's get it working (again) first...
116 */
117
Jean-Christophe PLAGNIOL-VILLARDb8023102009-02-22 15:49:28 +0100118#if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
119#define CONFIG_BAUDRATE 115200
120#endif
Simon Glass706c2342011-10-13 14:43:06 +0000121
Heiko Schocher417e0732011-07-15 19:36:36 +0000122static int init_baudrate(void)
wdenkc6097192002-11-03 00:24:07 +0000123{
Simon Glass706c2342011-10-13 14:43:06 +0000124 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
125 return 0;
wdenkc6097192002-11-03 00:24:07 +0000126}
127
Heiko Schocher417e0732011-07-15 19:36:36 +0000128static int display_banner(void)
wdenkc6097192002-11-03 00:24:07 +0000129{
Heiko Schocher417e0732011-07-15 19:36:36 +0000130 printf("\n\n%s\n\n", version_string);
131 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200132 _TEXT_BASE,
Heiko Schocher417e0732011-07-15 19:36:36 +0000133 _bss_start_ofs + _TEXT_BASE, _bss_end_ofs + _TEXT_BASE);
wdenkc6097192002-11-03 00:24:07 +0000134#ifdef CONFIG_MODEM_SUPPORT
Heiko Schocher417e0732011-07-15 19:36:36 +0000135 debug("Modem Support enabled\n");
wdenkc6097192002-11-03 00:24:07 +0000136#endif
137#ifdef CONFIG_USE_IRQ
Heiko Schocher417e0732011-07-15 19:36:36 +0000138 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
139 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
wdenkc6097192002-11-03 00:24:07 +0000140#endif
wdenk808532a2003-10-10 10:05:42 +0000141
wdenkc6097192002-11-03 00:24:07 +0000142 return (0);
143}
144
145/*
146 * WARNING: this code looks "cleaner" than the PowerPC version, but
147 * has the disadvantage that you either get nothing, or everything.
148 * On PowerPC, you might see "DRAM: " before the system hangs - which
149 * gives a simple yet clear indication which part of the
150 * initialization if failing.
151 */
Heiko Schocher417e0732011-07-15 19:36:36 +0000152static int display_dram_config(void)
wdenkc6097192002-11-03 00:24:07 +0000153{
wdenkc6097192002-11-03 00:24:07 +0000154 int i;
155
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100156#ifdef DEBUG
Heiko Schocher417e0732011-07-15 19:36:36 +0000157 puts("RAM Configuration:\n");
wdenkc6097192002-11-03 00:24:07 +0000158
Heiko Schocher417e0732011-07-15 19:36:36 +0000159 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
160 printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
161 print_size(gd->bd->bi_dram[i].size, "\n");
wdenkc6097192002-11-03 00:24:07 +0000162 }
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100163#else
164 ulong size = 0;
165
Heiko Schocher417e0732011-07-15 19:36:36 +0000166 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100167 size += gd->bd->bi_dram[i].size;
Heiko Schocher417e0732011-07-15 19:36:36 +0000168
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100169 puts("DRAM: ");
170 print_size(size, "\n");
171#endif
wdenkc6097192002-11-03 00:24:07 +0000172
173 return (0);
174}
wdenkc6097192002-11-03 00:24:07 +0000175
Hebbarb7d11642007-12-18 16:00:54 -0800176#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
Heiko Schocher417e0732011-07-15 19:36:36 +0000177static int init_func_i2c(void)
Hebbarb7d11642007-12-18 16:00:54 -0800178{
Heiko Schocher417e0732011-07-15 19:36:36 +0000179 puts("I2C: ");
180 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
181 puts("ready\n");
Hebbarb7d11642007-12-18 16:00:54 -0800182 return (0);
183}
184#endif
185
Jean-Christophe PLAGNIOL-VILLARD86588ea2009-01-31 09:04:58 +0100186#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
187#include <pci.h>
188static int arm_pci_init(void)
189{
190 pci_init();
191 return 0;
192}
193#endif /* CONFIG_CMD_PCI || CONFIG_PCI */
194
wdenkc6097192002-11-03 00:24:07 +0000195/*
wdenkc0aa5c52003-12-06 19:49:23 +0000196 * Breathe some life into the board...
wdenkc6097192002-11-03 00:24:07 +0000197 *
wdenkb6b2f0e2003-09-17 22:48:07 +0000198 * Initialize a serial port as console, and carry out some hardware
wdenkc6097192002-11-03 00:24:07 +0000199 * tests.
200 *
201 * The first part of initialization is running from Flash memory;
202 * its main purpose is to initialize the RAM so that we
203 * can relocate the monitor code to RAM.
204 */
205
206/*
207 * All attempts to come up with a "common" initialization sequence
208 * that works for all boards and architectures failed: some of the
209 * requirements are just _too_ different. To get rid of the resulting
wdenk927034e2004-02-08 19:38:38 +0000210 * mess of board dependent #ifdef'ed code we now make the whole
wdenkc6097192002-11-03 00:24:07 +0000211 * initialization sequence configurable to the user.
212 *
213 * The requirements for any new initalization function is simple: it
214 * receives a pointer to the "global data" structure as it's only
215 * argument, and returns an integer return code, where 0 means
216 * "continue" and != 0 means "fatal error, hang the system".
217 */
218typedef int (init_fnc_t) (void);
219
Heiko Schocher417e0732011-07-15 19:36:36 +0000220int print_cpuinfo(void);
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100221
Heiko Schocheraeb29912010-09-17 13:10:39 +0200222void __dram_init_banksize(void)
223{
224 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
225 gd->bd->bi_dram[0].size = gd->ram_size;
226}
227void dram_init_banksize(void)
228 __attribute__((weak, alias("__dram_init_banksize")));
229
230init_fnc_t *init_sequence[] = {
231#if defined(CONFIG_ARCH_CPU_INIT)
232 arch_cpu_init, /* basic arch cpu dependent setup */
233#endif
234#if defined(CONFIG_BOARD_EARLY_INIT_F)
235 board_early_init_f,
236#endif
237 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 Schocheraeb29912010-09-17 13:10:39 +0200256 NULL,
257};
258
Heiko Schocher417e0732011-07-15 19:36:36 +0000259void board_init_f(ulong bootflag)
Heiko Schocheraeb29912010-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 Glass706c2342011-10-13 14:43:06 +0000265#ifdef CONFIG_PRAM
266 ulong reg;
267#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200268
269 /* Pointer is writable since we allocated a register for it */
Heiko Schocher17f288a2010-11-12 07:53:55 +0100270 gd = (gd_t *) ((CONFIG_SYS_INIT_SP_ADDR) & ~0x07);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200271 /* compiler optimization barrier needed for GCC >= 3.4 */
272 __asm__ __volatile__("": : :"memory");
273
Heiko Schocher417e0732011-07-15 19:36:36 +0000274 memset((void *)gd, 0, sizeof(gd_t));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200275
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200276 gd->mon_len = _bss_end_ofs;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200277
278 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
279 if ((*init_fnc_ptr)() != 0) {
280 hang ();
281 }
282 }
283
Heiko Schocher417e0732011-07-15 19:36:36 +0000284 debug("monitor len: %08lX\n", gd->mon_len);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200285 /*
286 * Ram is setup, size stored in gd !!
287 */
Heiko Schocher417e0732011-07-15 19:36:36 +0000288 debug("ramsize: %08lX\n", gd->ram_size);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200289#if defined(CONFIG_SYS_MEM_TOP_HIDE)
290 /*
291 * Subtract specified amount of memory to hide so that it won't
292 * get "touched" at all by U-Boot. By fixing up gd->ram_size
293 * the Linux kernel should now get passed the now "corrected"
294 * memory size and won't touch it either. This should work
295 * for arch/ppc and arch/powerpc. Only Linux board ports in
296 * arch/powerpc with bootwrapper support, that recalculate the
297 * memory size from the SDRAM controller setup will have to
298 * get fixed.
299 */
300 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
301#endif
302
303 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
304
305#ifdef CONFIG_LOGBUFFER
306#ifndef CONFIG_ALT_LB_ADDR
307 /* reserve kernel log buffer */
308 addr -= (LOGBUFF_RESERVE);
Heiko Schocher417e0732011-07-15 19:36:36 +0000309 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
310 addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200311#endif
312#endif
313
314#ifdef CONFIG_PRAM
315 /*
316 * reserve protected RAM
317 */
Simon Glass706c2342011-10-13 14:43:06 +0000318 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200319 addr -= (reg << 10); /* size is in kB */
Heiko Schocher417e0732011-07-15 19:36:36 +0000320 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200321#endif /* CONFIG_PRAM */
322
Aneesh Vecee9c82011-06-16 23:30:48 +0000323#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Heiko Schocheraeb29912010-09-17 13:10:39 +0200324 /* reserve TLB table */
325 addr -= (4096 * 4);
326
327 /* round down to next 64 kB limit */
328 addr &= ~(0x10000 - 1);
329
330 gd->tlb_addr = addr;
Heiko Schocher417e0732011-07-15 19:36:36 +0000331 debug("TLB table at: %08lx\n", addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200332#endif
333
334 /* round down to next 4 kB limit */
335 addr &= ~(4096 - 1);
Heiko Schocher417e0732011-07-15 19:36:36 +0000336 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200337
Heiko Schocheraeb29912010-09-17 13:10:39 +0200338#ifdef CONFIG_LCD
Minkyu Kang50777c42011-04-24 22:22:34 +0000339#ifdef CONFIG_FB_ADDR
340 gd->fb_base = CONFIG_FB_ADDR;
341#else
Heiko Schocheraeb29912010-09-17 13:10:39 +0200342 /* reserve memory for LCD display (always full pages) */
Heiko Schocher417e0732011-07-15 19:36:36 +0000343 addr = lcd_setmem(addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200344 gd->fb_base = addr;
Minkyu Kang50777c42011-04-24 22:22:34 +0000345#endif /* CONFIG_FB_ADDR */
Heiko Schocheraeb29912010-09-17 13:10:39 +0200346#endif /* CONFIG_LCD */
347
348 /*
349 * reserve memory for U-Boot code, data & bss
350 * round down to next 4 kB limit
351 */
352 addr -= gd->mon_len;
353 addr &= ~(4096 - 1);
354
Heiko Schocher417e0732011-07-15 19:36:36 +0000355 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200356
Aneesh V552a3192011-07-13 05:11:07 +0000357#ifndef CONFIG_SPL_BUILD
Heiko Schocheraeb29912010-09-17 13:10:39 +0200358 /*
359 * reserve memory for malloc() arena
360 */
361 addr_sp = addr - TOTAL_MALLOC_LEN;
Heiko Schocher417e0732011-07-15 19:36:36 +0000362 debug("Reserving %dk for malloc() at: %08lx\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200363 TOTAL_MALLOC_LEN >> 10, addr_sp);
364 /*
365 * (permanently) allocate a Board Info struct
366 * and a permanent copy of the "global" data
367 */
368 addr_sp -= sizeof (bd_t);
369 bd = (bd_t *) addr_sp;
370 gd->bd = bd;
Heiko Schocher417e0732011-07-15 19:36:36 +0000371 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200372 sizeof (bd_t), addr_sp);
Igor Grinbergfa94c282011-08-16 23:48:23 +0000373
374#ifdef CONFIG_MACH_TYPE
375 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
376#endif
377
Heiko Schocheraeb29912010-09-17 13:10:39 +0200378 addr_sp -= sizeof (gd_t);
379 id = (gd_t *) addr_sp;
Heiko Schocher417e0732011-07-15 19:36:36 +0000380 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200381 sizeof (gd_t), addr_sp);
382
383 /* setup stackpointer for exeptions */
384 gd->irq_sp = addr_sp;
385#ifdef CONFIG_USE_IRQ
386 addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
Heiko Schocher417e0732011-07-15 19:36:36 +0000387 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200388 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
389#endif
390 /* leave 3 words for abort-stack */
Eric Coopera346ba92011-04-14 12:32:37 +0000391 addr_sp -= 12;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200392
393 /* 8-byte alignment for ABI compliance */
394 addr_sp &= ~0x07;
395#else
396 addr_sp += 128; /* leave 32 words for abort-stack */
397 gd->irq_sp = addr_sp;
398#endif
399
Heiko Schocher417e0732011-07-15 19:36:36 +0000400 debug("New Stack Pointer is: %08lx\n", addr_sp);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200401
402#ifdef CONFIG_POST
403 post_bootmode_init();
Heiko Schocher417e0732011-07-15 19:36:36 +0000404 post_run(NULL, POST_ROM | post_bootmode_get(0));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200405#endif
406
407 gd->bd->bi_baudrate = gd->baudrate;
408 /* Ram ist board specific, so move it to board code ... */
409 dram_init_banksize();
410 display_dram_config(); /* and display it */
411
412 gd->relocaddr = addr;
413 gd->start_addr_sp = addr_sp;
414 gd->reloc_off = addr - _TEXT_BASE;
Heiko Schocher417e0732011-07-15 19:36:36 +0000415 debug("relocation Offset is: %08lx\n", gd->reloc_off);
416 memcpy(id, (void *)gd, sizeof(gd_t));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200417
Heiko Schocher417e0732011-07-15 19:36:36 +0000418 relocate_code(addr_sp, id, addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200419
420 /* NOTREACHED - relocate_code() does not return */
421}
422
423#if !defined(CONFIG_SYS_NO_FLASH)
424static char *failed = "*** failed ***\n";
425#endif
426
Heiko Schocher417e0732011-07-15 19:36:36 +0000427/*
428 ************************************************************************
Heiko Schocheraeb29912010-09-17 13:10:39 +0200429 *
430 * This is the next part if the initialization sequence: we are now
431 * running from RAM and have a "normal" C environment, i. e. global
432 * data can be written, BSS has been cleared, the stack size in not
433 * that critical any more, etc.
434 *
435 ************************************************************************
436 */
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200437
Heiko Schocher417e0732011-07-15 19:36:36 +0000438void board_init_r(gd_t *id, ulong dest_addr)
Heiko Schocheraeb29912010-09-17 13:10:39 +0200439{
Heiko Schocheraeb29912010-09-17 13:10:39 +0200440 ulong malloc_start;
441#if !defined(CONFIG_SYS_NO_FLASH)
442 ulong flash_size;
443#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200444
445 gd = id;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200446
447 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
448
Po-Yu Chuang1864b002011-03-01 23:02:04 +0000449 monitor_flash_len = _end_ofs;
Aneesh Vfffbb972011-08-16 04:33:05 +0000450
451 /* Enable caches */
452 enable_caches();
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000453
Heiko Schocher417e0732011-07-15 19:36:36 +0000454 debug("monitor flash len: %08lX\n", monitor_flash_len);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200455 board_init(); /* Setup chipselects */
456
stefano babic5ab4f032007-08-30 22:57:04 +0200457#ifdef CONFIG_SERIAL_MULTI
458 serial_initialize();
459#endif
460
Heiko Schocher417e0732011-07-15 19:36:36 +0000461 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200462
Heiko Schocheraeb29912010-09-17 13:10:39 +0200463#ifdef CONFIG_LOGBUFFER
Heiko Schocher417e0732011-07-15 19:36:36 +0000464 logbuff_init_ptrs();
Heiko Schocheraeb29912010-09-17 13:10:39 +0200465#endif
466#ifdef CONFIG_POST
Heiko Schocher417e0732011-07-15 19:36:36 +0000467 post_output_backlog();
Heiko Schocheraeb29912010-09-17 13:10:39 +0200468#endif
469
470 /* The Malloc area is immediately below the monitor copy in DRAM */
471 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
472 mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200473
474#if !defined(CONFIG_SYS_NO_FLASH)
Heiko Schocher417e0732011-07-15 19:36:36 +0000475 puts("Flash: ");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200476
Heiko Schocher417e0732011-07-15 19:36:36 +0000477 flash_size = flash_init();
478 if (flash_size > 0) {
Heiko Schocheraeb29912010-09-17 13:10:39 +0200479# ifdef CONFIG_SYS_FLASH_CHECKSUM
Simon Glass1712b562011-10-23 17:44:35 +0000480 char *s = getenv("flashchecksum");
481
Heiko Schocher417e0732011-07-15 19:36:36 +0000482 print_size(flash_size, "");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200483 /*
484 * Compute and print flash CRC if flashchecksum is set to 'y'
485 *
486 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
487 */
Heiko Schocheraeb29912010-09-17 13:10:39 +0200488 if (s && (*s == 'y')) {
Heiko Schocher417e0732011-07-15 19:36:36 +0000489 printf(" CRC: %08X", crc32(0,
490 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
491 flash_size));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200492 }
Heiko Schocher417e0732011-07-15 19:36:36 +0000493 putc('\n');
Heiko Schocheraeb29912010-09-17 13:10:39 +0200494# else /* !CONFIG_SYS_FLASH_CHECKSUM */
Heiko Schocher417e0732011-07-15 19:36:36 +0000495 print_size(flash_size, "\n");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200496# endif /* CONFIG_SYS_FLASH_CHECKSUM */
497 } else {
Heiko Schocher417e0732011-07-15 19:36:36 +0000498 puts(failed);
499 hang();
Heiko Schocheraeb29912010-09-17 13:10:39 +0200500 }
501#endif
502
503#if defined(CONFIG_CMD_NAND)
Heiko Schocher417e0732011-07-15 19:36:36 +0000504 puts("NAND: ");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200505 nand_init(); /* go init the NAND */
506#endif
507
508#if defined(CONFIG_CMD_ONENAND)
509 onenand_init();
510#endif
511
Steve Sakomana93ec572010-10-11 05:51:39 -0700512#ifdef CONFIG_GENERIC_MMC
513 puts("MMC: ");
Wolfgang Denkbff3b822011-10-05 22:44:43 +0200514 mmc_initialize(gd->bd);
Steve Sakomana93ec572010-10-11 05:51:39 -0700515#endif
516
Heiko Schocheraeb29912010-09-17 13:10:39 +0200517#ifdef CONFIG_HAS_DATAFLASH
518 AT91F_DataflashInit();
519 dataflash_print_info();
520#endif
521
522 /* initialize environment */
Heiko Schocher417e0732011-07-15 19:36:36 +0000523 env_relocate();
Heiko Schocheraeb29912010-09-17 13:10:39 +0200524
Michael Schwingen24599de2011-05-23 00:00:13 +0200525#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
526 arm_pci_init();
527#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200528
wdenkc6097192002-11-03 00:24:07 +0000529 /* IP Address */
Heiko Schocher417e0732011-07-15 19:36:36 +0000530 gd->bd->bi_ip_addr = getenv_IPaddr("ipaddr");
wdenkc6097192002-11-03 00:24:07 +0000531
Heiko Schocher417e0732011-07-15 19:36:36 +0000532 stdio_init(); /* get the devices list going. */
wdenk56958612003-06-22 17:18:28 +0000533
Heiko Schocher417e0732011-07-15 19:36:36 +0000534 jumptable_init();
wdenk56958612003-06-22 17:18:28 +0000535
Rafal Jaworowski9d9689f2009-01-23 13:27:16 +0100536#if defined(CONFIG_API)
537 /* Initialize API */
Heiko Schocher417e0732011-07-15 19:36:36 +0000538 api_init();
Rafal Jaworowski9d9689f2009-01-23 13:27:16 +0100539#endif
540
Heiko Schocher417e0732011-07-15 19:36:36 +0000541 console_init_r(); /* fully init console as a device */
wdenk56958612003-06-22 17:18:28 +0000542
Prafulla Wadaskar98196702009-05-31 14:53:20 +0200543#if defined(CONFIG_ARCH_MISC_INIT)
544 /* miscellaneous arch dependent initialisations */
Heiko Schocher417e0732011-07-15 19:36:36 +0000545 arch_misc_init();
Prafulla Wadaskar98196702009-05-31 14:53:20 +0200546#endif
wdenkc6097192002-11-03 00:24:07 +0000547#if defined(CONFIG_MISC_INIT_R)
548 /* miscellaneous platform dependent initialisations */
Heiko Schocher417e0732011-07-15 19:36:36 +0000549 misc_init_r();
wdenkc6097192002-11-03 00:24:07 +0000550#endif
551
Heiko Schocheraeb29912010-09-17 13:10:39 +0200552 /* set up exceptions */
Heiko Schocher417e0732011-07-15 19:36:36 +0000553 interrupt_init();
wdenkc6097192002-11-03 00:24:07 +0000554 /* enable exceptions */
Heiko Schocher417e0732011-07-15 19:36:36 +0000555 enable_interrupts();
wdenkc6097192002-11-03 00:24:07 +0000556
wdenkc0aa5c52003-12-06 19:49:23 +0000557 /* Perform network card initialisation if necessary */
wdenk3c711762004-06-09 13:37:52 +0000558#if defined(CONFIG_DRIVER_SMC91111) || defined (CONFIG_DRIVER_LAN91C96)
Mike Frysinger7a2043d2009-02-11 19:39:55 -0500559 /* XXX: this needs to be moved to board init */
Heiko Schocher417e0732011-07-15 19:36:36 +0000560 if (getenv("ethaddr")) {
Mike Frysinger7a2043d2009-02-11 19:39:55 -0500561 uchar enetaddr[6];
562 eth_getenv_enetaddr("ethaddr", enetaddr);
563 smc_set_mac_addr(enetaddr);
wdenkaa603362003-05-12 21:50:16 +0000564 }
wdenk3c711762004-06-09 13:37:52 +0000565#endif /* CONFIG_DRIVER_SMC91111 || CONFIG_DRIVER_LAN91C96 */
wdenkaa603362003-05-12 21:50:16 +0000566
wdenkb02744a2003-04-05 00:53:31 +0000567 /* Initialize from environment */
Simon Glass706c2342011-10-13 14:43:06 +0000568 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Jon Loeliger12077972007-07-09 18:05:38 -0500569#if defined(CONFIG_CMD_NET)
Simon Glass1712b562011-10-23 17:44:35 +0000570 {
571 char *s = getenv("bootfile");
572
573 if (s != NULL)
574 copy_filename(BootFile, s, sizeof(BootFile));
575 }
Jon Loeliger1670a5b2007-07-10 11:19:50 -0500576#endif
wdenkb02744a2003-04-05 00:53:31 +0000577
wdenkda55c6e2004-01-20 23:12:12 +0000578#ifdef BOARD_LATE_INIT
Heiko Schocher417e0732011-07-15 19:36:36 +0000579 board_late_init();
wdenkc6097192002-11-03 00:24:07 +0000580#endif
Ilya Yanok50ff6df2009-06-08 04:12:50 +0400581
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +0200582#ifdef CONFIG_BITBANGMII
583 bb_miiphy_init();
584#endif
Jon Loeliger12077972007-07-09 18:05:38 -0500585#if defined(CONFIG_CMD_NET)
Heiko Schocher417e0732011-07-15 19:36:36 +0000586 puts("Net: ");
wdenk26c58432005-01-09 17:12:27 +0000587 eth_initialize(gd->bd);
Jean-Christophe PLAGNIOL-VILLARD6beda0c2007-12-11 10:53:12 +0100588#if defined(CONFIG_RESET_PHY_R)
Heiko Schocher417e0732011-07-15 19:36:36 +0000589 debug("Reset Ethernet PHY\n");
Jean-Christophe PLAGNIOL-VILLARD6beda0c2007-12-11 10:53:12 +0100590 reset_phy();
591#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200592#endif
593
594#ifdef CONFIG_POST
Heiko Schocher417e0732011-07-15 19:36:36 +0000595 post_run(NULL, POST_RAM | post_bootmode_get(0));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200596#endif
597
598#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
599 /*
600 * Export available size of memory for Linux,
601 * taking into account the protected RAM at top of memory
602 */
603 {
Simon Glass706c2342011-10-13 14:43:06 +0000604 ulong pram = 0;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200605 uchar memsz[32];
Heiko Schocheraeb29912010-09-17 13:10:39 +0200606
Simon Glass706c2342011-10-13 14:43:06 +0000607#ifdef CONFIG_PRAM
608 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200609#endif
610#ifdef CONFIG_LOGBUFFER
611#ifndef CONFIG_ALT_LB_ADDR
612 /* Also take the logbuffer into account (pram is in kB) */
Heiko Schocher417e0732011-07-15 19:36:36 +0000613 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
wdenk26c58432005-01-09 17:12:27 +0000614#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200615#endif
Heiko Schocherb852aaf2011-06-02 22:11:37 +0000616 sprintf((char *)memsz, "%ldk", (gd->ram_size / 1024) - pram);
Heiko Schocher417e0732011-07-15 19:36:36 +0000617 setenv("mem", (char *)memsz);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200618 }
619#endif
620
wdenkc6097192002-11-03 00:24:07 +0000621 /* main_loop() can return to retry autoboot, if so just run it again. */
622 for (;;) {
Heiko Schocher417e0732011-07-15 19:36:36 +0000623 main_loop();
wdenkc6097192002-11-03 00:24:07 +0000624 }
625
626 /* NOTREACHED - no way out of command loop except booting */
627}
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200628
Heiko Schocher417e0732011-07-15 19:36:36 +0000629void hang(void)
wdenkc6097192002-11-03 00:24:07 +0000630{
Heiko Schocher417e0732011-07-15 19:36:36 +0000631 puts("### ERROR ### Please RESET the board ###\n");
wdenkc6097192002-11-03 00:24:07 +0000632 for (;;);
633}