diff options
Diffstat (limited to 'arch/powerpc/cpu/mpc86xx/start.S')
| -rw-r--r-- | arch/powerpc/cpu/mpc86xx/start.S | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/arch/powerpc/cpu/mpc86xx/start.S b/arch/powerpc/cpu/mpc86xx/start.S index 3817f19d5..612711569 100644 --- a/arch/powerpc/cpu/mpc86xx/start.S +++ b/arch/powerpc/cpu/mpc86xx/start.S @@ -30,6 +30,7 @@   *  board_init lies at a quite high address and when the cpu has   *  jumped there, everything is ok.   */ +#include <asm-offsets.h>  #include <config.h>  #include <mpc86xx.h>  #include <timestamp.h> @@ -870,7 +871,7 @@ lock_ram_in_cache:  	 */  	lis	r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@h  	ori	r3, r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@l -	li	r4, ((CONFIG_SYS_INIT_RAM_END & ~31) + \ +	li	r4, ((CONFIG_SYS_INIT_RAM_SIZE & ~31) + \  		     (CONFIG_SYS_INIT_RAM_ADDR & 31) + 31) / 32  	mtctr	r4  1: @@ -905,7 +906,7 @@ unlock_ram_in_cache:  	/* invalidate the INIT_RAM section */  	lis	r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@h  	ori	r3, r3, (CONFIG_SYS_INIT_RAM_ADDR & ~31)@l -	li	r4, ((CONFIG_SYS_INIT_RAM_END & ~31) + \ +	li	r4, ((CONFIG_SYS_INIT_RAM_SIZE & ~31) + \  		     (CONFIG_SYS_INIT_RAM_ADDR & 31) + 31) / 32  	mtctr	r4  1:	icbi	r0, r3 |