0142e4b2e12ea512851565bcd5332b83a7569aee
[pandora-kernel.git] / arch / arm / plat-mxc / time.c
1 /*
2  *  linux/arch/arm/plat-mxc/time.c
3  *
4  *  Copyright (C) 2000-2001 Deep Blue Solutions
5  *  Copyright (C) 2002 Shane Nay (shane@minirl.com)
6  *  Copyright (C) 2006-2007 Pavel Pisa (ppisa@pikron.com)
7  *  Copyright (C) 2008 Juergen Beisert (kernel@pengutronix.de)
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21  * MA 02110-1301, USA.
22  */
23
24 #include <linux/interrupt.h>
25 #include <linux/irq.h>
26 #include <linux/clockchips.h>
27 #include <linux/clk.h>
28
29 #include <mach/hardware.h>
30 #include <asm/mach/time.h>
31 #include <mach/common.h>
32
33 /*
34  * There are 2 versions of the timer hardware on Freescale MXC hardware.
35  * Version 1: MX1/MXL, MX21, MX27.
36  * Version 2: MX25, MX31, MX35, MX37, MX51
37  */
38
39 /* defines common for all i.MX */
40 #define MXC_TCTL                0x00
41 #define MXC_TCTL_TEN            (1 << 0) /* Enable module */
42 #define MXC_TPRER               0x04
43
44 /* MX1, MX21, MX27 */
45 #define MX1_2_TCTL_CLK_PCLK1    (1 << 1)
46 #define MX1_2_TCTL_IRQEN        (1 << 4)
47 #define MX1_2_TCTL_FRR          (1 << 8)
48 #define MX1_2_TCMP              0x08
49 #define MX1_2_TCN               0x10
50 #define MX1_2_TSTAT             0x14
51
52 /* MX21, MX27 */
53 #define MX2_TSTAT_CAPT          (1 << 1)
54 #define MX2_TSTAT_COMP          (1 << 0)
55
56 /* MX31, MX35, MX25, MXC91231, MX5 */
57 #define V2_TCTL_WAITEN          (1 << 3) /* Wait enable mode */
58 #define V2_TCTL_CLK_IPG         (1 << 6)
59 #define V2_TCTL_FRR             (1 << 9)
60 #define V2_IR                   0x0c
61 #define V2_TSTAT                0x08
62 #define V2_TSTAT_OF1            (1 << 0)
63 #define V2_TCN                  0x24
64 #define V2_TCMP                 0x10
65
66 #define timer_is_v1()   (cpu_is_mx1() || cpu_is_mx21() || cpu_is_mx27())
67 #define timer_is_v2()   (!timer_is_v1())
68
69 static struct clock_event_device clockevent_mxc;
70 static enum clock_event_mode clockevent_mode = CLOCK_EVT_MODE_UNUSED;
71
72 static void __iomem *timer_base;
73
74 static inline void gpt_irq_disable(void)
75 {
76         unsigned int tmp;
77
78         if (timer_is_v2())
79                 __raw_writel(0, timer_base + V2_IR);
80         else {
81                 tmp = __raw_readl(timer_base + MXC_TCTL);
82                 __raw_writel(tmp & ~MX1_2_TCTL_IRQEN, timer_base + MXC_TCTL);
83         }
84 }
85
86 static inline void gpt_irq_enable(void)
87 {
88         if (timer_is_v2())
89                 __raw_writel(1<<0, timer_base + V2_IR);
90         else {
91                 __raw_writel(__raw_readl(timer_base + MXC_TCTL) | MX1_2_TCTL_IRQEN,
92                         timer_base + MXC_TCTL);
93         }
94 }
95
96 static void gpt_irq_acknowledge(void)
97 {
98         if (timer_is_v1()) {
99                 if (cpu_is_mx1())
100                         __raw_writel(0, timer_base + MX1_2_TSTAT);
101                 else
102                         __raw_writel(MX2_TSTAT_CAPT | MX2_TSTAT_COMP,
103                                 timer_base + MX1_2_TSTAT);
104         } else if (timer_is_v2())
105                 __raw_writel(V2_TSTAT_OF1, timer_base + V2_TSTAT);
106 }
107
108 static cycle_t dummy_get_cycles(struct clocksource *cs)
109 {
110         return 0;
111 }
112
113 static cycle_t mx1_2_get_cycles(struct clocksource *cs)
114 {
115         return __raw_readl(timer_base + MX1_2_TCN);
116 }
117
118 static cycle_t v2_get_cycles(struct clocksource *cs)
119 {
120         return __raw_readl(timer_base + V2_TCN);
121 }
122
123 static struct clocksource clocksource_mxc = {
124         .name           = "mxc_timer1",
125         .rating         = 200,
126         .read           = dummy_get_cycles,
127         .mask           = CLOCKSOURCE_MASK(32),
128         .flags          = CLOCK_SOURCE_IS_CONTINUOUS,
129 };
130
131 static int __init mxc_clocksource_init(struct clk *timer_clk)
132 {
133         unsigned int c = clk_get_rate(timer_clk);
134
135         if (timer_is_v2())
136                 clocksource_mxc.read = v2_get_cycles;
137         else
138                 clocksource_mxc.read = mx1_2_get_cycles;
139
140         clocksource_register_hz(&clocksource_mxc, c);
141
142         return 0;
143 }
144
145 /* clock event */
146
147 static int mx1_2_set_next_event(unsigned long evt,
148                               struct clock_event_device *unused)
149 {
150         unsigned long tcmp;
151
152         tcmp = __raw_readl(timer_base + MX1_2_TCN) + evt;
153
154         __raw_writel(tcmp, timer_base + MX1_2_TCMP);
155
156         return (int)(tcmp - __raw_readl(timer_base + MX1_2_TCN)) < 0 ?
157                                 -ETIME : 0;
158 }
159
160 static int v2_set_next_event(unsigned long evt,
161                               struct clock_event_device *unused)
162 {
163         unsigned long tcmp;
164
165         tcmp = __raw_readl(timer_base + V2_TCN) + evt;
166
167         __raw_writel(tcmp, timer_base + V2_TCMP);
168
169         return (int)(tcmp - __raw_readl(timer_base + V2_TCN)) < 0 ?
170                                 -ETIME : 0;
171 }
172
173 #ifdef DEBUG
174 static const char *clock_event_mode_label[] = {
175         [CLOCK_EVT_MODE_PERIODIC] = "CLOCK_EVT_MODE_PERIODIC",
176         [CLOCK_EVT_MODE_ONESHOT]  = "CLOCK_EVT_MODE_ONESHOT",
177         [CLOCK_EVT_MODE_SHUTDOWN] = "CLOCK_EVT_MODE_SHUTDOWN",
178         [CLOCK_EVT_MODE_UNUSED]   = "CLOCK_EVT_MODE_UNUSED"
179 };
180 #endif /* DEBUG */
181
182 static void mxc_set_mode(enum clock_event_mode mode,
183                                 struct clock_event_device *evt)
184 {
185         unsigned long flags;
186
187         /*
188          * The timer interrupt generation is disabled at least
189          * for enough time to call mxc_set_next_event()
190          */
191         local_irq_save(flags);
192
193         /* Disable interrupt in GPT module */
194         gpt_irq_disable();
195
196         if (mode != clockevent_mode) {
197                 /* Set event time into far-far future */
198                 if (timer_is_v2())
199                         __raw_writel(__raw_readl(timer_base + V2_TCN) - 3,
200                                         timer_base + V2_TCMP);
201                 else
202                         __raw_writel(__raw_readl(timer_base + MX1_2_TCN) - 3,
203                                         timer_base + MX1_2_TCMP);
204
205                 /* Clear pending interrupt */
206                 gpt_irq_acknowledge();
207         }
208
209 #ifdef DEBUG
210         printk(KERN_INFO "mxc_set_mode: changing mode from %s to %s\n",
211                 clock_event_mode_label[clockevent_mode],
212                 clock_event_mode_label[mode]);
213 #endif /* DEBUG */
214
215         /* Remember timer mode */
216         clockevent_mode = mode;
217         local_irq_restore(flags);
218
219         switch (mode) {
220         case CLOCK_EVT_MODE_PERIODIC:
221                 printk(KERN_ERR"mxc_set_mode: Periodic mode is not "
222                                 "supported for i.MX\n");
223                 break;
224         case CLOCK_EVT_MODE_ONESHOT:
225         /*
226          * Do not put overhead of interrupt enable/disable into
227          * mxc_set_next_event(), the core has about 4 minutes
228          * to call mxc_set_next_event() or shutdown clock after
229          * mode switching
230          */
231                 local_irq_save(flags);
232                 gpt_irq_enable();
233                 local_irq_restore(flags);
234                 break;
235         case CLOCK_EVT_MODE_SHUTDOWN:
236         case CLOCK_EVT_MODE_UNUSED:
237         case CLOCK_EVT_MODE_RESUME:
238                 /* Left event sources disabled, no more interrupts appear */
239                 break;
240         }
241 }
242
243 /*
244  * IRQ handler for the timer
245  */
246 static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
247 {
248         struct clock_event_device *evt = &clockevent_mxc;
249         uint32_t tstat;
250
251         if (timer_is_v2())
252                 tstat = __raw_readl(timer_base + V2_TSTAT);
253         else
254                 tstat = __raw_readl(timer_base + MX1_2_TSTAT);
255
256         gpt_irq_acknowledge();
257
258         evt->event_handler(evt);
259
260         return IRQ_HANDLED;
261 }
262
263 static struct irqaction mxc_timer_irq = {
264         .name           = "i.MX Timer Tick",
265         .flags          = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
266         .handler        = mxc_timer_interrupt,
267 };
268
269 static struct clock_event_device clockevent_mxc = {
270         .name           = "mxc_timer1",
271         .features       = CLOCK_EVT_FEAT_ONESHOT,
272         .shift          = 32,
273         .set_mode       = mxc_set_mode,
274         .set_next_event = mx1_2_set_next_event,
275         .rating         = 200,
276 };
277
278 static int __init mxc_clockevent_init(struct clk *timer_clk)
279 {
280         unsigned int c = clk_get_rate(timer_clk);
281
282         if (timer_is_v2())
283                 clockevent_mxc.set_next_event = v2_set_next_event;
284
285         clockevent_mxc.mult = div_sc(c, NSEC_PER_SEC,
286                                         clockevent_mxc.shift);
287         clockevent_mxc.max_delta_ns =
288                         clockevent_delta2ns(0xfffffffe, &clockevent_mxc);
289         clockevent_mxc.min_delta_ns =
290                         clockevent_delta2ns(0xff, &clockevent_mxc);
291
292         clockevent_mxc.cpumask = cpumask_of(0);
293
294         clockevents_register_device(&clockevent_mxc);
295
296         return 0;
297 }
298
299 void __init mxc_timer_init(struct clk *timer_clk, void __iomem *base, int irq)
300 {
301         uint32_t tctl_val;
302
303         clk_enable(timer_clk);
304
305         timer_base = base;
306
307         /*
308          * Initialise to a known state (all timers off, and timing reset)
309          */
310
311         __raw_writel(0, timer_base + MXC_TCTL);
312         __raw_writel(0, timer_base + MXC_TPRER); /* see datasheet note */
313
314         if (timer_is_v2())
315                 tctl_val = V2_TCTL_CLK_IPG | V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
316         else
317                 tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
318
319         __raw_writel(tctl_val, timer_base + MXC_TCTL);
320
321         /* init and register the timer to the framework */
322         mxc_clocksource_init(timer_clk);
323         mxc_clockevent_init(timer_clk);
324
325         /* Make irqs happen */
326         setup_irq(irq, &mxc_timer_irq);
327 }