blob: a101e036019c6bca271a55d8f553b75afb4a2f51 [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,
280#if defined(CONFIG_8260)
281 prt_8260_rsr,
282 prt_8260_clks,
283#endif /* CONFIG_8260 */
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
Kumar Gala4c384542008-02-18 08:09:37 -0600315ulong get_effective_memsize(void)
316{
317#ifndef CONFIG_VERY_BIG_RAM
318 return gd->ram_size;
319#else
320 /* limit stack to what we can reasonable map */
321 return ((gd->ram_size > CONFIG_MAX_MEM_MAPPED) ?
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000322 CONFIG_MAX_MEM_MAPPED : gd->ram_size);
Kumar Gala4c384542008-02-18 08:09:37 -0600323#endif
324}
325
Kim Phillipse16737f2012-10-29 13:34:29 +0000326static int __fixup_cpu(void)
York Sun7b2947f2012-08-17 08:20:22 +0000327{
328 return 0;
329}
330
331int fixup_cpu(void) __attribute__((weak, alias("__fixup_cpu")));
332
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000333/*
wdenkfe8c2802002-11-03 00:38:21 +0000334 * This is the first part of the initialization sequence that is
335 * implemented in C, but still running from ROM.
336 *
337 * The main purpose is to provide a (serial) console interface as
338 * soon as possible (so we can see any error messages), and to
339 * initialize the RAM so that we can relocate the monitor code to
340 * RAM.
341 *
342 * Be aware of the restrictions: global data is read-only, BSS is not
343 * initialized, and stack space is limited to a few kB.
wdenkfe8c2802002-11-03 00:38:21 +0000344 */
345
Marian Balakowicz902ce702008-05-13 15:53:29 +0200346#ifdef CONFIG_LOGBUFFER
347unsigned long logbuffer_base(void)
348{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200349 return CONFIG_SYS_SDRAM_BASE + get_effective_memsize() - LOGBUFF_LEN;
Marian Balakowicz902ce702008-05-13 15:53:29 +0200350}
351#endif
352
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000353void board_init_f(ulong bootflag)
wdenkfe8c2802002-11-03 00:38:21 +0000354{
wdenkfe8c2802002-11-03 00:38:21 +0000355 bd_t *bd;
356 ulong len, addr, addr_sp;
Wolfgang Denk3135c542005-08-26 01:36:03 +0200357 ulong *s;
wdenkfe8c2802002-11-03 00:38:21 +0000358 gd_t *id;
359 init_fnc_t **init_fnc_ptr;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000360
wdenkfe8c2802002-11-03 00:38:21 +0000361#ifdef CONFIG_PRAM
wdenkfe8c2802002-11-03 00:38:21 +0000362 ulong reg;
wdenkfe8c2802002-11-03 00:38:21 +0000363#endif
364
365 /* Pointer is writable since we allocated a register for it */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200366 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
wdenk3337af42004-07-01 20:28:03 +0000367 /* compiler optimization barrier needed for GCC >= 3.4 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000368 __asm__ __volatile__("":::"memory");
wdenkfe8c2802002-11-03 00:38:21 +0000369
Detlev Zundela2ea2762010-01-22 14:47:59 +0100370#if !defined(CONFIG_CPM2) && !defined(CONFIG_MPC512X) && \
371 !defined(CONFIG_MPC83xx) && !defined(CONFIG_MPC85xx) && \
372 !defined(CONFIG_MPC86xx)
wdenkfe8c2802002-11-03 00:38:21 +0000373 /* Clear initial global data */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000374 memset((void *) gd, 0, sizeof(gd_t));
wdenkfe8c2802002-11-03 00:38:21 +0000375#endif
376
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000377 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr)
378 if ((*init_fnc_ptr) () != 0)
379 hang();
wdenkfe8c2802002-11-03 00:38:21 +0000380
Bernhard Kaindl920fd2b2011-10-16 00:07:08 +0000381#ifdef CONFIG_POST
382 post_bootmode_init();
Kim Phillipse16737f2012-10-29 13:34:29 +0000383 post_run(NULL, POST_ROM | post_bootmode_get(NULL));
Bernhard Kaindl920fd2b2011-10-16 00:07:08 +0000384#endif
385
386 WATCHDOG_RESET();
387
wdenkfe8c2802002-11-03 00:38:21 +0000388 /*
389 * Now that we have DRAM mapped and working, we can
390 * relocate the code and continue running from DRAM.
391 *
392 * Reserve memory at end of RAM for (top down in that order):
Stefan Roesea13709f2008-03-26 10:14:11 +0100393 * - area that won't get touched by U-Boot and Linux (optional)
wdenk57b2d802003-06-27 21:31:46 +0000394 * - kernel log buffer
wdenkfe8c2802002-11-03 00:38:21 +0000395 * - protected RAM
396 * - LCD framebuffer
397 * - monitor code
398 * - board info struct
399 */
Simon Glassed70c8f2013-03-14 06:54:53 +0000400 len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
wdenkfe8c2802002-11-03 00:38:21 +0000401
Stefan Roesea13709f2008-03-26 10:14:11 +0100402 /*
403 * Subtract specified amount of memory to hide so that it won't
404 * get "touched" at all by U-Boot. By fixing up gd->ram_size
405 * the Linux kernel should now get passed the now "corrected"
406 * memory size and won't touch it either. This should work
407 * for arch/ppc and arch/powerpc. Only Linux board ports in
408 * arch/powerpc with bootwrapper support, that recalculate the
409 * memory size from the SDRAM controller setup will have to
410 * get fixed.
411 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200412 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
Stefan Roesea13709f2008-03-26 10:14:11 +0100413
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200414 addr = CONFIG_SYS_SDRAM_BASE + get_effective_memsize();
wdenkfe8c2802002-11-03 00:38:21 +0000415
Kumar Gala04a3b142009-03-31 17:58:13 -0500416#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
417 /*
418 * We need to make sure the location we intend to put secondary core
419 * boot code is reserved and not used by any part of u-boot
Wolfgang Denke366f152009-04-05 00:27:57 +0200420 */
York Suna28496f2012-10-08 07:44:25 +0000421 if (addr > determine_mp_bootpg(NULL)) {
422 addr = determine_mp_bootpg(NULL);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000423 debug("Reserving MP boot page to %08lx\n", addr);
Kumar Gala04a3b142009-03-31 17:58:13 -0500424 }
425#endif
426
wdenk9dfa8d12002-12-08 09:53:23 +0000427#ifdef CONFIG_LOGBUFFER
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100428#ifndef CONFIG_ALT_LB_ADDR
wdenk9dfa8d12002-12-08 09:53:23 +0000429 /* reserve kernel log buffer */
430 addr -= (LOGBUFF_RESERVE);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000431 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
432 addr);
wdenk9dfa8d12002-12-08 09:53:23 +0000433#endif
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100434#endif
wdenk9dfa8d12002-12-08 09:53:23 +0000435
wdenkfe8c2802002-11-03 00:38:21 +0000436#ifdef CONFIG_PRAM
437 /*
438 * reserve protected RAM
439 */
Simon Glass44fc6692011-10-13 14:43:12 +0000440 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000441 addr -= (reg << 10); /* size is in kB */
Simon Glass44fc6692011-10-13 14:43:12 +0000442 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
wdenkfe8c2802002-11-03 00:38:21 +0000443#endif /* CONFIG_PRAM */
444
445 /* round down to next 4 kB limit */
446 addr &= ~(4096 - 1);
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000447 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
wdenkfe8c2802002-11-03 00:38:21 +0000448
449#ifdef CONFIG_LCD
Minkyu Kang50777c42011-04-24 22:22:34 +0000450#ifdef CONFIG_FB_ADDR
451 gd->fb_base = CONFIG_FB_ADDR;
452#else
wdenkfe8c2802002-11-03 00:38:21 +0000453 /* reserve memory for LCD display (always full pages) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000454 addr = lcd_setmem(addr);
wdenkfe8c2802002-11-03 00:38:21 +0000455 gd->fb_base = addr;
Minkyu Kang50777c42011-04-24 22:22:34 +0000456#endif /* CONFIG_FB_ADDR */
wdenkfe8c2802002-11-03 00:38:21 +0000457#endif /* CONFIG_LCD */
458
459#if defined(CONFIG_VIDEO) && defined(CONFIG_8xx)
460 /* reserve memory for video display (always full pages) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000461 addr = video_setmem(addr);
wdenkfe8c2802002-11-03 00:38:21 +0000462 gd->fb_base = addr;
463#endif /* CONFIG_VIDEO */
464
465 /*
466 * reserve memory for U-Boot code, data & bss
wdenk4e112c12003-06-03 23:54:09 +0000467 * round down to next 4 kB limit
wdenkfe8c2802002-11-03 00:38:21 +0000468 */
469 addr -= len;
wdenk4e112c12003-06-03 23:54:09 +0000470 addr &= ~(4096 - 1);
Wolfgang Denk29dcbd42005-10-05 00:00:54 +0200471#ifdef CONFIG_E500
472 /* round down to next 64 kB limit so that IVPR stays aligned */
473 addr &= ~(65536 - 1);
474#endif
wdenkfe8c2802002-11-03 00:38:21 +0000475
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000476 debug("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
wdenkfe8c2802002-11-03 00:38:21 +0000477
478 /*
479 * reserve memory for malloc() arena
480 */
481 addr_sp = addr - TOTAL_MALLOC_LEN;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000482 debug("Reserving %dk for malloc() at: %08lx\n",
483 TOTAL_MALLOC_LEN >> 10, addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000484
485 /*
486 * (permanently) allocate a Board Info struct
487 * and a permanent copy of the "global" data
488 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000489 addr_sp -= sizeof(bd_t);
wdenkfe8c2802002-11-03 00:38:21 +0000490 bd = (bd_t *) addr_sp;
Peter Tyser4b25a8d2010-09-14 19:13:51 -0500491 memset(bd, 0, sizeof(bd_t));
wdenkfe8c2802002-11-03 00:38:21 +0000492 gd->bd = bd;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000493 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
494 sizeof(bd_t), addr_sp);
495 addr_sp -= sizeof(gd_t);
wdenkfe8c2802002-11-03 00:38:21 +0000496 id = (gd_t *) addr_sp;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000497 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
498 sizeof(gd_t), addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000499
500 /*
501 * Finally, we set up a new (bigger) stack.
502 *
503 * Leave some safety gap for SP, force alignment on 16 byte boundary
504 * Clear initial stack frame
505 */
506 addr_sp -= 16;
507 addr_sp &= ~0xF;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000508 s = (ulong *) addr_sp;
Joakim Tjernlund17686492012-07-23 10:58:03 +0000509 *s = 0; /* Terminate back chain */
510 *++s = 0; /* NULL return address */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000511 debug("Stack Pointer at: %08lx\n", addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000512
513 /*
514 * Save local variables to board info struct
515 */
516
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000517 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
518 bd->bi_memsize = gd->ram_size; /* size in bytes */
wdenkfe8c2802002-11-03 00:38:21 +0000519
Wolfgang Denkea9e0be2010-08-11 09:38:31 +0200520#ifdef CONFIG_SYS_SRAM_BASE
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000521 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
522 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
wdenkfe8c2802002-11-03 00:38:21 +0000523#endif
524
wdenk9c53f402003-10-15 23:53:47 +0000525#if defined(CONFIG_8xx) || defined(CONFIG_8260) || defined(CONFIG_5xx) || \
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500526 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200527 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
wdenkfe8c2802002-11-03 00:38:21 +0000528#endif
wdenkbe9c1cb2004-02-24 02:00:03 +0000529#if defined(CONFIG_MPC5xxx)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200530 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
wdenk337f5652004-10-28 00:09:35 +0000531#endif
Peter Tyser62e73982009-05-22 17:23:24 -0500532#if defined(CONFIG_MPC83xx)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200533 bd->bi_immrbar = CONFIG_SYS_IMMR;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500534#endif
wdenkfe8c2802002-11-03 00:38:21 +0000535
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000536 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000537 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
538 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500539#if defined(CONFIG_CPM2)
Simon Glass44ea8512012-12-13 20:48:46 +0000540 bd->bi_cpmfreq = gd->arch.cpm_clk;
Simon Glass34a194f2012-12-13 20:48:44 +0000541 bd->bi_brgfreq = gd->arch.brg_clk;
Simon Glass44ea8512012-12-13 20:48:46 +0000542 bd->bi_sccfreq = gd->arch.scc_clk;
543 bd->bi_vco = gd->arch.vco_out;
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500544#endif /* CONFIG_CPM2 */
Grzegorz Bernackiaf554d82008-01-08 17:16:15 +0100545#if defined(CONFIG_MPC512X)
Simon Glass6c6cbd12012-12-13 20:48:54 +0000546 bd->bi_ipsfreq = gd->arch.ips_clk;
Grzegorz Bernackiaf554d82008-01-08 17:16:15 +0100547#endif /* CONFIG_MPC512X */
wdenkbe9c1cb2004-02-24 02:00:03 +0000548#if defined(CONFIG_MPC5xxx)
Simon Glass4f8c5f02012-12-13 20:48:53 +0000549 bd->bi_ipbfreq = gd->arch.ipb_clk;
wdenk21136db2003-07-16 21:53:01 +0000550 bd->bi_pcifreq = gd->pci_clk;
wdenkbe9c1cb2004-02-24 02:00:03 +0000551#endif /* CONFIG_MPC5xxx */
wdenkfe8c2802002-11-03 00:38:21 +0000552 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
553
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200554#ifdef CONFIG_SYS_EXTBDINFO
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000555 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
556 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
557 sizeof(bd->bi_r_version));
wdenkfe8c2802002-11-03 00:38:21 +0000558
559 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
560 bd->bi_plb_busfreq = gd->bus_clk;
Stefan Roesee9a816c2007-05-11 12:01:06 +0200561#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
562 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
563 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000564 bd->bi_pci_busfreq = get_PCI_freq();
565 bd->bi_opbfreq = get_OPB_freq();
Michal Simek594c7b52008-06-24 09:54:09 +0200566#elif defined(CONFIG_XILINX_405)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000567 bd->bi_pci_busfreq = get_PCI_freq();
wdenkfe8c2802002-11-03 00:38:21 +0000568#endif
569#endif
570
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000571 debug("New Stack Pointer is: %08lx\n", addr_sp);
wdenkfe8c2802002-11-03 00:38:21 +0000572
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000573 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000574
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000575 gd->relocaddr = addr; /* Store relocation addr, useful for debug */
Richard Retanubun92bc2632010-01-15 10:06:06 -0500576
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000577 memcpy(id, (void *) gd, sizeof(gd_t));
wdenkfe8c2802002-11-03 00:38:21 +0000578
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000579 relocate_code(addr_sp, id, addr);
wdenkfe8c2802002-11-03 00:38:21 +0000580
581 /* NOTREACHED - relocate_code() does not return */
582}
Jason Jin13bd9e52008-10-10 11:41:01 +0800583
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000584/*
wdenkfe8c2802002-11-03 00:38:21 +0000585 * This is the next part if the initialization sequence: we are now
586 * running from RAM and have a "normal" C environment, i. e. global
587 * data can be written, BSS has been cleared, the stack size in not
588 * that critical any more, etc.
wdenkfe8c2802002-11-03 00:38:21 +0000589 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000590void board_init_r(gd_t *id, ulong dest_addr)
wdenkfe8c2802002-11-03 00:38:21 +0000591{
wdenkfe8c2802002-11-03 00:38:21 +0000592 bd_t *bd;
Peter Tysered527702009-08-21 23:05:20 -0500593 ulong malloc_start;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000594
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200595#ifndef CONFIG_SYS_NO_FLASH
wdenkfe8c2802002-11-03 00:38:21 +0000596 ulong flash_size;
597#endif
598
599 gd = id; /* initialize RAM version of global data */
600 bd = gd->bd;
601
602 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
Grant Likely22e05842007-07-03 00:34:19 -0600603
Peter Tyser781c9b82009-08-21 23:05:21 -0500604 /* The Malloc area is immediately below the monitor copy in DRAM */
Peter Tysered527702009-08-21 23:05:20 -0500605 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
Kumar Gala87e43422009-09-01 21:07:08 -0500606
Peter Tysera95e6732009-12-15 12:10:47 -0600607#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
608 /*
Simon Glassa8b57392012-12-13 20:48:48 +0000609 * The gd->arch.cpu pointer is set to an address in flash before
610 * relocation. We need to update it to point to the same CPU entry
611 * in RAM.
Peter Tysera95e6732009-12-15 12:10:47 -0600612 */
Simon Glassa8b57392012-12-13 20:48:48 +0000613 gd->arch.cpu += dest_addr - CONFIG_SYS_MONITOR_BASE;
York Sun7b2947f2012-08-17 08:20:22 +0000614
615 /*
616 * If we didn't know the cpu mask & # cores, we can save them of
617 * now rather than 'computing' them constantly
618 */
619 fixup_cpu();
Peter Tysera95e6732009-12-15 12:10:47 -0600620#endif
621
Kumar Galab1dd51f2010-11-29 14:32:11 -0600622#ifdef CONFIG_SYS_EXTRA_ENV_RELOC
623 /*
624 * Some systems need to relocate the env_addr pointer early because the
625 * location it points to will get invalidated before env_relocate is
626 * called. One example is on systems that might use a L2 or L3 cache
627 * in SRAM mode and initialize that cache from SRAM mode back to being
628 * a cache in cpu_init_r.
629 */
630 gd->env_addr += dest_addr - CONFIG_SYS_MONITOR_BASE;
631#endif
632
Marian Balakowiczb55b60e2006-06-30 15:27:09 +0200633 serial_initialize();
wdenkfe8c2802002-11-03 00:38:21 +0000634
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000635 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
wdenkfe8c2802002-11-03 00:38:21 +0000636
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000637 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000638
Becky Bruce2f79edd2008-10-31 17:14:39 -0500639 /*
640 * Setup trap handlers
641 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000642 trap_init(dest_addr);
Becky Bruce2f79edd2008-10-31 17:14:39 -0500643
Becky Brucef93e1cb2009-02-03 18:10:52 -0600644#ifdef CONFIG_ADDR_MAP
Kumar Gala9ac287a2008-12-16 14:59:20 -0600645 init_addr_map();
646#endif
647
wdenkda55c6e2004-01-20 23:12:12 +0000648#if defined(CONFIG_BOARD_EARLY_INIT_R)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000649 board_early_init_r();
wdenkda55c6e2004-01-20 23:12:12 +0000650#endif
651
wdenkb9a83a92003-05-30 12:48:29 +0000652 monitor_flash_len = (ulong)&__init_end - dest_addr;
wdenkfe8c2802002-11-03 00:38:21 +0000653
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000654 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000655
wdenk56f94be2002-11-05 16:35:14 +0000656#ifdef CONFIG_LOGBUFFER
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000657 logbuff_init_ptrs();
wdenk56f94be2002-11-05 16:35:14 +0000658#endif
wdenkfe8c2802002-11-03 00:38:21 +0000659#ifdef CONFIG_POST
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000660 post_output_backlog();
wdenkfe8c2802002-11-03 00:38:21 +0000661#endif
662
663 WATCHDOG_RESET();
664
Kim Phillipsf3c7cd92010-04-20 19:37:54 -0500665#if defined(CONFIG_SYS_DELAYED_ICACHE)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000666 icache_enable(); /* it's time to enable the instruction cache */
wdenkfe8c2802002-11-03 00:38:21 +0000667#endif
668
Wolfgang Denk1e0f07e2009-07-26 23:28:02 +0200669#if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
670 unlock_ram_in_cache(); /* it's time to unlock D-cache in e500 */
wdenk9c53f402003-10-15 23:53:47 +0000671#endif
672
Andre Schwarz8d5c89d2010-10-05 11:59:31 +0200673#if defined(CONFIG_PCI) && defined(CONFIG_SYS_EARLY_PCI_INIT)
wdenkfe8c2802002-11-03 00:38:21 +0000674 /*
Andre Schwarz8d5c89d2010-10-05 11:59:31 +0200675 * Do early PCI configuration _before_ the flash gets initialised,
676 * because PCU ressources are crucial for flash access on some boards.
wdenkfe8c2802002-11-03 00:38:21 +0000677 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000678 pci_init();
wdenkef5fe752003-03-12 10:41:04 +0000679#endif
Wolfgang Denk41364282010-11-23 23:17:18 +0100680#if defined(CONFIG_WINBOND_83C553)
wdenkfe8c2802002-11-03 00:38:21 +0000681 /*
682 * Initialise the ISA bridge
683 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000684 initialise_w83c553f();
wdenkfe8c2802002-11-03 00:38:21 +0000685#endif
686
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000687 asm("sync ; isync");
wdenkfe8c2802002-11-03 00:38:21 +0000688
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000689 mem_malloc_init(malloc_start, TOTAL_MALLOC_LEN);
Stefan Roeseb81464e2009-05-11 15:50:12 +0200690
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200691#if !defined(CONFIG_SYS_NO_FLASH)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000692 puts("Flash: ");
wdenkfe8c2802002-11-03 00:38:21 +0000693
John Schmoller9a736012010-09-29 14:05:44 -0500694 if (board_flash_wp_on()) {
695 printf("Uninitialized - Write Protect On\n");
696 /* Since WP is on, we can't find real size. Set to 0 */
697 flash_size = 0;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000698 } else if ((flash_size = flash_init()) > 0) {
699#ifdef CONFIG_SYS_FLASH_CHECKSUM
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000700 print_size(flash_size, "");
wdenkfe8c2802002-11-03 00:38:21 +0000701 /*
702 * Compute and print flash CRC if flashchecksum is set to 'y'
703 *
704 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
705 */
Joe Hershberger864ec562012-12-11 22:16:22 -0600706 if (getenv_yesno("flashchecksum") == 1) {
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000707 printf(" CRC: %08X",
708 crc32(0,
709 (const unsigned char *)
710 CONFIG_SYS_FLASH_BASE, flash_size)
711 );
wdenkfe8c2802002-11-03 00:38:21 +0000712 }
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000713 putc('\n');
714#else /* !CONFIG_SYS_FLASH_CHECKSUM */
715 print_size(flash_size, "\n");
716#endif /* CONFIG_SYS_FLASH_CHECKSUM */
wdenkfe8c2802002-11-03 00:38:21 +0000717 } else {
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000718 puts(failed);
719 hang();
wdenkfe8c2802002-11-03 00:38:21 +0000720 }
721
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000722 /* update start of FLASH memory */
723 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
724 /* size of FLASH memory (final value) */
725 bd->bi_flashsize = flash_size;
Heiko Schocher3ec43662006-12-21 17:17:02 +0100726
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200727#if defined(CONFIG_SYS_UPDATE_FLASH_SIZE)
Heiko Schocher3ec43662006-12-21 17:17:02 +0100728 /* Make a update of the Memctrl. */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000729 update_flash_size(flash_size);
Heiko Schocher3ec43662006-12-21 17:17:02 +0100730#endif
731
732
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000733#if defined(CONFIG_OXC) || defined(CONFIG_RMU)
wdenka09491a2004-04-08 22:31:29 +0000734 /* flash mapped at end of memory map */
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200735 bd->bi_flashoffset = CONFIG_SYS_TEXT_BASE + flash_size;
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000736#elif CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
737 bd->bi_flashoffset = monitor_flash_len; /* reserved area for monitor */
738#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200739#endif /* !CONFIG_SYS_NO_FLASH */
wdenkfe8c2802002-11-03 00:38:21 +0000740
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000741 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000742
743 /* initialize higher level parts of CPU like time base and timers */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000744 cpu_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000745
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000746 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000747
wdenkfe8c2802002-11-03 00:38:21 +0000748#ifdef CONFIG_SPI
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000749#if !defined(CONFIG_ENV_IS_IN_EEPROM)
750 spi_init_f();
751#endif
752 spi_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000753#endif
754
Jon Loeliger6b233052007-07-09 18:02:11 -0500755#if defined(CONFIG_CMD_NAND)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000756 WATCHDOG_RESET();
757 puts("NAND: ");
Stefan Roese42fbddd2006-09-07 11:51:23 +0200758 nand_init(); /* go init the NAND */
759#endif
760
Terry Lvb4eceac2010-05-17 10:57:01 +0800761#ifdef CONFIG_GENERIC_MMC
762/*
763 * MMC initialization is called before relocating env.
764 * Thus It is required that operations like pin multiplexer
765 * be put in board_init.
766 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000767 WATCHDOG_RESET();
768 puts("MMC: ");
769 mmc_initialize(bd);
Terry Lvb4eceac2010-05-17 10:57:01 +0800770#endif
771
wdenkfe8c2802002-11-03 00:38:21 +0000772 /* relocate environment function pointers etc. */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000773 env_relocate();
wdenkfe8c2802002-11-03 00:38:21 +0000774
775 /*
Kumar Gala2ef216b2011-02-02 11:23:50 -0600776 * after non-volatile devices & environment is setup and cpu code have
777 * another round to deal with any initialization that might require
778 * full access to the environment or loading of some image (firmware)
779 * from a non-volatile device
780 */
781 cpu_secondary_init_r();
782
783 /*
wdenkfe8c2802002-11-03 00:38:21 +0000784 * Fill in missing fields of bd_info.
wdenk57b2d802003-06-27 21:31:46 +0000785 * We do this here, where we have "normal" access to the
786 * environment; we used to do this still running from ROM,
Wolfgang Denk76af2782010-07-24 21:55:43 +0200787 * where had to use getenv_f(), which can be pretty slow when
wdenk57b2d802003-06-27 21:31:46 +0000788 * the environment is in EEPROM.
wdenkfe8c2802002-11-03 00:38:21 +0000789 */
wdenk78924a72004-04-18 21:45:42 +0000790
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200791#if defined(CONFIG_SYS_EXTBDINFO)
wdenk78924a72004-04-18 21:45:42 +0000792#if defined(CONFIG_405GP) || defined(CONFIG_405EP)
793#if defined(CONFIG_I2CFAST)
794 /*
795 * set bi_iic_fast for linux taking environment variable
796 * "i2cfast" into account
797 */
798 {
Joe Hershberger864ec562012-12-11 22:16:22 -0600799 if (getenv_yesno("i2cfast") == 1) {
wdenk78924a72004-04-18 21:45:42 +0000800 bd->bi_iic_fast[0] = 1;
801 bd->bi_iic_fast[1] = 1;
wdenk78924a72004-04-18 21:45:42 +0000802 }
803 }
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000804#endif /* CONFIG_I2CFAST */
805#endif /* CONFIG_405GP, CONFIG_405EP */
806#endif /* CONFIG_SYS_EXTBDINFO */
wdenk78924a72004-04-18 21:45:42 +0000807
Wolfgang Denkd2a7a742007-06-08 10:24:58 +0200808#if defined(CONFIG_SC3)
Heiko Schocher3c58a992007-01-11 15:44:44 +0100809 sc3_read_eeprom();
810#endif
Haiying Wang34cf9592008-01-16 17:12:12 -0500811
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000812#if defined(CONFIG_ID_EEPROM) || defined(CONFIG_SYS_I2C_MAC_OFFSET)
Haiying Wang34cf9592008-01-16 17:12:12 -0500813 mac_read_from_eeprom();
814#endif
815
wdenkfe8c2802002-11-03 00:38:21 +0000816#ifdef CONFIG_HERMES
817 if ((gd->board_type >> 16) == 2)
818 bd->bi_ethspeed = gd->board_type & 0xFFFF;
819 else
820 bd->bi_ethspeed = 0xFFFF;
821#endif
822
Stefan Roese29089432009-02-25 12:11:15 +0100823#ifdef CONFIG_CMD_NET
Mike Frysinger26250482009-02-11 20:07:19 -0500824 /* kept around for legacy kernels only ... ignore the next section */
825 eth_getenv_enetaddr("ethaddr", bd->bi_enetaddr);
wdenk54070ab2004-12-31 09:32:47 +0000826#ifdef CONFIG_HAS_ETH1
Mike Frysinger26250482009-02-11 20:07:19 -0500827 eth_getenv_enetaddr("eth1addr", bd->bi_enet1addr);
wdenkfe8c2802002-11-03 00:38:21 +0000828#endif
wdenk54070ab2004-12-31 09:32:47 +0000829#ifdef CONFIG_HAS_ETH2
Mike Frysinger26250482009-02-11 20:07:19 -0500830 eth_getenv_enetaddr("eth2addr", bd->bi_enet2addr);
wdenkfe8c2802002-11-03 00:38:21 +0000831#endif
wdenk54070ab2004-12-31 09:32:47 +0000832#ifdef CONFIG_HAS_ETH3
Mike Frysinger26250482009-02-11 20:07:19 -0500833 eth_getenv_enetaddr("eth3addr", bd->bi_enet3addr);
wdenk544e9732004-02-06 23:19:44 +0000834#endif
richardretanubune5167f12008-09-29 18:28:23 -0400835#ifdef CONFIG_HAS_ETH4
Mike Frysinger26250482009-02-11 20:07:19 -0500836 eth_getenv_enetaddr("eth4addr", bd->bi_enet4addr);
richardretanubune5167f12008-09-29 18:28:23 -0400837#endif
richardretanubune5167f12008-09-29 18:28:23 -0400838#ifdef CONFIG_HAS_ETH5
Mike Frysinger26250482009-02-11 20:07:19 -0500839 eth_getenv_enetaddr("eth5addr", bd->bi_enet5addr);
richardretanubune5167f12008-09-29 18:28:23 -0400840#endif
Stefan Roese29089432009-02-25 12:11:15 +0100841#endif /* CONFIG_CMD_NET */
richardretanubune5167f12008-09-29 18:28:23 -0400842
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000843 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000844
Andre Schwarz8d5c89d2010-10-05 11:59:31 +0200845#if defined(CONFIG_PCI) && !defined(CONFIG_SYS_EARLY_PCI_INIT)
wdenkfe8c2802002-11-03 00:38:21 +0000846 /*
847 * Do pci configuration
848 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000849 pci_init();
wdenkfe8c2802002-11-03 00:38:21 +0000850#endif
851
852/** leave this here (after malloc(), environment and PCI are working) **/
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +0200853 /* Initialize stdio devices */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000854 stdio_init();
wdenkfe8c2802002-11-03 00:38:21 +0000855
wdenk874ac262003-07-24 23:38:38 +0000856 /* Initialize the jump table for applications */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000857 jumptable_init();
wdenkfe8c2802002-11-03 00:38:21 +0000858
Rafal Jaworowskia19be782008-01-09 19:39:36 +0100859#if defined(CONFIG_API)
860 /* Initialize API */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000861 api_init();
Rafal Jaworowskia19be782008-01-09 19:39:36 +0100862#endif
863
wdenkfe8c2802002-11-03 00:38:21 +0000864 /* Initialize the console (after the relocation and devices init) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000865 console_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000866
Peter Tyser5c506212009-09-16 22:03:07 -0500867#if defined(CONFIG_MISC_INIT_R)
wdenkfe8c2802002-11-03 00:38:21 +0000868 /* miscellaneous platform dependent initialisations */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000869 misc_init_r();
wdenkfe8c2802002-11-03 00:38:21 +0000870#endif
871
872#ifdef CONFIG_HERMES
873 if (bd->bi_ethspeed != 0xFFFF)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000874 hermes_start_lxt980((int) bd->bi_ethspeed);
wdenkfe8c2802002-11-03 00:38:21 +0000875#endif
876
Jon Loeliger6b233052007-07-09 18:02:11 -0500877#if defined(CONFIG_CMD_KGDB)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000878 WATCHDOG_RESET();
879 puts("KGDB: ");
880 kgdb_init();
wdenkfe8c2802002-11-03 00:38:21 +0000881#endif
882
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000883 debug("U-Boot relocated to %08lx\n", dest_addr);
wdenkfe8c2802002-11-03 00:38:21 +0000884
885 /*
886 * Enable Interrupts
887 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000888 interrupt_init();
wdenkfe8c2802002-11-03 00:38:21 +0000889
Heiko Schocher633e03a2007-06-22 19:11:54 +0200890#if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000891 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
wdenkfe8c2802002-11-03 00:38:21 +0000892#endif
893
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000894 udelay(20);
wdenkfe8c2802002-11-03 00:38:21 +0000895
wdenkfe8c2802002-11-03 00:38:21 +0000896 /* Initialize from environment */
Simon Glass44fc6692011-10-13 14:43:12 +0000897 load_addr = getenv_ulong("loadaddr", 16, load_addr);
wdenkfe8c2802002-11-03 00:38:21 +0000898
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000899 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000900
Jon Loeliger6b233052007-07-09 18:02:11 -0500901#if defined(CONFIG_CMD_SCSI)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000902 WATCHDOG_RESET();
903 puts("SCSI: ");
904 scsi_init();
wdenkfe8c2802002-11-03 00:38:21 +0000905#endif
906
Jon Loeliger6b233052007-07-09 18:02:11 -0500907#if defined(CONFIG_CMD_DOC)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000908 WATCHDOG_RESET();
909 puts("DOC: ");
910 doc_init();
wdenkfe8c2802002-11-03 00:38:21 +0000911#endif
912
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +0200913#ifdef CONFIG_BITBANGMII
914 bb_miiphy_init();
915#endif
Jon Loeliger6b233052007-07-09 18:02:11 -0500916#if defined(CONFIG_CMD_NET)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000917 WATCHDOG_RESET();
918 puts("Net: ");
919 eth_initialize(bd);
wdenkfe8c2802002-11-03 00:38:21 +0000920#endif
921
Peter Tyserd3d9a502009-09-16 22:03:08 -0500922#if defined(CONFIG_CMD_NET) && defined(CONFIG_RESET_PHY_R)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000923 WATCHDOG_RESET();
924 debug("Reset Ethernet PHY\n");
925 reset_phy();
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200926#endif
927
wdenkfe8c2802002-11-03 00:38:21 +0000928#ifdef CONFIG_POST
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000929 post_run(NULL, POST_RAM | post_bootmode_get(0));
wdenkfe8c2802002-11-03 00:38:21 +0000930#endif
931
Jon Loeliger6b233052007-07-09 18:02:11 -0500932#if defined(CONFIG_CMD_PCMCIA) \
933 && !defined(CONFIG_CMD_IDE)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000934 WATCHDOG_RESET();
935 puts("PCMCIA:");
936 pcmcia_init();
wdenkfe8c2802002-11-03 00:38:21 +0000937#endif
938
Jon Loeliger6b233052007-07-09 18:02:11 -0500939#if defined(CONFIG_CMD_IDE)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000940 WATCHDOG_RESET();
941#ifdef CONFIG_IDE_8xx_PCCARD
942 puts("PCMCIA:");
943#else
944 puts("IDE: ");
wdenkfe8c2802002-11-03 00:38:21 +0000945#endif
Heiko Schocher3c58a992007-01-11 15:44:44 +0100946#if defined(CONFIG_START_IDE)
947 if (board_start_ide())
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000948 ide_init();
Heiko Schocher3c58a992007-01-11 15:44:44 +0100949#else
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000950 ide_init();
Heiko Schocher3c58a992007-01-11 15:44:44 +0100951#endif
Jon Loeliger1670a5b2007-07-10 11:19:50 -0500952#endif
wdenkfe8c2802002-11-03 00:38:21 +0000953
954#ifdef CONFIG_LAST_STAGE_INIT
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000955 WATCHDOG_RESET();
wdenkfe8c2802002-11-03 00:38:21 +0000956 /*
957 * Some parts can be only initialized if all others (like
958 * Interrupts) are up and running (i.e. the PC-style ISA
959 * keyboard).
960 */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000961 last_stage_init();
wdenkfe8c2802002-11-03 00:38:21 +0000962#endif
963
Jon Loeliger6b233052007-07-09 18:02:11 -0500964#if defined(CONFIG_CMD_BEDBUG)
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000965 WATCHDOG_RESET();
966 bedbug_init();
wdenkfe8c2802002-11-03 00:38:21 +0000967#endif
968
wdenk9dfa8d12002-12-08 09:53:23 +0000969#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
wdenkfe8c2802002-11-03 00:38:21 +0000970 /*
971 * Export available size of memory for Linux,
972 * taking into account the protected RAM at top of memory
973 */
974 {
Simon Glass44fc6692011-10-13 14:43:12 +0000975 ulong pram = 0;
Simon Glassd9d4fa72012-01-05 17:54:57 +0000976 char memsz[32];
wdenkfe8c2802002-11-03 00:38:21 +0000977
Simon Glass44fc6692011-10-13 14:43:12 +0000978#ifdef CONFIG_PRAM
979 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
wdenk9dfa8d12002-12-08 09:53:23 +0000980#endif
981#ifdef CONFIG_LOGBUFFER
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100982#ifndef CONFIG_ALT_LB_ADDR
wdenk9dfa8d12002-12-08 09:53:23 +0000983 /* Also take the logbuffer into account (pram is in kB) */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000984 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
wdenk9dfa8d12002-12-08 09:53:23 +0000985#endif
Yuri Tikhonovfe1d91b2008-02-06 18:48:36 +0100986#endif
Simon Glassd9d4fa72012-01-05 17:54:57 +0000987 sprintf(memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
988 setenv("mem", memsz);
wdenkfe8c2802002-11-03 00:38:21 +0000989 }
990#endif
991
wdenkb983fa22004-01-16 00:30:56 +0000992#ifdef CONFIG_PS2KBD
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000993 puts("PS/2: ");
wdenkb983fa22004-01-16 00:30:56 +0000994 kbd_init();
995#endif
996
wdenkc08f1582003-04-27 22:52:51 +0000997#ifdef CONFIG_MODEM_SUPPORT
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +0000998 {
999 extern int do_mdm_init;
1000
1001 do_mdm_init = gd->do_mdm_init;
1002 }
wdenkc08f1582003-04-27 22:52:51 +00001003#endif
1004
wdenkfe8c2802002-11-03 00:38:21 +00001005 /* Initialization complete - start the monitor */
1006
1007 /* main_loop() can return to retry autoboot, if so just run it again. */
1008 for (;;) {
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +00001009 WATCHDOG_RESET();
1010 main_loop();
wdenkfe8c2802002-11-03 00:38:21 +00001011 }
1012
1013 /* NOTREACHED - no way out of command loop except booting */
1014}
1015
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +00001016#if 0 /* We could use plain global data, but the resulting code is bigger */
wdenkfe8c2802002-11-03 00:38:21 +00001017/*
1018 * Pointer to initial global data area
1019 *
1020 * Here we initialize it.
1021 */
1022#undef XTRN_DECLARE_GLOBAL_DATA_PTR
1023#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Wolfgang Denk09e3c9f2011-11-04 15:55:07 +00001024DECLARE_GLOBAL_DATA_PTR =
1025 (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
1026#endif /* 0 */
wdenkfe8c2802002-11-03 00:38:21 +00001027
1028/************************************************************************/