diff options
author | Ben Dooks <ben-linux@fluff.org> | 2009-05-17 18:40:30 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-05-17 18:40:30 -0400 |
commit | 543899f610799426babb5313682fd9c249e34677 (patch) | |
tree | 3b43c6b04941b6e2464413c396020af913ef65e2 /arch/arm/mach-s3c6400/include | |
parent | 3cba5ef862bc2c2a0cf2841d993bfb99b9a6c476 (diff) |
[ARM] S3C64XX: Use common watchdog reset for system reset.
Use the newly moved <plat/watchdog-reset.h> to perform the
arch_reset() call which has been unimplemented for a while.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c6400/include')
-rw-r--r-- | arch/arm/mach-s3c6400/include/mach/map.h | 1 | ||||
-rw-r--r-- | arch/arm/mach-s3c6400/include/mach/system.h | 8 |
2 files changed, 8 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c6400/include/mach/map.h b/arch/arm/mach-s3c6400/include/mach/map.h index 99d5e3b420ad..7a1e5a2455b3 100644 --- a/arch/arm/mach-s3c6400/include/mach/map.h +++ b/arch/arm/mach-s3c6400/include/mach/map.h | |||
@@ -40,6 +40,7 @@ | |||
40 | 40 | ||
41 | #define S3C64XX_PA_FB (0x77100000) | 41 | #define S3C64XX_PA_FB (0x77100000) |
42 | #define S3C64XX_PA_USB_HSOTG (0x7C000000) | 42 | #define S3C64XX_PA_USB_HSOTG (0x7C000000) |
43 | #define S3C64XX_PA_WATCHDOG (0x7E004000) | ||
43 | #define S3C64XX_PA_SYSCON (0x7E00F000) | 44 | #define S3C64XX_PA_SYSCON (0x7E00F000) |
44 | #define S3C64XX_PA_TIMER (0x7F006000) | 45 | #define S3C64XX_PA_TIMER (0x7F006000) |
45 | #define S3C64XX_PA_IIC0 (0x7F004000) | 46 | #define S3C64XX_PA_IIC0 (0x7F004000) |
diff --git a/arch/arm/mach-s3c6400/include/mach/system.h b/arch/arm/mach-s3c6400/include/mach/system.h index 090cfd969bc7..2e58cb7a7147 100644 --- a/arch/arm/mach-s3c6400/include/mach/system.h +++ b/arch/arm/mach-s3c6400/include/mach/system.h | |||
@@ -11,6 +11,8 @@ | |||
11 | #ifndef __ASM_ARCH_SYSTEM_H | 11 | #ifndef __ASM_ARCH_SYSTEM_H |
12 | #define __ASM_ARCH_SYSTEM_H __FILE__ | 12 | #define __ASM_ARCH_SYSTEM_H __FILE__ |
13 | 13 | ||
14 | #include <plat/watchdog-reset.h> | ||
15 | |||
14 | static void arch_idle(void) | 16 | static void arch_idle(void) |
15 | { | 17 | { |
16 | /* nothing here yet */ | 18 | /* nothing here yet */ |
@@ -18,7 +20,11 @@ static void arch_idle(void) | |||
18 | 20 | ||
19 | static void arch_reset(char mode, const char *cmd) | 21 | static void arch_reset(char mode, const char *cmd) |
20 | { | 22 | { |
21 | /* nothing here yet */ | 23 | if (mode != 's') |
24 | arch_wdt_reset(); | ||
25 | |||
26 | /* if all else fails, or mode was for soft, jump to 0 */ | ||
27 | cpu_reset(0); | ||
22 | } | 28 | } |
23 | 29 | ||
24 | #endif /* __ASM_ARCH_IRQ_H */ | 30 | #endif /* __ASM_ARCH_IRQ_H */ |