blob: 22a4d9cc0e59d4c877fb8892e2f960b0cad32843 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
Wolfgang Denk57cac1f2006-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 Denk57cac1f2006-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>
wdenk3595ac42003-06-22 17:18:28 +000043#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-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 Ziswilerb71190f2008-05-01 09:05:26 +020047#include <serial.h>
Scott Woodd6ac2ed2008-05-22 10:49:46 -050048#include <nand.h>
49#include <onenand_uboot.h>
Ilya Yanok379e9fc2009-06-08 04:12:50 +040050#include <mmc.h>
Simon Glassf5437ad2011-10-24 19:15:33 +000051#include <libfdt.h>
52#include <fdtdec.h>
Valentin Longchampea3681a2011-09-02 04:59:03 +000053#include <post.h>
54#include <logbuff.h>
wdenkc6097192002-11-03 00:24:07 +000055
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020056#ifdef CONFIG_BITBANGMII
57#include <miiphy.h>
58#endif
59
Markus Klotzbücherb2b43462006-02-10 11:25:41 +010060DECLARE_GLOBAL_DATA_PTR;
61
wdenk3b57fe02003-05-30 12:48:29 +000062ulong monitor_flash_len;
63
wdenk2abbe072003-06-16 23:50:08 +000064#ifdef CONFIG_HAS_DATAFLASH
65extern int AT91F_DataflashInit(void);
66extern void dataflash_print_info(void);
67#endif
68
Hebbarf7ad79b2007-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 Pearse9f5c3d32007-09-04 16:18:38 +010075 * Coloured LED functionality
76 ************************************************************************
77 * May be supplied by boards if desired
78 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +000079inline void __coloured_LED_init(void) {}
80void coloured_LED_init(void)
81 __attribute__((weak, alias("__coloured_LED_init")));
Jason Kridner2d3be7c2011-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 Pearse9f5c3d32007-09-04 16:18:38 +010098
Heiko Schocherceb1d6d2011-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-VILLARD4f572892009-02-22 15:49:28 +0100108#if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
109#define CONFIG_BAUDRATE 115200
110#endif
Simon Glassdc8bbea2011-10-13 14:43:06 +0000111
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000112static int init_baudrate(void)
wdenkc6097192002-11-03 00:24:07 +0000113{
Simon Glassdc8bbea2011-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 Schocherceb1d6d2011-07-15 19:36:36 +0000118static int display_banner(void)
wdenkc6097192002-11-03 00:24:07 +0000119{
Heiko Schocherceb1d6d2011-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 Schocherf1d2b312010-09-17 13:10:39 +0200122 _TEXT_BASE,
Heiko Schocherceb1d6d2011-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 Schocherceb1d6d2011-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 Schocherceb1d6d2011-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
wdenkf72da342003-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 Schocherceb1d6d2011-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 Denk57cac1f2006-01-29 19:12:41 +0100146#ifdef DEBUG
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000147 puts("RAM Configuration:\n");
wdenkc6097192002-11-03 00:24:07 +0000148
Heiko Schocherceb1d6d2011-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 Denk57cac1f2006-01-29 19:12:41 +0100153#else
154 ulong size = 0;
155
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000156 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100157 size += gd->bd->bi_dram[i].size;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000158
Wolfgang Denk57cac1f2006-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}
165
Hebbarf7ad79b2007-12-18 16:00:54 -0800166#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000167static int init_func_i2c(void)
Hebbarf7ad79b2007-12-18 16:00:54 -0800168{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000169 puts("I2C: ");
170 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
171 puts("ready\n");
Hebbarf7ad79b2007-12-18 16:00:54 -0800172 return (0);
173}
174#endif
175
Jean-Christophe PLAGNIOL-VILLARDf90c8022009-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/*
wdenka8c7c702003-12-06 19:49:23 +0000186 * Breathe some life into the board...
wdenkc6097192002-11-03 00:24:07 +0000187 *
wdenkb0639ca2003-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
wdenkf6e20fc2004-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 Schocherceb1d6d2011-07-15 19:36:36 +0000210int print_cpuinfo(void);
Wolfgang Denk57cac1f2006-01-29 19:12:41 +0100211
Heiko Schocherf1d2b312010-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 Estevama21c6512012-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 Majewski2ffb4be2012-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 Schocherf1d2b312010-09-17 13:10:39 +0200234init_fnc_t *init_sequence[] = {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200235 arch_cpu_init, /* basic arch cpu dependent setup */
Fabio Estevama21c6512012-03-01 04:02:38 +0000236
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200237#if defined(CONFIG_BOARD_EARLY_INIT_F)
238 board_early_init_f,
239#endif
Simon Glassf5437ad2011-10-24 19:15:33 +0000240#ifdef CONFIG_OF_CONTROL
241 fdtdec_check_fdt,
242#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200243 timer_init, /* initialize timer */
Markus Hubige23e5ee2012-08-16 08:22:08 +0000244#ifdef CONFIG_BOARD_POSTCLK_INIT
245 board_postclk_init,
246#endif
Heiko Schocherf1d2b312010-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 Schocherf1d2b312010-09-17 13:10:39 +0200265 NULL,
266};
267
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000268void board_init_f(ulong bootflag)
Heiko Schocherf1d2b312010-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 Glassdc8bbea2011-10-13 14:43:06 +0000274#ifdef CONFIG_PRAM
275 ulong reg;
276#endif
Simon Glass39826f02012-09-27 15:41:55 +0000277 void *new_fdt = NULL;
278 size_t fdt_size = 0;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200279
Simon Glassf933e842012-02-13 13:51:21 +0000280 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
281
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200282 /* Pointer is writable since we allocated a register for it */
Heiko Schocher296cae72010-11-12 07:53:55 +0100283 gd = (gd_t *) ((CONFIG_SYS_INIT_SP_ADDR) & ~0x07);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200284 /* compiler optimization barrier needed for GCC >= 3.4 */
285 __asm__ __volatile__("": : :"memory");
286
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000287 memset((void *)gd, 0, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200288
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200289 gd->mon_len = _bss_end_ofs;
Simon Glassf5437ad2011-10-24 19:15:33 +0000290#ifdef CONFIG_OF_EMBED
291 /* Get a pointer to the FDT */
292 gd->fdt_blob = _binary_dt_dtb_start;
293#elif defined CONFIG_OF_SEPARATE
294 /* FDT is at end of image */
295 gd->fdt_blob = (void *)(_end_ofs + _TEXT_BASE);
296#endif
Simon Glasseea63e02011-10-24 19:15:34 +0000297 /* Allow the early environment to override the fdt address */
298 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
299 (uintptr_t)gd->fdt_blob);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200300
301 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
302 if ((*init_fnc_ptr)() != 0) {
303 hang ();
304 }
305 }
306
Simon Glass28669032012-03-28 10:08:25 +0000307#ifdef CONFIG_OF_CONTROL
308 /* For now, put this check after the console is ready */
309 if (fdtdec_prepare_fdt()) {
310 panic("** CONFIG_OF_CONTROL defined but no FDT - please see "
311 "doc/README.fdt-control");
312 }
313#endif
314
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000315 debug("monitor len: %08lX\n", gd->mon_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200316 /*
317 * Ram is setup, size stored in gd !!
318 */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000319 debug("ramsize: %08lX\n", gd->ram_size);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200320#if defined(CONFIG_SYS_MEM_TOP_HIDE)
321 /*
322 * Subtract specified amount of memory to hide so that it won't
323 * get "touched" at all by U-Boot. By fixing up gd->ram_size
324 * the Linux kernel should now get passed the now "corrected"
325 * memory size and won't touch it either. This should work
326 * for arch/ppc and arch/powerpc. Only Linux board ports in
327 * arch/powerpc with bootwrapper support, that recalculate the
328 * memory size from the SDRAM controller setup will have to
329 * get fixed.
330 */
331 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
332#endif
333
334 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
335
336#ifdef CONFIG_LOGBUFFER
337#ifndef CONFIG_ALT_LB_ADDR
338 /* reserve kernel log buffer */
339 addr -= (LOGBUFF_RESERVE);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000340 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
341 addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200342#endif
343#endif
344
345#ifdef CONFIG_PRAM
346 /*
347 * reserve protected RAM
348 */
Simon Glassdc8bbea2011-10-13 14:43:06 +0000349 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200350 addr -= (reg << 10); /* size is in kB */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000351 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200352#endif /* CONFIG_PRAM */
353
Aneesh Ve47f2db2011-06-16 23:30:48 +0000354#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200355 /* reserve TLB table */
356 addr -= (4096 * 4);
357
358 /* round down to next 64 kB limit */
359 addr &= ~(0x10000 - 1);
360
361 gd->tlb_addr = addr;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000362 debug("TLB table at: %08lx\n", addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200363#endif
364
365 /* round down to next 4 kB limit */
366 addr &= ~(4096 - 1);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000367 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200368
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200369#ifdef CONFIG_LCD
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000370#ifdef CONFIG_FB_ADDR
371 gd->fb_base = CONFIG_FB_ADDR;
372#else
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200373 /* reserve memory for LCD display (always full pages) */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000374 addr = lcd_setmem(addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200375 gd->fb_base = addr;
Minkyu Kangd32a1a42011-04-24 22:22:34 +0000376#endif /* CONFIG_FB_ADDR */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200377#endif /* CONFIG_LCD */
378
379 /*
380 * reserve memory for U-Boot code, data & bss
381 * round down to next 4 kB limit
382 */
383 addr -= gd->mon_len;
384 addr &= ~(4096 - 1);
385
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000386 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200387
Aneesh V401bb302011-07-13 05:11:07 +0000388#ifndef CONFIG_SPL_BUILD
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200389 /*
390 * reserve memory for malloc() arena
391 */
392 addr_sp = addr - TOTAL_MALLOC_LEN;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000393 debug("Reserving %dk for malloc() at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200394 TOTAL_MALLOC_LEN >> 10, addr_sp);
395 /*
396 * (permanently) allocate a Board Info struct
397 * and a permanent copy of the "global" data
398 */
399 addr_sp -= sizeof (bd_t);
400 bd = (bd_t *) addr_sp;
401 gd->bd = bd;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000402 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200403 sizeof (bd_t), addr_sp);
Igor Grinberg15c2e2c2011-08-16 23:48:23 +0000404
405#ifdef CONFIG_MACH_TYPE
406 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
407#endif
408
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200409 addr_sp -= sizeof (gd_t);
410 id = (gd_t *) addr_sp;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000411 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200412 sizeof (gd_t), addr_sp);
413
Simon Glass39826f02012-09-27 15:41:55 +0000414#if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL)
415 /*
416 * If the device tree is sitting immediate above our image then we
417 * must relocate it. If it is embedded in the data section, then it
418 * will be relocated with other data.
419 */
420 if (gd->fdt_blob) {
421 fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
422
423 addr_sp -= fdt_size;
424 new_fdt = (void *)addr_sp;
425 debug("Reserving %zu Bytes for FDT at: %08lx\n",
426 fdt_size, addr_sp);
427 }
428#endif
429
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200430 /* setup stackpointer for exeptions */
431 gd->irq_sp = addr_sp;
432#ifdef CONFIG_USE_IRQ
433 addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000434 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200435 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
436#endif
437 /* leave 3 words for abort-stack */
Eric Cooper6445a302011-04-14 12:32:37 +0000438 addr_sp -= 12;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200439
440 /* 8-byte alignment for ABI compliance */
441 addr_sp &= ~0x07;
442#else
443 addr_sp += 128; /* leave 32 words for abort-stack */
444 gd->irq_sp = addr_sp;
445#endif
446
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000447 debug("New Stack Pointer is: %08lx\n", addr_sp);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200448
449#ifdef CONFIG_POST
450 post_bootmode_init();
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000451 post_run(NULL, POST_ROM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200452#endif
453
454 gd->bd->bi_baudrate = gd->baudrate;
455 /* Ram ist board specific, so move it to board code ... */
456 dram_init_banksize();
457 display_dram_config(); /* and display it */
458
459 gd->relocaddr = addr;
460 gd->start_addr_sp = addr_sp;
461 gd->reloc_off = addr - _TEXT_BASE;
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000462 debug("relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glass39826f02012-09-27 15:41:55 +0000463 if (new_fdt) {
464 memcpy(new_fdt, gd->fdt_blob, fdt_size);
465 gd->fdt_blob = new_fdt;
466 }
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000467 memcpy(id, (void *)gd, sizeof(gd_t));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200468
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000469 relocate_code(addr_sp, id, addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200470
471 /* NOTREACHED - relocate_code() does not return */
472}
473
474#if !defined(CONFIG_SYS_NO_FLASH)
475static char *failed = "*** failed ***\n";
476#endif
477
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000478/*
479 ************************************************************************
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200480 *
481 * This is the next part if the initialization sequence: we are now
482 * running from RAM and have a "normal" C environment, i. e. global
483 * data can be written, BSS has been cleared, the stack size in not
484 * that critical any more, etc.
485 *
486 ************************************************************************
487 */
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200488
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000489void board_init_r(gd_t *id, ulong dest_addr)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200490{
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200491 ulong malloc_start;
492#if !defined(CONFIG_SYS_NO_FLASH)
493 ulong flash_size;
494#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200495
496 gd = id;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200497
498 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
Simon Glassf933e842012-02-13 13:51:21 +0000499 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200500
Po-Yu Chuangf326cbb2011-03-01 23:02:04 +0000501 monitor_flash_len = _end_ofs;
Aneesh Vcba4b182011-08-16 04:33:05 +0000502
503 /* Enable caches */
504 enable_caches();
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000505
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000506 debug("monitor flash len: %08lX\n", monitor_flash_len);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200507 board_init(); /* Setup chipselects */
Hadli, Manjunath8f5d4682012-02-06 00:30:44 +0000508 /*
509 * TODO: printing of the clock inforamtion of the board is now
510 * implemented as part of bdinfo command. Currently only support for
511 * davinci SOC's is added. Remove this check once all the board
512 * implement this.
513 */
514#ifdef CONFIG_CLOCKS
515 set_cpu_clk_info(); /* Setup clock information */
516#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200517 serial_initialize();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200518
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000519 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200520
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200521#ifdef CONFIG_LOGBUFFER
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000522 logbuff_init_ptrs();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200523#endif
524#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000525 post_output_backlog();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200526#endif
527
528 /* The Malloc area is immediately below the monitor copy in DRAM */
529 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
530 mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200531
Fabio Estevamd519b4b2012-04-02 11:19:45 +0000532#ifdef CONFIG_ARCH_EARLY_INIT_R
533 arch_early_init_r();
534#endif
Łukasz Majewski2ffb4be2012-11-13 03:21:56 +0000535 power_init_board();
Fabio Estevamd519b4b2012-04-02 11:19:45 +0000536
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200537#if !defined(CONFIG_SYS_NO_FLASH)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000538 puts("Flash: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200539
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000540 flash_size = flash_init();
541 if (flash_size > 0) {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200542# ifdef CONFIG_SYS_FLASH_CHECKSUM
Simon Glassbc4e14c2011-10-23 17:44:35 +0000543 char *s = getenv("flashchecksum");
544
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000545 print_size(flash_size, "");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200546 /*
547 * Compute and print flash CRC if flashchecksum is set to 'y'
548 *
549 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
550 */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200551 if (s && (*s == 'y')) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000552 printf(" CRC: %08X", crc32(0,
553 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
554 flash_size));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200555 }
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000556 putc('\n');
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200557# else /* !CONFIG_SYS_FLASH_CHECKSUM */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000558 print_size(flash_size, "\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200559# endif /* CONFIG_SYS_FLASH_CHECKSUM */
560 } else {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000561 puts(failed);
562 hang();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200563 }
564#endif
565
566#if defined(CONFIG_CMD_NAND)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000567 puts("NAND: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200568 nand_init(); /* go init the NAND */
569#endif
570
571#if defined(CONFIG_CMD_ONENAND)
572 onenand_init();
573#endif
574
Steve Sakomand470a6f2010-10-11 05:51:39 -0700575#ifdef CONFIG_GENERIC_MMC
576 puts("MMC: ");
Wolfgang Denk80c6abc2011-10-05 22:44:43 +0200577 mmc_initialize(gd->bd);
Steve Sakomand470a6f2010-10-11 05:51:39 -0700578#endif
579
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200580#ifdef CONFIG_HAS_DATAFLASH
581 AT91F_DataflashInit();
582 dataflash_print_info();
583#endif
584
585 /* initialize environment */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000586 env_relocate();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200587
Michael Schwingen1ed63c52011-05-23 00:00:13 +0200588#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
589 arm_pci_init();
590#endif
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200591
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000592 stdio_init(); /* get the devices list going. */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200593
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000594 jumptable_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200595
596#if defined(CONFIG_API)
597 /* Initialize API */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000598 api_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200599#endif
600
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000601 console_init_r(); /* fully init console as a device */
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200602
603#if defined(CONFIG_ARCH_MISC_INIT)
604 /* miscellaneous arch dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000605 arch_misc_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200606#endif
607#if defined(CONFIG_MISC_INIT_R)
608 /* miscellaneous platform dependent initialisations */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000609 misc_init_r();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200610#endif
611
612 /* set up exceptions */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000613 interrupt_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200614 /* enable exceptions */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000615 enable_interrupts();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200616
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200617 /* Initialize from environment */
Simon Glassdc8bbea2011-10-13 14:43:06 +0000618 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200619
Helmut Raiger9660e442011-10-20 04:19:47 +0000620#ifdef CONFIG_BOARD_LATE_INIT
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000621 board_late_init();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200622#endif
623
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200624#ifdef CONFIG_BITBANGMII
625 bb_miiphy_init();
626#endif
627#if defined(CONFIG_CMD_NET)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000628 puts("Net: ");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200629 eth_initialize(gd->bd);
630#if defined(CONFIG_RESET_PHY_R)
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000631 debug("Reset Ethernet PHY\n");
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200632 reset_phy();
633#endif
634#endif
635
636#ifdef CONFIG_POST
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000637 post_run(NULL, POST_RAM | post_bootmode_get(0));
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200638#endif
639
640#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
641 /*
642 * Export available size of memory for Linux,
643 * taking into account the protected RAM at top of memory
644 */
645 {
Simon Glassdc8bbea2011-10-13 14:43:06 +0000646 ulong pram = 0;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200647 uchar memsz[32];
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200648
Simon Glassdc8bbea2011-10-13 14:43:06 +0000649#ifdef CONFIG_PRAM
650 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200651#endif
652#ifdef CONFIG_LOGBUFFER
653#ifndef CONFIG_ALT_LB_ADDR
654 /* Also take the logbuffer into account (pram is in kB) */
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000655 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200656#endif
657#endif
Heiko Schocherb2b8f982011-06-02 22:11:37 +0000658 sprintf((char *)memsz, "%ldk", (gd->ram_size / 1024) - pram);
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000659 setenv("mem", (char *)memsz);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200660 }
661#endif
662
663 /* main_loop() can return to retry autoboot, if so just run it again. */
664 for (;;) {
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000665 main_loop();
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200666 }
667
668 /* NOTREACHED - no way out of command loop except booting */
669}
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200670
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000671void hang(void)
wdenkc6097192002-11-03 00:24:07 +0000672{
Heiko Schocherceb1d6d2011-07-15 19:36:36 +0000673 puts("### ERROR ### Please RESET the board ###\n");
wdenkc6097192002-11-03 00:24:07 +0000674 for (;;);
675}