]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ARM: ixp4xx: convert sched_clock() to use new infrastructure
authorRussell King <rmk+kernel@arm.linux.org.uk>
Wed, 15 Dec 2010 21:23:13 +0000 (21:23 +0000)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Wed, 22 Dec 2010 22:44:44 +0000 (22:44 +0000)
Convert ixp4xx to use the new sched_clock() infrastructure for
extending 32bit counters to full 64-bit nanoseconds.

Tested-by: Mikael Pettersson <mikpe@it.uu.se>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/Kconfig
arch/arm/mach-ixp4xx/common.c

index ed7a0a729d9c43090fae2a21b9ae76fa77da7251..6f58bce687f34af9a4bdd82c24b53714da207062 100644 (file)
@@ -437,6 +437,7 @@ config ARCH_IXP4XX
        select CPU_XSCALE
        select GENERIC_GPIO
        select GENERIC_CLOCKEVENTS
+       select HAVE_SCHED_CLOCK
        select DMABOUNCE if PCI
        help
          Support for Intel's IXP4XX (XScale) family of processors.
index e0b91d8ef644ef69c50950d25f3283ec5856f1de..4dbfcbb9163c1252e139edcf0cbb404fc6f0e1ee 100644 (file)
@@ -35,6 +35,7 @@
 #include <asm/pgtable.h>
 #include <asm/page.h>
 #include <asm/irq.h>
+#include <asm/sched_clock.h>
 
 #include <asm/mach/map.h>
 #include <asm/mach/irq.h>
@@ -398,6 +399,23 @@ void __init ixp4xx_sys_init(void)
                        ixp4xx_exp_bus_size >> 20);
 }
 
+/*
+ * sched_clock()
+ */
+static DEFINE_CLOCK_DATA(cd);
+
+unsigned long long notrace sched_clock(void)
+{
+       u32 cyc = *IXP4XX_OSTS;
+       return cyc_to_sched_clock(&cd, cyc, (u32)~0);
+}
+
+static void notrace ixp4xx_update_sched_clock(void)
+{
+       u32 cyc = *IXP4XX_OSTS;
+       update_sched_clock(&cd, cyc, (u32)~0);
+}
+
 /*
  * clocksource
  */
@@ -418,18 +436,9 @@ unsigned long ixp4xx_timer_freq = FREQ;
 EXPORT_SYMBOL(ixp4xx_timer_freq);
 static void __init ixp4xx_clocksource_init(void)
 {
-       clocksource_register_hz(&clocksource_ixp4xx, ixp4xx_timer_freq);
-}
-
-/*
- * sched_clock()
- */
-unsigned long long notrace sched_clock(void)
-{
-       cycle_t cyc = ixp4xx_get_cycles(NULL);
-       struct clocksource *cs = &clocksource_ixp4xx;
+       init_sched_clock(&cd, ixp4xx_update_sched_clock, 32, ixp4xx_timer_freq);
 
-       return clocksource_cyc2ns(cyc, cs->mult, cs->shift);
+       clocksource_register_hz(&clocksource_ixp4xx, ixp4xx_timer_freq);
 }
 
 /*