diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2009-05-16 12:14:21 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-05-17 19:16:41 +0100 |
commit | f32f4ce25745209f16a5a6cef7442144b596c68a (patch) | |
tree | 76083f10ee56c82177669bb100358ea2818f8f5a /arch/arm/include/asm/smp_twd.h | |
parent | a8cbcd92bd4bf893085eddf7f58e63ea98503d94 (diff) |
[ARM] smp: allow re-use of realview localtimer TWD support
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/include/asm/smp_twd.h')
-rw-r--r-- | arch/arm/include/asm/smp_twd.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/include/asm/smp_twd.h b/arch/arm/include/asm/smp_twd.h new file mode 100644 index 00000000000..7be0978b262 --- /dev/null +++ b/arch/arm/include/asm/smp_twd.h @@ -0,0 +1,12 @@ +#ifndef __ASMARM_SMP_TWD_H +#define __ASMARM_SMP_TWD_H + +struct clock_event_device; + +extern void __iomem *twd_base; + +void twd_timer_stop(void); +int twd_timer_ack(void); +void twd_timer_setup(struct clock_event_device *); + +#endif |