blob: c214bba881a3cf1db70906acf61d62f416d9c8ae [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
Wolfgang Denk7a132ae2006-01-29 19:12:41 +01002 * (C) Copyright 2002-2006
wdenkc6097192002-11-03 00:24:07 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
Wolfgang Denk7a132ae2006-01-29 19:12:41 +010028/*
29 * To match the U-Boot user interface on ARM platforms to the U-Boot
30 * standard (as on PPC platforms), some messages with debug character
31 * are removed from the default U-Boot build.
32 *
33 * Define DEBUG here if you want additional info as shown below
34 * printed upon startup:
35 *
36 * U-Boot code: 00F00000 -> 00F3C774 BSS: -> 00FC3274
37 * IRQ Stack: 00ebff7c
38 * FIQ Stack: 00ebef7c
39 */
40
wdenkc6097192002-11-03 00:24:07 +000041#include <common.h>
42#include <command.h>
wdenk56958612003-06-22 17:18:28 +000043#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +020044#include <stdio_dev.h>
wdenkc6097192002-11-03 00:24:07 +000045#include <version.h>
46#include <net.h>
Marcel Ziswilerb5a75412008-05-01 09:05:26 +020047#include <serial.h>
Scott Woode898dfd2008-05-22 10:49:46 -050048#include <nand.h>
49#include <onenand_uboot.h>
Ilya Yanok50ff6df2009-06-08 04:12:50 +040050#include <mmc.h>
Simon Glass3433dd72011-10-24 19:15:33 +000051#include <libfdt.h>
52#include <fdtdec.h>
Valentin Longchampe3c4c942011-09-02 04:59:03 +000053#include <post.h>
54#include <logbuff.h>
wdenkc6097192002-11-03 00:24:07 +000055
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +020056#ifdef CONFIG_BITBANGMII
57#include <miiphy.h>
58#endif
59
Markus Klotzbücheraedd96a2006-02-10 11:25:41 +010060DECLARE_GLOBAL_DATA_PTR;
61
wdenkb9a83a92003-05-30 12:48:29 +000062ulong monitor_flash_len;
63
wdenk381669a2003-06-16 23:50:08 +000064#ifdef CONFIG_HAS_DATAFLASH
65extern int AT91F_DataflashInit(void);
66extern void dataflash_print_info(void);
67#endif
68
Hebbarb7d11642007-12-18 16:00:54 -080069#if defined(CONFIG_HARD_I2C) || \
70 defined(CONFIG_SOFT_I2C)
71#include <i2c.h>
72#endif
73
wdenkc6097192002-11-03 00:24:07 +000074/************************************************************************
Peter Pearse2c261ca2007-09-04 16:18:38 +010075 * Coloured LED functionality
76 ************************************************************************
77 * May be supplied by boards if desired
78 */
Heiko Schocher417e0732011-07-15 19:36:36 +000079inline void __coloured_LED_init(void) {}
80void coloured_LED_init(void)
81 __attribute__((weak, alias("__coloured_LED_init")));
Jason Kridneraff0aa82011-09-04 14:40:16 -040082inline void __red_led_on(void) {}
83void red_led_on(void) __attribute__((weak, alias("__red_led_on")));
84inline void __red_led_off(void) {}
85void red_led_off(void) __attribute__((weak, alias("__red_led_off")));
86inline void __green_led_on(void) {}
87void green_led_on(void) __attribute__((weak, alias("__green_led_on")));
88inline void __green_led_off(void) {}
89void green_led_off(void) __attribute__((weak, alias("__green_led_off")));
90inline void __yellow_led_on(void) {}
91void yellow_led_on(void) __attribute__((weak, alias("__yellow_led_on")));
92inline void __yellow_led_off(void) {}
93void yellow_led_off(void) __attribute__((weak, alias("__yellow_led_off")));
94inline void __blue_led_on(void) {}
95void blue_led_on(void) __attribute__((weak, alias("__blue_led_on")));
96inline void __blue_led_off(void) {}
97void blue_led_off(void) __attribute__((weak, alias("__blue_led_off")));
Peter Pearse2c261ca2007-09-04 16:18:38 +010098
Heiko Schocher417e0732011-07-15 19:36:36 +000099/*
100 ************************************************************************
wdenkc6097192002-11-03 00:24:07 +0000101 * Init Utilities *
102 ************************************************************************
103 * Some of this code should be moved into the core functions,
104 * or dropped completely,
105 * but let's get it working (again) first...
106 */
107
Jean-Christophe PLAGNIOL-VILLARDb8023102009-02-22 15:49:28 +0100108#if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
109#define CONFIG_BAUDRATE 115200
110#endif
Simon Glass706c2342011-10-13 14:43:06 +0000111
Heiko Schocher417e0732011-07-15 19:36:36 +0000112static int init_baudrate(void)
wdenkc6097192002-11-03 00:24:07 +0000113{
Simon Glass706c2342011-10-13 14:43:06 +0000114 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
115 return 0;
wdenkc6097192002-11-03 00:24:07 +0000116}
117
Heiko Schocher417e0732011-07-15 19:36:36 +0000118static int display_banner(void)
wdenkc6097192002-11-03 00:24:07 +0000119{
Heiko Schocher417e0732011-07-15 19:36:36 +0000120 printf("\n\n%s\n\n", version_string);
121 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200122 _TEXT_BASE,
Heiko Schocher417e0732011-07-15 19:36:36 +0000123 _bss_start_ofs + _TEXT_BASE, _bss_end_ofs + _TEXT_BASE);
wdenkc6097192002-11-03 00:24:07 +0000124#ifdef CONFIG_MODEM_SUPPORT
Heiko Schocher417e0732011-07-15 19:36:36 +0000125 debug("Modem Support enabled\n");
wdenkc6097192002-11-03 00:24:07 +0000126#endif
127#ifdef CONFIG_USE_IRQ
Heiko Schocher417e0732011-07-15 19:36:36 +0000128 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
129 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
wdenkc6097192002-11-03 00:24:07 +0000130#endif
wdenk808532a2003-10-10 10:05:42 +0000131
wdenkc6097192002-11-03 00:24:07 +0000132 return (0);
133}
134
135/*
136 * WARNING: this code looks "cleaner" than the PowerPC version, but
137 * has the disadvantage that you either get nothing, or everything.
138 * On PowerPC, you might see "DRAM: " before the system hangs - which
139 * gives a simple yet clear indication which part of the
140 * initialization if failing.
141 */
Heiko Schocher417e0732011-07-15 19:36:36 +0000142static int display_dram_config(void)
wdenkc6097192002-11-03 00:24:07 +0000143{
wdenkc6097192002-11-03 00:24:07 +0000144 int i;
145
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100146#ifdef DEBUG
Heiko Schocher417e0732011-07-15 19:36:36 +0000147 puts("RAM Configuration:\n");
wdenkc6097192002-11-03 00:24:07 +0000148
Heiko Schocher417e0732011-07-15 19:36:36 +0000149 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
150 printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
151 print_size(gd->bd->bi_dram[i].size, "\n");
wdenkc6097192002-11-03 00:24:07 +0000152 }
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100153#else
154 ulong size = 0;
155
Heiko Schocher417e0732011-07-15 19:36:36 +0000156 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100157 size += gd->bd->bi_dram[i].size;
Heiko Schocher417e0732011-07-15 19:36:36 +0000158
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100159 puts("DRAM: ");
160 print_size(size, "\n");
161#endif
wdenkc6097192002-11-03 00:24:07 +0000162
163 return (0);
164}
wdenkc6097192002-11-03 00:24:07 +0000165
Hebbarb7d11642007-12-18 16:00:54 -0800166#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
Heiko Schocher417e0732011-07-15 19:36:36 +0000167static int init_func_i2c(void)
Hebbarb7d11642007-12-18 16:00:54 -0800168{
Heiko Schocher417e0732011-07-15 19:36:36 +0000169 puts("I2C: ");
170 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
171 puts("ready\n");
Hebbarb7d11642007-12-18 16:00:54 -0800172 return (0);
173}
174#endif
175
Jean-Christophe PLAGNIOL-VILLARD86588ea2009-01-31 09:04:58 +0100176#if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
177#include <pci.h>
178static int arm_pci_init(void)
179{
180 pci_init();
181 return 0;
182}
183#endif /* CONFIG_CMD_PCI || CONFIG_PCI */
184
wdenkc6097192002-11-03 00:24:07 +0000185/*
wdenkc0aa5c52003-12-06 19:49:23 +0000186 * Breathe some life into the board...
wdenkc6097192002-11-03 00:24:07 +0000187 *
wdenkb6b2f0e2003-09-17 22:48:07 +0000188 * Initialize a serial port as console, and carry out some hardware
wdenkc6097192002-11-03 00:24:07 +0000189 * tests.
190 *
191 * The first part of initialization is running from Flash memory;
192 * its main purpose is to initialize the RAM so that we
193 * can relocate the monitor code to RAM.
194 */
195
196/*
197 * All attempts to come up with a "common" initialization sequence
198 * that works for all boards and architectures failed: some of the
199 * requirements are just _too_ different. To get rid of the resulting
wdenk927034e2004-02-08 19:38:38 +0000200 * mess of board dependent #ifdef'ed code we now make the whole
wdenkc6097192002-11-03 00:24:07 +0000201 * initialization sequence configurable to the user.
202 *
203 * The requirements for any new initalization function is simple: it
204 * receives a pointer to the "global data" structure as it's only
205 * argument, and returns an integer return code, where 0 means
206 * "continue" and != 0 means "fatal error, hang the system".
207 */
208typedef int (init_fnc_t) (void);
209
Heiko Schocher417e0732011-07-15 19:36:36 +0000210int print_cpuinfo(void);
Wolfgang Denk7a132ae2006-01-29 19:12:41 +0100211
Heiko Schocheraeb29912010-09-17 13:10:39 +0200212void __dram_init_banksize(void)
213{
214 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
215 gd->bd->bi_dram[0].size = gd->ram_size;
216}
217void dram_init_banksize(void)
218 __attribute__((weak, alias("__dram_init_banksize")));
219
Fabio Estevam3f703e82012-03-01 04:02:38 +0000220int __arch_cpu_init(void)
221{
222 return 0;
223}
224int arch_cpu_init(void)
225 __attribute__((weak, alias("__arch_cpu_init")));
226
Łukasz Majewski3636a342012-11-13 03:21:56 +0000227int __power_init_board(void)
228{
229 return 0;
230}
231int power_init_board(void)
232 __attribute__((weak, alias("__power_init_board")));
233
Heiko Schocheraeb29912010-09-17 13:10:39 +0200234init_fnc_t *init_sequence[] = {
Heiko Schocheraeb29912010-09-17 13:10:39 +0200235 arch_cpu_init, /* basic arch cpu dependent setup */
Fabio Estevam3f703e82012-03-01 04:02:38 +0000236
Heiko Schocheraeb29912010-09-17 13:10:39 +0200237#if defined(CONFIG_BOARD_EARLY_INIT_F)
238 board_early_init_f,
239#endif
Simon Glass3433dd72011-10-24 19:15:33 +0000240#ifdef CONFIG_OF_CONTROL
241 fdtdec_check_fdt,
242#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200243 timer_init, /* initialize timer */
Markus Hubig3c92e0e2012-08-16 08:22:08 +0000244#ifdef CONFIG_BOARD_POSTCLK_INIT
245 board_postclk_init,
246#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200247#ifdef CONFIG_FSL_ESDHC
248 get_clocks,
249#endif
250 env_init, /* initialize environment */
251 init_baudrate, /* initialze baudrate settings */
252 serial_init, /* serial communications setup */
253 console_init_f, /* stage 1 init of console */
254 display_banner, /* say that we are here */
255#if defined(CONFIG_DISPLAY_CPUINFO)
256 print_cpuinfo, /* display cpu info (and speed) */
257#endif
258#if defined(CONFIG_DISPLAY_BOARDINFO)
259 checkboard, /* display board info */
260#endif
261#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
262 init_func_i2c,
263#endif
264 dram_init, /* configure available RAM banks */
Heiko Schocheraeb29912010-09-17 13:10:39 +0200265 NULL,
266};
267
Heiko Schocher417e0732011-07-15 19:36:36 +0000268void board_init_f(ulong bootflag)
Heiko Schocheraeb29912010-09-17 13:10:39 +0200269{
270 bd_t *bd;
271 init_fnc_t **init_fnc_ptr;
272 gd_t *id;
273 ulong addr, addr_sp;
Simon Glass706c2342011-10-13 14:43:06 +0000274#ifdef CONFIG_PRAM
275 ulong reg;
276#endif
Simon Glassd4678232012-09-27 15:41:55 +0000277 void *new_fdt = NULL;
278 size_t fdt_size = 0;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200279
Simon Glassef980a72012-02-13 13:51:21 +0000280 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
281
Heiko Schocher417e0732011-07-15 19:36:36 +0000282 memset((void *)gd, 0, sizeof(gd_t));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200283
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200284 gd->mon_len = _bss_end_ofs;
Simon Glass3433dd72011-10-24 19:15:33 +0000285#ifdef CONFIG_OF_EMBED
286 /* Get a pointer to the FDT */
287 gd->fdt_blob = _binary_dt_dtb_start;
288#elif defined CONFIG_OF_SEPARATE
289 /* FDT is at end of image */
290 gd->fdt_blob = (void *)(_end_ofs + _TEXT_BASE);
291#endif
Simon Glassdc6fa642011-10-24 19:15:34 +0000292 /* Allow the early environment to override the fdt address */
293 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
294 (uintptr_t)gd->fdt_blob);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200295
296 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
297 if ((*init_fnc_ptr)() != 0) {
298 hang ();
299 }
300 }
301
Simon Glassd3842c42012-03-28 10:08:25 +0000302#ifdef CONFIG_OF_CONTROL
303 /* For now, put this check after the console is ready */
304 if (fdtdec_prepare_fdt()) {
305 panic("** CONFIG_OF_CONTROL defined but no FDT - please see "
306 "doc/README.fdt-control");
307 }
308#endif
309
Heiko Schocher417e0732011-07-15 19:36:36 +0000310 debug("monitor len: %08lX\n", gd->mon_len);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200311 /*
312 * Ram is setup, size stored in gd !!
313 */
Heiko Schocher417e0732011-07-15 19:36:36 +0000314 debug("ramsize: %08lX\n", gd->ram_size);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200315#if defined(CONFIG_SYS_MEM_TOP_HIDE)
316 /*
317 * Subtract specified amount of memory to hide so that it won't
318 * get "touched" at all by U-Boot. By fixing up gd->ram_size
319 * the Linux kernel should now get passed the now "corrected"
320 * memory size and won't touch it either. This should work
321 * for arch/ppc and arch/powerpc. Only Linux board ports in
322 * arch/powerpc with bootwrapper support, that recalculate the
323 * memory size from the SDRAM controller setup will have to
324 * get fixed.
325 */
326 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
327#endif
328
329 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
330
331#ifdef CONFIG_LOGBUFFER
332#ifndef CONFIG_ALT_LB_ADDR
333 /* reserve kernel log buffer */
334 addr -= (LOGBUFF_RESERVE);
Heiko Schocher417e0732011-07-15 19:36:36 +0000335 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
336 addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200337#endif
338#endif
339
340#ifdef CONFIG_PRAM
341 /*
342 * reserve protected RAM
343 */
Simon Glass706c2342011-10-13 14:43:06 +0000344 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200345 addr -= (reg << 10); /* size is in kB */
Heiko Schocher417e0732011-07-15 19:36:36 +0000346 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200347#endif /* CONFIG_PRAM */
348
Aneesh Vecee9c82011-06-16 23:30:48 +0000349#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Heiko Schocheraeb29912010-09-17 13:10:39 +0200350 /* reserve TLB table */
Gabe Black72866c72012-11-30 13:01:15 +0000351 gd->tlb_size = 4096 * 4;
352 addr -= gd->tlb_size;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200353
354 /* round down to next 64 kB limit */
355 addr &= ~(0x10000 - 1);
356
357 gd->tlb_addr = addr;
Gabe Black72866c72012-11-30 13:01:15 +0000358 debug("TLB table from %08lx to %08lx\n", addr, addr + gd->tlb_size);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200359#endif
360
361 /* round down to next 4 kB limit */
362 addr &= ~(4096 - 1);
Heiko Schocher417e0732011-07-15 19:36:36 +0000363 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200364
Heiko Schocheraeb29912010-09-17 13:10:39 +0200365#ifdef CONFIG_LCD
Minkyu Kang50777c42011-04-24 22:22:34 +0000366#ifdef CONFIG_FB_ADDR
367 gd->fb_base = CONFIG_FB_ADDR;
368#else
Heiko Schocheraeb29912010-09-17 13:10:39 +0200369 /* reserve memory for LCD display (always full pages) */
Heiko Schocher417e0732011-07-15 19:36:36 +0000370 addr = lcd_setmem(addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200371 gd->fb_base = addr;
Minkyu Kang50777c42011-04-24 22:22:34 +0000372#endif /* CONFIG_FB_ADDR */
Heiko Schocheraeb29912010-09-17 13:10:39 +0200373#endif /* CONFIG_LCD */
374
375 /*
376 * reserve memory for U-Boot code, data & bss
377 * round down to next 4 kB limit
378 */
379 addr -= gd->mon_len;
380 addr &= ~(4096 - 1);
381
Heiko Schocher417e0732011-07-15 19:36:36 +0000382 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200383
Aneesh V552a3192011-07-13 05:11:07 +0000384#ifndef CONFIG_SPL_BUILD
Heiko Schocheraeb29912010-09-17 13:10:39 +0200385 /*
386 * reserve memory for malloc() arena
387 */
388 addr_sp = addr - TOTAL_MALLOC_LEN;
Heiko Schocher417e0732011-07-15 19:36:36 +0000389 debug("Reserving %dk for malloc() at: %08lx\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200390 TOTAL_MALLOC_LEN >> 10, addr_sp);
391 /*
392 * (permanently) allocate a Board Info struct
393 * and a permanent copy of the "global" data
394 */
395 addr_sp -= sizeof (bd_t);
396 bd = (bd_t *) addr_sp;
397 gd->bd = bd;
Heiko Schocher417e0732011-07-15 19:36:36 +0000398 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200399 sizeof (bd_t), addr_sp);
Igor Grinbergfa94c282011-08-16 23:48:23 +0000400
401#ifdef CONFIG_MACH_TYPE
402 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
403#endif
404
Heiko Schocheraeb29912010-09-17 13:10:39 +0200405 addr_sp -= sizeof (gd_t);
406 id = (gd_t *) addr_sp;
Heiko Schocher417e0732011-07-15 19:36:36 +0000407 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200408 sizeof (gd_t), addr_sp);
409
Simon Glassd4678232012-09-27 15:41:55 +0000410#if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL)
411 /*
412 * If the device tree is sitting immediate above our image then we
413 * must relocate it. If it is embedded in the data section, then it
414 * will be relocated with other data.
415 */
416 if (gd->fdt_blob) {
417 fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
418
419 addr_sp -= fdt_size;
420 new_fdt = (void *)addr_sp;
421 debug("Reserving %zu Bytes for FDT at: %08lx\n",
422 fdt_size, addr_sp);
423 }
424#endif
425
Heiko Schocheraeb29912010-09-17 13:10:39 +0200426 /* setup stackpointer for exeptions */
427 gd->irq_sp = addr_sp;
428#ifdef CONFIG_USE_IRQ
429 addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
Heiko Schocher417e0732011-07-15 19:36:36 +0000430 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
Heiko Schocheraeb29912010-09-17 13:10:39 +0200431 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
432#endif
433 /* leave 3 words for abort-stack */
Eric Coopera346ba92011-04-14 12:32:37 +0000434 addr_sp -= 12;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200435
436 /* 8-byte alignment for ABI compliance */
437 addr_sp &= ~0x07;
438#else
439 addr_sp += 128; /* leave 32 words for abort-stack */
440 gd->irq_sp = addr_sp;
441#endif
442
Heiko Schocher417e0732011-07-15 19:36:36 +0000443 debug("New Stack Pointer is: %08lx\n", addr_sp);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200444
445#ifdef CONFIG_POST
446 post_bootmode_init();
Heiko Schocher417e0732011-07-15 19:36:36 +0000447 post_run(NULL, POST_ROM | post_bootmode_get(0));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200448#endif
449
450 gd->bd->bi_baudrate = gd->baudrate;
451 /* Ram ist board specific, so move it to board code ... */
452 dram_init_banksize();
453 display_dram_config(); /* and display it */
454
455 gd->relocaddr = addr;
456 gd->start_addr_sp = addr_sp;
457 gd->reloc_off = addr - _TEXT_BASE;
Heiko Schocher417e0732011-07-15 19:36:36 +0000458 debug("relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassd4678232012-09-27 15:41:55 +0000459 if (new_fdt) {
460 memcpy(new_fdt, gd->fdt_blob, fdt_size);
461 gd->fdt_blob = new_fdt;
462 }
Heiko Schocher417e0732011-07-15 19:36:36 +0000463 memcpy(id, (void *)gd, sizeof(gd_t));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200464}
465
466#if !defined(CONFIG_SYS_NO_FLASH)
467static char *failed = "*** failed ***\n";
468#endif
469
Heiko Schocher417e0732011-07-15 19:36:36 +0000470/*
471 ************************************************************************
Heiko Schocheraeb29912010-09-17 13:10:39 +0200472 *
473 * This is the next part if the initialization sequence: we are now
474 * running from RAM and have a "normal" C environment, i. e. global
475 * data can be written, BSS has been cleared, the stack size in not
476 * that critical any more, etc.
477 *
478 ************************************************************************
479 */
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200480
Heiko Schocher417e0732011-07-15 19:36:36 +0000481void board_init_r(gd_t *id, ulong dest_addr)
Heiko Schocheraeb29912010-09-17 13:10:39 +0200482{
Heiko Schocheraeb29912010-09-17 13:10:39 +0200483 ulong malloc_start;
484#if !defined(CONFIG_SYS_NO_FLASH)
485 ulong flash_size;
486#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200487
Heiko Schocheraeb29912010-09-17 13:10:39 +0200488 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
Simon Glassef980a72012-02-13 13:51:21 +0000489 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200490
Po-Yu Chuang1864b002011-03-01 23:02:04 +0000491 monitor_flash_len = _end_ofs;
Aneesh Vfffbb972011-08-16 04:33:05 +0000492
493 /* Enable caches */
494 enable_caches();
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000495
Heiko Schocher417e0732011-07-15 19:36:36 +0000496 debug("monitor flash len: %08lX\n", monitor_flash_len);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200497 board_init(); /* Setup chipselects */
Hadli, Manjunath0dfccbe2012-02-06 00:30:44 +0000498 /*
499 * TODO: printing of the clock inforamtion of the board is now
500 * implemented as part of bdinfo command. Currently only support for
501 * davinci SOC's is added. Remove this check once all the board
502 * implement this.
503 */
504#ifdef CONFIG_CLOCKS
505 set_cpu_clk_info(); /* Setup clock information */
506#endif
stefano babic5ab4f032007-08-30 22:57:04 +0200507 serial_initialize();
stefano babic5ab4f032007-08-30 22:57:04 +0200508
Heiko Schocher417e0732011-07-15 19:36:36 +0000509 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200510
Heiko Schocheraeb29912010-09-17 13:10:39 +0200511#ifdef CONFIG_LOGBUFFER
Heiko Schocher417e0732011-07-15 19:36:36 +0000512 logbuff_init_ptrs();
Heiko Schocheraeb29912010-09-17 13:10:39 +0200513#endif
514#ifdef CONFIG_POST
Heiko Schocher417e0732011-07-15 19:36:36 +0000515 post_output_backlog();
Heiko Schocheraeb29912010-09-17 13:10:39 +0200516#endif
517
518 /* The Malloc area is immediately below the monitor copy in DRAM */
519 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
520 mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200521
Fabio Estevam4310ecc2012-04-02 11:19:45 +0000522#ifdef CONFIG_ARCH_EARLY_INIT_R
523 arch_early_init_r();
524#endif
Łukasz Majewski3636a342012-11-13 03:21:56 +0000525 power_init_board();
Fabio Estevam4310ecc2012-04-02 11:19:45 +0000526
Heiko Schocheraeb29912010-09-17 13:10:39 +0200527#if !defined(CONFIG_SYS_NO_FLASH)
Heiko Schocher417e0732011-07-15 19:36:36 +0000528 puts("Flash: ");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200529
Heiko Schocher417e0732011-07-15 19:36:36 +0000530 flash_size = flash_init();
531 if (flash_size > 0) {
Heiko Schocheraeb29912010-09-17 13:10:39 +0200532# ifdef CONFIG_SYS_FLASH_CHECKSUM
Heiko Schocher417e0732011-07-15 19:36:36 +0000533 print_size(flash_size, "");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200534 /*
535 * Compute and print flash CRC if flashchecksum is set to 'y'
536 *
537 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
538 */
Joe Hershberger864ec562012-12-11 22:16:22 -0600539 if (getenv_yesno("flashchecksum") == 1) {
Heiko Schocher417e0732011-07-15 19:36:36 +0000540 printf(" CRC: %08X", crc32(0,
541 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
542 flash_size));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200543 }
Heiko Schocher417e0732011-07-15 19:36:36 +0000544 putc('\n');
Heiko Schocheraeb29912010-09-17 13:10:39 +0200545# else /* !CONFIG_SYS_FLASH_CHECKSUM */
Heiko Schocher417e0732011-07-15 19:36:36 +0000546 print_size(flash_size, "\n");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200547# endif /* CONFIG_SYS_FLASH_CHECKSUM */
548 } else {
Heiko Schocher417e0732011-07-15 19:36:36 +0000549 puts(failed);
550 hang();
Heiko Schocheraeb29912010-09-17 13:10:39 +0200551 }
552#endif
553
554#if defined(CONFIG_CMD_NAND)
Heiko Schocher417e0732011-07-15 19:36:36 +0000555 puts("NAND: ");
Heiko Schocheraeb29912010-09-17 13:10:39 +0200556 nand_init(); /* go init the NAND */
557#endif
558
559#if defined(CONFIG_CMD_ONENAND)
560 onenand_init();
561#endif
562
Steve Sakomana93ec572010-10-11 05:51:39 -0700563#ifdef CONFIG_GENERIC_MMC
564 puts("MMC: ");
Wolfgang Denkbff3b822011-10-05 22:44:43 +0200565 mmc_initialize(gd->bd);
Steve Sakomana93ec572010-10-11 05:51:39 -0700566#endif
567
Heiko Schocheraeb29912010-09-17 13:10:39 +0200568#ifdef CONFIG_HAS_DATAFLASH
569 AT91F_DataflashInit();
570 dataflash_print_info();
571#endif
572
573 /* initialize environment */
Heiko Schocher417e0732011-07-15 19:36:36 +0000574 env_relocate();
Heiko Schocheraeb29912010-09-17 13:10:39 +0200575
Michael Schwingen24599de2011-05-23 00:00:13 +0200576#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
577 arm_pci_init();
578#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200579
Heiko Schocher417e0732011-07-15 19:36:36 +0000580 stdio_init(); /* get the devices list going. */
wdenk56958612003-06-22 17:18:28 +0000581
Heiko Schocher417e0732011-07-15 19:36:36 +0000582 jumptable_init();
wdenk56958612003-06-22 17:18:28 +0000583
Rafal Jaworowski9d9689f2009-01-23 13:27:16 +0100584#if defined(CONFIG_API)
585 /* Initialize API */
Heiko Schocher417e0732011-07-15 19:36:36 +0000586 api_init();
Rafal Jaworowski9d9689f2009-01-23 13:27:16 +0100587#endif
588
Heiko Schocher417e0732011-07-15 19:36:36 +0000589 console_init_r(); /* fully init console as a device */
wdenk56958612003-06-22 17:18:28 +0000590
Prafulla Wadaskar98196702009-05-31 14:53:20 +0200591#if defined(CONFIG_ARCH_MISC_INIT)
592 /* miscellaneous arch dependent initialisations */
Heiko Schocher417e0732011-07-15 19:36:36 +0000593 arch_misc_init();
Prafulla Wadaskar98196702009-05-31 14:53:20 +0200594#endif
wdenkc6097192002-11-03 00:24:07 +0000595#if defined(CONFIG_MISC_INIT_R)
596 /* miscellaneous platform dependent initialisations */
Heiko Schocher417e0732011-07-15 19:36:36 +0000597 misc_init_r();
wdenkc6097192002-11-03 00:24:07 +0000598#endif
599
Heiko Schocheraeb29912010-09-17 13:10:39 +0200600 /* set up exceptions */
Heiko Schocher417e0732011-07-15 19:36:36 +0000601 interrupt_init();
wdenkc6097192002-11-03 00:24:07 +0000602 /* enable exceptions */
Heiko Schocher417e0732011-07-15 19:36:36 +0000603 enable_interrupts();
wdenkc6097192002-11-03 00:24:07 +0000604
wdenkb02744a2003-04-05 00:53:31 +0000605 /* Initialize from environment */
Simon Glass706c2342011-10-13 14:43:06 +0000606 load_addr = getenv_ulong("loadaddr", 16, load_addr);
wdenkb02744a2003-04-05 00:53:31 +0000607
Helmut Raigerd5a184b2011-10-20 04:19:47 +0000608#ifdef CONFIG_BOARD_LATE_INIT
Heiko Schocher417e0732011-07-15 19:36:36 +0000609 board_late_init();
wdenkc6097192002-11-03 00:24:07 +0000610#endif
Ilya Yanok50ff6df2009-06-08 04:12:50 +0400611
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +0200612#ifdef CONFIG_BITBANGMII
613 bb_miiphy_init();
614#endif
Jon Loeliger12077972007-07-09 18:05:38 -0500615#if defined(CONFIG_CMD_NET)
Heiko Schocher417e0732011-07-15 19:36:36 +0000616 puts("Net: ");
wdenk26c58432005-01-09 17:12:27 +0000617 eth_initialize(gd->bd);
Jean-Christophe PLAGNIOL-VILLARD6beda0c2007-12-11 10:53:12 +0100618#if defined(CONFIG_RESET_PHY_R)
Heiko Schocher417e0732011-07-15 19:36:36 +0000619 debug("Reset Ethernet PHY\n");
Jean-Christophe PLAGNIOL-VILLARD6beda0c2007-12-11 10:53:12 +0100620 reset_phy();
621#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200622#endif
623
624#ifdef CONFIG_POST
Heiko Schocher417e0732011-07-15 19:36:36 +0000625 post_run(NULL, POST_RAM | post_bootmode_get(0));
Heiko Schocheraeb29912010-09-17 13:10:39 +0200626#endif
627
628#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
629 /*
630 * Export available size of memory for Linux,
631 * taking into account the protected RAM at top of memory
632 */
633 {
Simon Glass706c2342011-10-13 14:43:06 +0000634 ulong pram = 0;
Heiko Schocheraeb29912010-09-17 13:10:39 +0200635 uchar memsz[32];
Heiko Schocheraeb29912010-09-17 13:10:39 +0200636
Simon Glass706c2342011-10-13 14:43:06 +0000637#ifdef CONFIG_PRAM
638 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200639#endif
640#ifdef CONFIG_LOGBUFFER
641#ifndef CONFIG_ALT_LB_ADDR
642 /* Also take the logbuffer into account (pram is in kB) */
Heiko Schocher417e0732011-07-15 19:36:36 +0000643 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
wdenk26c58432005-01-09 17:12:27 +0000644#endif
Heiko Schocheraeb29912010-09-17 13:10:39 +0200645#endif
Heiko Schocherb852aaf2011-06-02 22:11:37 +0000646 sprintf((char *)memsz, "%ldk", (gd->ram_size / 1024) - pram);
Heiko Schocher417e0732011-07-15 19:36:36 +0000647 setenv("mem", (char *)memsz);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200648 }
649#endif
650
wdenkc6097192002-11-03 00:24:07 +0000651 /* main_loop() can return to retry autoboot, if so just run it again. */
652 for (;;) {
Heiko Schocher417e0732011-07-15 19:36:36 +0000653 main_loop();
wdenkc6097192002-11-03 00:24:07 +0000654 }
655
656 /* NOTREACHED - no way out of command loop except booting */
657}
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200658
Heiko Schocher417e0732011-07-15 19:36:36 +0000659void hang(void)
wdenkc6097192002-11-03 00:24:07 +0000660{
Heiko Schocher417e0732011-07-15 19:36:36 +0000661 puts("### ERROR ### Please RESET the board ###\n");
wdenkc6097192002-11-03 00:24:07 +0000662 for (;;);
663}