blob: 02962054f69edb9afc384a52522efb4c4d2d01da [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +00002 * (C) Copyright 2000-2011
wdenkfe8c2802002-11-03 00:38:21 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkfe8c2802002-11-03 00:38:21 +00006 */
7
8#include <common.h>
9#include <watchdog.h>
10#include <command.h>
11#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +020012#include <stdio_dev.h>
wdenkfe8c2802002-11-03 00:38:21 +000013#ifdef CONFIG_8xx
14#include <mpc8xx.h>
15#endif
wdenk359733b2003-03-31 17:27:09 +000016#ifdef CONFIG_5xx
17#include <mpc5xx.h>
18#endif
wdenkbe9c1cb2004-02-24 02:00:03 +000019#ifdef CONFIG_MPC5xxx
wdenk21136db2003-07-16 21:53:01 +000020#include <mpc5xxx.h>
21#endif
Jon Loeliger6b233052007-07-09 18:02:11 -050022#if defined(CONFIG_CMD_IDE)
wdenkfe8c2802002-11-03 00:38:21 +000023#include <ide.h>
24#endif
Jon Loeliger6b233052007-07-09 18:02:11 -050025#if defined(CONFIG_CMD_SCSI)
wdenkfe8c2802002-11-03 00:38:21 +000026#include <scsi.h>
27#endif
Jon Loeliger6b233052007-07-09 18:02:11 -050028#if defined(CONFIG_CMD_KGDB)
wdenkfe8c2802002-11-03 00:38:21 +000029#include <kgdb.h>
30#endif
31#ifdef CONFIG_STATUS_LED
32#include <status_led.h>
33#endif
34#include <net.h>
Andy Flemingad347bb2008-10-30 16:41:01 -050035#ifdef CONFIG_GENERIC_MMC
36#include <mmc.h>
37#endif
wdenk7ac16102004-08-01 22:48:16 +000038#include <serial.h>
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020039#ifdef CONFIG_SYS_ALLOC_DPRAM
Jon Loeligerf5ad3782005-07-23 10:37:35 -050040#if !defined(CONFIG_CPM2)
wdenkfe8c2802002-11-03 00:38:21 +000041#include <commproc.h>
42#endif
wdenk541a76d2003-05-03 15:50:43 +000043#endif
wdenkfe8c2802002-11-03 00:38:21 +000044#include <version.h>
45#if defined(CONFIG_BAB7xx)
46#include <w83c553f.h>
47#endif
48#include <dtt.h>
49#if defined(CONFIG_POST)
50#include <post.h>
51#endif
wdenk56f94be2002-11-05 16:35:14 +000052#if defined(CONFIG_LOGBUFFER)
53#include <logbuff.h>
54#endif
Wolfgang Denk1e0f07e2009-07-26 23:28:02 +020055#if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
wdenk9c53f402003-10-15 23:53:47 +000056#include <asm/cache.h>
57#endif
wdenkb983fa22004-01-16 00:30:56 +000058#ifdef CONFIG_PS2KBD
59#include <keyboard.h>
60#endif
wdenkfe8c2802002-11-03 00:38:21 +000061
Kumar Gala9ac287a2008-12-16 14:59:20 -060062#ifdef CONFIG_ADDR_MAP
63#include <asm/mmu.h>
64#endif
65
Kumar Gala04a3b142009-03-31 17:58:13 -050066#ifdef CONFIG_MP
67#include <asm/mp.h>
68#endif
69
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +020070#ifdef CONFIG_BITBANGMII
71#include <miiphy.h>
72#endif
73
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020074#ifdef CONFIG_SYS_UPDATE_FLASH_SIZE
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +000075extern int update_flash_size(int flash_size);
Heiko Schocher3ec43662006-12-21 17:17:02 +010076#endif
77
Wolfgang Denkd2a7a742007-06-08 10:24:58 +020078#if defined(CONFIG_SC3)
Heiko Schocher3c58a992007-01-11 15:44:44 +010079extern void sc3_read_eeprom(void);
80#endif
81
Jon Loeliger6b233052007-07-09 18:02:11 -050082#if defined(CONFIG_CMD_DOC)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +000083void doc_init(void);
wdenkfe8c2802002-11-03 00:38:21 +000084#endif
Heiko Schocher479a4cf2013-01-29 08:53:15 +010085#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
wdenkfe8c2802002-11-03 00:38:21 +000086#include <i2c.h>
87#endif
Ben Warren7efe9272008-01-16 22:37:35 -050088#include <spi.h>
Scott Woode898dfd2008-05-22 10:49:46 -050089#include <nand.h>
wdenkfe8c2802002-11-03 00:38:21 +000090
91static char *failed = "*** failed ***\n";
92
Wolfgang Denkcd4e42e2010-10-05 22:54:53 +020093#if defined(CONFIG_OXC) || defined(CONFIG_RMU)
wdenkfe8c2802002-11-03 00:38:21 +000094extern flash_info_t flash_info[];
wdenk9c07bf62004-04-10 20:43:50 +000095#endif
wdenkfe8c2802002-11-03 00:38:21 +000096
Heiko Schocher3c58a992007-01-11 15:44:44 +010097#if defined(CONFIG_START_IDE)
98extern int board_start_ide(void);
99#endif
wdenkfe8c2802002-11-03 00:38:21 +0000100#include <environment.h>
Wolfgang Denk6405a152006-03-31 18:32:53 +0200101
Wolfgang Denkf4a70e42005-08-30 14:13:23 +0200102DECLARE_GLOBAL_DATA_PTR;
wdenkfe8c2802002-11-03 00:38:21 +0000103
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200104#if !defined(CONFIG_SYS_MEM_TOP_HIDE)
105#define CONFIG_SYS_MEM_TOP_HIDE 0
Stefan Roese3b423322008-03-27 10:24:03 +0100106#endif
107
wdenkb9a83a92003-05-30 12:48:29 +0000108extern ulong __init_end;
Simon Glassed70c8f2013-03-14 06:54:53 +0000109extern ulong __bss_end;
wdenkb9a83a92003-05-30 12:48:29 +0000110ulong monitor_flash_len;
111
Jon Loeliger6b233052007-07-09 18:02:11 -0500112#if defined(CONFIG_CMD_BEDBUG)
wdenk57b2d802003-06-27 21:31:46 +0000113#include <bedbug/type.h>
114#endif
115
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000116/*
117 * Utilities
wdenkfe8c2802002-11-03 00:38:21 +0000118 */
119
120/*
wdenkfe8c2802002-11-03 00:38:21 +0000121 * All attempts to come up with a "common" initialization sequence
122 * that works for all boards and architectures failed: some of the
123 * requirements are just _too_ different. To get rid of the resulting
124 * mess of board dependend #ifdef'ed code we now make the whole
125 * initialization sequence configurable to the user.
126 *
127 * The requirements for any new initalization function is simple: it
128 * receives a pointer to the "global data" structure as it's only
129 * argument, and returns an integer return code, where 0 means
130 * "continue" and != 0 means "fatal error, hang the system".
131 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000132typedef int (init_fnc_t)(void);
wdenkfe8c2802002-11-03 00:38:21 +0000133
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000134/*
135 * Init Utilities
136 *
wdenkfe8c2802002-11-03 00:38:21 +0000137 * Some of this code should be moved into the core functions,
138 * but let's get it working (again) first...
139 */
140
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000141static int init_baudrate(void)
wdenkfe8c2802002-11-03 00:38:21 +0000142{
Simon Glass44fc6692011-10-13 14:43:12 +0000143 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
144 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000145}
146
147/***********************************************************************/
148
Kim Phillipse16737f2012-10-29 13:34:29 +0000149static void __board_add_ram_info(int use_default)
Kim Phillips0e3945c2007-08-16 22:52:39 -0500150{
151 /* please define platform specific board_add_ram_info() */
152}
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000153
154void board_add_ram_info(int)
155 __attribute__ ((weak, alias("__board_add_ram_info")));
Kim Phillips0e3945c2007-08-16 22:52:39 -0500156
Kim Phillipse16737f2012-10-29 13:34:29 +0000157static int __board_flash_wp_on(void)
John Schmoller9a736012010-09-29 14:05:44 -0500158{
159 /*
160 * Most flashes can't be detected when write protection is enabled,
161 * so provide a way to let U-Boot gracefully ignore write protected
162 * devices.
163 */
164 return 0;
165}
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000166
167int board_flash_wp_on(void)
168 __attribute__ ((weak, alias("__board_flash_wp_on")));
Stefan Roese09554022005-11-30 13:06:40 +0100169
Kim Phillipse16737f2012-10-29 13:34:29 +0000170static void __cpu_secondary_init_r(void)
Kumar Gala2ef216b2011-02-02 11:23:50 -0600171{
172}
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000173
Kumar Gala2ef216b2011-02-02 11:23:50 -0600174void cpu_secondary_init_r(void)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000175 __attribute__ ((weak, alias("__cpu_secondary_init_r")));
Kumar Gala2ef216b2011-02-02 11:23:50 -0600176
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000177static int init_func_ram(void)
wdenkfe8c2802002-11-03 00:38:21 +0000178{
wdenkfe8c2802002-11-03 00:38:21 +0000179#ifdef CONFIG_BOARD_TYPES
180 int board_type = gd->board_type;
181#else
182 int board_type = 0; /* use dummy arg */
183#endif
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000184 puts("DRAM: ");
wdenkfe8c2802002-11-03 00:38:21 +0000185
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000186 gd->ram_size = initdram(board_type);
187
188 if (gd->ram_size > 0) {
189 print_size(gd->ram_size, "");
Stefan Roese09554022005-11-30 13:06:40 +0100190 board_add_ram_info(0);
Stefan Roese09554022005-11-30 13:06:40 +0100191 putc('\n');
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000192 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000193 }
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000194 puts(failed);
195 return 1;
wdenkfe8c2802002-11-03 00:38:21 +0000196}
197
198/***********************************************************************/
199
Heiko Schocher479a4cf2013-01-29 08:53:15 +0100200#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000201static int init_func_i2c(void)
wdenkfe8c2802002-11-03 00:38:21 +0000202{
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000203 puts("I2C: ");
Heiko Schochere0e55bc2012-01-16 21:12:24 +0000204#ifdef CONFIG_SYS_I2C
205 i2c_init_all();
206#else
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000207 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
Heiko Schochere0e55bc2012-01-16 21:12:24 +0000208#endif
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000209 puts("ready\n");
210 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000211}
212#endif
213
Ben Warren7efe9272008-01-16 22:37:35 -0500214#if defined(CONFIG_HARD_SPI)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000215static int init_func_spi(void)
Ben Warren7efe9272008-01-16 22:37:35 -0500216{
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000217 puts("SPI: ");
218 spi_init();
219 puts("ready\n");
220 return 0;
Ben Warren7efe9272008-01-16 22:37:35 -0500221}
222#endif
223
wdenkfe8c2802002-11-03 00:38:21 +0000224/***********************************************************************/
225
226#if defined(CONFIG_WATCHDOG)
Simon Glass6f984902013-03-05 14:39:42 +0000227int init_func_watchdog_init(void)
wdenkfe8c2802002-11-03 00:38:21 +0000228{
Boschung, Rainer6d181852014-06-03 09:05:15 +0200229#if defined(CONFIG_MPC85xx)
230 init_85xx_watchdog();
231#endif
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000232 puts(" Watchdog enabled\n");
233 WATCHDOG_RESET();
234 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000235}
wdenkfe8c2802002-11-03 00:38:21 +0000236
Simon Glass6f984902013-03-05 14:39:42 +0000237int init_func_watchdog_reset(void)
wdenkfe8c2802002-11-03 00:38:21 +0000238{
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000239 WATCHDOG_RESET();
240 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000241}
wdenkfe8c2802002-11-03 00:38:21 +0000242#endif /* CONFIG_WATCHDOG */
243
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000244/*
245 * Initialization sequence
wdenkfe8c2802002-11-03 00:38:21 +0000246 */
247
Kim Phillipse16737f2012-10-29 13:34:29 +0000248static init_fnc_t *init_sequence[] = {
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530249#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
250 probecpu,
251#endif
Anton Vorontsov9522f572009-10-12 23:55:39 +0400252#if defined(CONFIG_BOARD_EARLY_INIT_F)
253 board_early_init_f,
254#endif
wdenk20bddb32004-09-28 17:59:53 +0000255#if !defined(CONFIG_8xx_CPUCLK_DEFAULT)
wdenkfe8c2802002-11-03 00:38:21 +0000256 get_clocks, /* get CPU and bus clocks (etc.) */
Markus Klotzbuecher13af9f02006-07-12 15:26:01 +0200257#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
258 && !defined(CONFIG_TQM885D)
wdenkc78bf132004-04-24 23:23:30 +0000259 adjust_sdram_tbs_8xx,
260#endif
wdenkfe8c2802002-11-03 00:38:21 +0000261 init_timebase,
wdenkb50cde52004-01-24 20:25:54 +0000262#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200263#ifdef CONFIG_SYS_ALLOC_DPRAM
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500264#if !defined(CONFIG_CPM2)
wdenkfe8c2802002-11-03 00:38:21 +0000265 dpram_init,
266#endif
wdenk541a76d2003-05-03 15:50:43 +0000267#endif
wdenkfe8c2802002-11-03 00:38:21 +0000268#if defined(CONFIG_BOARD_POSTCLK_INIT)
269 board_postclk_init,
270#endif
271 env_init,
wdenk20bddb32004-09-28 17:59:53 +0000272#if defined(CONFIG_8xx_CPUCLK_DEFAULT)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000273 /* get CPU and bus clocks according to the environment variable */
274 get_clocks_866,
275 /* adjust sdram refresh rate according to the new clock */
276 sdram_adjust_866,
wdenkb50cde52004-01-24 20:25:54 +0000277 init_timebase,
278#endif
wdenkfe8c2802002-11-03 00:38:21 +0000279 init_baudrate,
280 serial_init,
281 console_init_f,
282 display_options,
Masahiro Yamada5a2bf982014-03-05 17:40:10 +0900283#if defined(CONFIG_MPC8260)
wdenkfe8c2802002-11-03 00:38:21 +0000284 prt_8260_rsr,
285 prt_8260_clks,
Masahiro Yamada5a2bf982014-03-05 17:40:10 +0900286#endif /* CONFIG_MPC8260 */
Peter Tyser62e73982009-05-22 17:23:24 -0500287#if defined(CONFIG_MPC83xx)
Dave Liuebd35f82007-06-25 10:41:56 +0800288 prt_83xx_rsr,
289#endif
wdenkfe8c2802002-11-03 00:38:21 +0000290 checkcpu,
wdenkbe9c1cb2004-02-24 02:00:03 +0000291#if defined(CONFIG_MPC5xxx)
wdenk21136db2003-07-16 21:53:01 +0000292 prt_mpc5xxx_clks,
wdenkbe9c1cb2004-02-24 02:00:03 +0000293#endif /* CONFIG_MPC5xxx */
wdenkfe8c2802002-11-03 00:38:21 +0000294 checkboard,
295 INIT_FUNC_WATCHDOG_INIT
wdenkda55c6e2004-01-20 23:12:12 +0000296#if defined(CONFIG_MISC_INIT_F)
wdenkfe8c2802002-11-03 00:38:21 +0000297 misc_init_f,
298#endif
299 INIT_FUNC_WATCHDOG_RESET
Heiko Schocher479a4cf2013-01-29 08:53:15 +0100300#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
wdenkfe8c2802002-11-03 00:38:21 +0000301 init_func_i2c,
302#endif
Ben Warren7efe9272008-01-16 22:37:35 -0500303#if defined(CONFIG_HARD_SPI)
304 init_func_spi,
305#endif
wdenkc08f1582003-04-27 22:52:51 +0000306#ifdef CONFIG_POST
307 post_init_f,
308#endif
Simon Glassdb397fa2013-03-11 14:30:37 +0000309 INIT_FUNC_WATCHDOG_RESET
310 init_func_ram,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200311#if defined(CONFIG_SYS_DRAM_TEST)
wdenkfe8c2802002-11-03 00:38:21 +0000312 testdram,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200313#endif /* CONFIG_SYS_DRAM_TEST */
wdenkfe8c2802002-11-03 00:38:21 +0000314 INIT_FUNC_WATCHDOG_RESET
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000315 NULL, /* Terminate this list */
wdenkfe8c2802002-11-03 00:38:21 +0000316};
317
Kim Phillipse16737f2012-10-29 13:34:29 +0000318static int __fixup_cpu(void)
York Sun7b2947f2012-08-17 08:20:22 +0000319{
320 return 0;
321}
322
323int fixup_cpu(void) __attribute__((weak, alias("__fixup_cpu")));
324
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000325/*
wdenkfe8c2802002-11-03 00:38:21 +0000326 * This is the first part of the initialization sequence that is
327 * implemented in C, but still running from ROM.
328 *
329 * The main purpose is to provide a (serial) console interface as
330 * soon as possible (so we can see any error messages), and to
331 * initialize the RAM so that we can relocate the monitor code to
332 * RAM.
333 *
334 * Be aware of the restrictions: global data is read-only, BSS is not
335 * initialized, and stack space is limited to a few kB.
wdenkfe8c2802002-11-03 00:38:21 +0000336 */
337
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000338void board_init_f(ulong bootflag)
wdenkfe8c2802002-11-03 00:38:21 +0000339{
wdenkfe8c2802002-11-03 00:38:21 +0000340 bd_t *bd;
341 ulong len, addr, addr_sp;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200342 ulong *s;
wdenkfe8c2802002-11-03 00:38:21 +0000343 gd_t *id;
344 init_fnc_t **init_fnc_ptr;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000345
wdenkfe8c2802002-11-03 00:38:21 +0000346#ifdef CONFIG_PRAM
wdenkfe8c2802002-11-03 00:38:21 +0000347 ulong reg;
wdenkfe8c2802002-11-03 00:38:21 +0000348#endif
Tang Yuantiana7364af2014-04-17 15:33:46 +0800349#ifdef CONFIG_DEEP_SLEEP
350 const ccsr_gur_t *gur = (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
351 struct ccsr_scfg *scfg = (void *)CONFIG_SYS_MPC85xx_SCFG;
352 u32 start_addr;
353 typedef void (*func_t)(void);
354 func_t kernel_resume;
355#endif
wdenkfe8c2802002-11-03 00:38:21 +0000356
357 /* Pointer is writable since we allocated a register for it */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200358 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
wdenk3337af42004-07-01 20:28:03 +0000359 /* compiler optimization barrier needed for GCC >= 3.4 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000360 __asm__ __volatile__("":::"memory");
wdenkfe8c2802002-11-03 00:38:21 +0000361
Detlev Zundela2ea2762010-01-22 14:47:59 +0100362#if !defined(CONFIG_CPM2) && !defined(CONFIG_MPC512X) && \
363 !defined(CONFIG_MPC83xx) && !defined(CONFIG_MPC85xx) && \
364 !defined(CONFIG_MPC86xx)
wdenkfe8c2802002-11-03 00:38:21 +0000365 /* Clear initial global data */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000366 memset((void *) gd, 0, sizeof(gd_t));
wdenkfe8c2802002-11-03 00:38:21 +0000367#endif
368
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000369 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr)
370 if ((*init_fnc_ptr) () != 0)
371 hang();
wdenkfe8c2802002-11-03 00:38:21 +0000372
Tang Yuantiana7364af2014-04-17 15:33:46 +0800373#ifdef CONFIG_DEEP_SLEEP
374 /* Jump to kernel in deep sleep case */
375 if (in_be32(&gur->scrtsr[0]) & (1 << 3)) {
Tang Yuantianefd6da62014-07-04 17:39:26 +0800376 l2cache_init();
377#if defined(CONFIG_RAMBOOT_PBL)
378 disable_cpc_sram();
379#endif
380 enable_cpc();
Tang Yuantiana7364af2014-04-17 15:33:46 +0800381 start_addr = in_be32(&scfg->sparecr[1]);
382 kernel_resume = (func_t)start_addr;
383 kernel_resume();
384 }
385#endif
386
Bernhard Kaindl920fd2b2011-10-16 00:07:08 +0000387#ifdef CONFIG_POST
388 post_bootmode_init();
Kim Phillipse16737f2012-10-29 13:34:29 +0000389 post_run(NULL, POST_ROM | post_bootmode_get(NULL));
Bernhard Kaindl920fd2b2011-10-16 00:07:08 +0000390#endif
391
392 WATCHDOG_RESET();
393
wdenkfe8c2802002-11-03 00:38:21 +0000394 /*
395 * Now that we have DRAM mapped and working, we can
396 * relocate the code and continue running from DRAM.
397 *
398 * Reserve memory at end of RAM for (top down in that order):
Stefan Roesea13709f2008-03-26 10:14:11 +0100399 * - area that won't get touched by U-Boot and Linux (optional)
wdenk57b2d802003-06-27 21:31:46 +0000400 * - kernel log buffer
wdenkfe8c2802002-11-03 00:38:21 +0000401 * - protected RAM
402 * - LCD framebuffer
403 * - monitor code
404 * - board info struct
405 */
Simon Glassed70c8f2013-03-14 06:54:53 +0000406 len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
wdenkfe8c2802002-11-03 00:38:21 +0000407
Stefan Roesea13709f2008-03-26 10:14:11 +0100408 /*
409 * Subtract specified amount of memory to hide so that it won't
410 * get "touched" at all by U-Boot. By fixing up gd->ram_size
411 * the Linux kernel should now get passed the now "corrected"
412 * memory size and won't touch it either. This should work
413 * for arch/ppc and arch/powerpc. Only Linux board ports in
414 * arch/powerpc with bootwrapper support, that recalculate the
415 * memory size from the SDRAM controller setup will have to
416 * get fixed.
417 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200418 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
Stefan Roesea13709f2008-03-26 10:14:11 +0100419
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200420 addr = CONFIG_SYS_SDRAM_BASE + get_effective_memsize();
wdenkfe8c2802002-11-03 00:38:21 +0000421
Kumar Gala04a3b142009-03-31 17:58:13 -0500422#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
423 /*
424 * We need to make sure the location we intend to put secondary core
425 * boot code is reserved and not used by any part of u-boot
Wolfgang Denke366f152009-04-05 00:27:57 +0200426 */
York Suna28496f2012-10-08 07:44:25 +0000427 if (addr > determine_mp_bootpg(NULL)) {
428 addr = determine_mp_bootpg(NULL);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000429 debug("Reserving MP boot page to %08lx\n", addr);
Kumar Gala04a3b142009-03-31 17:58:13 -0500430 }
431#endif
432
wdenk9dfa8d12002-12-08 09:53:23 +0000433#ifdef CONFIG_LOGBUFFER
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100434#ifndef CONFIG_ALT_LB_ADDR
wdenk9dfa8d12002-12-08 09:53:23 +0000435 /* reserve kernel log buffer */
436 addr -= (LOGBUFF_RESERVE);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000437 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
438 addr);
wdenk9dfa8d12002-12-08 09:53:23 +0000439#endif
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100440#endif
wdenk9dfa8d12002-12-08 09:53:23 +0000441
wdenkfe8c2802002-11-03 00:38:21 +0000442#ifdef CONFIG_PRAM
443 /*
444 * reserve protected RAM
445 */
Simon Glass44fc6692011-10-13 14:43:12 +0000446 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000447 addr -= (reg << 10); /* size is in kB */
Simon Glass44fc6692011-10-13 14:43:12 +0000448 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
wdenkfe8c2802002-11-03 00:38:21 +0000449#endif /* CONFIG_PRAM */
450
451 /* round down to next 4 kB limit */
452 addr &= ~(4096 - 1);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000453 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
wdenkfe8c2802002-11-03 00:38:21 +0000454
455#ifdef CONFIG_LCD
Minkyu Kang50777c42011-04-24 22:22:34 +0000456#ifdef CONFIG_FB_ADDR
457 gd->fb_base = CONFIG_FB_ADDR;
458#else
wdenkfe8c2802002-11-03 00:38:21 +0000459 /* reserve memory for LCD display (always full pages) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000460 addr = lcd_setmem(addr);
wdenkfe8c2802002-11-03 00:38:21 +0000461 gd->fb_base = addr;
Minkyu Kang50777c42011-04-24 22:22:34 +0000462#endif /* CONFIG_FB_ADDR */
wdenkfe8c2802002-11-03 00:38:21 +0000463#endif /* CONFIG_LCD */
464
465#if defined(CONFIG_VIDEO) && defined(CONFIG_8xx)
466 /* reserve memory for video display (always full pages) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000467 addr = video_setmem(addr);
wdenkfe8c2802002-11-03 00:38:21 +0000468 gd->fb_base = addr;
469#endif /* CONFIG_VIDEO */
470
471 /*
472 * reserve memory for U-Boot code, data & bss
wdenk4e112c12003-06-03 23:54:09 +0000473 * round down to next 4 kB limit
wdenkfe8c2802002-11-03 00:38:21 +0000474 */
475 addr -= len;
wdenk4e112c12003-06-03 23:54:09 +0000476 addr &= ~(4096 - 1);
Wolfgang Denk29dcbd42005-10-05 00:00:54 +0200477#ifdef CONFIG_E500
478 /* round down to next 64 kB limit so that IVPR stays aligned */
479 addr &= ~(65536 - 1);
480#endif
wdenkfe8c2802002-11-03 00:38:21 +0000481
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000482 debug("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
wdenkfe8c2802002-11-03 00:38:21 +0000483
484 /*
485 * reserve memory for malloc() arena
486 */
487 addr_sp = addr - TOTAL_MALLOC_LEN;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000488 debug("Reserving %dk for malloc() at: %08lx\n",
489 TOTAL_MALLOC_LEN >> 10, addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000490
491 /*
492 * (permanently) allocate a Board Info struct
493 * and a permanent copy of the "global" data
494 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000495 addr_sp -= sizeof(bd_t);
wdenkfe8c2802002-11-03 00:38:21 +0000496 bd = (bd_t *) addr_sp;
Peter Tyser4b25a8d2010-09-14 19:13:51 -0500497 memset(bd, 0, sizeof(bd_t));
wdenkfe8c2802002-11-03 00:38:21 +0000498 gd->bd = bd;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000499 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
500 sizeof(bd_t), addr_sp);
501 addr_sp -= sizeof(gd_t);
wdenkfe8c2802002-11-03 00:38:21 +0000502 id = (gd_t *) addr_sp;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000503 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
504 sizeof(gd_t), addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000505
506 /*
507 * Finally, we set up a new (bigger) stack.
508 *
509 * Leave some safety gap for SP, force alignment on 16 byte boundary
510 * Clear initial stack frame
511 */
512 addr_sp -= 16;
513 addr_sp &= ~0xF;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000514 s = (ulong *) addr_sp;
Joakim Tjernlund17686492012-07-23 10:58:03 +0000515 *s = 0; /* Terminate back chain */
516 *++s = 0; /* NULL return address */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000517 debug("Stack Pointer at: %08lx\n", addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000518
519 /*
520 * Save local variables to board info struct
521 */
522
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000523 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
524 bd->bi_memsize = gd->ram_size; /* size in bytes */
wdenkfe8c2802002-11-03 00:38:21 +0000525
Wolfgang Denkea9e0be2010-08-11 09:38:31 +0200526#ifdef CONFIG_SYS_SRAM_BASE
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000527 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
528 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
wdenkfe8c2802002-11-03 00:38:21 +0000529#endif
530
Masahiro Yamada5a2bf982014-03-05 17:40:10 +0900531#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500532 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200533 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
wdenkfe8c2802002-11-03 00:38:21 +0000534#endif
wdenkbe9c1cb2004-02-24 02:00:03 +0000535#if defined(CONFIG_MPC5xxx)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200536 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
wdenk337f5652004-10-28 00:09:35 +0000537#endif
Peter Tyser62e73982009-05-22 17:23:24 -0500538#if defined(CONFIG_MPC83xx)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200539 bd->bi_immrbar = CONFIG_SYS_IMMR;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500540#endif
wdenkfe8c2802002-11-03 00:38:21 +0000541
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000542 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000543 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
544 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500545#if defined(CONFIG_CPM2)
Simon Glass44ea8512012-12-13 20:48:46 +0000546 bd->bi_cpmfreq = gd->arch.cpm_clk;
Simon Glass34a194f2012-12-13 20:48:44 +0000547 bd->bi_brgfreq = gd->arch.brg_clk;
Simon Glass44ea8512012-12-13 20:48:46 +0000548 bd->bi_sccfreq = gd->arch.scc_clk;
549 bd->bi_vco = gd->arch.vco_out;
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500550#endif /* CONFIG_CPM2 */
Grzegorz Bernackiaf554d82008-01-08 17:16:15 +0100551#if defined(CONFIG_MPC512X)
Simon Glass6c6cbd12012-12-13 20:48:54 +0000552 bd->bi_ipsfreq = gd->arch.ips_clk;
Grzegorz Bernackiaf554d82008-01-08 17:16:15 +0100553#endif /* CONFIG_MPC512X */
wdenkbe9c1cb2004-02-24 02:00:03 +0000554#if defined(CONFIG_MPC5xxx)
Simon Glass4f8c5f02012-12-13 20:48:53 +0000555 bd->bi_ipbfreq = gd->arch.ipb_clk;
wdenk21136db2003-07-16 21:53:01 +0000556 bd->bi_pcifreq = gd->pci_clk;
wdenkbe9c1cb2004-02-24 02:00:03 +0000557#endif /* CONFIG_MPC5xxx */
wdenkfe8c2802002-11-03 00:38:21 +0000558
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200559#ifdef CONFIG_SYS_EXTBDINFO
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000560 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
561 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
562 sizeof(bd->bi_r_version));
wdenkfe8c2802002-11-03 00:38:21 +0000563
564 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
565 bd->bi_plb_busfreq = gd->bus_clk;
Stefan Roesee9a816c2007-05-11 12:01:06 +0200566#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
567 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
568 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000569 bd->bi_pci_busfreq = get_PCI_freq();
570 bd->bi_opbfreq = get_OPB_freq();
Michal Simek594c7b52008-06-24 09:54:09 +0200571#elif defined(CONFIG_XILINX_405)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000572 bd->bi_pci_busfreq = get_PCI_freq();
wdenkfe8c2802002-11-03 00:38:21 +0000573#endif
574#endif
575
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000576 debug("New Stack Pointer is: %08lx\n", addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000577
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000578 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000579
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000580 gd->relocaddr = addr; /* Store relocation addr, useful for debug */
Richard Retanubun92bc2632010-01-15 10:06:06 -0500581
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000582 memcpy(id, (void *) gd, sizeof(gd_t));
wdenkfe8c2802002-11-03 00:38:21 +0000583
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000584 relocate_code(addr_sp, id, addr);
wdenkfe8c2802002-11-03 00:38:21 +0000585
586 /* NOTREACHED - relocate_code() does not return */
587}
Jason Jin13bd9e52008-10-10 11:41:01 +0800588
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000589/*
wdenkfe8c2802002-11-03 00:38:21 +0000590 * This is the next part if the initialization sequence: we are now
591 * running from RAM and have a "normal" C environment, i. e. global
592 * data can be written, BSS has been cleared, the stack size in not
593 * that critical any more, etc.
wdenkfe8c2802002-11-03 00:38:21 +0000594 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000595void board_init_r(gd_t *id, ulong dest_addr)
wdenkfe8c2802002-11-03 00:38:21 +0000596{
wdenkfe8c2802002-11-03 00:38:21 +0000597 bd_t *bd;
Peter Tysered527702009-08-21 23:05:20 -0500598 ulong malloc_start;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000599
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200600#ifndef CONFIG_SYS_NO_FLASH
wdenkfe8c2802002-11-03 00:38:21 +0000601 ulong flash_size;
602#endif
603
604 gd = id; /* initialize RAM version of global data */
605 bd = gd->bd;
606
607 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
Grant Likely22e05842007-07-03 00:34:19 -0600608
Peter Tyser781c9b82009-08-21 23:05:21 -0500609 /* The Malloc area is immediately below the monitor copy in DRAM */
Peter Tysered527702009-08-21 23:05:20 -0500610 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
Kumar Gala87e43422009-09-01 21:07:08 -0500611
Peter Tysera95e6732009-12-15 12:10:47 -0600612#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
613 /*
Simon Glassa8b57392012-12-13 20:48:48 +0000614 * The gd->arch.cpu pointer is set to an address in flash before
615 * relocation. We need to update it to point to the same CPU entry
616 * in RAM.
Peter Tysera95e6732009-12-15 12:10:47 -0600617 */
Simon Glassa8b57392012-12-13 20:48:48 +0000618 gd->arch.cpu += dest_addr - CONFIG_SYS_MONITOR_BASE;
York Sun7b2947f2012-08-17 08:20:22 +0000619
620 /*
621 * If we didn't know the cpu mask & # cores, we can save them of
622 * now rather than 'computing' them constantly
623 */
624 fixup_cpu();
Peter Tysera95e6732009-12-15 12:10:47 -0600625#endif
626
Kumar Galab1dd51f2010-11-29 14:32:11 -0600627#ifdef CONFIG_SYS_EXTRA_ENV_RELOC
628 /*
629 * Some systems need to relocate the env_addr pointer early because the
630 * location it points to will get invalidated before env_relocate is
631 * called. One example is on systems that might use a L2 or L3 cache
632 * in SRAM mode and initialize that cache from SRAM mode back to being
633 * a cache in cpu_init_r.
634 */
635 gd->env_addr += dest_addr - CONFIG_SYS_MONITOR_BASE;
636#endif
637
Marian Balakowiczb55b60e2006-06-30 15:27:09 +0200638 serial_initialize();
wdenkfe8c2802002-11-03 00:38:21 +0000639
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000640 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
wdenkfe8c2802002-11-03 00:38:21 +0000641
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000642 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000643
Becky Bruce2f79edd2008-10-31 17:14:39 -0500644 /*
645 * Setup trap handlers
646 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000647 trap_init(dest_addr);
Becky Bruce2f79edd2008-10-31 17:14:39 -0500648
Becky Brucef93e1cb2009-02-03 18:10:52 -0600649#ifdef CONFIG_ADDR_MAP
Kumar Gala9ac287a2008-12-16 14:59:20 -0600650 init_addr_map();
651#endif
652
wdenkda55c6e2004-01-20 23:12:12 +0000653#if defined(CONFIG_BOARD_EARLY_INIT_R)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000654 board_early_init_r();
wdenkda55c6e2004-01-20 23:12:12 +0000655#endif
656
wdenkb9a83a92003-05-30 12:48:29 +0000657 monitor_flash_len = (ulong)&__init_end - dest_addr;
wdenkfe8c2802002-11-03 00:38:21 +0000658
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000659 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000660
wdenk56f94be2002-11-05 16:35:14 +0000661#ifdef CONFIG_LOGBUFFER
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000662 logbuff_init_ptrs();
wdenk56f94be2002-11-05 16:35:14 +0000663#endif
wdenkfe8c2802002-11-03 00:38:21 +0000664#ifdef CONFIG_POST
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000665 post_output_backlog();
wdenkfe8c2802002-11-03 00:38:21 +0000666#endif
667
668 WATCHDOG_RESET();
669
Kim Phillipsf3c7cd92010-04-20 19:37:54 -0500670#if defined(CONFIG_SYS_DELAYED_ICACHE)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000671 icache_enable(); /* it's time to enable the instruction cache */
wdenkfe8c2802002-11-03 00:38:21 +0000672#endif
673
Wolfgang Denk1e0f07e2009-07-26 23:28:02 +0200674#if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
675 unlock_ram_in_cache(); /* it's time to unlock D-cache in e500 */
wdenk9c53f402003-10-15 23:53:47 +0000676#endif
677
Andre Schwarz8d5c89d2010-10-05 11:59:31 +0200678#if defined(CONFIG_PCI) && defined(CONFIG_SYS_EARLY_PCI_INIT)
wdenkfe8c2802002-11-03 00:38:21 +0000679 /*
Andre Schwarz8d5c89d2010-10-05 11:59:31 +0200680 * Do early PCI configuration _before_ the flash gets initialised,
681 * because PCU ressources are crucial for flash access on some boards.
wdenkfe8c2802002-11-03 00:38:21 +0000682 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000683 pci_init();
wdenkef5fe752003-03-12 10:41:04 +0000684#endif
Wolfgang Denk41364282010-11-23 23:17:18 +0100685#if defined(CONFIG_WINBOND_83C553)
wdenkfe8c2802002-11-03 00:38:21 +0000686 /*
687 * Initialise the ISA bridge
688 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000689 initialise_w83c553f();
wdenkfe8c2802002-11-03 00:38:21 +0000690#endif
691
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000692 asm("sync ; isync");
wdenkfe8c2802002-11-03 00:38:21 +0000693
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000694 mem_malloc_init(malloc_start, TOTAL_MALLOC_LEN);
Stefan Roeseb81464e2009-05-11 15:50:12 +0200695
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200696#if !defined(CONFIG_SYS_NO_FLASH)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000697 puts("Flash: ");
wdenkfe8c2802002-11-03 00:38:21 +0000698
John Schmoller9a736012010-09-29 14:05:44 -0500699 if (board_flash_wp_on()) {
700 printf("Uninitialized - Write Protect On\n");
701 /* Since WP is on, we can't find real size. Set to 0 */
702 flash_size = 0;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000703 } else if ((flash_size = flash_init()) > 0) {
704#ifdef CONFIG_SYS_FLASH_CHECKSUM
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000705 print_size(flash_size, "");
wdenkfe8c2802002-11-03 00:38:21 +0000706 /*
707 * Compute and print flash CRC if flashchecksum is set to 'y'
708 *
709 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
710 */
Joe Hershberger864ec562012-12-11 22:16:22 -0600711 if (getenv_yesno("flashchecksum") == 1) {
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000712 printf(" CRC: %08X",
713 crc32(0,
714 (const unsigned char *)
715 CONFIG_SYS_FLASH_BASE, flash_size)
716 );
wdenkfe8c2802002-11-03 00:38:21 +0000717 }
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000718 putc('\n');
719#else /* !CONFIG_SYS_FLASH_CHECKSUM */
720 print_size(flash_size, "\n");
721#endif /* CONFIG_SYS_FLASH_CHECKSUM */
wdenkfe8c2802002-11-03 00:38:21 +0000722 } else {
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000723 puts(failed);
724 hang();
wdenkfe8c2802002-11-03 00:38:21 +0000725 }
726
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000727 /* update start of FLASH memory */
728 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
729 /* size of FLASH memory (final value) */
730 bd->bi_flashsize = flash_size;
Heiko Schocher3ec43662006-12-21 17:17:02 +0100731
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200732#if defined(CONFIG_SYS_UPDATE_FLASH_SIZE)
Heiko Schocher3ec43662006-12-21 17:17:02 +0100733 /* Make a update of the Memctrl. */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000734 update_flash_size(flash_size);
Heiko Schocher3ec43662006-12-21 17:17:02 +0100735#endif
736
737
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000738#if defined(CONFIG_OXC) || defined(CONFIG_RMU)
wdenka09491a2004-04-08 22:31:29 +0000739 /* flash mapped at end of memory map */
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200740 bd->bi_flashoffset = CONFIG_SYS_TEXT_BASE + flash_size;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000741#elif CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
742 bd->bi_flashoffset = monitor_flash_len; /* reserved area for monitor */
743#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200744#endif /* !CONFIG_SYS_NO_FLASH */
wdenkfe8c2802002-11-03 00:38:21 +0000745
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000746 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000747
748 /* initialize higher level parts of CPU like time base and timers */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000749 cpu_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000750
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000751 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000752
wdenkfe8c2802002-11-03 00:38:21 +0000753#ifdef CONFIG_SPI
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000754#if !defined(CONFIG_ENV_IS_IN_EEPROM)
755 spi_init_f();
756#endif
757 spi_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000758#endif
759
Jon Loeliger6b233052007-07-09 18:02:11 -0500760#if defined(CONFIG_CMD_NAND)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000761 WATCHDOG_RESET();
762 puts("NAND: ");
Stefan Roese42fbddd2006-09-07 11:51:23 +0200763 nand_init(); /* go init the NAND */
764#endif
765
Terry Lvb4eceac2010-05-17 10:57:01 +0800766#ifdef CONFIG_GENERIC_MMC
767/*
768 * MMC initialization is called before relocating env.
769 * Thus It is required that operations like pin multiplexer
770 * be put in board_init.
771 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000772 WATCHDOG_RESET();
773 puts("MMC: ");
774 mmc_initialize(bd);
Terry Lvb4eceac2010-05-17 10:57:01 +0800775#endif
776
wdenkfe8c2802002-11-03 00:38:21 +0000777 /* relocate environment function pointers etc. */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000778 env_relocate();
wdenkfe8c2802002-11-03 00:38:21 +0000779
780 /*
Kumar Gala2ef216b2011-02-02 11:23:50 -0600781 * after non-volatile devices & environment is setup and cpu code have
782 * another round to deal with any initialization that might require
783 * full access to the environment or loading of some image (firmware)
784 * from a non-volatile device
785 */
786 cpu_secondary_init_r();
787
788 /*
wdenkfe8c2802002-11-03 00:38:21 +0000789 * Fill in missing fields of bd_info.
wdenk57b2d802003-06-27 21:31:46 +0000790 * We do this here, where we have "normal" access to the
791 * environment; we used to do this still running from ROM,
Wolfgang Denk76af2782010-07-24 21:55:43 +0200792 * where had to use getenv_f(), which can be pretty slow when
wdenk57b2d802003-06-27 21:31:46 +0000793 * the environment is in EEPROM.
wdenkfe8c2802002-11-03 00:38:21 +0000794 */
wdenk78924a72004-04-18 21:45:42 +0000795
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200796#if defined(CONFIG_SYS_EXTBDINFO)
wdenk78924a72004-04-18 21:45:42 +0000797#if defined(CONFIG_405GP) || defined(CONFIG_405EP)
798#if defined(CONFIG_I2CFAST)
799 /*
800 * set bi_iic_fast for linux taking environment variable
801 * "i2cfast" into account
802 */
803 {
Joe Hershberger864ec562012-12-11 22:16:22 -0600804 if (getenv_yesno("i2cfast") == 1) {
wdenk78924a72004-04-18 21:45:42 +0000805 bd->bi_iic_fast[0] = 1;
806 bd->bi_iic_fast[1] = 1;
wdenk78924a72004-04-18 21:45:42 +0000807 }
808 }
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000809#endif /* CONFIG_I2CFAST */
810#endif /* CONFIG_405GP, CONFIG_405EP */
811#endif /* CONFIG_SYS_EXTBDINFO */
wdenk78924a72004-04-18 21:45:42 +0000812
Wolfgang Denkd2a7a742007-06-08 10:24:58 +0200813#if defined(CONFIG_SC3)
Heiko Schocher3c58a992007-01-11 15:44:44 +0100814 sc3_read_eeprom();
815#endif
Haiying Wang34cf9592008-01-16 17:12:12 -0500816
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000817#if defined(CONFIG_ID_EEPROM) || defined(CONFIG_SYS_I2C_MAC_OFFSET)
Haiying Wang34cf9592008-01-16 17:12:12 -0500818 mac_read_from_eeprom();
819#endif
820
wdenkfe8c2802002-11-03 00:38:21 +0000821#ifdef CONFIG_HERMES
822 if ((gd->board_type >> 16) == 2)
823 bd->bi_ethspeed = gd->board_type & 0xFFFF;
824 else
825 bd->bi_ethspeed = 0xFFFF;
826#endif
827
Stefan Roese29089432009-02-25 12:11:15 +0100828#ifdef CONFIG_CMD_NET
Mike Frysinger26250482009-02-11 20:07:19 -0500829 /* kept around for legacy kernels only ... ignore the next section */
830 eth_getenv_enetaddr("ethaddr", bd->bi_enetaddr);
wdenk54070ab2004-12-31 09:32:47 +0000831#ifdef CONFIG_HAS_ETH1
Mike Frysinger26250482009-02-11 20:07:19 -0500832 eth_getenv_enetaddr("eth1addr", bd->bi_enet1addr);
wdenkfe8c2802002-11-03 00:38:21 +0000833#endif
wdenk54070ab2004-12-31 09:32:47 +0000834#ifdef CONFIG_HAS_ETH2
Mike Frysinger26250482009-02-11 20:07:19 -0500835 eth_getenv_enetaddr("eth2addr", bd->bi_enet2addr);
wdenkfe8c2802002-11-03 00:38:21 +0000836#endif
wdenk54070ab2004-12-31 09:32:47 +0000837#ifdef CONFIG_HAS_ETH3
Mike Frysinger26250482009-02-11 20:07:19 -0500838 eth_getenv_enetaddr("eth3addr", bd->bi_enet3addr);
wdenk544e9732004-02-06 23:19:44 +0000839#endif
richardretanubune5167f12008-09-29 18:28:23 -0400840#ifdef CONFIG_HAS_ETH4
Mike Frysinger26250482009-02-11 20:07:19 -0500841 eth_getenv_enetaddr("eth4addr", bd->bi_enet4addr);
richardretanubune5167f12008-09-29 18:28:23 -0400842#endif
richardretanubune5167f12008-09-29 18:28:23 -0400843#ifdef CONFIG_HAS_ETH5
Mike Frysinger26250482009-02-11 20:07:19 -0500844 eth_getenv_enetaddr("eth5addr", bd->bi_enet5addr);
richardretanubune5167f12008-09-29 18:28:23 -0400845#endif
Stefan Roese29089432009-02-25 12:11:15 +0100846#endif /* CONFIG_CMD_NET */
richardretanubune5167f12008-09-29 18:28:23 -0400847
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000848 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000849
Andre Schwarz8d5c89d2010-10-05 11:59:31 +0200850#if defined(CONFIG_PCI) && !defined(CONFIG_SYS_EARLY_PCI_INIT)
wdenkfe8c2802002-11-03 00:38:21 +0000851 /*
852 * Do pci configuration
853 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000854 pci_init();
wdenkfe8c2802002-11-03 00:38:21 +0000855#endif
856
857/** leave this here (after malloc(), environment and PCI are working) **/
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +0200858 /* Initialize stdio devices */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000859 stdio_init();
wdenkfe8c2802002-11-03 00:38:21 +0000860
wdenk874ac262003-07-24 23:38:38 +0000861 /* Initialize the jump table for applications */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000862 jumptable_init();
wdenkfe8c2802002-11-03 00:38:21 +0000863
Rafal Jaworowskia19be782008-01-09 19:39:36 +0100864#if defined(CONFIG_API)
865 /* Initialize API */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000866 api_init();
Rafal Jaworowskia19be782008-01-09 19:39:36 +0100867#endif
868
wdenkfe8c2802002-11-03 00:38:21 +0000869 /* Initialize the console (after the relocation and devices init) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000870 console_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000871
Peter Tyser5c506212009-09-16 22:03:07 -0500872#if defined(CONFIG_MISC_INIT_R)
wdenkfe8c2802002-11-03 00:38:21 +0000873 /* miscellaneous platform dependent initialisations */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000874 misc_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000875#endif
876
877#ifdef CONFIG_HERMES
878 if (bd->bi_ethspeed != 0xFFFF)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000879 hermes_start_lxt980((int) bd->bi_ethspeed);
wdenkfe8c2802002-11-03 00:38:21 +0000880#endif
881
Jon Loeliger6b233052007-07-09 18:02:11 -0500882#if defined(CONFIG_CMD_KGDB)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000883 WATCHDOG_RESET();
884 puts("KGDB: ");
885 kgdb_init();
wdenkfe8c2802002-11-03 00:38:21 +0000886#endif
887
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000888 debug("U-Boot relocated to %08lx\n", dest_addr);
wdenkfe8c2802002-11-03 00:38:21 +0000889
890 /*
891 * Enable Interrupts
892 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000893 interrupt_init();
wdenkfe8c2802002-11-03 00:38:21 +0000894
Heiko Schocher633e03a2007-06-22 19:11:54 +0200895#if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000896 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
wdenkfe8c2802002-11-03 00:38:21 +0000897#endif
898
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000899 udelay(20);
wdenkfe8c2802002-11-03 00:38:21 +0000900
wdenkfe8c2802002-11-03 00:38:21 +0000901 /* Initialize from environment */
Simon Glass44fc6692011-10-13 14:43:12 +0000902 load_addr = getenv_ulong("loadaddr", 16, load_addr);
wdenkfe8c2802002-11-03 00:38:21 +0000903
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000904 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000905
Jon Loeliger6b233052007-07-09 18:02:11 -0500906#if defined(CONFIG_CMD_SCSI)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000907 WATCHDOG_RESET();
908 puts("SCSI: ");
909 scsi_init();
wdenkfe8c2802002-11-03 00:38:21 +0000910#endif
911
Jon Loeliger6b233052007-07-09 18:02:11 -0500912#if defined(CONFIG_CMD_DOC)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000913 WATCHDOG_RESET();
914 puts("DOC: ");
915 doc_init();
wdenkfe8c2802002-11-03 00:38:21 +0000916#endif
917
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +0200918#ifdef CONFIG_BITBANGMII
919 bb_miiphy_init();
920#endif
Jon Loeliger6b233052007-07-09 18:02:11 -0500921#if defined(CONFIG_CMD_NET)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000922 WATCHDOG_RESET();
923 puts("Net: ");
924 eth_initialize(bd);
wdenkfe8c2802002-11-03 00:38:21 +0000925#endif
926
Peter Tyserd3d9a502009-09-16 22:03:08 -0500927#if defined(CONFIG_CMD_NET) && defined(CONFIG_RESET_PHY_R)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000928 WATCHDOG_RESET();
929 debug("Reset Ethernet PHY\n");
930 reset_phy();
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200931#endif
932
wdenkfe8c2802002-11-03 00:38:21 +0000933#ifdef CONFIG_POST
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000934 post_run(NULL, POST_RAM | post_bootmode_get(0));
wdenkfe8c2802002-11-03 00:38:21 +0000935#endif
936
Jon Loeliger6b233052007-07-09 18:02:11 -0500937#if defined(CONFIG_CMD_PCMCIA) \
938 && !defined(CONFIG_CMD_IDE)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000939 WATCHDOG_RESET();
940 puts("PCMCIA:");
941 pcmcia_init();
wdenkfe8c2802002-11-03 00:38:21 +0000942#endif
943
Jon Loeliger6b233052007-07-09 18:02:11 -0500944#if defined(CONFIG_CMD_IDE)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000945 WATCHDOG_RESET();
946#ifdef CONFIG_IDE_8xx_PCCARD
947 puts("PCMCIA:");
948#else
949 puts("IDE: ");
wdenkfe8c2802002-11-03 00:38:21 +0000950#endif
Heiko Schocher3c58a992007-01-11 15:44:44 +0100951#if defined(CONFIG_START_IDE)
952 if (board_start_ide())
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000953 ide_init();
Heiko Schocher3c58a992007-01-11 15:44:44 +0100954#else
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000955 ide_init();
Heiko Schocher3c58a992007-01-11 15:44:44 +0100956#endif
Jon Loeliger1670a5b2007-07-10 11:19:50 -0500957#endif
wdenkfe8c2802002-11-03 00:38:21 +0000958
959#ifdef CONFIG_LAST_STAGE_INIT
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000960 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000961 /*
962 * Some parts can be only initialized if all others (like
963 * Interrupts) are up and running (i.e. the PC-style ISA
964 * keyboard).
965 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000966 last_stage_init();
wdenkfe8c2802002-11-03 00:38:21 +0000967#endif
968
Jon Loeliger6b233052007-07-09 18:02:11 -0500969#if defined(CONFIG_CMD_BEDBUG)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000970 WATCHDOG_RESET();
971 bedbug_init();
wdenkfe8c2802002-11-03 00:38:21 +0000972#endif
973
wdenk9dfa8d12002-12-08 09:53:23 +0000974#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
wdenkfe8c2802002-11-03 00:38:21 +0000975 /*
976 * Export available size of memory for Linux,
977 * taking into account the protected RAM at top of memory
978 */
979 {
Simon Glass44fc6692011-10-13 14:43:12 +0000980 ulong pram = 0;
Simon Glassd9d4fa72012-01-05 17:54:57 +0000981 char memsz[32];
wdenkfe8c2802002-11-03 00:38:21 +0000982
Simon Glass44fc6692011-10-13 14:43:12 +0000983#ifdef CONFIG_PRAM
984 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
wdenk9dfa8d12002-12-08 09:53:23 +0000985#endif
986#ifdef CONFIG_LOGBUFFER
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100987#ifndef CONFIG_ALT_LB_ADDR
wdenk9dfa8d12002-12-08 09:53:23 +0000988 /* Also take the logbuffer into account (pram is in kB) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000989 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
wdenk9dfa8d12002-12-08 09:53:23 +0000990#endif
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100991#endif
Valentin Longchamp3d854c42013-10-18 11:47:14 +0200992 sprintf(memsz, "%ldk", (ulong) (bd->bi_memsize / 1024) - pram);
Simon Glassd9d4fa72012-01-05 17:54:57 +0000993 setenv("mem", memsz);
wdenkfe8c2802002-11-03 00:38:21 +0000994 }
995#endif
996
wdenkb983fa22004-01-16 00:30:56 +0000997#ifdef CONFIG_PS2KBD
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000998 puts("PS/2: ");
wdenkb983fa22004-01-16 00:30:56 +0000999 kbd_init();
1000#endif
1001
wdenkfe8c2802002-11-03 00:38:21 +00001002 /* Initialization complete - start the monitor */
1003
1004 /* main_loop() can return to retry autoboot, if so just run it again. */
1005 for (;;) {
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +00001006 WATCHDOG_RESET();
1007 main_loop();
wdenkfe8c2802002-11-03 00:38:21 +00001008 }
1009
1010 /* NOTREACHED - no way out of command loop except booting */
1011}
1012
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +00001013#if 0 /* We could use plain global data, but the resulting code is bigger */
wdenkfe8c2802002-11-03 00:38:21 +00001014/*
1015 * Pointer to initial global data area
1016 *
1017 * Here we initialize it.
1018 */
1019#undef XTRN_DECLARE_GLOBAL_DATA_PTR
1020#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +00001021DECLARE_GLOBAL_DATA_PTR =
1022 (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
1023#endif /* 0 */
wdenkfe8c2802002-11-03 00:38:21 +00001024
1025/************************************************************************/