diff options
author | Wolfgang Denk <wd@pollux.(none)> | 2005-09-25 01:48:28 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.(none)> | 2005-09-25 01:48:28 +0200 |
commit | 74f4304ee717d0f4b3a27e7fd4a64944749b8783 (patch) | |
tree | 806aadd6a2be863b9a0e4e9649858468b4641c96 /cpu/arm926ejs/start.S | |
parent | e2146b6aea0de16e55530cc5ff58fb626d9870cd (diff) | |
download | u-boot-imx-74f4304ee717d0f4b3a27e7fd4a64944749b8783.zip u-boot-imx-74f4304ee717d0f4b3a27e7fd4a64944749b8783.tar.gz u-boot-imx-74f4304ee717d0f4b3a27e7fd4a64944749b8783.tar.bz2 |
Add ARM946E cpu and core module targets; remap memory to 0x00000000
Patch by Peter Pearse, 2 Feb 2005
Diffstat (limited to 'cpu/arm926ejs/start.S')
-rw-r--r-- | cpu/arm926ejs/start.S | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/cpu/arm926ejs/start.S b/cpu/arm926ejs/start.S index d62940b..dfa6e7f 100644 --- a/cpu/arm926ejs/start.S +++ b/cpu/arm926ejs/start.S @@ -393,6 +393,12 @@ fiq: #endif +# ifdef CONFIG_INTEGRATOR + + /* Satisfied by Integrator routine (AP or CP) */ + +#else + .align 5 .globl reset_cpu reset_cpu: @@ -404,6 +410,8 @@ reset_cpu: _loop_forever: b _loop_forever - rstctl1: .word 0xfffece10 + +#endif /* #ifdef CONFIG_INTEGRATOR */ + |