3 * Josef Baumgartner <josef.baumgartner@telex.de>
5 * (C) Copyright 2000-2002
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 #include <stdio_dev.h>
33 #include <asm/immap.h>
35 #if defined(CONFIG_CMD_IDE)
38 #if defined(CONFIG_CMD_SCSI)
41 #if defined(CONFIG_CMD_KGDB)
44 #ifdef CONFIG_STATUS_LED
45 #include <status_led.h>
49 #if defined(CONFIG_CMD_BEDBUG)
50 #include <cmd_bedbug.h>
52 #ifdef CONFIG_SYS_ALLOC_DPRAM
57 #if defined(CONFIG_HARD_I2C) || \
58 defined(CONFIG_SOFT_I2C)
66 #ifdef CONFIG_BITBANGMII
72 DECLARE_GLOBAL_DATA_PTR;
74 static char *failed = "*** failed ***\n";
76 #include <environment.h>
78 extern ulong __init_end;
79 extern ulong __bss_end__;
81 extern void timer_init(void);
83 #if defined(CONFIG_WATCHDOG)
84 # define INIT_FUNC_WATCHDOG_INIT watchdog_init,
85 # define WATCHDOG_DISABLE watchdog_disable
87 extern int watchdog_init(void);
88 extern int watchdog_disable(void);
90 # define INIT_FUNC_WATCHDOG_INIT /* undef */
91 # define WATCHDOG_DISABLE /* undef */
92 #endif /* CONFIG_WATCHDOG */
94 ulong monitor_flash_len;
96 /************************************************************************
98 ************************************************************************
102 * All attempts to come up with a "common" initialization sequence
103 * that works for all boards and architectures failed: some of the
104 * requirements are just _too_ different. To get rid of the resulting
105 * mess of board dependend #ifdef'ed code we now make the whole
106 * initialization sequence configurable to the user.
108 * The requirements for any new initalization function is simple: it
109 * receives a pointer to the "global data" structure as it's only
110 * argument, and returns an integer return code, where 0 means
111 * "continue" and != 0 means "fatal error, hang the system".
113 typedef int (init_fnc_t) (void);
115 /************************************************************************
117 ************************************************************************
118 * Some of this code should be moved into the core functions,
119 * but let's get it working (again) first...
122 static int init_baudrate (void)
124 char tmp[64]; /* long enough for environment variables */
125 int i = getenv_f("baudrate", tmp, sizeof (tmp));
127 gd->baudrate = (i > 0)
128 ? (int) simple_strtoul (tmp, NULL, 10)
133 /***********************************************************************/
135 static int init_func_ram (void)
137 int board_type = 0; /* use dummy arg */
140 if ((gd->ram_size = initdram (board_type)) > 0) {
141 print_size (gd->ram_size, "\n");
148 /***********************************************************************/
150 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
151 static int init_func_i2c (void)
154 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
160 #if defined(CONFIG_HARD_SPI)
161 static int init_func_spi (void)
170 /***********************************************************************/
172 /************************************************************************
173 * Initialization sequence *
174 ************************************************************************
177 init_fnc_t *init_sequence[] = {
186 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
189 #if defined(CONFIG_HARD_SPI)
193 #if defined(CONFIG_SYS_DRAM_TEST)
195 #endif /* CONFIG_SYS_DRAM_TEST */
196 INIT_FUNC_WATCHDOG_INIT
197 NULL, /* Terminate this list */
201 /************************************************************************
203 * This is the first part of the initialization sequence that is
204 * implemented in C, but still running from ROM.
206 * The main purpose is to provide a (serial) console interface as
207 * soon as possible (so we can see any error messages), and to
208 * initialize the RAM so that we can relocate the monitor code to
211 * Be aware of the restrictions: global data is read-only, BSS is not
212 * initialized, and stack space is limited to a few kB.
214 ************************************************************************
218 board_init_f (ulong bootflag)
221 ulong len, addr, addr_sp;
224 init_fnc_t **init_fnc_ptr;
228 char tmp[64]; /* long enough for environment variables */
231 /* Pointer is writable since we allocated a register for it */
232 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
233 /* compiler optimization barrier needed for GCC >= 3.4 */
234 __asm__ __volatile__("": : :"memory");
236 /* Clear initial global data */
237 memset ((void *) gd, 0, sizeof (gd_t));
239 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
240 if ((*init_fnc_ptr)() != 0) {
246 * Now that we have DRAM mapped and working, we can
247 * relocate the code and continue running from DRAM.
249 * Reserve memory at end of RAM for (top down in that order):
253 * - board info struct
255 len = (ulong)&__bss_end__ - CONFIG_SYS_MONITOR_BASE;
257 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
259 #ifdef CONFIG_LOGBUFFER
260 /* reserve kernel log buffer */
261 addr -= (LOGBUFF_RESERVE);
262 debug ("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr);
267 * reserve protected RAM
269 i = getenv_f("pram", tmp, sizeof (tmp));
270 reg = (i > 0) ? simple_strtoul (tmp, NULL, 10) : CONFIG_PRAM;
271 addr -= (reg << 10); /* size is in kB */
272 debug ("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
273 #endif /* CONFIG_PRAM */
275 /* round down to next 4 kB limit */
277 debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
280 #ifdef CONFIG_FB_ADDR
281 gd->fb_base = CONFIG_FB_ADDR;
283 /* reserve memory for LCD display (always full pages) */
284 addr = lcd_setmem (addr);
286 #endif /* CONFIG_FB_ADDR */
287 #endif /* CONFIG_LCD */
290 * reserve memory for U-Boot code, data & bss
291 * round down to next 4 kB limit
296 debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
299 * reserve memory for malloc() arena
301 addr_sp = addr - TOTAL_MALLOC_LEN;
302 debug ("Reserving %dk for malloc() at: %08lx\n",
303 TOTAL_MALLOC_LEN >> 10, addr_sp);
306 * (permanently) allocate a Board Info struct
307 * and a permanent copy of the "global" data
309 addr_sp -= sizeof (bd_t);
310 bd = (bd_t *) addr_sp;
312 debug ("Reserving %zu Bytes for Board Info at: %08lx\n",
313 sizeof (bd_t), addr_sp);
314 addr_sp -= sizeof (gd_t);
315 id = (gd_t *) addr_sp;
316 debug ("Reserving %zu Bytes for Global Data at: %08lx\n",
317 sizeof (gd_t), addr_sp);
319 /* Reserve memory for boot params. */
320 addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN;
321 bd->bi_boot_params = addr_sp;
322 debug ("Reserving %dk for boot parameters at: %08lx\n",
323 CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp);
326 * Finally, we set up a new (bigger) stack.
328 * Leave some safety gap for SP, force alignment on 16 byte boundary
329 * Clear initial stack frame
334 paddr = (ulong *)addr_sp;
337 addr_sp = (ulong)paddr;
339 debug ("Stack Pointer at: %08lx\n", addr_sp);
342 * Save local variables to board info struct
344 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM memory */
345 bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */
346 #ifdef CONFIG_SYS_INIT_RAM_ADDR
347 bd->bi_sramstart = CONFIG_SYS_INIT_RAM_ADDR; /* start of SRAM memory */
348 bd->bi_sramsize = CONFIG_SYS_INIT_RAM_SIZE; /* size of SRAM memory */
350 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
352 bd->bi_bootflags = bootflag; /* boot / reboot flag (for LynxOS) */
355 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
356 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
358 bd->bi_pcifreq = gd->pci_clk; /* PCI Freq in Hz */
360 #ifdef CONFIG_EXTRA_CLOCK
361 bd->bi_inpfreq = gd->inp_clk; /* input Freq in Hz */
362 bd->bi_vcofreq = gd->vco_clk; /* vco Freq in Hz */
363 bd->bi_flbfreq = gd->flb_clk; /* flexbus Freq in Hz */
365 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
367 #ifdef CONFIG_SYS_EXTBDINFO
368 strncpy (bd->bi_s_version, "1.2", sizeof (bd->bi_s_version));
369 strncpy (bd->bi_r_version, U_BOOT_VERSION, sizeof (bd->bi_r_version));
375 post_bootmode_init();
376 post_run (NULL, POST_ROM | post_bootmode_get(0));
381 memcpy (id, (void *)gd, sizeof (gd_t));
383 debug ("Start relocate of code from %08x to %08lx\n", CONFIG_SYS_MONITOR_BASE, addr);
384 relocate_code (addr_sp, id, addr);
386 /* NOTREACHED - jump_to_ram() does not return */
389 /************************************************************************
391 * This is the next part if the initialization sequence: we are now
392 * running from RAM and have a "normal" C environment, i. e. global
393 * data can be written, BSS has been cleared, the stack size in not
394 * that critical any more, etc.
396 ************************************************************************
398 void board_init_r (gd_t *id, ulong dest_addr)
402 extern void malloc_bin_reloc (void);
404 #ifndef CONFIG_ENV_IS_NOWHERE
405 extern char * env_name_spec;
407 #ifndef CONFIG_SYS_NO_FLASH
410 gd = id; /* initialize RAM version of global data */
413 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
415 #ifdef CONFIG_SERIAL_MULTI
419 debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
423 gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
425 monitor_flash_len = (ulong)&__init_end - dest_addr;
427 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
429 * We have to relocate the command table manually
431 fixup_cmdtable(&__u_boot_cmd_start,
432 (ulong)(&__u_boot_cmd_end - &__u_boot_cmd_start));
433 #endif /* defined(CONFIG_NEEDS_MANUAL_RELOC) */
435 /* there are some other pointer constants we must deal with */
436 #ifndef CONFIG_ENV_IS_NOWHERE
437 env_name_spec += gd->reloc_off;
442 #ifdef CONFIG_LOGBUFFER
443 logbuff_init_ptrs ();
446 post_output_backlog ();
452 /* instruction cache enabled in cpu_init_f() for faster relocation */
453 icache_enable (); /* it's time to enable the instruction cache */
457 * Setup trap handlers
459 trap_init (CONFIG_SYS_SDRAM_BASE);
461 /* The Malloc area is immediately below the monitor copy in DRAM */
462 mem_malloc_init (CONFIG_SYS_MONITOR_BASE + gd->reloc_off -
463 TOTAL_MALLOC_LEN, TOTAL_MALLOC_LEN);
466 #if !defined(CONFIG_SYS_NO_FLASH)
469 if ((flash_size = flash_init ()) > 0) {
470 # ifdef CONFIG_SYS_FLASH_CHECKSUM
471 print_size (flash_size, "");
473 * Compute and print flash CRC if flashchecksum is set to 'y'
475 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
477 s = getenv ("flashchecksum");
478 if (s && (*s == 'y')) {
479 printf (" CRC: %08X",
481 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
486 # else /* !CONFIG_SYS_FLASH_CHECKSUM */
487 print_size (flash_size, "\n");
488 # endif /* CONFIG_SYS_FLASH_CHECKSUM */
494 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE; /* update start of FLASH memory */
495 bd->bi_flashsize = flash_size; /* size of FLASH memory (final value) */
496 bd->bi_flashoffset = 0;
497 #else /* CONFIG_SYS_NO_FLASH */
498 bd->bi_flashsize = 0;
499 bd->bi_flashstart = 0;
500 bd->bi_flashoffset = 0;
501 #endif /* !CONFIG_SYS_NO_FLASH */
505 /* initialize higher level parts of CPU like time base and timers */
511 # if !defined(CONFIG_ENV_IS_IN_EEPROM)
517 /* relocate environment function pointers etc. */
521 * Fill in missing fields of bd_info.
522 * We do this here, where we have "normal" access to the
523 * environment; we used to do this still running from ROM,
524 * where had to use getenv_f(), which can be pretty slow when
525 * the environment is in EEPROM.
527 bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
531 #if defined(CONFIG_PCI)
533 * Do pci configuration
538 /** leave this here (after malloc(), environment and PCI are working) **/
539 /* Initialize stdio devices */
542 /* Initialize the jump table for applications */
545 /* Initialize the console (after the relocation and devices init) */
548 #if defined(CONFIG_MISC_INIT_R)
549 /* miscellaneous platform dependent initialisations */
553 #if defined(CONFIG_CMD_KGDB)
559 debug ("U-Boot relocated to %08lx\n", dest_addr);
566 /* Must happen after interrupts are initialized since
567 * an irq handler gets installed
571 #ifdef CONFIG_STATUS_LED
572 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
577 /* Insert function pointers now that we have relocated the code */
579 /* Initialize from environment */
580 if ((s = getenv ("loadaddr")) != NULL) {
581 load_addr = simple_strtoul (s, NULL, 16);
583 #if defined(CONFIG_CMD_NET)
584 if ((s = getenv ("bootfile")) != NULL) {
585 copy_filename (BootFile, s, sizeof (BootFile));
591 #if defined(CONFIG_CMD_DOC)
597 #if defined(CONFIG_CMD_NAND)
600 nand_init(); /* go init the NAND */
603 #ifdef CONFIG_BITBANGMII
606 #if defined(CONFIG_CMD_NET)
608 #if defined(FEC_ENET)
611 #if defined(CONFIG_NET_MULTI)
618 post_run (NULL, POST_RAM | post_bootmode_get(0));
621 #if defined(CONFIG_CMD_PCMCIA) \
622 && !defined(CONFIG_CMD_IDE)
628 #if defined(CONFIG_CMD_IDE)
634 #ifdef CONFIG_LAST_STAGE_INIT
637 * Some parts can be only initialized if all others (like
638 * Interrupts) are up and running (i.e. the PC-style ISA
644 #if defined(CONFIG_CMD_BEDBUG)
649 #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
651 * Export available size of memory for Linux,
652 * taking into account the protected RAM at top of memory
660 if ((s = getenv ("pram")) != NULL) {
661 pram = simple_strtoul (s, NULL, 10);
668 #ifdef CONFIG_LOGBUFFER
669 /* Also take the logbuffer into account (pram is in kB) */
670 pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024;
672 sprintf (memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
673 setenv ("mem", memsz);
677 #ifdef CONFIG_MODEM_SUPPORT
679 extern int do_mdm_init;
680 do_mdm_init = gd->do_mdm_init;
684 #ifdef CONFIG_WATCHDOG
685 /* disable watchdog if environment is set */
686 if ((s = getenv ("watchdog")) != NULL) {
687 if (strncmp (s, "off", 3) == 0) {
691 #endif /* CONFIG_WATCHDOG*/
694 /* Initialization complete - start the monitor */
696 /* main_loop() can return to retry autoboot, if so just run it again. */
702 /* NOTREACHED - no way out of command loop except booting */
708 puts ("### ERROR ### Please RESET the board ###\n");