summaryrefslogtreecommitdiffstats
path: root/drivers/clocksource
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2012-09-30 17:45:36 +0800
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2012-10-04 18:40:46 +0800
commit0228863348ffb3938bb5115950e3737713b1c8f8 (patch)
tree8ccad4777e3c12870d9c247c38364b7a1e88210b /drivers/clocksource
parentdf80e395477857b34aaf0bae0785413a9ed8ffe3 (diff)
downloadbarebox-0228863348ffb3938bb5115950e3737713b1c8f8.tar.gz
barebox-0228863348ffb3938bb5115950e3737713b1c8f8.tar.xz
arm: add generic smp twd timer
on Cortex A9 and Cortex A5 we have a generic timer which we can use as clocksource Limit the timer frequency to < 25Mhz Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'drivers/clocksource')
-rw-r--r--drivers/clocksource/Kconfig3
-rw-r--r--drivers/clocksource/Makefile1
-rw-r--r--drivers/clocksource/arm_smp_twd.c101
3 files changed, 105 insertions, 0 deletions
diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig
new file mode 100644
index 0000000000..05c1f0a88e
--- /dev/null
+++ b/drivers/clocksource/Kconfig
@@ -0,0 +1,3 @@
+config ARM_SMP_TWD
+ bool
+ depends on ARM && CPU_V7
diff --git a/drivers/clocksource/Makefile b/drivers/clocksource/Makefile
new file mode 100644
index 0000000000..9186a5cf59
--- /dev/null
+++ b/drivers/clocksource/Makefile
@@ -0,0 +1 @@
+obj-$(CONFIG_ARM_SMP_TWD) += arm_smp_twd.o
diff --git a/drivers/clocksource/arm_smp_twd.c b/drivers/clocksource/arm_smp_twd.c
new file mode 100644
index 0000000000..746d566441
--- /dev/null
+++ b/drivers/clocksource/arm_smp_twd.c
@@ -0,0 +1,101 @@
+/*
+ * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
+ *
+ * Under GPL v2
+ */
+#include <common.h>
+#include <init.h>
+#include <clock.h>
+#include <io.h>
+#include <driver.h>
+#include <errno.h>
+#include <linux/clk.h>
+#include <linux/err.h>
+
+#define TWD_TIMER_LOAD 0x00
+#define TWD_TIMER_COUNTER 0x04
+#define TWD_TIMER_CONTROL 0x08
+#define TWD_TIMER_INTSTAT 0x0C
+
+#define TWD_TIMER_CONTROL_ENABLE (1 << 0)
+#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_PRESC(x) (((x) & 0xff) << 8)
+
+static __iomem void *twd_base;
+static struct clk *twd_clk;
+
+static uint64_t smp_twd_read(void)
+{
+ return ~readl(twd_base + TWD_TIMER_COUNTER);
+}
+
+static struct clocksource smp_twd_clksrc = {
+ .read = smp_twd_read,
+ .shift = 20,
+ .mask = CLOCKSOURCE_MASK(32),
+};
+
+#define SMP_TWD_MAX_FREQ (25 *1000 * 1000)
+
+static int smp_twd_probe(struct device_d *dev)
+{
+ u32 tick_rate;
+ u32 val;
+ int ret;
+ u32 presc = 0;
+
+ twd_clk = clk_get(dev, NULL);
+ if (IS_ERR(twd_clk)) {
+ ret = PTR_ERR(twd_clk);
+ dev_err(dev, "clock not found: %d\n", ret);
+ return ret;
+ }
+
+ ret = clk_enable(twd_clk);
+ if (ret < 0) {
+ dev_err(dev, "clock failed to enable: %d\n", ret);
+ clk_put(twd_clk);
+ return ret;
+ }
+
+ twd_base = dev_request_mem_region(dev, 0);
+
+ tick_rate = clk_get_rate(twd_clk);
+ if (tick_rate > SMP_TWD_MAX_FREQ) {
+ presc = tick_rate / SMP_TWD_MAX_FREQ;
+ if (presc)
+ presc--;
+ presc = min((u32)0xff, presc);
+ tick_rate /= presc + 1;
+ }
+
+ val = TWD_TIMER_CONTROL_PRESC(presc) |
+ TWD_TIMER_CONTROL_PERIODIC;
+ writel(val, twd_base + TWD_TIMER_CONTROL);
+
+ writel(0xffffffff, twd_base + TWD_TIMER_LOAD);
+
+ val = readl(twd_base + TWD_TIMER_CONTROL);
+ val |= TWD_TIMER_CONTROL_ENABLE;
+ writel(val, twd_base + TWD_TIMER_CONTROL);
+
+ smp_twd_clksrc.mult = clocksource_hz2mult(tick_rate, smp_twd_clksrc.shift);
+
+ init_clock(&smp_twd_clksrc);
+
+ return 0;
+}
+
+static struct driver_d smp_twd_driver = {
+ .name = "smp_twd",
+ .probe = smp_twd_probe,
+};
+
+static int smp_twd_init(void)
+{
+ return platform_driver_register(&smp_twd_driver);
+}
+coredevice_initcall(smp_twd_init);