blob: b4609283085bac97b3bd8ff0270d264b338d3c1b [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>
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +010028#include <linux/delay.h>
Sascha Hauer821dc4d2012-03-09 09:29:27 +010029#include <linux/err.h>
Stephen Boyd38ff87f2013-06-01 23:39:40 -070030#include <linux/sched_clock.h>
Shawn Guo6dd74782015-05-22 13:53:45 +080031#include <linux/slab.h>
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +020032#include <linux/of.h>
33#include <linux/of_address.h>
34#include <linux/of_irq.h>
Shawn Guo0931aff2015-05-15 11:41:39 +080035#include <soc/imx/timer.h>
Juergen Beisertd0f349f2008-07-05 10:02:50 +020036
Juergen Beisertd0f349f2008-07-05 10:02:50 +020037#include <asm/mach/time.h>
Shawn Guoe3372472012-09-13 21:01:00 +080038
Sascha Hauer0f3332c2009-12-04 09:34:51 +010039/*
Shenwei Wang65d0a162015-04-29 16:40:27 -050040 * There are 4 versions of the timer hardware on Freescale MXC hardware.
41 * - MX1/MXL
42 * - MX21, MX27.
43 * - MX25, MX31, MX35, MX37, MX51, MX6Q(rev1.0)
44 * - MX6DL, MX6SX, MX6Q(rev1.1+)
Sascha Hauer0f3332c2009-12-04 09:34:51 +010045 */
46
Sascha Hauerec996ba2009-02-18 20:58:40 +010047/* defines common for all i.MX */
48#define MXC_TCTL 0x00
Sascha Hauer0f3332c2009-12-04 09:34:51 +010049#define MXC_TCTL_TEN (1 << 0) /* Enable module */
Sascha Hauerec996ba2009-02-18 20:58:40 +010050#define MXC_TPRER 0x04
51
52/* MX1, MX21, MX27 */
53#define MX1_2_TCTL_CLK_PCLK1 (1 << 1)
54#define MX1_2_TCTL_IRQEN (1 << 4)
55#define MX1_2_TCTL_FRR (1 << 8)
56#define MX1_2_TCMP 0x08
57#define MX1_2_TCN 0x10
58#define MX1_2_TSTAT 0x14
59
60/* MX21, MX27 */
61#define MX2_TSTAT_CAPT (1 << 1)
62#define MX2_TSTAT_COMP (1 << 0)
63
Anson Huangbad3db12014-09-11 11:29:42 +080064/* MX31, MX35, MX25, MX5, MX6 */
Amit Kucheria38a66f52010-04-21 21:34:36 +030065#define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */
66#define V2_TCTL_CLK_IPG (1 << 6)
Richard Zhao1f152b42012-05-15 15:34:40 +080067#define V2_TCTL_CLK_PER (2 << 6)
Anson Huangbad3db12014-09-11 11:29:42 +080068#define V2_TCTL_CLK_OSC_DIV8 (5 << 6)
Amit Kucheria38a66f52010-04-21 21:34:36 +030069#define V2_TCTL_FRR (1 << 9)
Anson Huangbad3db12014-09-11 11:29:42 +080070#define V2_TCTL_24MEN (1 << 10)
71#define V2_TPRER_PRE24M 12
Amit Kucheria38a66f52010-04-21 21:34:36 +030072#define V2_IR 0x0c
73#define V2_TSTAT 0x08
74#define V2_TSTAT_OF1 (1 << 0)
75#define V2_TCN 0x24
76#define V2_TCMP 0x10
Juergen Beisertd0f349f2008-07-05 10:02:50 +020077
Anson Huangbad3db12014-09-11 11:29:42 +080078#define V2_TIMER_RATE_OSC_DIV8 3000000
79
Shawn Guo6dd74782015-05-22 13:53:45 +080080struct imx_timer {
Shawn Guo0931aff2015-05-15 11:41:39 +080081 enum imx_gpt_type type;
Shawn Guo6dd74782015-05-22 13:53:45 +080082 void __iomem *base;
83 int irq;
84 struct clk *clk_per;
85 struct clk *clk_ipg;
Shawn Guo9c8694b2015-05-15 14:24:41 +080086 const struct imx_gpt_data *gpt;
Shawn Guoe510d202015-05-22 16:38:49 +080087 struct clock_event_device ced;
88 enum clock_event_mode cem;
89 struct irqaction act;
Shawn Guo9c8694b2015-05-15 14:24:41 +080090};
91
92struct imx_gpt_data {
Shawn Guo24f74ad2015-05-22 21:39:55 +080093 int reg_tstat;
94 int reg_tcn;
95 int reg_tcmp;
Shawn Guo9c8694b2015-05-15 14:24:41 +080096 void (*gpt_setup_tctl)(struct imx_timer *imxtm);
Shawn Guodb2ae4b2015-05-22 22:42:55 +080097 void (*gpt_irq_enable)(struct imx_timer *imxtm);
98 void (*gpt_irq_disable)(struct imx_timer *imxtm);
99 void (*gpt_irq_acknowledge)(struct imx_timer *imxtm);
Shawn Guo5ab04752015-05-22 15:51:41 +0800100 int (*set_next_event)(unsigned long evt,
101 struct clock_event_device *ced);
Shawn Guo6dd74782015-05-22 13:53:45 +0800102};
103
Shawn Guoe510d202015-05-22 16:38:49 +0800104static inline struct imx_timer *to_imx_timer(struct clock_event_device *ced)
105{
106 return container_of(ced, struct imx_timer, ced);
107}
108
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800109static void imx1_gpt_irq_disable(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200110{
Sascha Hauerec996ba2009-02-18 20:58:40 +0100111 unsigned int tmp;
112
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800113 tmp = readl_relaxed(imxtm->base + MXC_TCTL);
114 writel_relaxed(tmp & ~MX1_2_TCTL_IRQEN, imxtm->base + MXC_TCTL);
115}
116#define imx21_gpt_irq_disable imx1_gpt_irq_disable
117
118static void imx31_gpt_irq_disable(struct imx_timer *imxtm)
119{
120 writel_relaxed(0, imxtm->base + V2_IR);
121}
122#define imx6dl_gpt_irq_disable imx31_gpt_irq_disable
123
124static void imx1_gpt_irq_enable(struct imx_timer *imxtm)
125{
126 unsigned int tmp;
127
128 tmp = readl_relaxed(imxtm->base + MXC_TCTL);
129 writel_relaxed(tmp | MX1_2_TCTL_IRQEN, imxtm->base + MXC_TCTL);
130}
131#define imx21_gpt_irq_enable imx1_gpt_irq_enable
132
133static void imx31_gpt_irq_enable(struct imx_timer *imxtm)
134{
135 writel_relaxed(1<<0, imxtm->base + V2_IR);
136}
137#define imx6dl_gpt_irq_enable imx31_gpt_irq_enable
138
139static void imx1_gpt_irq_acknowledge(struct imx_timer *imxtm)
140{
141 writel_relaxed(0, imxtm->base + MX1_2_TSTAT);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100142}
143
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800144static void imx21_gpt_irq_acknowledge(struct imx_timer *imxtm)
Sascha Hauerec996ba2009-02-18 20:58:40 +0100145{
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800146 writel_relaxed(MX2_TSTAT_CAPT | MX2_TSTAT_COMP,
Shawn Guo89955522015-05-22 22:23:28 +0800147 imxtm->base + MX1_2_TSTAT);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100148}
149
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800150static void imx31_gpt_irq_acknowledge(struct imx_timer *imxtm)
151{
152 writel_relaxed(V2_TSTAT_OF1, imxtm->base + V2_TSTAT);
153}
154#define imx6dl_gpt_irq_acknowledge imx31_gpt_irq_acknowledge
155
Russell King234b6ced2011-05-08 14:09:47 +0100156static void __iomem *sched_clock_reg;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200157
Stephen Boydb93767e2013-11-15 15:26:12 -0800158static u64 notrace mxc_read_sched_clock(void)
Jan Weitzelc124bef2011-03-17 13:44:30 +0100159{
Shawn Guoc7770bb2015-05-19 18:47:47 +0800160 return sched_clock_reg ? readl_relaxed(sched_clock_reg) : 0;
Jan Weitzelc124bef2011-03-17 13:44:30 +0100161}
162
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100163static struct delay_timer imx_delay_timer;
164
165static unsigned long imx_read_current_timer(void)
166{
Shawn Guoc7770bb2015-05-19 18:47:47 +0800167 return readl_relaxed(sched_clock_reg);
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100168}
169
Shawn Guo6dd74782015-05-22 13:53:45 +0800170static int __init mxc_clocksource_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200171{
Shawn Guo6dd74782015-05-22 13:53:45 +0800172 unsigned int c = clk_get_rate(imxtm->clk_per);
Shawn Guo24f74ad2015-05-22 21:39:55 +0800173 void __iomem *reg = imxtm->base + imxtm->gpt->reg_tcn;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200174
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100175 imx_delay_timer.read_current_timer = &imx_read_current_timer;
176 imx_delay_timer.freq = c;
177 register_current_timer_delay(&imx_delay_timer);
178
Russell King234b6ced2011-05-08 14:09:47 +0100179 sched_clock_reg = reg;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100180
Stephen Boydb93767e2013-11-15 15:26:12 -0800181 sched_clock_register(mxc_read_sched_clock, 32, c);
Russell King234b6ced2011-05-08 14:09:47 +0100182 return clocksource_mmio_init(reg, "mxc_timer1", c, 200, 32,
183 clocksource_mmio_readl_up);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200184}
185
186/* clock event */
187
Sascha Hauerec996ba2009-02-18 20:58:40 +0100188static int mx1_2_set_next_event(unsigned long evt,
Shawn Guo89955522015-05-22 22:23:28 +0800189 struct clock_event_device *ced)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200190{
Shawn Guo89955522015-05-22 22:23:28 +0800191 struct imx_timer *imxtm = to_imx_timer(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200192 unsigned long tcmp;
193
Shawn Guo89955522015-05-22 22:23:28 +0800194 tcmp = readl_relaxed(imxtm->base + MX1_2_TCN) + evt;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200195
Shawn Guo89955522015-05-22 22:23:28 +0800196 writel_relaxed(tcmp, imxtm->base + MX1_2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100197
Shawn Guo89955522015-05-22 22:23:28 +0800198 return (int)(tcmp - readl_relaxed(imxtm->base + MX1_2_TCN)) < 0 ?
Sascha Hauerec996ba2009-02-18 20:58:40 +0100199 -ETIME : 0;
200}
201
Amit Kucheria38a66f52010-04-21 21:34:36 +0300202static int v2_set_next_event(unsigned long evt,
Shawn Guo89955522015-05-22 22:23:28 +0800203 struct clock_event_device *ced)
Sascha Hauerec996ba2009-02-18 20:58:40 +0100204{
Shawn Guo89955522015-05-22 22:23:28 +0800205 struct imx_timer *imxtm = to_imx_timer(ced);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100206 unsigned long tcmp;
207
Shawn Guo89955522015-05-22 22:23:28 +0800208 tcmp = readl_relaxed(imxtm->base + V2_TCN) + evt;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100209
Shawn Guo89955522015-05-22 22:23:28 +0800210 writel_relaxed(tcmp, imxtm->base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100211
Shawn Guoeea8e322012-12-06 22:54:41 +0800212 return evt < 0x7fffffff &&
Shawn Guo89955522015-05-22 22:23:28 +0800213 (int)(tcmp - readl_relaxed(imxtm->base + V2_TCN)) < 0 ?
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200214 -ETIME : 0;
215}
216
217#ifdef DEBUG
218static const char *clock_event_mode_label[] = {
219 [CLOCK_EVT_MODE_PERIODIC] = "CLOCK_EVT_MODE_PERIODIC",
220 [CLOCK_EVT_MODE_ONESHOT] = "CLOCK_EVT_MODE_ONESHOT",
221 [CLOCK_EVT_MODE_SHUTDOWN] = "CLOCK_EVT_MODE_SHUTDOWN",
Uwe Kleine-Königde9c5152012-07-16 22:07:06 +0200222 [CLOCK_EVT_MODE_UNUSED] = "CLOCK_EVT_MODE_UNUSED",
223 [CLOCK_EVT_MODE_RESUME] = "CLOCK_EVT_MODE_RESUME",
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200224};
225#endif /* DEBUG */
226
227static void mxc_set_mode(enum clock_event_mode mode,
Shawn Guoe510d202015-05-22 16:38:49 +0800228 struct clock_event_device *ced)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200229{
Shawn Guoe510d202015-05-22 16:38:49 +0800230 struct imx_timer *imxtm = to_imx_timer(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200231 unsigned long flags;
232
233 /*
234 * The timer interrupt generation is disabled at least
235 * for enough time to call mxc_set_next_event()
236 */
237 local_irq_save(flags);
238
239 /* Disable interrupt in GPT module */
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800240 imxtm->gpt->gpt_irq_disable(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200241
Shawn Guoe510d202015-05-22 16:38:49 +0800242 if (mode != imxtm->cem) {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800243 u32 tcn = readl_relaxed(imxtm->base + imxtm->gpt->reg_tcn);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200244 /* Set event time into far-far future */
Shawn Guo24f74ad2015-05-22 21:39:55 +0800245 writel_relaxed(tcn - 3, imxtm->base + imxtm->gpt->reg_tcmp);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100246
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200247 /* Clear pending interrupt */
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800248 imxtm->gpt->gpt_irq_acknowledge(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200249 }
250
251#ifdef DEBUG
252 printk(KERN_INFO "mxc_set_mode: changing mode from %s to %s\n",
Shawn Guoe510d202015-05-22 16:38:49 +0800253 clock_event_mode_label[imxtm->cem],
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200254 clock_event_mode_label[mode]);
255#endif /* DEBUG */
256
257 /* Remember timer mode */
Shawn Guoe510d202015-05-22 16:38:49 +0800258 imxtm->cem = mode;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200259 local_irq_restore(flags);
260
261 switch (mode) {
262 case CLOCK_EVT_MODE_PERIODIC:
263 printk(KERN_ERR"mxc_set_mode: Periodic mode is not "
264 "supported for i.MX\n");
265 break;
266 case CLOCK_EVT_MODE_ONESHOT:
267 /*
268 * Do not put overhead of interrupt enable/disable into
269 * mxc_set_next_event(), the core has about 4 minutes
270 * to call mxc_set_next_event() or shutdown clock after
271 * mode switching
272 */
273 local_irq_save(flags);
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800274 imxtm->gpt->gpt_irq_enable(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200275 local_irq_restore(flags);
276 break;
277 case CLOCK_EVT_MODE_SHUTDOWN:
278 case CLOCK_EVT_MODE_UNUSED:
279 case CLOCK_EVT_MODE_RESUME:
280 /* Left event sources disabled, no more interrupts appear */
281 break;
282 }
283}
284
285/*
286 * IRQ handler for the timer
287 */
288static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
289{
Shawn Guoe510d202015-05-22 16:38:49 +0800290 struct clock_event_device *ced = dev_id;
Shawn Guo24f74ad2015-05-22 21:39:55 +0800291 struct imx_timer *imxtm = to_imx_timer(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200292 uint32_t tstat;
293
Shawn Guo24f74ad2015-05-22 21:39:55 +0800294 tstat = readl_relaxed(imxtm->base + imxtm->gpt->reg_tstat);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200295
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800296 imxtm->gpt->gpt_irq_acknowledge(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200297
Shawn Guoe510d202015-05-22 16:38:49 +0800298 ced->event_handler(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200299
300 return IRQ_HANDLED;
301}
302
Shawn Guo6dd74782015-05-22 13:53:45 +0800303static int __init mxc_clockevent_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200304{
Shawn Guoe510d202015-05-22 16:38:49 +0800305 struct clock_event_device *ced = &imxtm->ced;
306 struct irqaction *act = &imxtm->act;
307
308 imxtm->cem = CLOCK_EVT_MODE_UNUSED;
309
310 ced->name = "mxc_timer1";
311 ced->features = CLOCK_EVT_FEAT_ONESHOT;
312 ced->set_mode = mxc_set_mode;
313 ced->set_next_event = imxtm->gpt->set_next_event;
314 ced->rating = 200;
315 ced->cpumask = cpumask_of(0);
316 clockevents_config_and_register(ced, clk_get_rate(imxtm->clk_per),
Shawn Guo838a2ae2013-01-12 11:50:05 +0000317 0xff, 0xfffffffe);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200318
Shawn Guoe510d202015-05-22 16:38:49 +0800319 act->name = "i.MX Timer Tick";
320 act->flags = IRQF_TIMER | IRQF_IRQPOLL;
321 act->handler = mxc_timer_interrupt;
322 act->dev_id = ced;
323
324 return setup_irq(imxtm->irq, act);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200325}
326
Shawn Guo9c8694b2015-05-15 14:24:41 +0800327static void imx1_gpt_setup_tctl(struct imx_timer *imxtm)
328{
329 u32 tctl_val;
330
331 tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
332 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
333}
334#define imx21_gpt_setup_tctl imx1_gpt_setup_tctl
335
336static void imx31_gpt_setup_tctl(struct imx_timer *imxtm)
337{
338 u32 tctl_val;
339
340 tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
341 if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8)
342 tctl_val |= V2_TCTL_CLK_OSC_DIV8;
343 else
344 tctl_val |= V2_TCTL_CLK_PER;
345
346 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
347}
348
349static void imx6dl_gpt_setup_tctl(struct imx_timer *imxtm)
350{
351 u32 tctl_val;
352
353 tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
354 if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8) {
355 tctl_val |= V2_TCTL_CLK_OSC_DIV8;
356 /* 24 / 8 = 3 MHz */
357 writel_relaxed(7 << V2_TPRER_PRE24M, imxtm->base + MXC_TPRER);
358 tctl_val |= V2_TCTL_24MEN;
359 } else {
360 tctl_val |= V2_TCTL_CLK_PER;
361 }
362
363 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
364}
365
366static const struct imx_gpt_data imx1_gpt_data = {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800367 .reg_tstat = MX1_2_TSTAT,
368 .reg_tcn = MX1_2_TCN,
369 .reg_tcmp = MX1_2_TCMP,
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800370 .gpt_irq_enable = imx1_gpt_irq_enable,
371 .gpt_irq_disable = imx1_gpt_irq_disable,
372 .gpt_irq_acknowledge = imx1_gpt_irq_acknowledge,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800373 .gpt_setup_tctl = imx1_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800374 .set_next_event = mx1_2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800375};
376
377static const struct imx_gpt_data imx21_gpt_data = {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800378 .reg_tstat = MX1_2_TSTAT,
379 .reg_tcn = MX1_2_TCN,
380 .reg_tcmp = MX1_2_TCMP,
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800381 .gpt_irq_enable = imx21_gpt_irq_enable,
382 .gpt_irq_disable = imx21_gpt_irq_disable,
383 .gpt_irq_acknowledge = imx21_gpt_irq_acknowledge,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800384 .gpt_setup_tctl = imx21_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800385 .set_next_event = mx1_2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800386};
387
388static const struct imx_gpt_data imx31_gpt_data = {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800389 .reg_tstat = V2_TSTAT,
390 .reg_tcn = V2_TCN,
391 .reg_tcmp = V2_TCMP,
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800392 .gpt_irq_enable = imx31_gpt_irq_enable,
393 .gpt_irq_disable = imx31_gpt_irq_disable,
394 .gpt_irq_acknowledge = imx31_gpt_irq_acknowledge,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800395 .gpt_setup_tctl = imx31_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800396 .set_next_event = v2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800397};
398
399static const struct imx_gpt_data imx6dl_gpt_data = {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800400 .reg_tstat = V2_TSTAT,
401 .reg_tcn = V2_TCN,
402 .reg_tcmp = V2_TCMP,
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800403 .gpt_irq_enable = imx6dl_gpt_irq_enable,
404 .gpt_irq_disable = imx6dl_gpt_irq_disable,
405 .gpt_irq_acknowledge = imx6dl_gpt_irq_acknowledge,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800406 .gpt_setup_tctl = imx6dl_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800407 .set_next_event = v2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800408};
409
Shawn Guo6dd74782015-05-22 13:53:45 +0800410static void __init _mxc_timer_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200411{
Shawn Guo9c8694b2015-05-15 14:24:41 +0800412 switch (imxtm->type) {
413 case GPT_TYPE_IMX1:
414 imxtm->gpt = &imx1_gpt_data;
415 break;
416 case GPT_TYPE_IMX21:
417 imxtm->gpt = &imx21_gpt_data;
418 break;
419 case GPT_TYPE_IMX31:
420 imxtm->gpt = &imx31_gpt_data;
421 break;
422 case GPT_TYPE_IMX6DL:
423 imxtm->gpt = &imx6dl_gpt_data;
424 break;
425 default:
426 BUG();
427 }
428
Shawn Guo6dd74782015-05-22 13:53:45 +0800429 if (IS_ERR(imxtm->clk_per)) {
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200430 pr_err("i.MX timer: unable to get clk\n");
431 return;
Sascha Hauer821dc4d2012-03-09 09:29:27 +0100432 }
Sascha Hauerec996ba2009-02-18 20:58:40 +0100433
Shawn Guo6dd74782015-05-22 13:53:45 +0800434 if (!IS_ERR(imxtm->clk_ipg))
435 clk_prepare_enable(imxtm->clk_ipg);
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200436
Shawn Guo6dd74782015-05-22 13:53:45 +0800437 clk_prepare_enable(imxtm->clk_per);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200438
439 /*
440 * Initialise to a known state (all timers off, and timing reset)
441 */
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200442
Shawn Guo6dd74782015-05-22 13:53:45 +0800443 writel_relaxed(0, imxtm->base + MXC_TCTL);
444 writel_relaxed(0, imxtm->base + MXC_TPRER); /* see datasheet note */
Sascha Hauerec996ba2009-02-18 20:58:40 +0100445
Shawn Guo9c8694b2015-05-15 14:24:41 +0800446 imxtm->gpt->gpt_setup_tctl(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200447
448 /* init and register the timer to the framework */
Shawn Guo6dd74782015-05-22 13:53:45 +0800449 mxc_clocksource_init(imxtm);
450 mxc_clockevent_init(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200451}
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200452
Shawn Guo0931aff2015-05-15 11:41:39 +0800453void __init mxc_timer_init(unsigned long pbase, int irq, enum imx_gpt_type type)
Alexander Shiyanf4696752014-05-27 13:04:46 +0400454{
Shawn Guo6dd74782015-05-22 13:53:45 +0800455 struct imx_timer *imxtm;
Alexander Shiyanf4696752014-05-27 13:04:46 +0400456
Shawn Guo6dd74782015-05-22 13:53:45 +0800457 imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
458 BUG_ON(!imxtm);
Alexander Shiyand7f98912014-05-27 13:04:47 +0400459
Shawn Guo6dd74782015-05-22 13:53:45 +0800460 imxtm->clk_per = clk_get_sys("imx-gpt.0", "per");
461 imxtm->clk_ipg = clk_get_sys("imx-gpt.0", "ipg");
462
463 imxtm->base = ioremap(pbase, SZ_4K);
464 BUG_ON(!imxtm->base);
465
Shawn Guo0931aff2015-05-15 11:41:39 +0800466 imxtm->type = type;
467
Shawn Guo6dd74782015-05-22 13:53:45 +0800468 _mxc_timer_init(imxtm);
Alexander Shiyanf4696752014-05-27 13:04:46 +0400469}
470
Shawn Guobef11c82015-05-15 13:38:20 +0800471static void __init mxc_timer_init_dt(struct device_node *np, enum imx_gpt_type type)
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200472{
Shawn Guo6dd74782015-05-22 13:53:45 +0800473 struct imx_timer *imxtm;
474 static int initialized;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200475
Shawn Guo6dd74782015-05-22 13:53:45 +0800476 /* Support one instance only */
477 if (initialized)
Alexander Shiyanfd4959d2014-07-13 09:34:00 +0400478 return;
479
Shawn Guo6dd74782015-05-22 13:53:45 +0800480 imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
481 BUG_ON(!imxtm);
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200482
Shawn Guo6dd74782015-05-22 13:53:45 +0800483 imxtm->base = of_iomap(np, 0);
484 WARN_ON(!imxtm->base);
485 imxtm->irq = irq_of_parse_and_map(np, 0);
486
487 imxtm->clk_ipg = of_clk_get_by_name(np, "ipg");
Alexander Shiyanf4696752014-05-27 13:04:46 +0400488
Anson Huangbad3db12014-09-11 11:29:42 +0800489 /* Try osc_per first, and fall back to per otherwise */
Shawn Guo6dd74782015-05-22 13:53:45 +0800490 imxtm->clk_per = of_clk_get_by_name(np, "osc_per");
491 if (IS_ERR(imxtm->clk_per))
492 imxtm->clk_per = of_clk_get_by_name(np, "per");
Anson Huangbad3db12014-09-11 11:29:42 +0800493
Shawn Guobef11c82015-05-15 13:38:20 +0800494 imxtm->type = type;
495
Shawn Guo6dd74782015-05-22 13:53:45 +0800496 _mxc_timer_init(imxtm);
497
498 initialized = 1;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200499}
Shawn Guobef11c82015-05-15 13:38:20 +0800500
501static void __init imx1_timer_init_dt(struct device_node *np)
502{
503 mxc_timer_init_dt(np, GPT_TYPE_IMX1);
504}
505
506static void __init imx21_timer_init_dt(struct device_node *np)
507{
508 mxc_timer_init_dt(np, GPT_TYPE_IMX21);
509}
510
511static void __init imx31_timer_init_dt(struct device_node *np)
512{
513 enum imx_gpt_type type = GPT_TYPE_IMX31;
514
515 /*
516 * We were using the same compatible string for i.MX6Q/D and i.MX6DL/S
517 * GPT device, while they actually have different programming model.
518 * This is a workaround to keep the existing i.MX6DL/S DTBs continue
519 * working with the new kernel.
520 */
521 if (of_machine_is_compatible("fsl,imx6dl"))
522 type = GPT_TYPE_IMX6DL;
523
524 mxc_timer_init_dt(np, type);
525}
526
527static void __init imx6dl_timer_init_dt(struct device_node *np)
528{
529 mxc_timer_init_dt(np, GPT_TYPE_IMX6DL);
530}
531
532CLOCKSOURCE_OF_DECLARE(imx1_timer, "fsl,imx1-gpt", imx1_timer_init_dt);
533CLOCKSOURCE_OF_DECLARE(imx21_timer, "fsl,imx21-gpt", imx21_timer_init_dt);
534CLOCKSOURCE_OF_DECLARE(imx31_timer, "fsl,imx31-gpt", imx31_timer_init_dt);
535CLOCKSOURCE_OF_DECLARE(imx25_timer, "fsl,imx25-gpt", imx31_timer_init_dt);
536CLOCKSOURCE_OF_DECLARE(imx50_timer, "fsl,imx50-gpt", imx31_timer_init_dt);
537CLOCKSOURCE_OF_DECLARE(imx51_timer, "fsl,imx51-gpt", imx31_timer_init_dt);
538CLOCKSOURCE_OF_DECLARE(imx53_timer, "fsl,imx53-gpt", imx31_timer_init_dt);
539CLOCKSOURCE_OF_DECLARE(imx6q_timer, "fsl,imx6q-gpt", imx31_timer_init_dt);
540CLOCKSOURCE_OF_DECLARE(imx6dl_timer, "fsl,imx6dl-gpt", imx6dl_timer_init_dt);
541CLOCKSOURCE_OF_DECLARE(imx6sl_timer, "fsl,imx6sl-gpt", imx6dl_timer_init_dt);
542CLOCKSOURCE_OF_DECLARE(imx6sx_timer, "fsl,imx6sx-gpt", imx6dl_timer_init_dt);