diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-13 12:37:35 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-13 12:37:35 +0100 |
commit | ff7fefe6797246b2748530f965f2e41de34a982a (patch) | |
tree | 11a2822c35a388ac1d00a43875e8c76508b97955 /cpu/arm926ejs/start.S | |
parent | 86f5f0342d1d2c787d984ecb9135db993e3a9f6a (diff) | |
download | u-boot-imx-ff7fefe6797246b2748530f965f2e41de34a982a.zip u-boot-imx-ff7fefe6797246b2748530f965f2e41de34a982a.tar.gz u-boot-imx-ff7fefe6797246b2748530f965f2e41de34a982a.tar.bz2 |
Apply SoC concept to arm926ejs CPUs, i.e. move the SoC specific timer and
cpu_reset code from cpu/$(CPU) into the new cpu/$(CPU)/$(SOC) directories
Patch by Andreas Engel, 13 Mar 2006
Diffstat (limited to 'cpu/arm926ejs/start.S')
-rw-r--r-- | cpu/arm926ejs/start.S | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/cpu/arm926ejs/start.S b/cpu/arm926ejs/start.S index fc6b20b..725c663 100644 --- a/cpu/arm926ejs/start.S +++ b/cpu/arm926ejs/start.S @@ -392,25 +392,3 @@ fiq: bl do_fiq #endif - -# ifdef CONFIG_INTEGRATOR - - /* Satisfied by Integrator routine (AP or CP) */ - -#else - - .align 5 -.globl reset_cpu -reset_cpu: - ldr r1, rstctl1 /* get clkm1 reset ctl */ - mov r3, #0x0 - strh r3, [r1] /* clear it */ - mov r3, #0x8 - strh r3, [r1] /* force dsp+arm reset */ -_loop_forever: - b _loop_forever - -rstctl1: - .word 0xfffece10 - -#endif /* #ifdef CONFIG_INTEGRATOR */ |