blob: 4392bccdbaefda50621694e44c9737fc72339554 [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>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020031#include <stdio_dev.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
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020052#ifdef CONFIG_SYS_ALLOC_DPRAM
wdenk4e5ca3e2003-12-08 01:34:36 +000053#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
TsiChung Liewa7323bb2008-07-23 17:53:36 -050062#ifdef CONFIG_CMD_SPI
63#include <spi.h>
64#endif
65
TsiChung Liewab6ba842008-08-13 12:07:03 +000066#include <nand.h>
67
Wolfgang Denkd87080b2006-03-31 18:32:53 +020068DECLARE_GLOBAL_DATA_PTR;
69
wdenk4e5ca3e2003-12-08 01:34:36 +000070static char *failed = "*** failed ***\n";
71
72#ifdef CONFIG_PCU_E
73extern flash_info_t flash_info[];
74#endif
75
wdenkbf9e3b32004-02-12 00:47:09 +000076#include <environment.h>
77
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078#if ( ((CONFIG_ENV_ADDR+CONFIG_ENV_SIZE) < CONFIG_SYS_MONITOR_BASE) || \
79 (CONFIG_ENV_ADDR >= (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)) ) || \
Jean-Christophe PLAGNIOL-VILLARD9314cee2008-09-10 22:47:59 +020080 defined(CONFIG_ENV_IS_IN_NVRAM)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020081#define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE)
wdenk4e5ca3e2003-12-08 01:34:36 +000082#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020083#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
wdenk4e5ca3e2003-12-08 01:34:36 +000084#endif
85
wdenkbf9e3b32004-02-12 00:47:09 +000086extern ulong __init_end;
87extern ulong _end;
88
89extern void timer_init(void);
90
91#if defined(CONFIG_WATCHDOG)
92# define INIT_FUNC_WATCHDOG_INIT watchdog_init,
93# define WATCHDOG_DISABLE watchdog_disable
94
95extern int watchdog_init(void);
96extern int watchdog_disable(void);
97#else
98# define INIT_FUNC_WATCHDOG_INIT /* undef */
99# define WATCHDOG_DISABLE /* undef */
100#endif /* CONFIG_WATCHDOG */
101
102ulong monitor_flash_len;
103
wdenk4e5ca3e2003-12-08 01:34:36 +0000104/************************************************************************
105 * Utilities *
106 ************************************************************************
107 */
108
109/*
110 * The Malloc area is immediately below the monitor copy in DRAM
111 */
wdenkbf9e3b32004-02-12 00:47:09 +0000112static void mem_malloc_init (void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000113{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200114 ulong dest_addr = CONFIG_SYS_MONITOR_BASE + gd->reloc_off;
wdenkbf9e3b32004-02-12 00:47:09 +0000115
wdenk4e5ca3e2003-12-08 01:34:36 +0000116 mem_malloc_end = dest_addr;
117 mem_malloc_start = dest_addr - TOTAL_MALLOC_LEN;
118 mem_malloc_brk = mem_malloc_start;
119
wdenkbf9e3b32004-02-12 00:47:09 +0000120 memset ((void *) mem_malloc_start,
121 0,
wdenk4e5ca3e2003-12-08 01:34:36 +0000122 mem_malloc_end - mem_malloc_start);
123}
124
wdenkbf9e3b32004-02-12 00:47:09 +0000125/*
126 * All attempts to come up with a "common" initialization sequence
127 * that works for all boards and architectures failed: some of the
128 * requirements are just _too_ different. To get rid of the resulting
129 * mess of board dependend #ifdef'ed code we now make the whole
130 * initialization sequence configurable to the user.
131 *
132 * The requirements for any new initalization function is simple: it
133 * receives a pointer to the "global data" structure as it's only
134 * argument, and returns an integer return code, where 0 means
135 * "continue" and != 0 means "fatal error, hang the system".
136 */
137typedef int (init_fnc_t) (void);
138
139/************************************************************************
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500140 * Init Utilities
wdenkbf9e3b32004-02-12 00:47:09 +0000141 ************************************************************************
142 * Some of this code should be moved into the core functions,
143 * but let's get it working (again) first...
144 */
145
146static int init_baudrate (void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000147{
TsiChung Liew6e370912008-06-24 12:12:16 -0500148 char tmp[64]; /* long enough for environment variables */
wdenkbf9e3b32004-02-12 00:47:09 +0000149 int i = getenv_r ("baudrate", tmp, sizeof (tmp));
wdenk4e5ca3e2003-12-08 01:34:36 +0000150
wdenkbf9e3b32004-02-12 00:47:09 +0000151 gd->baudrate = (i > 0)
152 ? (int) simple_strtoul (tmp, NULL, 10)
153 : CONFIG_BAUDRATE;
154 return (0);
wdenk4e5ca3e2003-12-08 01:34:36 +0000155}
156
wdenkbf9e3b32004-02-12 00:47:09 +0000157/***********************************************************************/
158
159static int init_func_ram (void)
160{
wdenkbf9e3b32004-02-12 00:47:09 +0000161 int board_type = 0; /* use dummy arg */
162 puts ("DRAM: ");
163
164 if ((gd->ram_size = initdram (board_type)) > 0) {
165 print_size (gd->ram_size, "\n");
166 return (0);
167 }
168 puts (failed);
169 return (1);
170}
171
172/***********************************************************************/
173
stroesee2c22d72004-12-16 17:55:22 +0000174#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
175static int init_func_i2c (void)
176{
177 puts ("I2C: ");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200178 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
stroesee2c22d72004-12-16 17:55:22 +0000179 puts ("ready\n");
180 return (0);
181}
182#endif
183
TsiChung Liewa7323bb2008-07-23 17:53:36 -0500184#if defined(CONFIG_HARD_SPI)
185static int init_func_spi (void)
186{
187 puts ("SPI: ");
188 spi_init ();
189 puts ("ready\n");
190 return (0);
191}
192#endif
193
stroesee2c22d72004-12-16 17:55:22 +0000194/***********************************************************************/
195
wdenkbf9e3b32004-02-12 00:47:09 +0000196/************************************************************************
197 * Initialization sequence *
198 ************************************************************************
199 */
200
201init_fnc_t *init_sequence[] = {
Stefan Roesed61ea142007-08-15 14:51:27 +0200202 get_clocks,
wdenkbf9e3b32004-02-12 00:47:09 +0000203 env_init,
204 init_baudrate,
205 serial_init,
206 console_init_f,
207 display_options,
208 checkcpu,
209 checkboard,
stroesee2c22d72004-12-16 17:55:22 +0000210#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
211 init_func_i2c,
212#endif
TsiChung Liewa7323bb2008-07-23 17:53:36 -0500213#if defined(CONFIG_HARD_SPI)
214 init_func_spi,
215#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000216 init_func_ram,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200217#if defined(CONFIG_SYS_DRAM_TEST)
wdenkbf9e3b32004-02-12 00:47:09 +0000218 testdram,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200219#endif /* CONFIG_SYS_DRAM_TEST */
wdenkbf9e3b32004-02-12 00:47:09 +0000220 INIT_FUNC_WATCHDOG_INIT
221 NULL, /* Terminate this list */
222};
223
224
wdenk4e5ca3e2003-12-08 01:34:36 +0000225/************************************************************************
226 *
227 * This is the first part of the initialization sequence that is
228 * implemented in C, but still running from ROM.
229 *
230 * The main purpose is to provide a (serial) console interface as
231 * soon as possible (so we can see any error messages), and to
232 * initialize the RAM so that we can relocate the monitor code to
233 * RAM.
234 *
235 * Be aware of the restrictions: global data is read-only, BSS is not
236 * initialized, and stack space is limited to a few kB.
237 *
238 ************************************************************************
239 */
240
wdenkbf9e3b32004-02-12 00:47:09 +0000241void
242board_init_f (ulong bootflag)
wdenk4e5ca3e2003-12-08 01:34:36 +0000243{
wdenk4e5ca3e2003-12-08 01:34:36 +0000244 bd_t *bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000245 ulong len, addr, addr_sp;
Marian Balakowicz483a0cf2006-05-09 11:28:36 +0200246 ulong *paddr;
wdenkbf9e3b32004-02-12 00:47:09 +0000247 gd_t *id;
248 init_fnc_t **init_fnc_ptr;
249#ifdef CONFIG_PRAM
250 int i;
251 ulong reg;
TsiChung Liew6e370912008-06-24 12:12:16 -0500252 char tmp[64]; /* long enough for environment variables */
wdenkbf9e3b32004-02-12 00:47:09 +0000253#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000254
wdenkbf9e3b32004-02-12 00:47:09 +0000255 /* Pointer is writable since we allocated a register for it */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200256 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
wdenk93f6a672004-07-01 20:28:03 +0000257 /* compiler optimization barrier needed for GCC >= 3.4 */
258 __asm__ __volatile__("": : :"memory");
wdenk4e5ca3e2003-12-08 01:34:36 +0000259
wdenkbf9e3b32004-02-12 00:47:09 +0000260 /* Clear initial global data */
261 memset ((void *) gd, 0, sizeof (gd_t));
wdenk4e5ca3e2003-12-08 01:34:36 +0000262
wdenkbf9e3b32004-02-12 00:47:09 +0000263 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
264 if ((*init_fnc_ptr)() != 0) {
265 hang ();
266 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000267 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000268
269 /*
270 * Now that we have DRAM mapped and working, we can
271 * relocate the code and continue running from DRAM.
272 *
273 * Reserve memory at end of RAM for (top down in that order):
wdenkbf9e3b32004-02-12 00:47:09 +0000274 * - protected RAM
275 * - LCD framebuffer
276 * - monitor code
277 * - board info struct
wdenk4e5ca3e2003-12-08 01:34:36 +0000278 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200279 len = (ulong)&_end - CONFIG_SYS_MONITOR_BASE;
wdenk4e5ca3e2003-12-08 01:34:36 +0000280
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200281 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
wdenk4e5ca3e2003-12-08 01:34:36 +0000282
wdenkbf9e3b32004-02-12 00:47:09 +0000283#ifdef CONFIG_LOGBUFFER
284 /* reserve kernel log buffer */
285 addr -= (LOGBUFF_RESERVE);
286 debug ("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr);
287#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000288
wdenkbf9e3b32004-02-12 00:47:09 +0000289#ifdef CONFIG_PRAM
290 /*
291 * reserve protected RAM
292 */
293 i = getenv_r ("pram", tmp, sizeof (tmp));
294 reg = (i > 0) ? simple_strtoul (tmp, NULL, 10) : CONFIG_PRAM;
295 addr -= (reg << 10); /* size is in kB */
296 debug ("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
297#endif /* CONFIG_PRAM */
298
TsiChungLiew1552af72008-01-14 17:43:33 -0600299 /* round down to next 4 kB limit */
300 addr &= ~(4096 - 1);
301 debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
302
303#ifdef CONFIG_LCD
304 /* reserve memory for LCD display (always full pages) */
305 addr = lcd_setmem (addr);
306 gd->fb_base = addr;
307#endif /* CONFIG_LCD */
308
wdenkbf9e3b32004-02-12 00:47:09 +0000309 /*
310 * reserve memory for U-Boot code, data & bss
311 * round down to next 4 kB limit
312 */
wdenk4e5ca3e2003-12-08 01:34:36 +0000313 addr -= len;
wdenkbf9e3b32004-02-12 00:47:09 +0000314 addr &= ~(4096 - 1);
315
316 debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
317
318 /*
319 * reserve memory for malloc() arena
320 */
321 addr_sp = addr - TOTAL_MALLOC_LEN;
322 debug ("Reserving %dk for malloc() at: %08lx\n",
323 TOTAL_MALLOC_LEN >> 10, addr_sp);
324
325 /*
326 * (permanently) allocate a Board Info struct
327 * and a permanent copy of the "global" data
328 */
329 addr_sp -= sizeof (bd_t);
330 bd = (bd_t *) addr_sp;
331 gd->bd = bd;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200332 debug ("Reserving %zu Bytes for Board Info at: %08lx\n",
wdenkbf9e3b32004-02-12 00:47:09 +0000333 sizeof (bd_t), addr_sp);
334 addr_sp -= sizeof (gd_t);
335 id = (gd_t *) addr_sp;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200336 debug ("Reserving %zu Bytes for Global Data at: %08lx\n",
wdenkbf9e3b32004-02-12 00:47:09 +0000337 sizeof (gd_t), addr_sp);
338
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200339 /* Reserve memory for boot params. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200340 addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN;
wdenkbf9e3b32004-02-12 00:47:09 +0000341 bd->bi_boot_params = addr_sp;
342 debug ("Reserving %dk for boot parameters at: %08lx\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200343 CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp);
wdenkbf9e3b32004-02-12 00:47:09 +0000344
345 /*
346 * Finally, we set up a new (bigger) stack.
347 *
348 * Leave some safety gap for SP, force alignment on 16 byte boundary
349 * Clear initial stack frame
350 */
351 addr_sp -= 16;
352 addr_sp &= ~0xF;
Marian Balakowicz483a0cf2006-05-09 11:28:36 +0200353
354 paddr = (ulong *)addr_sp;
355 *paddr-- = 0;
356 *paddr-- = 0;
357 addr_sp = (ulong)paddr;
Wolfgang Denk977b50f2006-05-10 17:43:20 +0200358
wdenkbf9e3b32004-02-12 00:47:09 +0000359 debug ("Stack Pointer at: %08lx\n", addr_sp);
wdenk4e5ca3e2003-12-08 01:34:36 +0000360
361 /*
362 * Save local variables to board info struct
363 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200364 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM memory */
wdenkbf9e3b32004-02-12 00:47:09 +0000365 bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200366#ifdef CONFIG_SYS_INIT_RAM_ADDR
367 bd->bi_sramstart = CONFIG_SYS_INIT_RAM_ADDR; /* start of SRAM memory */
368 bd->bi_sramsize = CONFIG_SYS_INIT_RAM_END; /* size of SRAM memory */
TsiChung Liew8e585f02007-06-18 13:50:13 -0500369#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200370 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
wdenk4e5ca3e2003-12-08 01:34:36 +0000371
wdenkbf9e3b32004-02-12 00:47:09 +0000372 bd->bi_bootflags = bootflag; /* boot / reboot flag (for LynxOS) */
wdenk4e5ca3e2003-12-08 01:34:36 +0000373
wdenkbf9e3b32004-02-12 00:47:09 +0000374 WATCHDOG_RESET ();
375 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
376 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500377#ifdef CONFIG_PCI
378 bd->bi_pcifreq = gd->pci_clk; /* PCI Freq in Hz */
379#endif
380#ifdef CONFIG_EXTRA_CLOCK
381 bd->bi_inpfreq = gd->inp_clk; /* input Freq in Hz */
382 bd->bi_vcofreq = gd->vco_clk; /* vco Freq in Hz */
383 bd->bi_flbfreq = gd->flb_clk; /* flexbus Freq in Hz */
384#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000385 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
wdenk4e5ca3e2003-12-08 01:34:36 +0000386
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200387#ifdef CONFIG_SYS_EXTBDINFO
wdenk4e5ca3e2003-12-08 01:34:36 +0000388 strncpy (bd->bi_s_version, "1.2", sizeof (bd->bi_s_version));
wdenkbf9e3b32004-02-12 00:47:09 +0000389 strncpy (bd->bi_r_version, U_BOOT_VERSION, sizeof (bd->bi_r_version));
wdenk4e5ca3e2003-12-08 01:34:36 +0000390#endif
391
wdenkbf9e3b32004-02-12 00:47:09 +0000392 WATCHDOG_RESET ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000393
wdenkbf9e3b32004-02-12 00:47:09 +0000394#ifdef CONFIG_POST
395 post_bootmode_init();
396 post_run (NULL, POST_ROM | post_bootmode_get(0));
397#endif
398
399 WATCHDOG_RESET();
400
401 memcpy (id, (void *)gd, sizeof (gd_t));
402
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200403 debug ("Start relocate of code from %08x to %08lx\n", CONFIG_SYS_MONITOR_BASE, addr);
wdenkbf9e3b32004-02-12 00:47:09 +0000404 relocate_code (addr_sp, id, addr);
405
406 /* NOTREACHED - jump_to_ram() does not return */
wdenk4e5ca3e2003-12-08 01:34:36 +0000407}
408
wdenk4e5ca3e2003-12-08 01:34:36 +0000409/************************************************************************
410 *
411 * This is the next part if the initialization sequence: we are now
412 * running from RAM and have a "normal" C environment, i. e. global
413 * data can be written, BSS has been cleared, the stack size in not
414 * that critical any more, etc.
415 *
416 ************************************************************************
417 */
wdenkbf9e3b32004-02-12 00:47:09 +0000418void board_init_r (gd_t *id, ulong dest_addr)
wdenk4e5ca3e2003-12-08 01:34:36 +0000419{
wdenk4e5ca3e2003-12-08 01:34:36 +0000420 cmd_tbl_t *cmdtp;
Richard Retanubundc269652009-03-23 13:35:48 -0400421 char *s;
wdenk4e5ca3e2003-12-08 01:34:36 +0000422 bd_t *bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000423 extern void malloc_bin_reloc (void);
wdenk4e5ca3e2003-12-08 01:34:36 +0000424
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200425#ifndef CONFIG_ENV_IS_NOWHERE
wdenkbf9e3b32004-02-12 00:47:09 +0000426 extern char * env_name_spec;
427#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200428#ifndef CONFIG_SYS_NO_FLASH
wdenkbf9e3b32004-02-12 00:47:09 +0000429 ulong flash_size;
430#endif
431 gd = id; /* initialize RAM version of global data */
wdenk4e5ca3e2003-12-08 01:34:36 +0000432 bd = gd->bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000433
434 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
435
TsiChung Liew8e585f02007-06-18 13:50:13 -0500436#ifdef CONFIG_SERIAL_MULTI
437 serial_initialize();
438#endif
439
wdenkbf9e3b32004-02-12 00:47:09 +0000440 debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
441
442 WATCHDOG_RESET ();
443
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200444 gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
wdenkbf9e3b32004-02-12 00:47:09 +0000445
446 monitor_flash_len = (ulong)&__init_end - dest_addr;
447
448 /*
449 * We have to relocate the command table manually
450 */
451 for (cmdtp = &__u_boot_cmd_start; cmdtp != &__u_boot_cmd_end; cmdtp++) {
452 ulong addr;
453 addr = (ulong) (cmdtp->cmd) + gd->reloc_off;
454#if 0
455 printf ("Command \"%s\": 0x%08lx => 0x%08lx\n",
456 cmdtp->name, (ulong) (cmdtp->cmd), addr);
457#endif
458 cmdtp->cmd =
459 (int (*)(struct cmd_tbl_s *, int, int, char *[]))addr;
460
461 addr = (ulong)(cmdtp->name) + gd->reloc_off;
462 cmdtp->name = (char *)addr;
463
464 if (cmdtp->usage) {
465 addr = (ulong)(cmdtp->usage) + gd->reloc_off;
466 cmdtp->usage = (char *)addr;
467 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200468#ifdef CONFIG_SYS_LONGHELP
wdenkbf9e3b32004-02-12 00:47:09 +0000469 if (cmdtp->help) {
470 addr = (ulong)(cmdtp->help) + gd->reloc_off;
471 cmdtp->help = (char *)addr;
472 }
473#endif
474 }
475 /* there are some other pointer constants we must deal with */
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200476#ifndef CONFIG_ENV_IS_NOWHERE
wdenkbf9e3b32004-02-12 00:47:09 +0000477 env_name_spec += gd->reloc_off;
478#endif
479
480 WATCHDOG_RESET ();
481
482#ifdef CONFIG_LOGBUFFER
483 logbuff_init_ptrs ();
484#endif
485#ifdef CONFIG_POST
486 post_output_backlog ();
487 post_reloc ();
488#endif
489 WATCHDOG_RESET();
490
491#if 0
492 /* instruction cache enabled in cpu_init_f() for faster relocation */
493 icache_enable (); /* it's time to enable the instruction cache */
494#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000495
496 /*
497 * Setup trap handlers
498 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200499 trap_init (CONFIG_SYS_SDRAM_BASE);
wdenk4e5ca3e2003-12-08 01:34:36 +0000500
Stefan Roesec790b042009-05-11 15:50:12 +0200501 /* initialize malloc() area */
502 mem_malloc_init ();
503 malloc_bin_reloc ();
504
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200505#if !defined(CONFIG_SYS_NO_FLASH)
wdenk4e5ca3e2003-12-08 01:34:36 +0000506 puts ("FLASH: ");
507
508 if ((flash_size = flash_init ()) > 0) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200509# ifdef CONFIG_SYS_FLASH_CHECKSUM
wdenkbf9e3b32004-02-12 00:47:09 +0000510 print_size (flash_size, "");
wdenk4e5ca3e2003-12-08 01:34:36 +0000511 /*
512 * Compute and print flash CRC if flashchecksum is set to 'y'
513 *
wdenkbf9e3b32004-02-12 00:47:09 +0000514 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
wdenk4e5ca3e2003-12-08 01:34:36 +0000515 */
516 s = getenv ("flashchecksum");
517 if (s && (*s == 'y')) {
TsiChung Liew11d88b22009-06-12 13:03:34 +0000518 printf (" CRC: %08X",
wdenkbf9e3b32004-02-12 00:47:09 +0000519 crc32 (0,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200520 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
wdenkbf9e3b32004-02-12 00:47:09 +0000521 flash_size)
522 );
wdenk4e5ca3e2003-12-08 01:34:36 +0000523 }
524 putc ('\n');
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200525# else /* !CONFIG_SYS_FLASH_CHECKSUM */
wdenkbf9e3b32004-02-12 00:47:09 +0000526 print_size (flash_size, "\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200527# endif /* CONFIG_SYS_FLASH_CHECKSUM */
wdenk4e5ca3e2003-12-08 01:34:36 +0000528 } else {
529 puts (failed);
530 hang ();
531 }
532
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200533 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE; /* update start of FLASH memory */
wdenkbf9e3b32004-02-12 00:47:09 +0000534 bd->bi_flashsize = flash_size; /* size of FLASH memory (final value) */
535 bd->bi_flashoffset = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200536#else /* CONFIG_SYS_NO_FLASH */
wdenkbf9e3b32004-02-12 00:47:09 +0000537 bd->bi_flashsize = 0;
538 bd->bi_flashstart = 0;
539 bd->bi_flashoffset = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200540#endif /* !CONFIG_SYS_NO_FLASH */
wdenk4e5ca3e2003-12-08 01:34:36 +0000541
542 WATCHDOG_RESET ();
543
544 /* initialize higher level parts of CPU like time base and timers */
545 cpu_init_r ();
546
547 WATCHDOG_RESET ();
548
wdenk4e5ca3e2003-12-08 01:34:36 +0000549#ifdef CONFIG_SPI
Jean-Christophe PLAGNIOL-VILLARDbb1f8b42008-09-05 09:19:30 +0200550# if !defined(CONFIG_ENV_IS_IN_EEPROM)
wdenk4e5ca3e2003-12-08 01:34:36 +0000551 spi_init_f ();
552# endif
553 spi_init_r ();
554#endif
555
556 /* relocate environment function pointers etc. */
557 env_relocate ();
558
wdenkbf9e3b32004-02-12 00:47:09 +0000559 /*
560 * Fill in missing fields of bd_info.
561 * We do this here, where we have "normal" access to the
562 * environment; we used to do this still running from ROM,
563 * where had to use getenv_r(), which can be pretty slow when
564 * the environment is in EEPROM.
565 */
wdenk4e5ca3e2003-12-08 01:34:36 +0000566 bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
567
568 WATCHDOG_RESET ();
569
TsiChung Liew8e585f02007-06-18 13:50:13 -0500570#if defined(CONFIG_PCI)
571 /*
572 * Do pci configuration
573 */
574 pci_init ();
575#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000576
577 /** leave this here (after malloc(), environment and PCI are working) **/
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200578 /* Initialize stdio devices */
579 stdio_init ();
wdenkbf9e3b32004-02-12 00:47:09 +0000580
581 /* Initialize the jump table for applications */
582 jumptable_init ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000583
584 /* Initialize the console (after the relocation and devices init) */
wdenkbf9e3b32004-02-12 00:47:09 +0000585 console_init_r ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000586
stroesee2c22d72004-12-16 17:55:22 +0000587#if defined(CONFIG_MISC_INIT_R)
588 /* miscellaneous platform dependent initialisations */
589 misc_init_r ();
590#endif
591
Jon Loeliger7def6b32007-07-09 18:02:11 -0500592#if defined(CONFIG_CMD_KGDB)
wdenk4e5ca3e2003-12-08 01:34:36 +0000593 WATCHDOG_RESET ();
594 puts ("KGDB: ");
595 kgdb_init ();
596#endif
597
wdenkbf9e3b32004-02-12 00:47:09 +0000598 debug ("U-Boot relocated to %08lx\n", dest_addr);
599
wdenk4e5ca3e2003-12-08 01:34:36 +0000600 /*
601 * Enable Interrupts
602 */
603 interrupt_init ();
wdenkbf9e3b32004-02-12 00:47:09 +0000604
605 /* Must happen after interrupts are initialized since
606 * an irq handler gets installed
607 */
608 timer_init();
609
wdenk42dfe7a2004-03-14 22:25:36 +0000610#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
wdenkbf9e3b32004-02-12 00:47:09 +0000611 serial_buffered_init();
612#endif
613
614#ifdef CONFIG_STATUS_LED
615 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
616#endif
617
wdenk4e5ca3e2003-12-08 01:34:36 +0000618 udelay (20);
wdenkbf9e3b32004-02-12 00:47:09 +0000619
wdenk4e5ca3e2003-12-08 01:34:36 +0000620 set_timer (0);
621
622 /* Insert function pointers now that we have relocated the code */
623
624 /* Initialize from environment */
625 if ((s = getenv ("loadaddr")) != NULL) {
626 load_addr = simple_strtoul (s, NULL, 16);
627 }
Jon Loeliger7def6b32007-07-09 18:02:11 -0500628#if defined(CONFIG_CMD_NET)
wdenk4e5ca3e2003-12-08 01:34:36 +0000629 if ((s = getenv ("bootfile")) != NULL) {
630 copy_filename (BootFile, s, sizeof (BootFile));
631 }
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500632#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000633
634 WATCHDOG_RESET ();
635
Jon Loeliger7def6b32007-07-09 18:02:11 -0500636#if defined(CONFIG_CMD_DOC)
wdenk4e5ca3e2003-12-08 01:34:36 +0000637 WATCHDOG_RESET ();
wdenkbf9e3b32004-02-12 00:47:09 +0000638 puts ("DOC: ");
639 doc_init ();
640#endif
641
Jon Loeliger7def6b32007-07-09 18:02:11 -0500642#if defined(CONFIG_CMD_NAND)
wdenkbf9e3b32004-02-12 00:47:09 +0000643 WATCHDOG_RESET ();
Markus Klotzbuecherd860c342006-04-25 17:00:33 +0200644 puts ("NAND: ");
wdenkbf9e3b32004-02-12 00:47:09 +0000645 nand_init(); /* go init the NAND */
646#endif
647
Stefan Roesed61ea142007-08-15 14:51:27 +0200648#if defined(CONFIG_CMD_NET)
wdenkbf9e3b32004-02-12 00:47:09 +0000649 WATCHDOG_RESET();
TsiChung Liew8e585f02007-06-18 13:50:13 -0500650#if defined(FEC_ENET)
wdenkbf9e3b32004-02-12 00:47:09 +0000651 eth_init(bd);
652#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500653#if defined(CONFIG_NET_MULTI)
654 puts ("Net: ");
TsiChungLiewab77bc52007-08-15 15:39:17 -0500655 eth_initialize (bd);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500656#endif
657#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000658
659#ifdef CONFIG_POST
660 post_run (NULL, POST_RAM | post_bootmode_get(0));
wdenk4e5ca3e2003-12-08 01:34:36 +0000661#endif
662
Stefan Roesed61ea142007-08-15 14:51:27 +0200663#if defined(CONFIG_CMD_PCMCIA) \
664 && !defined(CONFIG_CMD_IDE)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500665 WATCHDOG_RESET ();
666 puts ("PCMCIA:");
667 pcmcia_init ();
668#endif
669
Stefan Roesed61ea142007-08-15 14:51:27 +0200670#if defined(CONFIG_CMD_IDE)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500671 WATCHDOG_RESET ();
672 puts ("IDE: ");
673 ide_init ();
Stefan Roesed61ea142007-08-15 14:51:27 +0200674#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500675
wdenk4e5ca3e2003-12-08 01:34:36 +0000676#ifdef CONFIG_LAST_STAGE_INIT
677 WATCHDOG_RESET ();
678 /*
679 * Some parts can be only initialized if all others (like
680 * Interrupts) are up and running (i.e. the PC-style ISA
681 * keyboard).
682 */
683 last_stage_init ();
684#endif
685
Jon Loeliger7def6b32007-07-09 18:02:11 -0500686#if defined(CONFIG_CMD_BEDBUG)
wdenk4e5ca3e2003-12-08 01:34:36 +0000687 WATCHDOG_RESET ();
688 bedbug_init ();
689#endif
690
wdenkbf9e3b32004-02-12 00:47:09 +0000691#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
wdenk4e5ca3e2003-12-08 01:34:36 +0000692 /*
693 * Export available size of memory for Linux,
694 * taking into account the protected RAM at top of memory
695 */
696 {
697 ulong pram;
TsiChung Liew6e370912008-06-24 12:12:16 -0500698 char memsz[32];
wdenkbf9e3b32004-02-12 00:47:09 +0000699#ifdef CONFIG_PRAM
700 char *s;
wdenk4e5ca3e2003-12-08 01:34:36 +0000701
702 if ((s = getenv ("pram")) != NULL) {
703 pram = simple_strtoul (s, NULL, 10);
704 } else {
705 pram = CONFIG_PRAM;
706 }
wdenkbf9e3b32004-02-12 00:47:09 +0000707#else
708 pram=0;
709#endif
710#ifdef CONFIG_LOGBUFFER
711 /* Also take the logbuffer into account (pram is in kB) */
712 pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024;
713#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000714 sprintf (memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
715 setenv ("mem", memsz);
716 }
717#endif
718
wdenkbf9e3b32004-02-12 00:47:09 +0000719#ifdef CONFIG_MODEM_SUPPORT
720 {
721 extern int do_mdm_init;
722 do_mdm_init = gd->do_mdm_init;
723 }
724#endif
725
726#ifdef CONFIG_WATCHDOG
727 /* disable watchdog if environment is set */
728 if ((s = getenv ("watchdog")) != NULL) {
729 if (strncmp (s, "off", 3) == 0) {
730 WATCHDOG_DISABLE ();
731 }
732 }
733#endif /* CONFIG_WATCHDOG*/
734
735
wdenk4e5ca3e2003-12-08 01:34:36 +0000736 /* Initialization complete - start the monitor */
737
738 /* main_loop() can return to retry autoboot, if so just run it again. */
739 for (;;) {
740 WATCHDOG_RESET ();
741 main_loop ();
742 }
743
744 /* NOTREACHED - no way out of command loop except booting */
745}
746
wdenkbf9e3b32004-02-12 00:47:09 +0000747
748void hang(void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000749{
750 puts ("### ERROR ### Please RESET the board ###\n");
751 for (;;);
752}