summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91/at91sam926x_time.c
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2012-12-28 20:16:09 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-01-07 18:56:58 +0100
commit49edc4c9876d0698c090ddfc2de6802eedee5e93 (patch)
treeac21dd3527d0881c1f72f4ed0e800345701ddecb /arch/arm/mach-at91/at91sam926x_time.c
parente7edecb87adfb06b345ecc78eaf3924fae205dcb (diff)
downloadbarebox-49edc4c9876d0698c090ddfc2de6802eedee5e93.tar.gz
barebox-49edc4c9876d0698c090ddfc2de6802eedee5e93.tar.xz
at91: PIT: switch to platform_driver
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-at91/at91sam926x_time.c')
-rw-r--r--arch/arm/mach-at91/at91sam926x_time.c50
1 files changed, 41 insertions, 9 deletions
diff --git a/arch/arm/mach-at91/at91sam926x_time.c b/arch/arm/mach-at91/at91sam926x_time.c
index e854dc3b38..e18458ac96 100644
--- a/arch/arm/mach-at91/at91sam926x_time.c
+++ b/arch/arm/mach-at91/at91sam926x_time.c
@@ -30,15 +30,20 @@
#include <clock.h>
#include <asm/hardware.h>
#include <mach/at91_pit.h>
-#include <mach/at91_rstc.h>
#include <mach/io.h>
#include <io.h>
#include <linux/clk.h>
#include <linux/err.h>
+#define PIT_CPIV(x) ((x) & AT91_PIT_CPIV)
+#define pit_write(reg, val) __raw_writel(val, pit_base + reg)
+#define pit_read(reg) __raw_readl(pit_base + reg)
+
+static __iomem void *pit_base;
+
uint64_t at91sam9_clocksource_read(void)
{
- return at91_sys_read(AT91_PIT_PIIR);
+ return pit_read(AT91_PIT_PIIR);
}
static struct clocksource cs = {
@@ -47,30 +52,48 @@ static struct clocksource cs = {
.shift = 10,
};
-static int clocksource_init (void)
+static void at91_pit_stop(void)
+{
+ /* Disable timer and irqs */
+ pit_write(AT91_PIT_MR, 0);
+
+ /* Clear any pending interrupts, wait for PIT to stop counting */
+ while (PIT_CPIV(pit_read(AT91_PIT_PIVR)) != 0);
+}
+
+static void at91sam926x_pit_reset(void)
+{
+ at91_pit_stop();
+
+ /* Start PIT but don't enable IRQ */
+ pit_write(AT91_PIT_MR, 0xfffff | AT91_PIT_PITEN);
+}
+
+static int at91_pit_probe(struct device_d *dev)
{
struct clk *clk;
u32 pit_rate;
int ret;
- clk = clk_get(NULL, "mck");
+ clk = clk_get(dev, NULL);
if (IS_ERR(clk)) {
ret = PTR_ERR(clk);
- pr_err("clock not found: %d\n", ret);
+ dev_err(dev, "clock not found: %d\n", ret);
return ret;
}
ret = clk_enable(clk);
if (ret < 0) {
- pr_err("clock failed to enable: %d\n", ret);
+ dev_err(dev, "clock failed to enable: %d\n", ret);
clk_put(clk);
return ret;
}
+ pit_base = dev_request_mem_region(dev, 0);
+
pit_rate = clk_get_rate(clk) / 16;
- /* Enable PITC */
- at91_sys_write(AT91_PIT_MR, 0xfffff | AT91_PIT_PITEN);
+ at91sam926x_pit_reset();
cs.mult = clocksource_hz2mult(pit_rate, cs.shift);
@@ -79,4 +102,13 @@ static int clocksource_init (void)
return 0;
}
-core_initcall(clocksource_init);
+static struct driver_d at91_pit_driver = {
+ .name = "at91-pit",
+ .probe = at91_pit_probe,
+};
+
+static int at91_pit_init(void)
+{
+ return platform_driver_register(&at91_pit_driver);
+}
+postcore_initcall(at91_pit_init);