04e703a97f55864b77fa54f3aa54585303386ef8
[pandora-kernel.git] / arch / arm / plat-omap / counter_32k.c
1 /*
2  * OMAP 32ksynctimer/counter_32k-related code
3  *
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>
8  *
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.
12  *
13  * NOTE: This timer is not the same timer as the old OMAP1 MPU timer.
14  */
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>
22
23 #include <asm/sched_clock.h>
24
25 #include <plat/common.h>
26 #include <plat/board.h>
27
28 #include <plat/clock.h>
29
30 /*
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.
35  */
36 static void __iomem *timer_32k_base;
37
38 #define OMAP16XX_TIMER_32K_SYNCHRONIZED         0xfffbc410
39
40 /*
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.
43  */
44 static DEFINE_CLOCK_DATA(cd);
45
46 /*
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.
49  */
50 #define SC_MULT         4000000000u
51 #define SC_SHIFT        17
52
53 static inline unsigned long long notrace _omap_32k_sched_clock(void)
54 {
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);
57 }
58
59 #if defined(CONFIG_OMAP_32K_TIMER) && !defined(CONFIG_OMAP_MPU_TIMER)
60 unsigned long long notrace sched_clock(void)
61 {
62         return _omap_32k_sched_clock();
63 }
64 #else
65 unsigned long long notrace omap_32k_sched_clock(void)
66 {
67         return _omap_32k_sched_clock();
68 }
69 #endif
70
71 static void notrace omap_update_sched_clock(void)
72 {
73         u32 cyc = timer_32k_base ? __raw_readl(timer_32k_base) : 0;
74         update_sched_clock(&cd, cyc, (u32)~0);
75 }
76
77 /**
78  * read_persistent_clock -  Return time from a persistent clock.
79  *
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.
83  */
84 static struct timespec persistent_ts;
85 static cycles_t cycles;
86 static unsigned int persistent_mult, persistent_shift;
87 static DEFINE_SPINLOCK(read_persistent_clock_lock);
88
89 void read_persistent_clock(struct timespec *ts)
90 {
91         unsigned long long nsecs;
92         cycles_t last_cycles;
93         unsigned long flags;
94
95         spin_lock_irqsave(&read_persistent_clock_lock, flags);
96
97         last_cycles = cycles;
98         cycles = timer_32k_base ? __raw_readl(timer_32k_base) : 0;
99
100         nsecs = clocksource_cyc2ns(cycles - last_cycles,
101                                         persistent_mult, persistent_shift);
102
103         timespec_add_ns(&persistent_ts, nsecs);
104
105         *ts = persistent_ts;
106
107         spin_unlock_irqrestore(&read_persistent_clock_lock, flags);
108 }
109
110 int __init omap_init_clocksource_32k(void)
111 {
112         static char err[] __initdata = KERN_ERR
113                         "%s: can't register clocksource!\n";
114
115         if (cpu_is_omap16xx() || cpu_class_is_omap2()) {
116                 u32 pbase;
117                 unsigned long size = SZ_4K;
118                 void __iomem *base;
119                 struct clk *sync_32k_ick;
120
121                 if (cpu_is_omap16xx()) {
122                         pbase = OMAP16XX_TIMER_32K_SYNCHRONIZED;
123                         size = SZ_1K;
124                 } else if (cpu_is_omap2420())
125                         pbase = OMAP2420_32KSYNCT_BASE + 0x10;
126                 else if (cpu_is_omap2430())
127                         pbase = OMAP2430_32KSYNCT_BASE + 0x10;
128                 else if (cpu_is_omap34xx())
129                         pbase = OMAP3430_32KSYNCT_BASE + 0x10;
130                 else if (cpu_is_omap44xx())
131                         pbase = OMAP4430_32KSYNCT_BASE + 0x10;
132                 else
133                         return -ENODEV;
134
135                 /* For this to work we must have a static mapping in io.c for this area */
136                 base = ioremap(pbase, size);
137                 if (!base)
138                         return -ENODEV;
139
140                 sync_32k_ick = clk_get(NULL, "omap_32ksync_ick");
141                 if (!IS_ERR(sync_32k_ick))
142                         clk_enable(sync_32k_ick);
143
144                 timer_32k_base = base;
145
146                 /*
147                  * 120000 rough estimate from the calculations in
148                  * __clocksource_updatefreq_scale.
149                  */
150                 clocks_calc_mult_shift(&persistent_mult, &persistent_shift,
151                                 32768, NSEC_PER_SEC, 120000);
152
153                 if (clocksource_mmio_init(base, "32k_counter", 32768, 250, 32,
154                                           clocksource_mmio_readl_up))
155                         printk(err, "32k_counter");
156
157                 init_fixed_sched_clock(&cd, omap_update_sched_clock, 32,
158                                        32768, SC_MULT, SC_SHIFT);
159         }
160         return 0;
161 }