blob: efc9fccc1bc9f66619ec6d101e878269d24897b8 [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>
Marek Vasutc59ac902012-10-03 13:28:46 +000032#include <linux/compiler.h>
wdenkbf9e3b32004-02-12 00:47:09 +000033
TsiChungLiew8ae158c2007-08-16 15:05:11 -050034#include <asm/immap.h>
wdenkbf9e3b32004-02-12 00:47:09 +000035
Jon Loeliger7def6b32007-07-09 18:02:11 -050036#if defined(CONFIG_CMD_IDE)
wdenk4e5ca3e2003-12-08 01:34:36 +000037#include <ide.h>
38#endif
Jon Loeliger7def6b32007-07-09 18:02:11 -050039#if defined(CONFIG_CMD_SCSI)
wdenk4e5ca3e2003-12-08 01:34:36 +000040#include <scsi.h>
41#endif
Jon Loeliger7def6b32007-07-09 18:02:11 -050042#if defined(CONFIG_CMD_KGDB)
wdenk4e5ca3e2003-12-08 01:34:36 +000043#include <kgdb.h>
44#endif
45#ifdef CONFIG_STATUS_LED
46#include <status_led.h>
47#endif
48#include <net.h>
Marcel Ziswilerb71190f2008-05-01 09:05:26 +020049#include <serial.h>
Jon Loeliger7def6b32007-07-09 18:02:11 -050050#if defined(CONFIG_CMD_BEDBUG)
wdenk4e5ca3e2003-12-08 01:34:36 +000051#include <cmd_bedbug.h>
52#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020053#ifdef CONFIG_SYS_ALLOC_DPRAM
wdenk4e5ca3e2003-12-08 01:34:36 +000054#include <commproc.h>
55#endif
56#include <version.h>
57
stroesee2c22d72004-12-16 17:55:22 +000058#if defined(CONFIG_HARD_I2C) || \
59 defined(CONFIG_SOFT_I2C)
60#include <i2c.h>
61#endif
62
TsiChung Liewa7323bb2008-07-23 17:53:36 -050063#ifdef CONFIG_CMD_SPI
64#include <spi.h>
65#endif
66
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020067#ifdef CONFIG_BITBANGMII
68#include <miiphy.h>
69#endif
70
TsiChung Liewab6ba842008-08-13 12:07:03 +000071#include <nand.h>
72
Wolfgang Denkd87080b2006-03-31 18:32:53 +020073DECLARE_GLOBAL_DATA_PTR;
74
wdenk4e5ca3e2003-12-08 01:34:36 +000075static char *failed = "*** failed ***\n";
76
wdenkbf9e3b32004-02-12 00:47:09 +000077#include <environment.h>
78
wdenkbf9e3b32004-02-12 00:47:09 +000079extern ulong __init_end;
Simon Glass3929fb02013-03-14 06:54:53 +000080extern ulong __bss_end;
wdenkbf9e3b32004-02-12 00:47:09 +000081
wdenkbf9e3b32004-02-12 00:47:09 +000082#if defined(CONFIG_WATCHDOG)
Simon Glassa6741bc2013-03-05 14:39:42 +000083# undef INIT_FUNC_WATCHDOG_INIT
wdenkbf9e3b32004-02-12 00:47:09 +000084# define INIT_FUNC_WATCHDOG_INIT watchdog_init,
85# define WATCHDOG_DISABLE watchdog_disable
86
87extern int watchdog_init(void);
88extern int watchdog_disable(void);
89#else
90# define INIT_FUNC_WATCHDOG_INIT /* undef */
91# define WATCHDOG_DISABLE /* undef */
92#endif /* CONFIG_WATCHDOG */
93
94ulong monitor_flash_len;
95
wdenk4e5ca3e2003-12-08 01:34:36 +000096/************************************************************************
97 * Utilities *
98 ************************************************************************
99 */
100
101/*
wdenkbf9e3b32004-02-12 00:47:09 +0000102 * All attempts to come up with a "common" initialization sequence
103 * that works for all boards and architectures failed: some of the
104 * requirements are just _too_ different. To get rid of the resulting
105 * mess of board dependend #ifdef'ed code we now make the whole
106 * initialization sequence configurable to the user.
107 *
108 * The requirements for any new initalization function is simple: it
109 * receives a pointer to the "global data" structure as it's only
110 * argument, and returns an integer return code, where 0 means
111 * "continue" and != 0 means "fatal error, hang the system".
112 */
113typedef int (init_fnc_t) (void);
114
115/************************************************************************
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500116 * Init Utilities
wdenkbf9e3b32004-02-12 00:47:09 +0000117 ************************************************************************
118 * Some of this code should be moved into the core functions,
119 * but let's get it working (again) first...
120 */
121
122static int init_baudrate (void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000123{
Simon Glass77b8f202011-10-13 14:43:09 +0000124 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
125 return 0;
wdenk4e5ca3e2003-12-08 01:34:36 +0000126}
127
wdenkbf9e3b32004-02-12 00:47:09 +0000128/***********************************************************************/
129
130static int init_func_ram (void)
131{
wdenkbf9e3b32004-02-12 00:47:09 +0000132 int board_type = 0; /* use dummy arg */
133 puts ("DRAM: ");
134
135 if ((gd->ram_size = initdram (board_type)) > 0) {
136 print_size (gd->ram_size, "\n");
137 return (0);
138 }
139 puts (failed);
140 return (1);
141}
142
143/***********************************************************************/
144
stroesee2c22d72004-12-16 17:55:22 +0000145#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
146static int init_func_i2c (void)
147{
148 puts ("I2C: ");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200149 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
stroesee2c22d72004-12-16 17:55:22 +0000150 puts ("ready\n");
151 return (0);
152}
153#endif
154
TsiChung Liewa7323bb2008-07-23 17:53:36 -0500155#if defined(CONFIG_HARD_SPI)
156static int init_func_spi (void)
157{
158 puts ("SPI: ");
159 spi_init ();
160 puts ("ready\n");
161 return (0);
162}
163#endif
164
stroesee2c22d72004-12-16 17:55:22 +0000165/***********************************************************************/
166
wdenkbf9e3b32004-02-12 00:47:09 +0000167/************************************************************************
168 * Initialization sequence *
169 ************************************************************************
170 */
171
172init_fnc_t *init_sequence[] = {
Stefan Roesed61ea142007-08-15 14:51:27 +0200173 get_clocks,
wdenkbf9e3b32004-02-12 00:47:09 +0000174 env_init,
175 init_baudrate,
176 serial_init,
177 console_init_f,
178 display_options,
179 checkcpu,
180 checkboard,
stroesee2c22d72004-12-16 17:55:22 +0000181#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
182 init_func_i2c,
183#endif
TsiChung Liewa7323bb2008-07-23 17:53:36 -0500184#if defined(CONFIG_HARD_SPI)
185 init_func_spi,
186#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000187 init_func_ram,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200188#if defined(CONFIG_SYS_DRAM_TEST)
wdenkbf9e3b32004-02-12 00:47:09 +0000189 testdram,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200190#endif /* CONFIG_SYS_DRAM_TEST */
wdenkbf9e3b32004-02-12 00:47:09 +0000191 INIT_FUNC_WATCHDOG_INIT
192 NULL, /* Terminate this list */
193};
194
195
wdenk4e5ca3e2003-12-08 01:34:36 +0000196/************************************************************************
197 *
198 * This is the first part of the initialization sequence that is
199 * implemented in C, but still running from ROM.
200 *
201 * The main purpose is to provide a (serial) console interface as
202 * soon as possible (so we can see any error messages), and to
203 * initialize the RAM so that we can relocate the monitor code to
204 * RAM.
205 *
206 * Be aware of the restrictions: global data is read-only, BSS is not
207 * initialized, and stack space is limited to a few kB.
208 *
209 ************************************************************************
210 */
211
wdenkbf9e3b32004-02-12 00:47:09 +0000212void
213board_init_f (ulong bootflag)
wdenk4e5ca3e2003-12-08 01:34:36 +0000214{
wdenk4e5ca3e2003-12-08 01:34:36 +0000215 bd_t *bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000216 ulong len, addr, addr_sp;
Marian Balakowicz483a0cf2006-05-09 11:28:36 +0200217 ulong *paddr;
wdenkbf9e3b32004-02-12 00:47:09 +0000218 gd_t *id;
219 init_fnc_t **init_fnc_ptr;
220#ifdef CONFIG_PRAM
wdenkbf9e3b32004-02-12 00:47:09 +0000221 ulong reg;
wdenkbf9e3b32004-02-12 00:47:09 +0000222#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000223
wdenkbf9e3b32004-02-12 00:47:09 +0000224 /* Pointer is writable since we allocated a register for it */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200225 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
wdenk93f6a672004-07-01 20:28:03 +0000226 /* compiler optimization barrier needed for GCC >= 3.4 */
227 __asm__ __volatile__("": : :"memory");
wdenk4e5ca3e2003-12-08 01:34:36 +0000228
wdenkbf9e3b32004-02-12 00:47:09 +0000229 /* Clear initial global data */
230 memset ((void *) gd, 0, sizeof (gd_t));
wdenk4e5ca3e2003-12-08 01:34:36 +0000231
wdenkbf9e3b32004-02-12 00:47:09 +0000232 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
233 if ((*init_fnc_ptr)() != 0) {
234 hang ();
235 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000236 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000237
238 /*
239 * Now that we have DRAM mapped and working, we can
240 * relocate the code and continue running from DRAM.
241 *
242 * Reserve memory at end of RAM for (top down in that order):
wdenkbf9e3b32004-02-12 00:47:09 +0000243 * - protected RAM
244 * - LCD framebuffer
245 * - monitor code
246 * - board info struct
wdenk4e5ca3e2003-12-08 01:34:36 +0000247 */
Simon Glass3929fb02013-03-14 06:54:53 +0000248 len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
wdenk4e5ca3e2003-12-08 01:34:36 +0000249
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200250 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
wdenk4e5ca3e2003-12-08 01:34:36 +0000251
wdenkbf9e3b32004-02-12 00:47:09 +0000252#ifdef CONFIG_LOGBUFFER
253 /* reserve kernel log buffer */
254 addr -= (LOGBUFF_RESERVE);
255 debug ("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr);
256#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000257
wdenkbf9e3b32004-02-12 00:47:09 +0000258#ifdef CONFIG_PRAM
259 /*
260 * reserve protected RAM
261 */
Simon Glass77b8f202011-10-13 14:43:09 +0000262 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
wdenkbf9e3b32004-02-12 00:47:09 +0000263 addr -= (reg << 10); /* size is in kB */
264 debug ("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
265#endif /* CONFIG_PRAM */
266
TsiChungLiew1552af72008-01-14 17:43:33 -0600267 /* round down to next 4 kB limit */
268 addr &= ~(4096 - 1);
269 debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
270
271#ifdef CONFIG_LCD
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000272#ifdef CONFIG_FB_ADDR
273 gd->fb_base = CONFIG_FB_ADDR;
274#else
TsiChungLiew1552af72008-01-14 17:43:33 -0600275 /* reserve memory for LCD display (always full pages) */
276 addr = lcd_setmem (addr);
277 gd->fb_base = addr;
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000278#endif /* CONFIG_FB_ADDR */
TsiChungLiew1552af72008-01-14 17:43:33 -0600279#endif /* CONFIG_LCD */
280
wdenkbf9e3b32004-02-12 00:47:09 +0000281 /*
282 * reserve memory for U-Boot code, data & bss
283 * round down to next 4 kB limit
284 */
wdenk4e5ca3e2003-12-08 01:34:36 +0000285 addr -= len;
wdenkbf9e3b32004-02-12 00:47:09 +0000286 addr &= ~(4096 - 1);
287
288 debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
289
290 /*
291 * reserve memory for malloc() arena
292 */
293 addr_sp = addr - TOTAL_MALLOC_LEN;
294 debug ("Reserving %dk for malloc() at: %08lx\n",
295 TOTAL_MALLOC_LEN >> 10, addr_sp);
296
297 /*
298 * (permanently) allocate a Board Info struct
299 * and a permanent copy of the "global" data
300 */
301 addr_sp -= sizeof (bd_t);
302 bd = (bd_t *) addr_sp;
303 gd->bd = bd;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200304 debug ("Reserving %zu Bytes for Board Info at: %08lx\n",
wdenkbf9e3b32004-02-12 00:47:09 +0000305 sizeof (bd_t), addr_sp);
306 addr_sp -= sizeof (gd_t);
307 id = (gd_t *) addr_sp;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200308 debug ("Reserving %zu Bytes for Global Data at: %08lx\n",
wdenkbf9e3b32004-02-12 00:47:09 +0000309 sizeof (gd_t), addr_sp);
310
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200311 /* Reserve memory for boot params. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200312 addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN;
wdenkbf9e3b32004-02-12 00:47:09 +0000313 bd->bi_boot_params = addr_sp;
314 debug ("Reserving %dk for boot parameters at: %08lx\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200315 CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp);
wdenkbf9e3b32004-02-12 00:47:09 +0000316
317 /*
318 * Finally, we set up a new (bigger) stack.
319 *
320 * Leave some safety gap for SP, force alignment on 16 byte boundary
321 * Clear initial stack frame
322 */
323 addr_sp -= 16;
324 addr_sp &= ~0xF;
Marian Balakowicz483a0cf2006-05-09 11:28:36 +0200325
326 paddr = (ulong *)addr_sp;
327 *paddr-- = 0;
328 *paddr-- = 0;
329 addr_sp = (ulong)paddr;
Wolfgang Denk977b50f2006-05-10 17:43:20 +0200330
wdenkbf9e3b32004-02-12 00:47:09 +0000331 debug ("Stack Pointer at: %08lx\n", addr_sp);
wdenk4e5ca3e2003-12-08 01:34:36 +0000332
333 /*
334 * Save local variables to board info struct
335 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200336 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM memory */
wdenkbf9e3b32004-02-12 00:47:09 +0000337 bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200338#ifdef CONFIG_SYS_INIT_RAM_ADDR
339 bd->bi_sramstart = CONFIG_SYS_INIT_RAM_ADDR; /* start of SRAM memory */
Wolfgang Denk553f0982010-10-26 13:32:32 +0200340 bd->bi_sramsize = CONFIG_SYS_INIT_RAM_SIZE; /* size of SRAM memory */
TsiChung Liew8e585f02007-06-18 13:50:13 -0500341#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200342 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
wdenk4e5ca3e2003-12-08 01:34:36 +0000343
wdenkbf9e3b32004-02-12 00:47:09 +0000344 bd->bi_bootflags = bootflag; /* boot / reboot flag (for LynxOS) */
wdenk4e5ca3e2003-12-08 01:34:36 +0000345
wdenkbf9e3b32004-02-12 00:47:09 +0000346 WATCHDOG_RESET ();
347 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
348 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500349#ifdef CONFIG_PCI
350 bd->bi_pcifreq = gd->pci_clk; /* PCI Freq in Hz */
351#endif
352#ifdef CONFIG_EXTRA_CLOCK
Simon Glass7e2592f2012-12-13 20:49:07 +0000353 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
354 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
355 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500356#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000357 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
wdenk4e5ca3e2003-12-08 01:34:36 +0000358
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200359#ifdef CONFIG_SYS_EXTBDINFO
wdenk4e5ca3e2003-12-08 01:34:36 +0000360 strncpy (bd->bi_s_version, "1.2", sizeof (bd->bi_s_version));
wdenkbf9e3b32004-02-12 00:47:09 +0000361 strncpy (bd->bi_r_version, U_BOOT_VERSION, sizeof (bd->bi_r_version));
wdenk4e5ca3e2003-12-08 01:34:36 +0000362#endif
363
wdenkbf9e3b32004-02-12 00:47:09 +0000364 WATCHDOG_RESET ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000365
wdenkbf9e3b32004-02-12 00:47:09 +0000366#ifdef CONFIG_POST
367 post_bootmode_init();
368 post_run (NULL, POST_ROM | post_bootmode_get(0));
369#endif
370
371 WATCHDOG_RESET();
372
373 memcpy (id, (void *)gd, sizeof (gd_t));
374
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200375 debug ("Start relocate of code from %08x to %08lx\n", CONFIG_SYS_MONITOR_BASE, addr);
wdenkbf9e3b32004-02-12 00:47:09 +0000376 relocate_code (addr_sp, id, addr);
377
378 /* NOTREACHED - jump_to_ram() does not return */
wdenk4e5ca3e2003-12-08 01:34:36 +0000379}
380
wdenk4e5ca3e2003-12-08 01:34:36 +0000381/************************************************************************
382 *
383 * This is the next part if the initialization sequence: we are now
384 * running from RAM and have a "normal" C environment, i. e. global
385 * data can be written, BSS has been cleared, the stack size in not
386 * that critical any more, etc.
387 *
388 ************************************************************************
389 */
wdenkbf9e3b32004-02-12 00:47:09 +0000390void board_init_r (gd_t *id, ulong dest_addr)
wdenk4e5ca3e2003-12-08 01:34:36 +0000391{
Marek Vasutc59ac902012-10-03 13:28:46 +0000392 char *s __maybe_unused;
wdenk4e5ca3e2003-12-08 01:34:36 +0000393 bd_t *bd;
394
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200395#ifndef CONFIG_ENV_IS_NOWHERE
wdenkbf9e3b32004-02-12 00:47:09 +0000396 extern char * env_name_spec;
397#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200398#ifndef CONFIG_SYS_NO_FLASH
wdenkbf9e3b32004-02-12 00:47:09 +0000399 ulong flash_size;
400#endif
401 gd = id; /* initialize RAM version of global data */
wdenk4e5ca3e2003-12-08 01:34:36 +0000402 bd = gd->bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000403
404 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
405
wdenkbf9e3b32004-02-12 00:47:09 +0000406 WATCHDOG_RESET ();
407
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200408 gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
wdenkbf9e3b32004-02-12 00:47:09 +0000409
angelofd70aa42012-11-23 12:23:39 +0000410 serial_initialize();
411
Jens Scharsig (BuS Elektronik)aea5eee2013-01-16 08:24:10 +0100412 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
413
wdenkbf9e3b32004-02-12 00:47:09 +0000414 monitor_flash_len = (ulong)&__init_end - dest_addr;
415
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200416#if defined(CONFIG_NEEDS_MANUAL_RELOC)
wdenkbf9e3b32004-02-12 00:47:09 +0000417 /*
418 * We have to relocate the command table manually
419 */
Marek Vasut6c7c9462012-10-12 10:27:04 +0000420 fixup_cmdtable(ll_entry_start(cmd_tbl_t, cmd),
421 ll_entry_count(cmd_tbl_t, cmd));
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200422#endif /* defined(CONFIG_NEEDS_MANUAL_RELOC) */
wdenkbf9e3b32004-02-12 00:47:09 +0000423
wdenkbf9e3b32004-02-12 00:47:09 +0000424 /* there are some other pointer constants we must deal with */
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200425#ifndef CONFIG_ENV_IS_NOWHERE
wdenkbf9e3b32004-02-12 00:47:09 +0000426 env_name_spec += gd->reloc_off;
427#endif
428
429 WATCHDOG_RESET ();
430
431#ifdef CONFIG_LOGBUFFER
432 logbuff_init_ptrs ();
433#endif
434#ifdef CONFIG_POST
435 post_output_backlog ();
436 post_reloc ();
437#endif
438 WATCHDOG_RESET();
439
440#if 0
441 /* instruction cache enabled in cpu_init_f() for faster relocation */
442 icache_enable (); /* it's time to enable the instruction cache */
443#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000444
445 /*
446 * Setup trap handlers
447 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200448 trap_init (CONFIG_SYS_SDRAM_BASE);
wdenk4e5ca3e2003-12-08 01:34:36 +0000449
Peter Tyserd4e8ada2009-08-21 23:05:21 -0500450 /* The Malloc area is immediately below the monitor copy in DRAM */
Peter Tysera483a162009-08-21 23:05:20 -0500451 mem_malloc_init (CONFIG_SYS_MONITOR_BASE + gd->reloc_off -
452 TOTAL_MALLOC_LEN, TOTAL_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200453
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200454#if !defined(CONFIG_SYS_NO_FLASH)
Peter Tysereddf52b2010-12-28 18:12:05 -0600455 puts ("Flash: ");
wdenk4e5ca3e2003-12-08 01:34:36 +0000456
457 if ((flash_size = flash_init ()) > 0) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200458# ifdef CONFIG_SYS_FLASH_CHECKSUM
wdenkbf9e3b32004-02-12 00:47:09 +0000459 print_size (flash_size, "");
wdenk4e5ca3e2003-12-08 01:34:36 +0000460 /*
461 * Compute and print flash CRC if flashchecksum is set to 'y'
462 *
wdenkbf9e3b32004-02-12 00:47:09 +0000463 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
wdenk4e5ca3e2003-12-08 01:34:36 +0000464 */
Joe Hershbergerec8a2522012-12-11 22:16:22 -0600465 if (getenv_yesno("flashchecksum") == 1) {
TsiChung Liew11d88b22009-06-12 13:03:34 +0000466 printf (" CRC: %08X",
wdenkbf9e3b32004-02-12 00:47:09 +0000467 crc32 (0,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200468 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
wdenkbf9e3b32004-02-12 00:47:09 +0000469 flash_size)
470 );
wdenk4e5ca3e2003-12-08 01:34:36 +0000471 }
472 putc ('\n');
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200473# else /* !CONFIG_SYS_FLASH_CHECKSUM */
wdenkbf9e3b32004-02-12 00:47:09 +0000474 print_size (flash_size, "\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200475# endif /* CONFIG_SYS_FLASH_CHECKSUM */
wdenk4e5ca3e2003-12-08 01:34:36 +0000476 } else {
477 puts (failed);
478 hang ();
479 }
480
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200481 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE; /* update start of FLASH memory */
wdenkbf9e3b32004-02-12 00:47:09 +0000482 bd->bi_flashsize = flash_size; /* size of FLASH memory (final value) */
483 bd->bi_flashoffset = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200484#else /* CONFIG_SYS_NO_FLASH */
wdenkbf9e3b32004-02-12 00:47:09 +0000485 bd->bi_flashsize = 0;
486 bd->bi_flashstart = 0;
487 bd->bi_flashoffset = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200488#endif /* !CONFIG_SYS_NO_FLASH */
wdenk4e5ca3e2003-12-08 01:34:36 +0000489
490 WATCHDOG_RESET ();
491
492 /* initialize higher level parts of CPU like time base and timers */
493 cpu_init_r ();
494
495 WATCHDOG_RESET ();
496
wdenk4e5ca3e2003-12-08 01:34:36 +0000497#ifdef CONFIG_SPI
Jean-Christophe PLAGNIOL-VILLARDbb1f8b42008-09-05 09:19:30 +0200498# if !defined(CONFIG_ENV_IS_IN_EEPROM)
wdenk4e5ca3e2003-12-08 01:34:36 +0000499 spi_init_f ();
500# endif
501 spi_init_r ();
502#endif
503
504 /* relocate environment function pointers etc. */
505 env_relocate ();
506
wdenk4e5ca3e2003-12-08 01:34:36 +0000507 WATCHDOG_RESET ();
508
TsiChung Liew8e585f02007-06-18 13:50:13 -0500509#if defined(CONFIG_PCI)
510 /*
511 * Do pci configuration
512 */
513 pci_init ();
514#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000515
516 /** leave this here (after malloc(), environment and PCI are working) **/
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200517 /* Initialize stdio devices */
518 stdio_init ();
wdenkbf9e3b32004-02-12 00:47:09 +0000519
520 /* Initialize the jump table for applications */
521 jumptable_init ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000522
523 /* Initialize the console (after the relocation and devices init) */
wdenkbf9e3b32004-02-12 00:47:09 +0000524 console_init_r ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000525
stroesee2c22d72004-12-16 17:55:22 +0000526#if defined(CONFIG_MISC_INIT_R)
527 /* miscellaneous platform dependent initialisations */
528 misc_init_r ();
529#endif
530
Jon Loeliger7def6b32007-07-09 18:02:11 -0500531#if defined(CONFIG_CMD_KGDB)
wdenk4e5ca3e2003-12-08 01:34:36 +0000532 WATCHDOG_RESET ();
533 puts ("KGDB: ");
534 kgdb_init ();
535#endif
536
wdenkbf9e3b32004-02-12 00:47:09 +0000537 debug ("U-Boot relocated to %08lx\n", dest_addr);
538
wdenk4e5ca3e2003-12-08 01:34:36 +0000539 /*
540 * Enable Interrupts
541 */
542 interrupt_init ();
wdenkbf9e3b32004-02-12 00:47:09 +0000543
544 /* Must happen after interrupts are initialized since
545 * an irq handler gets installed
546 */
547 timer_init();
548
wdenkbf9e3b32004-02-12 00:47:09 +0000549#ifdef CONFIG_STATUS_LED
550 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
551#endif
552
wdenk4e5ca3e2003-12-08 01:34:36 +0000553 udelay (20);
wdenkbf9e3b32004-02-12 00:47:09 +0000554
wdenk4e5ca3e2003-12-08 01:34:36 +0000555 /* Insert function pointers now that we have relocated the code */
556
557 /* Initialize from environment */
Simon Glass77b8f202011-10-13 14:43:09 +0000558 load_addr = getenv_ulong("loadaddr", 16, load_addr);
wdenk4e5ca3e2003-12-08 01:34:36 +0000559
560 WATCHDOG_RESET ();
561
Jon Loeliger7def6b32007-07-09 18:02:11 -0500562#if defined(CONFIG_CMD_DOC)
wdenk4e5ca3e2003-12-08 01:34:36 +0000563 WATCHDOG_RESET ();
wdenkbf9e3b32004-02-12 00:47:09 +0000564 puts ("DOC: ");
565 doc_init ();
566#endif
567
Jon Loeliger7def6b32007-07-09 18:02:11 -0500568#if defined(CONFIG_CMD_NAND)
wdenkbf9e3b32004-02-12 00:47:09 +0000569 WATCHDOG_RESET ();
Markus Klotzbuecherd860c342006-04-25 17:00:33 +0200570 puts ("NAND: ");
wdenkbf9e3b32004-02-12 00:47:09 +0000571 nand_init(); /* go init the NAND */
572#endif
573
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200574#ifdef CONFIG_BITBANGMII
575 bb_miiphy_init();
576#endif
Stefan Roesed61ea142007-08-15 14:51:27 +0200577#if defined(CONFIG_CMD_NET)
wdenkbf9e3b32004-02-12 00:47:09 +0000578 WATCHDOG_RESET();
TsiChung Liew8e585f02007-06-18 13:50:13 -0500579#if defined(FEC_ENET)
wdenkbf9e3b32004-02-12 00:47:09 +0000580 eth_init(bd);
581#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500582 puts ("Net: ");
TsiChungLiewab77bc52007-08-15 15:39:17 -0500583 eth_initialize (bd);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500584#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000585
586#ifdef CONFIG_POST
587 post_run (NULL, POST_RAM | post_bootmode_get(0));
wdenk4e5ca3e2003-12-08 01:34:36 +0000588#endif
589
Stefan Roesed61ea142007-08-15 14:51:27 +0200590#if defined(CONFIG_CMD_PCMCIA) \
591 && !defined(CONFIG_CMD_IDE)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500592 WATCHDOG_RESET ();
593 puts ("PCMCIA:");
594 pcmcia_init ();
595#endif
596
Stefan Roesed61ea142007-08-15 14:51:27 +0200597#if defined(CONFIG_CMD_IDE)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500598 WATCHDOG_RESET ();
599 puts ("IDE: ");
600 ide_init ();
Stefan Roesed61ea142007-08-15 14:51:27 +0200601#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500602
wdenk4e5ca3e2003-12-08 01:34:36 +0000603#ifdef CONFIG_LAST_STAGE_INIT
604 WATCHDOG_RESET ();
605 /*
606 * Some parts can be only initialized if all others (like
607 * Interrupts) are up and running (i.e. the PC-style ISA
608 * keyboard).
609 */
610 last_stage_init ();
611#endif
612
Jon Loeliger7def6b32007-07-09 18:02:11 -0500613#if defined(CONFIG_CMD_BEDBUG)
wdenk4e5ca3e2003-12-08 01:34:36 +0000614 WATCHDOG_RESET ();
615 bedbug_init ();
616#endif
617
wdenkbf9e3b32004-02-12 00:47:09 +0000618#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
wdenk4e5ca3e2003-12-08 01:34:36 +0000619 /*
620 * Export available size of memory for Linux,
621 * taking into account the protected RAM at top of memory
622 */
623 {
Simon Glass77b8f202011-10-13 14:43:09 +0000624 ulong pram = 0;
Simon Glassa5466652012-01-05 17:54:56 +0000625 char memsz[32];
wdenk4e5ca3e2003-12-08 01:34:36 +0000626
Simon Glass77b8f202011-10-13 14:43:09 +0000627#ifdef CONFIG_PRAM
628 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
wdenkbf9e3b32004-02-12 00:47:09 +0000629#endif
630#ifdef CONFIG_LOGBUFFER
631 /* Also take the logbuffer into account (pram is in kB) */
632 pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024;
633#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000634 sprintf (memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
635 setenv ("mem", memsz);
636 }
637#endif
638
wdenkbf9e3b32004-02-12 00:47:09 +0000639#ifdef CONFIG_MODEM_SUPPORT
640 {
641 extern int do_mdm_init;
642 do_mdm_init = gd->do_mdm_init;
643 }
644#endif
645
646#ifdef CONFIG_WATCHDOG
647 /* disable watchdog if environment is set */
648 if ((s = getenv ("watchdog")) != NULL) {
649 if (strncmp (s, "off", 3) == 0) {
650 WATCHDOG_DISABLE ();
651 }
652 }
653#endif /* CONFIG_WATCHDOG*/
654
655
wdenk4e5ca3e2003-12-08 01:34:36 +0000656 /* Initialization complete - start the monitor */
657
658 /* main_loop() can return to retry autoboot, if so just run it again. */
659 for (;;) {
660 WATCHDOG_RESET ();
661 main_loop ();
662 }
663
664 /* NOTREACHED - no way out of command loop except booting */
665}