blob: a13ea2682bb0867b609da151e277c32535273da5 [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
TsiChungLiew8ae158c2007-08-16 15:05:11 -050033#include <asm/immap.h>
wdenkbf9e3b32004-02-12 00:47:09 +000034
Jon Loeliger7def6b32007-07-09 18:02:11 -050035#if defined(CONFIG_CMD_IDE)
wdenk4e5ca3e2003-12-08 01:34:36 +000036#include <ide.h>
37#endif
Jon Loeliger7def6b32007-07-09 18:02:11 -050038#if defined(CONFIG_CMD_SCSI)
wdenk4e5ca3e2003-12-08 01:34:36 +000039#include <scsi.h>
40#endif
Jon Loeliger7def6b32007-07-09 18:02:11 -050041#if defined(CONFIG_CMD_KGDB)
wdenk4e5ca3e2003-12-08 01:34:36 +000042#include <kgdb.h>
43#endif
44#ifdef CONFIG_STATUS_LED
45#include <status_led.h>
46#endif
47#include <net.h>
Marcel Ziswilerb71190f2008-05-01 09:05:26 +020048#include <serial.h>
Jon Loeliger7def6b32007-07-09 18:02:11 -050049#if defined(CONFIG_CMD_BEDBUG)
wdenk4e5ca3e2003-12-08 01:34:36 +000050#include <cmd_bedbug.h>
51#endif
52#ifdef CFG_ALLOC_DPRAM
53#include <commproc.h>
54#endif
55#include <version.h>
56
stroesee2c22d72004-12-16 17:55:22 +000057#if defined(CONFIG_HARD_I2C) || \
58 defined(CONFIG_SOFT_I2C)
59#include <i2c.h>
60#endif
61
Wolfgang Denkd87080b2006-03-31 18:32:53 +020062DECLARE_GLOBAL_DATA_PTR;
63
wdenk4e5ca3e2003-12-08 01:34:36 +000064static char *failed = "*** failed ***\n";
65
66#ifdef CONFIG_PCU_E
67extern flash_info_t flash_info[];
68#endif
69
wdenkbf9e3b32004-02-12 00:47:09 +000070#include <environment.h>
71
wdenk4e5ca3e2003-12-08 01:34:36 +000072#if ( ((CFG_ENV_ADDR+CFG_ENV_SIZE) < CFG_MONITOR_BASE) || \
73 (CFG_ENV_ADDR >= (CFG_MONITOR_BASE + CFG_MONITOR_LEN)) ) || \
74 defined(CFG_ENV_IS_IN_NVRAM)
75#define TOTAL_MALLOC_LEN (CFG_MALLOC_LEN + CFG_ENV_SIZE)
76#else
77#define TOTAL_MALLOC_LEN CFG_MALLOC_LEN
78#endif
79
wdenkbf9e3b32004-02-12 00:47:09 +000080extern ulong __init_end;
81extern ulong _end;
82
83extern void timer_init(void);
84
85#if defined(CONFIG_WATCHDOG)
86# define INIT_FUNC_WATCHDOG_INIT watchdog_init,
87# define WATCHDOG_DISABLE watchdog_disable
88
89extern int watchdog_init(void);
90extern int watchdog_disable(void);
91#else
92# define INIT_FUNC_WATCHDOG_INIT /* undef */
93# define WATCHDOG_DISABLE /* undef */
94#endif /* CONFIG_WATCHDOG */
95
96ulong monitor_flash_len;
97
wdenk4e5ca3e2003-12-08 01:34:36 +000098/*
99 * Begin and End of memory area for malloc(), and current "brk"
100 */
wdenkbf9e3b32004-02-12 00:47:09 +0000101static ulong mem_malloc_start = 0;
102static ulong mem_malloc_end = 0;
103static ulong mem_malloc_brk = 0;
wdenk4e5ca3e2003-12-08 01:34:36 +0000104
105/************************************************************************
106 * Utilities *
107 ************************************************************************
108 */
109
110/*
111 * The Malloc area is immediately below the monitor copy in DRAM
112 */
wdenkbf9e3b32004-02-12 00:47:09 +0000113static void mem_malloc_init (void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000114{
wdenkbf9e3b32004-02-12 00:47:09 +0000115 ulong dest_addr = CFG_MONITOR_BASE + gd->reloc_off;
116
wdenk4e5ca3e2003-12-08 01:34:36 +0000117 mem_malloc_end = dest_addr;
118 mem_malloc_start = dest_addr - TOTAL_MALLOC_LEN;
119 mem_malloc_brk = mem_malloc_start;
120
wdenkbf9e3b32004-02-12 00:47:09 +0000121 memset ((void *) mem_malloc_start,
122 0,
wdenk4e5ca3e2003-12-08 01:34:36 +0000123 mem_malloc_end - mem_malloc_start);
124}
125
126void *sbrk (ptrdiff_t increment)
127{
128 ulong old = mem_malloc_brk;
129 ulong new = old + increment;
130
wdenkbf9e3b32004-02-12 00:47:09 +0000131 if ((new < mem_malloc_start) ||
132 (new > mem_malloc_end) ) {
wdenk4e5ca3e2003-12-08 01:34:36 +0000133 return (NULL);
134 }
135 mem_malloc_brk = new;
wdenkbf9e3b32004-02-12 00:47:09 +0000136 return ((void *)old);
wdenk4e5ca3e2003-12-08 01:34:36 +0000137}
138
wdenkbf9e3b32004-02-12 00:47:09 +0000139char *strmhz(char *buf, long hz)
wdenk4e5ca3e2003-12-08 01:34:36 +0000140{
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500141 long l, n;
142 long m;
wdenk4e5ca3e2003-12-08 01:34:36 +0000143
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500144 n = hz / 1000000L;
wdenk4e5ca3e2003-12-08 01:34:36 +0000145
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500146 l = sprintf (buf, "%ld", n);
wdenk4e5ca3e2003-12-08 01:34:36 +0000147
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500148 m = (hz % 1000000L) / 1000L;
wdenk4e5ca3e2003-12-08 01:34:36 +0000149
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500150 if (m != 0)
151 sprintf (buf+l, ".%03ld", m);
wdenk4e5ca3e2003-12-08 01:34:36 +0000152
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500153 return (buf);
wdenk4e5ca3e2003-12-08 01:34:36 +0000154}
155
wdenkbf9e3b32004-02-12 00:47:09 +0000156/*
157 * All attempts to come up with a "common" initialization sequence
158 * that works for all boards and architectures failed: some of the
159 * requirements are just _too_ different. To get rid of the resulting
160 * mess of board dependend #ifdef'ed code we now make the whole
161 * initialization sequence configurable to the user.
162 *
163 * The requirements for any new initalization function is simple: it
164 * receives a pointer to the "global data" structure as it's only
165 * argument, and returns an integer return code, where 0 means
166 * "continue" and != 0 means "fatal error, hang the system".
167 */
168typedef int (init_fnc_t) (void);
169
170/************************************************************************
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500171 * Init Utilities
wdenkbf9e3b32004-02-12 00:47:09 +0000172 ************************************************************************
173 * Some of this code should be moved into the core functions,
174 * but let's get it working (again) first...
175 */
176
177static int init_baudrate (void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000178{
TsiChung Liew6e370912008-06-24 12:12:16 -0500179 char tmp[64]; /* long enough for environment variables */
wdenkbf9e3b32004-02-12 00:47:09 +0000180 int i = getenv_r ("baudrate", tmp, sizeof (tmp));
wdenk4e5ca3e2003-12-08 01:34:36 +0000181
wdenkbf9e3b32004-02-12 00:47:09 +0000182 gd->baudrate = (i > 0)
183 ? (int) simple_strtoul (tmp, NULL, 10)
184 : CONFIG_BAUDRATE;
185 return (0);
wdenk4e5ca3e2003-12-08 01:34:36 +0000186}
187
wdenkbf9e3b32004-02-12 00:47:09 +0000188/***********************************************************************/
189
190static int init_func_ram (void)
191{
wdenkbf9e3b32004-02-12 00:47:09 +0000192 int board_type = 0; /* use dummy arg */
193 puts ("DRAM: ");
194
195 if ((gd->ram_size = initdram (board_type)) > 0) {
196 print_size (gd->ram_size, "\n");
197 return (0);
198 }
199 puts (failed);
200 return (1);
201}
202
203/***********************************************************************/
204
stroesee2c22d72004-12-16 17:55:22 +0000205#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
206static int init_func_i2c (void)
207{
208 puts ("I2C: ");
209 i2c_init (CFG_I2C_SPEED, CFG_I2C_SLAVE);
210 puts ("ready\n");
211 return (0);
212}
213#endif
214
215/***********************************************************************/
216
wdenkbf9e3b32004-02-12 00:47:09 +0000217/************************************************************************
218 * Initialization sequence *
219 ************************************************************************
220 */
221
222init_fnc_t *init_sequence[] = {
Stefan Roesed61ea142007-08-15 14:51:27 +0200223 get_clocks,
wdenkbf9e3b32004-02-12 00:47:09 +0000224 env_init,
225 init_baudrate,
226 serial_init,
227 console_init_f,
228 display_options,
229 checkcpu,
230 checkboard,
stroesee2c22d72004-12-16 17:55:22 +0000231#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
232 init_func_i2c,
233#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000234 init_func_ram,
235#if defined(CFG_DRAM_TEST)
236 testdram,
237#endif /* CFG_DRAM_TEST */
238 INIT_FUNC_WATCHDOG_INIT
239 NULL, /* Terminate this list */
240};
241
242
wdenk4e5ca3e2003-12-08 01:34:36 +0000243/************************************************************************
244 *
245 * This is the first part of the initialization sequence that is
246 * implemented in C, but still running from ROM.
247 *
248 * The main purpose is to provide a (serial) console interface as
249 * soon as possible (so we can see any error messages), and to
250 * initialize the RAM so that we can relocate the monitor code to
251 * RAM.
252 *
253 * Be aware of the restrictions: global data is read-only, BSS is not
254 * initialized, and stack space is limited to a few kB.
255 *
256 ************************************************************************
257 */
258
wdenkbf9e3b32004-02-12 00:47:09 +0000259void
260board_init_f (ulong bootflag)
wdenk4e5ca3e2003-12-08 01:34:36 +0000261{
wdenk4e5ca3e2003-12-08 01:34:36 +0000262 bd_t *bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000263 ulong len, addr, addr_sp;
Marian Balakowicz483a0cf2006-05-09 11:28:36 +0200264 ulong *paddr;
wdenkbf9e3b32004-02-12 00:47:09 +0000265 gd_t *id;
266 init_fnc_t **init_fnc_ptr;
267#ifdef CONFIG_PRAM
268 int i;
269 ulong reg;
TsiChung Liew6e370912008-06-24 12:12:16 -0500270 char tmp[64]; /* long enough for environment variables */
wdenkbf9e3b32004-02-12 00:47:09 +0000271#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000272
wdenkbf9e3b32004-02-12 00:47:09 +0000273 /* Pointer is writable since we allocated a register for it */
274 gd = (gd_t *) (CFG_INIT_RAM_ADDR + CFG_GBL_DATA_OFFSET);
wdenk93f6a672004-07-01 20:28:03 +0000275 /* compiler optimization barrier needed for GCC >= 3.4 */
276 __asm__ __volatile__("": : :"memory");
wdenk4e5ca3e2003-12-08 01:34:36 +0000277
wdenkbf9e3b32004-02-12 00:47:09 +0000278 /* Clear initial global data */
279 memset ((void *) gd, 0, sizeof (gd_t));
wdenk4e5ca3e2003-12-08 01:34:36 +0000280
wdenkbf9e3b32004-02-12 00:47:09 +0000281 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
282 if ((*init_fnc_ptr)() != 0) {
283 hang ();
284 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000285 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000286
287 /*
288 * Now that we have DRAM mapped and working, we can
289 * relocate the code and continue running from DRAM.
290 *
291 * Reserve memory at end of RAM for (top down in that order):
wdenkbf9e3b32004-02-12 00:47:09 +0000292 * - protected RAM
293 * - LCD framebuffer
294 * - monitor code
295 * - board info struct
wdenk4e5ca3e2003-12-08 01:34:36 +0000296 */
wdenkbf9e3b32004-02-12 00:47:09 +0000297 len = (ulong)&_end - CFG_MONITOR_BASE;
wdenk4e5ca3e2003-12-08 01:34:36 +0000298
wdenkbf9e3b32004-02-12 00:47:09 +0000299 addr = CFG_SDRAM_BASE + gd->ram_size;
wdenk4e5ca3e2003-12-08 01:34:36 +0000300
wdenkbf9e3b32004-02-12 00:47:09 +0000301#ifdef CONFIG_LOGBUFFER
302 /* reserve kernel log buffer */
303 addr -= (LOGBUFF_RESERVE);
304 debug ("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr);
305#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000306
wdenkbf9e3b32004-02-12 00:47:09 +0000307#ifdef CONFIG_PRAM
308 /*
309 * reserve protected RAM
310 */
311 i = getenv_r ("pram", tmp, sizeof (tmp));
312 reg = (i > 0) ? simple_strtoul (tmp, NULL, 10) : CONFIG_PRAM;
313 addr -= (reg << 10); /* size is in kB */
314 debug ("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
315#endif /* CONFIG_PRAM */
316
TsiChungLiew1552af72008-01-14 17:43:33 -0600317 /* round down to next 4 kB limit */
318 addr &= ~(4096 - 1);
319 debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
320
321#ifdef CONFIG_LCD
322 /* reserve memory for LCD display (always full pages) */
323 addr = lcd_setmem (addr);
324 gd->fb_base = addr;
325#endif /* CONFIG_LCD */
326
wdenkbf9e3b32004-02-12 00:47:09 +0000327 /*
328 * reserve memory for U-Boot code, data & bss
329 * round down to next 4 kB limit
330 */
wdenk4e5ca3e2003-12-08 01:34:36 +0000331 addr -= len;
wdenkbf9e3b32004-02-12 00:47:09 +0000332 addr &= ~(4096 - 1);
333
334 debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
335
336 /*
337 * reserve memory for malloc() arena
338 */
339 addr_sp = addr - TOTAL_MALLOC_LEN;
340 debug ("Reserving %dk for malloc() at: %08lx\n",
341 TOTAL_MALLOC_LEN >> 10, addr_sp);
342
343 /*
344 * (permanently) allocate a Board Info struct
345 * and a permanent copy of the "global" data
346 */
347 addr_sp -= sizeof (bd_t);
348 bd = (bd_t *) addr_sp;
349 gd->bd = bd;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200350 debug ("Reserving %zu Bytes for Board Info at: %08lx\n",
wdenkbf9e3b32004-02-12 00:47:09 +0000351 sizeof (bd_t), addr_sp);
352 addr_sp -= sizeof (gd_t);
353 id = (gd_t *) addr_sp;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200354 debug ("Reserving %zu Bytes for Global Data at: %08lx\n",
wdenkbf9e3b32004-02-12 00:47:09 +0000355 sizeof (gd_t), addr_sp);
356
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200357 /* Reserve memory for boot params. */
wdenkbf9e3b32004-02-12 00:47:09 +0000358 addr_sp -= CFG_BOOTPARAMS_LEN;
359 bd->bi_boot_params = addr_sp;
360 debug ("Reserving %dk for boot parameters at: %08lx\n",
361 CFG_BOOTPARAMS_LEN >> 10, addr_sp);
362
363 /*
364 * Finally, we set up a new (bigger) stack.
365 *
366 * Leave some safety gap for SP, force alignment on 16 byte boundary
367 * Clear initial stack frame
368 */
369 addr_sp -= 16;
370 addr_sp &= ~0xF;
Marian Balakowicz483a0cf2006-05-09 11:28:36 +0200371
372 paddr = (ulong *)addr_sp;
373 *paddr-- = 0;
374 *paddr-- = 0;
375 addr_sp = (ulong)paddr;
Wolfgang Denk977b50f2006-05-10 17:43:20 +0200376
wdenkbf9e3b32004-02-12 00:47:09 +0000377 debug ("Stack Pointer at: %08lx\n", addr_sp);
wdenk4e5ca3e2003-12-08 01:34:36 +0000378
379 /*
380 * Save local variables to board info struct
381 */
wdenkbf9e3b32004-02-12 00:47:09 +0000382 bd->bi_memstart = CFG_SDRAM_BASE; /* start of DRAM memory */
383 bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */
TsiChung Liew8e585f02007-06-18 13:50:13 -0500384#ifdef CFG_INIT_RAM_ADDR
385 bd->bi_sramstart = CFG_INIT_RAM_ADDR; /* start of SRAM memory */
386 bd->bi_sramsize = CFG_INIT_RAM_END; /* size of SRAM memory */
387#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000388 bd->bi_mbar_base = CFG_MBAR; /* base of internal registers */
wdenk4e5ca3e2003-12-08 01:34:36 +0000389
wdenkbf9e3b32004-02-12 00:47:09 +0000390 bd->bi_bootflags = bootflag; /* boot / reboot flag (for LynxOS) */
wdenk4e5ca3e2003-12-08 01:34:36 +0000391
wdenkbf9e3b32004-02-12 00:47:09 +0000392 WATCHDOG_RESET ();
393 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
394 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500395#ifdef CONFIG_PCI
396 bd->bi_pcifreq = gd->pci_clk; /* PCI Freq in Hz */
397#endif
398#ifdef CONFIG_EXTRA_CLOCK
399 bd->bi_inpfreq = gd->inp_clk; /* input Freq in Hz */
400 bd->bi_vcofreq = gd->vco_clk; /* vco Freq in Hz */
401 bd->bi_flbfreq = gd->flb_clk; /* flexbus Freq in Hz */
402#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000403 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
wdenk4e5ca3e2003-12-08 01:34:36 +0000404
405#ifdef CFG_EXTBDINFO
406 strncpy (bd->bi_s_version, "1.2", sizeof (bd->bi_s_version));
wdenkbf9e3b32004-02-12 00:47:09 +0000407 strncpy (bd->bi_r_version, U_BOOT_VERSION, sizeof (bd->bi_r_version));
wdenk4e5ca3e2003-12-08 01:34:36 +0000408#endif
409
wdenkbf9e3b32004-02-12 00:47:09 +0000410 WATCHDOG_RESET ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000411
wdenkbf9e3b32004-02-12 00:47:09 +0000412#ifdef CONFIG_POST
413 post_bootmode_init();
414 post_run (NULL, POST_ROM | post_bootmode_get(0));
415#endif
416
417 WATCHDOG_RESET();
418
419 memcpy (id, (void *)gd, sizeof (gd_t));
420
421 debug ("Start relocate of code from %08x to %08lx\n", CFG_MONITOR_BASE, addr);
422 relocate_code (addr_sp, id, addr);
423
424 /* NOTREACHED - jump_to_ram() does not return */
wdenk4e5ca3e2003-12-08 01:34:36 +0000425}
426
wdenk4e5ca3e2003-12-08 01:34:36 +0000427/************************************************************************
428 *
429 * This is the next part if the initialization sequence: we are now
430 * running from RAM and have a "normal" C environment, i. e. global
431 * data can be written, BSS has been cleared, the stack size in not
432 * that critical any more, etc.
433 *
434 ************************************************************************
435 */
wdenkbf9e3b32004-02-12 00:47:09 +0000436void board_init_r (gd_t *id, ulong dest_addr)
wdenk4e5ca3e2003-12-08 01:34:36 +0000437{
wdenk4e5ca3e2003-12-08 01:34:36 +0000438 cmd_tbl_t *cmdtp;
wdenkbf9e3b32004-02-12 00:47:09 +0000439 char *s, *e;
wdenk4e5ca3e2003-12-08 01:34:36 +0000440 bd_t *bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000441 int i;
442 extern void malloc_bin_reloc (void);
wdenk4e5ca3e2003-12-08 01:34:36 +0000443
wdenkbf9e3b32004-02-12 00:47:09 +0000444#ifndef CFG_ENV_IS_NOWHERE
445 extern char * env_name_spec;
446#endif
447#ifndef CFG_NO_FLASH
448 ulong flash_size;
449#endif
450 gd = id; /* initialize RAM version of global data */
wdenk4e5ca3e2003-12-08 01:34:36 +0000451 bd = gd->bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000452
453 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
454
TsiChung Liew8e585f02007-06-18 13:50:13 -0500455#ifdef CONFIG_SERIAL_MULTI
456 serial_initialize();
457#endif
458
wdenkbf9e3b32004-02-12 00:47:09 +0000459 debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
460
461 WATCHDOG_RESET ();
462
463 gd->reloc_off = dest_addr - CFG_MONITOR_BASE;
464
465 monitor_flash_len = (ulong)&__init_end - dest_addr;
466
467 /*
468 * We have to relocate the command table manually
469 */
470 for (cmdtp = &__u_boot_cmd_start; cmdtp != &__u_boot_cmd_end; cmdtp++) {
471 ulong addr;
472 addr = (ulong) (cmdtp->cmd) + gd->reloc_off;
473#if 0
474 printf ("Command \"%s\": 0x%08lx => 0x%08lx\n",
475 cmdtp->name, (ulong) (cmdtp->cmd), addr);
476#endif
477 cmdtp->cmd =
478 (int (*)(struct cmd_tbl_s *, int, int, char *[]))addr;
479
480 addr = (ulong)(cmdtp->name) + gd->reloc_off;
481 cmdtp->name = (char *)addr;
482
483 if (cmdtp->usage) {
484 addr = (ulong)(cmdtp->usage) + gd->reloc_off;
485 cmdtp->usage = (char *)addr;
486 }
487#ifdef CFG_LONGHELP
488 if (cmdtp->help) {
489 addr = (ulong)(cmdtp->help) + gd->reloc_off;
490 cmdtp->help = (char *)addr;
491 }
492#endif
493 }
494 /* there are some other pointer constants we must deal with */
495#ifndef CFG_ENV_IS_NOWHERE
496 env_name_spec += gd->reloc_off;
497#endif
498
499 WATCHDOG_RESET ();
500
501#ifdef CONFIG_LOGBUFFER
502 logbuff_init_ptrs ();
503#endif
504#ifdef CONFIG_POST
505 post_output_backlog ();
506 post_reloc ();
507#endif
508 WATCHDOG_RESET();
509
510#if 0
511 /* instruction cache enabled in cpu_init_f() for faster relocation */
512 icache_enable (); /* it's time to enable the instruction cache */
513#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000514
515 /*
516 * Setup trap handlers
517 */
TsiChung Liew8e585f02007-06-18 13:50:13 -0500518 trap_init (CFG_SDRAM_BASE);
wdenk4e5ca3e2003-12-08 01:34:36 +0000519
wdenkbf9e3b32004-02-12 00:47:09 +0000520#if !defined(CFG_NO_FLASH)
wdenk4e5ca3e2003-12-08 01:34:36 +0000521 puts ("FLASH: ");
522
523 if ((flash_size = flash_init ()) > 0) {
wdenkbf9e3b32004-02-12 00:47:09 +0000524# ifdef CFG_FLASH_CHECKSUM
525 print_size (flash_size, "");
wdenk4e5ca3e2003-12-08 01:34:36 +0000526 /*
527 * Compute and print flash CRC if flashchecksum is set to 'y'
528 *
wdenkbf9e3b32004-02-12 00:47:09 +0000529 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
wdenk4e5ca3e2003-12-08 01:34:36 +0000530 */
531 s = getenv ("flashchecksum");
532 if (s && (*s == 'y')) {
533 printf (" CRC: %08lX",
wdenkbf9e3b32004-02-12 00:47:09 +0000534 crc32 (0,
535 (const unsigned char *) CFG_FLASH_BASE,
536 flash_size)
537 );
wdenk4e5ca3e2003-12-08 01:34:36 +0000538 }
539 putc ('\n');
wdenkbf9e3b32004-02-12 00:47:09 +0000540# else /* !CFG_FLASH_CHECKSUM */
541 print_size (flash_size, "\n");
542# endif /* CFG_FLASH_CHECKSUM */
wdenk4e5ca3e2003-12-08 01:34:36 +0000543 } else {
544 puts (failed);
545 hang ();
546 }
547
wdenkbf9e3b32004-02-12 00:47:09 +0000548 bd->bi_flashstart = CFG_FLASH_BASE; /* update start of FLASH memory */
549 bd->bi_flashsize = flash_size; /* size of FLASH memory (final value) */
550 bd->bi_flashoffset = 0;
551#else /* CFG_NO_FLASH */
552 bd->bi_flashsize = 0;
553 bd->bi_flashstart = 0;
554 bd->bi_flashoffset = 0;
555#endif /* !CFG_NO_FLASH */
wdenk4e5ca3e2003-12-08 01:34:36 +0000556
557 WATCHDOG_RESET ();
558
559 /* initialize higher level parts of CPU like time base and timers */
560 cpu_init_r ();
561
562 WATCHDOG_RESET ();
563
564 /* initialize malloc() area */
wdenkbf9e3b32004-02-12 00:47:09 +0000565 mem_malloc_init ();
566 malloc_bin_reloc ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000567
568#ifdef CONFIG_SPI
569# if !defined(CFG_ENV_IS_IN_EEPROM)
570 spi_init_f ();
571# endif
572 spi_init_r ();
573#endif
574
575 /* relocate environment function pointers etc. */
576 env_relocate ();
577
wdenkbf9e3b32004-02-12 00:47:09 +0000578 /*
579 * Fill in missing fields of bd_info.
580 * We do this here, where we have "normal" access to the
581 * environment; we used to do this still running from ROM,
582 * where had to use getenv_r(), which can be pretty slow when
583 * the environment is in EEPROM.
584 */
585 s = getenv ("ethaddr");
586 for (i = 0; i < 6; ++i) {
587 bd->bi_enetaddr[i] = s ? simple_strtoul (s, &e, 16) : 0;
588 if (s)
589 s = (*e) ? e + 1 : e;
590 }
TsiChung Liew8e585f02007-06-18 13:50:13 -0500591#ifdef CONFIG_HAS_ETH1
592 /* handle the 2nd ethernet address */
593
594 s = getenv ("eth1addr");
595 for (i = 0; i < 6; ++i) {
596 bd->bi_enet1addr[i] = s ? simple_strtoul (s, &e, 16) : 0;
597 if (s)
598 s = (*e) ? e + 1 : e;
599 }
600#endif
601#ifdef CONFIG_HAS_ETH2
602 /* handle the 3rd ethernet address */
603
604 s = getenv ("eth2addr");
605 for (i = 0; i < 6; ++i) {
606 bd->bi_enet2addr[i] = s ? simple_strtoul (s, &e, 16) : 0;
607 if (s)
608 s = (*e) ? e + 1 : e;
609 }
610#endif
611
612#ifdef CONFIG_HAS_ETH3
613 /* handle 4th ethernet address */
614 s = getenv("eth3addr");
615 for (i = 0; i < 6; ++i) {
616 bd->bi_enet3addr[i] = s ? simple_strtoul (s, &e, 16) : 0;
617 if (s)
618 s = (*e) ? e + 1 : e;
619 }
620#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000621
wdenk4e5ca3e2003-12-08 01:34:36 +0000622 /* IP Address */
623 bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
624
625 WATCHDOG_RESET ();
626
TsiChung Liew8e585f02007-06-18 13:50:13 -0500627#if defined(CONFIG_PCI)
628 /*
629 * Do pci configuration
630 */
631 pci_init ();
632#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000633
634 /** leave this here (after malloc(), environment and PCI are working) **/
635 /* Initialize devices */
636 devices_init ();
637
638 /* Initialize the jump table for applications */
639 jumptable_init ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000640
641 /* Initialize the console (after the relocation and devices init) */
wdenkbf9e3b32004-02-12 00:47:09 +0000642 console_init_r ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000643
stroesee2c22d72004-12-16 17:55:22 +0000644#if defined(CONFIG_MISC_INIT_R)
645 /* miscellaneous platform dependent initialisations */
646 misc_init_r ();
647#endif
648
Jon Loeliger7def6b32007-07-09 18:02:11 -0500649#if defined(CONFIG_CMD_KGDB)
wdenk4e5ca3e2003-12-08 01:34:36 +0000650 WATCHDOG_RESET ();
651 puts ("KGDB: ");
652 kgdb_init ();
653#endif
654
wdenkbf9e3b32004-02-12 00:47:09 +0000655 debug ("U-Boot relocated to %08lx\n", dest_addr);
656
wdenk4e5ca3e2003-12-08 01:34:36 +0000657 /*
658 * Enable Interrupts
659 */
660 interrupt_init ();
wdenkbf9e3b32004-02-12 00:47:09 +0000661
662 /* Must happen after interrupts are initialized since
663 * an irq handler gets installed
664 */
665 timer_init();
666
wdenk42dfe7a2004-03-14 22:25:36 +0000667#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
wdenkbf9e3b32004-02-12 00:47:09 +0000668 serial_buffered_init();
669#endif
670
671#ifdef CONFIG_STATUS_LED
672 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
673#endif
674
wdenk4e5ca3e2003-12-08 01:34:36 +0000675 udelay (20);
wdenkbf9e3b32004-02-12 00:47:09 +0000676
wdenk4e5ca3e2003-12-08 01:34:36 +0000677 set_timer (0);
678
679 /* Insert function pointers now that we have relocated the code */
680
681 /* Initialize from environment */
682 if ((s = getenv ("loadaddr")) != NULL) {
683 load_addr = simple_strtoul (s, NULL, 16);
684 }
Jon Loeliger7def6b32007-07-09 18:02:11 -0500685#if defined(CONFIG_CMD_NET)
wdenk4e5ca3e2003-12-08 01:34:36 +0000686 if ((s = getenv ("bootfile")) != NULL) {
687 copy_filename (BootFile, s, sizeof (BootFile));
688 }
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500689#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000690
691 WATCHDOG_RESET ();
692
Jon Loeliger7def6b32007-07-09 18:02:11 -0500693#if defined(CONFIG_CMD_DOC)
wdenk4e5ca3e2003-12-08 01:34:36 +0000694 WATCHDOG_RESET ();
wdenkbf9e3b32004-02-12 00:47:09 +0000695 puts ("DOC: ");
696 doc_init ();
697#endif
698
Jon Loeliger7def6b32007-07-09 18:02:11 -0500699#if defined(CONFIG_CMD_NAND)
wdenkbf9e3b32004-02-12 00:47:09 +0000700 WATCHDOG_RESET ();
Markus Klotzbuecherd860c342006-04-25 17:00:33 +0200701 puts ("NAND: ");
wdenkbf9e3b32004-02-12 00:47:09 +0000702 nand_init(); /* go init the NAND */
703#endif
704
Stefan Roesed61ea142007-08-15 14:51:27 +0200705#if defined(CONFIG_CMD_NET)
wdenkbf9e3b32004-02-12 00:47:09 +0000706 WATCHDOG_RESET();
TsiChung Liew8e585f02007-06-18 13:50:13 -0500707#if defined(FEC_ENET)
wdenkbf9e3b32004-02-12 00:47:09 +0000708 eth_init(bd);
709#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500710#if defined(CONFIG_NET_MULTI)
711 puts ("Net: ");
TsiChungLiewab77bc52007-08-15 15:39:17 -0500712 eth_initialize (bd);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500713#endif
714#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000715
716#ifdef CONFIG_POST
717 post_run (NULL, POST_RAM | post_bootmode_get(0));
wdenk4e5ca3e2003-12-08 01:34:36 +0000718#endif
719
Stefan Roesed61ea142007-08-15 14:51:27 +0200720#if defined(CONFIG_CMD_PCMCIA) \
721 && !defined(CONFIG_CMD_IDE)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500722 WATCHDOG_RESET ();
723 puts ("PCMCIA:");
724 pcmcia_init ();
725#endif
726
Stefan Roesed61ea142007-08-15 14:51:27 +0200727#if defined(CONFIG_CMD_IDE)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500728 WATCHDOG_RESET ();
729 puts ("IDE: ");
730 ide_init ();
Stefan Roesed61ea142007-08-15 14:51:27 +0200731#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500732
wdenk4e5ca3e2003-12-08 01:34:36 +0000733#ifdef CONFIG_LAST_STAGE_INIT
734 WATCHDOG_RESET ();
735 /*
736 * Some parts can be only initialized if all others (like
737 * Interrupts) are up and running (i.e. the PC-style ISA
738 * keyboard).
739 */
740 last_stage_init ();
741#endif
742
Jon Loeliger7def6b32007-07-09 18:02:11 -0500743#if defined(CONFIG_CMD_BEDBUG)
wdenk4e5ca3e2003-12-08 01:34:36 +0000744 WATCHDOG_RESET ();
745 bedbug_init ();
746#endif
747
wdenkbf9e3b32004-02-12 00:47:09 +0000748#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
wdenk4e5ca3e2003-12-08 01:34:36 +0000749 /*
750 * Export available size of memory for Linux,
751 * taking into account the protected RAM at top of memory
752 */
753 {
754 ulong pram;
TsiChung Liew6e370912008-06-24 12:12:16 -0500755 char memsz[32];
wdenkbf9e3b32004-02-12 00:47:09 +0000756#ifdef CONFIG_PRAM
757 char *s;
wdenk4e5ca3e2003-12-08 01:34:36 +0000758
759 if ((s = getenv ("pram")) != NULL) {
760 pram = simple_strtoul (s, NULL, 10);
761 } else {
762 pram = CONFIG_PRAM;
763 }
wdenkbf9e3b32004-02-12 00:47:09 +0000764#else
765 pram=0;
766#endif
767#ifdef CONFIG_LOGBUFFER
768 /* Also take the logbuffer into account (pram is in kB) */
769 pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024;
770#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000771 sprintf (memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
772 setenv ("mem", memsz);
773 }
774#endif
775
wdenkbf9e3b32004-02-12 00:47:09 +0000776#ifdef CONFIG_MODEM_SUPPORT
777 {
778 extern int do_mdm_init;
779 do_mdm_init = gd->do_mdm_init;
780 }
781#endif
782
783#ifdef CONFIG_WATCHDOG
784 /* disable watchdog if environment is set */
785 if ((s = getenv ("watchdog")) != NULL) {
786 if (strncmp (s, "off", 3) == 0) {
787 WATCHDOG_DISABLE ();
788 }
789 }
790#endif /* CONFIG_WATCHDOG*/
791
792
wdenk4e5ca3e2003-12-08 01:34:36 +0000793 /* Initialization complete - start the monitor */
794
795 /* main_loop() can return to retry autoboot, if so just run it again. */
796 for (;;) {
797 WATCHDOG_RESET ();
798 main_loop ();
799 }
800
801 /* NOTREACHED - no way out of command loop except booting */
802}
803
wdenkbf9e3b32004-02-12 00:47:09 +0000804
805void hang(void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000806{
807 puts ("### ERROR ### Please RESET the board ###\n");
808 for (;;);
809}