diff options
| author | Markus Klotzbuecher <mk@denx.de> | 2008-10-21 09:18:01 +0200 | 
|---|---|---|
| committer | Markus Klotzbuecher <mk@denx.de> | 2008-10-21 09:18:01 +0200 | 
| commit | 50bd0057ba8fceeb48533f8b1a652ccd0e170838 (patch) | |
| tree | ea1a183343573c2a48248923b96d316c0956727c /cpu/mips/start.S | |
| parent | 9dbc366744960013965fce8851035b6141f3b3ae (diff) | |
| parent | f82642e33899766892499b163e60560fbbf87773 (diff) | |
| download | olio-uboot-2014.01-50bd0057ba8fceeb48533f8b1a652ccd0e170838.tar.xz olio-uboot-2014.01-50bd0057ba8fceeb48533f8b1a652ccd0e170838.zip | |
Merge git://git.denx.de/u-boot into x1
Conflicts:
	drivers/usb/usb_ohci.c
Diffstat (limited to 'cpu/mips/start.S')
| -rw-r--r-- | cpu/mips/start.S | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/cpu/mips/start.S b/cpu/mips/start.S index 09e4aab25..6a22302a0 100644 --- a/cpu/mips/start.S +++ b/cpu/mips/start.S @@ -274,14 +274,14 @@ reset:  	/* Set up temporary stack.  	 */ -#ifdef CFG_INIT_RAM_LOCK_MIPS -	li	a0, CFG_INIT_SP_OFFSET +#ifdef CONFIG_SYS_INIT_RAM_LOCK_MIPS +	li	a0, CONFIG_SYS_INIT_SP_OFFSET  	la	t9, mips_cache_lock  	jalr	t9  	nop  #endif -	li	t0, CFG_SDRAM_BASE + CFG_INIT_SP_OFFSET +	li	t0, CONFIG_SYS_SDRAM_BASE + CONFIG_SYS_INIT_SP_OFFSET  	la	sp, 0(t0)  	la	t9, board_init_f @@ -303,7 +303,7 @@ reset:  relocate_code:  	move	sp, a0		/* Set new stack pointer	*/ -	li	t0, CFG_MONITOR_BASE +	li	t0, CONFIG_SYS_MONITOR_BASE  	la	t3, in_ram  	lw	t2, -12(t3)	/* t2 <-- uboot_end_data	*/  	move	t1, a2 @@ -311,10 +311,10 @@ relocate_code:  	/*  	 * Fix $gp:  	 * -	 * New $gp = (Old $gp - CFG_MONITOR_BASE) + Destination Address +	 * New $gp = (Old $gp - CONFIG_SYS_MONITOR_BASE) + Destination Address  	 */  	move	t6, gp -	sub	gp, CFG_MONITOR_BASE +	sub	gp, CONFIG_SYS_MONITOR_BASE  	add	gp, a2		/* gp now adjusted		*/  	sub	t6, gp, t6	/* t6 <-- relocation offset	*/ |