aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-versatile
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2010-01-14 17:37:12 -0500
committerRussell King <rmk+kernel@arm.linux.org.uk>2010-05-02 04:35:34 -0400
commitfe8e1a57f0ccdaede41618ca9ced7d746b6298d3 (patch)
treec1056096717f28e5c8c8d59395ca0efff61ca539 /arch/arm/plat-versatile
parente388771458b4ff3ad81ab70e390b24d069647da4 (diff)
ARM: Realview/Versatile: remove useless TIMER_RELOAD calculations
Realview/Versatile copied the Integrator timer code, including the calculations for ensuring that the reload value fits into the 16-bit counter. However, these platforms have a 32-bit counter which is clocked at a slower rate. The result is that the preprocessor conditions are never triggered: TICKS_PER_uSEC = 1, mSEC_10 = 10000, which is 0x2710 - less than 0x10000. So, remove the unnecessary complexity, reducing the TIMER_RELOAD calculation to just: TICKS_PER_uSEC * mSEC_10 Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/plat-versatile')
-rw-r--r--arch/arm/plat-versatile/timer-sp.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/arch/arm/plat-versatile/timer-sp.c b/arch/arm/plat-versatile/timer-sp.c
index 98722f44640c..d1dbef5b17b1 100644
--- a/arch/arm/plat-versatile/timer-sp.c
+++ b/arch/arm/plat-versatile/timer-sp.c
@@ -33,17 +33,7 @@
33/* 33/*
34 * How long is the timer interval? 34 * How long is the timer interval?
35 */ 35 */
36#define TIMER_INTERVAL (TICKS_PER_uSEC * mSEC_10) 36#define TIMER_RELOAD (TICKS_PER_uSEC * mSEC_10)
37#if TIMER_INTERVAL >= 0x100000
38#define TIMER_RELOAD (TIMER_INTERVAL >> 8)
39#define TIMER_DIVISOR (TIMER_CTRL_DIV256)
40#elif TIMER_INTERVAL >= 0x10000
41#define TIMER_RELOAD (TIMER_INTERVAL >> 4) /* Divide by 16 */
42#define TIMER_DIVISOR (TIMER_CTRL_DIV16)
43#else
44#define TIMER_RELOAD (TIMER_INTERVAL)
45#define TIMER_DIVISOR (TIMER_CTRL_DIV1)
46#endif
47 37
48 38
49static void __iomem *clksrc_base; 39static void __iomem *clksrc_base;