summaryrefslogtreecommitdiff
path: root/arch/arm/include/asm
diff options
context:
space:
mode:
authorJonas Aaberg <jonas.aberg@stericsson.com>2011-09-22 15:20:44 +0200
committerJonas ABERG <jonas.aberg@stericsson.com>2011-09-29 09:06:39 +0200
commit02cd3bfb1005e6babd228f194f6aa7a3bfb539ed (patch)
tree73c97070434b4be7fb97799315edd6fd192f55b0 /arch/arm/include/asm
parentcf8dba4464e2efd88a5cfa310990d1aa2b73e679 (diff)
Reset to linux-next patch:
commit 774959368b9b567685179682cebfcf63e540b17b Author: Colin Cross <ccross@android.com> Date: Thu May 19 17:24:51 2011 -0700 ARM: smp_twd: Reconfigure clockevents after cpufreq change Change-Id: If31593fe23c00df528af597e6fd2baaf0c102753 Signed-off-by: Jonas Aaberg <jonas.aberg@stericsson.com> Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/32132
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r--arch/arm/include/asm/smp_twd.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/arm/include/asm/smp_twd.h b/arch/arm/include/asm/smp_twd.h
index 51197634059..fed9981fba0 100644
--- a/arch/arm/include/asm/smp_twd.h
+++ b/arch/arm/include/asm/smp_twd.h
@@ -17,24 +17,12 @@
#define TWD_TIMER_CONTROL_ONESHOT (0 << 1)
#define TWD_TIMER_CONTROL_PERIODIC (1 << 1)
#define TWD_TIMER_CONTROL_IT_ENABLE (1 << 2)
-#define TWD_TIMER_CONTROL_PRESCALE_MASK (0xFF << 8)
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 *);
-/*
- * Use this setup function on systems that support cpufreq.
- * periphclk_prescaler is the fixed divider value between the cpu
- * clock and the PERIPHCLK clock that feeds the TWD. target_rate should be
- * low enough that the prescaler can accurately reach the target rate from the
- * lowest cpu frequency, but high enough to give a reasonable timer accuracy.
- */
-void twd_timer_setup_scalable(struct clock_event_device *,
- unsigned long target_rate, unsigned int periphclk_prescaler);
-
#endif