]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ARM: gemini: Setup timer3 as free running timer
authorHans Ulli Kroll <ulli.kroll@googlemail.com>
Tue, 11 Aug 2015 20:09:05 +0000 (22:09 +0200)
committerOlof Johansson <olof@lixom.net>
Thu, 13 Aug 2015 09:41:52 +0000 (11:41 +0200)
In the original driver it is missed to setup a free running driver.
This timer is needed for the scheduler.
So setup it.

Signed-off-by: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Olof Johansson <olof@lixom.net>
arch/arm/mach-gemini/time.c

index 5e2b1bab446260c6aea3a3ecbc2233c7c856a25a..f5f18df5aacd2a0056d5d4e235b6fccbad70c4d1 100644 (file)
@@ -15,6 +15,7 @@
 #include <asm/mach/time.h>
 #include <linux/clockchips.h>
 #include <linux/clocksource.h>
+#include <linux/sched_clock.h>
 
 /*
  * Register definitions for the timers
 
 static unsigned int tick_rate;
 
+static u64 notrace gemini_read_sched_clock(void)
+{
+       return readl(TIMER_COUNT(TIMER3_BASE));
+}
+
 static int gemini_timer_set_next_event(unsigned long cycles,
                                       struct clock_event_device *evt)
 {
@@ -206,8 +212,21 @@ void __init gemini_timer_init(void)
        writel(TIMER_DEFAULT_FLAGS, TIMER_CR);
 
        /*
-        * Setup clockevent timer (interrupt-driven.)
+        * Setup free-running clocksource timer (interrupts
+        * disabled.)
         */
+       writel(0, TIMER_COUNT(TIMER3_BASE));
+       writel(0, TIMER_LOAD(TIMER3_BASE));
+       writel(0, TIMER_MATCH1(TIMER3_BASE));
+       writel(0, TIMER_MATCH2(TIMER3_BASE));
+       clocksource_mmio_init(TIMER_COUNT(TIMER3_BASE),
+                             "gemini_clocksource", tick_rate,
+                             300, 32, clocksource_mmio_readl_up);
+       sched_clock_register(gemini_read_sched_clock, 32, tick_rate);
+
+       /*
+        * Setup clockevent timer (interrupt-driven.)
+       */
        writel(0, TIMER_COUNT(TIMER1_BASE));
        writel(0, TIMER_LOAD(TIMER1_BASE));
        writel(0, TIMER_MATCH1(TIMER1_BASE));