diff options
author | Stefan Roese <sr@denx.de> | 2005-08-04 17:09:16 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2005-08-04 17:09:16 +0200 |
commit | 17f50f22bc3f2d17258523f2ef3074e6ce1f7ffa (patch) | |
tree | 2c5d47cd55f487f0504458908d587e9bcd6963a6 /cpu/ppc4xx/start.S | |
parent | 3e0bc4473add883fd68a49b7dab971191b943415 (diff) | |
download | u-boot-imx-17f50f22bc3f2d17258523f2ef3074e6ce1f7ffa.zip u-boot-imx-17f50f22bc3f2d17258523f2ef3074e6ce1f7ffa.tar.gz u-boot-imx-17f50f22bc3f2d17258523f2ef3074e6ce1f7ffa.tar.bz2 |
Add support for AMCC Bamboo PPC440EP eval board
Patch by Stefan Roese, 04 Aug 2005
Diffstat (limited to 'cpu/ppc4xx/start.S')
-rw-r--r-- | cpu/ppc4xx/start.S | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cpu/ppc4xx/start.S b/cpu/ppc4xx/start.S index 3a8ff2b..788c71c 100644 --- a/cpu/ppc4xx/start.S +++ b/cpu/ppc4xx/start.S @@ -379,11 +379,13 @@ __440gx_msr_continue: li r0,0 #if defined(CONFIG_440_EP) || defined(CONFIG_440_GR) /* Clear Dcache to use as RAM */ - lis r3,CFG_INIT_RAM_ADDR@h - li r4,CFG_INIT_RAM_END@l + addis r3,r0,CFG_INIT_RAM_ADDR@h + ori r3,r3,CFG_INIT_RAM_ADDR@l + addis r4,r0,CFG_INIT_RAM_END@h + ori r4,r4,CFG_INIT_RAM_END@l rlwinm. r5,r4,0,27,31 rlwinm r5,r4,27,5,31 - beq ..d_ran + beq ..d_ran addi r5,r5,0x0001 ..d_ran: mtctr r5 |