diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-11-05 14:50:25 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-05 12:57:21 +0000 |
commit | fe76daea9ede24f9f53cb847563c2fa7a50cedf2 (patch) | |
tree | b6dbe02cb5169b90aa6bf786a0179516e3a1c253 /arch/arm/mach-w90x900/cpu.c | |
parent | f5733a1e80fa0b40bea815ddf605ece272c6dac1 (diff) | |
download | op-kernel-dev-fe76daea9ede24f9f53cb847563c2fa7a50cedf2.zip op-kernel-dev-fe76daea9ede24f9f53cb847563c2fa7a50cedf2.tar.gz |
ARM: restart: w90x900: use new restart hook
Hook these platforms restart code into the new restart hook rather
than using arch_reset().
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-w90x900/cpu.c')
-rw-r--r-- | arch/arm/mach-w90x900/cpu.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/mach-w90x900/cpu.c b/arch/arm/mach-w90x900/cpu.c index 0a235e5..604e1db 100644 --- a/arch/arm/mach-w90x900/cpu.c +++ b/arch/arm/mach-w90x900/cpu.c @@ -33,9 +33,11 @@ #include <mach/regs-serial.h> #include <mach/regs-clock.h> #include <mach/regs-ebi.h> +#include <mach/regs-timer.h> #include "cpu.h" #include "clock.h" +#include "nuc9xx.h" /* Initial IO mappings */ @@ -222,3 +224,17 @@ void __init nuc900_init_clocks(void) clkdev_add_table(nuc900_clkregs, ARRAY_SIZE(nuc900_clkregs)); } +#define WTCR (TMR_BA + 0x1C) +#define WTCLK (1 << 10) +#define WTE (1 << 7) +#define WTRE (1 << 1) + +void nuc9xx_restart(char mode, const char *cmd) +{ + if (mode == 's') { + /* Jump into ROM at address 0 */ + soft_restart(0); + } else { + __raw_writel(WTE | WTRE | WTCLK, WTCR); + } +} |