2 * (C) Copyright 2002-2006
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
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 #ifdef CONFIG_DRIVER_SMC91111
61 #include "../drivers/net/smc91111.h"
63 #ifdef CONFIG_DRIVER_LAN91C96
64 #include "../drivers/net/lan91c96.h"
67 DECLARE_GLOBAL_DATA_PTR;
69 ulong monitor_flash_len;
71 #ifdef CONFIG_HAS_DATAFLASH
72 extern int AT91F_DataflashInit(void);
73 extern void dataflash_print_info(void);
76 #if defined(CONFIG_HARD_I2C) || \
77 defined(CONFIG_SOFT_I2C)
81 /************************************************************************
82 * Coloured LED functionality
83 ************************************************************************
84 * May be supplied by boards if desired
86 inline void __coloured_LED_init(void) {}
87 void coloured_LED_init(void)
88 __attribute__((weak, alias("__coloured_LED_init")));
89 inline void __red_led_on(void) {}
90 void red_led_on(void) __attribute__((weak, alias("__red_led_on")));
91 inline void __red_led_off(void) {}
92 void red_led_off(void) __attribute__((weak, alias("__red_led_off")));
93 inline void __green_led_on(void) {}
94 void green_led_on(void) __attribute__((weak, alias("__green_led_on")));
95 inline void __green_led_off(void) {}
96 void green_led_off(void) __attribute__((weak, alias("__green_led_off")));
97 inline void __yellow_led_on(void) {}
98 void yellow_led_on(void) __attribute__((weak, alias("__yellow_led_on")));
99 inline void __yellow_led_off(void) {}
100 void yellow_led_off(void) __attribute__((weak, alias("__yellow_led_off")));
101 inline void __blue_led_on(void) {}
102 void blue_led_on(void) __attribute__((weak, alias("__blue_led_on")));
103 inline void __blue_led_off(void) {}
104 void blue_led_off(void) __attribute__((weak, alias("__blue_led_off")));
107 ************************************************************************
109 ************************************************************************
110 * Some of this code should be moved into the core functions,
111 * or dropped completely,
112 * but let's get it working (again) first...
115 #if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
116 #define CONFIG_BAUDRATE 115200
119 static int init_baudrate(void)
121 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
125 static int display_banner(void)
127 printf("\n\n%s\n\n", version_string);
128 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
130 _bss_start_ofs + _TEXT_BASE, _bss_end_ofs + _TEXT_BASE);
131 #ifdef CONFIG_MODEM_SUPPORT
132 debug("Modem Support enabled\n");
134 #ifdef CONFIG_USE_IRQ
135 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
136 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
143 * WARNING: this code looks "cleaner" than the PowerPC version, but
144 * has the disadvantage that you either get nothing, or everything.
145 * On PowerPC, you might see "DRAM: " before the system hangs - which
146 * gives a simple yet clear indication which part of the
147 * initialization if failing.
149 static int display_dram_config(void)
154 puts("RAM Configuration:\n");
156 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
157 printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
158 print_size(gd->bd->bi_dram[i].size, "\n");
163 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
164 size += gd->bd->bi_dram[i].size;
167 print_size(size, "\n");
173 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
174 static int init_func_i2c(void)
177 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
183 #if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
185 static int arm_pci_init(void)
190 #endif /* CONFIG_CMD_PCI || CONFIG_PCI */
193 * Breathe some life into the board...
195 * Initialize a serial port as console, and carry out some hardware
198 * The first part of initialization is running from Flash memory;
199 * its main purpose is to initialize the RAM so that we
200 * can relocate the monitor code to RAM.
204 * All attempts to come up with a "common" initialization sequence
205 * that works for all boards and architectures failed: some of the
206 * requirements are just _too_ different. To get rid of the resulting
207 * mess of board dependent #ifdef'ed code we now make the whole
208 * initialization sequence configurable to the user.
210 * The requirements for any new initalization function is simple: it
211 * receives a pointer to the "global data" structure as it's only
212 * argument, and returns an integer return code, where 0 means
213 * "continue" and != 0 means "fatal error, hang the system".
215 typedef int (init_fnc_t) (void);
217 int print_cpuinfo(void);
219 void __dram_init_banksize(void)
221 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
222 gd->bd->bi_dram[0].size = gd->ram_size;
224 void dram_init_banksize(void)
225 __attribute__((weak, alias("__dram_init_banksize")));
227 int __arch_cpu_init(void)
231 int arch_cpu_init(void)
232 __attribute__((weak, alias("__arch_cpu_init")));
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;
278 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
280 /* Pointer is writable since we allocated a register for it */
281 gd = (gd_t *) ((CONFIG_SYS_INIT_SP_ADDR) & ~0x07);
282 /* compiler optimization barrier needed for GCC >= 3.4 */
283 __asm__ __volatile__("": : :"memory");
285 memset((void *)gd, 0, sizeof(gd_t));
287 gd->mon_len = _bss_end_ofs;
288 #ifdef CONFIG_OF_EMBED
289 /* Get a pointer to the FDT */
290 gd->fdt_blob = _binary_dt_dtb_start;
291 #elif defined CONFIG_OF_SEPARATE
292 /* FDT is at end of image */
293 gd->fdt_blob = (void *)(_end_ofs + _TEXT_BASE);
295 /* Allow the early environment to override the fdt address */
296 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
297 (uintptr_t)gd->fdt_blob);
299 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
300 if ((*init_fnc_ptr)() != 0) {
305 #ifdef CONFIG_OF_CONTROL
306 /* For now, put this check after the console is ready */
307 if (fdtdec_prepare_fdt()) {
308 panic("** CONFIG_OF_CONTROL defined but no FDT - please see "
309 "doc/README.fdt-control");
313 debug("monitor len: %08lX\n", gd->mon_len);
315 * Ram is setup, size stored in gd !!
317 debug("ramsize: %08lX\n", gd->ram_size);
318 #if defined(CONFIG_SYS_MEM_TOP_HIDE)
320 * Subtract specified amount of memory to hide so that it won't
321 * get "touched" at all by U-Boot. By fixing up gd->ram_size
322 * the Linux kernel should now get passed the now "corrected"
323 * memory size and won't touch it either. This should work
324 * for arch/ppc and arch/powerpc. Only Linux board ports in
325 * arch/powerpc with bootwrapper support, that recalculate the
326 * memory size from the SDRAM controller setup will have to
329 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
332 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
334 #ifdef CONFIG_LOGBUFFER
335 #ifndef CONFIG_ALT_LB_ADDR
336 /* reserve kernel log buffer */
337 addr -= (LOGBUFF_RESERVE);
338 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
345 * reserve protected RAM
347 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
348 addr -= (reg << 10); /* size is in kB */
349 debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
350 #endif /* CONFIG_PRAM */
352 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
353 /* reserve TLB table */
356 /* round down to next 64 kB limit */
357 addr &= ~(0x10000 - 1);
360 debug("TLB table at: %08lx\n", addr);
363 /* round down to next 4 kB limit */
365 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
368 #ifdef CONFIG_FB_ADDR
369 gd->fb_base = CONFIG_FB_ADDR;
371 /* reserve memory for LCD display (always full pages) */
372 addr = lcd_setmem(addr);
374 #endif /* CONFIG_FB_ADDR */
375 #endif /* CONFIG_LCD */
378 * reserve memory for U-Boot code, data & bss
379 * round down to next 4 kB limit
384 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
386 #ifndef CONFIG_SPL_BUILD
388 * reserve memory for malloc() arena
390 addr_sp = addr - TOTAL_MALLOC_LEN;
391 debug("Reserving %dk for malloc() at: %08lx\n",
392 TOTAL_MALLOC_LEN >> 10, addr_sp);
394 * (permanently) allocate a Board Info struct
395 * and a permanent copy of the "global" data
397 addr_sp -= sizeof (bd_t);
398 bd = (bd_t *) addr_sp;
400 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
401 sizeof (bd_t), addr_sp);
403 #ifdef CONFIG_MACH_TYPE
404 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
407 addr_sp -= sizeof (gd_t);
408 id = (gd_t *) addr_sp;
409 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
410 sizeof (gd_t), addr_sp);
412 /* setup stackpointer for exeptions */
413 gd->irq_sp = addr_sp;
414 #ifdef CONFIG_USE_IRQ
415 addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
416 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
417 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
419 /* leave 3 words for abort-stack */
422 /* 8-byte alignment for ABI compliance */
425 addr_sp += 128; /* leave 32 words for abort-stack */
426 gd->irq_sp = addr_sp;
429 debug("New Stack Pointer is: %08lx\n", addr_sp);
432 post_bootmode_init();
433 post_run(NULL, POST_ROM | post_bootmode_get(0));
436 gd->bd->bi_baudrate = gd->baudrate;
437 /* Ram ist board specific, so move it to board code ... */
438 dram_init_banksize();
439 display_dram_config(); /* and display it */
441 gd->relocaddr = addr;
442 gd->start_addr_sp = addr_sp;
443 gd->reloc_off = addr - _TEXT_BASE;
444 debug("relocation Offset is: %08lx\n", gd->reloc_off);
445 memcpy(id, (void *)gd, sizeof(gd_t));
447 relocate_code(addr_sp, id, addr);
449 /* NOTREACHED - relocate_code() does not return */
452 #if !defined(CONFIG_SYS_NO_FLASH)
453 static char *failed = "*** failed ***\n";
457 ************************************************************************
459 * This is the next part if the initialization sequence: we are now
460 * running from RAM and have a "normal" C environment, i. e. global
461 * data can be written, BSS has been cleared, the stack size in not
462 * that critical any more, etc.
464 ************************************************************************
467 void board_init_r(gd_t *id, ulong dest_addr)
470 #if !defined(CONFIG_SYS_NO_FLASH)
476 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
477 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
479 monitor_flash_len = _end_ofs;
484 debug("monitor flash len: %08lX\n", monitor_flash_len);
485 board_init(); /* Setup chipselects */
487 * TODO: printing of the clock inforamtion of the board is now
488 * implemented as part of bdinfo command. Currently only support for
489 * davinci SOC's is added. Remove this check once all the board
493 set_cpu_clk_info(); /* Setup clock information */
495 #ifdef CONFIG_SERIAL_MULTI
499 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
501 #ifdef CONFIG_LOGBUFFER
505 post_output_backlog();
508 /* The Malloc area is immediately below the monitor copy in DRAM */
509 malloc_start = dest_addr - TOTAL_MALLOC_LEN;
510 mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
512 #ifdef CONFIG_ARCH_EARLY_INIT_R
516 #if !defined(CONFIG_SYS_NO_FLASH)
519 flash_size = flash_init();
520 if (flash_size > 0) {
521 # ifdef CONFIG_SYS_FLASH_CHECKSUM
522 char *s = getenv("flashchecksum");
524 print_size(flash_size, "");
526 * Compute and print flash CRC if flashchecksum is set to 'y'
528 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
530 if (s && (*s == 'y')) {
531 printf(" CRC: %08X", crc32(0,
532 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
536 # else /* !CONFIG_SYS_FLASH_CHECKSUM */
537 print_size(flash_size, "\n");
538 # endif /* CONFIG_SYS_FLASH_CHECKSUM */
545 #if defined(CONFIG_CMD_NAND)
547 nand_init(); /* go init the NAND */
550 #if defined(CONFIG_CMD_ONENAND)
554 #ifdef CONFIG_GENERIC_MMC
556 mmc_initialize(gd->bd);
559 #ifdef CONFIG_HAS_DATAFLASH
560 AT91F_DataflashInit();
561 dataflash_print_info();
564 /* initialize environment */
567 #if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
571 stdio_init(); /* get the devices list going. */
575 #if defined(CONFIG_API)
580 console_init_r(); /* fully init console as a device */
582 #if defined(CONFIG_ARCH_MISC_INIT)
583 /* miscellaneous arch dependent initialisations */
586 #if defined(CONFIG_MISC_INIT_R)
587 /* miscellaneous platform dependent initialisations */
591 /* set up exceptions */
593 /* enable exceptions */
596 /* Perform network card initialisation if necessary */
597 #if defined(CONFIG_DRIVER_SMC91111) || defined (CONFIG_DRIVER_LAN91C96)
598 /* XXX: this needs to be moved to board init */
599 if (getenv("ethaddr")) {
601 eth_getenv_enetaddr("ethaddr", enetaddr);
602 smc_set_mac_addr(enetaddr);
604 #endif /* CONFIG_DRIVER_SMC91111 || CONFIG_DRIVER_LAN91C96 */
606 /* Initialize from environment */
607 load_addr = getenv_ulong("loadaddr", 16, load_addr);
609 #ifdef CONFIG_BOARD_LATE_INIT
613 #ifdef CONFIG_BITBANGMII
616 #if defined(CONFIG_CMD_NET)
618 eth_initialize(gd->bd);
619 #if defined(CONFIG_RESET_PHY_R)
620 debug("Reset Ethernet PHY\n");
626 post_run(NULL, POST_RAM | post_bootmode_get(0));
629 #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
631 * Export available size of memory for Linux,
632 * taking into account the protected RAM at top of memory
639 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
641 #ifdef CONFIG_LOGBUFFER
642 #ifndef CONFIG_ALT_LB_ADDR
643 /* Also take the logbuffer into account (pram is in kB) */
644 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
647 sprintf((char *)memsz, "%ldk", (gd->ram_size / 1024) - pram);
648 setenv("mem", (char *)memsz);
652 /* main_loop() can return to retry autoboot, if so just run it again. */
657 /* NOTREACHED - no way out of command loop except booting */
662 puts("### ERROR ### Please RESET the board ###\n");