diff options
Diffstat (limited to 'lib_ppc')
| -rw-r--r-- | lib_ppc/board.c | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 2c29f467e..039053aab 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -270,7 +270,8 @@ init_fnc_t *init_sequence[] = {  #if !defined(CONFIG_8xx_CPUCLK_DEFAULT)  	get_clocks,		/* get CPU and bus clocks (etc.) */ -#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) +#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \ +    && !defined(CONFIG_TQM885D)  	adjust_sdram_tbs_8xx,  #endif  	init_timebase, @@ -610,6 +611,11 @@ void board_init_r (gd_t *id, ulong dest_addr)  	bd = gd->bd;  	gd->flags |= GD_FLG_RELOC;	/* tell others: relocation done */ +	gd->reloc_off = dest_addr - CFG_MONITOR_BASE; + +#ifdef CONFIG_SERIAL_MULTI +	serial_initialize(); +#endif  	debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr); @@ -619,14 +625,8 @@ void board_init_r (gd_t *id, ulong dest_addr)  	board_early_init_r ();  #endif -	gd->reloc_off = dest_addr - CFG_MONITOR_BASE; -  	monitor_flash_len = (ulong)&__init_end - dest_addr; -#ifdef CONFIG_SERIAL_MULTI -	serial_initialize(); -#endif -  	/*  	 * We have to relocate the command table manually  	 */  |