blob: e75b6a98dd5cb615d8d592504574b275ed2899a2 [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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
wdenk4e5ca3e2003-12-08 01:34:36 +00009 */
10
11#include <common.h>
12#include <watchdog.h>
13#include <command.h>
14#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020015#include <stdio_dev.h>
Marek Vasutc59ac902012-10-03 13:28:46 +000016#include <linux/compiler.h>
wdenkbf9e3b32004-02-12 00:47:09 +000017
TsiChungLiew8ae158c2007-08-16 15:05:11 -050018#include <asm/immap.h>
wdenkbf9e3b32004-02-12 00:47:09 +000019
Jon Loeliger7def6b32007-07-09 18:02:11 -050020#if defined(CONFIG_CMD_IDE)
wdenk4e5ca3e2003-12-08 01:34:36 +000021#include <ide.h>
22#endif
Jon Loeliger7def6b32007-07-09 18:02:11 -050023#if defined(CONFIG_CMD_SCSI)
wdenk4e5ca3e2003-12-08 01:34:36 +000024#include <scsi.h>
25#endif
Jon Loeliger7def6b32007-07-09 18:02:11 -050026#if defined(CONFIG_CMD_KGDB)
wdenk4e5ca3e2003-12-08 01:34:36 +000027#include <kgdb.h>
28#endif
29#ifdef CONFIG_STATUS_LED
30#include <status_led.h>
31#endif
32#include <net.h>
Marcel Ziswilerb71190f2008-05-01 09:05:26 +020033#include <serial.h>
Jon Loeliger7def6b32007-07-09 18:02:11 -050034#if defined(CONFIG_CMD_BEDBUG)
wdenk4e5ca3e2003-12-08 01:34:36 +000035#include <cmd_bedbug.h>
36#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020037#ifdef CONFIG_SYS_ALLOC_DPRAM
wdenk4e5ca3e2003-12-08 01:34:36 +000038#include <commproc.h>
39#endif
40#include <version.h>
41
stroesee2c22d72004-12-16 17:55:22 +000042#if defined(CONFIG_HARD_I2C) || \
Heiko Schocherea818db2013-01-29 08:53:15 +010043 defined(CONFIG_SYS_I2C)
stroesee2c22d72004-12-16 17:55:22 +000044#include <i2c.h>
45#endif
46
TsiChung Liewa7323bb2008-07-23 17:53:36 -050047#ifdef CONFIG_CMD_SPI
48#include <spi.h>
49#endif
50
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020051#ifdef CONFIG_BITBANGMII
52#include <miiphy.h>
53#endif
54
TsiChung Liewab6ba842008-08-13 12:07:03 +000055#include <nand.h>
56
Wolfgang Denkd87080b2006-03-31 18:32:53 +020057DECLARE_GLOBAL_DATA_PTR;
58
wdenk4e5ca3e2003-12-08 01:34:36 +000059static char *failed = "*** failed ***\n";
60
wdenkbf9e3b32004-02-12 00:47:09 +000061#include <environment.h>
62
wdenkbf9e3b32004-02-12 00:47:09 +000063extern ulong __init_end;
Simon Glass3929fb02013-03-14 06:54:53 +000064extern ulong __bss_end;
wdenkbf9e3b32004-02-12 00:47:09 +000065
wdenkbf9e3b32004-02-12 00:47:09 +000066#if defined(CONFIG_WATCHDOG)
Simon Glassa6741bc2013-03-05 14:39:42 +000067# undef INIT_FUNC_WATCHDOG_INIT
wdenkbf9e3b32004-02-12 00:47:09 +000068# define INIT_FUNC_WATCHDOG_INIT watchdog_init,
69# define WATCHDOG_DISABLE watchdog_disable
70
71extern int watchdog_init(void);
72extern int watchdog_disable(void);
73#else
74# define INIT_FUNC_WATCHDOG_INIT /* undef */
75# define WATCHDOG_DISABLE /* undef */
76#endif /* CONFIG_WATCHDOG */
77
78ulong monitor_flash_len;
79
wdenk4e5ca3e2003-12-08 01:34:36 +000080/************************************************************************
81 * Utilities *
82 ************************************************************************
83 */
84
85/*
wdenkbf9e3b32004-02-12 00:47:09 +000086 * All attempts to come up with a "common" initialization sequence
87 * that works for all boards and architectures failed: some of the
88 * requirements are just _too_ different. To get rid of the resulting
89 * mess of board dependend #ifdef'ed code we now make the whole
90 * initialization sequence configurable to the user.
91 *
92 * The requirements for any new initalization function is simple: it
93 * receives a pointer to the "global data" structure as it's only
94 * argument, and returns an integer return code, where 0 means
95 * "continue" and != 0 means "fatal error, hang the system".
96 */
97typedef int (init_fnc_t) (void);
98
99/************************************************************************
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500100 * Init Utilities
wdenkbf9e3b32004-02-12 00:47:09 +0000101 ************************************************************************
102 * Some of this code should be moved into the core functions,
103 * but let's get it working (again) first...
104 */
105
106static int init_baudrate (void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000107{
Simon Glass77b8f202011-10-13 14:43:09 +0000108 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
109 return 0;
wdenk4e5ca3e2003-12-08 01:34:36 +0000110}
111
wdenkbf9e3b32004-02-12 00:47:09 +0000112/***********************************************************************/
113
114static int init_func_ram (void)
115{
wdenkbf9e3b32004-02-12 00:47:09 +0000116 int board_type = 0; /* use dummy arg */
117 puts ("DRAM: ");
118
119 if ((gd->ram_size = initdram (board_type)) > 0) {
120 print_size (gd->ram_size, "\n");
121 return (0);
122 }
123 puts (failed);
124 return (1);
125}
126
127/***********************************************************************/
128
Heiko Schocherea818db2013-01-29 08:53:15 +0100129#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
stroesee2c22d72004-12-16 17:55:22 +0000130static int init_func_i2c (void)
131{
132 puts ("I2C: ");
Heiko Schocher3f4978c2012-01-16 21:12:24 +0000133#ifdef CONFIG_SYS_I2C
134 i2c_init_all();
135#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200136 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
Heiko Schocher3f4978c2012-01-16 21:12:24 +0000137#endif
stroesee2c22d72004-12-16 17:55:22 +0000138 puts ("ready\n");
139 return (0);
140}
141#endif
142
TsiChung Liewa7323bb2008-07-23 17:53:36 -0500143#if defined(CONFIG_HARD_SPI)
144static int init_func_spi (void)
145{
146 puts ("SPI: ");
147 spi_init ();
148 puts ("ready\n");
149 return (0);
150}
151#endif
152
stroesee2c22d72004-12-16 17:55:22 +0000153/***********************************************************************/
154
wdenkbf9e3b32004-02-12 00:47:09 +0000155/************************************************************************
156 * Initialization sequence *
157 ************************************************************************
158 */
159
160init_fnc_t *init_sequence[] = {
Stefan Roesed61ea142007-08-15 14:51:27 +0200161 get_clocks,
wdenkbf9e3b32004-02-12 00:47:09 +0000162 env_init,
163 init_baudrate,
164 serial_init,
165 console_init_f,
166 display_options,
167 checkcpu,
168 checkboard,
Heiko Schocherea818db2013-01-29 08:53:15 +0100169#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
stroesee2c22d72004-12-16 17:55:22 +0000170 init_func_i2c,
171#endif
TsiChung Liewa7323bb2008-07-23 17:53:36 -0500172#if defined(CONFIG_HARD_SPI)
173 init_func_spi,
174#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000175 init_func_ram,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200176#if defined(CONFIG_SYS_DRAM_TEST)
wdenkbf9e3b32004-02-12 00:47:09 +0000177 testdram,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200178#endif /* CONFIG_SYS_DRAM_TEST */
wdenkbf9e3b32004-02-12 00:47:09 +0000179 INIT_FUNC_WATCHDOG_INIT
180 NULL, /* Terminate this list */
181};
182
183
wdenk4e5ca3e2003-12-08 01:34:36 +0000184/************************************************************************
185 *
186 * This is the first part of the initialization sequence that is
187 * implemented in C, but still running from ROM.
188 *
189 * The main purpose is to provide a (serial) console interface as
190 * soon as possible (so we can see any error messages), and to
191 * initialize the RAM so that we can relocate the monitor code to
192 * RAM.
193 *
194 * Be aware of the restrictions: global data is read-only, BSS is not
195 * initialized, and stack space is limited to a few kB.
196 *
197 ************************************************************************
198 */
199
wdenkbf9e3b32004-02-12 00:47:09 +0000200void
201board_init_f (ulong bootflag)
wdenk4e5ca3e2003-12-08 01:34:36 +0000202{
wdenk4e5ca3e2003-12-08 01:34:36 +0000203 bd_t *bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000204 ulong len, addr, addr_sp;
Marian Balakowicz483a0cf2006-05-09 11:28:36 +0200205 ulong *paddr;
wdenkbf9e3b32004-02-12 00:47:09 +0000206 gd_t *id;
207 init_fnc_t **init_fnc_ptr;
208#ifdef CONFIG_PRAM
wdenkbf9e3b32004-02-12 00:47:09 +0000209 ulong reg;
wdenkbf9e3b32004-02-12 00:47:09 +0000210#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000211
wdenkbf9e3b32004-02-12 00:47:09 +0000212 /* Pointer is writable since we allocated a register for it */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200213 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
wdenk93f6a672004-07-01 20:28:03 +0000214 /* compiler optimization barrier needed for GCC >= 3.4 */
215 __asm__ __volatile__("": : :"memory");
wdenk4e5ca3e2003-12-08 01:34:36 +0000216
wdenkbf9e3b32004-02-12 00:47:09 +0000217 /* Clear initial global data */
218 memset ((void *) gd, 0, sizeof (gd_t));
wdenk4e5ca3e2003-12-08 01:34:36 +0000219
wdenkbf9e3b32004-02-12 00:47:09 +0000220 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
221 if ((*init_fnc_ptr)() != 0) {
222 hang ();
223 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000224 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000225
226 /*
227 * Now that we have DRAM mapped and working, we can
228 * relocate the code and continue running from DRAM.
229 *
230 * Reserve memory at end of RAM for (top down in that order):
wdenkbf9e3b32004-02-12 00:47:09 +0000231 * - protected RAM
232 * - LCD framebuffer
233 * - monitor code
234 * - board info struct
wdenk4e5ca3e2003-12-08 01:34:36 +0000235 */
Simon Glass3929fb02013-03-14 06:54:53 +0000236 len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
wdenk4e5ca3e2003-12-08 01:34:36 +0000237
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200238 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
wdenk4e5ca3e2003-12-08 01:34:36 +0000239
wdenkbf9e3b32004-02-12 00:47:09 +0000240#ifdef CONFIG_LOGBUFFER
241 /* reserve kernel log buffer */
242 addr -= (LOGBUFF_RESERVE);
243 debug ("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr);
244#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000245
wdenkbf9e3b32004-02-12 00:47:09 +0000246#ifdef CONFIG_PRAM
247 /*
248 * reserve protected RAM
249 */
Simon Glass77b8f202011-10-13 14:43:09 +0000250 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
wdenkbf9e3b32004-02-12 00:47:09 +0000251 addr -= (reg << 10); /* size is in kB */
252 debug ("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
253#endif /* CONFIG_PRAM */
254
TsiChungLiew1552af72008-01-14 17:43:33 -0600255 /* round down to next 4 kB limit */
256 addr &= ~(4096 - 1);
257 debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
258
259#ifdef CONFIG_LCD
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000260#ifdef CONFIG_FB_ADDR
261 gd->fb_base = CONFIG_FB_ADDR;
262#else
TsiChungLiew1552af72008-01-14 17:43:33 -0600263 /* reserve memory for LCD display (always full pages) */
264 addr = lcd_setmem (addr);
265 gd->fb_base = addr;
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000266#endif /* CONFIG_FB_ADDR */
TsiChungLiew1552af72008-01-14 17:43:33 -0600267#endif /* CONFIG_LCD */
268
wdenkbf9e3b32004-02-12 00:47:09 +0000269 /*
270 * reserve memory for U-Boot code, data & bss
271 * round down to next 4 kB limit
272 */
wdenk4e5ca3e2003-12-08 01:34:36 +0000273 addr -= len;
wdenkbf9e3b32004-02-12 00:47:09 +0000274 addr &= ~(4096 - 1);
275
276 debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
277
278 /*
279 * reserve memory for malloc() arena
280 */
281 addr_sp = addr - TOTAL_MALLOC_LEN;
282 debug ("Reserving %dk for malloc() at: %08lx\n",
283 TOTAL_MALLOC_LEN >> 10, addr_sp);
284
285 /*
286 * (permanently) allocate a Board Info struct
287 * and a permanent copy of the "global" data
288 */
289 addr_sp -= sizeof (bd_t);
290 bd = (bd_t *) addr_sp;
291 gd->bd = bd;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200292 debug ("Reserving %zu Bytes for Board Info at: %08lx\n",
wdenkbf9e3b32004-02-12 00:47:09 +0000293 sizeof (bd_t), addr_sp);
294 addr_sp -= sizeof (gd_t);
295 id = (gd_t *) addr_sp;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200296 debug ("Reserving %zu Bytes for Global Data at: %08lx\n",
wdenkbf9e3b32004-02-12 00:47:09 +0000297 sizeof (gd_t), addr_sp);
298
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200299 /* Reserve memory for boot params. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200300 addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN;
wdenkbf9e3b32004-02-12 00:47:09 +0000301 bd->bi_boot_params = addr_sp;
302 debug ("Reserving %dk for boot parameters at: %08lx\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200303 CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp);
wdenkbf9e3b32004-02-12 00:47:09 +0000304
305 /*
306 * Finally, we set up a new (bigger) stack.
307 *
308 * Leave some safety gap for SP, force alignment on 16 byte boundary
309 * Clear initial stack frame
310 */
311 addr_sp -= 16;
312 addr_sp &= ~0xF;
Marian Balakowicz483a0cf2006-05-09 11:28:36 +0200313
314 paddr = (ulong *)addr_sp;
315 *paddr-- = 0;
316 *paddr-- = 0;
317 addr_sp = (ulong)paddr;
Wolfgang Denk977b50f2006-05-10 17:43:20 +0200318
wdenkbf9e3b32004-02-12 00:47:09 +0000319 debug ("Stack Pointer at: %08lx\n", addr_sp);
wdenk4e5ca3e2003-12-08 01:34:36 +0000320
321 /*
322 * Save local variables to board info struct
323 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200324 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM memory */
wdenkbf9e3b32004-02-12 00:47:09 +0000325 bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200326#ifdef CONFIG_SYS_INIT_RAM_ADDR
327 bd->bi_sramstart = CONFIG_SYS_INIT_RAM_ADDR; /* start of SRAM memory */
Wolfgang Denk553f0982010-10-26 13:32:32 +0200328 bd->bi_sramsize = CONFIG_SYS_INIT_RAM_SIZE; /* size of SRAM memory */
TsiChung Liew8e585f02007-06-18 13:50:13 -0500329#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200330 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
wdenk4e5ca3e2003-12-08 01:34:36 +0000331
wdenkbf9e3b32004-02-12 00:47:09 +0000332 bd->bi_bootflags = bootflag; /* boot / reboot flag (for LynxOS) */
wdenk4e5ca3e2003-12-08 01:34:36 +0000333
wdenkbf9e3b32004-02-12 00:47:09 +0000334 WATCHDOG_RESET ();
335 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
336 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500337#ifdef CONFIG_PCI
338 bd->bi_pcifreq = gd->pci_clk; /* PCI Freq in Hz */
339#endif
340#ifdef CONFIG_EXTRA_CLOCK
Simon Glass7e2592f2012-12-13 20:49:07 +0000341 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
342 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
343 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500344#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000345 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
wdenk4e5ca3e2003-12-08 01:34:36 +0000346
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200347#ifdef CONFIG_SYS_EXTBDINFO
wdenk4e5ca3e2003-12-08 01:34:36 +0000348 strncpy (bd->bi_s_version, "1.2", sizeof (bd->bi_s_version));
wdenkbf9e3b32004-02-12 00:47:09 +0000349 strncpy (bd->bi_r_version, U_BOOT_VERSION, sizeof (bd->bi_r_version));
wdenk4e5ca3e2003-12-08 01:34:36 +0000350#endif
351
wdenkbf9e3b32004-02-12 00:47:09 +0000352 WATCHDOG_RESET ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000353
wdenkbf9e3b32004-02-12 00:47:09 +0000354#ifdef CONFIG_POST
355 post_bootmode_init();
356 post_run (NULL, POST_ROM | post_bootmode_get(0));
357#endif
358
359 WATCHDOG_RESET();
360
361 memcpy (id, (void *)gd, sizeof (gd_t));
362
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200363 debug ("Start relocate of code from %08x to %08lx\n", CONFIG_SYS_MONITOR_BASE, addr);
wdenkbf9e3b32004-02-12 00:47:09 +0000364 relocate_code (addr_sp, id, addr);
365
366 /* NOTREACHED - jump_to_ram() does not return */
wdenk4e5ca3e2003-12-08 01:34:36 +0000367}
368
wdenk4e5ca3e2003-12-08 01:34:36 +0000369/************************************************************************
370 *
371 * This is the next part if the initialization sequence: we are now
372 * running from RAM and have a "normal" C environment, i. e. global
373 * data can be written, BSS has been cleared, the stack size in not
374 * that critical any more, etc.
375 *
376 ************************************************************************
377 */
wdenkbf9e3b32004-02-12 00:47:09 +0000378void board_init_r (gd_t *id, ulong dest_addr)
wdenk4e5ca3e2003-12-08 01:34:36 +0000379{
Marek Vasutc59ac902012-10-03 13:28:46 +0000380 char *s __maybe_unused;
wdenk4e5ca3e2003-12-08 01:34:36 +0000381 bd_t *bd;
382
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200383#ifndef CONFIG_ENV_IS_NOWHERE
wdenkbf9e3b32004-02-12 00:47:09 +0000384 extern char * env_name_spec;
385#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200386#ifndef CONFIG_SYS_NO_FLASH
wdenkbf9e3b32004-02-12 00:47:09 +0000387 ulong flash_size;
388#endif
389 gd = id; /* initialize RAM version of global data */
wdenk4e5ca3e2003-12-08 01:34:36 +0000390 bd = gd->bd;
wdenkbf9e3b32004-02-12 00:47:09 +0000391
392 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
393
wdenkbf9e3b32004-02-12 00:47:09 +0000394 WATCHDOG_RESET ();
395
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200396 gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
wdenkbf9e3b32004-02-12 00:47:09 +0000397
angelofd70aa42012-11-23 12:23:39 +0000398 serial_initialize();
399
Jens Scharsig (BuS Elektronik)aea5eee2013-01-16 08:24:10 +0100400 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
401
wdenkbf9e3b32004-02-12 00:47:09 +0000402 monitor_flash_len = (ulong)&__init_end - dest_addr;
403
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200404#if defined(CONFIG_NEEDS_MANUAL_RELOC)
wdenkbf9e3b32004-02-12 00:47:09 +0000405 /*
406 * We have to relocate the command table manually
407 */
Marek Vasut6c7c9462012-10-12 10:27:04 +0000408 fixup_cmdtable(ll_entry_start(cmd_tbl_t, cmd),
409 ll_entry_count(cmd_tbl_t, cmd));
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200410#endif /* defined(CONFIG_NEEDS_MANUAL_RELOC) */
wdenkbf9e3b32004-02-12 00:47:09 +0000411
wdenkbf9e3b32004-02-12 00:47:09 +0000412 /* there are some other pointer constants we must deal with */
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200413#ifndef CONFIG_ENV_IS_NOWHERE
wdenkbf9e3b32004-02-12 00:47:09 +0000414 env_name_spec += gd->reloc_off;
415#endif
416
417 WATCHDOG_RESET ();
418
419#ifdef CONFIG_LOGBUFFER
420 logbuff_init_ptrs ();
421#endif
422#ifdef CONFIG_POST
423 post_output_backlog ();
424 post_reloc ();
425#endif
426 WATCHDOG_RESET();
427
428#if 0
429 /* instruction cache enabled in cpu_init_f() for faster relocation */
430 icache_enable (); /* it's time to enable the instruction cache */
431#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000432
433 /*
434 * Setup trap handlers
435 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200436 trap_init (CONFIG_SYS_SDRAM_BASE);
wdenk4e5ca3e2003-12-08 01:34:36 +0000437
Peter Tyserd4e8ada2009-08-21 23:05:21 -0500438 /* The Malloc area is immediately below the monitor copy in DRAM */
Peter Tysera483a162009-08-21 23:05:20 -0500439 mem_malloc_init (CONFIG_SYS_MONITOR_BASE + gd->reloc_off -
440 TOTAL_MALLOC_LEN, TOTAL_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200441
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200442#if !defined(CONFIG_SYS_NO_FLASH)
Peter Tysereddf52b2010-12-28 18:12:05 -0600443 puts ("Flash: ");
wdenk4e5ca3e2003-12-08 01:34:36 +0000444
445 if ((flash_size = flash_init ()) > 0) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200446# ifdef CONFIG_SYS_FLASH_CHECKSUM
wdenkbf9e3b32004-02-12 00:47:09 +0000447 print_size (flash_size, "");
wdenk4e5ca3e2003-12-08 01:34:36 +0000448 /*
449 * Compute and print flash CRC if flashchecksum is set to 'y'
450 *
wdenkbf9e3b32004-02-12 00:47:09 +0000451 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
wdenk4e5ca3e2003-12-08 01:34:36 +0000452 */
Joe Hershbergerec8a2522012-12-11 22:16:22 -0600453 if (getenv_yesno("flashchecksum") == 1) {
TsiChung Liew11d88b22009-06-12 13:03:34 +0000454 printf (" CRC: %08X",
wdenkbf9e3b32004-02-12 00:47:09 +0000455 crc32 (0,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200456 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
wdenkbf9e3b32004-02-12 00:47:09 +0000457 flash_size)
458 );
wdenk4e5ca3e2003-12-08 01:34:36 +0000459 }
460 putc ('\n');
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200461# else /* !CONFIG_SYS_FLASH_CHECKSUM */
wdenkbf9e3b32004-02-12 00:47:09 +0000462 print_size (flash_size, "\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200463# endif /* CONFIG_SYS_FLASH_CHECKSUM */
wdenk4e5ca3e2003-12-08 01:34:36 +0000464 } else {
465 puts (failed);
466 hang ();
467 }
468
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200469 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE; /* update start of FLASH memory */
wdenkbf9e3b32004-02-12 00:47:09 +0000470 bd->bi_flashsize = flash_size; /* size of FLASH memory (final value) */
471 bd->bi_flashoffset = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200472#else /* CONFIG_SYS_NO_FLASH */
wdenkbf9e3b32004-02-12 00:47:09 +0000473 bd->bi_flashsize = 0;
474 bd->bi_flashstart = 0;
475 bd->bi_flashoffset = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200476#endif /* !CONFIG_SYS_NO_FLASH */
wdenk4e5ca3e2003-12-08 01:34:36 +0000477
478 WATCHDOG_RESET ();
479
480 /* initialize higher level parts of CPU like time base and timers */
481 cpu_init_r ();
482
483 WATCHDOG_RESET ();
484
wdenk4e5ca3e2003-12-08 01:34:36 +0000485#ifdef CONFIG_SPI
Jean-Christophe PLAGNIOL-VILLARDbb1f8b42008-09-05 09:19:30 +0200486# if !defined(CONFIG_ENV_IS_IN_EEPROM)
wdenk4e5ca3e2003-12-08 01:34:36 +0000487 spi_init_f ();
488# endif
489 spi_init_r ();
490#endif
491
Heiko Schocher3f4978c2012-01-16 21:12:24 +0000492#if defined(CONFIG_SYS_I2C)
493 /* Adjust I2C subsystem pointers after relocation */
494 i2c_reloc_fixup();
495#endif
496
wdenk4e5ca3e2003-12-08 01:34:36 +0000497 /* relocate environment function pointers etc. */
498 env_relocate ();
499
wdenk4e5ca3e2003-12-08 01:34:36 +0000500 WATCHDOG_RESET ();
501
TsiChung Liew8e585f02007-06-18 13:50:13 -0500502#if defined(CONFIG_PCI)
503 /*
504 * Do pci configuration
505 */
506 pci_init ();
507#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000508
509 /** leave this here (after malloc(), environment and PCI are working) **/
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200510 /* Initialize stdio devices */
511 stdio_init ();
wdenkbf9e3b32004-02-12 00:47:09 +0000512
513 /* Initialize the jump table for applications */
514 jumptable_init ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000515
516 /* Initialize the console (after the relocation and devices init) */
wdenkbf9e3b32004-02-12 00:47:09 +0000517 console_init_r ();
wdenk4e5ca3e2003-12-08 01:34:36 +0000518
stroesee2c22d72004-12-16 17:55:22 +0000519#if defined(CONFIG_MISC_INIT_R)
520 /* miscellaneous platform dependent initialisations */
521 misc_init_r ();
522#endif
523
Jon Loeliger7def6b32007-07-09 18:02:11 -0500524#if defined(CONFIG_CMD_KGDB)
wdenk4e5ca3e2003-12-08 01:34:36 +0000525 WATCHDOG_RESET ();
526 puts ("KGDB: ");
527 kgdb_init ();
528#endif
529
wdenkbf9e3b32004-02-12 00:47:09 +0000530 debug ("U-Boot relocated to %08lx\n", dest_addr);
531
wdenk4e5ca3e2003-12-08 01:34:36 +0000532 /*
533 * Enable Interrupts
534 */
535 interrupt_init ();
wdenkbf9e3b32004-02-12 00:47:09 +0000536
537 /* Must happen after interrupts are initialized since
538 * an irq handler gets installed
539 */
540 timer_init();
541
wdenkbf9e3b32004-02-12 00:47:09 +0000542#ifdef CONFIG_STATUS_LED
543 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
544#endif
545
wdenk4e5ca3e2003-12-08 01:34:36 +0000546 udelay (20);
wdenkbf9e3b32004-02-12 00:47:09 +0000547
wdenk4e5ca3e2003-12-08 01:34:36 +0000548 /* Insert function pointers now that we have relocated the code */
549
550 /* Initialize from environment */
Simon Glass77b8f202011-10-13 14:43:09 +0000551 load_addr = getenv_ulong("loadaddr", 16, load_addr);
wdenk4e5ca3e2003-12-08 01:34:36 +0000552
553 WATCHDOG_RESET ();
554
Jon Loeliger7def6b32007-07-09 18:02:11 -0500555#if defined(CONFIG_CMD_DOC)
wdenk4e5ca3e2003-12-08 01:34:36 +0000556 WATCHDOG_RESET ();
wdenkbf9e3b32004-02-12 00:47:09 +0000557 puts ("DOC: ");
558 doc_init ();
559#endif
560
Jon Loeliger7def6b32007-07-09 18:02:11 -0500561#if defined(CONFIG_CMD_NAND)
wdenkbf9e3b32004-02-12 00:47:09 +0000562 WATCHDOG_RESET ();
Markus Klotzbuecherd860c342006-04-25 17:00:33 +0200563 puts ("NAND: ");
wdenkbf9e3b32004-02-12 00:47:09 +0000564 nand_init(); /* go init the NAND */
565#endif
566
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200567#ifdef CONFIG_BITBANGMII
568 bb_miiphy_init();
569#endif
Stefan Roesed61ea142007-08-15 14:51:27 +0200570#if defined(CONFIG_CMD_NET)
wdenkbf9e3b32004-02-12 00:47:09 +0000571 WATCHDOG_RESET();
TsiChung Liew8e585f02007-06-18 13:50:13 -0500572#if defined(FEC_ENET)
wdenkbf9e3b32004-02-12 00:47:09 +0000573 eth_init(bd);
574#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500575 puts ("Net: ");
TsiChungLiewab77bc52007-08-15 15:39:17 -0500576 eth_initialize (bd);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500577#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000578
579#ifdef CONFIG_POST
580 post_run (NULL, POST_RAM | post_bootmode_get(0));
wdenk4e5ca3e2003-12-08 01:34:36 +0000581#endif
582
Stefan Roesed61ea142007-08-15 14:51:27 +0200583#if defined(CONFIG_CMD_PCMCIA) \
584 && !defined(CONFIG_CMD_IDE)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500585 WATCHDOG_RESET ();
586 puts ("PCMCIA:");
587 pcmcia_init ();
588#endif
589
Stefan Roesed61ea142007-08-15 14:51:27 +0200590#if defined(CONFIG_CMD_IDE)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500591 WATCHDOG_RESET ();
592 puts ("IDE: ");
593 ide_init ();
Stefan Roesed61ea142007-08-15 14:51:27 +0200594#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500595
wdenk4e5ca3e2003-12-08 01:34:36 +0000596#ifdef CONFIG_LAST_STAGE_INIT
597 WATCHDOG_RESET ();
598 /*
599 * Some parts can be only initialized if all others (like
600 * Interrupts) are up and running (i.e. the PC-style ISA
601 * keyboard).
602 */
603 last_stage_init ();
604#endif
605
Jon Loeliger7def6b32007-07-09 18:02:11 -0500606#if defined(CONFIG_CMD_BEDBUG)
wdenk4e5ca3e2003-12-08 01:34:36 +0000607 WATCHDOG_RESET ();
608 bedbug_init ();
609#endif
610
wdenkbf9e3b32004-02-12 00:47:09 +0000611#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
wdenk4e5ca3e2003-12-08 01:34:36 +0000612 /*
613 * Export available size of memory for Linux,
614 * taking into account the protected RAM at top of memory
615 */
616 {
Simon Glass77b8f202011-10-13 14:43:09 +0000617 ulong pram = 0;
Simon Glassa5466652012-01-05 17:54:56 +0000618 char memsz[32];
wdenk4e5ca3e2003-12-08 01:34:36 +0000619
Simon Glass77b8f202011-10-13 14:43:09 +0000620#ifdef CONFIG_PRAM
621 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
wdenkbf9e3b32004-02-12 00:47:09 +0000622#endif
623#ifdef CONFIG_LOGBUFFER
624 /* Also take the logbuffer into account (pram is in kB) */
625 pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024;
626#endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000627 sprintf (memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
628 setenv ("mem", memsz);
629 }
630#endif
631
wdenkbf9e3b32004-02-12 00:47:09 +0000632#ifdef CONFIG_MODEM_SUPPORT
633 {
634 extern int do_mdm_init;
635 do_mdm_init = gd->do_mdm_init;
636 }
637#endif
638
639#ifdef CONFIG_WATCHDOG
640 /* disable watchdog if environment is set */
641 if ((s = getenv ("watchdog")) != NULL) {
642 if (strncmp (s, "off", 3) == 0) {
643 WATCHDOG_DISABLE ();
644 }
645 }
646#endif /* CONFIG_WATCHDOG*/
647
648
wdenk4e5ca3e2003-12-08 01:34:36 +0000649 /* Initialization complete - start the monitor */
650
651 /* main_loop() can return to retry autoboot, if so just run it again. */
652 for (;;) {
653 WATCHDOG_RESET ();
654 main_loop ();
655 }
656
657 /* NOTREACHED - no way out of command loop except booting */
658}