2 * (C) Copyright 2002-2006
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
9 * See file CREDITS for list of people who contributed to this
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.
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.
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,
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.
33 * Define DEBUG here if you want additional info as shown below
34 * printed upon startup:
36 * U-Boot code: 00F00000 -> 00F3C774 BSS: -> 00FC3274
44 #include <stdio_dev.h>
49 #include <onenand_uboot.h>
56 #ifdef CONFIG_BITBANGMII
60 DECLARE_GLOBAL_DATA_PTR;
62 ulong monitor_flash_len;
64 #ifdef CONFIG_HAS_DATAFLASH
65 extern int AT91F_DataflashInit(void);
66 extern void dataflash_print_info(void);
69 #if defined(CONFIG_HARD_I2C) || \
70 defined(CONFIG_SOFT_I2C)
74 /************************************************************************
75 * Coloured LED functionality
76 ************************************************************************
77 * May be supplied by boards if desired
79 inline void __coloured_LED_init(void) {}
80 void coloured_LED_init(void)
81 __attribute__((weak, alias("__coloured_LED_init")));
82 inline void __red_led_on(void) {}
83 void red_led_on(void) __attribute__((weak, alias("__red_led_on")));
84 inline void __red_led_off(void) {}
85 void red_led_off(void) __attribute__((weak, alias("__red_led_off")));
86 inline void __green_led_on(void) {}
87 void green_led_on(void) __attribute__((weak, alias("__green_led_on")));
88 inline void __green_led_off(void) {}
89 void green_led_off(void) __attribute__((weak, alias("__green_led_off")));
90 inline void __yellow_led_on(void) {}
91 void yellow_led_on(void) __attribute__((weak, alias("__yellow_led_on")));
92 inline void __yellow_led_off(void) {}
93 void yellow_led_off(void) __attribute__((weak, alias("__yellow_led_off")));
94 inline void __blue_led_on(void) {}
95 void blue_led_on(void) __attribute__((weak, alias("__blue_led_on")));
96 inline void __blue_led_off(void) {}
97 void blue_led_off(void) __attribute__((weak, alias("__blue_led_off")));
100 ************************************************************************
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...
108 #if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
109 #define CONFIG_BAUDRATE 115200
112 static int init_baudrate(void)
114 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
118 static int display_banner(void)
120 printf("\n\n%s\n\n", version_string);
121 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
123 _bss_start_ofs + _TEXT_BASE, _bss_end_ofs + _TEXT_BASE);
124 #ifdef CONFIG_MODEM_SUPPORT
125 debug("Modem Support enabled\n");
127 #ifdef CONFIG_USE_IRQ
128 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
129 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
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.
142 static int display_dram_config(void)
147 puts("RAM Configuration:\n");
149 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");
156 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
157 size += gd->bd->bi_dram[i].size;
160 print_size(size, "\n");
166 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
167 static int init_func_i2c(void)
170 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
176 #if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
178 static int arm_pci_init(void)
183 #endif /* CONFIG_CMD_PCI || CONFIG_PCI */
186 * Breathe some life into the board...
188 * Initialize a serial port as console, and carry out some hardware
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.
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
200 * mess of board dependent #ifdef'ed code we now make the whole
201 * initialization sequence configurable to the user.
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".
208 typedef int (init_fnc_t) (void);
210 int print_cpuinfo(void);
212 void __dram_init_banksize(void)
214 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
215 gd->bd->bi_dram[0].size = gd->ram_size;
217 void dram_init_banksize(void)
218 __attribute__((weak, alias("__dram_init_banksize")));
220 int __arch_cpu_init(void)
224 int arch_cpu_init(void)
225 __attribute__((weak, alias("__arch_cpu_init")));
227 int __power_init_board(void)
231 int power_init_board(void)
232 __attribute__((weak, alias("__power_init_board")));
234 init_fnc_t *init_sequence[] = {
235 arch_cpu_init, /* basic arch cpu dependent setup */
237 #if defined(CONFIG_BOARD_EARLY_INIT_F)
240 #ifdef CONFIG_OF_CONTROL
243 timer_init, /* initialize timer */
244 #ifdef CONFIG_BOARD_POSTCLK_INIT
247 #ifdef CONFIG_FSL_ESDHC
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) */
258 #if defined(CONFIG_DISPLAY_BOARDINFO)
259 checkboard, /* display board info */
261 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
264 dram_init, /* configure available RAM banks */
268 void board_init_f(ulong bootflag)
271 init_fnc_t **init_fnc_ptr;
277 void *new_fdt = NULL;
280 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
282 memset((void *)gd, 0, sizeof(gd_t));
284 gd->mon_len = _bss_end_ofs;
285 #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);
292 /* Allow the early environment to override the fdt address */
293 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
294 (uintptr_t)gd->fdt_blob);
296 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
297 if ((*init_fnc_ptr)() != 0) {
302 #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");
310 debug("monitor len: %08lX\n", gd->mon_len);
312 * Ram is setup, size stored in gd !!
314 debug("ramsize: %08lX\n", gd->ram_size);
315 #if defined(CONFIG_SYS_MEM_TOP_HIDE)
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
326 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
329 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
331 #ifdef CONFIG_LOGBUFFER
332 #ifndef CONFIG_ALT_LB_ADDR
333 /* reserve kernel log buffer */
334 addr -= (LOGBUFF_RESERVE);
335 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
342 * reserve protected RAM
344 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
345 addr -= (reg << 10); /* size is in kB */
346 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
347 #endif /* CONFIG_PRAM */
349 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
350 /* reserve TLB table */
353 /* round down to next 64 kB limit */
354 addr &= ~(0x10000 - 1);
357 debug("TLB table at: %08lx\n", addr);
360 /* round down to next 4 kB limit */
362 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
365 #ifdef CONFIG_FB_ADDR
366 gd->fb_base = CONFIG_FB_ADDR;
368 /* reserve memory for LCD display (always full pages) */
369 addr = lcd_setmem(addr);
371 #endif /* CONFIG_FB_ADDR */
372 #endif /* CONFIG_LCD */
375 * reserve memory for U-Boot code, data & bss
376 * round down to next 4 kB limit
381 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
383 #ifndef CONFIG_SPL_BUILD
385 * reserve memory for malloc() arena
387 addr_sp = addr - TOTAL_MALLOC_LEN;
388 debug("Reserving %dk for malloc() at: %08lx\n",
389 TOTAL_MALLOC_LEN >> 10, addr_sp);
391 * (permanently) allocate a Board Info struct
392 * and a permanent copy of the "global" data
394 addr_sp -= sizeof (bd_t);
395 bd = (bd_t *) addr_sp;
397 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
398 sizeof (bd_t), addr_sp);
400 #ifdef CONFIG_MACH_TYPE
401 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
404 addr_sp -= sizeof (gd_t);
405 id = (gd_t *) addr_sp;
406 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
407 sizeof (gd_t), addr_sp);
409 #if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL)
411 * If the device tree is sitting immediate above our image then we
412 * must relocate it. If it is embedded in the data section, then it
413 * will be relocated with other data.
416 fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
419 new_fdt = (void *)addr_sp;
420 debug("Reserving %zu Bytes for FDT at: %08lx\n",
425 /* setup stackpointer for exeptions */
426 gd->irq_sp = addr_sp;
427 #ifdef CONFIG_USE_IRQ
428 addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
429 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
430 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
432 /* leave 3 words for abort-stack */
435 /* 8-byte alignment for ABI compliance */
438 addr_sp += 128; /* leave 32 words for abort-stack */
439 gd->irq_sp = addr_sp;
442 debug("New Stack Pointer is: %08lx\n", addr_sp);
445 post_bootmode_init();
446 post_run(NULL, POST_ROM | post_bootmode_get(0));
449 gd->bd->bi_baudrate = gd->baudrate;
450 /* Ram ist board specific, so move it to board code ... */
451 dram_init_banksize();
452 display_dram_config(); /* and display it */
454 gd->relocaddr = addr;
455 gd->start_addr_sp = addr_sp;
456 gd->reloc_off = addr - _TEXT_BASE;
457 debug("relocation Offset is: %08lx\n", gd->reloc_off);
459 memcpy(new_fdt, gd->fdt_blob, fdt_size);
460 gd->fdt_blob = new_fdt;
462 memcpy(id, (void *)gd, sizeof(gd_t));
465 #if !defined(CONFIG_SYS_NO_FLASH)
466 static char *failed = "*** failed ***\n";
470 ************************************************************************
472 * This is the next part if the initialization sequence: we are now
473 * running from RAM and have a "normal" C environment, i. e. global
474 * data can be written, BSS has been cleared, the stack size in not
475 * that critical any more, etc.
477 ************************************************************************
480 void board_init_r(gd_t *id, ulong dest_addr)
483 #if !defined(CONFIG_SYS_NO_FLASH)
487 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
488 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
490 monitor_flash_len = _end_ofs;
495 debug("monitor flash len: %08lX\n", monitor_flash_len);
496 board_init(); /* Setup chipselects */
498 * TODO: printing of the clock inforamtion of the board is now
499 * implemented as part of bdinfo command. Currently only support for
500 * davinci SOC's is added. Remove this check once all the board
504 set_cpu_clk_info(); /* Setup clock information */
508 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
510 #ifdef CONFIG_LOGBUFFER
514 post_output_backlog();
517 /* The Malloc area is immediately below the monitor copy in DRAM */
518 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
519 mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
521 #ifdef CONFIG_ARCH_EARLY_INIT_R
526 #if !defined(CONFIG_SYS_NO_FLASH)
529 flash_size = flash_init();
530 if (flash_size > 0) {
531 # ifdef CONFIG_SYS_FLASH_CHECKSUM
532 print_size(flash_size, "");
534 * Compute and print flash CRC if flashchecksum is set to 'y'
536 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
538 if (getenv_yesno("flashchecksum") == 1) {
539 printf(" CRC: %08X", crc32(0,
540 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
544 # else /* !CONFIG_SYS_FLASH_CHECKSUM */
545 print_size(flash_size, "\n");
546 # endif /* CONFIG_SYS_FLASH_CHECKSUM */
553 #if defined(CONFIG_CMD_NAND)
555 nand_init(); /* go init the NAND */
558 #if defined(CONFIG_CMD_ONENAND)
562 #ifdef CONFIG_GENERIC_MMC
564 mmc_initialize(gd->bd);
567 #ifdef CONFIG_HAS_DATAFLASH
568 AT91F_DataflashInit();
569 dataflash_print_info();
572 /* initialize environment */
575 #if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
579 stdio_init(); /* get the devices list going. */
583 #if defined(CONFIG_API)
588 console_init_r(); /* fully init console as a device */
590 #if defined(CONFIG_ARCH_MISC_INIT)
591 /* miscellaneous arch dependent initialisations */
594 #if defined(CONFIG_MISC_INIT_R)
595 /* miscellaneous platform dependent initialisations */
599 /* set up exceptions */
601 /* enable exceptions */
604 /* Initialize from environment */
605 load_addr = getenv_ulong("loadaddr", 16, load_addr);
607 #ifdef CONFIG_BOARD_LATE_INIT
611 #ifdef CONFIG_BITBANGMII
614 #if defined(CONFIG_CMD_NET)
616 eth_initialize(gd->bd);
617 #if defined(CONFIG_RESET_PHY_R)
618 debug("Reset Ethernet PHY\n");
624 post_run(NULL, POST_RAM | post_bootmode_get(0));
627 #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
629 * Export available size of memory for Linux,
630 * taking into account the protected RAM at top of memory
637 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
639 #ifdef CONFIG_LOGBUFFER
640 #ifndef CONFIG_ALT_LB_ADDR
641 /* Also take the logbuffer into account (pram is in kB) */
642 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
645 sprintf((char *)memsz, "%ldk", (gd->ram_size / 1024) - pram);
646 setenv("mem", (char *)memsz);
650 /* main_loop() can return to retry autoboot, if so just run it again. */
655 /* NOTREACHED - no way out of command loop except booting */
660 puts("### ERROR ### Please RESET the board ###\n");