blob: fa87d51373156b7f87bd1d979c47e7053696c557 [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
wdenk3c711762004-06-09 13:37:52 +000053#ifdef CONFIG_DRIVER_SMC91111
Jean-Christophe PLAGNIOL-VILLARDed0ea1f2007-11-21 21:19:24 +010054#include "../drivers/net/smc91111.h"
wdenk3c711762004-06-09 13:37:52 +000055#endif
56#ifdef CONFIG_DRIVER_LAN91C96
Jean-Christophe PLAGNIOL-VILLARDed0ea1f2007-11-21 21:19:24 +010057#include "../drivers/net/lan91c96.h"
wdenk3c711762004-06-09 13:37:52 +000058#endif
59
Markus Klotzbücheraedd96a2006-02-10 11:25:41 +010060DECLARE_GLOBAL_DATA_PTR;
61
wdenkb9a83a92003-05-30 12:48:29 +000062ulong monitor_flash_len;
63
wdenk381669a2003-06-16 23:50:08 +000064#ifdef CONFIG_HAS_DATAFLASH
65extern int AT91F_DataflashInit(void);
66extern void dataflash_print_info(void);
67#endif
68
wdenk7539dea2003-06-19 23:01:32 +000069#ifndef CONFIG_IDENT_STRING
70#define CONFIG_IDENT_STRING ""
71#endif
72
wdenkc6097192002-11-03 00:24:07 +000073const char version_string[] =
Peter Tyser62948502008-11-03 09:30:59 -060074 U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")"CONFIG_IDENT_STRING;
wdenkc6097192002-11-03 00:24:07 +000075
wdenk6b1aa8d2004-06-06 22:11:41 +000076#ifdef CONFIG_DRIVER_RTL8019
wdenk5d5317e2003-12-07 00:46:27 +000077extern void rtl8019_get_enetaddr (uchar * addr);
78#endif
79
Hebbarb7d11642007-12-18 16:00:54 -080080#if defined(CONFIG_HARD_I2C) || \
81 defined(CONFIG_SOFT_I2C)
82#include <i2c.h>
83#endif
84
wdenkc6097192002-11-03 00:24:07 +000085/*
86 * Begin and End of memory area for malloc(), and current "brk"
87 */
88static ulong mem_malloc_start = 0;
89static ulong mem_malloc_end = 0;
90static ulong mem_malloc_brk = 0;
91
wdenk9dd2b882002-12-03 21:28:10 +000092static
wdenk9dd2b882002-12-03 21:28:10 +000093void mem_malloc_init (ulong dest_addr)
wdenkc6097192002-11-03 00:24:07 +000094{
95 mem_malloc_start = dest_addr;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020096 mem_malloc_end = dest_addr + CONFIG_SYS_MALLOC_LEN;
wdenkc6097192002-11-03 00:24:07 +000097 mem_malloc_brk = mem_malloc_start;
98
99 memset ((void *) mem_malloc_start, 0,
100 mem_malloc_end - mem_malloc_start);
101}
102
103void *sbrk (ptrdiff_t increment)
104{
105 ulong old = mem_malloc_brk;
106 ulong new = old + increment;
107
108 if ((new < mem_malloc_start) || (new > mem_malloc_end)) {
109 return (NULL);
110 }
111 mem_malloc_brk = new;
112
113 return ((void *) old);
114}
115
Stelian Popf6f86652008-05-09 21:57:18 +0200116
wdenkc6097192002-11-03 00:24:07 +0000117/************************************************************************
Peter Pearse2c261ca2007-09-04 16:18:38 +0100118 * Coloured LED functionality
119 ************************************************************************
120 * May be supplied by boards if desired
121 */
122void inline __coloured_LED_init (void) {}
Wolfgang Denkebc15912007-10-13 21:15:39 +0200123void inline coloured_LED_init (void) __attribute__((weak, alias("__coloured_LED_init")));
Peter Pearse2c261ca2007-09-04 16:18:38 +0100124void inline __red_LED_on (void) {}
125void inline red_LED_on (void) __attribute__((weak, alias("__red_LED_on")));
126void inline __red_LED_off(void) {}
Wolfgang Denkebc15912007-10-13 21:15:39 +0200127void inline red_LED_off(void) __attribute__((weak, alias("__red_LED_off")));
Peter Pearse2c261ca2007-09-04 16:18:38 +0100128void inline __green_LED_on(void) {}
Wolfgang Denkebc15912007-10-13 21:15:39 +0200129void inline green_LED_on(void) __attribute__((weak, alias("__green_LED_on")));
Peter Pearse2c261ca2007-09-04 16:18:38 +0100130void inline __green_LED_off(void) {}
Wolfgang Denkebc15912007-10-13 21:15:39 +0200131void inline green_LED_off(void)__attribute__((weak, alias("__green_LED_off")));
Peter Pearse2c261ca2007-09-04 16:18:38 +0100132void inline __yellow_LED_on(void) {}
Wolfgang Denkebc15912007-10-13 21:15:39 +0200133void inline yellow_LED_on(void)__attribute__((weak, alias("__yellow_LED_on")));
Peter Pearse2c261ca2007-09-04 16:18:38 +0100134void inline __yellow_LED_off(void) {}
Wolfgang Denkebc15912007-10-13 21:15:39 +0200135void inline yellow_LED_off(void)__attribute__((weak, alias("__yellow_LED_off")));
Tom Rix225bb682009-05-15 23:47:12 +0200136void inline __blue_LED_on(void) {}
137void inline blue_LED_on(void)__attribute__((weak, alias("__blue_LED_on")));
138void inline __blue_LED_off(void) {}
139void inline blue_LED_off(void)__attribute__((weak, alias("__blue_LED_off")));
Peter Pearse2c261ca2007-09-04 16:18:38 +0100140
141/************************************************************************
wdenkc6097192002-11-03 00:24:07 +0000142 * Init Utilities *
143 ************************************************************************
144 * Some of this code should be moved into the core functions,
145 * or dropped completely,
146 * but let's get it working (again) first...
147 */
148
Jean-Christophe PLAGNIOL-VILLARDb8023102009-02-22 15:49:28 +0100149#if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
150#define CONFIG_BAUDRATE 115200
151#endif
wdenkc6097192002-11-03 00:24:07 +0000152static int init_baudrate (void)
153{
Wolfgang Denk7fa6e902006-03-11 22:53:33 +0100154 char tmp[64]; /* long enough for environment variables */
wdenkc6097192002-11-03 00:24:07 +0000155 int i = getenv_r ("baudrate", tmp, sizeof (tmp));
wdenk56958612003-06-22 17:18:28 +0000156 gd->bd->bi_baudrate = gd->baudrate = (i > 0)
wdenkc6097192002-11-03 00:24:07 +0000157 ? (int) simple_strtoul (tmp, NULL, 10)
158 : CONFIG_BAUDRATE;
159
160 return (0);
161}
162
163static int display_banner (void)
164{
wdenkc6097192002-11-03 00:24:07 +0000165 printf ("\n\n%s\n\n", version_string);
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100166 debug ("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
167 _armboot_start, _bss_start, _bss_end);
wdenkc6097192002-11-03 00:24:07 +0000168#ifdef CONFIG_MODEM_SUPPORT
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100169 debug ("Modem Support enabled\n");
wdenkc6097192002-11-03 00:24:07 +0000170#endif
171#ifdef CONFIG_USE_IRQ
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100172 debug ("IRQ Stack: %08lx\n", IRQ_STACK_START);
173 debug ("FIQ Stack: %08lx\n", FIQ_STACK_START);
wdenkc6097192002-11-03 00:24:07 +0000174#endif
wdenk808532a2003-10-10 10:05:42 +0000175
wdenkc6097192002-11-03 00:24:07 +0000176 return (0);
177}
178
179/*
180 * WARNING: this code looks "cleaner" than the PowerPC version, but
181 * has the disadvantage that you either get nothing, or everything.
182 * On PowerPC, you might see "DRAM: " before the system hangs - which
183 * gives a simple yet clear indication which part of the
184 * initialization if failing.
185 */
186static int display_dram_config (void)
187{
wdenkc6097192002-11-03 00:24:07 +0000188 int i;
189
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100190#ifdef DEBUG
wdenkc0aa5c52003-12-06 19:49:23 +0000191 puts ("RAM Configuration:\n");
wdenkc6097192002-11-03 00:24:07 +0000192
193 for(i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
194 printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
195 print_size (gd->bd->bi_dram[i].size, "\n");
196 }
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100197#else
198 ulong size = 0;
199
200 for (i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
201 size += gd->bd->bi_dram[i].size;
202 }
203 puts("DRAM: ");
204 print_size(size, "\n");
205#endif
wdenkc6097192002-11-03 00:24:07 +0000206
207 return (0);
208}
209
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200210#ifndef CONFIG_SYS_NO_FLASH
wdenkc6097192002-11-03 00:24:07 +0000211static void display_flash_config (ulong size)
212{
213 puts ("Flash: ");
214 print_size (size, "\n");
215}
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200216#endif /* CONFIG_SYS_NO_FLASH */
wdenkc6097192002-11-03 00:24:07 +0000217
Hebbarb7d11642007-12-18 16:00:54 -0800218#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
219static int init_func_i2c (void)
220{
221 puts ("I2C: ");
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200222 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
Hebbarb7d11642007-12-18 16:00:54 -0800223 puts ("ready\n");
224 return (0);
225}
226#endif
227
Jean-Christophe PLAGNIOL-VILLARD86588ea2009-01-31 09:04:58 +0100228#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
229#include <pci.h>
230static int arm_pci_init(void)
231{
232 pci_init();
233 return 0;
234}
235#endif /* CONFIG_CMD_PCI || CONFIG_PCI */
236
wdenkc6097192002-11-03 00:24:07 +0000237/*
wdenkc0aa5c52003-12-06 19:49:23 +0000238 * Breathe some life into the board...
wdenkc6097192002-11-03 00:24:07 +0000239 *
wdenkb6b2f0e2003-09-17 22:48:07 +0000240 * Initialize a serial port as console, and carry out some hardware
wdenkc6097192002-11-03 00:24:07 +0000241 * tests.
242 *
243 * The first part of initialization is running from Flash memory;
244 * its main purpose is to initialize the RAM so that we
245 * can relocate the monitor code to RAM.
246 */
247
248/*
249 * All attempts to come up with a "common" initialization sequence
250 * that works for all boards and architectures failed: some of the
251 * requirements are just _too_ different. To get rid of the resulting
wdenk927034e2004-02-08 19:38:38 +0000252 * mess of board dependent #ifdef'ed code we now make the whole
wdenkc6097192002-11-03 00:24:07 +0000253 * initialization sequence configurable to the user.
254 *
255 * The requirements for any new initalization function is simple: it
256 * receives a pointer to the "global data" structure as it's only
257 * argument, and returns an integer return code, where 0 means
258 * "continue" and != 0 means "fatal error, hang the system".
259 */
260typedef int (init_fnc_t) (void);
261
Wolfgang Denkafd16e22009-04-26 20:39:26 +0200262int print_cpuinfo (void);
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100263
wdenkc6097192002-11-03 00:24:07 +0000264init_fnc_t *init_sequence[] = {
Jean-Christophe PLAGNIOL-VILLARD23164f12009-04-16 21:30:44 +0200265#if defined(CONFIG_ARCH_CPU_INIT)
266 arch_cpu_init, /* basic arch cpu dependent setup */
267#endif
wdenkc6097192002-11-03 00:24:07 +0000268 board_init, /* basic board dependent setup */
Jean-Christophe PLAGNIOL-VILLARD8c9fc002009-05-15 23:47:02 +0200269#if defined(CONFIG_USE_IRQ)
wdenkc6097192002-11-03 00:24:07 +0000270 interrupt_init, /* set up exceptions */
Jean-Christophe PLAGNIOL-VILLARD8c9fc002009-05-15 23:47:02 +0200271#endif
272 timer_init, /* initialize timer */
wdenkc6097192002-11-03 00:24:07 +0000273 env_init, /* initialize environment */
274 init_baudrate, /* initialze baudrate settings */
275 serial_init, /* serial communications setup */
wdenk56958612003-06-22 17:18:28 +0000276 console_init_f, /* stage 1 init of console */
wdenk699b13a2002-11-03 18:03:52 +0000277 display_banner, /* say that we are here */
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100278#if defined(CONFIG_DISPLAY_CPUINFO)
279 print_cpuinfo, /* display cpu info (and speed) */
280#endif
281#if defined(CONFIG_DISPLAY_BOARDINFO)
282 checkboard, /* display board info */
283#endif
Hebbarb7d11642007-12-18 16:00:54 -0800284#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
285 init_func_i2c,
286#endif
wdenkc6097192002-11-03 00:24:07 +0000287 dram_init, /* configure available RAM banks */
Jean-Christophe PLAGNIOL-VILLARD86588ea2009-01-31 09:04:58 +0100288#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
289 arm_pci_init,
290#endif
wdenkc6097192002-11-03 00:24:07 +0000291 display_dram_config,
wdenkc6097192002-11-03 00:24:07 +0000292 NULL,
293};
294
295void start_armboot (void)
296{
wdenkc6097192002-11-03 00:24:07 +0000297 init_fnc_t **init_fnc_ptr;
wdenkb02744a2003-04-05 00:53:31 +0000298 char *s;
wdenk361f4a22004-07-11 18:10:30 +0000299#if defined(CONFIG_VFD) || defined(CONFIG_LCD)
wdenkc6097192002-11-03 00:24:07 +0000300 unsigned long addr;
301#endif
302
303 /* Pointer is writable since we allocated a register for it */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200304 gd = (gd_t*)(_armboot_start - CONFIG_SYS_MALLOC_LEN - sizeof(gd_t));
wdenk3337af42004-07-01 20:28:03 +0000305 /* compiler optimization barrier needed for GCC >= 3.4 */
306 __asm__ __volatile__("": : :"memory");
307
wdenkc0aa5c52003-12-06 19:49:23 +0000308 memset ((void*)gd, 0, sizeof (gd_t));
309 gd->bd = (bd_t*)((char*)gd - sizeof(bd_t));
wdenkc6097192002-11-03 00:24:07 +0000310 memset (gd->bd, 0, sizeof (bd_t));
311
gnusercne89dc942008-10-08 18:58:58 +0200312 gd->flags |= GD_FLG_RELOC;
313
wdenk927034e2004-02-08 19:38:38 +0000314 monitor_flash_len = _bss_start - _armboot_start;
wdenkb9a83a92003-05-30 12:48:29 +0000315
wdenkc6097192002-11-03 00:24:07 +0000316 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
317 if ((*init_fnc_ptr)() != 0) {
318 hang ();
319 }
320 }
321
Stefan Roeseb81464e2009-05-11 15:50:12 +0200322 /* armboot_start is defined in the board-specific linker script */
323 mem_malloc_init (_armboot_start - CONFIG_SYS_MALLOC_LEN);
324
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200325#ifndef CONFIG_SYS_NO_FLASH
wdenkc6097192002-11-03 00:24:07 +0000326 /* configure available FLASH banks */
Guennadi Liakhovetskiac94af42009-02-06 10:37:45 +0100327 display_flash_config (flash_init ());
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200328#endif /* CONFIG_SYS_NO_FLASH */
wdenkc6097192002-11-03 00:24:07 +0000329
330#ifdef CONFIG_VFD
wdenkc0aa5c52003-12-06 19:49:23 +0000331# ifndef PAGE_SIZE
332# define PAGE_SIZE 4096
333# endif
wdenkc6097192002-11-03 00:24:07 +0000334 /*
335 * reserve memory for VFD display (always full pages)
336 */
wdenk361f4a22004-07-11 18:10:30 +0000337 /* bss_end is defined in the board-specific linker script */
338 addr = (_bss_end + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
Guennadi Liakhovetskiac94af42009-02-06 10:37:45 +0100339 vfd_setmem (addr);
wdenkc6097192002-11-03 00:24:07 +0000340 gd->fb_base = addr;
wdenkc6097192002-11-03 00:24:07 +0000341#endif /* CONFIG_VFD */
342
wdenk361f4a22004-07-11 18:10:30 +0000343#ifdef CONFIG_LCD
Stelian Popf6f86652008-05-09 21:57:18 +0200344 /* board init may have inited fb_base */
345 if (!gd->fb_base) {
346# ifndef PAGE_SIZE
347# define PAGE_SIZE 4096
348# endif
349 /*
350 * reserve memory for LCD display (always full pages)
351 */
352 /* bss_end is defined in the board-specific linker script */
353 addr = (_bss_end + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
Guennadi Liakhovetskiac94af42009-02-06 10:37:45 +0100354 lcd_setmem (addr);
Stelian Popf6f86652008-05-09 21:57:18 +0200355 gd->fb_base = addr;
356 }
wdenk361f4a22004-07-11 18:10:30 +0000357#endif /* CONFIG_LCD */
358
Jon Loeliger12077972007-07-09 18:05:38 -0500359#if defined(CONFIG_CMD_NAND)
Markus Klotzbuecherb6437322006-04-25 17:00:33 +0200360 puts ("NAND: ");
wdenkc8434db2003-03-26 06:55:25 +0000361 nand_init(); /* go init the NAND */
362#endif
363
Kyungmin Parkaf3d11c2007-09-10 17:15:14 +0900364#if defined(CONFIG_CMD_ONENAND)
365 onenand_init();
366#endif
367
wdenk381669a2003-06-16 23:50:08 +0000368#ifdef CONFIG_HAS_DATAFLASH
369 AT91F_DataflashInit();
370 dataflash_print_info();
371#endif
372
wdenk4fc95692003-02-28 00:49:47 +0000373 /* initialize environment */
374 env_relocate ();
375
wdenkc6097192002-11-03 00:24:07 +0000376#ifdef CONFIG_VFD
377 /* must do this after the framebuffer is allocated */
378 drv_vfd_init();
wdenkc0aa5c52003-12-06 19:49:23 +0000379#endif /* CONFIG_VFD */
wdenkc6097192002-11-03 00:24:07 +0000380
stefano babic5ab4f032007-08-30 22:57:04 +0200381#ifdef CONFIG_SERIAL_MULTI
382 serial_initialize();
383#endif
384
wdenkc6097192002-11-03 00:24:07 +0000385 /* IP Address */
wdenkc0aa5c52003-12-06 19:49:23 +0000386 gd->bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
wdenkc6097192002-11-03 00:24:07 +0000387
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +0200388 stdio_init (); /* get the devices list going. */
wdenk56958612003-06-22 17:18:28 +0000389
wdenk874ac262003-07-24 23:38:38 +0000390 jumptable_init ();
wdenk56958612003-06-22 17:18:28 +0000391
Rafal Jaworowski9d9689f2009-01-23 13:27:16 +0100392#if defined(CONFIG_API)
393 /* Initialize API */
394 api_init ();
395#endif
396
wdenk56958612003-06-22 17:18:28 +0000397 console_init_r (); /* fully init console as a device */
398
Prafulla Wadaskar98196702009-05-31 14:53:20 +0200399#if defined(CONFIG_ARCH_MISC_INIT)
400 /* miscellaneous arch dependent initialisations */
401 arch_misc_init ();
402#endif
wdenkc6097192002-11-03 00:24:07 +0000403#if defined(CONFIG_MISC_INIT_R)
404 /* miscellaneous platform dependent initialisations */
405 misc_init_r ();
406#endif
407
408 /* enable exceptions */
409 enable_interrupts ();
410
wdenkc0aa5c52003-12-06 19:49:23 +0000411 /* Perform network card initialisation if necessary */
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200412#ifdef CONFIG_DRIVER_TI_EMAC
Mike Frysinger7a2043d2009-02-11 19:39:55 -0500413 /* XXX: this needs to be moved to board init */
Sandeep Paulraj4b26f052008-08-31 00:39:46 +0200414extern void davinci_eth_set_mac_addr (const u_int8_t *addr);
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200415 if (getenv ("ethaddr")) {
Mike Frysinger7a2043d2009-02-11 19:39:55 -0500416 uchar enetaddr[6];
417 eth_getenv_enetaddr("ethaddr", enetaddr);
418 davinci_eth_set_mac_addr(enetaddr);
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200419 }
420#endif
421
wdenk3c711762004-06-09 13:37:52 +0000422#if defined(CONFIG_DRIVER_SMC91111) || defined (CONFIG_DRIVER_LAN91C96)
Mike Frysinger7a2043d2009-02-11 19:39:55 -0500423 /* XXX: this needs to be moved to board init */
wdenkaa603362003-05-12 21:50:16 +0000424 if (getenv ("ethaddr")) {
Mike Frysinger7a2043d2009-02-11 19:39:55 -0500425 uchar enetaddr[6];
426 eth_getenv_enetaddr("ethaddr", enetaddr);
427 smc_set_mac_addr(enetaddr);
wdenkaa603362003-05-12 21:50:16 +0000428 }
wdenk3c711762004-06-09 13:37:52 +0000429#endif /* CONFIG_DRIVER_SMC91111 || CONFIG_DRIVER_LAN91C96 */
wdenkaa603362003-05-12 21:50:16 +0000430
wdenkb02744a2003-04-05 00:53:31 +0000431 /* Initialize from environment */
432 if ((s = getenv ("loadaddr")) != NULL) {
433 load_addr = simple_strtoul (s, NULL, 16);
434 }
Jon Loeliger12077972007-07-09 18:05:38 -0500435#if defined(CONFIG_CMD_NET)
wdenkb02744a2003-04-05 00:53:31 +0000436 if ((s = getenv ("bootfile")) != NULL) {
437 copy_filename (BootFile, s, sizeof (BootFile));
438 }
Jon Loeliger1670a5b2007-07-10 11:19:50 -0500439#endif
wdenkb02744a2003-04-05 00:53:31 +0000440
wdenkda55c6e2004-01-20 23:12:12 +0000441#ifdef BOARD_LATE_INIT
442 board_late_init ();
wdenkc6097192002-11-03 00:24:07 +0000443#endif
Ilya Yanok50ff6df2009-06-08 04:12:50 +0400444
445#ifdef CONFIG_GENERIC_MMC
446 puts ("MMC: ");
447 mmc_initialize (gd->bd);
448#endif
449
Jon Loeliger12077972007-07-09 18:05:38 -0500450#if defined(CONFIG_CMD_NET)
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200451#if defined(CONFIG_NET_MULTI)
wdenk26c58432005-01-09 17:12:27 +0000452 puts ("Net: ");
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200453#endif
wdenk26c58432005-01-09 17:12:27 +0000454 eth_initialize(gd->bd);
Jean-Christophe PLAGNIOL-VILLARD6beda0c2007-12-11 10:53:12 +0100455#if defined(CONFIG_RESET_PHY_R)
456 debug ("Reset Ethernet PHY\n");
457 reset_phy();
458#endif
wdenk26c58432005-01-09 17:12:27 +0000459#endif
wdenkc6097192002-11-03 00:24:07 +0000460 /* main_loop() can return to retry autoboot, if so just run it again. */
461 for (;;) {
462 main_loop ();
463 }
464
465 /* NOTREACHED - no way out of command loop except booting */
466}
467
468void hang (void)
469{
470 puts ("### ERROR ### Please RESET the board ###\n");
471 for (;;);
472}