blob: 91645d36ee9afcaad5138d55bfaa5ac407fd969b [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
349
350 /* Pointer is writable since we allocated a register for it */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200351 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
wdenk3337af42004-07-01 20:28:03 +0000352 /* compiler optimization barrier needed for GCC >= 3.4 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000353 __asm__ __volatile__("":::"memory");
wdenkfe8c2802002-11-03 00:38:21 +0000354
Detlev Zundela2ea2762010-01-22 14:47:59 +0100355#if !defined(CONFIG_CPM2) && !defined(CONFIG_MPC512X) && \
356 !defined(CONFIG_MPC83xx) && !defined(CONFIG_MPC85xx) && \
357 !defined(CONFIG_MPC86xx)
wdenkfe8c2802002-11-03 00:38:21 +0000358 /* Clear initial global data */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000359 memset((void *) gd, 0, sizeof(gd_t));
wdenkfe8c2802002-11-03 00:38:21 +0000360#endif
361
Tang Yuantiana8e1d8b2014-07-23 17:27:52 +0800362 gd->flags = bootflag;
363
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000364 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr)
365 if ((*init_fnc_ptr) () != 0)
366 hang();
wdenkfe8c2802002-11-03 00:38:21 +0000367
Bernhard Kaindl920fd2b2011-10-16 00:07:08 +0000368#ifdef CONFIG_POST
369 post_bootmode_init();
Kim Phillipse16737f2012-10-29 13:34:29 +0000370 post_run(NULL, POST_ROM | post_bootmode_get(NULL));
Bernhard Kaindl920fd2b2011-10-16 00:07:08 +0000371#endif
372
373 WATCHDOG_RESET();
374
wdenkfe8c2802002-11-03 00:38:21 +0000375 /*
376 * Now that we have DRAM mapped and working, we can
377 * relocate the code and continue running from DRAM.
378 *
379 * Reserve memory at end of RAM for (top down in that order):
Stefan Roesea13709f2008-03-26 10:14:11 +0100380 * - area that won't get touched by U-Boot and Linux (optional)
wdenk57b2d802003-06-27 21:31:46 +0000381 * - kernel log buffer
wdenkfe8c2802002-11-03 00:38:21 +0000382 * - protected RAM
383 * - LCD framebuffer
384 * - monitor code
385 * - board info struct
386 */
Simon Glassed70c8f2013-03-14 06:54:53 +0000387 len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
wdenkfe8c2802002-11-03 00:38:21 +0000388
Stefan Roesea13709f2008-03-26 10:14:11 +0100389 /*
390 * Subtract specified amount of memory to hide so that it won't
391 * get "touched" at all by U-Boot. By fixing up gd->ram_size
392 * the Linux kernel should now get passed the now "corrected"
393 * memory size and won't touch it either. This should work
394 * for arch/ppc and arch/powerpc. Only Linux board ports in
395 * arch/powerpc with bootwrapper support, that recalculate the
396 * memory size from the SDRAM controller setup will have to
397 * get fixed.
398 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200399 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
Stefan Roesea13709f2008-03-26 10:14:11 +0100400
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200401 addr = CONFIG_SYS_SDRAM_BASE + get_effective_memsize();
wdenkfe8c2802002-11-03 00:38:21 +0000402
Kumar Gala04a3b142009-03-31 17:58:13 -0500403#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
404 /*
405 * We need to make sure the location we intend to put secondary core
406 * boot code is reserved and not used by any part of u-boot
Wolfgang Denke366f152009-04-05 00:27:57 +0200407 */
York Suna28496f2012-10-08 07:44:25 +0000408 if (addr > determine_mp_bootpg(NULL)) {
409 addr = determine_mp_bootpg(NULL);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000410 debug("Reserving MP boot page to %08lx\n", addr);
Kumar Gala04a3b142009-03-31 17:58:13 -0500411 }
412#endif
413
wdenk9dfa8d12002-12-08 09:53:23 +0000414#ifdef CONFIG_LOGBUFFER
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100415#ifndef CONFIG_ALT_LB_ADDR
wdenk9dfa8d12002-12-08 09:53:23 +0000416 /* reserve kernel log buffer */
417 addr -= (LOGBUFF_RESERVE);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000418 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
419 addr);
wdenk9dfa8d12002-12-08 09:53:23 +0000420#endif
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100421#endif
wdenk9dfa8d12002-12-08 09:53:23 +0000422
wdenkfe8c2802002-11-03 00:38:21 +0000423#ifdef CONFIG_PRAM
424 /*
425 * reserve protected RAM
426 */
Simon Glass44fc6692011-10-13 14:43:12 +0000427 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000428 addr -= (reg << 10); /* size is in kB */
Simon Glass44fc6692011-10-13 14:43:12 +0000429 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
wdenkfe8c2802002-11-03 00:38:21 +0000430#endif /* CONFIG_PRAM */
431
432 /* round down to next 4 kB limit */
433 addr &= ~(4096 - 1);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000434 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
wdenkfe8c2802002-11-03 00:38:21 +0000435
436#ifdef CONFIG_LCD
Minkyu Kang50777c42011-04-24 22:22:34 +0000437#ifdef CONFIG_FB_ADDR
438 gd->fb_base = CONFIG_FB_ADDR;
439#else
wdenkfe8c2802002-11-03 00:38:21 +0000440 /* reserve memory for LCD display (always full pages) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000441 addr = lcd_setmem(addr);
wdenkfe8c2802002-11-03 00:38:21 +0000442 gd->fb_base = addr;
Minkyu Kang50777c42011-04-24 22:22:34 +0000443#endif /* CONFIG_FB_ADDR */
wdenkfe8c2802002-11-03 00:38:21 +0000444#endif /* CONFIG_LCD */
445
446#if defined(CONFIG_VIDEO) && defined(CONFIG_8xx)
447 /* reserve memory for video display (always full pages) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000448 addr = video_setmem(addr);
wdenkfe8c2802002-11-03 00:38:21 +0000449 gd->fb_base = addr;
450#endif /* CONFIG_VIDEO */
451
452 /*
453 * reserve memory for U-Boot code, data & bss
wdenk4e112c12003-06-03 23:54:09 +0000454 * round down to next 4 kB limit
wdenkfe8c2802002-11-03 00:38:21 +0000455 */
456 addr -= len;
wdenk4e112c12003-06-03 23:54:09 +0000457 addr &= ~(4096 - 1);
Wolfgang Denk29dcbd42005-10-05 00:00:54 +0200458#ifdef CONFIG_E500
459 /* round down to next 64 kB limit so that IVPR stays aligned */
460 addr &= ~(65536 - 1);
461#endif
wdenkfe8c2802002-11-03 00:38:21 +0000462
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000463 debug("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
wdenkfe8c2802002-11-03 00:38:21 +0000464
465 /*
466 * reserve memory for malloc() arena
467 */
468 addr_sp = addr - TOTAL_MALLOC_LEN;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000469 debug("Reserving %dk for malloc() at: %08lx\n",
470 TOTAL_MALLOC_LEN >> 10, addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000471
472 /*
473 * (permanently) allocate a Board Info struct
474 * and a permanent copy of the "global" data
475 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000476 addr_sp -= sizeof(bd_t);
wdenkfe8c2802002-11-03 00:38:21 +0000477 bd = (bd_t *) addr_sp;
Peter Tyser4b25a8d2010-09-14 19:13:51 -0500478 memset(bd, 0, sizeof(bd_t));
wdenkfe8c2802002-11-03 00:38:21 +0000479 gd->bd = bd;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000480 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
481 sizeof(bd_t), addr_sp);
482 addr_sp -= sizeof(gd_t);
wdenkfe8c2802002-11-03 00:38:21 +0000483 id = (gd_t *) addr_sp;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000484 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
485 sizeof(gd_t), addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000486
487 /*
488 * Finally, we set up a new (bigger) stack.
489 *
490 * Leave some safety gap for SP, force alignment on 16 byte boundary
491 * Clear initial stack frame
492 */
493 addr_sp -= 16;
494 addr_sp &= ~0xF;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000495 s = (ulong *) addr_sp;
Joakim Tjernlund17686492012-07-23 10:58:03 +0000496 *s = 0; /* Terminate back chain */
497 *++s = 0; /* NULL return address */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000498 debug("Stack Pointer at: %08lx\n", addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000499
500 /*
501 * Save local variables to board info struct
502 */
503
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000504 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
505 bd->bi_memsize = gd->ram_size; /* size in bytes */
wdenkfe8c2802002-11-03 00:38:21 +0000506
Wolfgang Denkea9e0be2010-08-11 09:38:31 +0200507#ifdef CONFIG_SYS_SRAM_BASE
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000508 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
509 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
wdenkfe8c2802002-11-03 00:38:21 +0000510#endif
511
Masahiro Yamada5a2bf982014-03-05 17:40:10 +0900512#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500513 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200514 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
wdenkfe8c2802002-11-03 00:38:21 +0000515#endif
wdenkbe9c1cb2004-02-24 02:00:03 +0000516#if defined(CONFIG_MPC5xxx)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200517 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
wdenk337f5652004-10-28 00:09:35 +0000518#endif
Peter Tyser62e73982009-05-22 17:23:24 -0500519#if defined(CONFIG_MPC83xx)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200520 bd->bi_immrbar = CONFIG_SYS_IMMR;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500521#endif
wdenkfe8c2802002-11-03 00:38:21 +0000522
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000523 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000524 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
525 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500526#if defined(CONFIG_CPM2)
Simon Glass44ea8512012-12-13 20:48:46 +0000527 bd->bi_cpmfreq = gd->arch.cpm_clk;
Simon Glass34a194f2012-12-13 20:48:44 +0000528 bd->bi_brgfreq = gd->arch.brg_clk;
Simon Glass44ea8512012-12-13 20:48:46 +0000529 bd->bi_sccfreq = gd->arch.scc_clk;
530 bd->bi_vco = gd->arch.vco_out;
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500531#endif /* CONFIG_CPM2 */
Grzegorz Bernackiaf554d82008-01-08 17:16:15 +0100532#if defined(CONFIG_MPC512X)
Simon Glass6c6cbd12012-12-13 20:48:54 +0000533 bd->bi_ipsfreq = gd->arch.ips_clk;
Grzegorz Bernackiaf554d82008-01-08 17:16:15 +0100534#endif /* CONFIG_MPC512X */
wdenkbe9c1cb2004-02-24 02:00:03 +0000535#if defined(CONFIG_MPC5xxx)
Simon Glass4f8c5f02012-12-13 20:48:53 +0000536 bd->bi_ipbfreq = gd->arch.ipb_clk;
wdenk21136db2003-07-16 21:53:01 +0000537 bd->bi_pcifreq = gd->pci_clk;
wdenkbe9c1cb2004-02-24 02:00:03 +0000538#endif /* CONFIG_MPC5xxx */
wdenkfe8c2802002-11-03 00:38:21 +0000539
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200540#ifdef CONFIG_SYS_EXTBDINFO
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000541 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
542 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
543 sizeof(bd->bi_r_version));
wdenkfe8c2802002-11-03 00:38:21 +0000544
545 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
546 bd->bi_plb_busfreq = gd->bus_clk;
Stefan Roesee9a816c2007-05-11 12:01:06 +0200547#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
548 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
549 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000550 bd->bi_pci_busfreq = get_PCI_freq();
551 bd->bi_opbfreq = get_OPB_freq();
Michal Simek594c7b52008-06-24 09:54:09 +0200552#elif defined(CONFIG_XILINX_405)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000553 bd->bi_pci_busfreq = get_PCI_freq();
wdenkfe8c2802002-11-03 00:38:21 +0000554#endif
555#endif
556
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000557 debug("New Stack Pointer is: %08lx\n", addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000558
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000559 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000560
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000561 gd->relocaddr = addr; /* Store relocation addr, useful for debug */
Richard Retanubun92bc2632010-01-15 10:06:06 -0500562
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000563 memcpy(id, (void *) gd, sizeof(gd_t));
wdenkfe8c2802002-11-03 00:38:21 +0000564
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000565 relocate_code(addr_sp, id, addr);
wdenkfe8c2802002-11-03 00:38:21 +0000566
567 /* NOTREACHED - relocate_code() does not return */
568}
Jason Jin13bd9e52008-10-10 11:41:01 +0800569
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000570/*
wdenkfe8c2802002-11-03 00:38:21 +0000571 * This is the next part if the initialization sequence: we are now
572 * running from RAM and have a "normal" C environment, i. e. global
573 * data can be written, BSS has been cleared, the stack size in not
574 * that critical any more, etc.
wdenkfe8c2802002-11-03 00:38:21 +0000575 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000576void board_init_r(gd_t *id, ulong dest_addr)
wdenkfe8c2802002-11-03 00:38:21 +0000577{
wdenkfe8c2802002-11-03 00:38:21 +0000578 bd_t *bd;
Peter Tysered527702009-08-21 23:05:20 -0500579 ulong malloc_start;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000580
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200581#ifndef CONFIG_SYS_NO_FLASH
wdenkfe8c2802002-11-03 00:38:21 +0000582 ulong flash_size;
583#endif
584
585 gd = id; /* initialize RAM version of global data */
586 bd = gd->bd;
587
588 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
Grant Likely22e05842007-07-03 00:34:19 -0600589
Peter Tyser781c9b82009-08-21 23:05:21 -0500590 /* The Malloc area is immediately below the monitor copy in DRAM */
Peter Tysered527702009-08-21 23:05:20 -0500591 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
Kumar Gala87e43422009-09-01 21:07:08 -0500592
Peter Tysera95e6732009-12-15 12:10:47 -0600593#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
594 /*
Simon Glassa8b57392012-12-13 20:48:48 +0000595 * The gd->arch.cpu pointer is set to an address in flash before
596 * relocation. We need to update it to point to the same CPU entry
597 * in RAM.
Peter Tysera95e6732009-12-15 12:10:47 -0600598 */
Simon Glassa8b57392012-12-13 20:48:48 +0000599 gd->arch.cpu += dest_addr - CONFIG_SYS_MONITOR_BASE;
York Sun7b2947f2012-08-17 08:20:22 +0000600
601 /*
602 * If we didn't know the cpu mask & # cores, we can save them of
603 * now rather than 'computing' them constantly
604 */
605 fixup_cpu();
Peter Tysera95e6732009-12-15 12:10:47 -0600606#endif
607
Kumar Galab1dd51f2010-11-29 14:32:11 -0600608#ifdef CONFIG_SYS_EXTRA_ENV_RELOC
609 /*
610 * Some systems need to relocate the env_addr pointer early because the
611 * location it points to will get invalidated before env_relocate is
612 * called. One example is on systems that might use a L2 or L3 cache
613 * in SRAM mode and initialize that cache from SRAM mode back to being
614 * a cache in cpu_init_r.
615 */
616 gd->env_addr += dest_addr - CONFIG_SYS_MONITOR_BASE;
617#endif
618
Marian Balakowiczb55b60e2006-06-30 15:27:09 +0200619 serial_initialize();
wdenkfe8c2802002-11-03 00:38:21 +0000620
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000621 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
wdenkfe8c2802002-11-03 00:38:21 +0000622
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000623 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000624
Becky Bruce2f79edd2008-10-31 17:14:39 -0500625 /*
626 * Setup trap handlers
627 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000628 trap_init(dest_addr);
Becky Bruce2f79edd2008-10-31 17:14:39 -0500629
Becky Brucef93e1cb2009-02-03 18:10:52 -0600630#ifdef CONFIG_ADDR_MAP
Kumar Gala9ac287a2008-12-16 14:59:20 -0600631 init_addr_map();
632#endif
633
wdenkda55c6e2004-01-20 23:12:12 +0000634#if defined(CONFIG_BOARD_EARLY_INIT_R)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000635 board_early_init_r();
wdenkda55c6e2004-01-20 23:12:12 +0000636#endif
637
wdenkb9a83a92003-05-30 12:48:29 +0000638 monitor_flash_len = (ulong)&__init_end - dest_addr;
wdenkfe8c2802002-11-03 00:38:21 +0000639
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000640 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000641
wdenk56f94be2002-11-05 16:35:14 +0000642#ifdef CONFIG_LOGBUFFER
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000643 logbuff_init_ptrs();
wdenk56f94be2002-11-05 16:35:14 +0000644#endif
wdenkfe8c2802002-11-03 00:38:21 +0000645#ifdef CONFIG_POST
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000646 post_output_backlog();
wdenkfe8c2802002-11-03 00:38:21 +0000647#endif
648
649 WATCHDOG_RESET();
650
Kim Phillipsf3c7cd92010-04-20 19:37:54 -0500651#if defined(CONFIG_SYS_DELAYED_ICACHE)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000652 icache_enable(); /* it's time to enable the instruction cache */
wdenkfe8c2802002-11-03 00:38:21 +0000653#endif
654
Wolfgang Denk1e0f07e2009-07-26 23:28:02 +0200655#if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
656 unlock_ram_in_cache(); /* it's time to unlock D-cache in e500 */
wdenk9c53f402003-10-15 23:53:47 +0000657#endif
658
Andre Schwarz8d5c89d2010-10-05 11:59:31 +0200659#if defined(CONFIG_PCI) && defined(CONFIG_SYS_EARLY_PCI_INIT)
wdenkfe8c2802002-11-03 00:38:21 +0000660 /*
Andre Schwarz8d5c89d2010-10-05 11:59:31 +0200661 * Do early PCI configuration _before_ the flash gets initialised,
662 * because PCU ressources are crucial for flash access on some boards.
wdenkfe8c2802002-11-03 00:38:21 +0000663 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000664 pci_init();
wdenkef5fe752003-03-12 10:41:04 +0000665#endif
Wolfgang Denk41364282010-11-23 23:17:18 +0100666#if defined(CONFIG_WINBOND_83C553)
wdenkfe8c2802002-11-03 00:38:21 +0000667 /*
668 * Initialise the ISA bridge
669 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000670 initialise_w83c553f();
wdenkfe8c2802002-11-03 00:38:21 +0000671#endif
672
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000673 asm("sync ; isync");
wdenkfe8c2802002-11-03 00:38:21 +0000674
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000675 mem_malloc_init(malloc_start, TOTAL_MALLOC_LEN);
Stefan Roeseb81464e2009-05-11 15:50:12 +0200676
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200677#if !defined(CONFIG_SYS_NO_FLASH)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000678 puts("Flash: ");
wdenkfe8c2802002-11-03 00:38:21 +0000679
John Schmoller9a736012010-09-29 14:05:44 -0500680 if (board_flash_wp_on()) {
681 printf("Uninitialized - Write Protect On\n");
682 /* Since WP is on, we can't find real size. Set to 0 */
683 flash_size = 0;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000684 } else if ((flash_size = flash_init()) > 0) {
685#ifdef CONFIG_SYS_FLASH_CHECKSUM
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000686 print_size(flash_size, "");
wdenkfe8c2802002-11-03 00:38:21 +0000687 /*
688 * Compute and print flash CRC if flashchecksum is set to 'y'
689 *
690 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
691 */
Joe Hershberger864ec562012-12-11 22:16:22 -0600692 if (getenv_yesno("flashchecksum") == 1) {
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000693 printf(" CRC: %08X",
694 crc32(0,
695 (const unsigned char *)
696 CONFIG_SYS_FLASH_BASE, flash_size)
697 );
wdenkfe8c2802002-11-03 00:38:21 +0000698 }
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000699 putc('\n');
700#else /* !CONFIG_SYS_FLASH_CHECKSUM */
701 print_size(flash_size, "\n");
702#endif /* CONFIG_SYS_FLASH_CHECKSUM */
wdenkfe8c2802002-11-03 00:38:21 +0000703 } else {
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000704 puts(failed);
705 hang();
wdenkfe8c2802002-11-03 00:38:21 +0000706 }
707
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000708 /* update start of FLASH memory */
709 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
710 /* size of FLASH memory (final value) */
711 bd->bi_flashsize = flash_size;
Heiko Schocher3ec43662006-12-21 17:17:02 +0100712
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200713#if defined(CONFIG_SYS_UPDATE_FLASH_SIZE)
Heiko Schocher3ec43662006-12-21 17:17:02 +0100714 /* Make a update of the Memctrl. */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000715 update_flash_size(flash_size);
Heiko Schocher3ec43662006-12-21 17:17:02 +0100716#endif
717
718
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000719#if defined(CONFIG_OXC) || defined(CONFIG_RMU)
wdenka09491a2004-04-08 22:31:29 +0000720 /* flash mapped at end of memory map */
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200721 bd->bi_flashoffset = CONFIG_SYS_TEXT_BASE + flash_size;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000722#elif CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
723 bd->bi_flashoffset = monitor_flash_len; /* reserved area for monitor */
724#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200725#endif /* !CONFIG_SYS_NO_FLASH */
wdenkfe8c2802002-11-03 00:38:21 +0000726
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000727 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000728
729 /* initialize higher level parts of CPU like time base and timers */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000730 cpu_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000731
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000732 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000733
wdenkfe8c2802002-11-03 00:38:21 +0000734#ifdef CONFIG_SPI
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000735#if !defined(CONFIG_ENV_IS_IN_EEPROM)
736 spi_init_f();
737#endif
738 spi_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000739#endif
740
Jon Loeliger6b233052007-07-09 18:02:11 -0500741#if defined(CONFIG_CMD_NAND)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000742 WATCHDOG_RESET();
743 puts("NAND: ");
Stefan Roese42fbddd2006-09-07 11:51:23 +0200744 nand_init(); /* go init the NAND */
745#endif
746
Terry Lvb4eceac2010-05-17 10:57:01 +0800747#ifdef CONFIG_GENERIC_MMC
748/*
749 * MMC initialization is called before relocating env.
750 * Thus It is required that operations like pin multiplexer
751 * be put in board_init.
752 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000753 WATCHDOG_RESET();
754 puts("MMC: ");
755 mmc_initialize(bd);
Terry Lvb4eceac2010-05-17 10:57:01 +0800756#endif
757
wdenkfe8c2802002-11-03 00:38:21 +0000758 /* relocate environment function pointers etc. */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000759 env_relocate();
wdenkfe8c2802002-11-03 00:38:21 +0000760
761 /*
Kumar Gala2ef216b2011-02-02 11:23:50 -0600762 * after non-volatile devices & environment is setup and cpu code have
763 * another round to deal with any initialization that might require
764 * full access to the environment or loading of some image (firmware)
765 * from a non-volatile device
766 */
767 cpu_secondary_init_r();
768
769 /*
wdenkfe8c2802002-11-03 00:38:21 +0000770 * Fill in missing fields of bd_info.
wdenk57b2d802003-06-27 21:31:46 +0000771 * We do this here, where we have "normal" access to the
772 * environment; we used to do this still running from ROM,
Wolfgang Denk76af2782010-07-24 21:55:43 +0200773 * where had to use getenv_f(), which can be pretty slow when
wdenk57b2d802003-06-27 21:31:46 +0000774 * the environment is in EEPROM.
wdenkfe8c2802002-11-03 00:38:21 +0000775 */
wdenk78924a72004-04-18 21:45:42 +0000776
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200777#if defined(CONFIG_SYS_EXTBDINFO)
wdenk78924a72004-04-18 21:45:42 +0000778#if defined(CONFIG_405GP) || defined(CONFIG_405EP)
779#if defined(CONFIG_I2CFAST)
780 /*
781 * set bi_iic_fast for linux taking environment variable
782 * "i2cfast" into account
783 */
784 {
Joe Hershberger864ec562012-12-11 22:16:22 -0600785 if (getenv_yesno("i2cfast") == 1) {
wdenk78924a72004-04-18 21:45:42 +0000786 bd->bi_iic_fast[0] = 1;
787 bd->bi_iic_fast[1] = 1;
wdenk78924a72004-04-18 21:45:42 +0000788 }
789 }
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000790#endif /* CONFIG_I2CFAST */
791#endif /* CONFIG_405GP, CONFIG_405EP */
792#endif /* CONFIG_SYS_EXTBDINFO */
wdenk78924a72004-04-18 21:45:42 +0000793
Wolfgang Denkd2a7a742007-06-08 10:24:58 +0200794#if defined(CONFIG_SC3)
Heiko Schocher3c58a992007-01-11 15:44:44 +0100795 sc3_read_eeprom();
796#endif
Haiying Wang34cf9592008-01-16 17:12:12 -0500797
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000798#if defined(CONFIG_ID_EEPROM) || defined(CONFIG_SYS_I2C_MAC_OFFSET)
Haiying Wang34cf9592008-01-16 17:12:12 -0500799 mac_read_from_eeprom();
800#endif
801
Stefan Roese29089432009-02-25 12:11:15 +0100802#ifdef CONFIG_CMD_NET
Mike Frysinger26250482009-02-11 20:07:19 -0500803 /* kept around for legacy kernels only ... ignore the next section */
804 eth_getenv_enetaddr("ethaddr", bd->bi_enetaddr);
wdenk54070ab2004-12-31 09:32:47 +0000805#ifdef CONFIG_HAS_ETH1
Mike Frysinger26250482009-02-11 20:07:19 -0500806 eth_getenv_enetaddr("eth1addr", bd->bi_enet1addr);
wdenkfe8c2802002-11-03 00:38:21 +0000807#endif
wdenk54070ab2004-12-31 09:32:47 +0000808#ifdef CONFIG_HAS_ETH2
Mike Frysinger26250482009-02-11 20:07:19 -0500809 eth_getenv_enetaddr("eth2addr", bd->bi_enet2addr);
wdenkfe8c2802002-11-03 00:38:21 +0000810#endif
wdenk54070ab2004-12-31 09:32:47 +0000811#ifdef CONFIG_HAS_ETH3
Mike Frysinger26250482009-02-11 20:07:19 -0500812 eth_getenv_enetaddr("eth3addr", bd->bi_enet3addr);
wdenk544e9732004-02-06 23:19:44 +0000813#endif
richardretanubune5167f12008-09-29 18:28:23 -0400814#ifdef CONFIG_HAS_ETH4
Mike Frysinger26250482009-02-11 20:07:19 -0500815 eth_getenv_enetaddr("eth4addr", bd->bi_enet4addr);
richardretanubune5167f12008-09-29 18:28:23 -0400816#endif
richardretanubune5167f12008-09-29 18:28:23 -0400817#ifdef CONFIG_HAS_ETH5
Mike Frysinger26250482009-02-11 20:07:19 -0500818 eth_getenv_enetaddr("eth5addr", bd->bi_enet5addr);
richardretanubune5167f12008-09-29 18:28:23 -0400819#endif
Stefan Roese29089432009-02-25 12:11:15 +0100820#endif /* CONFIG_CMD_NET */
richardretanubune5167f12008-09-29 18:28:23 -0400821
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000822 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000823
Andre Schwarz8d5c89d2010-10-05 11:59:31 +0200824#if defined(CONFIG_PCI) && !defined(CONFIG_SYS_EARLY_PCI_INIT)
wdenkfe8c2802002-11-03 00:38:21 +0000825 /*
826 * Do pci configuration
827 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000828 pci_init();
wdenkfe8c2802002-11-03 00:38:21 +0000829#endif
830
831/** leave this here (after malloc(), environment and PCI are working) **/
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +0200832 /* Initialize stdio devices */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000833 stdio_init();
wdenkfe8c2802002-11-03 00:38:21 +0000834
wdenk874ac262003-07-24 23:38:38 +0000835 /* Initialize the jump table for applications */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000836 jumptable_init();
wdenkfe8c2802002-11-03 00:38:21 +0000837
Rafal Jaworowskia19be782008-01-09 19:39:36 +0100838#if defined(CONFIG_API)
839 /* Initialize API */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000840 api_init();
Rafal Jaworowskia19be782008-01-09 19:39:36 +0100841#endif
842
wdenkfe8c2802002-11-03 00:38:21 +0000843 /* Initialize the console (after the relocation and devices init) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000844 console_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000845
Peter Tyser5c506212009-09-16 22:03:07 -0500846#if defined(CONFIG_MISC_INIT_R)
wdenkfe8c2802002-11-03 00:38:21 +0000847 /* miscellaneous platform dependent initialisations */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000848 misc_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000849#endif
850
Jon Loeliger6b233052007-07-09 18:02:11 -0500851#if defined(CONFIG_CMD_KGDB)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000852 WATCHDOG_RESET();
853 puts("KGDB: ");
854 kgdb_init();
wdenkfe8c2802002-11-03 00:38:21 +0000855#endif
856
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000857 debug("U-Boot relocated to %08lx\n", dest_addr);
wdenkfe8c2802002-11-03 00:38:21 +0000858
859 /*
860 * Enable Interrupts
861 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000862 interrupt_init();
wdenkfe8c2802002-11-03 00:38:21 +0000863
Heiko Schocher633e03a2007-06-22 19:11:54 +0200864#if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000865 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
wdenkfe8c2802002-11-03 00:38:21 +0000866#endif
867
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000868 udelay(20);
wdenkfe8c2802002-11-03 00:38:21 +0000869
wdenkfe8c2802002-11-03 00:38:21 +0000870 /* Initialize from environment */
Simon Glass44fc6692011-10-13 14:43:12 +0000871 load_addr = getenv_ulong("loadaddr", 16, load_addr);
wdenkfe8c2802002-11-03 00:38:21 +0000872
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000873 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000874
Jon Loeliger6b233052007-07-09 18:02:11 -0500875#if defined(CONFIG_CMD_SCSI)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000876 WATCHDOG_RESET();
877 puts("SCSI: ");
878 scsi_init();
wdenkfe8c2802002-11-03 00:38:21 +0000879#endif
880
Jon Loeliger6b233052007-07-09 18:02:11 -0500881#if defined(CONFIG_CMD_DOC)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000882 WATCHDOG_RESET();
883 puts("DOC: ");
884 doc_init();
wdenkfe8c2802002-11-03 00:38:21 +0000885#endif
886
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +0200887#ifdef CONFIG_BITBANGMII
888 bb_miiphy_init();
889#endif
Jon Loeliger6b233052007-07-09 18:02:11 -0500890#if defined(CONFIG_CMD_NET)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000891 WATCHDOG_RESET();
892 puts("Net: ");
893 eth_initialize(bd);
wdenkfe8c2802002-11-03 00:38:21 +0000894#endif
895
Peter Tyserd3d9a502009-09-16 22:03:08 -0500896#if defined(CONFIG_CMD_NET) && defined(CONFIG_RESET_PHY_R)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000897 WATCHDOG_RESET();
898 debug("Reset Ethernet PHY\n");
899 reset_phy();
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200900#endif
901
wdenkfe8c2802002-11-03 00:38:21 +0000902#ifdef CONFIG_POST
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000903 post_run(NULL, POST_RAM | post_bootmode_get(0));
wdenkfe8c2802002-11-03 00:38:21 +0000904#endif
905
Jon Loeliger6b233052007-07-09 18:02:11 -0500906#if defined(CONFIG_CMD_PCMCIA) \
907 && !defined(CONFIG_CMD_IDE)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000908 WATCHDOG_RESET();
909 puts("PCMCIA:");
910 pcmcia_init();
wdenkfe8c2802002-11-03 00:38:21 +0000911#endif
912
Jon Loeliger6b233052007-07-09 18:02:11 -0500913#if defined(CONFIG_CMD_IDE)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000914 WATCHDOG_RESET();
915#ifdef CONFIG_IDE_8xx_PCCARD
916 puts("PCMCIA:");
917#else
918 puts("IDE: ");
wdenkfe8c2802002-11-03 00:38:21 +0000919#endif
Heiko Schocher3c58a992007-01-11 15:44:44 +0100920#if defined(CONFIG_START_IDE)
921 if (board_start_ide())
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000922 ide_init();
Heiko Schocher3c58a992007-01-11 15:44:44 +0100923#else
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000924 ide_init();
Heiko Schocher3c58a992007-01-11 15:44:44 +0100925#endif
Jon Loeliger1670a5b2007-07-10 11:19:50 -0500926#endif
wdenkfe8c2802002-11-03 00:38:21 +0000927
928#ifdef CONFIG_LAST_STAGE_INIT
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000929 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000930 /*
931 * Some parts can be only initialized if all others (like
932 * Interrupts) are up and running (i.e. the PC-style ISA
933 * keyboard).
934 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000935 last_stage_init();
wdenkfe8c2802002-11-03 00:38:21 +0000936#endif
937
Jon Loeliger6b233052007-07-09 18:02:11 -0500938#if defined(CONFIG_CMD_BEDBUG)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000939 WATCHDOG_RESET();
940 bedbug_init();
wdenkfe8c2802002-11-03 00:38:21 +0000941#endif
942
wdenk9dfa8d12002-12-08 09:53:23 +0000943#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
wdenkfe8c2802002-11-03 00:38:21 +0000944 /*
945 * Export available size of memory for Linux,
946 * taking into account the protected RAM at top of memory
947 */
948 {
Simon Glass44fc6692011-10-13 14:43:12 +0000949 ulong pram = 0;
Simon Glassd9d4fa72012-01-05 17:54:57 +0000950 char memsz[32];
wdenkfe8c2802002-11-03 00:38:21 +0000951
Simon Glass44fc6692011-10-13 14:43:12 +0000952#ifdef CONFIG_PRAM
953 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
wdenk9dfa8d12002-12-08 09:53:23 +0000954#endif
955#ifdef CONFIG_LOGBUFFER
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100956#ifndef CONFIG_ALT_LB_ADDR
wdenk9dfa8d12002-12-08 09:53:23 +0000957 /* Also take the logbuffer into account (pram is in kB) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000958 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
wdenk9dfa8d12002-12-08 09:53:23 +0000959#endif
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100960#endif
Valentin Longchamp3d854c42013-10-18 11:47:14 +0200961 sprintf(memsz, "%ldk", (ulong) (bd->bi_memsize / 1024) - pram);
Simon Glassd9d4fa72012-01-05 17:54:57 +0000962 setenv("mem", memsz);
wdenkfe8c2802002-11-03 00:38:21 +0000963 }
964#endif
965
wdenkb983fa22004-01-16 00:30:56 +0000966#ifdef CONFIG_PS2KBD
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000967 puts("PS/2: ");
wdenkb983fa22004-01-16 00:30:56 +0000968 kbd_init();
969#endif
970
wdenkfe8c2802002-11-03 00:38:21 +0000971 /* Initialization complete - start the monitor */
972
973 /* main_loop() can return to retry autoboot, if so just run it again. */
974 for (;;) {
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000975 WATCHDOG_RESET();
976 main_loop();
wdenkfe8c2802002-11-03 00:38:21 +0000977 }
978
979 /* NOTREACHED - no way out of command loop except booting */
980}
981
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000982#if 0 /* We could use plain global data, but the resulting code is bigger */
wdenkfe8c2802002-11-03 00:38:21 +0000983/*
984 * Pointer to initial global data area
985 *
986 * Here we initialize it.
987 */
988#undef XTRN_DECLARE_GLOBAL_DATA_PTR
989#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000990DECLARE_GLOBAL_DATA_PTR =
991 (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
992#endif /* 0 */
wdenkfe8c2802002-11-03 00:38:21 +0000993
994/************************************************************************/