blob: 165fbbb1c9a049335456cc197392d197c54e93a6 [file] [log] [blame]
Fabio Estevamc53bb602018-05-22 20:05:04 -03001// SPDX-License-Identifier: GPL-2.0+
2//
3// Copyright (C) 2000-2001 Deep Blue Solutions
4// Copyright (C) 2002 Shane Nay (shane@minirl.com)
5// Copyright (C) 2006-2007 Pavel Pisa (ppisa@pikron.com)
6// Copyright (C) 2008 Juergen Beisert (kernel@pengutronix.de)
Juergen Beisertd0f349f2008-07-05 10:02:50 +02007
8#include <linux/interrupt.h>
9#include <linux/irq.h>
10#include <linux/clockchips.h>
11#include <linux/clk.h>
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +010012#include <linux/delay.h>
Sascha Hauer821dc4d2012-03-09 09:29:27 +010013#include <linux/err.h>
Stephen Boyd38ff87f2013-06-01 23:39:40 -070014#include <linux/sched_clock.h>
Shawn Guo6dd74782015-05-22 13:53:45 +080015#include <linux/slab.h>
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +020016#include <linux/of.h>
17#include <linux/of_address.h>
18#include <linux/of_irq.h>
Shawn Guo0931aff2015-05-15 11:41:39 +080019#include <soc/imx/timer.h>
Juergen Beisertd0f349f2008-07-05 10:02:50 +020020
Sascha Hauer0f3332c2009-12-04 09:34:51 +010021/*
Shenwei Wang65d0a162015-04-29 16:40:27 -050022 * There are 4 versions of the timer hardware on Freescale MXC hardware.
23 * - MX1/MXL
24 * - MX21, MX27.
25 * - MX25, MX31, MX35, MX37, MX51, MX6Q(rev1.0)
26 * - MX6DL, MX6SX, MX6Q(rev1.1+)
Sascha Hauer0f3332c2009-12-04 09:34:51 +010027 */
28
Sascha Hauerec996ba2009-02-18 20:58:40 +010029/* defines common for all i.MX */
30#define MXC_TCTL 0x00
Sascha Hauer0f3332c2009-12-04 09:34:51 +010031#define MXC_TCTL_TEN (1 << 0) /* Enable module */
Sascha Hauerec996ba2009-02-18 20:58:40 +010032#define MXC_TPRER 0x04
33
34/* MX1, MX21, MX27 */
35#define MX1_2_TCTL_CLK_PCLK1 (1 << 1)
36#define MX1_2_TCTL_IRQEN (1 << 4)
37#define MX1_2_TCTL_FRR (1 << 8)
38#define MX1_2_TCMP 0x08
39#define MX1_2_TCN 0x10
40#define MX1_2_TSTAT 0x14
41
42/* MX21, MX27 */
43#define MX2_TSTAT_CAPT (1 << 1)
44#define MX2_TSTAT_COMP (1 << 0)
45
Anson Huangbad3db12014-09-11 11:29:42 +080046/* MX31, MX35, MX25, MX5, MX6 */
Amit Kucheria38a66f52010-04-21 21:34:36 +030047#define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */
48#define V2_TCTL_CLK_IPG (1 << 6)
Richard Zhao1f152b42012-05-15 15:34:40 +080049#define V2_TCTL_CLK_PER (2 << 6)
Anson Huangbad3db12014-09-11 11:29:42 +080050#define V2_TCTL_CLK_OSC_DIV8 (5 << 6)
Amit Kucheria38a66f52010-04-21 21:34:36 +030051#define V2_TCTL_FRR (1 << 9)
Anson Huangbad3db12014-09-11 11:29:42 +080052#define V2_TCTL_24MEN (1 << 10)
53#define V2_TPRER_PRE24M 12
Amit Kucheria38a66f52010-04-21 21:34:36 +030054#define V2_IR 0x0c
55#define V2_TSTAT 0x08
56#define V2_TSTAT_OF1 (1 << 0)
57#define V2_TCN 0x24
58#define V2_TCMP 0x10
Juergen Beisertd0f349f2008-07-05 10:02:50 +020059
Anson Huangbad3db12014-09-11 11:29:42 +080060#define V2_TIMER_RATE_OSC_DIV8 3000000
61
Shawn Guo6dd74782015-05-22 13:53:45 +080062struct imx_timer {
Shawn Guo0931aff2015-05-15 11:41:39 +080063 enum imx_gpt_type type;
Shawn Guo6dd74782015-05-22 13:53:45 +080064 void __iomem *base;
65 int irq;
66 struct clk *clk_per;
67 struct clk *clk_ipg;
Shawn Guo9c8694b2015-05-15 14:24:41 +080068 const struct imx_gpt_data *gpt;
Shawn Guoe510d202015-05-22 16:38:49 +080069 struct clock_event_device ced;
Shawn Guoe510d202015-05-22 16:38:49 +080070 struct irqaction act;
Shawn Guo9c8694b2015-05-15 14:24:41 +080071};
72
73struct imx_gpt_data {
Shawn Guo24f74ad2015-05-22 21:39:55 +080074 int reg_tstat;
75 int reg_tcn;
76 int reg_tcmp;
Shawn Guo9c8694b2015-05-15 14:24:41 +080077 void (*gpt_setup_tctl)(struct imx_timer *imxtm);
Shawn Guodb2ae4b2015-05-22 22:42:55 +080078 void (*gpt_irq_enable)(struct imx_timer *imxtm);
79 void (*gpt_irq_disable)(struct imx_timer *imxtm);
80 void (*gpt_irq_acknowledge)(struct imx_timer *imxtm);
Shawn Guo5ab04752015-05-22 15:51:41 +080081 int (*set_next_event)(unsigned long evt,
82 struct clock_event_device *ced);
Shawn Guo6dd74782015-05-22 13:53:45 +080083};
84
Shawn Guoe510d202015-05-22 16:38:49 +080085static inline struct imx_timer *to_imx_timer(struct clock_event_device *ced)
86{
87 return container_of(ced, struct imx_timer, ced);
88}
89
Shawn Guodb2ae4b2015-05-22 22:42:55 +080090static void imx1_gpt_irq_disable(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +020091{
Sascha Hauerec996ba2009-02-18 20:58:40 +010092 unsigned int tmp;
93
Shawn Guodb2ae4b2015-05-22 22:42:55 +080094 tmp = readl_relaxed(imxtm->base + MXC_TCTL);
95 writel_relaxed(tmp & ~MX1_2_TCTL_IRQEN, imxtm->base + MXC_TCTL);
96}
97#define imx21_gpt_irq_disable imx1_gpt_irq_disable
98
99static void imx31_gpt_irq_disable(struct imx_timer *imxtm)
100{
101 writel_relaxed(0, imxtm->base + V2_IR);
102}
103#define imx6dl_gpt_irq_disable imx31_gpt_irq_disable
104
105static void imx1_gpt_irq_enable(struct imx_timer *imxtm)
106{
107 unsigned int tmp;
108
109 tmp = readl_relaxed(imxtm->base + MXC_TCTL);
110 writel_relaxed(tmp | MX1_2_TCTL_IRQEN, imxtm->base + MXC_TCTL);
111}
112#define imx21_gpt_irq_enable imx1_gpt_irq_enable
113
114static void imx31_gpt_irq_enable(struct imx_timer *imxtm)
115{
116 writel_relaxed(1<<0, imxtm->base + V2_IR);
117}
118#define imx6dl_gpt_irq_enable imx31_gpt_irq_enable
119
120static void imx1_gpt_irq_acknowledge(struct imx_timer *imxtm)
121{
122 writel_relaxed(0, imxtm->base + MX1_2_TSTAT);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100123}
124
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800125static void imx21_gpt_irq_acknowledge(struct imx_timer *imxtm)
Sascha Hauerec996ba2009-02-18 20:58:40 +0100126{
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800127 writel_relaxed(MX2_TSTAT_CAPT | MX2_TSTAT_COMP,
Shawn Guo89955522015-05-22 22:23:28 +0800128 imxtm->base + MX1_2_TSTAT);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100129}
130
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800131static void imx31_gpt_irq_acknowledge(struct imx_timer *imxtm)
132{
133 writel_relaxed(V2_TSTAT_OF1, imxtm->base + V2_TSTAT);
134}
135#define imx6dl_gpt_irq_acknowledge imx31_gpt_irq_acknowledge
136
Russell King234b6ced2011-05-08 14:09:47 +0100137static void __iomem *sched_clock_reg;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200138
Stephen Boydb93767e2013-11-15 15:26:12 -0800139static u64 notrace mxc_read_sched_clock(void)
Jan Weitzelc124bef2011-03-17 13:44:30 +0100140{
Shawn Guoc7770bb2015-05-19 18:47:47 +0800141 return sched_clock_reg ? readl_relaxed(sched_clock_reg) : 0;
Jan Weitzelc124bef2011-03-17 13:44:30 +0100142}
143
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100144static struct delay_timer imx_delay_timer;
145
146static unsigned long imx_read_current_timer(void)
147{
Shawn Guoc7770bb2015-05-19 18:47:47 +0800148 return readl_relaxed(sched_clock_reg);
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100149}
150
Shawn Guo6dd74782015-05-22 13:53:45 +0800151static int __init mxc_clocksource_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200152{
Shawn Guo6dd74782015-05-22 13:53:45 +0800153 unsigned int c = clk_get_rate(imxtm->clk_per);
Shawn Guo24f74ad2015-05-22 21:39:55 +0800154 void __iomem *reg = imxtm->base + imxtm->gpt->reg_tcn;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200155
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100156 imx_delay_timer.read_current_timer = &imx_read_current_timer;
157 imx_delay_timer.freq = c;
158 register_current_timer_delay(&imx_delay_timer);
159
Russell King234b6ced2011-05-08 14:09:47 +0100160 sched_clock_reg = reg;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100161
Stephen Boydb93767e2013-11-15 15:26:12 -0800162 sched_clock_register(mxc_read_sched_clock, 32, c);
Russell King234b6ced2011-05-08 14:09:47 +0100163 return clocksource_mmio_init(reg, "mxc_timer1", c, 200, 32,
164 clocksource_mmio_readl_up);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200165}
166
167/* clock event */
168
Sascha Hauerec996ba2009-02-18 20:58:40 +0100169static int mx1_2_set_next_event(unsigned long evt,
Shawn Guo89955522015-05-22 22:23:28 +0800170 struct clock_event_device *ced)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200171{
Shawn Guo89955522015-05-22 22:23:28 +0800172 struct imx_timer *imxtm = to_imx_timer(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200173 unsigned long tcmp;
174
Shawn Guo89955522015-05-22 22:23:28 +0800175 tcmp = readl_relaxed(imxtm->base + MX1_2_TCN) + evt;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200176
Shawn Guo89955522015-05-22 22:23:28 +0800177 writel_relaxed(tcmp, imxtm->base + MX1_2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100178
Shawn Guo89955522015-05-22 22:23:28 +0800179 return (int)(tcmp - readl_relaxed(imxtm->base + MX1_2_TCN)) < 0 ?
Sascha Hauerec996ba2009-02-18 20:58:40 +0100180 -ETIME : 0;
181}
182
Amit Kucheria38a66f52010-04-21 21:34:36 +0300183static int v2_set_next_event(unsigned long evt,
Shawn Guo89955522015-05-22 22:23:28 +0800184 struct clock_event_device *ced)
Sascha Hauerec996ba2009-02-18 20:58:40 +0100185{
Shawn Guo89955522015-05-22 22:23:28 +0800186 struct imx_timer *imxtm = to_imx_timer(ced);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100187 unsigned long tcmp;
188
Shawn Guo89955522015-05-22 22:23:28 +0800189 tcmp = readl_relaxed(imxtm->base + V2_TCN) + evt;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100190
Shawn Guo89955522015-05-22 22:23:28 +0800191 writel_relaxed(tcmp, imxtm->base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100192
Shawn Guoeea8e322012-12-06 22:54:41 +0800193 return evt < 0x7fffffff &&
Shawn Guo89955522015-05-22 22:23:28 +0800194 (int)(tcmp - readl_relaxed(imxtm->base + V2_TCN)) < 0 ?
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200195 -ETIME : 0;
196}
197
Viresh Kumar26b91f02015-07-06 15:39:18 +0530198static int mxc_shutdown(struct clock_event_device *ced)
199{
200 struct imx_timer *imxtm = to_imx_timer(ced);
201 unsigned long flags;
202 u32 tcn;
203
204 /*
205 * The timer interrupt generation is disabled at least
206 * for enough time to call mxc_set_next_event()
207 */
208 local_irq_save(flags);
209
210 /* Disable interrupt in GPT module */
211 imxtm->gpt->gpt_irq_disable(imxtm);
212
213 tcn = readl_relaxed(imxtm->base + imxtm->gpt->reg_tcn);
214 /* Set event time into far-far future */
215 writel_relaxed(tcn - 3, imxtm->base + imxtm->gpt->reg_tcmp);
216
217 /* Clear pending interrupt */
218 imxtm->gpt->gpt_irq_acknowledge(imxtm);
219
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200220#ifdef DEBUG
Viresh Kumar26b91f02015-07-06 15:39:18 +0530221 printk(KERN_INFO "%s: changing mode\n", __func__);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200222#endif /* DEBUG */
223
Viresh Kumar26b91f02015-07-06 15:39:18 +0530224 local_irq_restore(flags);
225
226 return 0;
227}
228
229static int mxc_set_oneshot(struct clock_event_device *ced)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200230{
Shawn Guoe510d202015-05-22 16:38:49 +0800231 struct imx_timer *imxtm = to_imx_timer(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200232 unsigned long flags;
233
234 /*
235 * The timer interrupt generation is disabled at least
236 * for enough time to call mxc_set_next_event()
237 */
238 local_irq_save(flags);
239
240 /* Disable interrupt in GPT module */
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800241 imxtm->gpt->gpt_irq_disable(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200242
Viresh Kumar26b91f02015-07-06 15:39:18 +0530243 if (!clockevent_state_oneshot(ced)) {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800244 u32 tcn = readl_relaxed(imxtm->base + imxtm->gpt->reg_tcn);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200245 /* Set event time into far-far future */
Shawn Guo24f74ad2015-05-22 21:39:55 +0800246 writel_relaxed(tcn - 3, imxtm->base + imxtm->gpt->reg_tcmp);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100247
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200248 /* Clear pending interrupt */
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800249 imxtm->gpt->gpt_irq_acknowledge(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200250 }
251
252#ifdef DEBUG
Viresh Kumar26b91f02015-07-06 15:39:18 +0530253 printk(KERN_INFO "%s: changing mode\n", __func__);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200254#endif /* DEBUG */
255
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200256 /*
257 * Do not put overhead of interrupt enable/disable into
258 * mxc_set_next_event(), the core has about 4 minutes
259 * to call mxc_set_next_event() or shutdown clock after
260 * mode switching
261 */
Viresh Kumar26b91f02015-07-06 15:39:18 +0530262 imxtm->gpt->gpt_irq_enable(imxtm);
263 local_irq_restore(flags);
264
265 return 0;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200266}
267
268/*
269 * IRQ handler for the timer
270 */
271static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
272{
Shawn Guoe510d202015-05-22 16:38:49 +0800273 struct clock_event_device *ced = dev_id;
Shawn Guo24f74ad2015-05-22 21:39:55 +0800274 struct imx_timer *imxtm = to_imx_timer(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200275 uint32_t tstat;
276
Shawn Guo24f74ad2015-05-22 21:39:55 +0800277 tstat = readl_relaxed(imxtm->base + imxtm->gpt->reg_tstat);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200278
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800279 imxtm->gpt->gpt_irq_acknowledge(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200280
Shawn Guoe510d202015-05-22 16:38:49 +0800281 ced->event_handler(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200282
283 return IRQ_HANDLED;
284}
285
Shawn Guo6dd74782015-05-22 13:53:45 +0800286static int __init mxc_clockevent_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200287{
Shawn Guoe510d202015-05-22 16:38:49 +0800288 struct clock_event_device *ced = &imxtm->ced;
289 struct irqaction *act = &imxtm->act;
290
Shawn Guoe510d202015-05-22 16:38:49 +0800291 ced->name = "mxc_timer1";
Lucas Stachf1c08c92015-10-14 11:24:17 +0200292 ced->features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_DYNIRQ;
Viresh Kumar26b91f02015-07-06 15:39:18 +0530293 ced->set_state_shutdown = mxc_shutdown;
294 ced->set_state_oneshot = mxc_set_oneshot;
295 ced->tick_resume = mxc_shutdown;
Shawn Guoe510d202015-05-22 16:38:49 +0800296 ced->set_next_event = imxtm->gpt->set_next_event;
297 ced->rating = 200;
298 ced->cpumask = cpumask_of(0);
Lucas Stachf1c08c92015-10-14 11:24:17 +0200299 ced->irq = imxtm->irq;
Shawn Guoe510d202015-05-22 16:38:49 +0800300 clockevents_config_and_register(ced, clk_get_rate(imxtm->clk_per),
Shawn Guo838a2ae2013-01-12 11:50:05 +0000301 0xff, 0xfffffffe);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200302
Shawn Guoe510d202015-05-22 16:38:49 +0800303 act->name = "i.MX Timer Tick";
304 act->flags = IRQF_TIMER | IRQF_IRQPOLL;
305 act->handler = mxc_timer_interrupt;
306 act->dev_id = ced;
307
308 return setup_irq(imxtm->irq, act);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200309}
310
Shawn Guo9c8694b2015-05-15 14:24:41 +0800311static void imx1_gpt_setup_tctl(struct imx_timer *imxtm)
312{
313 u32 tctl_val;
314
315 tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
316 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
317}
318#define imx21_gpt_setup_tctl imx1_gpt_setup_tctl
319
320static void imx31_gpt_setup_tctl(struct imx_timer *imxtm)
321{
322 u32 tctl_val;
323
324 tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
325 if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8)
326 tctl_val |= V2_TCTL_CLK_OSC_DIV8;
327 else
328 tctl_val |= V2_TCTL_CLK_PER;
329
330 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
331}
332
333static void imx6dl_gpt_setup_tctl(struct imx_timer *imxtm)
334{
335 u32 tctl_val;
336
337 tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
338 if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8) {
339 tctl_val |= V2_TCTL_CLK_OSC_DIV8;
340 /* 24 / 8 = 3 MHz */
341 writel_relaxed(7 << V2_TPRER_PRE24M, imxtm->base + MXC_TPRER);
342 tctl_val |= V2_TCTL_24MEN;
343 } else {
344 tctl_val |= V2_TCTL_CLK_PER;
345 }
346
347 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
348}
349
350static const struct imx_gpt_data imx1_gpt_data = {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800351 .reg_tstat = MX1_2_TSTAT,
352 .reg_tcn = MX1_2_TCN,
353 .reg_tcmp = MX1_2_TCMP,
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800354 .gpt_irq_enable = imx1_gpt_irq_enable,
355 .gpt_irq_disable = imx1_gpt_irq_disable,
356 .gpt_irq_acknowledge = imx1_gpt_irq_acknowledge,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800357 .gpt_setup_tctl = imx1_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800358 .set_next_event = mx1_2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800359};
360
361static const struct imx_gpt_data imx21_gpt_data = {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800362 .reg_tstat = MX1_2_TSTAT,
363 .reg_tcn = MX1_2_TCN,
364 .reg_tcmp = MX1_2_TCMP,
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800365 .gpt_irq_enable = imx21_gpt_irq_enable,
366 .gpt_irq_disable = imx21_gpt_irq_disable,
367 .gpt_irq_acknowledge = imx21_gpt_irq_acknowledge,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800368 .gpt_setup_tctl = imx21_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800369 .set_next_event = mx1_2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800370};
371
372static const struct imx_gpt_data imx31_gpt_data = {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800373 .reg_tstat = V2_TSTAT,
374 .reg_tcn = V2_TCN,
375 .reg_tcmp = V2_TCMP,
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800376 .gpt_irq_enable = imx31_gpt_irq_enable,
377 .gpt_irq_disable = imx31_gpt_irq_disable,
378 .gpt_irq_acknowledge = imx31_gpt_irq_acknowledge,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800379 .gpt_setup_tctl = imx31_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800380 .set_next_event = v2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800381};
382
383static const struct imx_gpt_data imx6dl_gpt_data = {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800384 .reg_tstat = V2_TSTAT,
385 .reg_tcn = V2_TCN,
386 .reg_tcmp = V2_TCMP,
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800387 .gpt_irq_enable = imx6dl_gpt_irq_enable,
388 .gpt_irq_disable = imx6dl_gpt_irq_disable,
389 .gpt_irq_acknowledge = imx6dl_gpt_irq_acknowledge,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800390 .gpt_setup_tctl = imx6dl_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800391 .set_next_event = v2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800392};
393
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200394static int __init _mxc_timer_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200395{
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200396 int ret;
397
Shawn Guo9c8694b2015-05-15 14:24:41 +0800398 switch (imxtm->type) {
399 case GPT_TYPE_IMX1:
400 imxtm->gpt = &imx1_gpt_data;
401 break;
402 case GPT_TYPE_IMX21:
403 imxtm->gpt = &imx21_gpt_data;
404 break;
405 case GPT_TYPE_IMX31:
406 imxtm->gpt = &imx31_gpt_data;
407 break;
408 case GPT_TYPE_IMX6DL:
409 imxtm->gpt = &imx6dl_gpt_data;
410 break;
411 default:
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200412 return -EINVAL;
Shawn Guo9c8694b2015-05-15 14:24:41 +0800413 }
414
Shawn Guo6dd74782015-05-22 13:53:45 +0800415 if (IS_ERR(imxtm->clk_per)) {
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200416 pr_err("i.MX timer: unable to get clk\n");
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200417 return PTR_ERR(imxtm->clk_per);
Sascha Hauer821dc4d2012-03-09 09:29:27 +0100418 }
Sascha Hauerec996ba2009-02-18 20:58:40 +0100419
Shawn Guo6dd74782015-05-22 13:53:45 +0800420 if (!IS_ERR(imxtm->clk_ipg))
421 clk_prepare_enable(imxtm->clk_ipg);
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200422
Shawn Guo6dd74782015-05-22 13:53:45 +0800423 clk_prepare_enable(imxtm->clk_per);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200424
425 /*
426 * Initialise to a known state (all timers off, and timing reset)
427 */
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200428
Shawn Guo6dd74782015-05-22 13:53:45 +0800429 writel_relaxed(0, imxtm->base + MXC_TCTL);
430 writel_relaxed(0, imxtm->base + MXC_TPRER); /* see datasheet note */
Sascha Hauerec996ba2009-02-18 20:58:40 +0100431
Shawn Guo9c8694b2015-05-15 14:24:41 +0800432 imxtm->gpt->gpt_setup_tctl(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200433
434 /* init and register the timer to the framework */
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200435 ret = mxc_clocksource_init(imxtm);
436 if (ret)
437 return ret;
438
439 return mxc_clockevent_init(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200440}
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200441
Shawn Guo0931aff2015-05-15 11:41:39 +0800442void __init mxc_timer_init(unsigned long pbase, int irq, enum imx_gpt_type type)
Alexander Shiyanf4696752014-05-27 13:04:46 +0400443{
Shawn Guo6dd74782015-05-22 13:53:45 +0800444 struct imx_timer *imxtm;
Alexander Shiyanf4696752014-05-27 13:04:46 +0400445
Shawn Guo6dd74782015-05-22 13:53:45 +0800446 imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
447 BUG_ON(!imxtm);
Alexander Shiyand7f98912014-05-27 13:04:47 +0400448
Shawn Guo6dd74782015-05-22 13:53:45 +0800449 imxtm->clk_per = clk_get_sys("imx-gpt.0", "per");
450 imxtm->clk_ipg = clk_get_sys("imx-gpt.0", "ipg");
451
452 imxtm->base = ioremap(pbase, SZ_4K);
453 BUG_ON(!imxtm->base);
454
Shawn Guo0931aff2015-05-15 11:41:39 +0800455 imxtm->type = type;
Guenter Roeckbe3b0f92015-08-20 03:27:21 -0700456 imxtm->irq = irq;
Shawn Guo0931aff2015-05-15 11:41:39 +0800457
Shawn Guo6dd74782015-05-22 13:53:45 +0800458 _mxc_timer_init(imxtm);
Alexander Shiyanf4696752014-05-27 13:04:46 +0400459}
460
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200461static int __init mxc_timer_init_dt(struct device_node *np, enum imx_gpt_type type)
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200462{
Shawn Guo6dd74782015-05-22 13:53:45 +0800463 struct imx_timer *imxtm;
464 static int initialized;
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200465 int ret;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200466
Shawn Guo6dd74782015-05-22 13:53:45 +0800467 /* Support one instance only */
468 if (initialized)
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200469 return 0;
Alexander Shiyanfd4959d2014-07-13 09:34:00 +0400470
Shawn Guo6dd74782015-05-22 13:53:45 +0800471 imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200472 if (!imxtm)
473 return -ENOMEM;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200474
Shawn Guo6dd74782015-05-22 13:53:45 +0800475 imxtm->base = of_iomap(np, 0);
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200476 if (!imxtm->base)
477 return -ENXIO;
478
Shawn Guo6dd74782015-05-22 13:53:45 +0800479 imxtm->irq = irq_of_parse_and_map(np, 0);
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200480 if (imxtm->irq <= 0)
481 return -EINVAL;
Shawn Guo6dd74782015-05-22 13:53:45 +0800482
483 imxtm->clk_ipg = of_clk_get_by_name(np, "ipg");
Alexander Shiyanf4696752014-05-27 13:04:46 +0400484
Anson Huangbad3db12014-09-11 11:29:42 +0800485 /* Try osc_per first, and fall back to per otherwise */
Shawn Guo6dd74782015-05-22 13:53:45 +0800486 imxtm->clk_per = of_clk_get_by_name(np, "osc_per");
487 if (IS_ERR(imxtm->clk_per))
488 imxtm->clk_per = of_clk_get_by_name(np, "per");
Anson Huangbad3db12014-09-11 11:29:42 +0800489
Shawn Guobef11c82015-05-15 13:38:20 +0800490 imxtm->type = type;
491
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200492 ret = _mxc_timer_init(imxtm);
493 if (ret)
494 return ret;
Shawn Guo6dd74782015-05-22 13:53:45 +0800495
496 initialized = 1;
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200497
498 return 0;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200499}
Shawn Guobef11c82015-05-15 13:38:20 +0800500
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200501static int __init imx1_timer_init_dt(struct device_node *np)
Shawn Guobef11c82015-05-15 13:38:20 +0800502{
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200503 return mxc_timer_init_dt(np, GPT_TYPE_IMX1);
Shawn Guobef11c82015-05-15 13:38:20 +0800504}
505
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200506static int __init imx21_timer_init_dt(struct device_node *np)
Shawn Guobef11c82015-05-15 13:38:20 +0800507{
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200508 return mxc_timer_init_dt(np, GPT_TYPE_IMX21);
Shawn Guobef11c82015-05-15 13:38:20 +0800509}
510
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200511static int __init imx31_timer_init_dt(struct device_node *np)
Shawn Guobef11c82015-05-15 13:38:20 +0800512{
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
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200524 return mxc_timer_init_dt(np, type);
Shawn Guobef11c82015-05-15 13:38:20 +0800525}
526
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200527static int __init imx6dl_timer_init_dt(struct device_node *np)
Shawn Guobef11c82015-05-15 13:38:20 +0800528{
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200529 return mxc_timer_init_dt(np, GPT_TYPE_IMX6DL);
Shawn Guobef11c82015-05-15 13:38:20 +0800530}
531
Daniel Lezcano17273392017-05-26 16:56:11 +0200532TIMER_OF_DECLARE(imx1_timer, "fsl,imx1-gpt", imx1_timer_init_dt);
533TIMER_OF_DECLARE(imx21_timer, "fsl,imx21-gpt", imx21_timer_init_dt);
534TIMER_OF_DECLARE(imx27_timer, "fsl,imx27-gpt", imx21_timer_init_dt);
535TIMER_OF_DECLARE(imx31_timer, "fsl,imx31-gpt", imx31_timer_init_dt);
536TIMER_OF_DECLARE(imx25_timer, "fsl,imx25-gpt", imx31_timer_init_dt);
537TIMER_OF_DECLARE(imx50_timer, "fsl,imx50-gpt", imx31_timer_init_dt);
538TIMER_OF_DECLARE(imx51_timer, "fsl,imx51-gpt", imx31_timer_init_dt);
539TIMER_OF_DECLARE(imx53_timer, "fsl,imx53-gpt", imx31_timer_init_dt);
540TIMER_OF_DECLARE(imx6q_timer, "fsl,imx6q-gpt", imx31_timer_init_dt);
541TIMER_OF_DECLARE(imx6dl_timer, "fsl,imx6dl-gpt", imx6dl_timer_init_dt);
542TIMER_OF_DECLARE(imx6sl_timer, "fsl,imx6sl-gpt", imx6dl_timer_init_dt);
543TIMER_OF_DECLARE(imx6sx_timer, "fsl,imx6sx-gpt", imx6dl_timer_init_dt);