blob: b9ccb6405995baf7947066cb29e03c91c8b11229 [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
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020066#ifdef CONFIG_BITBANGMII
67#include <miiphy.h>
68#endif
69
TsiChung Liewab6ba842008-08-13 12:07:03 +000070#include <nand.h>
71
Wolfgang Denkd87080b2006-03-31 18:32:53 +020072DECLARE_GLOBAL_DATA_PTR;
73
wdenk4e5ca3e2003-12-08 01:34:36 +000074static char *failed = "*** failed ***\n";
75
wdenkbf9e3b32004-02-12 00:47:09 +000076#include <environment.h>
77
wdenkbf9e3b32004-02-12 00:47:09 +000078extern ulong __init_end;
Po-Yu Chuang44c6e652011-03-01 22:59:59 +000079extern ulong __bss_end__;
wdenkbf9e3b32004-02-12 00:47:09 +000080
wdenkbf9e3b32004-02-12 00:47:09 +000081#if defined(CONFIG_WATCHDOG)
82# define INIT_FUNC_WATCHDOG_INIT watchdog_init,
83# define WATCHDOG_DISABLE watchdog_disable
84
85extern int watchdog_init(void);
86extern int watchdog_disable(void);
87#else
88# define INIT_FUNC_WATCHDOG_INIT /* undef */
89# define WATCHDOG_DISABLE /* undef */
90#endif /* CONFIG_WATCHDOG */
91
92ulong monitor_flash_len;
93
wdenk4e5ca3e2003-12-08 01:34:36 +000094/************************************************************************
95 * Utilities *
96 ************************************************************************
97 */
98
99/*
wdenkbf9e3b32004-02-12 00:47:09 +0000100 * All attempts to come up with a "common" initialization sequence
101 * that works for all boards and architectures failed: some of the
102 * requirements are just _too_ different. To get rid of the resulting
103 * mess of board dependend #ifdef'ed code we now make the whole
104 * initialization sequence configurable to the user.
105 *
106 * The requirements for any new initalization function is simple: it
107 * receives a pointer to the "global data" structure as it's only
108 * argument, and returns an integer return code, where 0 means
109 * "continue" and != 0 means "fatal error, hang the system".
110 */
111typedef int (init_fnc_t) (void);
112
113/************************************************************************
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500114 * Init Utilities
wdenkbf9e3b32004-02-12 00:47:09 +0000115 ************************************************************************
116 * Some of this code should be moved into the core functions,
117 * but let's get it working (again) first...
118 */
119
120static int init_baudrate (void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000121{
TsiChung Liew6e370912008-06-24 12:12:16 -0500122 char tmp[64]; /* long enough for environment variables */
Wolfgang Denkcdb74972010-07-24 21:55:43 +0200123 int i = getenv_f("baudrate", tmp, sizeof (tmp));
wdenk4e5ca3e2003-12-08 01:34:36 +0000124
wdenkbf9e3b32004-02-12 00:47:09 +0000125 gd->baudrate = (i > 0)
126 ? (int) simple_strtoul (tmp, NULL, 10)
127 : CONFIG_BAUDRATE;
128 return (0);
wdenk4e5ca3e2003-12-08 01:34:36 +0000129}
130
wdenkbf9e3b32004-02-12 00:47:09 +0000131/***********************************************************************/
132
133static int init_func_ram (void)
134{
wdenkbf9e3b32004-02-12 00:47:09 +0000135 int board_type = 0; /* use dummy arg */
136 puts ("DRAM: ");
137
138 if ((gd->ram_size = initdram (board_type)) > 0) {
139 print_size (gd->ram_size, "\n");
140 return (0);
141 }
142 puts (failed);
143 return (1);
144}
145
146/***********************************************************************/
147
stroesee2c22d72004-12-16 17:55:22 +0000148#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
149static int init_func_i2c (void)
150{
151 puts ("I2C: ");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200152 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
stroesee2c22d72004-12-16 17:55:22 +0000153 puts ("ready\n");
154 return (0);
155}
156#endif
157
TsiChung Liewa7323bb2008-07-23 17:53:36 -0500158#if defined(CONFIG_HARD_SPI)
159static int init_func_spi (void)
160{
161 puts ("SPI: ");
162 spi_init ();
163 puts ("ready\n");
164 return (0);
165}
166#endif
167
stroesee2c22d72004-12-16 17:55:22 +0000168/***********************************************************************/
169
wdenkbf9e3b32004-02-12 00:47:09 +0000170/************************************************************************
171 * Initialization sequence *
172 ************************************************************************
173 */
174
175init_fnc_t *init_sequence[] = {
Stefan Roesed61ea142007-08-15 14:51:27 +0200176 get_clocks,
wdenkbf9e3b32004-02-12 00:47:09 +0000177 env_init,
178 init_baudrate,
179 serial_init,
180 console_init_f,
181 display_options,
182 checkcpu,
183 checkboard,
stroesee2c22d72004-12-16 17:55:22 +0000184#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
185 init_func_i2c,
186#endif
TsiChung Liewa7323bb2008-07-23 17:53:36 -0500187#if defined(CONFIG_HARD_SPI)
188 init_func_spi,
189#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000190 init_func_ram,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200191#if defined(CONFIG_SYS_DRAM_TEST)
wdenkbf9e3b32004-02-12 00:47:09 +0000192 testdram,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200193#endif /* CONFIG_SYS_DRAM_TEST */
wdenkbf9e3b32004-02-12 00:47:09 +0000194 INIT_FUNC_WATCHDOG_INIT
195 NULL, /* Terminate this list */
196};
197
198
wdenk4e5ca3e2003-12-08 01:34:36 +0000199/************************************************************************
200 *
201 * This is the first part of the initialization sequence that is
202 * implemented in C, but still running from ROM.
203 *
204 * The main purpose is to provide a (serial) console interface as
205 * soon as possible (so we can see any error messages), and to
206 * initialize the RAM so that we can relocate the monitor code to
207 * RAM.
208 *
209 * Be aware of the restrictions: global data is read-only, BSS is not
210 * initialized, and stack space is limited to a few kB.
211 *
212 ************************************************************************
213 */
214
wdenkbf9e3b32004-02-12 00:47:09 +0000215void
216board_init_f (ulong bootflag)
wdenk4e5ca3e2003-12-08 01:34:36 +0000217{
wdenk4e5ca3e2003-12-08 01:34:36 +0000218 bd_t *bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000219 ulong len, addr, addr_sp;
Marian Balakowicz483a0cf2006-05-09 11:28:36 +0200220 ulong *paddr;
wdenkbf9e3b32004-02-12 00:47:09 +0000221 gd_t *id;
222 init_fnc_t **init_fnc_ptr;
223#ifdef CONFIG_PRAM
224 int i;
225 ulong reg;
TsiChung Liew6e370912008-06-24 12:12:16 -0500226 char tmp[64]; /* long enough for environment variables */
wdenkbf9e3b32004-02-12 00:47:09 +0000227#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000228
wdenkbf9e3b32004-02-12 00:47:09 +0000229 /* Pointer is writable since we allocated a register for it */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200230 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
wdenk93f6a672004-07-01 20:28:03 +0000231 /* compiler optimization barrier needed for GCC >= 3.4 */
232 __asm__ __volatile__("": : :"memory");
wdenk4e5ca3e2003-12-08 01:34:36 +0000233
wdenkbf9e3b32004-02-12 00:47:09 +0000234 /* Clear initial global data */
235 memset ((void *) gd, 0, sizeof (gd_t));
wdenk4e5ca3e2003-12-08 01:34:36 +0000236
wdenkbf9e3b32004-02-12 00:47:09 +0000237 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
238 if ((*init_fnc_ptr)() != 0) {
239 hang ();
240 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000241 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000242
243 /*
244 * Now that we have DRAM mapped and working, we can
245 * relocate the code and continue running from DRAM.
246 *
247 * Reserve memory at end of RAM for (top down in that order):
wdenkbf9e3b32004-02-12 00:47:09 +0000248 * - protected RAM
249 * - LCD framebuffer
250 * - monitor code
251 * - board info struct
wdenk4e5ca3e2003-12-08 01:34:36 +0000252 */
Po-Yu Chuang44c6e652011-03-01 22:59:59 +0000253 len = (ulong)&__bss_end__ - CONFIG_SYS_MONITOR_BASE;
wdenk4e5ca3e2003-12-08 01:34:36 +0000254
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200255 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
wdenk4e5ca3e2003-12-08 01:34:36 +0000256
wdenkbf9e3b32004-02-12 00:47:09 +0000257#ifdef CONFIG_LOGBUFFER
258 /* reserve kernel log buffer */
259 addr -= (LOGBUFF_RESERVE);
260 debug ("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr);
261#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000262
wdenkbf9e3b32004-02-12 00:47:09 +0000263#ifdef CONFIG_PRAM
264 /*
265 * reserve protected RAM
266 */
Wolfgang Denkcdb74972010-07-24 21:55:43 +0200267 i = getenv_f("pram", tmp, sizeof (tmp));
wdenkbf9e3b32004-02-12 00:47:09 +0000268 reg = (i > 0) ? simple_strtoul (tmp, NULL, 10) : CONFIG_PRAM;
269 addr -= (reg << 10); /* size is in kB */
270 debug ("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
271#endif /* CONFIG_PRAM */
272
TsiChungLiew1552af72008-01-14 17:43:33 -0600273 /* round down to next 4 kB limit */
274 addr &= ~(4096 - 1);
275 debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
276
277#ifdef CONFIG_LCD
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000278#ifdef CONFIG_FB_ADDR
279 gd->fb_base = CONFIG_FB_ADDR;
280#else
TsiChungLiew1552af72008-01-14 17:43:33 -0600281 /* reserve memory for LCD display (always full pages) */
282 addr = lcd_setmem (addr);
283 gd->fb_base = addr;
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000284#endif /* CONFIG_FB_ADDR */
TsiChungLiew1552af72008-01-14 17:43:33 -0600285#endif /* CONFIG_LCD */
286
wdenkbf9e3b32004-02-12 00:47:09 +0000287 /*
288 * reserve memory for U-Boot code, data & bss
289 * round down to next 4 kB limit
290 */
wdenk4e5ca3e2003-12-08 01:34:36 +0000291 addr -= len;
wdenkbf9e3b32004-02-12 00:47:09 +0000292 addr &= ~(4096 - 1);
293
294 debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
295
296 /*
297 * reserve memory for malloc() arena
298 */
299 addr_sp = addr - TOTAL_MALLOC_LEN;
300 debug ("Reserving %dk for malloc() at: %08lx\n",
301 TOTAL_MALLOC_LEN >> 10, addr_sp);
302
303 /*
304 * (permanently) allocate a Board Info struct
305 * and a permanent copy of the "global" data
306 */
307 addr_sp -= sizeof (bd_t);
308 bd = (bd_t *) addr_sp;
309 gd->bd = bd;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200310 debug ("Reserving %zu Bytes for Board Info at: %08lx\n",
wdenkbf9e3b32004-02-12 00:47:09 +0000311 sizeof (bd_t), addr_sp);
312 addr_sp -= sizeof (gd_t);
313 id = (gd_t *) addr_sp;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200314 debug ("Reserving %zu Bytes for Global Data at: %08lx\n",
wdenkbf9e3b32004-02-12 00:47:09 +0000315 sizeof (gd_t), addr_sp);
316
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200317 /* Reserve memory for boot params. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200318 addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN;
wdenkbf9e3b32004-02-12 00:47:09 +0000319 bd->bi_boot_params = addr_sp;
320 debug ("Reserving %dk for boot parameters at: %08lx\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200321 CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp);
wdenkbf9e3b32004-02-12 00:47:09 +0000322
323 /*
324 * Finally, we set up a new (bigger) stack.
325 *
326 * Leave some safety gap for SP, force alignment on 16 byte boundary
327 * Clear initial stack frame
328 */
329 addr_sp -= 16;
330 addr_sp &= ~0xF;
Marian Balakowicz483a0cf2006-05-09 11:28:36 +0200331
332 paddr = (ulong *)addr_sp;
333 *paddr-- = 0;
334 *paddr-- = 0;
335 addr_sp = (ulong)paddr;
Wolfgang Denk977b50f2006-05-10 17:43:20 +0200336
wdenkbf9e3b32004-02-12 00:47:09 +0000337 debug ("Stack Pointer at: %08lx\n", addr_sp);
wdenk4e5ca3e2003-12-08 01:34:36 +0000338
339 /*
340 * Save local variables to board info struct
341 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200342 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM memory */
wdenkbf9e3b32004-02-12 00:47:09 +0000343 bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200344#ifdef CONFIG_SYS_INIT_RAM_ADDR
345 bd->bi_sramstart = CONFIG_SYS_INIT_RAM_ADDR; /* start of SRAM memory */
Wolfgang Denk553f0982010-10-26 13:32:32 +0200346 bd->bi_sramsize = CONFIG_SYS_INIT_RAM_SIZE; /* size of SRAM memory */
TsiChung Liew8e585f02007-06-18 13:50:13 -0500347#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200348 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
wdenk4e5ca3e2003-12-08 01:34:36 +0000349
wdenkbf9e3b32004-02-12 00:47:09 +0000350 bd->bi_bootflags = bootflag; /* boot / reboot flag (for LynxOS) */
wdenk4e5ca3e2003-12-08 01:34:36 +0000351
wdenkbf9e3b32004-02-12 00:47:09 +0000352 WATCHDOG_RESET ();
353 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
354 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500355#ifdef CONFIG_PCI
356 bd->bi_pcifreq = gd->pci_clk; /* PCI Freq in Hz */
357#endif
358#ifdef CONFIG_EXTRA_CLOCK
359 bd->bi_inpfreq = gd->inp_clk; /* input Freq in Hz */
360 bd->bi_vcofreq = gd->vco_clk; /* vco Freq in Hz */
361 bd->bi_flbfreq = gd->flb_clk; /* flexbus Freq in Hz */
362#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000363 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
wdenk4e5ca3e2003-12-08 01:34:36 +0000364
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200365#ifdef CONFIG_SYS_EXTBDINFO
wdenk4e5ca3e2003-12-08 01:34:36 +0000366 strncpy (bd->bi_s_version, "1.2", sizeof (bd->bi_s_version));
wdenkbf9e3b32004-02-12 00:47:09 +0000367 strncpy (bd->bi_r_version, U_BOOT_VERSION, sizeof (bd->bi_r_version));
wdenk4e5ca3e2003-12-08 01:34:36 +0000368#endif
369
wdenkbf9e3b32004-02-12 00:47:09 +0000370 WATCHDOG_RESET ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000371
wdenkbf9e3b32004-02-12 00:47:09 +0000372#ifdef CONFIG_POST
373 post_bootmode_init();
374 post_run (NULL, POST_ROM | post_bootmode_get(0));
375#endif
376
377 WATCHDOG_RESET();
378
379 memcpy (id, (void *)gd, sizeof (gd_t));
380
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200381 debug ("Start relocate of code from %08x to %08lx\n", CONFIG_SYS_MONITOR_BASE, addr);
wdenkbf9e3b32004-02-12 00:47:09 +0000382 relocate_code (addr_sp, id, addr);
383
384 /* NOTREACHED - jump_to_ram() does not return */
wdenk4e5ca3e2003-12-08 01:34:36 +0000385}
386
wdenk4e5ca3e2003-12-08 01:34:36 +0000387/************************************************************************
388 *
389 * This is the next part if the initialization sequence: we are now
390 * running from RAM and have a "normal" C environment, i. e. global
391 * data can be written, BSS has been cleared, the stack size in not
392 * that critical any more, etc.
393 *
394 ************************************************************************
395 */
wdenkbf9e3b32004-02-12 00:47:09 +0000396void board_init_r (gd_t *id, ulong dest_addr)
wdenk4e5ca3e2003-12-08 01:34:36 +0000397{
Richard Retanubundc269652009-03-23 13:35:48 -0400398 char *s;
wdenk4e5ca3e2003-12-08 01:34:36 +0000399 bd_t *bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000400 extern void malloc_bin_reloc (void);
wdenk4e5ca3e2003-12-08 01:34:36 +0000401
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200402#ifndef CONFIG_ENV_IS_NOWHERE
wdenkbf9e3b32004-02-12 00:47:09 +0000403 extern char * env_name_spec;
404#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200405#ifndef CONFIG_SYS_NO_FLASH
wdenkbf9e3b32004-02-12 00:47:09 +0000406 ulong flash_size;
407#endif
408 gd = id; /* initialize RAM version of global data */
wdenk4e5ca3e2003-12-08 01:34:36 +0000409 bd = gd->bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000410
411 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
412
TsiChung Liew8e585f02007-06-18 13:50:13 -0500413#ifdef CONFIG_SERIAL_MULTI
414 serial_initialize();
415#endif
416
wdenkbf9e3b32004-02-12 00:47:09 +0000417 debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
418
419 WATCHDOG_RESET ();
420
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200421 gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
wdenkbf9e3b32004-02-12 00:47:09 +0000422
423 monitor_flash_len = (ulong)&__init_end - dest_addr;
424
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200425#if defined(CONFIG_NEEDS_MANUAL_RELOC)
wdenkbf9e3b32004-02-12 00:47:09 +0000426 /*
427 * We have to relocate the command table manually
428 */
Heiko Schocher620f1f62010-09-17 13:10:33 +0200429 fixup_cmdtable(&__u_boot_cmd_start,
430 (ulong)(&__u_boot_cmd_end - &__u_boot_cmd_start));
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200431#endif /* defined(CONFIG_NEEDS_MANUAL_RELOC) */
wdenkbf9e3b32004-02-12 00:47:09 +0000432
wdenkbf9e3b32004-02-12 00:47:09 +0000433 /* there are some other pointer constants we must deal with */
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200434#ifndef CONFIG_ENV_IS_NOWHERE
wdenkbf9e3b32004-02-12 00:47:09 +0000435 env_name_spec += gd->reloc_off;
436#endif
437
438 WATCHDOG_RESET ();
439
440#ifdef CONFIG_LOGBUFFER
441 logbuff_init_ptrs ();
442#endif
443#ifdef CONFIG_POST
444 post_output_backlog ();
445 post_reloc ();
446#endif
447 WATCHDOG_RESET();
448
449#if 0
450 /* instruction cache enabled in cpu_init_f() for faster relocation */
451 icache_enable (); /* it's time to enable the instruction cache */
452#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000453
454 /*
455 * Setup trap handlers
456 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200457 trap_init (CONFIG_SYS_SDRAM_BASE);
wdenk4e5ca3e2003-12-08 01:34:36 +0000458
Peter Tyserd4e8ada2009-08-21 23:05:21 -0500459 /* The Malloc area is immediately below the monitor copy in DRAM */
Peter Tysera483a162009-08-21 23:05:20 -0500460 mem_malloc_init (CONFIG_SYS_MONITOR_BASE + gd->reloc_off -
461 TOTAL_MALLOC_LEN, TOTAL_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200462 malloc_bin_reloc ();
463
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200464#if !defined(CONFIG_SYS_NO_FLASH)
Peter Tysereddf52b2010-12-28 18:12:05 -0600465 puts ("Flash: ");
wdenk4e5ca3e2003-12-08 01:34:36 +0000466
467 if ((flash_size = flash_init ()) > 0) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200468# ifdef CONFIG_SYS_FLASH_CHECKSUM
wdenkbf9e3b32004-02-12 00:47:09 +0000469 print_size (flash_size, "");
wdenk4e5ca3e2003-12-08 01:34:36 +0000470 /*
471 * Compute and print flash CRC if flashchecksum is set to 'y'
472 *
wdenkbf9e3b32004-02-12 00:47:09 +0000473 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
wdenk4e5ca3e2003-12-08 01:34:36 +0000474 */
475 s = getenv ("flashchecksum");
476 if (s && (*s == 'y')) {
TsiChung Liew11d88b22009-06-12 13:03:34 +0000477 printf (" CRC: %08X",
wdenkbf9e3b32004-02-12 00:47:09 +0000478 crc32 (0,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200479 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
wdenkbf9e3b32004-02-12 00:47:09 +0000480 flash_size)
481 );
wdenk4e5ca3e2003-12-08 01:34:36 +0000482 }
483 putc ('\n');
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200484# else /* !CONFIG_SYS_FLASH_CHECKSUM */
wdenkbf9e3b32004-02-12 00:47:09 +0000485 print_size (flash_size, "\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200486# endif /* CONFIG_SYS_FLASH_CHECKSUM */
wdenk4e5ca3e2003-12-08 01:34:36 +0000487 } else {
488 puts (failed);
489 hang ();
490 }
491
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200492 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE; /* update start of FLASH memory */
wdenkbf9e3b32004-02-12 00:47:09 +0000493 bd->bi_flashsize = flash_size; /* size of FLASH memory (final value) */
494 bd->bi_flashoffset = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200495#else /* CONFIG_SYS_NO_FLASH */
wdenkbf9e3b32004-02-12 00:47:09 +0000496 bd->bi_flashsize = 0;
497 bd->bi_flashstart = 0;
498 bd->bi_flashoffset = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200499#endif /* !CONFIG_SYS_NO_FLASH */
wdenk4e5ca3e2003-12-08 01:34:36 +0000500
501 WATCHDOG_RESET ();
502
503 /* initialize higher level parts of CPU like time base and timers */
504 cpu_init_r ();
505
506 WATCHDOG_RESET ();
507
wdenk4e5ca3e2003-12-08 01:34:36 +0000508#ifdef CONFIG_SPI
Jean-Christophe PLAGNIOL-VILLARDbb1f8b42008-09-05 09:19:30 +0200509# if !defined(CONFIG_ENV_IS_IN_EEPROM)
wdenk4e5ca3e2003-12-08 01:34:36 +0000510 spi_init_f ();
511# endif
512 spi_init_r ();
513#endif
514
515 /* relocate environment function pointers etc. */
516 env_relocate ();
517
wdenkbf9e3b32004-02-12 00:47:09 +0000518 /*
519 * Fill in missing fields of bd_info.
520 * We do this here, where we have "normal" access to the
521 * environment; we used to do this still running from ROM,
Wolfgang Denkcdb74972010-07-24 21:55:43 +0200522 * where had to use getenv_f(), which can be pretty slow when
wdenkbf9e3b32004-02-12 00:47:09 +0000523 * the environment is in EEPROM.
524 */
wdenk4e5ca3e2003-12-08 01:34:36 +0000525 bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
526
527 WATCHDOG_RESET ();
528
TsiChung Liew8e585f02007-06-18 13:50:13 -0500529#if defined(CONFIG_PCI)
530 /*
531 * Do pci configuration
532 */
533 pci_init ();
534#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000535
536 /** leave this here (after malloc(), environment and PCI are working) **/
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200537 /* Initialize stdio devices */
538 stdio_init ();
wdenkbf9e3b32004-02-12 00:47:09 +0000539
540 /* Initialize the jump table for applications */
541 jumptable_init ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000542
543 /* Initialize the console (after the relocation and devices init) */
wdenkbf9e3b32004-02-12 00:47:09 +0000544 console_init_r ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000545
stroesee2c22d72004-12-16 17:55:22 +0000546#if defined(CONFIG_MISC_INIT_R)
547 /* miscellaneous platform dependent initialisations */
548 misc_init_r ();
549#endif
550
Jon Loeliger7def6b32007-07-09 18:02:11 -0500551#if defined(CONFIG_CMD_KGDB)
wdenk4e5ca3e2003-12-08 01:34:36 +0000552 WATCHDOG_RESET ();
553 puts ("KGDB: ");
554 kgdb_init ();
555#endif
556
wdenkbf9e3b32004-02-12 00:47:09 +0000557 debug ("U-Boot relocated to %08lx\n", dest_addr);
558
wdenk4e5ca3e2003-12-08 01:34:36 +0000559 /*
560 * Enable Interrupts
561 */
562 interrupt_init ();
wdenkbf9e3b32004-02-12 00:47:09 +0000563
564 /* Must happen after interrupts are initialized since
565 * an irq handler gets installed
566 */
567 timer_init();
568
wdenkbf9e3b32004-02-12 00:47:09 +0000569#ifdef CONFIG_STATUS_LED
570 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
571#endif
572
wdenk4e5ca3e2003-12-08 01:34:36 +0000573 udelay (20);
wdenkbf9e3b32004-02-12 00:47:09 +0000574
wdenk4e5ca3e2003-12-08 01:34:36 +0000575 /* Insert function pointers now that we have relocated the code */
576
577 /* Initialize from environment */
578 if ((s = getenv ("loadaddr")) != NULL) {
579 load_addr = simple_strtoul (s, NULL, 16);
580 }
Jon Loeliger7def6b32007-07-09 18:02:11 -0500581#if defined(CONFIG_CMD_NET)
wdenk4e5ca3e2003-12-08 01:34:36 +0000582 if ((s = getenv ("bootfile")) != NULL) {
583 copy_filename (BootFile, s, sizeof (BootFile));
584 }
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500585#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000586
587 WATCHDOG_RESET ();
588
Jon Loeliger7def6b32007-07-09 18:02:11 -0500589#if defined(CONFIG_CMD_DOC)
wdenk4e5ca3e2003-12-08 01:34:36 +0000590 WATCHDOG_RESET ();
wdenkbf9e3b32004-02-12 00:47:09 +0000591 puts ("DOC: ");
592 doc_init ();
593#endif
594
Jon Loeliger7def6b32007-07-09 18:02:11 -0500595#if defined(CONFIG_CMD_NAND)
wdenkbf9e3b32004-02-12 00:47:09 +0000596 WATCHDOG_RESET ();
Markus Klotzbuecherd860c342006-04-25 17:00:33 +0200597 puts ("NAND: ");
wdenkbf9e3b32004-02-12 00:47:09 +0000598 nand_init(); /* go init the NAND */
599#endif
600
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200601#ifdef CONFIG_BITBANGMII
602 bb_miiphy_init();
603#endif
Stefan Roesed61ea142007-08-15 14:51:27 +0200604#if defined(CONFIG_CMD_NET)
wdenkbf9e3b32004-02-12 00:47:09 +0000605 WATCHDOG_RESET();
TsiChung Liew8e585f02007-06-18 13:50:13 -0500606#if defined(FEC_ENET)
wdenkbf9e3b32004-02-12 00:47:09 +0000607 eth_init(bd);
608#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500609 puts ("Net: ");
TsiChungLiewab77bc52007-08-15 15:39:17 -0500610 eth_initialize (bd);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500611#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000612
613#ifdef CONFIG_POST
614 post_run (NULL, POST_RAM | post_bootmode_get(0));
wdenk4e5ca3e2003-12-08 01:34:36 +0000615#endif
616
Stefan Roesed61ea142007-08-15 14:51:27 +0200617#if defined(CONFIG_CMD_PCMCIA) \
618 && !defined(CONFIG_CMD_IDE)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500619 WATCHDOG_RESET ();
620 puts ("PCMCIA:");
621 pcmcia_init ();
622#endif
623
Stefan Roesed61ea142007-08-15 14:51:27 +0200624#if defined(CONFIG_CMD_IDE)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500625 WATCHDOG_RESET ();
626 puts ("IDE: ");
627 ide_init ();
Stefan Roesed61ea142007-08-15 14:51:27 +0200628#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500629
wdenk4e5ca3e2003-12-08 01:34:36 +0000630#ifdef CONFIG_LAST_STAGE_INIT
631 WATCHDOG_RESET ();
632 /*
633 * Some parts can be only initialized if all others (like
634 * Interrupts) are up and running (i.e. the PC-style ISA
635 * keyboard).
636 */
637 last_stage_init ();
638#endif
639
Jon Loeliger7def6b32007-07-09 18:02:11 -0500640#if defined(CONFIG_CMD_BEDBUG)
wdenk4e5ca3e2003-12-08 01:34:36 +0000641 WATCHDOG_RESET ();
642 bedbug_init ();
643#endif
644
wdenkbf9e3b32004-02-12 00:47:09 +0000645#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
wdenk4e5ca3e2003-12-08 01:34:36 +0000646 /*
647 * Export available size of memory for Linux,
648 * taking into account the protected RAM at top of memory
649 */
650 {
651 ulong pram;
TsiChung Liew6e370912008-06-24 12:12:16 -0500652 char memsz[32];
wdenkbf9e3b32004-02-12 00:47:09 +0000653#ifdef CONFIG_PRAM
654 char *s;
wdenk4e5ca3e2003-12-08 01:34:36 +0000655
656 if ((s = getenv ("pram")) != NULL) {
657 pram = simple_strtoul (s, NULL, 10);
658 } else {
659 pram = CONFIG_PRAM;
660 }
wdenkbf9e3b32004-02-12 00:47:09 +0000661#else
662 pram=0;
663#endif
664#ifdef CONFIG_LOGBUFFER
665 /* Also take the logbuffer into account (pram is in kB) */
666 pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024;
667#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000668 sprintf (memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
669 setenv ("mem", memsz);
670 }
671#endif
672
wdenkbf9e3b32004-02-12 00:47:09 +0000673#ifdef CONFIG_MODEM_SUPPORT
674 {
675 extern int do_mdm_init;
676 do_mdm_init = gd->do_mdm_init;
677 }
678#endif
679
680#ifdef CONFIG_WATCHDOG
681 /* disable watchdog if environment is set */
682 if ((s = getenv ("watchdog")) != NULL) {
683 if (strncmp (s, "off", 3) == 0) {
684 WATCHDOG_DISABLE ();
685 }
686 }
687#endif /* CONFIG_WATCHDOG*/
688
689
wdenk4e5ca3e2003-12-08 01:34:36 +0000690 /* Initialization complete - start the monitor */
691
692 /* main_loop() can return to retry autoboot, if so just run it again. */
693 for (;;) {
694 WATCHDOG_RESET ();
695 main_loop ();
696 }
697
698 /* NOTREACHED - no way out of command loop except booting */
699}
700
wdenkbf9e3b32004-02-12 00:47:09 +0000701
702void hang(void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000703{
704 puts ("### ERROR ### Please RESET the board ###\n");
705 for (;;);
706}