blob: db45b00b1e3eacef5884d8074b3bc7716027e455 [file] [log] [blame]
wdenkabf7a7c2003-12-08 01:34:36 +00001/*
wdenke65527f2004-02-12 00:47:09 +00002 * (C) Copyright 2003
3 * Josef Baumgartner <josef.baumgartner@telex.de>
4 *
5 * (C) Copyright 2000-2002
wdenkabf7a7c2003-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>
wdenke65527f2004-02-12 00:47:09 +000032
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050033#include <asm/immap.h>
wdenke65527f2004-02-12 00:47:09 +000034
Jon Loeliger6b233052007-07-09 18:02:11 -050035#if defined(CONFIG_CMD_IDE)
wdenkabf7a7c2003-12-08 01:34:36 +000036#include <ide.h>
37#endif
Jon Loeliger6b233052007-07-09 18:02:11 -050038#if defined(CONFIG_CMD_SCSI)
wdenkabf7a7c2003-12-08 01:34:36 +000039#include <scsi.h>
40#endif
Jon Loeliger6b233052007-07-09 18:02:11 -050041#if defined(CONFIG_CMD_KGDB)
wdenkabf7a7c2003-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 Ziswilerb5a75412008-05-01 09:05:26 +020048#include <serial.h>
Jon Loeliger6b233052007-07-09 18:02:11 -050049#if defined(CONFIG_CMD_BEDBUG)
wdenkabf7a7c2003-12-08 01:34:36 +000050#include <cmd_bedbug.h>
51#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020052#ifdef CONFIG_SYS_ALLOC_DPRAM
wdenkabf7a7c2003-12-08 01:34:36 +000053#include <commproc.h>
54#endif
55#include <version.h>
56
stroesecd2128e2004-12-16 17:55:22 +000057#if defined(CONFIG_HARD_I2C) || \
58 defined(CONFIG_SOFT_I2C)
59#include <i2c.h>
60#endif
61
TsiChung Liew663c9522008-07-23 17:53:36 -050062#ifdef CONFIG_CMD_SPI
63#include <spi.h>
64#endif
65
TsiChung Liew2a90e892008-08-13 12:07:03 +000066#include <nand.h>
67
Wolfgang Denk6405a152006-03-31 18:32:53 +020068DECLARE_GLOBAL_DATA_PTR;
69
wdenkabf7a7c2003-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
wdenke65527f2004-02-12 00:47:09 +000076#include <environment.h>
77
Jean-Christophe PLAGNIOL-VILLARD03836942008-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-VILLARDfdb79c32008-09-10 22:47:59 +020080 defined(CONFIG_ENV_IS_IN_NVRAM)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020081#define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE)
wdenkabf7a7c2003-12-08 01:34:36 +000082#else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020083#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
wdenkabf7a7c2003-12-08 01:34:36 +000084#endif
85
wdenke65527f2004-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
wdenkabf7a7c2003-12-08 01:34:36 +0000104/*
105 * Begin and End of memory area for malloc(), and current "brk"
106 */
wdenke65527f2004-02-12 00:47:09 +0000107static ulong mem_malloc_start = 0;
108static ulong mem_malloc_end = 0;
109static ulong mem_malloc_brk = 0;
wdenkabf7a7c2003-12-08 01:34:36 +0000110
111/************************************************************************
112 * Utilities *
113 ************************************************************************
114 */
115
116/*
117 * The Malloc area is immediately below the monitor copy in DRAM
118 */
wdenke65527f2004-02-12 00:47:09 +0000119static void mem_malloc_init (void)
wdenkabf7a7c2003-12-08 01:34:36 +0000120{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200121 ulong dest_addr = CONFIG_SYS_MONITOR_BASE + gd->reloc_off;
wdenke65527f2004-02-12 00:47:09 +0000122
wdenkabf7a7c2003-12-08 01:34:36 +0000123 mem_malloc_end = dest_addr;
124 mem_malloc_start = dest_addr - TOTAL_MALLOC_LEN;
125 mem_malloc_brk = mem_malloc_start;
126
wdenke65527f2004-02-12 00:47:09 +0000127 memset ((void *) mem_malloc_start,
128 0,
wdenkabf7a7c2003-12-08 01:34:36 +0000129 mem_malloc_end - mem_malloc_start);
130}
131
132void *sbrk (ptrdiff_t increment)
133{
134 ulong old = mem_malloc_brk;
135 ulong new = old + increment;
136
wdenke65527f2004-02-12 00:47:09 +0000137 if ((new < mem_malloc_start) ||
138 (new > mem_malloc_end) ) {
wdenkabf7a7c2003-12-08 01:34:36 +0000139 return (NULL);
140 }
141 mem_malloc_brk = new;
wdenke65527f2004-02-12 00:47:09 +0000142 return ((void *)old);
wdenkabf7a7c2003-12-08 01:34:36 +0000143}
144
wdenke65527f2004-02-12 00:47:09 +0000145/*
146 * All attempts to come up with a "common" initialization sequence
147 * that works for all boards and architectures failed: some of the
148 * requirements are just _too_ different. To get rid of the resulting
149 * mess of board dependend #ifdef'ed code we now make the whole
150 * initialization sequence configurable to the user.
151 *
152 * The requirements for any new initalization function is simple: it
153 * receives a pointer to the "global data" structure as it's only
154 * argument, and returns an integer return code, where 0 means
155 * "continue" and != 0 means "fatal error, hang the system".
156 */
157typedef int (init_fnc_t) (void);
158
159/************************************************************************
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500160 * Init Utilities
wdenke65527f2004-02-12 00:47:09 +0000161 ************************************************************************
162 * Some of this code should be moved into the core functions,
163 * but let's get it working (again) first...
164 */
165
166static int init_baudrate (void)
wdenkabf7a7c2003-12-08 01:34:36 +0000167{
TsiChung Liewf94c6c42008-06-24 12:12:16 -0500168 char tmp[64]; /* long enough for environment variables */
wdenke65527f2004-02-12 00:47:09 +0000169 int i = getenv_r ("baudrate", tmp, sizeof (tmp));
170
171 gd->baudrate = (i > 0)
172 ? (int) simple_strtoul (tmp, NULL, 10)
173 : CONFIG_BAUDRATE;
174 return (0);
175}
wdenkabf7a7c2003-12-08 01:34:36 +0000176
wdenke65527f2004-02-12 00:47:09 +0000177/***********************************************************************/
wdenkabf7a7c2003-12-08 01:34:36 +0000178
wdenke65527f2004-02-12 00:47:09 +0000179static int init_func_ram (void)
180{
wdenke65527f2004-02-12 00:47:09 +0000181 int board_type = 0; /* use dummy arg */
182 puts ("DRAM: ");
wdenkabf7a7c2003-12-08 01:34:36 +0000183
wdenke65527f2004-02-12 00:47:09 +0000184 if ((gd->ram_size = initdram (board_type)) > 0) {
185 print_size (gd->ram_size, "\n");
186 return (0);
187 }
188 puts (failed);
189 return (1);
wdenkabf7a7c2003-12-08 01:34:36 +0000190}
stroesecd2128e2004-12-16 17:55:22 +0000191
192/***********************************************************************/
193
194#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
195static int init_func_i2c (void)
196{
197 puts ("I2C: ");
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200198 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
stroesecd2128e2004-12-16 17:55:22 +0000199 puts ("ready\n");
200 return (0);
201}
202#endif
wdenkabf7a7c2003-12-08 01:34:36 +0000203
TsiChung Liew663c9522008-07-23 17:53:36 -0500204#if defined(CONFIG_HARD_SPI)
205static int init_func_spi (void)
206{
207 puts ("SPI: ");
208 spi_init ();
209 puts ("ready\n");
210 return (0);
211}
212#endif
213
wdenke65527f2004-02-12 00:47:09 +0000214/***********************************************************************/
215
216/************************************************************************
217 * Initialization sequence *
218 ************************************************************************
219 */
220
221init_fnc_t *init_sequence[] = {
Stefan Roesea06fd372007-08-15 14:51:27 +0200222 get_clocks,
wdenke65527f2004-02-12 00:47:09 +0000223 env_init,
224 init_baudrate,
225 serial_init,
226 console_init_f,
227 display_options,
228 checkcpu,
229 checkboard,
stroesecd2128e2004-12-16 17:55:22 +0000230#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
231 init_func_i2c,
232#endif
TsiChung Liew663c9522008-07-23 17:53:36 -0500233#if defined(CONFIG_HARD_SPI)
234 init_func_spi,
235#endif
wdenke65527f2004-02-12 00:47:09 +0000236 init_func_ram,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200237#if defined(CONFIG_SYS_DRAM_TEST)
wdenke65527f2004-02-12 00:47:09 +0000238 testdram,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200239#endif /* CONFIG_SYS_DRAM_TEST */
wdenke65527f2004-02-12 00:47:09 +0000240 INIT_FUNC_WATCHDOG_INIT
241 NULL, /* Terminate this list */
242};
243
244
wdenkabf7a7c2003-12-08 01:34:36 +0000245/************************************************************************
246 *
247 * This is the first part of the initialization sequence that is
248 * implemented in C, but still running from ROM.
249 *
250 * The main purpose is to provide a (serial) console interface as
251 * soon as possible (so we can see any error messages), and to
252 * initialize the RAM so that we can relocate the monitor code to
253 * RAM.
254 *
255 * Be aware of the restrictions: global data is read-only, BSS is not
256 * initialized, and stack space is limited to a few kB.
257 *
258 ************************************************************************
259 */
260
wdenke65527f2004-02-12 00:47:09 +0000261void
262board_init_f (ulong bootflag)
wdenkabf7a7c2003-12-08 01:34:36 +0000263{
wdenkabf7a7c2003-12-08 01:34:36 +0000264 bd_t *bd;
wdenke65527f2004-02-12 00:47:09 +0000265 ulong len, addr, addr_sp;
Marian Balakowicz3e8b1dc2006-05-09 11:28:36 +0200266 ulong *paddr;
wdenke65527f2004-02-12 00:47:09 +0000267 gd_t *id;
268 init_fnc_t **init_fnc_ptr;
269#ifdef CONFIG_PRAM
270 int i;
271 ulong reg;
TsiChung Liewf94c6c42008-06-24 12:12:16 -0500272 char tmp[64]; /* long enough for environment variables */
wdenke65527f2004-02-12 00:47:09 +0000273#endif
wdenkabf7a7c2003-12-08 01:34:36 +0000274
wdenke65527f2004-02-12 00:47:09 +0000275 /* Pointer is writable since we allocated a register for it */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200276 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
wdenk3337af42004-07-01 20:28:03 +0000277 /* compiler optimization barrier needed for GCC >= 3.4 */
278 __asm__ __volatile__("": : :"memory");
wdenkabf7a7c2003-12-08 01:34:36 +0000279
wdenke65527f2004-02-12 00:47:09 +0000280 /* Clear initial global data */
281 memset ((void *) gd, 0, sizeof (gd_t));
wdenkabf7a7c2003-12-08 01:34:36 +0000282
wdenke65527f2004-02-12 00:47:09 +0000283 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
284 if ((*init_fnc_ptr)() != 0) {
285 hang ();
286 }
wdenkabf7a7c2003-12-08 01:34:36 +0000287 }
wdenkabf7a7c2003-12-08 01:34:36 +0000288
289 /*
290 * Now that we have DRAM mapped and working, we can
291 * relocate the code and continue running from DRAM.
292 *
293 * Reserve memory at end of RAM for (top down in that order):
wdenke65527f2004-02-12 00:47:09 +0000294 * - protected RAM
295 * - LCD framebuffer
296 * - monitor code
297 * - board info struct
wdenkabf7a7c2003-12-08 01:34:36 +0000298 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200299 len = (ulong)&_end - CONFIG_SYS_MONITOR_BASE;
wdenkabf7a7c2003-12-08 01:34:36 +0000300
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200301 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
wdenkabf7a7c2003-12-08 01:34:36 +0000302
wdenke65527f2004-02-12 00:47:09 +0000303#ifdef CONFIG_LOGBUFFER
304 /* reserve kernel log buffer */
305 addr -= (LOGBUFF_RESERVE);
306 debug ("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr);
307#endif
308
309#ifdef CONFIG_PRAM
310 /*
311 * reserve protected RAM
312 */
313 i = getenv_r ("pram", tmp, sizeof (tmp));
314 reg = (i > 0) ? simple_strtoul (tmp, NULL, 10) : CONFIG_PRAM;
315 addr -= (reg << 10); /* size is in kB */
316 debug ("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
317#endif /* CONFIG_PRAM */
wdenkabf7a7c2003-12-08 01:34:36 +0000318
TsiChungLiew99b037a2008-01-14 17:43:33 -0600319 /* round down to next 4 kB limit */
320 addr &= ~(4096 - 1);
321 debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
322
323#ifdef CONFIG_LCD
324 /* reserve memory for LCD display (always full pages) */
325 addr = lcd_setmem (addr);
326 gd->fb_base = addr;
327#endif /* CONFIG_LCD */
328
wdenke65527f2004-02-12 00:47:09 +0000329 /*
330 * reserve memory for U-Boot code, data & bss
331 * round down to next 4 kB limit
332 */
wdenkabf7a7c2003-12-08 01:34:36 +0000333 addr -= len;
wdenke65527f2004-02-12 00:47:09 +0000334 addr &= ~(4096 - 1);
335
336 debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
wdenkabf7a7c2003-12-08 01:34:36 +0000337
338 /*
wdenke65527f2004-02-12 00:47:09 +0000339 * reserve memory for malloc() arena
wdenkabf7a7c2003-12-08 01:34:36 +0000340 */
wdenke65527f2004-02-12 00:47:09 +0000341 addr_sp = addr - TOTAL_MALLOC_LEN;
342 debug ("Reserving %dk for malloc() at: %08lx\n",
343 TOTAL_MALLOC_LEN >> 10, addr_sp);
wdenkabf7a7c2003-12-08 01:34:36 +0000344
wdenke65527f2004-02-12 00:47:09 +0000345 /*
346 * (permanently) allocate a Board Info struct
347 * and a permanent copy of the "global" data
348 */
349 addr_sp -= sizeof (bd_t);
350 bd = (bd_t *) addr_sp;
351 gd->bd = bd;
Wolfgang Denk509cd072008-07-14 15:06:35 +0200352 debug ("Reserving %zu Bytes for Board Info at: %08lx\n",
wdenke65527f2004-02-12 00:47:09 +0000353 sizeof (bd_t), addr_sp);
354 addr_sp -= sizeof (gd_t);
355 id = (gd_t *) addr_sp;
Wolfgang Denk509cd072008-07-14 15:06:35 +0200356 debug ("Reserving %zu Bytes for Global Data at: %08lx\n",
wdenke65527f2004-02-12 00:47:09 +0000357 sizeof (gd_t), addr_sp);
wdenkabf7a7c2003-12-08 01:34:36 +0000358
Wolfgang Denka1be4762008-05-20 16:00:29 +0200359 /* Reserve memory for boot params. */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200360 addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN;
wdenke65527f2004-02-12 00:47:09 +0000361 bd->bi_boot_params = addr_sp;
362 debug ("Reserving %dk for boot parameters at: %08lx\n",
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200363 CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp);
wdenke65527f2004-02-12 00:47:09 +0000364
365 /*
366 * Finally, we set up a new (bigger) stack.
367 *
368 * Leave some safety gap for SP, force alignment on 16 byte boundary
369 * Clear initial stack frame
370 */
371 addr_sp -= 16;
372 addr_sp &= ~0xF;
Marian Balakowicz3e8b1dc2006-05-09 11:28:36 +0200373
374 paddr = (ulong *)addr_sp;
375 *paddr-- = 0;
376 *paddr-- = 0;
377 addr_sp = (ulong)paddr;
Wolfgang Denkc2c49442006-05-10 17:43:20 +0200378
wdenke65527f2004-02-12 00:47:09 +0000379 debug ("Stack Pointer at: %08lx\n", addr_sp);
380
381 /*
382 * Save local variables to board info struct
383 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200384 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM memory */
wdenke65527f2004-02-12 00:47:09 +0000385 bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200386#ifdef CONFIG_SYS_INIT_RAM_ADDR
387 bd->bi_sramstart = CONFIG_SYS_INIT_RAM_ADDR; /* start of SRAM memory */
388 bd->bi_sramsize = CONFIG_SYS_INIT_RAM_END; /* size of SRAM memory */
TsiChung Liewf6afe722007-06-18 13:50:13 -0500389#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200390 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
wdenke65527f2004-02-12 00:47:09 +0000391
392 bd->bi_bootflags = bootflag; /* boot / reboot flag (for LynxOS) */
wdenkabf7a7c2003-12-08 01:34:36 +0000393
wdenke65527f2004-02-12 00:47:09 +0000394 WATCHDOG_RESET ();
395 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
396 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500397#ifdef CONFIG_PCI
398 bd->bi_pcifreq = gd->pci_clk; /* PCI Freq in Hz */
399#endif
400#ifdef CONFIG_EXTRA_CLOCK
401 bd->bi_inpfreq = gd->inp_clk; /* input Freq in Hz */
402 bd->bi_vcofreq = gd->vco_clk; /* vco Freq in Hz */
403 bd->bi_flbfreq = gd->flb_clk; /* flexbus Freq in Hz */
404#endif
wdenke65527f2004-02-12 00:47:09 +0000405 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
wdenkabf7a7c2003-12-08 01:34:36 +0000406
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200407#ifdef CONFIG_SYS_EXTBDINFO
wdenkabf7a7c2003-12-08 01:34:36 +0000408 strncpy (bd->bi_s_version, "1.2", sizeof (bd->bi_s_version));
wdenke65527f2004-02-12 00:47:09 +0000409 strncpy (bd->bi_r_version, U_BOOT_VERSION, sizeof (bd->bi_r_version));
410#endif
411
412 WATCHDOG_RESET ();
wdenkabf7a7c2003-12-08 01:34:36 +0000413
wdenke65527f2004-02-12 00:47:09 +0000414#ifdef CONFIG_POST
415 post_bootmode_init();
416 post_run (NULL, POST_ROM | post_bootmode_get(0));
wdenkabf7a7c2003-12-08 01:34:36 +0000417#endif
418
wdenke65527f2004-02-12 00:47:09 +0000419 WATCHDOG_RESET();
wdenkabf7a7c2003-12-08 01:34:36 +0000420
wdenke65527f2004-02-12 00:47:09 +0000421 memcpy (id, (void *)gd, sizeof (gd_t));
wdenkabf7a7c2003-12-08 01:34:36 +0000422
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200423 debug ("Start relocate of code from %08x to %08lx\n", CONFIG_SYS_MONITOR_BASE, addr);
wdenke65527f2004-02-12 00:47:09 +0000424 relocate_code (addr_sp, id, addr);
425
426 /* NOTREACHED - jump_to_ram() does not return */
427}
wdenkabf7a7c2003-12-08 01:34:36 +0000428
429/************************************************************************
430 *
431 * This is the next part if the initialization sequence: we are now
432 * running from RAM and have a "normal" C environment, i. e. global
433 * data can be written, BSS has been cleared, the stack size in not
434 * that critical any more, etc.
435 *
436 ************************************************************************
437 */
wdenke65527f2004-02-12 00:47:09 +0000438void board_init_r (gd_t *id, ulong dest_addr)
wdenkabf7a7c2003-12-08 01:34:36 +0000439{
wdenkabf7a7c2003-12-08 01:34:36 +0000440 cmd_tbl_t *cmdtp;
wdenke65527f2004-02-12 00:47:09 +0000441 char *s, *e;
wdenkabf7a7c2003-12-08 01:34:36 +0000442 bd_t *bd;
wdenke65527f2004-02-12 00:47:09 +0000443 int i;
444 extern void malloc_bin_reloc (void);
wdenkabf7a7c2003-12-08 01:34:36 +0000445
Jean-Christophe PLAGNIOL-VILLARD68a87562008-09-10 22:48:00 +0200446#ifndef CONFIG_ENV_IS_NOWHERE
wdenke65527f2004-02-12 00:47:09 +0000447 extern char * env_name_spec;
448#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200449#ifndef CONFIG_SYS_NO_FLASH
wdenke65527f2004-02-12 00:47:09 +0000450 ulong flash_size;
451#endif
452 gd = id; /* initialize RAM version of global data */
wdenkabf7a7c2003-12-08 01:34:36 +0000453 bd = gd->bd;
wdenke65527f2004-02-12 00:47:09 +0000454
455 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
456
TsiChung Liewf6afe722007-06-18 13:50:13 -0500457#ifdef CONFIG_SERIAL_MULTI
458 serial_initialize();
459#endif
460
wdenke65527f2004-02-12 00:47:09 +0000461 debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
462
463 WATCHDOG_RESET ();
464
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200465 gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
wdenke65527f2004-02-12 00:47:09 +0000466
467 monitor_flash_len = (ulong)&__init_end - dest_addr;
wdenkabf7a7c2003-12-08 01:34:36 +0000468
469 /*
wdenke65527f2004-02-12 00:47:09 +0000470 * We have to relocate the command table manually
471 */
472 for (cmdtp = &__u_boot_cmd_start; cmdtp != &__u_boot_cmd_end; cmdtp++) {
473 ulong addr;
474 addr = (ulong) (cmdtp->cmd) + gd->reloc_off;
475#if 0
476 printf ("Command \"%s\": 0x%08lx => 0x%08lx\n",
477 cmdtp->name, (ulong) (cmdtp->cmd), addr);
478#endif
479 cmdtp->cmd =
480 (int (*)(struct cmd_tbl_s *, int, int, char *[]))addr;
481
482 addr = (ulong)(cmdtp->name) + gd->reloc_off;
483 cmdtp->name = (char *)addr;
484
485 if (cmdtp->usage) {
486 addr = (ulong)(cmdtp->usage) + gd->reloc_off;
487 cmdtp->usage = (char *)addr;
488 }
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200489#ifdef CONFIG_SYS_LONGHELP
wdenke65527f2004-02-12 00:47:09 +0000490 if (cmdtp->help) {
491 addr = (ulong)(cmdtp->help) + gd->reloc_off;
492 cmdtp->help = (char *)addr;
493 }
494#endif
495 }
496 /* there are some other pointer constants we must deal with */
Jean-Christophe PLAGNIOL-VILLARD68a87562008-09-10 22:48:00 +0200497#ifndef CONFIG_ENV_IS_NOWHERE
wdenke65527f2004-02-12 00:47:09 +0000498 env_name_spec += gd->reloc_off;
499#endif
500
501 WATCHDOG_RESET ();
502
503#ifdef CONFIG_LOGBUFFER
504 logbuff_init_ptrs ();
505#endif
506#ifdef CONFIG_POST
507 post_output_backlog ();
508 post_reloc ();
509#endif
510 WATCHDOG_RESET();
511
512#if 0
513 /* instruction cache enabled in cpu_init_f() for faster relocation */
514 icache_enable (); /* it's time to enable the instruction cache */
515#endif
516
517 /*
wdenkabf7a7c2003-12-08 01:34:36 +0000518 * Setup trap handlers
519 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200520 trap_init (CONFIG_SYS_SDRAM_BASE);
wdenkabf7a7c2003-12-08 01:34:36 +0000521
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200522#if !defined(CONFIG_SYS_NO_FLASH)
wdenkabf7a7c2003-12-08 01:34:36 +0000523 puts ("FLASH: ");
524
525 if ((flash_size = flash_init ()) > 0) {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200526# ifdef CONFIG_SYS_FLASH_CHECKSUM
wdenke65527f2004-02-12 00:47:09 +0000527 print_size (flash_size, "");
wdenkabf7a7c2003-12-08 01:34:36 +0000528 /*
529 * Compute and print flash CRC if flashchecksum is set to 'y'
530 *
wdenke65527f2004-02-12 00:47:09 +0000531 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
wdenkabf7a7c2003-12-08 01:34:36 +0000532 */
533 s = getenv ("flashchecksum");
534 if (s && (*s == 'y')) {
535 printf (" CRC: %08lX",
wdenke65527f2004-02-12 00:47:09 +0000536 crc32 (0,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200537 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
wdenke65527f2004-02-12 00:47:09 +0000538 flash_size)
539 );
wdenkabf7a7c2003-12-08 01:34:36 +0000540 }
541 putc ('\n');
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200542# else /* !CONFIG_SYS_FLASH_CHECKSUM */
wdenke65527f2004-02-12 00:47:09 +0000543 print_size (flash_size, "\n");
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200544# endif /* CONFIG_SYS_FLASH_CHECKSUM */
wdenkabf7a7c2003-12-08 01:34:36 +0000545 } else {
546 puts (failed);
547 hang ();
548 }
549
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200550 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE; /* update start of FLASH memory */
wdenke65527f2004-02-12 00:47:09 +0000551 bd->bi_flashsize = flash_size; /* size of FLASH memory (final value) */
552 bd->bi_flashoffset = 0;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200553#else /* CONFIG_SYS_NO_FLASH */
wdenke65527f2004-02-12 00:47:09 +0000554 bd->bi_flashsize = 0;
555 bd->bi_flashstart = 0;
556 bd->bi_flashoffset = 0;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200557#endif /* !CONFIG_SYS_NO_FLASH */
wdenkabf7a7c2003-12-08 01:34:36 +0000558
559 WATCHDOG_RESET ();
560
561 /* initialize higher level parts of CPU like time base and timers */
562 cpu_init_r ();
563
564 WATCHDOG_RESET ();
565
566 /* initialize malloc() area */
wdenke65527f2004-02-12 00:47:09 +0000567 mem_malloc_init ();
568 malloc_bin_reloc ();
wdenkabf7a7c2003-12-08 01:34:36 +0000569
570#ifdef CONFIG_SPI
Jean-Christophe PLAGNIOL-VILLARDe46af642008-09-05 09:19:30 +0200571# if !defined(CONFIG_ENV_IS_IN_EEPROM)
wdenkabf7a7c2003-12-08 01:34:36 +0000572 spi_init_f ();
573# endif
574 spi_init_r ();
575#endif
576
577 /* relocate environment function pointers etc. */
578 env_relocate ();
579
wdenke65527f2004-02-12 00:47:09 +0000580 /*
581 * Fill in missing fields of bd_info.
582 * We do this here, where we have "normal" access to the
583 * environment; we used to do this still running from ROM,
584 * where had to use getenv_r(), which can be pretty slow when
585 * the environment is in EEPROM.
586 */
wdenkabf7a7c2003-12-08 01:34:36 +0000587 bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
588
589 WATCHDOG_RESET ();
590
TsiChung Liewf6afe722007-06-18 13:50:13 -0500591#if defined(CONFIG_PCI)
592 /*
593 * Do pci configuration
594 */
595 pci_init ();
596#endif
wdenkabf7a7c2003-12-08 01:34:36 +0000597
wdenke65527f2004-02-12 00:47:09 +0000598 /** leave this here (after malloc(), environment and PCI are working) **/
599 /* Initialize devices */
600 devices_init ();
wdenkabf7a7c2003-12-08 01:34:36 +0000601
wdenke65527f2004-02-12 00:47:09 +0000602 /* Initialize the jump table for applications */
603 jumptable_init ();
wdenkabf7a7c2003-12-08 01:34:36 +0000604
wdenke65527f2004-02-12 00:47:09 +0000605 /* Initialize the console (after the relocation and devices init) */
606 console_init_r ();
wdenkabf7a7c2003-12-08 01:34:36 +0000607
stroesecd2128e2004-12-16 17:55:22 +0000608#if defined(CONFIG_MISC_INIT_R)
609 /* miscellaneous platform dependent initialisations */
610 misc_init_r ();
611#endif
612
Jon Loeliger6b233052007-07-09 18:02:11 -0500613#if defined(CONFIG_CMD_KGDB)
wdenkabf7a7c2003-12-08 01:34:36 +0000614 WATCHDOG_RESET ();
615 puts ("KGDB: ");
616 kgdb_init ();
617#endif
618
wdenke65527f2004-02-12 00:47:09 +0000619 debug ("U-Boot relocated to %08lx\n", dest_addr);
620
wdenkabf7a7c2003-12-08 01:34:36 +0000621 /*
622 * Enable Interrupts
623 */
624 interrupt_init ();
wdenke65527f2004-02-12 00:47:09 +0000625
626 /* Must happen after interrupts are initialized since
627 * an irq handler gets installed
628 */
629 timer_init();
630
wdenkc35ba4e2004-03-14 22:25:36 +0000631#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
wdenke65527f2004-02-12 00:47:09 +0000632 serial_buffered_init();
633#endif
634
635#ifdef CONFIG_STATUS_LED
636 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
637#endif
638
wdenkabf7a7c2003-12-08 01:34:36 +0000639 udelay (20);
wdenke65527f2004-02-12 00:47:09 +0000640
wdenkabf7a7c2003-12-08 01:34:36 +0000641 set_timer (0);
642
643 /* Insert function pointers now that we have relocated the code */
644
645 /* Initialize from environment */
646 if ((s = getenv ("loadaddr")) != NULL) {
647 load_addr = simple_strtoul (s, NULL, 16);
648 }
Jon Loeliger6b233052007-07-09 18:02:11 -0500649#if defined(CONFIG_CMD_NET)
wdenkabf7a7c2003-12-08 01:34:36 +0000650 if ((s = getenv ("bootfile")) != NULL) {
651 copy_filename (BootFile, s, sizeof (BootFile));
652 }
Jon Loeliger1670a5b2007-07-10 11:19:50 -0500653#endif
wdenkabf7a7c2003-12-08 01:34:36 +0000654
wdenke65527f2004-02-12 00:47:09 +0000655 WATCHDOG_RESET ();
656
Jon Loeliger6b233052007-07-09 18:02:11 -0500657#if defined(CONFIG_CMD_DOC)
wdenkabf7a7c2003-12-08 01:34:36 +0000658 WATCHDOG_RESET ();
wdenke65527f2004-02-12 00:47:09 +0000659 puts ("DOC: ");
660 doc_init ();
661#endif
wdenkabf7a7c2003-12-08 01:34:36 +0000662
Jon Loeliger6b233052007-07-09 18:02:11 -0500663#if defined(CONFIG_CMD_NAND)
wdenkabf7a7c2003-12-08 01:34:36 +0000664 WATCHDOG_RESET ();
Markus Klotzbuecherb6437322006-04-25 17:00:33 +0200665 puts ("NAND: ");
wdenke65527f2004-02-12 00:47:09 +0000666 nand_init(); /* go init the NAND */
667#endif
668
Stefan Roesea06fd372007-08-15 14:51:27 +0200669#if defined(CONFIG_CMD_NET)
wdenke65527f2004-02-12 00:47:09 +0000670 WATCHDOG_RESET();
TsiChung Liewf6afe722007-06-18 13:50:13 -0500671#if defined(FEC_ENET)
wdenke65527f2004-02-12 00:47:09 +0000672 eth_init(bd);
673#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500674#if defined(CONFIG_NET_MULTI)
675 puts ("Net: ");
TsiChungLiewaedd3d72007-08-15 15:39:17 -0500676 eth_initialize (bd);
TsiChung Liewf6afe722007-06-18 13:50:13 -0500677#endif
678#endif
wdenke65527f2004-02-12 00:47:09 +0000679
680#ifdef CONFIG_POST
681 post_run (NULL, POST_RAM | post_bootmode_get(0));
wdenkabf7a7c2003-12-08 01:34:36 +0000682#endif
683
Stefan Roesea06fd372007-08-15 14:51:27 +0200684#if defined(CONFIG_CMD_PCMCIA) \
685 && !defined(CONFIG_CMD_IDE)
TsiChung Liewf6afe722007-06-18 13:50:13 -0500686 WATCHDOG_RESET ();
687 puts ("PCMCIA:");
688 pcmcia_init ();
689#endif
690
Stefan Roesea06fd372007-08-15 14:51:27 +0200691#if defined(CONFIG_CMD_IDE)
TsiChung Liewf6afe722007-06-18 13:50:13 -0500692 WATCHDOG_RESET ();
693 puts ("IDE: ");
694 ide_init ();
Stefan Roesea06fd372007-08-15 14:51:27 +0200695#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500696
wdenkabf7a7c2003-12-08 01:34:36 +0000697#ifdef CONFIG_LAST_STAGE_INIT
698 WATCHDOG_RESET ();
699 /*
700 * Some parts can be only initialized if all others (like
701 * Interrupts) are up and running (i.e. the PC-style ISA
702 * keyboard).
703 */
704 last_stage_init ();
705#endif
706
Jon Loeliger6b233052007-07-09 18:02:11 -0500707#if defined(CONFIG_CMD_BEDBUG)
wdenkabf7a7c2003-12-08 01:34:36 +0000708 WATCHDOG_RESET ();
709 bedbug_init ();
710#endif
711
wdenke65527f2004-02-12 00:47:09 +0000712#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
wdenkabf7a7c2003-12-08 01:34:36 +0000713 /*
714 * Export available size of memory for Linux,
715 * taking into account the protected RAM at top of memory
716 */
717 {
718 ulong pram;
TsiChung Liewf94c6c42008-06-24 12:12:16 -0500719 char memsz[32];
wdenke65527f2004-02-12 00:47:09 +0000720#ifdef CONFIG_PRAM
721 char *s;
wdenkabf7a7c2003-12-08 01:34:36 +0000722
723 if ((s = getenv ("pram")) != NULL) {
724 pram = simple_strtoul (s, NULL, 10);
725 } else {
726 pram = CONFIG_PRAM;
727 }
wdenke65527f2004-02-12 00:47:09 +0000728#else
729 pram=0;
730#endif
731#ifdef CONFIG_LOGBUFFER
732 /* Also take the logbuffer into account (pram is in kB) */
733 pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024;
734#endif
wdenkabf7a7c2003-12-08 01:34:36 +0000735 sprintf (memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
736 setenv ("mem", memsz);
737 }
738#endif
739
wdenke65527f2004-02-12 00:47:09 +0000740#ifdef CONFIG_MODEM_SUPPORT
741 {
742 extern int do_mdm_init;
743 do_mdm_init = gd->do_mdm_init;
744 }
745#endif
746
747#ifdef CONFIG_WATCHDOG
748 /* disable watchdog if environment is set */
749 if ((s = getenv ("watchdog")) != NULL) {
750 if (strncmp (s, "off", 3) == 0) {
751 WATCHDOG_DISABLE ();
752 }
753 }
754#endif /* CONFIG_WATCHDOG*/
755
756
wdenkabf7a7c2003-12-08 01:34:36 +0000757 /* Initialization complete - start the monitor */
758
759 /* main_loop() can return to retry autoboot, if so just run it again. */
760 for (;;) {
761 WATCHDOG_RESET ();
762 main_loop ();
763 }
764
765 /* NOTREACHED - no way out of command loop except booting */
766}
767
wdenke65527f2004-02-12 00:47:09 +0000768
769void hang(void)
wdenkabf7a7c2003-12-08 01:34:36 +0000770{
771 puts ("### ERROR ### Please RESET the board ###\n");
772 for (;;);
773}