blob: 1c96cdb4c35e9036ff78e97a084a1423a720e1ca [file] [log] [blame]
Juergen Beisertd0f349f2008-07-05 10:02:50 +02001/*
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
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/hardware.h>
Jan Weitzelc124bef2011-03-17 13:44:30 +010030#include <asm/sched_clock.h>
Juergen Beisertd0f349f2008-07-05 10:02:50 +020031#include <asm/mach/time.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/common.h>
Sascha Hauerec996ba2009-02-18 20:58:40 +010033
Sascha Hauer0f3332c2009-12-04 09:34:51 +010034/*
35 * There are 2 versions of the timer hardware on Freescale MXC hardware.
36 * Version 1: MX1/MXL, MX21, MX27.
37 * Version 2: MX25, MX31, MX35, MX37, MX51
38 */
39
Sascha Hauerec996ba2009-02-18 20:58:40 +010040/* defines common for all i.MX */
41#define MXC_TCTL 0x00
Sascha Hauer0f3332c2009-12-04 09:34:51 +010042#define MXC_TCTL_TEN (1 << 0) /* Enable module */
Sascha Hauerec996ba2009-02-18 20:58:40 +010043#define MXC_TPRER 0x04
44
45/* MX1, MX21, MX27 */
46#define MX1_2_TCTL_CLK_PCLK1 (1 << 1)
47#define MX1_2_TCTL_IRQEN (1 << 4)
48#define MX1_2_TCTL_FRR (1 << 8)
49#define MX1_2_TCMP 0x08
50#define MX1_2_TCN 0x10
51#define MX1_2_TSTAT 0x14
52
53/* MX21, MX27 */
54#define MX2_TSTAT_CAPT (1 << 1)
55#define MX2_TSTAT_COMP (1 << 0)
56
Uwe Kleine-König13cf8df2011-04-07 11:13:25 +020057/* MX31, MX35, MX25, MX5 */
Amit Kucheria38a66f52010-04-21 21:34:36 +030058#define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */
59#define V2_TCTL_CLK_IPG (1 << 6)
60#define V2_TCTL_FRR (1 << 9)
61#define V2_IR 0x0c
62#define V2_TSTAT 0x08
63#define V2_TSTAT_OF1 (1 << 0)
64#define V2_TCN 0x24
65#define V2_TCMP 0x10
Juergen Beisertd0f349f2008-07-05 10:02:50 +020066
Sascha Hauer0f3332c2009-12-04 09:34:51 +010067#define timer_is_v1() (cpu_is_mx1() || cpu_is_mx21() || cpu_is_mx27())
68#define timer_is_v2() (!timer_is_v1())
69
Juergen Beisertd0f349f2008-07-05 10:02:50 +020070static struct clock_event_device clockevent_mxc;
71static enum clock_event_mode clockevent_mode = CLOCK_EVT_MODE_UNUSED;
72
Sascha Hauerec996ba2009-02-18 20:58:40 +010073static void __iomem *timer_base;
Juergen Beisertd0f349f2008-07-05 10:02:50 +020074
Sascha Hauerec996ba2009-02-18 20:58:40 +010075static inline void gpt_irq_disable(void)
Juergen Beisertd0f349f2008-07-05 10:02:50 +020076{
Sascha Hauerec996ba2009-02-18 20:58:40 +010077 unsigned int tmp;
78
Sascha Hauer0f3332c2009-12-04 09:34:51 +010079 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +030080 __raw_writel(0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +010081 else {
82 tmp = __raw_readl(timer_base + MXC_TCTL);
83 __raw_writel(tmp & ~MX1_2_TCTL_IRQEN, timer_base + MXC_TCTL);
84 }
85}
86
87static inline void gpt_irq_enable(void)
88{
Sascha Hauer0f3332c2009-12-04 09:34:51 +010089 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +030090 __raw_writel(1<<0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +010091 else {
92 __raw_writel(__raw_readl(timer_base + MXC_TCTL) | MX1_2_TCTL_IRQEN,
93 timer_base + MXC_TCTL);
94 }
95}
96
97static void gpt_irq_acknowledge(void)
98{
Sascha Hauer0f3332c2009-12-04 09:34:51 +010099 if (timer_is_v1()) {
100 if (cpu_is_mx1())
101 __raw_writel(0, timer_base + MX1_2_TSTAT);
102 else
103 __raw_writel(MX2_TSTAT_CAPT | MX2_TSTAT_COMP,
104 timer_base + MX1_2_TSTAT);
105 } else if (timer_is_v2())
Wolfram Sangd943f2c2010-04-23 06:49:43 +0200106 __raw_writel(V2_TSTAT_OF1, timer_base + V2_TSTAT);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100107}
108
Russell King234b6ce2011-05-08 14:09:47 +0100109static void __iomem *sched_clock_reg;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200110
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100111static u32 notrace mxc_read_sched_clock(void)
Jan Weitzelc124bef2011-03-17 13:44:30 +0100112{
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100113 return sched_clock_reg ? __raw_readl(sched_clock_reg) : 0;
Jan Weitzelc124bef2011-03-17 13:44:30 +0100114}
115
Sascha Hauer30c730f2009-02-16 14:36:49 +0100116static int __init mxc_clocksource_init(struct clk *timer_clk)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200117{
Holger Schurig058b7a62009-01-26 16:34:51 +0100118 unsigned int c = clk_get_rate(timer_clk);
Russell King234b6ce2011-05-08 14:09:47 +0100119 void __iomem *reg = timer_base + (timer_is_v2() ? V2_TCN : MX1_2_TCN);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200120
Russell King234b6ce2011-05-08 14:09:47 +0100121 sched_clock_reg = reg;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100122
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100123 setup_sched_clock(mxc_read_sched_clock, 32, c);
Russell King234b6ce2011-05-08 14:09:47 +0100124 return clocksource_mmio_init(reg, "mxc_timer1", c, 200, 32,
125 clocksource_mmio_readl_up);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200126}
127
128/* clock event */
129
Sascha Hauerec996ba2009-02-18 20:58:40 +0100130static int mx1_2_set_next_event(unsigned long evt,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200131 struct clock_event_device *unused)
132{
133 unsigned long tcmp;
134
Sascha Hauerec996ba2009-02-18 20:58:40 +0100135 tcmp = __raw_readl(timer_base + MX1_2_TCN) + evt;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200136
Sascha Hauerec996ba2009-02-18 20:58:40 +0100137 __raw_writel(tcmp, timer_base + MX1_2_TCMP);
138
139 return (int)(tcmp - __raw_readl(timer_base + MX1_2_TCN)) < 0 ?
140 -ETIME : 0;
141}
142
Amit Kucheria38a66f52010-04-21 21:34:36 +0300143static int v2_set_next_event(unsigned long evt,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100144 struct clock_event_device *unused)
145{
146 unsigned long tcmp;
147
Amit Kucheria38a66f52010-04-21 21:34:36 +0300148 tcmp = __raw_readl(timer_base + V2_TCN) + evt;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100149
Amit Kucheria38a66f52010-04-21 21:34:36 +0300150 __raw_writel(tcmp, timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100151
Amit Kucheria38a66f52010-04-21 21:34:36 +0300152 return (int)(tcmp - __raw_readl(timer_base + V2_TCN)) < 0 ?
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200153 -ETIME : 0;
154}
155
156#ifdef DEBUG
157static const char *clock_event_mode_label[] = {
158 [CLOCK_EVT_MODE_PERIODIC] = "CLOCK_EVT_MODE_PERIODIC",
159 [CLOCK_EVT_MODE_ONESHOT] = "CLOCK_EVT_MODE_ONESHOT",
160 [CLOCK_EVT_MODE_SHUTDOWN] = "CLOCK_EVT_MODE_SHUTDOWN",
161 [CLOCK_EVT_MODE_UNUSED] = "CLOCK_EVT_MODE_UNUSED"
162};
163#endif /* DEBUG */
164
165static void mxc_set_mode(enum clock_event_mode mode,
166 struct clock_event_device *evt)
167{
168 unsigned long flags;
169
170 /*
171 * The timer interrupt generation is disabled at least
172 * for enough time to call mxc_set_next_event()
173 */
174 local_irq_save(flags);
175
176 /* Disable interrupt in GPT module */
177 gpt_irq_disable();
178
179 if (mode != clockevent_mode) {
180 /* Set event time into far-far future */
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100181 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300182 __raw_writel(__raw_readl(timer_base + V2_TCN) - 3,
183 timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100184 else
185 __raw_writel(__raw_readl(timer_base + MX1_2_TCN) - 3,
186 timer_base + MX1_2_TCMP);
187
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200188 /* Clear pending interrupt */
189 gpt_irq_acknowledge();
190 }
191
192#ifdef DEBUG
193 printk(KERN_INFO "mxc_set_mode: changing mode from %s to %s\n",
194 clock_event_mode_label[clockevent_mode],
195 clock_event_mode_label[mode]);
196#endif /* DEBUG */
197
198 /* Remember timer mode */
199 clockevent_mode = mode;
200 local_irq_restore(flags);
201
202 switch (mode) {
203 case CLOCK_EVT_MODE_PERIODIC:
204 printk(KERN_ERR"mxc_set_mode: Periodic mode is not "
205 "supported for i.MX\n");
206 break;
207 case CLOCK_EVT_MODE_ONESHOT:
208 /*
209 * Do not put overhead of interrupt enable/disable into
210 * mxc_set_next_event(), the core has about 4 minutes
211 * to call mxc_set_next_event() or shutdown clock after
212 * mode switching
213 */
214 local_irq_save(flags);
215 gpt_irq_enable();
216 local_irq_restore(flags);
217 break;
218 case CLOCK_EVT_MODE_SHUTDOWN:
219 case CLOCK_EVT_MODE_UNUSED:
220 case CLOCK_EVT_MODE_RESUME:
221 /* Left event sources disabled, no more interrupts appear */
222 break;
223 }
224}
225
226/*
227 * IRQ handler for the timer
228 */
229static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
230{
231 struct clock_event_device *evt = &clockevent_mxc;
232 uint32_t tstat;
233
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100234 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300235 tstat = __raw_readl(timer_base + V2_TSTAT);
Sascha Hauer81ec1f92009-04-29 13:55:13 +0200236 else
237 tstat = __raw_readl(timer_base + MX1_2_TSTAT);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200238
239 gpt_irq_acknowledge();
240
241 evt->event_handler(evt);
242
243 return IRQ_HANDLED;
244}
245
246static struct irqaction mxc_timer_irq = {
247 .name = "i.MX Timer Tick",
248 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
249 .handler = mxc_timer_interrupt,
250};
251
252static struct clock_event_device clockevent_mxc = {
253 .name = "mxc_timer1",
254 .features = CLOCK_EVT_FEAT_ONESHOT,
255 .shift = 32,
256 .set_mode = mxc_set_mode,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100257 .set_next_event = mx1_2_set_next_event,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200258 .rating = 200,
259};
260
Sascha Hauer30c730f2009-02-16 14:36:49 +0100261static int __init mxc_clockevent_init(struct clk *timer_clk)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200262{
Holger Schurig058b7a62009-01-26 16:34:51 +0100263 unsigned int c = clk_get_rate(timer_clk);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200264
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100265 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300266 clockevent_mxc.set_next_event = v2_set_next_event;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100267
Holger Schurig058b7a62009-01-26 16:34:51 +0100268 clockevent_mxc.mult = div_sc(c, NSEC_PER_SEC,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200269 clockevent_mxc.shift);
270 clockevent_mxc.max_delta_ns =
271 clockevent_delta2ns(0xfffffffe, &clockevent_mxc);
272 clockevent_mxc.min_delta_ns =
273 clockevent_delta2ns(0xff, &clockevent_mxc);
274
Rusty Russell320ab2b2008-12-13 21:20:26 +1030275 clockevent_mxc.cpumask = cpumask_of(0);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200276
277 clockevents_register_device(&clockevent_mxc);
278
279 return 0;
280}
281
Sascha Hauer8db5d1a2009-05-25 12:21:38 +0200282void __init mxc_timer_init(struct clk *timer_clk, void __iomem *base, int irq)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200283{
Sascha Hauerec996ba2009-02-18 20:58:40 +0100284 uint32_t tctl_val;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100285
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200286 clk_enable(timer_clk);
287
Sascha Hauer8db5d1a2009-05-25 12:21:38 +0200288 timer_base = base;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100289
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200290 /*
291 * Initialise to a known state (all timers off, and timing reset)
292 */
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200293
Sascha Hauerec996ba2009-02-18 20:58:40 +0100294 __raw_writel(0, timer_base + MXC_TCTL);
295 __raw_writel(0, timer_base + MXC_TPRER); /* see datasheet note */
296
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100297 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300298 tctl_val = V2_TCTL_CLK_IPG | V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100299 else
300 tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
301
302 __raw_writel(tctl_val, timer_base + MXC_TCTL);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200303
304 /* init and register the timer to the framework */
Sascha Hauer30c730f2009-02-16 14:36:49 +0100305 mxc_clocksource_init(timer_clk);
306 mxc_clockevent_init(timer_clk);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200307
308 /* Make irqs happen */
Sascha Hauerec996ba2009-02-18 20:58:40 +0100309 setup_irq(irq, &mxc_timer_irq);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200310}