blob: 7b2c70f2f353bba9b3e8fd5a4810070da26a1f65 [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 Guo9c8694b2015-05-15 14:24:41 +080070};
71
72struct imx_gpt_data {
Shawn Guo24f74ad2015-05-22 21:39:55 +080073 int reg_tstat;
74 int reg_tcn;
75 int reg_tcmp;
Shawn Guo9c8694b2015-05-15 14:24:41 +080076 void (*gpt_setup_tctl)(struct imx_timer *imxtm);
Shawn Guodb2ae4b2015-05-22 22:42:55 +080077 void (*gpt_irq_enable)(struct imx_timer *imxtm);
78 void (*gpt_irq_disable)(struct imx_timer *imxtm);
79 void (*gpt_irq_acknowledge)(struct imx_timer *imxtm);
Shawn Guo5ab04752015-05-22 15:51:41 +080080 int (*set_next_event)(unsigned long evt,
81 struct clock_event_device *ced);
Shawn Guo6dd74782015-05-22 13:53:45 +080082};
83
Shawn Guoe510d202015-05-22 16:38:49 +080084static inline struct imx_timer *to_imx_timer(struct clock_event_device *ced)
85{
86 return container_of(ced, struct imx_timer, ced);
87}
88
Shawn Guodb2ae4b2015-05-22 22:42:55 +080089static void imx1_gpt_irq_disable(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +020090{
Sascha Hauerec996ba2009-02-18 20:58:40 +010091 unsigned int tmp;
92
Shawn Guodb2ae4b2015-05-22 22:42:55 +080093 tmp = readl_relaxed(imxtm->base + MXC_TCTL);
94 writel_relaxed(tmp & ~MX1_2_TCTL_IRQEN, imxtm->base + MXC_TCTL);
95}
96#define imx21_gpt_irq_disable imx1_gpt_irq_disable
97
98static void imx31_gpt_irq_disable(struct imx_timer *imxtm)
99{
100 writel_relaxed(0, imxtm->base + V2_IR);
101}
102#define imx6dl_gpt_irq_disable imx31_gpt_irq_disable
103
104static void imx1_gpt_irq_enable(struct imx_timer *imxtm)
105{
106 unsigned int tmp;
107
108 tmp = readl_relaxed(imxtm->base + MXC_TCTL);
109 writel_relaxed(tmp | MX1_2_TCTL_IRQEN, imxtm->base + MXC_TCTL);
110}
111#define imx21_gpt_irq_enable imx1_gpt_irq_enable
112
113static void imx31_gpt_irq_enable(struct imx_timer *imxtm)
114{
115 writel_relaxed(1<<0, imxtm->base + V2_IR);
116}
117#define imx6dl_gpt_irq_enable imx31_gpt_irq_enable
118
119static void imx1_gpt_irq_acknowledge(struct imx_timer *imxtm)
120{
121 writel_relaxed(0, imxtm->base + MX1_2_TSTAT);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100122}
123
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800124static void imx21_gpt_irq_acknowledge(struct imx_timer *imxtm)
Sascha Hauerec996ba2009-02-18 20:58:40 +0100125{
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800126 writel_relaxed(MX2_TSTAT_CAPT | MX2_TSTAT_COMP,
Shawn Guo89955522015-05-22 22:23:28 +0800127 imxtm->base + MX1_2_TSTAT);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100128}
129
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800130static void imx31_gpt_irq_acknowledge(struct imx_timer *imxtm)
131{
132 writel_relaxed(V2_TSTAT_OF1, imxtm->base + V2_TSTAT);
133}
134#define imx6dl_gpt_irq_acknowledge imx31_gpt_irq_acknowledge
135
Russell King234b6ced2011-05-08 14:09:47 +0100136static void __iomem *sched_clock_reg;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200137
Stephen Boydb93767e2013-11-15 15:26:12 -0800138static u64 notrace mxc_read_sched_clock(void)
Jan Weitzelc124bef2011-03-17 13:44:30 +0100139{
Shawn Guoc7770bb2015-05-19 18:47:47 +0800140 return sched_clock_reg ? readl_relaxed(sched_clock_reg) : 0;
Jan Weitzelc124bef2011-03-17 13:44:30 +0100141}
142
Anson Huangdf181e32018-11-05 01:10:27 +0000143#if defined(CONFIG_ARM)
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}
Anson Huangdf181e32018-11-05 01:10:27 +0000150#endif
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100151
Shawn Guo6dd74782015-05-22 13:53:45 +0800152static int __init mxc_clocksource_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200153{
Shawn Guo6dd74782015-05-22 13:53:45 +0800154 unsigned int c = clk_get_rate(imxtm->clk_per);
Shawn Guo24f74ad2015-05-22 21:39:55 +0800155 void __iomem *reg = imxtm->base + imxtm->gpt->reg_tcn;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200156
Anson Huangdf181e32018-11-05 01:10:27 +0000157#if defined(CONFIG_ARM)
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100158 imx_delay_timer.read_current_timer = &imx_read_current_timer;
159 imx_delay_timer.freq = c;
160 register_current_timer_delay(&imx_delay_timer);
Anson Huangdf181e32018-11-05 01:10:27 +0000161#endif
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100162
Russell King234b6ced2011-05-08 14:09:47 +0100163 sched_clock_reg = reg;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100164
Stephen Boydb93767e2013-11-15 15:26:12 -0800165 sched_clock_register(mxc_read_sched_clock, 32, c);
Russell King234b6ced2011-05-08 14:09:47 +0100166 return clocksource_mmio_init(reg, "mxc_timer1", c, 200, 32,
167 clocksource_mmio_readl_up);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200168}
169
170/* clock event */
171
Sascha Hauerec996ba2009-02-18 20:58:40 +0100172static int mx1_2_set_next_event(unsigned long evt,
Shawn Guo89955522015-05-22 22:23:28 +0800173 struct clock_event_device *ced)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200174{
Shawn Guo89955522015-05-22 22:23:28 +0800175 struct imx_timer *imxtm = to_imx_timer(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200176 unsigned long tcmp;
177
Shawn Guo89955522015-05-22 22:23:28 +0800178 tcmp = readl_relaxed(imxtm->base + MX1_2_TCN) + evt;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200179
Shawn Guo89955522015-05-22 22:23:28 +0800180 writel_relaxed(tcmp, imxtm->base + MX1_2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100181
Shawn Guo89955522015-05-22 22:23:28 +0800182 return (int)(tcmp - readl_relaxed(imxtm->base + MX1_2_TCN)) < 0 ?
Sascha Hauerec996ba2009-02-18 20:58:40 +0100183 -ETIME : 0;
184}
185
Amit Kucheria38a66f52010-04-21 21:34:36 +0300186static int v2_set_next_event(unsigned long evt,
Shawn Guo89955522015-05-22 22:23:28 +0800187 struct clock_event_device *ced)
Sascha Hauerec996ba2009-02-18 20:58:40 +0100188{
Shawn Guo89955522015-05-22 22:23:28 +0800189 struct imx_timer *imxtm = to_imx_timer(ced);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100190 unsigned long tcmp;
191
Shawn Guo89955522015-05-22 22:23:28 +0800192 tcmp = readl_relaxed(imxtm->base + V2_TCN) + evt;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100193
Shawn Guo89955522015-05-22 22:23:28 +0800194 writel_relaxed(tcmp, imxtm->base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100195
Shawn Guoeea8e322012-12-06 22:54:41 +0800196 return evt < 0x7fffffff &&
Shawn Guo89955522015-05-22 22:23:28 +0800197 (int)(tcmp - readl_relaxed(imxtm->base + V2_TCN)) < 0 ?
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200198 -ETIME : 0;
199}
200
Viresh Kumar26b91f02015-07-06 15:39:18 +0530201static int mxc_shutdown(struct clock_event_device *ced)
202{
203 struct imx_timer *imxtm = to_imx_timer(ced);
Viresh Kumar26b91f02015-07-06 15:39:18 +0530204 u32 tcn;
205
Viresh Kumar26b91f02015-07-06 15:39:18 +0530206 /* Disable interrupt in GPT module */
207 imxtm->gpt->gpt_irq_disable(imxtm);
208
209 tcn = readl_relaxed(imxtm->base + imxtm->gpt->reg_tcn);
210 /* Set event time into far-far future */
211 writel_relaxed(tcn - 3, imxtm->base + imxtm->gpt->reg_tcmp);
212
213 /* Clear pending interrupt */
214 imxtm->gpt->gpt_irq_acknowledge(imxtm);
215
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200216#ifdef DEBUG
Viresh Kumar26b91f02015-07-06 15:39:18 +0530217 printk(KERN_INFO "%s: changing mode\n", __func__);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200218#endif /* DEBUG */
219
Viresh Kumar26b91f02015-07-06 15:39:18 +0530220 return 0;
221}
222
223static int mxc_set_oneshot(struct clock_event_device *ced)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200224{
Shawn Guoe510d202015-05-22 16:38:49 +0800225 struct imx_timer *imxtm = to_imx_timer(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200226
227 /* Disable interrupt in GPT module */
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800228 imxtm->gpt->gpt_irq_disable(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200229
Viresh Kumar26b91f02015-07-06 15:39:18 +0530230 if (!clockevent_state_oneshot(ced)) {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800231 u32 tcn = readl_relaxed(imxtm->base + imxtm->gpt->reg_tcn);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200232 /* Set event time into far-far future */
Shawn Guo24f74ad2015-05-22 21:39:55 +0800233 writel_relaxed(tcn - 3, imxtm->base + imxtm->gpt->reg_tcmp);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100234
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200235 /* Clear pending interrupt */
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800236 imxtm->gpt->gpt_irq_acknowledge(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200237 }
238
239#ifdef DEBUG
Viresh Kumar26b91f02015-07-06 15:39:18 +0530240 printk(KERN_INFO "%s: changing mode\n", __func__);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200241#endif /* DEBUG */
242
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200243 /*
244 * Do not put overhead of interrupt enable/disable into
245 * mxc_set_next_event(), the core has about 4 minutes
246 * to call mxc_set_next_event() or shutdown clock after
247 * mode switching
248 */
Viresh Kumar26b91f02015-07-06 15:39:18 +0530249 imxtm->gpt->gpt_irq_enable(imxtm);
Viresh Kumar26b91f02015-07-06 15:39:18 +0530250
251 return 0;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200252}
253
254/*
255 * IRQ handler for the timer
256 */
257static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
258{
Shawn Guoe510d202015-05-22 16:38:49 +0800259 struct clock_event_device *ced = dev_id;
Shawn Guo24f74ad2015-05-22 21:39:55 +0800260 struct imx_timer *imxtm = to_imx_timer(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200261 uint32_t tstat;
262
Shawn Guo24f74ad2015-05-22 21:39:55 +0800263 tstat = readl_relaxed(imxtm->base + imxtm->gpt->reg_tstat);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200264
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800265 imxtm->gpt->gpt_irq_acknowledge(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200266
Shawn Guoe510d202015-05-22 16:38:49 +0800267 ced->event_handler(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200268
269 return IRQ_HANDLED;
270}
271
Shawn Guo6dd74782015-05-22 13:53:45 +0800272static int __init mxc_clockevent_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200273{
Shawn Guoe510d202015-05-22 16:38:49 +0800274 struct clock_event_device *ced = &imxtm->ced;
Shawn Guoe510d202015-05-22 16:38:49 +0800275
Shawn Guoe510d202015-05-22 16:38:49 +0800276 ced->name = "mxc_timer1";
Lucas Stachf1c08c92015-10-14 11:24:17 +0200277 ced->features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_DYNIRQ;
Viresh Kumar26b91f02015-07-06 15:39:18 +0530278 ced->set_state_shutdown = mxc_shutdown;
279 ced->set_state_oneshot = mxc_set_oneshot;
280 ced->tick_resume = mxc_shutdown;
Shawn Guoe510d202015-05-22 16:38:49 +0800281 ced->set_next_event = imxtm->gpt->set_next_event;
282 ced->rating = 200;
283 ced->cpumask = cpumask_of(0);
Lucas Stachf1c08c92015-10-14 11:24:17 +0200284 ced->irq = imxtm->irq;
Shawn Guoe510d202015-05-22 16:38:49 +0800285 clockevents_config_and_register(ced, clk_get_rate(imxtm->clk_per),
Shawn Guo838a2ae2013-01-12 11:50:05 +0000286 0xff, 0xfffffffe);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200287
afzal mohammedcc2550b2020-02-27 16:29:02 +0530288 return request_irq(imxtm->irq, mxc_timer_interrupt,
289 IRQF_TIMER | IRQF_IRQPOLL, "i.MX Timer Tick", ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200290}
291
Shawn Guo9c8694b2015-05-15 14:24:41 +0800292static void imx1_gpt_setup_tctl(struct imx_timer *imxtm)
293{
294 u32 tctl_val;
295
296 tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
297 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
298}
299#define imx21_gpt_setup_tctl imx1_gpt_setup_tctl
300
301static void imx31_gpt_setup_tctl(struct imx_timer *imxtm)
302{
303 u32 tctl_val;
304
305 tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
306 if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8)
307 tctl_val |= V2_TCTL_CLK_OSC_DIV8;
308 else
309 tctl_val |= V2_TCTL_CLK_PER;
310
311 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
312}
313
314static void imx6dl_gpt_setup_tctl(struct imx_timer *imxtm)
315{
316 u32 tctl_val;
317
318 tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
319 if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8) {
320 tctl_val |= V2_TCTL_CLK_OSC_DIV8;
321 /* 24 / 8 = 3 MHz */
322 writel_relaxed(7 << V2_TPRER_PRE24M, imxtm->base + MXC_TPRER);
323 tctl_val |= V2_TCTL_24MEN;
324 } else {
325 tctl_val |= V2_TCTL_CLK_PER;
326 }
327
328 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
329}
330
331static const struct imx_gpt_data imx1_gpt_data = {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800332 .reg_tstat = MX1_2_TSTAT,
333 .reg_tcn = MX1_2_TCN,
334 .reg_tcmp = MX1_2_TCMP,
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800335 .gpt_irq_enable = imx1_gpt_irq_enable,
336 .gpt_irq_disable = imx1_gpt_irq_disable,
337 .gpt_irq_acknowledge = imx1_gpt_irq_acknowledge,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800338 .gpt_setup_tctl = imx1_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800339 .set_next_event = mx1_2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800340};
341
342static const struct imx_gpt_data imx21_gpt_data = {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800343 .reg_tstat = MX1_2_TSTAT,
344 .reg_tcn = MX1_2_TCN,
345 .reg_tcmp = MX1_2_TCMP,
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800346 .gpt_irq_enable = imx21_gpt_irq_enable,
347 .gpt_irq_disable = imx21_gpt_irq_disable,
348 .gpt_irq_acknowledge = imx21_gpt_irq_acknowledge,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800349 .gpt_setup_tctl = imx21_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800350 .set_next_event = mx1_2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800351};
352
353static const struct imx_gpt_data imx31_gpt_data = {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800354 .reg_tstat = V2_TSTAT,
355 .reg_tcn = V2_TCN,
356 .reg_tcmp = V2_TCMP,
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800357 .gpt_irq_enable = imx31_gpt_irq_enable,
358 .gpt_irq_disable = imx31_gpt_irq_disable,
359 .gpt_irq_acknowledge = imx31_gpt_irq_acknowledge,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800360 .gpt_setup_tctl = imx31_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800361 .set_next_event = v2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800362};
363
364static const struct imx_gpt_data imx6dl_gpt_data = {
Shawn Guo24f74ad2015-05-22 21:39:55 +0800365 .reg_tstat = V2_TSTAT,
366 .reg_tcn = V2_TCN,
367 .reg_tcmp = V2_TCMP,
Shawn Guodb2ae4b2015-05-22 22:42:55 +0800368 .gpt_irq_enable = imx6dl_gpt_irq_enable,
369 .gpt_irq_disable = imx6dl_gpt_irq_disable,
370 .gpt_irq_acknowledge = imx6dl_gpt_irq_acknowledge,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800371 .gpt_setup_tctl = imx6dl_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800372 .set_next_event = v2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800373};
374
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200375static int __init _mxc_timer_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200376{
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200377 int ret;
378
Shawn Guo9c8694b2015-05-15 14:24:41 +0800379 switch (imxtm->type) {
380 case GPT_TYPE_IMX1:
381 imxtm->gpt = &imx1_gpt_data;
382 break;
383 case GPT_TYPE_IMX21:
384 imxtm->gpt = &imx21_gpt_data;
385 break;
386 case GPT_TYPE_IMX31:
387 imxtm->gpt = &imx31_gpt_data;
388 break;
389 case GPT_TYPE_IMX6DL:
390 imxtm->gpt = &imx6dl_gpt_data;
391 break;
392 default:
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200393 return -EINVAL;
Shawn Guo9c8694b2015-05-15 14:24:41 +0800394 }
395
Shawn Guo6dd74782015-05-22 13:53:45 +0800396 if (IS_ERR(imxtm->clk_per)) {
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200397 pr_err("i.MX timer: unable to get clk\n");
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200398 return PTR_ERR(imxtm->clk_per);
Sascha Hauer821dc4d2012-03-09 09:29:27 +0100399 }
Sascha Hauerec996ba2009-02-18 20:58:40 +0100400
Shawn Guo6dd74782015-05-22 13:53:45 +0800401 if (!IS_ERR(imxtm->clk_ipg))
402 clk_prepare_enable(imxtm->clk_ipg);
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200403
Shawn Guo6dd74782015-05-22 13:53:45 +0800404 clk_prepare_enable(imxtm->clk_per);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200405
406 /*
407 * Initialise to a known state (all timers off, and timing reset)
408 */
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200409
Shawn Guo6dd74782015-05-22 13:53:45 +0800410 writel_relaxed(0, imxtm->base + MXC_TCTL);
411 writel_relaxed(0, imxtm->base + MXC_TPRER); /* see datasheet note */
Sascha Hauerec996ba2009-02-18 20:58:40 +0100412
Shawn Guo9c8694b2015-05-15 14:24:41 +0800413 imxtm->gpt->gpt_setup_tctl(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200414
415 /* init and register the timer to the framework */
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200416 ret = mxc_clocksource_init(imxtm);
417 if (ret)
418 return ret;
419
420 return mxc_clockevent_init(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200421}
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200422
Shawn Guo0931aff2015-05-15 11:41:39 +0800423void __init mxc_timer_init(unsigned long pbase, int irq, enum imx_gpt_type type)
Alexander Shiyanf4696752014-05-27 13:04:46 +0400424{
Shawn Guo6dd74782015-05-22 13:53:45 +0800425 struct imx_timer *imxtm;
Alexander Shiyanf4696752014-05-27 13:04:46 +0400426
Shawn Guo6dd74782015-05-22 13:53:45 +0800427 imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
428 BUG_ON(!imxtm);
Alexander Shiyand7f98912014-05-27 13:04:47 +0400429
Shawn Guo6dd74782015-05-22 13:53:45 +0800430 imxtm->clk_per = clk_get_sys("imx-gpt.0", "per");
431 imxtm->clk_ipg = clk_get_sys("imx-gpt.0", "ipg");
432
433 imxtm->base = ioremap(pbase, SZ_4K);
434 BUG_ON(!imxtm->base);
435
Shawn Guo0931aff2015-05-15 11:41:39 +0800436 imxtm->type = type;
Guenter Roeckbe3b0f92015-08-20 03:27:21 -0700437 imxtm->irq = irq;
Shawn Guo0931aff2015-05-15 11:41:39 +0800438
Shawn Guo6dd74782015-05-22 13:53:45 +0800439 _mxc_timer_init(imxtm);
Alexander Shiyanf4696752014-05-27 13:04:46 +0400440}
441
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200442static int __init mxc_timer_init_dt(struct device_node *np, enum imx_gpt_type type)
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200443{
Shawn Guo6dd74782015-05-22 13:53:45 +0800444 struct imx_timer *imxtm;
445 static int initialized;
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200446 int ret;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200447
Shawn Guo6dd74782015-05-22 13:53:45 +0800448 /* Support one instance only */
449 if (initialized)
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200450 return 0;
Alexander Shiyanfd4959d2014-07-13 09:34:00 +0400451
Shawn Guo6dd74782015-05-22 13:53:45 +0800452 imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200453 if (!imxtm)
454 return -ENOMEM;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200455
Shawn Guo6dd74782015-05-22 13:53:45 +0800456 imxtm->base = of_iomap(np, 0);
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200457 if (!imxtm->base)
458 return -ENXIO;
459
Shawn Guo6dd74782015-05-22 13:53:45 +0800460 imxtm->irq = irq_of_parse_and_map(np, 0);
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200461 if (imxtm->irq <= 0)
462 return -EINVAL;
Shawn Guo6dd74782015-05-22 13:53:45 +0800463
464 imxtm->clk_ipg = of_clk_get_by_name(np, "ipg");
Alexander Shiyanf4696752014-05-27 13:04:46 +0400465
Anson Huangbad3db12014-09-11 11:29:42 +0800466 /* Try osc_per first, and fall back to per otherwise */
Shawn Guo6dd74782015-05-22 13:53:45 +0800467 imxtm->clk_per = of_clk_get_by_name(np, "osc_per");
468 if (IS_ERR(imxtm->clk_per))
469 imxtm->clk_per = of_clk_get_by_name(np, "per");
Anson Huangbad3db12014-09-11 11:29:42 +0800470
Shawn Guobef11c82015-05-15 13:38:20 +0800471 imxtm->type = type;
472
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200473 ret = _mxc_timer_init(imxtm);
474 if (ret)
475 return ret;
Shawn Guo6dd74782015-05-22 13:53:45 +0800476
477 initialized = 1;
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200478
479 return 0;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200480}
Shawn Guobef11c82015-05-15 13:38:20 +0800481
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200482static int __init imx1_timer_init_dt(struct device_node *np)
Shawn Guobef11c82015-05-15 13:38:20 +0800483{
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200484 return mxc_timer_init_dt(np, GPT_TYPE_IMX1);
Shawn Guobef11c82015-05-15 13:38:20 +0800485}
486
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200487static int __init imx21_timer_init_dt(struct device_node *np)
Shawn Guobef11c82015-05-15 13:38:20 +0800488{
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200489 return mxc_timer_init_dt(np, GPT_TYPE_IMX21);
Shawn Guobef11c82015-05-15 13:38:20 +0800490}
491
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200492static int __init imx31_timer_init_dt(struct device_node *np)
Shawn Guobef11c82015-05-15 13:38:20 +0800493{
494 enum imx_gpt_type type = GPT_TYPE_IMX31;
495
496 /*
497 * We were using the same compatible string for i.MX6Q/D and i.MX6DL/S
498 * GPT device, while they actually have different programming model.
499 * This is a workaround to keep the existing i.MX6DL/S DTBs continue
500 * working with the new kernel.
501 */
502 if (of_machine_is_compatible("fsl,imx6dl"))
503 type = GPT_TYPE_IMX6DL;
504
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200505 return mxc_timer_init_dt(np, type);
Shawn Guobef11c82015-05-15 13:38:20 +0800506}
507
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200508static int __init imx6dl_timer_init_dt(struct device_node *np)
Shawn Guobef11c82015-05-15 13:38:20 +0800509{
Daniel Lezcanoc11cd412016-06-06 23:27:05 +0200510 return mxc_timer_init_dt(np, GPT_TYPE_IMX6DL);
Shawn Guobef11c82015-05-15 13:38:20 +0800511}
512
Daniel Lezcano17273392017-05-26 16:56:11 +0200513TIMER_OF_DECLARE(imx1_timer, "fsl,imx1-gpt", imx1_timer_init_dt);
514TIMER_OF_DECLARE(imx21_timer, "fsl,imx21-gpt", imx21_timer_init_dt);
515TIMER_OF_DECLARE(imx27_timer, "fsl,imx27-gpt", imx21_timer_init_dt);
516TIMER_OF_DECLARE(imx31_timer, "fsl,imx31-gpt", imx31_timer_init_dt);
517TIMER_OF_DECLARE(imx25_timer, "fsl,imx25-gpt", imx31_timer_init_dt);
518TIMER_OF_DECLARE(imx50_timer, "fsl,imx50-gpt", imx31_timer_init_dt);
519TIMER_OF_DECLARE(imx51_timer, "fsl,imx51-gpt", imx31_timer_init_dt);
520TIMER_OF_DECLARE(imx53_timer, "fsl,imx53-gpt", imx31_timer_init_dt);
521TIMER_OF_DECLARE(imx6q_timer, "fsl,imx6q-gpt", imx31_timer_init_dt);
522TIMER_OF_DECLARE(imx6dl_timer, "fsl,imx6dl-gpt", imx6dl_timer_init_dt);
523TIMER_OF_DECLARE(imx6sl_timer, "fsl,imx6sl-gpt", imx6dl_timer_init_dt);
524TIMER_OF_DECLARE(imx6sx_timer, "fsl,imx6sx-gpt", imx6dl_timer_init_dt);