blob: 127602e14efbc25b97779d9c09654d470b74700e [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
39#include "common.h"
Shawn Guo50f2de62012-09-14 14:14:45 +080040#include "hardware.h"
Sascha Hauerec996ba2009-02-18 20:58:40 +010041
Sascha Hauer0f3332c2009-12-04 09:34:51 +010042/*
Shenwei Wang65d0a162015-04-29 16:40:27 -050043 * There are 4 versions of the timer hardware on Freescale MXC hardware.
44 * - MX1/MXL
45 * - MX21, MX27.
46 * - MX25, MX31, MX35, MX37, MX51, MX6Q(rev1.0)
47 * - MX6DL, MX6SX, MX6Q(rev1.1+)
Sascha Hauer0f3332c2009-12-04 09:34:51 +010048 */
49
Sascha Hauerec996ba2009-02-18 20:58:40 +010050/* defines common for all i.MX */
51#define MXC_TCTL 0x00
Sascha Hauer0f3332c2009-12-04 09:34:51 +010052#define MXC_TCTL_TEN (1 << 0) /* Enable module */
Sascha Hauerec996ba2009-02-18 20:58:40 +010053#define MXC_TPRER 0x04
54
55/* MX1, MX21, MX27 */
56#define MX1_2_TCTL_CLK_PCLK1 (1 << 1)
57#define MX1_2_TCTL_IRQEN (1 << 4)
58#define MX1_2_TCTL_FRR (1 << 8)
59#define MX1_2_TCMP 0x08
60#define MX1_2_TCN 0x10
61#define MX1_2_TSTAT 0x14
62
63/* MX21, MX27 */
64#define MX2_TSTAT_CAPT (1 << 1)
65#define MX2_TSTAT_COMP (1 << 0)
66
Anson Huangbad3db12014-09-11 11:29:42 +080067/* MX31, MX35, MX25, MX5, MX6 */
Amit Kucheria38a66f52010-04-21 21:34:36 +030068#define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */
69#define V2_TCTL_CLK_IPG (1 << 6)
Richard Zhao1f152b42012-05-15 15:34:40 +080070#define V2_TCTL_CLK_PER (2 << 6)
Anson Huangbad3db12014-09-11 11:29:42 +080071#define V2_TCTL_CLK_OSC_DIV8 (5 << 6)
Amit Kucheria38a66f52010-04-21 21:34:36 +030072#define V2_TCTL_FRR (1 << 9)
Anson Huangbad3db12014-09-11 11:29:42 +080073#define V2_TCTL_24MEN (1 << 10)
74#define V2_TPRER_PRE24M 12
Amit Kucheria38a66f52010-04-21 21:34:36 +030075#define V2_IR 0x0c
76#define V2_TSTAT 0x08
77#define V2_TSTAT_OF1 (1 << 0)
78#define V2_TCN 0x24
79#define V2_TCMP 0x10
Juergen Beisertd0f349f2008-07-05 10:02:50 +020080
Anson Huangbad3db12014-09-11 11:29:42 +080081#define V2_TIMER_RATE_OSC_DIV8 3000000
82
Sascha Hauer0f3332c2009-12-04 09:34:51 +010083#define timer_is_v1() (cpu_is_mx1() || cpu_is_mx21() || cpu_is_mx27())
84#define timer_is_v2() (!timer_is_v1())
85
Shawn Guo6dd74782015-05-22 13:53:45 +080086struct imx_timer {
Shawn Guo0931aff2015-05-15 11:41:39 +080087 enum imx_gpt_type type;
Shawn Guo6dd74782015-05-22 13:53:45 +080088 void __iomem *base;
89 int irq;
90 struct clk *clk_per;
91 struct clk *clk_ipg;
Shawn Guo9c8694b2015-05-15 14:24:41 +080092 const struct imx_gpt_data *gpt;
Shawn Guoe510d202015-05-22 16:38:49 +080093 struct clock_event_device ced;
94 enum clock_event_mode cem;
95 struct irqaction act;
Shawn Guo9c8694b2015-05-15 14:24:41 +080096};
97
98struct imx_gpt_data {
99 void (*gpt_setup_tctl)(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
Sascha Hauerec996ba2009-02-18 20:58:40 +0100104static void __iomem *timer_base;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200105
Shawn Guoe510d202015-05-22 16:38:49 +0800106static inline struct imx_timer *to_imx_timer(struct clock_event_device *ced)
107{
108 return container_of(ced, struct imx_timer, ced);
109}
110
Sascha Hauerec996ba2009-02-18 20:58:40 +0100111static inline void gpt_irq_disable(void)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200112{
Sascha Hauerec996ba2009-02-18 20:58:40 +0100113 unsigned int tmp;
114
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100115 if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800116 writel_relaxed(0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100117 else {
Shawn Guoc7770bb2015-05-19 18:47:47 +0800118 tmp = readl_relaxed(timer_base + MXC_TCTL);
119 writel_relaxed(tmp & ~MX1_2_TCTL_IRQEN, timer_base + MXC_TCTL);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100120 }
121}
122
123static inline void gpt_irq_enable(void)
124{
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100125 if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800126 writel_relaxed(1<<0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100127 else {
Shawn Guoc7770bb2015-05-19 18:47:47 +0800128 writel_relaxed(readl_relaxed(timer_base + MXC_TCTL) | MX1_2_TCTL_IRQEN,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100129 timer_base + MXC_TCTL);
130 }
131}
132
133static void gpt_irq_acknowledge(void)
134{
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100135 if (timer_is_v1()) {
136 if (cpu_is_mx1())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800137 writel_relaxed(0, timer_base + MX1_2_TSTAT);
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100138 else
Shawn Guoc7770bb2015-05-19 18:47:47 +0800139 writel_relaxed(MX2_TSTAT_CAPT | MX2_TSTAT_COMP,
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100140 timer_base + MX1_2_TSTAT);
141 } else if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800142 writel_relaxed(V2_TSTAT_OF1, timer_base + V2_TSTAT);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100143}
144
Russell King234b6ced2011-05-08 14:09:47 +0100145static void __iomem *sched_clock_reg;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200146
Stephen Boydb93767e2013-11-15 15:26:12 -0800147static u64 notrace mxc_read_sched_clock(void)
Jan Weitzelc124bef2011-03-17 13:44:30 +0100148{
Shawn Guoc7770bb2015-05-19 18:47:47 +0800149 return sched_clock_reg ? readl_relaxed(sched_clock_reg) : 0;
Jan Weitzelc124bef2011-03-17 13:44:30 +0100150}
151
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100152static struct delay_timer imx_delay_timer;
153
154static unsigned long imx_read_current_timer(void)
155{
Shawn Guoc7770bb2015-05-19 18:47:47 +0800156 return readl_relaxed(sched_clock_reg);
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100157}
158
Shawn Guo6dd74782015-05-22 13:53:45 +0800159static int __init mxc_clocksource_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200160{
Shawn Guo6dd74782015-05-22 13:53:45 +0800161 unsigned int c = clk_get_rate(imxtm->clk_per);
162 void __iomem *reg = imxtm->base + (timer_is_v2() ? V2_TCN : MX1_2_TCN);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200163
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100164 imx_delay_timer.read_current_timer = &imx_read_current_timer;
165 imx_delay_timer.freq = c;
166 register_current_timer_delay(&imx_delay_timer);
167
Russell King234b6ced2011-05-08 14:09:47 +0100168 sched_clock_reg = reg;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100169
Stephen Boydb93767e2013-11-15 15:26:12 -0800170 sched_clock_register(mxc_read_sched_clock, 32, c);
Russell King234b6ced2011-05-08 14:09:47 +0100171 return clocksource_mmio_init(reg, "mxc_timer1", c, 200, 32,
172 clocksource_mmio_readl_up);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200173}
174
175/* clock event */
176
Sascha Hauerec996ba2009-02-18 20:58:40 +0100177static int mx1_2_set_next_event(unsigned long evt,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200178 struct clock_event_device *unused)
179{
180 unsigned long tcmp;
181
Shawn Guoc7770bb2015-05-19 18:47:47 +0800182 tcmp = readl_relaxed(timer_base + MX1_2_TCN) + evt;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200183
Shawn Guoc7770bb2015-05-19 18:47:47 +0800184 writel_relaxed(tcmp, timer_base + MX1_2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100185
Shawn Guoc7770bb2015-05-19 18:47:47 +0800186 return (int)(tcmp - readl_relaxed(timer_base + MX1_2_TCN)) < 0 ?
Sascha Hauerec996ba2009-02-18 20:58:40 +0100187 -ETIME : 0;
188}
189
Amit Kucheria38a66f52010-04-21 21:34:36 +0300190static int v2_set_next_event(unsigned long evt,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100191 struct clock_event_device *unused)
192{
193 unsigned long tcmp;
194
Shawn Guoc7770bb2015-05-19 18:47:47 +0800195 tcmp = readl_relaxed(timer_base + V2_TCN) + evt;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100196
Shawn Guoc7770bb2015-05-19 18:47:47 +0800197 writel_relaxed(tcmp, timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100198
Shawn Guoeea8e322012-12-06 22:54:41 +0800199 return evt < 0x7fffffff &&
Shawn Guoc7770bb2015-05-19 18:47:47 +0800200 (int)(tcmp - readl_relaxed(timer_base + V2_TCN)) < 0 ?
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200201 -ETIME : 0;
202}
203
204#ifdef DEBUG
205static const char *clock_event_mode_label[] = {
206 [CLOCK_EVT_MODE_PERIODIC] = "CLOCK_EVT_MODE_PERIODIC",
207 [CLOCK_EVT_MODE_ONESHOT] = "CLOCK_EVT_MODE_ONESHOT",
208 [CLOCK_EVT_MODE_SHUTDOWN] = "CLOCK_EVT_MODE_SHUTDOWN",
Uwe Kleine-Königde9c5152012-07-16 22:07:06 +0200209 [CLOCK_EVT_MODE_UNUSED] = "CLOCK_EVT_MODE_UNUSED",
210 [CLOCK_EVT_MODE_RESUME] = "CLOCK_EVT_MODE_RESUME",
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200211};
212#endif /* DEBUG */
213
214static void mxc_set_mode(enum clock_event_mode mode,
Shawn Guoe510d202015-05-22 16:38:49 +0800215 struct clock_event_device *ced)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200216{
Shawn Guoe510d202015-05-22 16:38:49 +0800217 struct imx_timer *imxtm = to_imx_timer(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200218 unsigned long flags;
219
220 /*
221 * The timer interrupt generation is disabled at least
222 * for enough time to call mxc_set_next_event()
223 */
224 local_irq_save(flags);
225
226 /* Disable interrupt in GPT module */
227 gpt_irq_disable();
228
Shawn Guoe510d202015-05-22 16:38:49 +0800229 if (mode != imxtm->cem) {
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200230 /* Set event time into far-far future */
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100231 if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800232 writel_relaxed(readl_relaxed(timer_base + V2_TCN) - 3,
Amit Kucheria38a66f52010-04-21 21:34:36 +0300233 timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100234 else
Shawn Guoc7770bb2015-05-19 18:47:47 +0800235 writel_relaxed(readl_relaxed(timer_base + MX1_2_TCN) - 3,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100236 timer_base + MX1_2_TCMP);
237
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200238 /* Clear pending interrupt */
239 gpt_irq_acknowledge();
240 }
241
242#ifdef DEBUG
243 printk(KERN_INFO "mxc_set_mode: changing mode from %s to %s\n",
Shawn Guoe510d202015-05-22 16:38:49 +0800244 clock_event_mode_label[imxtm->cem],
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200245 clock_event_mode_label[mode]);
246#endif /* DEBUG */
247
248 /* Remember timer mode */
Shawn Guoe510d202015-05-22 16:38:49 +0800249 imxtm->cem = mode;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200250 local_irq_restore(flags);
251
252 switch (mode) {
253 case CLOCK_EVT_MODE_PERIODIC:
254 printk(KERN_ERR"mxc_set_mode: Periodic mode is not "
255 "supported for i.MX\n");
256 break;
257 case CLOCK_EVT_MODE_ONESHOT:
258 /*
259 * Do not put overhead of interrupt enable/disable into
260 * mxc_set_next_event(), the core has about 4 minutes
261 * to call mxc_set_next_event() or shutdown clock after
262 * mode switching
263 */
264 local_irq_save(flags);
265 gpt_irq_enable();
266 local_irq_restore(flags);
267 break;
268 case CLOCK_EVT_MODE_SHUTDOWN:
269 case CLOCK_EVT_MODE_UNUSED:
270 case CLOCK_EVT_MODE_RESUME:
271 /* Left event sources disabled, no more interrupts appear */
272 break;
273 }
274}
275
276/*
277 * IRQ handler for the timer
278 */
279static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
280{
Shawn Guoe510d202015-05-22 16:38:49 +0800281 struct clock_event_device *ced = dev_id;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200282 uint32_t tstat;
283
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100284 if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800285 tstat = readl_relaxed(timer_base + V2_TSTAT);
Sascha Hauer81ec1f92009-04-29 13:55:13 +0200286 else
Shawn Guoc7770bb2015-05-19 18:47:47 +0800287 tstat = readl_relaxed(timer_base + MX1_2_TSTAT);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200288
289 gpt_irq_acknowledge();
290
Shawn Guoe510d202015-05-22 16:38:49 +0800291 ced->event_handler(ced);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200292
293 return IRQ_HANDLED;
294}
295
Shawn Guo6dd74782015-05-22 13:53:45 +0800296static int __init mxc_clockevent_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200297{
Shawn Guoe510d202015-05-22 16:38:49 +0800298 struct clock_event_device *ced = &imxtm->ced;
299 struct irqaction *act = &imxtm->act;
300
301 imxtm->cem = CLOCK_EVT_MODE_UNUSED;
302
303 ced->name = "mxc_timer1";
304 ced->features = CLOCK_EVT_FEAT_ONESHOT;
305 ced->set_mode = mxc_set_mode;
306 ced->set_next_event = imxtm->gpt->set_next_event;
307 ced->rating = 200;
308 ced->cpumask = cpumask_of(0);
309 clockevents_config_and_register(ced, clk_get_rate(imxtm->clk_per),
Shawn Guo838a2ae2013-01-12 11:50:05 +0000310 0xff, 0xfffffffe);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200311
Shawn Guoe510d202015-05-22 16:38:49 +0800312 act->name = "i.MX Timer Tick";
313 act->flags = IRQF_TIMER | IRQF_IRQPOLL;
314 act->handler = mxc_timer_interrupt;
315 act->dev_id = ced;
316
317 return setup_irq(imxtm->irq, act);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200318}
319
Shawn Guo9c8694b2015-05-15 14:24:41 +0800320static void imx1_gpt_setup_tctl(struct imx_timer *imxtm)
321{
322 u32 tctl_val;
323
324 tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
325 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
326}
327#define imx21_gpt_setup_tctl imx1_gpt_setup_tctl
328
329static void imx31_gpt_setup_tctl(struct imx_timer *imxtm)
330{
331 u32 tctl_val;
332
333 tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
334 if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8)
335 tctl_val |= V2_TCTL_CLK_OSC_DIV8;
336 else
337 tctl_val |= V2_TCTL_CLK_PER;
338
339 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
340}
341
342static void imx6dl_gpt_setup_tctl(struct imx_timer *imxtm)
343{
344 u32 tctl_val;
345
346 tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
347 if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8) {
348 tctl_val |= V2_TCTL_CLK_OSC_DIV8;
349 /* 24 / 8 = 3 MHz */
350 writel_relaxed(7 << V2_TPRER_PRE24M, imxtm->base + MXC_TPRER);
351 tctl_val |= V2_TCTL_24MEN;
352 } else {
353 tctl_val |= V2_TCTL_CLK_PER;
354 }
355
356 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
357}
358
359static const struct imx_gpt_data imx1_gpt_data = {
360 .gpt_setup_tctl = imx1_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800361 .set_next_event = mx1_2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800362};
363
364static const struct imx_gpt_data imx21_gpt_data = {
365 .gpt_setup_tctl = imx21_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800366 .set_next_event = mx1_2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800367};
368
369static const struct imx_gpt_data imx31_gpt_data = {
370 .gpt_setup_tctl = imx31_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800371 .set_next_event = v2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800372};
373
374static const struct imx_gpt_data imx6dl_gpt_data = {
375 .gpt_setup_tctl = imx6dl_gpt_setup_tctl,
Shawn Guo5ab04752015-05-22 15:51:41 +0800376 .set_next_event = v2_set_next_event,
Shawn Guo9c8694b2015-05-15 14:24:41 +0800377};
378
Shawn Guo6dd74782015-05-22 13:53:45 +0800379static void __init _mxc_timer_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200380{
Shawn Guo6dd74782015-05-22 13:53:45 +0800381 /* Temporary */
382 timer_base = imxtm->base;
383
Shawn Guo9c8694b2015-05-15 14:24:41 +0800384 switch (imxtm->type) {
385 case GPT_TYPE_IMX1:
386 imxtm->gpt = &imx1_gpt_data;
387 break;
388 case GPT_TYPE_IMX21:
389 imxtm->gpt = &imx21_gpt_data;
390 break;
391 case GPT_TYPE_IMX31:
392 imxtm->gpt = &imx31_gpt_data;
393 break;
394 case GPT_TYPE_IMX6DL:
395 imxtm->gpt = &imx6dl_gpt_data;
396 break;
397 default:
398 BUG();
399 }
400
Shawn Guo6dd74782015-05-22 13:53:45 +0800401 if (IS_ERR(imxtm->clk_per)) {
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200402 pr_err("i.MX timer: unable to get clk\n");
403 return;
Sascha Hauer821dc4d2012-03-09 09:29:27 +0100404 }
Sascha Hauerec996ba2009-02-18 20:58:40 +0100405
Shawn Guo6dd74782015-05-22 13:53:45 +0800406 if (!IS_ERR(imxtm->clk_ipg))
407 clk_prepare_enable(imxtm->clk_ipg);
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200408
Shawn Guo6dd74782015-05-22 13:53:45 +0800409 clk_prepare_enable(imxtm->clk_per);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200410
411 /*
412 * Initialise to a known state (all timers off, and timing reset)
413 */
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200414
Shawn Guo6dd74782015-05-22 13:53:45 +0800415 writel_relaxed(0, imxtm->base + MXC_TCTL);
416 writel_relaxed(0, imxtm->base + MXC_TPRER); /* see datasheet note */
Sascha Hauerec996ba2009-02-18 20:58:40 +0100417
Shawn Guo9c8694b2015-05-15 14:24:41 +0800418 imxtm->gpt->gpt_setup_tctl(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200419
420 /* init and register the timer to the framework */
Shawn Guo6dd74782015-05-22 13:53:45 +0800421 mxc_clocksource_init(imxtm);
422 mxc_clockevent_init(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200423}
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200424
Shawn Guo0931aff2015-05-15 11:41:39 +0800425void __init mxc_timer_init(unsigned long pbase, int irq, enum imx_gpt_type type)
Alexander Shiyanf4696752014-05-27 13:04:46 +0400426{
Shawn Guo6dd74782015-05-22 13:53:45 +0800427 struct imx_timer *imxtm;
Alexander Shiyanf4696752014-05-27 13:04:46 +0400428
Shawn Guo6dd74782015-05-22 13:53:45 +0800429 imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
430 BUG_ON(!imxtm);
Alexander Shiyand7f98912014-05-27 13:04:47 +0400431
Shawn Guo6dd74782015-05-22 13:53:45 +0800432 imxtm->clk_per = clk_get_sys("imx-gpt.0", "per");
433 imxtm->clk_ipg = clk_get_sys("imx-gpt.0", "ipg");
434
435 imxtm->base = ioremap(pbase, SZ_4K);
436 BUG_ON(!imxtm->base);
437
Shawn Guo0931aff2015-05-15 11:41:39 +0800438 imxtm->type = type;
439
Shawn Guo6dd74782015-05-22 13:53:45 +0800440 _mxc_timer_init(imxtm);
Alexander Shiyanf4696752014-05-27 13:04:46 +0400441}
442
Shawn Guobef11c82015-05-15 13:38:20 +0800443static void __init mxc_timer_init_dt(struct device_node *np, enum imx_gpt_type type)
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200444{
Shawn Guo6dd74782015-05-22 13:53:45 +0800445 struct imx_timer *imxtm;
446 static int initialized;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200447
Shawn Guo6dd74782015-05-22 13:53:45 +0800448 /* Support one instance only */
449 if (initialized)
Alexander Shiyanfd4959d2014-07-13 09:34:00 +0400450 return;
451
Shawn Guo6dd74782015-05-22 13:53:45 +0800452 imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
453 BUG_ON(!imxtm);
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200454
Shawn Guo6dd74782015-05-22 13:53:45 +0800455 imxtm->base = of_iomap(np, 0);
456 WARN_ON(!imxtm->base);
457 imxtm->irq = irq_of_parse_and_map(np, 0);
458
459 imxtm->clk_ipg = of_clk_get_by_name(np, "ipg");
Alexander Shiyanf4696752014-05-27 13:04:46 +0400460
Anson Huangbad3db12014-09-11 11:29:42 +0800461 /* Try osc_per first, and fall back to per otherwise */
Shawn Guo6dd74782015-05-22 13:53:45 +0800462 imxtm->clk_per = of_clk_get_by_name(np, "osc_per");
463 if (IS_ERR(imxtm->clk_per))
464 imxtm->clk_per = of_clk_get_by_name(np, "per");
Anson Huangbad3db12014-09-11 11:29:42 +0800465
Shawn Guobef11c82015-05-15 13:38:20 +0800466 imxtm->type = type;
467
Shawn Guo6dd74782015-05-22 13:53:45 +0800468 _mxc_timer_init(imxtm);
469
470 initialized = 1;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200471}
Shawn Guobef11c82015-05-15 13:38:20 +0800472
473static void __init imx1_timer_init_dt(struct device_node *np)
474{
475 mxc_timer_init_dt(np, GPT_TYPE_IMX1);
476}
477
478static void __init imx21_timer_init_dt(struct device_node *np)
479{
480 mxc_timer_init_dt(np, GPT_TYPE_IMX21);
481}
482
483static void __init imx31_timer_init_dt(struct device_node *np)
484{
485 enum imx_gpt_type type = GPT_TYPE_IMX31;
486
487 /*
488 * We were using the same compatible string for i.MX6Q/D and i.MX6DL/S
489 * GPT device, while they actually have different programming model.
490 * This is a workaround to keep the existing i.MX6DL/S DTBs continue
491 * working with the new kernel.
492 */
493 if (of_machine_is_compatible("fsl,imx6dl"))
494 type = GPT_TYPE_IMX6DL;
495
496 mxc_timer_init_dt(np, type);
497}
498
499static void __init imx6dl_timer_init_dt(struct device_node *np)
500{
501 mxc_timer_init_dt(np, GPT_TYPE_IMX6DL);
502}
503
504CLOCKSOURCE_OF_DECLARE(imx1_timer, "fsl,imx1-gpt", imx1_timer_init_dt);
505CLOCKSOURCE_OF_DECLARE(imx21_timer, "fsl,imx21-gpt", imx21_timer_init_dt);
506CLOCKSOURCE_OF_DECLARE(imx31_timer, "fsl,imx31-gpt", imx31_timer_init_dt);
507CLOCKSOURCE_OF_DECLARE(imx25_timer, "fsl,imx25-gpt", imx31_timer_init_dt);
508CLOCKSOURCE_OF_DECLARE(imx50_timer, "fsl,imx50-gpt", imx31_timer_init_dt);
509CLOCKSOURCE_OF_DECLARE(imx51_timer, "fsl,imx51-gpt", imx31_timer_init_dt);
510CLOCKSOURCE_OF_DECLARE(imx53_timer, "fsl,imx53-gpt", imx31_timer_init_dt);
511CLOCKSOURCE_OF_DECLARE(imx6q_timer, "fsl,imx6q-gpt", imx31_timer_init_dt);
512CLOCKSOURCE_OF_DECLARE(imx6dl_timer, "fsl,imx6dl-gpt", imx6dl_timer_init_dt);
513CLOCKSOURCE_OF_DECLARE(imx6sl_timer, "fsl,imx6sl-gpt", imx6dl_timer_init_dt);
514CLOCKSOURCE_OF_DECLARE(imx6sx_timer, "fsl,imx6sx-gpt", imx6dl_timer_init_dt);