blob: 9f0c2610595ef5e282059e981278af5fdd0985fb [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>
Juergen Beisertd0f349f2008-07-05 10:02:50 +020030#include <asm/mach/time.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010031#include <mach/common.h>
Sascha Hauerec996ba2009-02-18 20:58:40 +010032
Sascha Hauer0f3332c2009-12-04 09:34:51 +010033/*
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
Sascha Hauerec996ba2009-02-18 20:58:40 +010039/* defines common for all i.MX */
40#define MXC_TCTL 0x00
Sascha Hauer0f3332c2009-12-04 09:34:51 +010041#define MXC_TCTL_TEN (1 << 0) /* Enable module */
Sascha Hauerec996ba2009-02-18 20:58:40 +010042#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
Sascha Hauer0f3332c2009-12-04 09:34:51 +010056/* MX31, MX35, MX25, MXC91231, MX5 */
Amit Kucheria38a66f52010-04-21 21:34:36 +030057#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
Juergen Beisertd0f349f2008-07-05 10:02:50 +020065
Sascha Hauer0f3332c2009-12-04 09:34:51 +010066#define timer_is_v1() (cpu_is_mx1() || cpu_is_mx21() || cpu_is_mx27())
67#define timer_is_v2() (!timer_is_v1())
68
Juergen Beisertd0f349f2008-07-05 10:02:50 +020069static struct clock_event_device clockevent_mxc;
70static enum clock_event_mode clockevent_mode = CLOCK_EVT_MODE_UNUSED;
71
Sascha Hauerec996ba2009-02-18 20:58:40 +010072static void __iomem *timer_base;
Juergen Beisertd0f349f2008-07-05 10:02:50 +020073
Sascha Hauerec996ba2009-02-18 20:58:40 +010074static inline void gpt_irq_disable(void)
Juergen Beisertd0f349f2008-07-05 10:02:50 +020075{
Sascha Hauerec996ba2009-02-18 20:58:40 +010076 unsigned int tmp;
77
Sascha Hauer0f3332c2009-12-04 09:34:51 +010078 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +030079 __raw_writel(0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +010080 else {
81 tmp = __raw_readl(timer_base + MXC_TCTL);
82 __raw_writel(tmp & ~MX1_2_TCTL_IRQEN, timer_base + MXC_TCTL);
83 }
84}
85
86static inline void gpt_irq_enable(void)
87{
Sascha Hauer0f3332c2009-12-04 09:34:51 +010088 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +030089 __raw_writel(1<<0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +010090 else {
91 __raw_writel(__raw_readl(timer_base + MXC_TCTL) | MX1_2_TCTL_IRQEN,
92 timer_base + MXC_TCTL);
93 }
94}
95
96static void gpt_irq_acknowledge(void)
97{
Sascha Hauer0f3332c2009-12-04 09:34:51 +010098 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())
Wolfram Sangd943f2c2010-04-23 06:49:43 +0200105 __raw_writel(V2_TSTAT_OF1, timer_base + V2_TSTAT);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100106}
107
108static cycle_t mx1_2_get_cycles(struct clocksource *cs)
109{
110 return __raw_readl(timer_base + MX1_2_TCN);
111}
112
Amit Kucheria38a66f52010-04-21 21:34:36 +0300113static cycle_t v2_get_cycles(struct clocksource *cs)
Sascha Hauerec996ba2009-02-18 20:58:40 +0100114{
Amit Kucheria38a66f52010-04-21 21:34:36 +0300115 return __raw_readl(timer_base + V2_TCN);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200116}
117
118static struct clocksource clocksource_mxc = {
119 .name = "mxc_timer1",
120 .rating = 200,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100121 .read = mx1_2_get_cycles,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200122 .mask = CLOCKSOURCE_MASK(32),
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200123 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
124};
125
Sascha Hauer30c730f2009-02-16 14:36:49 +0100126static int __init mxc_clocksource_init(struct clk *timer_clk)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200127{
Holger Schurig058b7a62009-01-26 16:34:51 +0100128 unsigned int c = clk_get_rate(timer_clk);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200129
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100130 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300131 clocksource_mxc.read = v2_get_cycles;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100132
Russell King509e1f02010-12-13 13:20:35 +0000133 clocksource_register_hz(&clocksource_mxc, c);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200134
135 return 0;
136}
137
138/* clock event */
139
Sascha Hauerec996ba2009-02-18 20:58:40 +0100140static int mx1_2_set_next_event(unsigned long evt,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200141 struct clock_event_device *unused)
142{
143 unsigned long tcmp;
144
Sascha Hauerec996ba2009-02-18 20:58:40 +0100145 tcmp = __raw_readl(timer_base + MX1_2_TCN) + evt;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200146
Sascha Hauerec996ba2009-02-18 20:58:40 +0100147 __raw_writel(tcmp, timer_base + MX1_2_TCMP);
148
149 return (int)(tcmp - __raw_readl(timer_base + MX1_2_TCN)) < 0 ?
150 -ETIME : 0;
151}
152
Amit Kucheria38a66f52010-04-21 21:34:36 +0300153static int v2_set_next_event(unsigned long evt,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100154 struct clock_event_device *unused)
155{
156 unsigned long tcmp;
157
Amit Kucheria38a66f52010-04-21 21:34:36 +0300158 tcmp = __raw_readl(timer_base + V2_TCN) + evt;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100159
Amit Kucheria38a66f52010-04-21 21:34:36 +0300160 __raw_writel(tcmp, timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100161
Amit Kucheria38a66f52010-04-21 21:34:36 +0300162 return (int)(tcmp - __raw_readl(timer_base + V2_TCN)) < 0 ?
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200163 -ETIME : 0;
164}
165
166#ifdef DEBUG
167static const char *clock_event_mode_label[] = {
168 [CLOCK_EVT_MODE_PERIODIC] = "CLOCK_EVT_MODE_PERIODIC",
169 [CLOCK_EVT_MODE_ONESHOT] = "CLOCK_EVT_MODE_ONESHOT",
170 [CLOCK_EVT_MODE_SHUTDOWN] = "CLOCK_EVT_MODE_SHUTDOWN",
171 [CLOCK_EVT_MODE_UNUSED] = "CLOCK_EVT_MODE_UNUSED"
172};
173#endif /* DEBUG */
174
175static void mxc_set_mode(enum clock_event_mode mode,
176 struct clock_event_device *evt)
177{
178 unsigned long flags;
179
180 /*
181 * The timer interrupt generation is disabled at least
182 * for enough time to call mxc_set_next_event()
183 */
184 local_irq_save(flags);
185
186 /* Disable interrupt in GPT module */
187 gpt_irq_disable();
188
189 if (mode != clockevent_mode) {
190 /* Set event time into far-far future */
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100191 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300192 __raw_writel(__raw_readl(timer_base + V2_TCN) - 3,
193 timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100194 else
195 __raw_writel(__raw_readl(timer_base + MX1_2_TCN) - 3,
196 timer_base + MX1_2_TCMP);
197
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200198 /* Clear pending interrupt */
199 gpt_irq_acknowledge();
200 }
201
202#ifdef DEBUG
203 printk(KERN_INFO "mxc_set_mode: changing mode from %s to %s\n",
204 clock_event_mode_label[clockevent_mode],
205 clock_event_mode_label[mode]);
206#endif /* DEBUG */
207
208 /* Remember timer mode */
209 clockevent_mode = mode;
210 local_irq_restore(flags);
211
212 switch (mode) {
213 case CLOCK_EVT_MODE_PERIODIC:
214 printk(KERN_ERR"mxc_set_mode: Periodic mode is not "
215 "supported for i.MX\n");
216 break;
217 case CLOCK_EVT_MODE_ONESHOT:
218 /*
219 * Do not put overhead of interrupt enable/disable into
220 * mxc_set_next_event(), the core has about 4 minutes
221 * to call mxc_set_next_event() or shutdown clock after
222 * mode switching
223 */
224 local_irq_save(flags);
225 gpt_irq_enable();
226 local_irq_restore(flags);
227 break;
228 case CLOCK_EVT_MODE_SHUTDOWN:
229 case CLOCK_EVT_MODE_UNUSED:
230 case CLOCK_EVT_MODE_RESUME:
231 /* Left event sources disabled, no more interrupts appear */
232 break;
233 }
234}
235
236/*
237 * IRQ handler for the timer
238 */
239static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
240{
241 struct clock_event_device *evt = &clockevent_mxc;
242 uint32_t tstat;
243
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100244 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300245 tstat = __raw_readl(timer_base + V2_TSTAT);
Sascha Hauer81ec1f92009-04-29 13:55:13 +0200246 else
247 tstat = __raw_readl(timer_base + MX1_2_TSTAT);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200248
249 gpt_irq_acknowledge();
250
251 evt->event_handler(evt);
252
253 return IRQ_HANDLED;
254}
255
256static struct irqaction mxc_timer_irq = {
257 .name = "i.MX Timer Tick",
258 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
259 .handler = mxc_timer_interrupt,
260};
261
262static struct clock_event_device clockevent_mxc = {
263 .name = "mxc_timer1",
264 .features = CLOCK_EVT_FEAT_ONESHOT,
265 .shift = 32,
266 .set_mode = mxc_set_mode,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100267 .set_next_event = mx1_2_set_next_event,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200268 .rating = 200,
269};
270
Sascha Hauer30c730f2009-02-16 14:36:49 +0100271static int __init mxc_clockevent_init(struct clk *timer_clk)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200272{
Holger Schurig058b7a62009-01-26 16:34:51 +0100273 unsigned int c = clk_get_rate(timer_clk);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200274
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100275 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300276 clockevent_mxc.set_next_event = v2_set_next_event;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100277
Holger Schurig058b7a62009-01-26 16:34:51 +0100278 clockevent_mxc.mult = div_sc(c, NSEC_PER_SEC,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200279 clockevent_mxc.shift);
280 clockevent_mxc.max_delta_ns =
281 clockevent_delta2ns(0xfffffffe, &clockevent_mxc);
282 clockevent_mxc.min_delta_ns =
283 clockevent_delta2ns(0xff, &clockevent_mxc);
284
Rusty Russell320ab2b2008-12-13 21:20:26 +1030285 clockevent_mxc.cpumask = cpumask_of(0);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200286
287 clockevents_register_device(&clockevent_mxc);
288
289 return 0;
290}
291
Sascha Hauer8db5d1a2009-05-25 12:21:38 +0200292void __init mxc_timer_init(struct clk *timer_clk, void __iomem *base, int irq)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200293{
Sascha Hauerec996ba2009-02-18 20:58:40 +0100294 uint32_t tctl_val;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100295
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200296 clk_enable(timer_clk);
297
Sascha Hauer8db5d1a2009-05-25 12:21:38 +0200298 timer_base = base;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100299
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200300 /*
301 * Initialise to a known state (all timers off, and timing reset)
302 */
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200303
Sascha Hauerec996ba2009-02-18 20:58:40 +0100304 __raw_writel(0, timer_base + MXC_TCTL);
305 __raw_writel(0, timer_base + MXC_TPRER); /* see datasheet note */
306
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100307 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300308 tctl_val = V2_TCTL_CLK_IPG | V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100309 else
310 tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
311
312 __raw_writel(tctl_val, timer_base + MXC_TCTL);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200313
314 /* init and register the timer to the framework */
Sascha Hauer30c730f2009-02-16 14:36:49 +0100315 mxc_clocksource_init(timer_clk);
316 mxc_clockevent_init(timer_clk);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200317
318 /* Make irqs happen */
Sascha Hauerec996ba2009-02-18 20:58:40 +0100319 setup_irq(irq, &mxc_timer_irq);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200320}