blob: 778ec788a81f356d64e2a292e5bc195ca87e3f77 [file] [log] [blame]
wdenk4e5ca3e2003-12-08 01:34:36 +00001/*
wdenkbf9e3b32004-02-12 00:47:09 +00002 * (C) Copyright 2003
3 * Josef Baumgartner <josef.baumgartner@telex.de>
4 *
5 * (C) Copyright 2000-2002
wdenk4e5ca3e2003-12-08 01:34:36 +00006 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27#include <common.h>
28#include <watchdog.h>
29#include <command.h>
30#include <malloc.h>
31#include <devices.h>
wdenkbf9e3b32004-02-12 00:47:09 +000032
33#ifdef CONFIG_M5272
34#include <asm/immap_5272.h>
35#endif
36
Jon Loeliger7def6b32007-07-09 18:02:11 -050037#if defined(CONFIG_CMD_IDE)
wdenk4e5ca3e2003-12-08 01:34:36 +000038#include <ide.h>
39#endif
Jon Loeliger7def6b32007-07-09 18:02:11 -050040#if defined(CONFIG_CMD_SCSI)
wdenk4e5ca3e2003-12-08 01:34:36 +000041#include <scsi.h>
42#endif
Jon Loeliger7def6b32007-07-09 18:02:11 -050043#if defined(CONFIG_CMD_KGDB)
wdenk4e5ca3e2003-12-08 01:34:36 +000044#include <kgdb.h>
45#endif
46#ifdef CONFIG_STATUS_LED
47#include <status_led.h>
48#endif
49#include <net.h>
Jon Loeliger7def6b32007-07-09 18:02:11 -050050#if defined(CONFIG_CMD_BEDBUG)
wdenk4e5ca3e2003-12-08 01:34:36 +000051#include <cmd_bedbug.h>
52#endif
53#ifdef CFG_ALLOC_DPRAM
54#include <commproc.h>
55#endif
56#include <version.h>
57
stroesee2c22d72004-12-16 17:55:22 +000058#if defined(CONFIG_HARD_I2C) || \
59 defined(CONFIG_SOFT_I2C)
60#include <i2c.h>
61#endif
62
Wolfgang Denkd87080b2006-03-31 18:32:53 +020063DECLARE_GLOBAL_DATA_PTR;
64
wdenk4e5ca3e2003-12-08 01:34:36 +000065static char *failed = "*** failed ***\n";
66
67#ifdef CONFIG_PCU_E
68extern flash_info_t flash_info[];
69#endif
70
wdenkbf9e3b32004-02-12 00:47:09 +000071#include <environment.h>
72
wdenk4e5ca3e2003-12-08 01:34:36 +000073#if ( ((CFG_ENV_ADDR+CFG_ENV_SIZE) < CFG_MONITOR_BASE) || \
74 (CFG_ENV_ADDR >= (CFG_MONITOR_BASE + CFG_MONITOR_LEN)) ) || \
75 defined(CFG_ENV_IS_IN_NVRAM)
76#define TOTAL_MALLOC_LEN (CFG_MALLOC_LEN + CFG_ENV_SIZE)
77#else
78#define TOTAL_MALLOC_LEN CFG_MALLOC_LEN
79#endif
80
wdenkbf9e3b32004-02-12 00:47:09 +000081extern ulong __init_end;
82extern ulong _end;
83
84extern void timer_init(void);
85
86#if defined(CONFIG_WATCHDOG)
87# define INIT_FUNC_WATCHDOG_INIT watchdog_init,
88# define WATCHDOG_DISABLE watchdog_disable
89
90extern int watchdog_init(void);
91extern int watchdog_disable(void);
92#else
93# define INIT_FUNC_WATCHDOG_INIT /* undef */
94# define WATCHDOG_DISABLE /* undef */
95#endif /* CONFIG_WATCHDOG */
96
97ulong monitor_flash_len;
98
wdenk4e5ca3e2003-12-08 01:34:36 +000099/*
100 * Begin and End of memory area for malloc(), and current "brk"
101 */
wdenkbf9e3b32004-02-12 00:47:09 +0000102static ulong mem_malloc_start = 0;
103static ulong mem_malloc_end = 0;
104static ulong mem_malloc_brk = 0;
wdenk4e5ca3e2003-12-08 01:34:36 +0000105
106/************************************************************************
107 * Utilities *
108 ************************************************************************
109 */
110
111/*
112 * The Malloc area is immediately below the monitor copy in DRAM
113 */
wdenkbf9e3b32004-02-12 00:47:09 +0000114static void mem_malloc_init (void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000115{
wdenkbf9e3b32004-02-12 00:47:09 +0000116 ulong dest_addr = CFG_MONITOR_BASE + gd->reloc_off;
117
wdenk4e5ca3e2003-12-08 01:34:36 +0000118 mem_malloc_end = dest_addr;
119 mem_malloc_start = dest_addr - TOTAL_MALLOC_LEN;
120 mem_malloc_brk = mem_malloc_start;
121
wdenkbf9e3b32004-02-12 00:47:09 +0000122 memset ((void *) mem_malloc_start,
123 0,
wdenk4e5ca3e2003-12-08 01:34:36 +0000124 mem_malloc_end - mem_malloc_start);
125}
126
127void *sbrk (ptrdiff_t increment)
128{
129 ulong old = mem_malloc_brk;
130 ulong new = old + increment;
131
wdenkbf9e3b32004-02-12 00:47:09 +0000132 if ((new < mem_malloc_start) ||
133 (new > mem_malloc_end) ) {
wdenk4e5ca3e2003-12-08 01:34:36 +0000134 return (NULL);
135 }
136 mem_malloc_brk = new;
wdenkbf9e3b32004-02-12 00:47:09 +0000137 return ((void *)old);
wdenk4e5ca3e2003-12-08 01:34:36 +0000138}
139
wdenkbf9e3b32004-02-12 00:47:09 +0000140char *strmhz(char *buf, long hz)
wdenk4e5ca3e2003-12-08 01:34:36 +0000141{
wdenkbf9e3b32004-02-12 00:47:09 +0000142 long l, n;
143 long m;
wdenk4e5ca3e2003-12-08 01:34:36 +0000144
wdenkbf9e3b32004-02-12 00:47:09 +0000145 n = hz / 1000000L;
wdenk4e5ca3e2003-12-08 01:34:36 +0000146
wdenkbf9e3b32004-02-12 00:47:09 +0000147 l = sprintf (buf, "%ld", n);
wdenk4e5ca3e2003-12-08 01:34:36 +0000148
wdenkbf9e3b32004-02-12 00:47:09 +0000149 m = (hz % 1000000L) / 1000L;
wdenk4e5ca3e2003-12-08 01:34:36 +0000150
wdenkbf9e3b32004-02-12 00:47:09 +0000151 if (m != 0)
152 sprintf (buf+l, ".%03ld", m);
wdenk4e5ca3e2003-12-08 01:34:36 +0000153
wdenkbf9e3b32004-02-12 00:47:09 +0000154 return (buf);
wdenk4e5ca3e2003-12-08 01:34:36 +0000155}
156
wdenkbf9e3b32004-02-12 00:47:09 +0000157/*
158 * All attempts to come up with a "common" initialization sequence
159 * that works for all boards and architectures failed: some of the
160 * requirements are just _too_ different. To get rid of the resulting
161 * mess of board dependend #ifdef'ed code we now make the whole
162 * initialization sequence configurable to the user.
163 *
164 * The requirements for any new initalization function is simple: it
165 * receives a pointer to the "global data" structure as it's only
166 * argument, and returns an integer return code, where 0 means
167 * "continue" and != 0 means "fatal error, hang the system".
168 */
169typedef int (init_fnc_t) (void);
170
171/************************************************************************
172 * Init Utilities *
173 ************************************************************************
174 * Some of this code should be moved into the core functions,
175 * but let's get it working (again) first...
176 */
177
178static int init_baudrate (void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000179{
wdenkbf9e3b32004-02-12 00:47:09 +0000180 uchar tmp[64]; /* long enough for environment variables */
181 int i = getenv_r ("baudrate", tmp, sizeof (tmp));
wdenk4e5ca3e2003-12-08 01:34:36 +0000182
wdenkbf9e3b32004-02-12 00:47:09 +0000183 gd->baudrate = (i > 0)
184 ? (int) simple_strtoul (tmp, NULL, 10)
185 : CONFIG_BAUDRATE;
186 return (0);
wdenk4e5ca3e2003-12-08 01:34:36 +0000187}
188
wdenkbf9e3b32004-02-12 00:47:09 +0000189/***********************************************************************/
190
191static int init_func_ram (void)
192{
wdenkbf9e3b32004-02-12 00:47:09 +0000193 int board_type = 0; /* use dummy arg */
194 puts ("DRAM: ");
195
196 if ((gd->ram_size = initdram (board_type)) > 0) {
197 print_size (gd->ram_size, "\n");
198 return (0);
199 }
200 puts (failed);
201 return (1);
202}
203
204/***********************************************************************/
205
stroesee2c22d72004-12-16 17:55:22 +0000206#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
207static int init_func_i2c (void)
208{
209 puts ("I2C: ");
210 i2c_init (CFG_I2C_SPEED, CFG_I2C_SLAVE);
211 puts ("ready\n");
212 return (0);
213}
214#endif
215
216/***********************************************************************/
217
wdenkbf9e3b32004-02-12 00:47:09 +0000218/************************************************************************
219 * Initialization sequence *
220 ************************************************************************
221 */
222
223init_fnc_t *init_sequence[] = {
Stefan Roesed61ea142007-08-15 14:51:27 +0200224 get_clocks,
wdenkbf9e3b32004-02-12 00:47:09 +0000225 env_init,
226 init_baudrate,
227 serial_init,
228 console_init_f,
229 display_options,
230 checkcpu,
231 checkboard,
stroesee2c22d72004-12-16 17:55:22 +0000232#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
233 init_func_i2c,
234#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000235 init_func_ram,
236#if defined(CFG_DRAM_TEST)
237 testdram,
238#endif /* CFG_DRAM_TEST */
239 INIT_FUNC_WATCHDOG_INIT
240 NULL, /* Terminate this list */
241};
242
243
wdenk4e5ca3e2003-12-08 01:34:36 +0000244/************************************************************************
245 *
246 * This is the first part of the initialization sequence that is
247 * implemented in C, but still running from ROM.
248 *
249 * The main purpose is to provide a (serial) console interface as
250 * soon as possible (so we can see any error messages), and to
251 * initialize the RAM so that we can relocate the monitor code to
252 * RAM.
253 *
254 * Be aware of the restrictions: global data is read-only, BSS is not
255 * initialized, and stack space is limited to a few kB.
256 *
257 ************************************************************************
258 */
259
wdenkbf9e3b32004-02-12 00:47:09 +0000260void
261board_init_f (ulong bootflag)
wdenk4e5ca3e2003-12-08 01:34:36 +0000262{
wdenk4e5ca3e2003-12-08 01:34:36 +0000263 bd_t *bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000264 ulong len, addr, addr_sp;
Marian Balakowicz483a0cf2006-05-09 11:28:36 +0200265 ulong *paddr;
wdenkbf9e3b32004-02-12 00:47:09 +0000266 gd_t *id;
267 init_fnc_t **init_fnc_ptr;
268#ifdef CONFIG_PRAM
269 int i;
270 ulong reg;
wdenk4e5ca3e2003-12-08 01:34:36 +0000271 uchar tmp[64]; /* long enough for environment variables */
wdenkbf9e3b32004-02-12 00:47:09 +0000272#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000273
wdenkbf9e3b32004-02-12 00:47:09 +0000274 /* Pointer is writable since we allocated a register for it */
275 gd = (gd_t *) (CFG_INIT_RAM_ADDR + CFG_GBL_DATA_OFFSET);
wdenk93f6a672004-07-01 20:28:03 +0000276 /* compiler optimization barrier needed for GCC >= 3.4 */
277 __asm__ __volatile__("": : :"memory");
wdenk4e5ca3e2003-12-08 01:34:36 +0000278
wdenkbf9e3b32004-02-12 00:47:09 +0000279 /* Clear initial global data */
280 memset ((void *) gd, 0, sizeof (gd_t));
wdenk4e5ca3e2003-12-08 01:34:36 +0000281
wdenkbf9e3b32004-02-12 00:47:09 +0000282 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
283 if ((*init_fnc_ptr)() != 0) {
284 hang ();
285 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000286 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000287
288 /*
289 * Now that we have DRAM mapped and working, we can
290 * relocate the code and continue running from DRAM.
291 *
292 * Reserve memory at end of RAM for (top down in that order):
wdenkbf9e3b32004-02-12 00:47:09 +0000293 * - protected RAM
294 * - LCD framebuffer
295 * - monitor code
296 * - board info struct
wdenk4e5ca3e2003-12-08 01:34:36 +0000297 */
wdenkbf9e3b32004-02-12 00:47:09 +0000298 len = (ulong)&_end - CFG_MONITOR_BASE;
wdenk4e5ca3e2003-12-08 01:34:36 +0000299
wdenkbf9e3b32004-02-12 00:47:09 +0000300 addr = CFG_SDRAM_BASE + gd->ram_size;
wdenk4e5ca3e2003-12-08 01:34:36 +0000301
wdenkbf9e3b32004-02-12 00:47:09 +0000302#ifdef CONFIG_LOGBUFFER
303 /* reserve kernel log buffer */
304 addr -= (LOGBUFF_RESERVE);
305 debug ("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr);
306#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000307
wdenkbf9e3b32004-02-12 00:47:09 +0000308#ifdef CONFIG_PRAM
309 /*
310 * reserve protected RAM
311 */
312 i = getenv_r ("pram", tmp, sizeof (tmp));
313 reg = (i > 0) ? simple_strtoul (tmp, NULL, 10) : CONFIG_PRAM;
314 addr -= (reg << 10); /* size is in kB */
315 debug ("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
316#endif /* CONFIG_PRAM */
317
318 /*
319 * reserve memory for U-Boot code, data & bss
320 * round down to next 4 kB limit
321 */
wdenk4e5ca3e2003-12-08 01:34:36 +0000322 addr -= len;
wdenkbf9e3b32004-02-12 00:47:09 +0000323 addr &= ~(4096 - 1);
324
325 debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
326
327 /*
328 * reserve memory for malloc() arena
329 */
330 addr_sp = addr - TOTAL_MALLOC_LEN;
331 debug ("Reserving %dk for malloc() at: %08lx\n",
332 TOTAL_MALLOC_LEN >> 10, addr_sp);
333
334 /*
335 * (permanently) allocate a Board Info struct
336 * and a permanent copy of the "global" data
337 */
338 addr_sp -= sizeof (bd_t);
339 bd = (bd_t *) addr_sp;
340 gd->bd = bd;
341 debug ("Reserving %d Bytes for Board Info at: %08lx\n",
342 sizeof (bd_t), addr_sp);
343 addr_sp -= sizeof (gd_t);
344 id = (gd_t *) addr_sp;
345 debug ("Reserving %d Bytes for Global Data at: %08lx\n",
346 sizeof (gd_t), addr_sp);
347
348 /* Reserve memory for boot params. */
349 addr_sp -= CFG_BOOTPARAMS_LEN;
350 bd->bi_boot_params = addr_sp;
351 debug ("Reserving %dk for boot parameters at: %08lx\n",
352 CFG_BOOTPARAMS_LEN >> 10, addr_sp);
353
354 /*
355 * Finally, we set up a new (bigger) stack.
356 *
357 * Leave some safety gap for SP, force alignment on 16 byte boundary
358 * Clear initial stack frame
359 */
360 addr_sp -= 16;
361 addr_sp &= ~0xF;
Marian Balakowicz483a0cf2006-05-09 11:28:36 +0200362
363 paddr = (ulong *)addr_sp;
364 *paddr-- = 0;
365 *paddr-- = 0;
366 addr_sp = (ulong)paddr;
Wolfgang Denk977b50f2006-05-10 17:43:20 +0200367
wdenkbf9e3b32004-02-12 00:47:09 +0000368 debug ("Stack Pointer at: %08lx\n", addr_sp);
wdenk4e5ca3e2003-12-08 01:34:36 +0000369
370 /*
371 * Save local variables to board info struct
372 */
wdenkbf9e3b32004-02-12 00:47:09 +0000373 bd->bi_memstart = CFG_SDRAM_BASE; /* start of DRAM memory */
374 bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */
TsiChung Liew8e585f02007-06-18 13:50:13 -0500375#ifdef CFG_INIT_RAM_ADDR
376 bd->bi_sramstart = CFG_INIT_RAM_ADDR; /* start of SRAM memory */
377 bd->bi_sramsize = CFG_INIT_RAM_END; /* size of SRAM memory */
378#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000379 bd->bi_mbar_base = CFG_MBAR; /* base of internal registers */
wdenk4e5ca3e2003-12-08 01:34:36 +0000380
wdenkbf9e3b32004-02-12 00:47:09 +0000381 bd->bi_bootflags = bootflag; /* boot / reboot flag (for LynxOS) */
wdenk4e5ca3e2003-12-08 01:34:36 +0000382
wdenkbf9e3b32004-02-12 00:47:09 +0000383 WATCHDOG_RESET ();
384 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
385 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
386 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
wdenk4e5ca3e2003-12-08 01:34:36 +0000387
388#ifdef CFG_EXTBDINFO
389 strncpy (bd->bi_s_version, "1.2", sizeof (bd->bi_s_version));
wdenkbf9e3b32004-02-12 00:47:09 +0000390 strncpy (bd->bi_r_version, U_BOOT_VERSION, sizeof (bd->bi_r_version));
wdenk4e5ca3e2003-12-08 01:34:36 +0000391#endif
392
wdenkbf9e3b32004-02-12 00:47:09 +0000393 WATCHDOG_RESET ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000394
wdenkbf9e3b32004-02-12 00:47:09 +0000395#ifdef CONFIG_POST
396 post_bootmode_init();
397 post_run (NULL, POST_ROM | post_bootmode_get(0));
398#endif
399
400 WATCHDOG_RESET();
401
402 memcpy (id, (void *)gd, sizeof (gd_t));
403
404 debug ("Start relocate of code from %08x to %08lx\n", CFG_MONITOR_BASE, addr);
405 relocate_code (addr_sp, id, addr);
406
407 /* NOTREACHED - jump_to_ram() does not return */
wdenk4e5ca3e2003-12-08 01:34:36 +0000408}
409
wdenk4e5ca3e2003-12-08 01:34:36 +0000410/************************************************************************
411 *
412 * This is the next part if the initialization sequence: we are now
413 * running from RAM and have a "normal" C environment, i. e. global
414 * data can be written, BSS has been cleared, the stack size in not
415 * that critical any more, etc.
416 *
417 ************************************************************************
418 */
wdenkbf9e3b32004-02-12 00:47:09 +0000419void board_init_r (gd_t *id, ulong dest_addr)
wdenk4e5ca3e2003-12-08 01:34:36 +0000420{
wdenk4e5ca3e2003-12-08 01:34:36 +0000421 cmd_tbl_t *cmdtp;
wdenkbf9e3b32004-02-12 00:47:09 +0000422 char *s, *e;
wdenk4e5ca3e2003-12-08 01:34:36 +0000423 bd_t *bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000424 int i;
425 extern void malloc_bin_reloc (void);
wdenk4e5ca3e2003-12-08 01:34:36 +0000426
wdenkbf9e3b32004-02-12 00:47:09 +0000427#ifndef CFG_ENV_IS_NOWHERE
428 extern char * env_name_spec;
429#endif
430#ifndef CFG_NO_FLASH
431 ulong flash_size;
432#endif
433 gd = id; /* initialize RAM version of global data */
wdenk4e5ca3e2003-12-08 01:34:36 +0000434 bd = gd->bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000435
436 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
437
TsiChung Liew8e585f02007-06-18 13:50:13 -0500438#ifdef CONFIG_SERIAL_MULTI
439 serial_initialize();
440#endif
441
wdenkbf9e3b32004-02-12 00:47:09 +0000442 debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
443
444 WATCHDOG_RESET ();
445
446 gd->reloc_off = dest_addr - CFG_MONITOR_BASE;
447
448 monitor_flash_len = (ulong)&__init_end - dest_addr;
449
450 /*
451 * We have to relocate the command table manually
452 */
453 for (cmdtp = &__u_boot_cmd_start; cmdtp != &__u_boot_cmd_end; cmdtp++) {
454 ulong addr;
455 addr = (ulong) (cmdtp->cmd) + gd->reloc_off;
456#if 0
457 printf ("Command \"%s\": 0x%08lx => 0x%08lx\n",
458 cmdtp->name, (ulong) (cmdtp->cmd), addr);
459#endif
460 cmdtp->cmd =
461 (int (*)(struct cmd_tbl_s *, int, int, char *[]))addr;
462
463 addr = (ulong)(cmdtp->name) + gd->reloc_off;
464 cmdtp->name = (char *)addr;
465
466 if (cmdtp->usage) {
467 addr = (ulong)(cmdtp->usage) + gd->reloc_off;
468 cmdtp->usage = (char *)addr;
469 }
470#ifdef CFG_LONGHELP
471 if (cmdtp->help) {
472 addr = (ulong)(cmdtp->help) + gd->reloc_off;
473 cmdtp->help = (char *)addr;
474 }
475#endif
476 }
477 /* there are some other pointer constants we must deal with */
478#ifndef CFG_ENV_IS_NOWHERE
479 env_name_spec += gd->reloc_off;
480#endif
481
482 WATCHDOG_RESET ();
483
484#ifdef CONFIG_LOGBUFFER
485 logbuff_init_ptrs ();
486#endif
487#ifdef CONFIG_POST
488 post_output_backlog ();
489 post_reloc ();
490#endif
491 WATCHDOG_RESET();
492
493#if 0
494 /* instruction cache enabled in cpu_init_f() for faster relocation */
495 icache_enable (); /* it's time to enable the instruction cache */
496#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000497
498 /*
499 * Setup trap handlers
500 */
TsiChung Liew8e585f02007-06-18 13:50:13 -0500501 trap_init (CFG_SDRAM_BASE);
wdenk4e5ca3e2003-12-08 01:34:36 +0000502
wdenkbf9e3b32004-02-12 00:47:09 +0000503#if !defined(CFG_NO_FLASH)
wdenk4e5ca3e2003-12-08 01:34:36 +0000504 puts ("FLASH: ");
505
506 if ((flash_size = flash_init ()) > 0) {
wdenkbf9e3b32004-02-12 00:47:09 +0000507# ifdef CFG_FLASH_CHECKSUM
508 print_size (flash_size, "");
wdenk4e5ca3e2003-12-08 01:34:36 +0000509 /*
510 * Compute and print flash CRC if flashchecksum is set to 'y'
511 *
wdenkbf9e3b32004-02-12 00:47:09 +0000512 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
wdenk4e5ca3e2003-12-08 01:34:36 +0000513 */
514 s = getenv ("flashchecksum");
515 if (s && (*s == 'y')) {
516 printf (" CRC: %08lX",
wdenkbf9e3b32004-02-12 00:47:09 +0000517 crc32 (0,
518 (const unsigned char *) CFG_FLASH_BASE,
519 flash_size)
520 );
wdenk4e5ca3e2003-12-08 01:34:36 +0000521 }
522 putc ('\n');
wdenkbf9e3b32004-02-12 00:47:09 +0000523# else /* !CFG_FLASH_CHECKSUM */
524 print_size (flash_size, "\n");
525# endif /* CFG_FLASH_CHECKSUM */
wdenk4e5ca3e2003-12-08 01:34:36 +0000526 } else {
527 puts (failed);
528 hang ();
529 }
530
wdenkbf9e3b32004-02-12 00:47:09 +0000531 bd->bi_flashstart = CFG_FLASH_BASE; /* update start of FLASH memory */
532 bd->bi_flashsize = flash_size; /* size of FLASH memory (final value) */
533 bd->bi_flashoffset = 0;
534#else /* CFG_NO_FLASH */
535 bd->bi_flashsize = 0;
536 bd->bi_flashstart = 0;
537 bd->bi_flashoffset = 0;
538#endif /* !CFG_NO_FLASH */
wdenk4e5ca3e2003-12-08 01:34:36 +0000539
540 WATCHDOG_RESET ();
541
542 /* initialize higher level parts of CPU like time base and timers */
543 cpu_init_r ();
544
545 WATCHDOG_RESET ();
546
547 /* initialize malloc() area */
wdenkbf9e3b32004-02-12 00:47:09 +0000548 mem_malloc_init ();
549 malloc_bin_reloc ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000550
551#ifdef CONFIG_SPI
552# if !defined(CFG_ENV_IS_IN_EEPROM)
553 spi_init_f ();
554# endif
555 spi_init_r ();
556#endif
557
558 /* relocate environment function pointers etc. */
559 env_relocate ();
560
wdenkbf9e3b32004-02-12 00:47:09 +0000561 /*
562 * Fill in missing fields of bd_info.
563 * We do this here, where we have "normal" access to the
564 * environment; we used to do this still running from ROM,
565 * where had to use getenv_r(), which can be pretty slow when
566 * the environment is in EEPROM.
567 */
568 s = getenv ("ethaddr");
569 for (i = 0; i < 6; ++i) {
570 bd->bi_enetaddr[i] = s ? simple_strtoul (s, &e, 16) : 0;
571 if (s)
572 s = (*e) ? e + 1 : e;
573 }
TsiChung Liew8e585f02007-06-18 13:50:13 -0500574#ifdef CONFIG_HAS_ETH1
575 /* handle the 2nd ethernet address */
576
577 s = getenv ("eth1addr");
578 for (i = 0; i < 6; ++i) {
579 bd->bi_enet1addr[i] = s ? simple_strtoul (s, &e, 16) : 0;
580 if (s)
581 s = (*e) ? e + 1 : e;
582 }
583#endif
584#ifdef CONFIG_HAS_ETH2
585 /* handle the 3rd ethernet address */
586
587 s = getenv ("eth2addr");
588 for (i = 0; i < 6; ++i) {
589 bd->bi_enet2addr[i] = s ? simple_strtoul (s, &e, 16) : 0;
590 if (s)
591 s = (*e) ? e + 1 : e;
592 }
593#endif
594
595#ifdef CONFIG_HAS_ETH3
596 /* handle 4th ethernet address */
597 s = getenv("eth3addr");
598 for (i = 0; i < 6; ++i) {
599 bd->bi_enet3addr[i] = s ? simple_strtoul (s, &e, 16) : 0;
600 if (s)
601 s = (*e) ? e + 1 : e;
602 }
603#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000604
wdenk4e5ca3e2003-12-08 01:34:36 +0000605 /* IP Address */
606 bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
607
608 WATCHDOG_RESET ();
609
TsiChung Liew8e585f02007-06-18 13:50:13 -0500610#if defined(CONFIG_PCI)
611 /*
612 * Do pci configuration
613 */
614 pci_init ();
615#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000616
617 /** leave this here (after malloc(), environment and PCI are working) **/
618 /* Initialize devices */
619 devices_init ();
620
621 /* Initialize the jump table for applications */
622 jumptable_init ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000623
624 /* Initialize the console (after the relocation and devices init) */
wdenkbf9e3b32004-02-12 00:47:09 +0000625 console_init_r ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000626
stroesee2c22d72004-12-16 17:55:22 +0000627#if defined(CONFIG_MISC_INIT_R)
628 /* miscellaneous platform dependent initialisations */
629 misc_init_r ();
630#endif
631
Jon Loeliger7def6b32007-07-09 18:02:11 -0500632#if defined(CONFIG_CMD_KGDB)
wdenk4e5ca3e2003-12-08 01:34:36 +0000633 WATCHDOG_RESET ();
634 puts ("KGDB: ");
635 kgdb_init ();
636#endif
637
wdenkbf9e3b32004-02-12 00:47:09 +0000638 debug ("U-Boot relocated to %08lx\n", dest_addr);
639
wdenk4e5ca3e2003-12-08 01:34:36 +0000640 /*
641 * Enable Interrupts
642 */
643 interrupt_init ();
wdenkbf9e3b32004-02-12 00:47:09 +0000644
645 /* Must happen after interrupts are initialized since
646 * an irq handler gets installed
647 */
648 timer_init();
649
wdenk42dfe7a2004-03-14 22:25:36 +0000650#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
wdenkbf9e3b32004-02-12 00:47:09 +0000651 serial_buffered_init();
652#endif
653
654#ifdef CONFIG_STATUS_LED
655 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
656#endif
657
wdenk4e5ca3e2003-12-08 01:34:36 +0000658 udelay (20);
wdenkbf9e3b32004-02-12 00:47:09 +0000659
wdenk4e5ca3e2003-12-08 01:34:36 +0000660 set_timer (0);
661
662 /* Insert function pointers now that we have relocated the code */
663
664 /* Initialize from environment */
665 if ((s = getenv ("loadaddr")) != NULL) {
666 load_addr = simple_strtoul (s, NULL, 16);
667 }
Jon Loeliger7def6b32007-07-09 18:02:11 -0500668#if defined(CONFIG_CMD_NET)
wdenk4e5ca3e2003-12-08 01:34:36 +0000669 if ((s = getenv ("bootfile")) != NULL) {
670 copy_filename (BootFile, s, sizeof (BootFile));
671 }
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500672#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000673
674 WATCHDOG_RESET ();
675
Jon Loeliger7def6b32007-07-09 18:02:11 -0500676#if defined(CONFIG_CMD_DOC)
wdenk4e5ca3e2003-12-08 01:34:36 +0000677 WATCHDOG_RESET ();
wdenkbf9e3b32004-02-12 00:47:09 +0000678 puts ("DOC: ");
679 doc_init ();
680#endif
681
Jon Loeliger7def6b32007-07-09 18:02:11 -0500682#if defined(CONFIG_CMD_NAND)
wdenkbf9e3b32004-02-12 00:47:09 +0000683 WATCHDOG_RESET ();
Markus Klotzbuecherd860c342006-04-25 17:00:33 +0200684 puts ("NAND: ");
wdenkbf9e3b32004-02-12 00:47:09 +0000685 nand_init(); /* go init the NAND */
686#endif
687
Stefan Roesed61ea142007-08-15 14:51:27 +0200688#if defined(CONFIG_CMD_NET)
wdenkbf9e3b32004-02-12 00:47:09 +0000689 WATCHDOG_RESET();
TsiChung Liew8e585f02007-06-18 13:50:13 -0500690#if defined(FEC_ENET)
wdenkbf9e3b32004-02-12 00:47:09 +0000691 eth_init(bd);
692#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500693#if defined(CONFIG_NET_MULTI)
694 puts ("Net: ");
TsiChungLiewab77bc52007-08-15 15:39:17 -0500695 eth_initialize (bd);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500696#endif
697#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000698
699#ifdef CONFIG_POST
700 post_run (NULL, POST_RAM | post_bootmode_get(0));
wdenk4e5ca3e2003-12-08 01:34:36 +0000701#endif
702
Stefan Roesed61ea142007-08-15 14:51:27 +0200703#if defined(CONFIG_CMD_PCMCIA) \
704 && !defined(CONFIG_CMD_IDE)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500705 WATCHDOG_RESET ();
706 puts ("PCMCIA:");
707 pcmcia_init ();
708#endif
709
Stefan Roesed61ea142007-08-15 14:51:27 +0200710#if defined(CONFIG_CMD_IDE)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500711 WATCHDOG_RESET ();
712 puts ("IDE: ");
713 ide_init ();
Stefan Roesed61ea142007-08-15 14:51:27 +0200714#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500715
wdenk4e5ca3e2003-12-08 01:34:36 +0000716#ifdef CONFIG_LAST_STAGE_INIT
717 WATCHDOG_RESET ();
718 /*
719 * Some parts can be only initialized if all others (like
720 * Interrupts) are up and running (i.e. the PC-style ISA
721 * keyboard).
722 */
723 last_stage_init ();
724#endif
725
Jon Loeliger7def6b32007-07-09 18:02:11 -0500726#if defined(CONFIG_CMD_BEDBUG)
wdenk4e5ca3e2003-12-08 01:34:36 +0000727 WATCHDOG_RESET ();
728 bedbug_init ();
729#endif
730
wdenkbf9e3b32004-02-12 00:47:09 +0000731#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
wdenk4e5ca3e2003-12-08 01:34:36 +0000732 /*
733 * Export available size of memory for Linux,
734 * taking into account the protected RAM at top of memory
735 */
736 {
737 ulong pram;
wdenk4e5ca3e2003-12-08 01:34:36 +0000738 uchar memsz[32];
wdenkbf9e3b32004-02-12 00:47:09 +0000739#ifdef CONFIG_PRAM
740 char *s;
wdenk4e5ca3e2003-12-08 01:34:36 +0000741
742 if ((s = getenv ("pram")) != NULL) {
743 pram = simple_strtoul (s, NULL, 10);
744 } else {
745 pram = CONFIG_PRAM;
746 }
wdenkbf9e3b32004-02-12 00:47:09 +0000747#else
748 pram=0;
749#endif
750#ifdef CONFIG_LOGBUFFER
751 /* Also take the logbuffer into account (pram is in kB) */
752 pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024;
753#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000754 sprintf (memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
755 setenv ("mem", memsz);
756 }
757#endif
758
wdenkbf9e3b32004-02-12 00:47:09 +0000759#ifdef CONFIG_MODEM_SUPPORT
760 {
761 extern int do_mdm_init;
762 do_mdm_init = gd->do_mdm_init;
763 }
764#endif
765
766#ifdef CONFIG_WATCHDOG
767 /* disable watchdog if environment is set */
768 if ((s = getenv ("watchdog")) != NULL) {
769 if (strncmp (s, "off", 3) == 0) {
770 WATCHDOG_DISABLE ();
771 }
772 }
773#endif /* CONFIG_WATCHDOG*/
774
775
wdenk4e5ca3e2003-12-08 01:34:36 +0000776 /* Initialization complete - start the monitor */
777
778 /* main_loop() can return to retry autoboot, if so just run it again. */
779 for (;;) {
780 WATCHDOG_RESET ();
781 main_loop ();
782 }
783
784 /* NOTREACHED - no way out of command loop except booting */
785}
786
wdenkbf9e3b32004-02-12 00:47:09 +0000787
788void hang(void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000789{
790 puts ("### ERROR ### Please RESET the board ###\n");
791 for (;;);
792}