blob: 50eb820336b0d6ce3404db5952e23ffd4687b2c4 [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{
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000229 puts(" Watchdog enabled\n");
230 WATCHDOG_RESET();
231 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000232}
wdenkfe8c2802002-11-03 00:38:21 +0000233
Simon Glass6f984902013-03-05 14:39:42 +0000234int init_func_watchdog_reset(void)
wdenkfe8c2802002-11-03 00:38:21 +0000235{
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000236 WATCHDOG_RESET();
237 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000238}
wdenkfe8c2802002-11-03 00:38:21 +0000239#endif /* CONFIG_WATCHDOG */
240
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000241/*
242 * Initialization sequence
wdenkfe8c2802002-11-03 00:38:21 +0000243 */
244
Kim Phillipse16737f2012-10-29 13:34:29 +0000245static init_fnc_t *init_sequence[] = {
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530246#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
247 probecpu,
248#endif
Anton Vorontsov9522f572009-10-12 23:55:39 +0400249#if defined(CONFIG_BOARD_EARLY_INIT_F)
250 board_early_init_f,
251#endif
wdenk20bddb32004-09-28 17:59:53 +0000252#if !defined(CONFIG_8xx_CPUCLK_DEFAULT)
wdenkfe8c2802002-11-03 00:38:21 +0000253 get_clocks, /* get CPU and bus clocks (etc.) */
Markus Klotzbuecher13af9f02006-07-12 15:26:01 +0200254#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
255 && !defined(CONFIG_TQM885D)
wdenkc78bf132004-04-24 23:23:30 +0000256 adjust_sdram_tbs_8xx,
257#endif
wdenkfe8c2802002-11-03 00:38:21 +0000258 init_timebase,
wdenkb50cde52004-01-24 20:25:54 +0000259#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200260#ifdef CONFIG_SYS_ALLOC_DPRAM
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500261#if !defined(CONFIG_CPM2)
wdenkfe8c2802002-11-03 00:38:21 +0000262 dpram_init,
263#endif
wdenk541a76d2003-05-03 15:50:43 +0000264#endif
wdenkfe8c2802002-11-03 00:38:21 +0000265#if defined(CONFIG_BOARD_POSTCLK_INIT)
266 board_postclk_init,
267#endif
268 env_init,
wdenk20bddb32004-09-28 17:59:53 +0000269#if defined(CONFIG_8xx_CPUCLK_DEFAULT)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000270 /* get CPU and bus clocks according to the environment variable */
271 get_clocks_866,
272 /* adjust sdram refresh rate according to the new clock */
273 sdram_adjust_866,
wdenkb50cde52004-01-24 20:25:54 +0000274 init_timebase,
275#endif
wdenkfe8c2802002-11-03 00:38:21 +0000276 init_baudrate,
277 serial_init,
278 console_init_f,
279 display_options,
Masahiro Yamada5a2bf982014-03-05 17:40:10 +0900280#if defined(CONFIG_MPC8260)
wdenkfe8c2802002-11-03 00:38:21 +0000281 prt_8260_rsr,
282 prt_8260_clks,
Masahiro Yamada5a2bf982014-03-05 17:40:10 +0900283#endif /* CONFIG_MPC8260 */
Peter Tyser62e73982009-05-22 17:23:24 -0500284#if defined(CONFIG_MPC83xx)
Dave Liuebd35f82007-06-25 10:41:56 +0800285 prt_83xx_rsr,
286#endif
wdenkfe8c2802002-11-03 00:38:21 +0000287 checkcpu,
wdenkbe9c1cb2004-02-24 02:00:03 +0000288#if defined(CONFIG_MPC5xxx)
wdenk21136db2003-07-16 21:53:01 +0000289 prt_mpc5xxx_clks,
wdenkbe9c1cb2004-02-24 02:00:03 +0000290#endif /* CONFIG_MPC5xxx */
wdenkfe8c2802002-11-03 00:38:21 +0000291 checkboard,
292 INIT_FUNC_WATCHDOG_INIT
wdenkda55c6e2004-01-20 23:12:12 +0000293#if defined(CONFIG_MISC_INIT_F)
wdenkfe8c2802002-11-03 00:38:21 +0000294 misc_init_f,
295#endif
296 INIT_FUNC_WATCHDOG_RESET
Heiko Schocher479a4cf2013-01-29 08:53:15 +0100297#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
wdenkfe8c2802002-11-03 00:38:21 +0000298 init_func_i2c,
299#endif
Ben Warren7efe9272008-01-16 22:37:35 -0500300#if defined(CONFIG_HARD_SPI)
301 init_func_spi,
302#endif
wdenkc08f1582003-04-27 22:52:51 +0000303#ifdef CONFIG_POST
304 post_init_f,
305#endif
Simon Glassdb397fa2013-03-11 14:30:37 +0000306 INIT_FUNC_WATCHDOG_RESET
307 init_func_ram,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200308#if defined(CONFIG_SYS_DRAM_TEST)
wdenkfe8c2802002-11-03 00:38:21 +0000309 testdram,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200310#endif /* CONFIG_SYS_DRAM_TEST */
wdenkfe8c2802002-11-03 00:38:21 +0000311 INIT_FUNC_WATCHDOG_RESET
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000312 NULL, /* Terminate this list */
wdenkfe8c2802002-11-03 00:38:21 +0000313};
314
Kim Phillipse16737f2012-10-29 13:34:29 +0000315static int __fixup_cpu(void)
York Sun7b2947f2012-08-17 08:20:22 +0000316{
317 return 0;
318}
319
320int fixup_cpu(void) __attribute__((weak, alias("__fixup_cpu")));
321
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000322/*
wdenkfe8c2802002-11-03 00:38:21 +0000323 * This is the first part of the initialization sequence that is
324 * implemented in C, but still running from ROM.
325 *
326 * The main purpose is to provide a (serial) console interface as
327 * soon as possible (so we can see any error messages), and to
328 * initialize the RAM so that we can relocate the monitor code to
329 * RAM.
330 *
331 * Be aware of the restrictions: global data is read-only, BSS is not
332 * initialized, and stack space is limited to a few kB.
wdenkfe8c2802002-11-03 00:38:21 +0000333 */
334
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000335void board_init_f(ulong bootflag)
wdenkfe8c2802002-11-03 00:38:21 +0000336{
wdenkfe8c2802002-11-03 00:38:21 +0000337 bd_t *bd;
338 ulong len, addr, addr_sp;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200339 ulong *s;
wdenkfe8c2802002-11-03 00:38:21 +0000340 gd_t *id;
341 init_fnc_t **init_fnc_ptr;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000342
wdenkfe8c2802002-11-03 00:38:21 +0000343#ifdef CONFIG_PRAM
wdenkfe8c2802002-11-03 00:38:21 +0000344 ulong reg;
wdenkfe8c2802002-11-03 00:38:21 +0000345#endif
Tang Yuantiana7364af2014-04-17 15:33:46 +0800346#ifdef CONFIG_DEEP_SLEEP
347 const ccsr_gur_t *gur = (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
348 struct ccsr_scfg *scfg = (void *)CONFIG_SYS_MPC85xx_SCFG;
349 u32 start_addr;
350 typedef void (*func_t)(void);
351 func_t kernel_resume;
352#endif
wdenkfe8c2802002-11-03 00:38:21 +0000353
354 /* Pointer is writable since we allocated a register for it */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200355 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
wdenk3337af42004-07-01 20:28:03 +0000356 /* compiler optimization barrier needed for GCC >= 3.4 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000357 __asm__ __volatile__("":::"memory");
wdenkfe8c2802002-11-03 00:38:21 +0000358
Detlev Zundela2ea2762010-01-22 14:47:59 +0100359#if !defined(CONFIG_CPM2) && !defined(CONFIG_MPC512X) && \
360 !defined(CONFIG_MPC83xx) && !defined(CONFIG_MPC85xx) && \
361 !defined(CONFIG_MPC86xx)
wdenkfe8c2802002-11-03 00:38:21 +0000362 /* Clear initial global data */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000363 memset((void *) gd, 0, sizeof(gd_t));
wdenkfe8c2802002-11-03 00:38:21 +0000364#endif
365
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000366 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr)
367 if ((*init_fnc_ptr) () != 0)
368 hang();
wdenkfe8c2802002-11-03 00:38:21 +0000369
Tang Yuantiana7364af2014-04-17 15:33:46 +0800370#ifdef CONFIG_DEEP_SLEEP
371 /* Jump to kernel in deep sleep case */
372 if (in_be32(&gur->scrtsr[0]) & (1 << 3)) {
Tang Yuantianefd6da62014-07-04 17:39:26 +0800373 l2cache_init();
374#if defined(CONFIG_RAMBOOT_PBL)
375 disable_cpc_sram();
376#endif
377 enable_cpc();
Tang Yuantiana7364af2014-04-17 15:33:46 +0800378 start_addr = in_be32(&scfg->sparecr[1]);
379 kernel_resume = (func_t)start_addr;
380 kernel_resume();
381 }
382#endif
383
Bernhard Kaindl920fd2b2011-10-16 00:07:08 +0000384#ifdef CONFIG_POST
385 post_bootmode_init();
Kim Phillipse16737f2012-10-29 13:34:29 +0000386 post_run(NULL, POST_ROM | post_bootmode_get(NULL));
Bernhard Kaindl920fd2b2011-10-16 00:07:08 +0000387#endif
388
389 WATCHDOG_RESET();
390
wdenkfe8c2802002-11-03 00:38:21 +0000391 /*
392 * Now that we have DRAM mapped and working, we can
393 * relocate the code and continue running from DRAM.
394 *
395 * Reserve memory at end of RAM for (top down in that order):
Stefan Roesea13709f2008-03-26 10:14:11 +0100396 * - area that won't get touched by U-Boot and Linux (optional)
wdenk57b2d802003-06-27 21:31:46 +0000397 * - kernel log buffer
wdenkfe8c2802002-11-03 00:38:21 +0000398 * - protected RAM
399 * - LCD framebuffer
400 * - monitor code
401 * - board info struct
402 */
Simon Glassed70c8f2013-03-14 06:54:53 +0000403 len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
wdenkfe8c2802002-11-03 00:38:21 +0000404
Stefan Roesea13709f2008-03-26 10:14:11 +0100405 /*
406 * Subtract specified amount of memory to hide so that it won't
407 * get "touched" at all by U-Boot. By fixing up gd->ram_size
408 * the Linux kernel should now get passed the now "corrected"
409 * memory size and won't touch it either. This should work
410 * for arch/ppc and arch/powerpc. Only Linux board ports in
411 * arch/powerpc with bootwrapper support, that recalculate the
412 * memory size from the SDRAM controller setup will have to
413 * get fixed.
414 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200415 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
Stefan Roesea13709f2008-03-26 10:14:11 +0100416
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200417 addr = CONFIG_SYS_SDRAM_BASE + get_effective_memsize();
wdenkfe8c2802002-11-03 00:38:21 +0000418
Kumar Gala04a3b142009-03-31 17:58:13 -0500419#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
420 /*
421 * We need to make sure the location we intend to put secondary core
422 * boot code is reserved and not used by any part of u-boot
Wolfgang Denke366f152009-04-05 00:27:57 +0200423 */
York Suna28496f2012-10-08 07:44:25 +0000424 if (addr > determine_mp_bootpg(NULL)) {
425 addr = determine_mp_bootpg(NULL);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000426 debug("Reserving MP boot page to %08lx\n", addr);
Kumar Gala04a3b142009-03-31 17:58:13 -0500427 }
428#endif
429
wdenk9dfa8d12002-12-08 09:53:23 +0000430#ifdef CONFIG_LOGBUFFER
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100431#ifndef CONFIG_ALT_LB_ADDR
wdenk9dfa8d12002-12-08 09:53:23 +0000432 /* reserve kernel log buffer */
433 addr -= (LOGBUFF_RESERVE);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000434 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
435 addr);
wdenk9dfa8d12002-12-08 09:53:23 +0000436#endif
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100437#endif
wdenk9dfa8d12002-12-08 09:53:23 +0000438
wdenkfe8c2802002-11-03 00:38:21 +0000439#ifdef CONFIG_PRAM
440 /*
441 * reserve protected RAM
442 */
Simon Glass44fc6692011-10-13 14:43:12 +0000443 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000444 addr -= (reg << 10); /* size is in kB */
Simon Glass44fc6692011-10-13 14:43:12 +0000445 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
wdenkfe8c2802002-11-03 00:38:21 +0000446#endif /* CONFIG_PRAM */
447
448 /* round down to next 4 kB limit */
449 addr &= ~(4096 - 1);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000450 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
wdenkfe8c2802002-11-03 00:38:21 +0000451
452#ifdef CONFIG_LCD
Minkyu Kang50777c42011-04-24 22:22:34 +0000453#ifdef CONFIG_FB_ADDR
454 gd->fb_base = CONFIG_FB_ADDR;
455#else
wdenkfe8c2802002-11-03 00:38:21 +0000456 /* reserve memory for LCD display (always full pages) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000457 addr = lcd_setmem(addr);
wdenkfe8c2802002-11-03 00:38:21 +0000458 gd->fb_base = addr;
Minkyu Kang50777c42011-04-24 22:22:34 +0000459#endif /* CONFIG_FB_ADDR */
wdenkfe8c2802002-11-03 00:38:21 +0000460#endif /* CONFIG_LCD */
461
462#if defined(CONFIG_VIDEO) && defined(CONFIG_8xx)
463 /* reserve memory for video display (always full pages) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000464 addr = video_setmem(addr);
wdenkfe8c2802002-11-03 00:38:21 +0000465 gd->fb_base = addr;
466#endif /* CONFIG_VIDEO */
467
468 /*
469 * reserve memory for U-Boot code, data & bss
wdenk4e112c12003-06-03 23:54:09 +0000470 * round down to next 4 kB limit
wdenkfe8c2802002-11-03 00:38:21 +0000471 */
472 addr -= len;
wdenk4e112c12003-06-03 23:54:09 +0000473 addr &= ~(4096 - 1);
Wolfgang Denk29dcbd42005-10-05 00:00:54 +0200474#ifdef CONFIG_E500
475 /* round down to next 64 kB limit so that IVPR stays aligned */
476 addr &= ~(65536 - 1);
477#endif
wdenkfe8c2802002-11-03 00:38:21 +0000478
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000479 debug("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
wdenkfe8c2802002-11-03 00:38:21 +0000480
481 /*
482 * reserve memory for malloc() arena
483 */
484 addr_sp = addr - TOTAL_MALLOC_LEN;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000485 debug("Reserving %dk for malloc() at: %08lx\n",
486 TOTAL_MALLOC_LEN >> 10, addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000487
488 /*
489 * (permanently) allocate a Board Info struct
490 * and a permanent copy of the "global" data
491 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000492 addr_sp -= sizeof(bd_t);
wdenkfe8c2802002-11-03 00:38:21 +0000493 bd = (bd_t *) addr_sp;
Peter Tyser4b25a8d2010-09-14 19:13:51 -0500494 memset(bd, 0, sizeof(bd_t));
wdenkfe8c2802002-11-03 00:38:21 +0000495 gd->bd = bd;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000496 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
497 sizeof(bd_t), addr_sp);
498 addr_sp -= sizeof(gd_t);
wdenkfe8c2802002-11-03 00:38:21 +0000499 id = (gd_t *) addr_sp;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000500 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
501 sizeof(gd_t), addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000502
503 /*
504 * Finally, we set up a new (bigger) stack.
505 *
506 * Leave some safety gap for SP, force alignment on 16 byte boundary
507 * Clear initial stack frame
508 */
509 addr_sp -= 16;
510 addr_sp &= ~0xF;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000511 s = (ulong *) addr_sp;
Joakim Tjernlund17686492012-07-23 10:58:03 +0000512 *s = 0; /* Terminate back chain */
513 *++s = 0; /* NULL return address */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000514 debug("Stack Pointer at: %08lx\n", addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000515
516 /*
517 * Save local variables to board info struct
518 */
519
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000520 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
521 bd->bi_memsize = gd->ram_size; /* size in bytes */
wdenkfe8c2802002-11-03 00:38:21 +0000522
Wolfgang Denkea9e0be2010-08-11 09:38:31 +0200523#ifdef CONFIG_SYS_SRAM_BASE
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000524 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
525 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
wdenkfe8c2802002-11-03 00:38:21 +0000526#endif
527
Masahiro Yamada5a2bf982014-03-05 17:40:10 +0900528#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500529 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200530 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
wdenkfe8c2802002-11-03 00:38:21 +0000531#endif
wdenkbe9c1cb2004-02-24 02:00:03 +0000532#if defined(CONFIG_MPC5xxx)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200533 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
wdenk337f5652004-10-28 00:09:35 +0000534#endif
Peter Tyser62e73982009-05-22 17:23:24 -0500535#if defined(CONFIG_MPC83xx)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200536 bd->bi_immrbar = CONFIG_SYS_IMMR;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500537#endif
wdenkfe8c2802002-11-03 00:38:21 +0000538
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000539 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000540 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
541 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500542#if defined(CONFIG_CPM2)
Simon Glass44ea8512012-12-13 20:48:46 +0000543 bd->bi_cpmfreq = gd->arch.cpm_clk;
Simon Glass34a194f2012-12-13 20:48:44 +0000544 bd->bi_brgfreq = gd->arch.brg_clk;
Simon Glass44ea8512012-12-13 20:48:46 +0000545 bd->bi_sccfreq = gd->arch.scc_clk;
546 bd->bi_vco = gd->arch.vco_out;
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500547#endif /* CONFIG_CPM2 */
Grzegorz Bernackiaf554d82008-01-08 17:16:15 +0100548#if defined(CONFIG_MPC512X)
Simon Glass6c6cbd12012-12-13 20:48:54 +0000549 bd->bi_ipsfreq = gd->arch.ips_clk;
Grzegorz Bernackiaf554d82008-01-08 17:16:15 +0100550#endif /* CONFIG_MPC512X */
wdenkbe9c1cb2004-02-24 02:00:03 +0000551#if defined(CONFIG_MPC5xxx)
Simon Glass4f8c5f02012-12-13 20:48:53 +0000552 bd->bi_ipbfreq = gd->arch.ipb_clk;
wdenk21136db2003-07-16 21:53:01 +0000553 bd->bi_pcifreq = gd->pci_clk;
wdenkbe9c1cb2004-02-24 02:00:03 +0000554#endif /* CONFIG_MPC5xxx */
wdenkfe8c2802002-11-03 00:38:21 +0000555
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200556#ifdef CONFIG_SYS_EXTBDINFO
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000557 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
558 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
559 sizeof(bd->bi_r_version));
wdenkfe8c2802002-11-03 00:38:21 +0000560
561 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
562 bd->bi_plb_busfreq = gd->bus_clk;
Stefan Roesee9a816c2007-05-11 12:01:06 +0200563#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
564 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
565 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000566 bd->bi_pci_busfreq = get_PCI_freq();
567 bd->bi_opbfreq = get_OPB_freq();
Michal Simek594c7b52008-06-24 09:54:09 +0200568#elif defined(CONFIG_XILINX_405)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000569 bd->bi_pci_busfreq = get_PCI_freq();
wdenkfe8c2802002-11-03 00:38:21 +0000570#endif
571#endif
572
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000573 debug("New Stack Pointer is: %08lx\n", addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000574
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000575 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000576
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000577 gd->relocaddr = addr; /* Store relocation addr, useful for debug */
Richard Retanubun92bc2632010-01-15 10:06:06 -0500578
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000579 memcpy(id, (void *) gd, sizeof(gd_t));
wdenkfe8c2802002-11-03 00:38:21 +0000580
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000581 relocate_code(addr_sp, id, addr);
wdenkfe8c2802002-11-03 00:38:21 +0000582
583 /* NOTREACHED - relocate_code() does not return */
584}
Jason Jin13bd9e52008-10-10 11:41:01 +0800585
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000586/*
wdenkfe8c2802002-11-03 00:38:21 +0000587 * This is the next part if the initialization sequence: we are now
588 * running from RAM and have a "normal" C environment, i. e. global
589 * data can be written, BSS has been cleared, the stack size in not
590 * that critical any more, etc.
wdenkfe8c2802002-11-03 00:38:21 +0000591 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000592void board_init_r(gd_t *id, ulong dest_addr)
wdenkfe8c2802002-11-03 00:38:21 +0000593{
wdenkfe8c2802002-11-03 00:38:21 +0000594 bd_t *bd;
Peter Tysered527702009-08-21 23:05:20 -0500595 ulong malloc_start;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000596
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200597#ifndef CONFIG_SYS_NO_FLASH
wdenkfe8c2802002-11-03 00:38:21 +0000598 ulong flash_size;
599#endif
600
601 gd = id; /* initialize RAM version of global data */
602 bd = gd->bd;
603
604 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
Grant Likely22e05842007-07-03 00:34:19 -0600605
Peter Tyser781c9b82009-08-21 23:05:21 -0500606 /* The Malloc area is immediately below the monitor copy in DRAM */
Peter Tysered527702009-08-21 23:05:20 -0500607 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
Kumar Gala87e43422009-09-01 21:07:08 -0500608
Peter Tysera95e6732009-12-15 12:10:47 -0600609#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
610 /*
Simon Glassa8b57392012-12-13 20:48:48 +0000611 * The gd->arch.cpu pointer is set to an address in flash before
612 * relocation. We need to update it to point to the same CPU entry
613 * in RAM.
Peter Tysera95e6732009-12-15 12:10:47 -0600614 */
Simon Glassa8b57392012-12-13 20:48:48 +0000615 gd->arch.cpu += dest_addr - CONFIG_SYS_MONITOR_BASE;
York Sun7b2947f2012-08-17 08:20:22 +0000616
617 /*
618 * If we didn't know the cpu mask & # cores, we can save them of
619 * now rather than 'computing' them constantly
620 */
621 fixup_cpu();
Peter Tysera95e6732009-12-15 12:10:47 -0600622#endif
623
Kumar Galab1dd51f2010-11-29 14:32:11 -0600624#ifdef CONFIG_SYS_EXTRA_ENV_RELOC
625 /*
626 * Some systems need to relocate the env_addr pointer early because the
627 * location it points to will get invalidated before env_relocate is
628 * called. One example is on systems that might use a L2 or L3 cache
629 * in SRAM mode and initialize that cache from SRAM mode back to being
630 * a cache in cpu_init_r.
631 */
632 gd->env_addr += dest_addr - CONFIG_SYS_MONITOR_BASE;
633#endif
634
Marian Balakowiczb55b60e2006-06-30 15:27:09 +0200635 serial_initialize();
wdenkfe8c2802002-11-03 00:38:21 +0000636
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000637 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
wdenkfe8c2802002-11-03 00:38:21 +0000638
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000639 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000640
Becky Bruce2f79edd2008-10-31 17:14:39 -0500641 /*
642 * Setup trap handlers
643 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000644 trap_init(dest_addr);
Becky Bruce2f79edd2008-10-31 17:14:39 -0500645
Becky Brucef93e1cb2009-02-03 18:10:52 -0600646#ifdef CONFIG_ADDR_MAP
Kumar Gala9ac287a2008-12-16 14:59:20 -0600647 init_addr_map();
648#endif
649
wdenkda55c6e2004-01-20 23:12:12 +0000650#if defined(CONFIG_BOARD_EARLY_INIT_R)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000651 board_early_init_r();
wdenkda55c6e2004-01-20 23:12:12 +0000652#endif
653
wdenkb9a83a92003-05-30 12:48:29 +0000654 monitor_flash_len = (ulong)&__init_end - dest_addr;
wdenkfe8c2802002-11-03 00:38:21 +0000655
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000656 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000657
wdenk56f94be2002-11-05 16:35:14 +0000658#ifdef CONFIG_LOGBUFFER
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000659 logbuff_init_ptrs();
wdenk56f94be2002-11-05 16:35:14 +0000660#endif
wdenkfe8c2802002-11-03 00:38:21 +0000661#ifdef CONFIG_POST
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000662 post_output_backlog();
wdenkfe8c2802002-11-03 00:38:21 +0000663#endif
664
665 WATCHDOG_RESET();
666
Kim Phillipsf3c7cd92010-04-20 19:37:54 -0500667#if defined(CONFIG_SYS_DELAYED_ICACHE)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000668 icache_enable(); /* it's time to enable the instruction cache */
wdenkfe8c2802002-11-03 00:38:21 +0000669#endif
670
Wolfgang Denk1e0f07e2009-07-26 23:28:02 +0200671#if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
672 unlock_ram_in_cache(); /* it's time to unlock D-cache in e500 */
wdenk9c53f402003-10-15 23:53:47 +0000673#endif
674
Andre Schwarz8d5c89d2010-10-05 11:59:31 +0200675#if defined(CONFIG_PCI) && defined(CONFIG_SYS_EARLY_PCI_INIT)
wdenkfe8c2802002-11-03 00:38:21 +0000676 /*
Andre Schwarz8d5c89d2010-10-05 11:59:31 +0200677 * Do early PCI configuration _before_ the flash gets initialised,
678 * because PCU ressources are crucial for flash access on some boards.
wdenkfe8c2802002-11-03 00:38:21 +0000679 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000680 pci_init();
wdenkef5fe752003-03-12 10:41:04 +0000681#endif
Wolfgang Denk41364282010-11-23 23:17:18 +0100682#if defined(CONFIG_WINBOND_83C553)
wdenkfe8c2802002-11-03 00:38:21 +0000683 /*
684 * Initialise the ISA bridge
685 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000686 initialise_w83c553f();
wdenkfe8c2802002-11-03 00:38:21 +0000687#endif
688
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000689 asm("sync ; isync");
wdenkfe8c2802002-11-03 00:38:21 +0000690
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000691 mem_malloc_init(malloc_start, TOTAL_MALLOC_LEN);
Stefan Roeseb81464e2009-05-11 15:50:12 +0200692
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200693#if !defined(CONFIG_SYS_NO_FLASH)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000694 puts("Flash: ");
wdenkfe8c2802002-11-03 00:38:21 +0000695
John Schmoller9a736012010-09-29 14:05:44 -0500696 if (board_flash_wp_on()) {
697 printf("Uninitialized - Write Protect On\n");
698 /* Since WP is on, we can't find real size. Set to 0 */
699 flash_size = 0;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000700 } else if ((flash_size = flash_init()) > 0) {
701#ifdef CONFIG_SYS_FLASH_CHECKSUM
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000702 print_size(flash_size, "");
wdenkfe8c2802002-11-03 00:38:21 +0000703 /*
704 * Compute and print flash CRC if flashchecksum is set to 'y'
705 *
706 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
707 */
Joe Hershberger864ec562012-12-11 22:16:22 -0600708 if (getenv_yesno("flashchecksum") == 1) {
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000709 printf(" CRC: %08X",
710 crc32(0,
711 (const unsigned char *)
712 CONFIG_SYS_FLASH_BASE, flash_size)
713 );
wdenkfe8c2802002-11-03 00:38:21 +0000714 }
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000715 putc('\n');
716#else /* !CONFIG_SYS_FLASH_CHECKSUM */
717 print_size(flash_size, "\n");
718#endif /* CONFIG_SYS_FLASH_CHECKSUM */
wdenkfe8c2802002-11-03 00:38:21 +0000719 } else {
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000720 puts(failed);
721 hang();
wdenkfe8c2802002-11-03 00:38:21 +0000722 }
723
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000724 /* update start of FLASH memory */
725 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
726 /* size of FLASH memory (final value) */
727 bd->bi_flashsize = flash_size;
Heiko Schocher3ec43662006-12-21 17:17:02 +0100728
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200729#if defined(CONFIG_SYS_UPDATE_FLASH_SIZE)
Heiko Schocher3ec43662006-12-21 17:17:02 +0100730 /* Make a update of the Memctrl. */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000731 update_flash_size(flash_size);
Heiko Schocher3ec43662006-12-21 17:17:02 +0100732#endif
733
734
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000735#if defined(CONFIG_OXC) || defined(CONFIG_RMU)
wdenka09491a2004-04-08 22:31:29 +0000736 /* flash mapped at end of memory map */
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200737 bd->bi_flashoffset = CONFIG_SYS_TEXT_BASE + flash_size;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000738#elif CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
739 bd->bi_flashoffset = monitor_flash_len; /* reserved area for monitor */
740#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200741#endif /* !CONFIG_SYS_NO_FLASH */
wdenkfe8c2802002-11-03 00:38:21 +0000742
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000743 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000744
745 /* initialize higher level parts of CPU like time base and timers */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000746 cpu_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000747
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000748 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000749
wdenkfe8c2802002-11-03 00:38:21 +0000750#ifdef CONFIG_SPI
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000751#if !defined(CONFIG_ENV_IS_IN_EEPROM)
752 spi_init_f();
753#endif
754 spi_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000755#endif
756
Jon Loeliger6b233052007-07-09 18:02:11 -0500757#if defined(CONFIG_CMD_NAND)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000758 WATCHDOG_RESET();
759 puts("NAND: ");
Stefan Roese42fbddd2006-09-07 11:51:23 +0200760 nand_init(); /* go init the NAND */
761#endif
762
Terry Lvb4eceac2010-05-17 10:57:01 +0800763#ifdef CONFIG_GENERIC_MMC
764/*
765 * MMC initialization is called before relocating env.
766 * Thus It is required that operations like pin multiplexer
767 * be put in board_init.
768 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000769 WATCHDOG_RESET();
770 puts("MMC: ");
771 mmc_initialize(bd);
Terry Lvb4eceac2010-05-17 10:57:01 +0800772#endif
773
wdenkfe8c2802002-11-03 00:38:21 +0000774 /* relocate environment function pointers etc. */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000775 env_relocate();
wdenkfe8c2802002-11-03 00:38:21 +0000776
777 /*
Kumar Gala2ef216b2011-02-02 11:23:50 -0600778 * after non-volatile devices & environment is setup and cpu code have
779 * another round to deal with any initialization that might require
780 * full access to the environment or loading of some image (firmware)
781 * from a non-volatile device
782 */
783 cpu_secondary_init_r();
784
785 /*
wdenkfe8c2802002-11-03 00:38:21 +0000786 * Fill in missing fields of bd_info.
wdenk57b2d802003-06-27 21:31:46 +0000787 * We do this here, where we have "normal" access to the
788 * environment; we used to do this still running from ROM,
Wolfgang Denk76af2782010-07-24 21:55:43 +0200789 * where had to use getenv_f(), which can be pretty slow when
wdenk57b2d802003-06-27 21:31:46 +0000790 * the environment is in EEPROM.
wdenkfe8c2802002-11-03 00:38:21 +0000791 */
wdenk78924a72004-04-18 21:45:42 +0000792
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200793#if defined(CONFIG_SYS_EXTBDINFO)
wdenk78924a72004-04-18 21:45:42 +0000794#if defined(CONFIG_405GP) || defined(CONFIG_405EP)
795#if defined(CONFIG_I2CFAST)
796 /*
797 * set bi_iic_fast for linux taking environment variable
798 * "i2cfast" into account
799 */
800 {
Joe Hershberger864ec562012-12-11 22:16:22 -0600801 if (getenv_yesno("i2cfast") == 1) {
wdenk78924a72004-04-18 21:45:42 +0000802 bd->bi_iic_fast[0] = 1;
803 bd->bi_iic_fast[1] = 1;
wdenk78924a72004-04-18 21:45:42 +0000804 }
805 }
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000806#endif /* CONFIG_I2CFAST */
807#endif /* CONFIG_405GP, CONFIG_405EP */
808#endif /* CONFIG_SYS_EXTBDINFO */
wdenk78924a72004-04-18 21:45:42 +0000809
Wolfgang Denkd2a7a742007-06-08 10:24:58 +0200810#if defined(CONFIG_SC3)
Heiko Schocher3c58a992007-01-11 15:44:44 +0100811 sc3_read_eeprom();
812#endif
Haiying Wang34cf9592008-01-16 17:12:12 -0500813
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000814#if defined(CONFIG_ID_EEPROM) || defined(CONFIG_SYS_I2C_MAC_OFFSET)
Haiying Wang34cf9592008-01-16 17:12:12 -0500815 mac_read_from_eeprom();
816#endif
817
wdenkfe8c2802002-11-03 00:38:21 +0000818#ifdef CONFIG_HERMES
819 if ((gd->board_type >> 16) == 2)
820 bd->bi_ethspeed = gd->board_type & 0xFFFF;
821 else
822 bd->bi_ethspeed = 0xFFFF;
823#endif
824
Stefan Roese29089432009-02-25 12:11:15 +0100825#ifdef CONFIG_CMD_NET
Mike Frysinger26250482009-02-11 20:07:19 -0500826 /* kept around for legacy kernels only ... ignore the next section */
827 eth_getenv_enetaddr("ethaddr", bd->bi_enetaddr);
wdenk54070ab2004-12-31 09:32:47 +0000828#ifdef CONFIG_HAS_ETH1
Mike Frysinger26250482009-02-11 20:07:19 -0500829 eth_getenv_enetaddr("eth1addr", bd->bi_enet1addr);
wdenkfe8c2802002-11-03 00:38:21 +0000830#endif
wdenk54070ab2004-12-31 09:32:47 +0000831#ifdef CONFIG_HAS_ETH2
Mike Frysinger26250482009-02-11 20:07:19 -0500832 eth_getenv_enetaddr("eth2addr", bd->bi_enet2addr);
wdenkfe8c2802002-11-03 00:38:21 +0000833#endif
wdenk54070ab2004-12-31 09:32:47 +0000834#ifdef CONFIG_HAS_ETH3
Mike Frysinger26250482009-02-11 20:07:19 -0500835 eth_getenv_enetaddr("eth3addr", bd->bi_enet3addr);
wdenk544e9732004-02-06 23:19:44 +0000836#endif
richardretanubune5167f12008-09-29 18:28:23 -0400837#ifdef CONFIG_HAS_ETH4
Mike Frysinger26250482009-02-11 20:07:19 -0500838 eth_getenv_enetaddr("eth4addr", bd->bi_enet4addr);
richardretanubune5167f12008-09-29 18:28:23 -0400839#endif
richardretanubune5167f12008-09-29 18:28:23 -0400840#ifdef CONFIG_HAS_ETH5
Mike Frysinger26250482009-02-11 20:07:19 -0500841 eth_getenv_enetaddr("eth5addr", bd->bi_enet5addr);
richardretanubune5167f12008-09-29 18:28:23 -0400842#endif
Stefan Roese29089432009-02-25 12:11:15 +0100843#endif /* CONFIG_CMD_NET */
richardretanubune5167f12008-09-29 18:28:23 -0400844
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000845 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000846
Andre Schwarz8d5c89d2010-10-05 11:59:31 +0200847#if defined(CONFIG_PCI) && !defined(CONFIG_SYS_EARLY_PCI_INIT)
wdenkfe8c2802002-11-03 00:38:21 +0000848 /*
849 * Do pci configuration
850 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000851 pci_init();
wdenkfe8c2802002-11-03 00:38:21 +0000852#endif
853
854/** leave this here (after malloc(), environment and PCI are working) **/
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +0200855 /* Initialize stdio devices */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000856 stdio_init();
wdenkfe8c2802002-11-03 00:38:21 +0000857
wdenk874ac262003-07-24 23:38:38 +0000858 /* Initialize the jump table for applications */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000859 jumptable_init();
wdenkfe8c2802002-11-03 00:38:21 +0000860
Rafal Jaworowskia19be782008-01-09 19:39:36 +0100861#if defined(CONFIG_API)
862 /* Initialize API */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000863 api_init();
Rafal Jaworowskia19be782008-01-09 19:39:36 +0100864#endif
865
wdenkfe8c2802002-11-03 00:38:21 +0000866 /* Initialize the console (after the relocation and devices init) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000867 console_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000868
Peter Tyser5c506212009-09-16 22:03:07 -0500869#if defined(CONFIG_MISC_INIT_R)
wdenkfe8c2802002-11-03 00:38:21 +0000870 /* miscellaneous platform dependent initialisations */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000871 misc_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000872#endif
873
874#ifdef CONFIG_HERMES
875 if (bd->bi_ethspeed != 0xFFFF)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000876 hermes_start_lxt980((int) bd->bi_ethspeed);
wdenkfe8c2802002-11-03 00:38:21 +0000877#endif
878
Jon Loeliger6b233052007-07-09 18:02:11 -0500879#if defined(CONFIG_CMD_KGDB)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000880 WATCHDOG_RESET();
881 puts("KGDB: ");
882 kgdb_init();
wdenkfe8c2802002-11-03 00:38:21 +0000883#endif
884
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000885 debug("U-Boot relocated to %08lx\n", dest_addr);
wdenkfe8c2802002-11-03 00:38:21 +0000886
887 /*
888 * Enable Interrupts
889 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000890 interrupt_init();
wdenkfe8c2802002-11-03 00:38:21 +0000891
Heiko Schocher633e03a2007-06-22 19:11:54 +0200892#if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000893 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
wdenkfe8c2802002-11-03 00:38:21 +0000894#endif
895
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000896 udelay(20);
wdenkfe8c2802002-11-03 00:38:21 +0000897
wdenkfe8c2802002-11-03 00:38:21 +0000898 /* Initialize from environment */
Simon Glass44fc6692011-10-13 14:43:12 +0000899 load_addr = getenv_ulong("loadaddr", 16, load_addr);
wdenkfe8c2802002-11-03 00:38:21 +0000900
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000901 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000902
Jon Loeliger6b233052007-07-09 18:02:11 -0500903#if defined(CONFIG_CMD_SCSI)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000904 WATCHDOG_RESET();
905 puts("SCSI: ");
906 scsi_init();
wdenkfe8c2802002-11-03 00:38:21 +0000907#endif
908
Jon Loeliger6b233052007-07-09 18:02:11 -0500909#if defined(CONFIG_CMD_DOC)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000910 WATCHDOG_RESET();
911 puts("DOC: ");
912 doc_init();
wdenkfe8c2802002-11-03 00:38:21 +0000913#endif
914
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +0200915#ifdef CONFIG_BITBANGMII
916 bb_miiphy_init();
917#endif
Jon Loeliger6b233052007-07-09 18:02:11 -0500918#if defined(CONFIG_CMD_NET)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000919 WATCHDOG_RESET();
920 puts("Net: ");
921 eth_initialize(bd);
wdenkfe8c2802002-11-03 00:38:21 +0000922#endif
923
Peter Tyserd3d9a502009-09-16 22:03:08 -0500924#if defined(CONFIG_CMD_NET) && defined(CONFIG_RESET_PHY_R)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000925 WATCHDOG_RESET();
926 debug("Reset Ethernet PHY\n");
927 reset_phy();
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200928#endif
929
wdenkfe8c2802002-11-03 00:38:21 +0000930#ifdef CONFIG_POST
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000931 post_run(NULL, POST_RAM | post_bootmode_get(0));
wdenkfe8c2802002-11-03 00:38:21 +0000932#endif
933
Jon Loeliger6b233052007-07-09 18:02:11 -0500934#if defined(CONFIG_CMD_PCMCIA) \
935 && !defined(CONFIG_CMD_IDE)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000936 WATCHDOG_RESET();
937 puts("PCMCIA:");
938 pcmcia_init();
wdenkfe8c2802002-11-03 00:38:21 +0000939#endif
940
Jon Loeliger6b233052007-07-09 18:02:11 -0500941#if defined(CONFIG_CMD_IDE)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000942 WATCHDOG_RESET();
943#ifdef CONFIG_IDE_8xx_PCCARD
944 puts("PCMCIA:");
945#else
946 puts("IDE: ");
wdenkfe8c2802002-11-03 00:38:21 +0000947#endif
Heiko Schocher3c58a992007-01-11 15:44:44 +0100948#if defined(CONFIG_START_IDE)
949 if (board_start_ide())
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000950 ide_init();
Heiko Schocher3c58a992007-01-11 15:44:44 +0100951#else
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000952 ide_init();
Heiko Schocher3c58a992007-01-11 15:44:44 +0100953#endif
Jon Loeliger1670a5b2007-07-10 11:19:50 -0500954#endif
wdenkfe8c2802002-11-03 00:38:21 +0000955
956#ifdef CONFIG_LAST_STAGE_INIT
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000957 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000958 /*
959 * Some parts can be only initialized if all others (like
960 * Interrupts) are up and running (i.e. the PC-style ISA
961 * keyboard).
962 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000963 last_stage_init();
wdenkfe8c2802002-11-03 00:38:21 +0000964#endif
965
Jon Loeliger6b233052007-07-09 18:02:11 -0500966#if defined(CONFIG_CMD_BEDBUG)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000967 WATCHDOG_RESET();
968 bedbug_init();
wdenkfe8c2802002-11-03 00:38:21 +0000969#endif
970
wdenk9dfa8d12002-12-08 09:53:23 +0000971#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
wdenkfe8c2802002-11-03 00:38:21 +0000972 /*
973 * Export available size of memory for Linux,
974 * taking into account the protected RAM at top of memory
975 */
976 {
Simon Glass44fc6692011-10-13 14:43:12 +0000977 ulong pram = 0;
Simon Glassd9d4fa72012-01-05 17:54:57 +0000978 char memsz[32];
wdenkfe8c2802002-11-03 00:38:21 +0000979
Simon Glass44fc6692011-10-13 14:43:12 +0000980#ifdef CONFIG_PRAM
981 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
wdenk9dfa8d12002-12-08 09:53:23 +0000982#endif
983#ifdef CONFIG_LOGBUFFER
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100984#ifndef CONFIG_ALT_LB_ADDR
wdenk9dfa8d12002-12-08 09:53:23 +0000985 /* Also take the logbuffer into account (pram is in kB) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000986 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
wdenk9dfa8d12002-12-08 09:53:23 +0000987#endif
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100988#endif
Valentin Longchamp3d854c42013-10-18 11:47:14 +0200989 sprintf(memsz, "%ldk", (ulong) (bd->bi_memsize / 1024) - pram);
Simon Glassd9d4fa72012-01-05 17:54:57 +0000990 setenv("mem", memsz);
wdenkfe8c2802002-11-03 00:38:21 +0000991 }
992#endif
993
wdenkb983fa22004-01-16 00:30:56 +0000994#ifdef CONFIG_PS2KBD
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000995 puts("PS/2: ");
wdenkb983fa22004-01-16 00:30:56 +0000996 kbd_init();
997#endif
998
wdenkfe8c2802002-11-03 00:38:21 +0000999 /* Initialization complete - start the monitor */
1000
1001 /* main_loop() can return to retry autoboot, if so just run it again. */
1002 for (;;) {
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +00001003 WATCHDOG_RESET();
1004 main_loop();
wdenkfe8c2802002-11-03 00:38:21 +00001005 }
1006
1007 /* NOTREACHED - no way out of command loop except booting */
1008}
1009
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +00001010#if 0 /* We could use plain global data, but the resulting code is bigger */
wdenkfe8c2802002-11-03 00:38:21 +00001011/*
1012 * Pointer to initial global data area
1013 *
1014 * Here we initialize it.
1015 */
1016#undef XTRN_DECLARE_GLOBAL_DATA_PTR
1017#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +00001018DECLARE_GLOBAL_DATA_PTR =
1019 (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
1020#endif /* 0 */
wdenkfe8c2802002-11-03 00:38:21 +00001021
1022/************************************************************************/