blob: 1a784a1e1958328251b283e4ed14d149e3eb5e6d [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>
Peter Tyser62948502008-11-03 09:30:59 -060045#include <timestamp.h>
wdenkc6097192002-11-03 00:24:07 +000046#include <version.h>
47#include <net.h>
Marcel Ziswilerb5a75412008-05-01 09:05:26 +020048#include <serial.h>
Scott Woode898dfd2008-05-22 10:49:46 -050049#include <nand.h>
50#include <onenand_uboot.h>
Ilya Yanok50ff6df2009-06-08 04:12:50 +040051#include <mmc.h>
wdenkc6097192002-11-03 00:24:07 +000052
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +020053#ifdef CONFIG_BITBANGMII
54#include <miiphy.h>
55#endif
56
wdenk3c711762004-06-09 13:37:52 +000057#ifdef CONFIG_DRIVER_SMC91111
Jean-Christophe PLAGNIOL-VILLARDed0ea1f2007-11-21 21:19:24 +010058#include "../drivers/net/smc91111.h"
wdenk3c711762004-06-09 13:37:52 +000059#endif
60#ifdef CONFIG_DRIVER_LAN91C96
Jean-Christophe PLAGNIOL-VILLARDed0ea1f2007-11-21 21:19:24 +010061#include "../drivers/net/lan91c96.h"
wdenk3c711762004-06-09 13:37:52 +000062#endif
63
Markus Klotzbücheraedd96a2006-02-10 11:25:41 +010064DECLARE_GLOBAL_DATA_PTR;
65
wdenkb9a83a92003-05-30 12:48:29 +000066ulong monitor_flash_len;
67
wdenk381669a2003-06-16 23:50:08 +000068#ifdef CONFIG_HAS_DATAFLASH
69extern int AT91F_DataflashInit(void);
70extern void dataflash_print_info(void);
71#endif
72
wdenk7539dea2003-06-19 23:01:32 +000073#ifndef CONFIG_IDENT_STRING
74#define CONFIG_IDENT_STRING ""
75#endif
76
wdenkc6097192002-11-03 00:24:07 +000077const char version_string[] =
Peter Tyser62948502008-11-03 09:30:59 -060078 U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")"CONFIG_IDENT_STRING;
wdenkc6097192002-11-03 00:24:07 +000079
wdenk6b1aa8d2004-06-06 22:11:41 +000080#ifdef CONFIG_DRIVER_RTL8019
wdenk5d5317e2003-12-07 00:46:27 +000081extern void rtl8019_get_enetaddr (uchar * addr);
82#endif
83
Hebbarb7d11642007-12-18 16:00:54 -080084#if defined(CONFIG_HARD_I2C) || \
85 defined(CONFIG_SOFT_I2C)
86#include <i2c.h>
87#endif
88
Stelian Popf6f86652008-05-09 21:57:18 +020089
wdenkc6097192002-11-03 00:24:07 +000090/************************************************************************
Peter Pearse2c261ca2007-09-04 16:18:38 +010091 * Coloured LED functionality
92 ************************************************************************
93 * May be supplied by boards if desired
94 */
95void inline __coloured_LED_init (void) {}
Ron Lee27c6e0b2009-08-05 20:14:01 +020096void coloured_LED_init (void) __attribute__((weak, alias("__coloured_LED_init")));
Peter Pearse2c261ca2007-09-04 16:18:38 +010097void inline __red_LED_on (void) {}
Ron Lee27c6e0b2009-08-05 20:14:01 +020098void red_LED_on (void) __attribute__((weak, alias("__red_LED_on")));
Peter Pearse2c261ca2007-09-04 16:18:38 +010099void inline __red_LED_off(void) {}
Ron Lee27c6e0b2009-08-05 20:14:01 +0200100void red_LED_off(void) __attribute__((weak, alias("__red_LED_off")));
Peter Pearse2c261ca2007-09-04 16:18:38 +0100101void inline __green_LED_on(void) {}
Ron Lee27c6e0b2009-08-05 20:14:01 +0200102void green_LED_on(void) __attribute__((weak, alias("__green_LED_on")));
Peter Pearse2c261ca2007-09-04 16:18:38 +0100103void inline __green_LED_off(void) {}
Ron Lee27c6e0b2009-08-05 20:14:01 +0200104void green_LED_off(void) __attribute__((weak, alias("__green_LED_off")));
Peter Pearse2c261ca2007-09-04 16:18:38 +0100105void inline __yellow_LED_on(void) {}
Ron Lee27c6e0b2009-08-05 20:14:01 +0200106void yellow_LED_on(void) __attribute__((weak, alias("__yellow_LED_on")));
Peter Pearse2c261ca2007-09-04 16:18:38 +0100107void inline __yellow_LED_off(void) {}
Ron Lee27c6e0b2009-08-05 20:14:01 +0200108void yellow_LED_off(void) __attribute__((weak, alias("__yellow_LED_off")));
Tom Rix225bb682009-05-15 23:47:12 +0200109void inline __blue_LED_on(void) {}
Ron Lee27c6e0b2009-08-05 20:14:01 +0200110void blue_LED_on(void) __attribute__((weak, alias("__blue_LED_on")));
Tom Rix225bb682009-05-15 23:47:12 +0200111void inline __blue_LED_off(void) {}
Ron Lee27c6e0b2009-08-05 20:14:01 +0200112void blue_LED_off(void) __attribute__((weak, alias("__blue_LED_off")));
Peter Pearse2c261ca2007-09-04 16:18:38 +0100113
114/************************************************************************
wdenkc6097192002-11-03 00:24:07 +0000115 * Init Utilities *
116 ************************************************************************
117 * Some of this code should be moved into the core functions,
118 * or dropped completely,
119 * but let's get it working (again) first...
120 */
121
Jean-Christophe PLAGNIOL-VILLARDb8023102009-02-22 15:49:28 +0100122#if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
123#define CONFIG_BAUDRATE 115200
124#endif
wdenkc6097192002-11-03 00:24:07 +0000125static int init_baudrate (void)
126{
Wolfgang Denk7fa6e902006-03-11 22:53:33 +0100127 char tmp[64]; /* long enough for environment variables */
Wolfgang Denk76af2782010-07-24 21:55:43 +0200128 int i = getenv_f("baudrate", tmp, sizeof (tmp));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200129
Heiko Schocheraeb29912010-09-17 13:10:39 +0200130 gd->baudrate = (i > 0)
wdenkc6097192002-11-03 00:24:07 +0000131 ? (int) simple_strtoul (tmp, NULL, 10)
132 : CONFIG_BAUDRATE;
133
134 return (0);
135}
136
137static int display_banner (void)
138{
wdenkc6097192002-11-03 00:24:07 +0000139 printf ("\n\n%s\n\n", version_string);
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100140 debug ("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200141 _TEXT_BASE,
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200142 _bss_start_ofs+_TEXT_BASE, _bss_end_ofs+_TEXT_BASE);
wdenkc6097192002-11-03 00:24:07 +0000143#ifdef CONFIG_MODEM_SUPPORT
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100144 debug ("Modem Support enabled\n");
wdenkc6097192002-11-03 00:24:07 +0000145#endif
146#ifdef CONFIG_USE_IRQ
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100147 debug ("IRQ Stack: %08lx\n", IRQ_STACK_START);
148 debug ("FIQ Stack: %08lx\n", FIQ_STACK_START);
wdenkc6097192002-11-03 00:24:07 +0000149#endif
wdenk808532a2003-10-10 10:05:42 +0000150
wdenkc6097192002-11-03 00:24:07 +0000151 return (0);
152}
153
154/*
155 * WARNING: this code looks "cleaner" than the PowerPC version, but
156 * has the disadvantage that you either get nothing, or everything.
157 * On PowerPC, you might see "DRAM: " before the system hangs - which
158 * gives a simple yet clear indication which part of the
159 * initialization if failing.
160 */
161static int display_dram_config (void)
162{
wdenkc6097192002-11-03 00:24:07 +0000163 int i;
164
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100165#ifdef DEBUG
wdenkc0aa5c52003-12-06 19:49:23 +0000166 puts ("RAM Configuration:\n");
wdenkc6097192002-11-03 00:24:07 +0000167
168 for(i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
169 printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
170 print_size (gd->bd->bi_dram[i].size, "\n");
171 }
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100172#else
173 ulong size = 0;
174
175 for (i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
176 size += gd->bd->bi_dram[i].size;
177 }
178 puts("DRAM: ");
179 print_size(size, "\n");
180#endif
wdenkc6097192002-11-03 00:24:07 +0000181
182 return (0);
183}
wdenkc6097192002-11-03 00:24:07 +0000184
Hebbarb7d11642007-12-18 16:00:54 -0800185#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
186static int init_func_i2c (void)
187{
188 puts ("I2C: ");
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200189 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
Hebbarb7d11642007-12-18 16:00:54 -0800190 puts ("ready\n");
191 return (0);
192}
193#endif
194
Jean-Christophe PLAGNIOL-VILLARD86588ea2009-01-31 09:04:58 +0100195#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
196#include <pci.h>
197static int arm_pci_init(void)
198{
199 pci_init();
200 return 0;
201}
202#endif /* CONFIG_CMD_PCI || CONFIG_PCI */
203
wdenkc6097192002-11-03 00:24:07 +0000204/*
wdenkc0aa5c52003-12-06 19:49:23 +0000205 * Breathe some life into the board...
wdenkc6097192002-11-03 00:24:07 +0000206 *
wdenkb6b2f0e2003-09-17 22:48:07 +0000207 * Initialize a serial port as console, and carry out some hardware
wdenkc6097192002-11-03 00:24:07 +0000208 * tests.
209 *
210 * The first part of initialization is running from Flash memory;
211 * its main purpose is to initialize the RAM so that we
212 * can relocate the monitor code to RAM.
213 */
214
215/*
216 * All attempts to come up with a "common" initialization sequence
217 * that works for all boards and architectures failed: some of the
218 * requirements are just _too_ different. To get rid of the resulting
wdenk927034e2004-02-08 19:38:38 +0000219 * mess of board dependent #ifdef'ed code we now make the whole
wdenkc6097192002-11-03 00:24:07 +0000220 * initialization sequence configurable to the user.
221 *
222 * The requirements for any new initalization function is simple: it
223 * receives a pointer to the "global data" structure as it's only
224 * argument, and returns an integer return code, where 0 means
225 * "continue" and != 0 means "fatal error, hang the system".
226 */
227typedef int (init_fnc_t) (void);
228
Wolfgang Denkafd16e22009-04-26 20:39:26 +0200229int print_cpuinfo (void);
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100230
Heiko Schocheraeb29912010-09-17 13:10:39 +0200231void __dram_init_banksize(void)
232{
233 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
234 gd->bd->bi_dram[0].size = gd->ram_size;
235}
236void dram_init_banksize(void)
237 __attribute__((weak, alias("__dram_init_banksize")));
238
239init_fnc_t *init_sequence[] = {
240#if defined(CONFIG_ARCH_CPU_INIT)
241 arch_cpu_init, /* basic arch cpu dependent setup */
242#endif
243#if defined(CONFIG_BOARD_EARLY_INIT_F)
244 board_early_init_f,
245#endif
246 timer_init, /* initialize timer */
247#ifdef CONFIG_FSL_ESDHC
248 get_clocks,
249#endif
250 env_init, /* initialize environment */
251 init_baudrate, /* initialze baudrate settings */
252 serial_init, /* serial communications setup */
253 console_init_f, /* stage 1 init of console */
254 display_banner, /* say that we are here */
255#if defined(CONFIG_DISPLAY_CPUINFO)
256 print_cpuinfo, /* display cpu info (and speed) */
257#endif
258#if defined(CONFIG_DISPLAY_BOARDINFO)
259 checkboard, /* display board info */
260#endif
261#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
262 init_func_i2c,
263#endif
264 dram_init, /* configure available RAM banks */
265#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
266 arm_pci_init,
267#endif
268 NULL,
269};
270
271void board_init_f (ulong bootflag)
272{
273 bd_t *bd;
274 init_fnc_t **init_fnc_ptr;
275 gd_t *id;
276 ulong addr, addr_sp;
277
278 /* Pointer is writable since we allocated a register for it */
Heiko Schocher17f288a2010-11-12 07:53:55 +0100279 gd = (gd_t *) ((CONFIG_SYS_INIT_SP_ADDR) & ~0x07);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200280 /* compiler optimization barrier needed for GCC >= 3.4 */
281 __asm__ __volatile__("": : :"memory");
282
283 memset ((void*)gd, 0, sizeof (gd_t));
284
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200285 gd->mon_len = _bss_end_ofs;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200286
287 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
288 if ((*init_fnc_ptr)() != 0) {
289 hang ();
290 }
291 }
292
293 debug ("monitor len: %08lX\n", gd->mon_len);
294 /*
295 * Ram is setup, size stored in gd !!
296 */
297 debug ("ramsize: %08lX\n", gd->ram_size);
298#if defined(CONFIG_SYS_MEM_TOP_HIDE)
299 /*
300 * Subtract specified amount of memory to hide so that it won't
301 * get "touched" at all by U-Boot. By fixing up gd->ram_size
302 * the Linux kernel should now get passed the now "corrected"
303 * memory size and won't touch it either. This should work
304 * for arch/ppc and arch/powerpc. Only Linux board ports in
305 * arch/powerpc with bootwrapper support, that recalculate the
306 * memory size from the SDRAM controller setup will have to
307 * get fixed.
308 */
309 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
310#endif
311
312 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
313
314#ifdef CONFIG_LOGBUFFER
315#ifndef CONFIG_ALT_LB_ADDR
316 /* reserve kernel log buffer */
317 addr -= (LOGBUFF_RESERVE);
318 debug ("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr);
319#endif
320#endif
321
322#ifdef CONFIG_PRAM
323 /*
324 * reserve protected RAM
325 */
326 i = getenv_r ("pram", (char *)tmp, sizeof (tmp));
327 reg = (i > 0) ? simple_strtoul ((const char *)tmp, NULL, 10) : CONFIG_PRAM;
328 addr -= (reg << 10); /* size is in kB */
329 debug ("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
330#endif /* CONFIG_PRAM */
331
332#if !(defined(CONFIG_SYS_NO_ICACHE) && defined(CONFIG_SYS_NO_DCACHE))
333 /* reserve TLB table */
334 addr -= (4096 * 4);
335
336 /* round down to next 64 kB limit */
337 addr &= ~(0x10000 - 1);
338
339 gd->tlb_addr = addr;
340 debug ("TLB table at: %08lx\n", addr);
341#endif
342
343 /* round down to next 4 kB limit */
344 addr &= ~(4096 - 1);
345 debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
346
347#ifdef CONFIG_VFD
348# ifndef PAGE_SIZE
349# define PAGE_SIZE 4096
350# endif
351 /*
352 * reserve memory for VFD display (always full pages)
353 */
354 addr -= vfd_setmem (addr);
355 gd->fb_base = addr;
356#endif /* CONFIG_VFD */
357
358#ifdef CONFIG_LCD
Minkyu Kang50777c42011-04-24 22:22:34 +0000359#ifdef CONFIG_FB_ADDR
360 gd->fb_base = CONFIG_FB_ADDR;
361#else
Heiko Schocheraeb29912010-09-17 13:10:39 +0200362 /* reserve memory for LCD display (always full pages) */
363 addr = lcd_setmem (addr);
364 gd->fb_base = addr;
Minkyu Kang50777c42011-04-24 22:22:34 +0000365#endif /* CONFIG_FB_ADDR */
Heiko Schocheraeb29912010-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
375 debug ("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
376
377#ifndef CONFIG_PRELOADER
378 /*
379 * reserve memory for malloc() arena
380 */
381 addr_sp = addr - TOTAL_MALLOC_LEN;
382 debug ("Reserving %dk for malloc() at: %08lx\n",
383 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;
391 debug ("Reserving %zu Bytes for Board Info at: %08lx\n",
392 sizeof (bd_t), addr_sp);
393 addr_sp -= sizeof (gd_t);
394 id = (gd_t *) addr_sp;
395 debug ("Reserving %zu Bytes for Global Data at: %08lx\n",
396 sizeof (gd_t), addr_sp);
397
398 /* setup stackpointer for exeptions */
399 gd->irq_sp = addr_sp;
400#ifdef CONFIG_USE_IRQ
401 addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
402 debug ("Reserving %zu Bytes for IRQ stack at: %08lx\n",
403 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
404#endif
405 /* leave 3 words for abort-stack */
Eric Coopera346ba92011-04-14 12:32:37 +0000406 addr_sp -= 12;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200407
408 /* 8-byte alignment for ABI compliance */
409 addr_sp &= ~0x07;
410#else
411 addr_sp += 128; /* leave 32 words for abort-stack */
412 gd->irq_sp = addr_sp;
413#endif
414
415 debug ("New Stack Pointer is: %08lx\n", addr_sp);
416
417#ifdef CONFIG_POST
418 post_bootmode_init();
419 post_run (NULL, POST_ROM | post_bootmode_get(0));
420#endif
421
422 gd->bd->bi_baudrate = gd->baudrate;
423 /* Ram ist board specific, so move it to board code ... */
424 dram_init_banksize();
425 display_dram_config(); /* and display it */
426
427 gd->relocaddr = addr;
428 gd->start_addr_sp = addr_sp;
429 gd->reloc_off = addr - _TEXT_BASE;
430 debug ("relocation Offset is: %08lx\n", gd->reloc_off);
431 memcpy (id, (void *)gd, sizeof (gd_t));
432
433 relocate_code (addr_sp, id, addr);
434
435 /* NOTREACHED - relocate_code() does not return */
436}
437
438#if !defined(CONFIG_SYS_NO_FLASH)
439static char *failed = "*** failed ***\n";
440#endif
441
442/************************************************************************
443 *
444 * This is the next part if the initialization sequence: we are now
445 * running from RAM and have a "normal" C environment, i. e. global
446 * data can be written, BSS has been cleared, the stack size in not
447 * that critical any more, etc.
448 *
449 ************************************************************************
450 */
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200451
Heiko Schocheraeb29912010-09-17 13:10:39 +0200452void board_init_r (gd_t *id, ulong dest_addr)
453{
454 char *s;
455 bd_t *bd;
456 ulong malloc_start;
457#if !defined(CONFIG_SYS_NO_FLASH)
458 ulong flash_size;
459#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200460
461 gd = id;
462 bd = gd->bd;
463
464 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
465
Po-Yu Chuang1864b002011-03-01 23:02:04 +0000466 monitor_flash_len = _end_ofs;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200467 debug ("monitor flash len: %08lX\n", monitor_flash_len);
468 board_init(); /* Setup chipselects */
469
stefano babic5ab4f032007-08-30 22:57:04 +0200470#ifdef CONFIG_SERIAL_MULTI
471 serial_initialize();
472#endif
473
Heiko Schocheraeb29912010-09-17 13:10:39 +0200474 debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
475
Heiko Schocheraeb29912010-09-17 13:10:39 +0200476#ifdef CONFIG_LOGBUFFER
477 logbuff_init_ptrs ();
478#endif
479#ifdef CONFIG_POST
480 post_output_backlog ();
Heiko Schocheraeb29912010-09-17 13:10:39 +0200481#endif
482
483 /* The Malloc area is immediately below the monitor copy in DRAM */
484 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
485 mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200486
487#if !defined(CONFIG_SYS_NO_FLASH)
Peter Tyser0b5a2632010-12-28 18:12:05 -0600488 puts ("Flash: ");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200489
490 if ((flash_size = flash_init ()) > 0) {
491# ifdef CONFIG_SYS_FLASH_CHECKSUM
492 print_size (flash_size, "");
493 /*
494 * Compute and print flash CRC if flashchecksum is set to 'y'
495 *
496 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
497 */
498 s = getenv ("flashchecksum");
499 if (s && (*s == 'y')) {
500 printf (" CRC: %08X",
501 crc32 (0, (const unsigned char *) CONFIG_SYS_FLASH_BASE, flash_size)
502 );
503 }
504 putc ('\n');
505# else /* !CONFIG_SYS_FLASH_CHECKSUM */
506 print_size (flash_size, "\n");
507# endif /* CONFIG_SYS_FLASH_CHECKSUM */
508 } else {
509 puts (failed);
510 hang ();
511 }
512#endif
513
514#if defined(CONFIG_CMD_NAND)
515 puts ("NAND: ");
516 nand_init(); /* go init the NAND */
517#endif
518
519#if defined(CONFIG_CMD_ONENAND)
520 onenand_init();
521#endif
522
Steve Sakomana93ec572010-10-11 05:51:39 -0700523#ifdef CONFIG_GENERIC_MMC
524 puts("MMC: ");
525 mmc_initialize(bd);
526#endif
527
Heiko Schocheraeb29912010-09-17 13:10:39 +0200528#ifdef CONFIG_HAS_DATAFLASH
529 AT91F_DataflashInit();
530 dataflash_print_info();
531#endif
532
533 /* initialize environment */
534 env_relocate ();
535
536#ifdef CONFIG_VFD
537 /* must do this after the framebuffer is allocated */
538 drv_vfd_init();
539#endif /* CONFIG_VFD */
540
wdenkc6097192002-11-03 00:24:07 +0000541 /* IP Address */
wdenkc0aa5c52003-12-06 19:49:23 +0000542 gd->bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
wdenkc6097192002-11-03 00:24:07 +0000543
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +0200544 stdio_init (); /* get the devices list going. */
wdenk56958612003-06-22 17:18:28 +0000545
wdenk874ac262003-07-24 23:38:38 +0000546 jumptable_init ();
wdenk56958612003-06-22 17:18:28 +0000547
Rafal Jaworowski9d9689f2009-01-23 13:27:16 +0100548#if defined(CONFIG_API)
549 /* Initialize API */
550 api_init ();
551#endif
552
wdenk56958612003-06-22 17:18:28 +0000553 console_init_r (); /* fully init console as a device */
554
Prafulla Wadaskar98196702009-05-31 14:53:20 +0200555#if defined(CONFIG_ARCH_MISC_INIT)
556 /* miscellaneous arch dependent initialisations */
557 arch_misc_init ();
558#endif
wdenkc6097192002-11-03 00:24:07 +0000559#if defined(CONFIG_MISC_INIT_R)
560 /* miscellaneous platform dependent initialisations */
561 misc_init_r ();
562#endif
563
Heiko Schocheraeb29912010-09-17 13:10:39 +0200564 /* set up exceptions */
565 interrupt_init ();
wdenkc6097192002-11-03 00:24:07 +0000566 /* enable exceptions */
567 enable_interrupts ();
568
wdenkc0aa5c52003-12-06 19:49:23 +0000569 /* Perform network card initialisation if necessary */
wdenk3c711762004-06-09 13:37:52 +0000570#if defined(CONFIG_DRIVER_SMC91111) || defined (CONFIG_DRIVER_LAN91C96)
Mike Frysinger7a2043d2009-02-11 19:39:55 -0500571 /* XXX: this needs to be moved to board init */
wdenkaa603362003-05-12 21:50:16 +0000572 if (getenv ("ethaddr")) {
Mike Frysinger7a2043d2009-02-11 19:39:55 -0500573 uchar enetaddr[6];
574 eth_getenv_enetaddr("ethaddr", enetaddr);
575 smc_set_mac_addr(enetaddr);
wdenkaa603362003-05-12 21:50:16 +0000576 }
wdenk3c711762004-06-09 13:37:52 +0000577#endif /* CONFIG_DRIVER_SMC91111 || CONFIG_DRIVER_LAN91C96 */
wdenkaa603362003-05-12 21:50:16 +0000578
wdenkb02744a2003-04-05 00:53:31 +0000579 /* Initialize from environment */
580 if ((s = getenv ("loadaddr")) != NULL) {
581 load_addr = simple_strtoul (s, NULL, 16);
582 }
Jon Loeliger12077972007-07-09 18:05:38 -0500583#if defined(CONFIG_CMD_NET)
wdenkb02744a2003-04-05 00:53:31 +0000584 if ((s = getenv ("bootfile")) != NULL) {
585 copy_filename (BootFile, s, sizeof (BootFile));
586 }
Jon Loeliger1670a5b2007-07-10 11:19:50 -0500587#endif
wdenkb02744a2003-04-05 00:53:31 +0000588
wdenkda55c6e2004-01-20 23:12:12 +0000589#ifdef BOARD_LATE_INIT
590 board_late_init ();
wdenkc6097192002-11-03 00:24:07 +0000591#endif
Ilya Yanok50ff6df2009-06-08 04:12:50 +0400592
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +0200593#ifdef CONFIG_BITBANGMII
594 bb_miiphy_init();
595#endif
Jon Loeliger12077972007-07-09 18:05:38 -0500596#if defined(CONFIG_CMD_NET)
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200597#if defined(CONFIG_NET_MULTI)
wdenk26c58432005-01-09 17:12:27 +0000598 puts ("Net: ");
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200599#endif
wdenk26c58432005-01-09 17:12:27 +0000600 eth_initialize(gd->bd);
Jean-Christophe PLAGNIOL-VILLARD6beda0c2007-12-11 10:53:12 +0100601#if defined(CONFIG_RESET_PHY_R)
602 debug ("Reset Ethernet PHY\n");
603 reset_phy();
604#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200605#endif
606
607#ifdef CONFIG_POST
608 post_run (NULL, POST_RAM | post_bootmode_get(0));
609#endif
610
611#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
612 /*
613 * Export available size of memory for Linux,
614 * taking into account the protected RAM at top of memory
615 */
616 {
617 ulong pram;
618 uchar memsz[32];
619#ifdef CONFIG_PRAM
620 char *s;
621
622 if ((s = getenv ("pram")) != NULL) {
623 pram = simple_strtoul (s, NULL, 10);
624 } else {
625 pram = CONFIG_PRAM;
626 }
627#else
628 pram=0;
629#endif
630#ifdef CONFIG_LOGBUFFER
631#ifndef CONFIG_ALT_LB_ADDR
632 /* Also take the logbuffer into account (pram is in kB) */
633 pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024;
wdenk26c58432005-01-09 17:12:27 +0000634#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200635#endif
636 sprintf ((char *)memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
637 setenv ("mem", (char *)memsz);
638 }
639#endif
640
wdenkc6097192002-11-03 00:24:07 +0000641 /* main_loop() can return to retry autoboot, if so just run it again. */
642 for (;;) {
643 main_loop ();
644 }
645
646 /* NOTREACHED - no way out of command loop except booting */
647}
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200648
wdenkc6097192002-11-03 00:24:07 +0000649void hang (void)
650{
651 puts ("### ERROR ### Please RESET the board ###\n");
652 for (;;);
653}