Merge remote-tracking branch 's5p/for-next'
[linux-2.6/next.git] / arch / arm / plat-omap / counter_32k.c
bloba6cbb712da516d9bc7b11224ec9e8bd6c5a938ad
1 /*
2 * OMAP 32ksynctimer/counter_32k-related code
4 * Copyright (C) 2009 Texas Instruments
5 * Copyright (C) 2010 Nokia Corporation
6 * Tony Lindgren <tony@atomide.com>
7 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
13 * NOTE: This timer is not the same timer as the old OMAP1 MPU timer.
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/clk.h>
18 #include <linux/err.h>
19 #include <linux/io.h>
20 #include <linux/sched.h>
21 #include <linux/clocksource.h>
23 #include <asm/sched_clock.h>
25 #include <plat/common.h>
26 #include <plat/board.h>
28 #include <plat/clock.h>
31 * 32KHz clocksource ... always available, on pretty most chips except
32 * OMAP 730 and 1510. Other timers could be used as clocksources, with
33 * higher resolution in free-running counter modes (e.g. 12 MHz xtal),
34 * but systems won't necessarily want to spend resources that way.
36 static void __iomem *timer_32k_base;
38 #define OMAP16XX_TIMER_32K_SYNCHRONIZED 0xfffbc410
41 * Returns current time from boot in nsecs. It's OK for this to wrap
42 * around for now, as it's just a relative time stamp.
44 static DEFINE_CLOCK_DATA(cd);
47 * Constants generated by clocks_calc_mult_shift(m, s, 32768, NSEC_PER_SEC, 60).
48 * This gives a resolution of about 30us and a wrap period of about 36hrs.
50 #define SC_MULT 4000000000u
51 #define SC_SHIFT 17
53 static inline unsigned long long notrace _omap_32k_sched_clock(void)
55 u32 cyc = timer_32k_base ? __raw_readl(timer_32k_base) : 0;
56 return cyc_to_fixed_sched_clock(&cd, cyc, (u32)~0, SC_MULT, SC_SHIFT);
59 #if defined(CONFIG_OMAP_32K_TIMER) && !defined(CONFIG_OMAP_MPU_TIMER)
60 unsigned long long notrace sched_clock(void)
62 return _omap_32k_sched_clock();
64 #else
65 unsigned long long notrace omap_32k_sched_clock(void)
67 return _omap_32k_sched_clock();
69 #endif
71 static void notrace omap_update_sched_clock(void)
73 u32 cyc = timer_32k_base ? __raw_readl(timer_32k_base) : 0;
74 update_sched_clock(&cd, cyc, (u32)~0);
77 /**
78 * read_persistent_clock - Return time from a persistent clock.
80 * Reads the time from a source which isn't disabled during PM, the
81 * 32k sync timer. Convert the cycles elapsed since last read into
82 * nsecs and adds to a monotonically increasing timespec.
84 static struct timespec persistent_ts;
85 static cycles_t cycles, last_cycles;
86 static unsigned int persistent_mult, persistent_shift;
87 void read_persistent_clock(struct timespec *ts)
89 unsigned long long nsecs;
90 cycles_t delta;
91 struct timespec *tsp = &persistent_ts;
93 last_cycles = cycles;
94 cycles = timer_32k_base ? __raw_readl(timer_32k_base) : 0;
95 delta = cycles - last_cycles;
97 nsecs = clocksource_cyc2ns(delta, persistent_mult, persistent_shift);
99 timespec_add_ns(tsp, nsecs);
100 *ts = *tsp;
103 int __init omap_init_clocksource_32k(void)
105 static char err[] __initdata = KERN_ERR
106 "%s: can't register clocksource!\n";
108 if (cpu_is_omap16xx() || cpu_class_is_omap2()) {
109 u32 pbase;
110 unsigned long size = SZ_4K;
111 void __iomem *base;
112 struct clk *sync_32k_ick;
114 if (cpu_is_omap16xx()) {
115 pbase = OMAP16XX_TIMER_32K_SYNCHRONIZED;
116 size = SZ_1K;
117 } else if (cpu_is_omap2420())
118 pbase = OMAP2420_32KSYNCT_BASE + 0x10;
119 else if (cpu_is_omap2430())
120 pbase = OMAP2430_32KSYNCT_BASE + 0x10;
121 else if (cpu_is_omap34xx())
122 pbase = OMAP3430_32KSYNCT_BASE + 0x10;
123 else if (cpu_is_omap44xx())
124 pbase = OMAP4430_32KSYNCT_BASE + 0x10;
125 else
126 return -ENODEV;
128 /* For this to work we must have a static mapping in io.c for this area */
129 base = ioremap(pbase, size);
130 if (!base)
131 return -ENODEV;
133 sync_32k_ick = clk_get(NULL, "omap_32ksync_ick");
134 if (!IS_ERR(sync_32k_ick))
135 clk_enable(sync_32k_ick);
137 timer_32k_base = base;
140 * 120000 rough estimate from the calculations in
141 * __clocksource_updatefreq_scale.
143 clocks_calc_mult_shift(&persistent_mult, &persistent_shift,
144 32768, NSEC_PER_SEC, 120000);
146 if (clocksource_mmio_init(base, "32k_counter", 32768, 250, 32,
147 clocksource_mmio_readl_up))
148 printk(err, "32k_counter");
150 init_fixed_sched_clock(&cd, omap_update_sched_clock, 32,
151 32768, SC_MULT, SC_SHIFT);
153 return 0;