blob: 7c131e1b263770094872600e7c48a95ad1e9ea54 [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>
Juergen Beisertd0f349f2008-07-05 10:02:50 +020035
Juergen Beisertd0f349f2008-07-05 10:02:50 +020036#include <asm/mach/time.h>
Shawn Guoe3372472012-09-13 21:01:00 +080037
38#include "common.h"
Shawn Guo50f2de62012-09-14 14:14:45 +080039#include "hardware.h"
Sascha Hauerec996ba2009-02-18 20:58:40 +010040
Sascha Hauer0f3332c2009-12-04 09:34:51 +010041/*
Shenwei Wang65d0a162015-04-29 16:40:27 -050042 * There are 4 versions of the timer hardware on Freescale MXC hardware.
43 * - MX1/MXL
44 * - MX21, MX27.
45 * - MX25, MX31, MX35, MX37, MX51, MX6Q(rev1.0)
46 * - MX6DL, MX6SX, MX6Q(rev1.1+)
Sascha Hauer0f3332c2009-12-04 09:34:51 +010047 */
48
Sascha Hauerec996ba2009-02-18 20:58:40 +010049/* defines common for all i.MX */
50#define MXC_TCTL 0x00
Sascha Hauer0f3332c2009-12-04 09:34:51 +010051#define MXC_TCTL_TEN (1 << 0) /* Enable module */
Sascha Hauerec996ba2009-02-18 20:58:40 +010052#define MXC_TPRER 0x04
53
54/* MX1, MX21, MX27 */
55#define MX1_2_TCTL_CLK_PCLK1 (1 << 1)
56#define MX1_2_TCTL_IRQEN (1 << 4)
57#define MX1_2_TCTL_FRR (1 << 8)
58#define MX1_2_TCMP 0x08
59#define MX1_2_TCN 0x10
60#define MX1_2_TSTAT 0x14
61
62/* MX21, MX27 */
63#define MX2_TSTAT_CAPT (1 << 1)
64#define MX2_TSTAT_COMP (1 << 0)
65
Anson Huangbad3db12014-09-11 11:29:42 +080066/* MX31, MX35, MX25, MX5, MX6 */
Amit Kucheria38a66f52010-04-21 21:34:36 +030067#define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */
68#define V2_TCTL_CLK_IPG (1 << 6)
Richard Zhao1f152b42012-05-15 15:34:40 +080069#define V2_TCTL_CLK_PER (2 << 6)
Anson Huangbad3db12014-09-11 11:29:42 +080070#define V2_TCTL_CLK_OSC_DIV8 (5 << 6)
Amit Kucheria38a66f52010-04-21 21:34:36 +030071#define V2_TCTL_FRR (1 << 9)
Anson Huangbad3db12014-09-11 11:29:42 +080072#define V2_TCTL_24MEN (1 << 10)
73#define V2_TPRER_PRE24M 12
Amit Kucheria38a66f52010-04-21 21:34:36 +030074#define V2_IR 0x0c
75#define V2_TSTAT 0x08
76#define V2_TSTAT_OF1 (1 << 0)
77#define V2_TCN 0x24
78#define V2_TCMP 0x10
Juergen Beisertd0f349f2008-07-05 10:02:50 +020079
Anson Huangbad3db12014-09-11 11:29:42 +080080#define V2_TIMER_RATE_OSC_DIV8 3000000
81
Sascha Hauer0f3332c2009-12-04 09:34:51 +010082#define timer_is_v1() (cpu_is_mx1() || cpu_is_mx21() || cpu_is_mx27())
83#define timer_is_v2() (!timer_is_v1())
84
Juergen Beisertd0f349f2008-07-05 10:02:50 +020085static struct clock_event_device clockevent_mxc;
86static enum clock_event_mode clockevent_mode = CLOCK_EVT_MODE_UNUSED;
87
Shawn Guo6dd74782015-05-22 13:53:45 +080088struct imx_timer {
89 void __iomem *base;
90 int irq;
91 struct clk *clk_per;
92 struct clk *clk_ipg;
93};
94
Sascha Hauerec996ba2009-02-18 20:58:40 +010095static void __iomem *timer_base;
Juergen Beisertd0f349f2008-07-05 10:02:50 +020096
Sascha Hauerec996ba2009-02-18 20:58:40 +010097static inline void gpt_irq_disable(void)
Juergen Beisertd0f349f2008-07-05 10:02:50 +020098{
Sascha Hauerec996ba2009-02-18 20:58:40 +010099 unsigned int tmp;
100
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100101 if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800102 writel_relaxed(0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100103 else {
Shawn Guoc7770bb2015-05-19 18:47:47 +0800104 tmp = readl_relaxed(timer_base + MXC_TCTL);
105 writel_relaxed(tmp & ~MX1_2_TCTL_IRQEN, timer_base + MXC_TCTL);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100106 }
107}
108
109static inline void gpt_irq_enable(void)
110{
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100111 if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800112 writel_relaxed(1<<0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100113 else {
Shawn Guoc7770bb2015-05-19 18:47:47 +0800114 writel_relaxed(readl_relaxed(timer_base + MXC_TCTL) | MX1_2_TCTL_IRQEN,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100115 timer_base + MXC_TCTL);
116 }
117}
118
119static void gpt_irq_acknowledge(void)
120{
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100121 if (timer_is_v1()) {
122 if (cpu_is_mx1())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800123 writel_relaxed(0, timer_base + MX1_2_TSTAT);
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100124 else
Shawn Guoc7770bb2015-05-19 18:47:47 +0800125 writel_relaxed(MX2_TSTAT_CAPT | MX2_TSTAT_COMP,
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100126 timer_base + MX1_2_TSTAT);
127 } else if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800128 writel_relaxed(V2_TSTAT_OF1, timer_base + V2_TSTAT);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100129}
130
Russell King234b6ced2011-05-08 14:09:47 +0100131static void __iomem *sched_clock_reg;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200132
Stephen Boydb93767e2013-11-15 15:26:12 -0800133static u64 notrace mxc_read_sched_clock(void)
Jan Weitzelc124bef2011-03-17 13:44:30 +0100134{
Shawn Guoc7770bb2015-05-19 18:47:47 +0800135 return sched_clock_reg ? readl_relaxed(sched_clock_reg) : 0;
Jan Weitzelc124bef2011-03-17 13:44:30 +0100136}
137
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100138static struct delay_timer imx_delay_timer;
139
140static unsigned long imx_read_current_timer(void)
141{
Shawn Guoc7770bb2015-05-19 18:47:47 +0800142 return readl_relaxed(sched_clock_reg);
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100143}
144
Shawn Guo6dd74782015-05-22 13:53:45 +0800145static int __init mxc_clocksource_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200146{
Shawn Guo6dd74782015-05-22 13:53:45 +0800147 unsigned int c = clk_get_rate(imxtm->clk_per);
148 void __iomem *reg = imxtm->base + (timer_is_v2() ? V2_TCN : MX1_2_TCN);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200149
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100150 imx_delay_timer.read_current_timer = &imx_read_current_timer;
151 imx_delay_timer.freq = c;
152 register_current_timer_delay(&imx_delay_timer);
153
Russell King234b6ced2011-05-08 14:09:47 +0100154 sched_clock_reg = reg;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100155
Stephen Boydb93767e2013-11-15 15:26:12 -0800156 sched_clock_register(mxc_read_sched_clock, 32, c);
Russell King234b6ced2011-05-08 14:09:47 +0100157 return clocksource_mmio_init(reg, "mxc_timer1", c, 200, 32,
158 clocksource_mmio_readl_up);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200159}
160
161/* clock event */
162
Sascha Hauerec996ba2009-02-18 20:58:40 +0100163static int mx1_2_set_next_event(unsigned long evt,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200164 struct clock_event_device *unused)
165{
166 unsigned long tcmp;
167
Shawn Guoc7770bb2015-05-19 18:47:47 +0800168 tcmp = readl_relaxed(timer_base + MX1_2_TCN) + evt;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200169
Shawn Guoc7770bb2015-05-19 18:47:47 +0800170 writel_relaxed(tcmp, timer_base + MX1_2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100171
Shawn Guoc7770bb2015-05-19 18:47:47 +0800172 return (int)(tcmp - readl_relaxed(timer_base + MX1_2_TCN)) < 0 ?
Sascha Hauerec996ba2009-02-18 20:58:40 +0100173 -ETIME : 0;
174}
175
Amit Kucheria38a66f52010-04-21 21:34:36 +0300176static int v2_set_next_event(unsigned long evt,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100177 struct clock_event_device *unused)
178{
179 unsigned long tcmp;
180
Shawn Guoc7770bb2015-05-19 18:47:47 +0800181 tcmp = readl_relaxed(timer_base + V2_TCN) + evt;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100182
Shawn Guoc7770bb2015-05-19 18:47:47 +0800183 writel_relaxed(tcmp, timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100184
Shawn Guoeea8e322012-12-06 22:54:41 +0800185 return evt < 0x7fffffff &&
Shawn Guoc7770bb2015-05-19 18:47:47 +0800186 (int)(tcmp - readl_relaxed(timer_base + V2_TCN)) < 0 ?
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200187 -ETIME : 0;
188}
189
190#ifdef DEBUG
191static const char *clock_event_mode_label[] = {
192 [CLOCK_EVT_MODE_PERIODIC] = "CLOCK_EVT_MODE_PERIODIC",
193 [CLOCK_EVT_MODE_ONESHOT] = "CLOCK_EVT_MODE_ONESHOT",
194 [CLOCK_EVT_MODE_SHUTDOWN] = "CLOCK_EVT_MODE_SHUTDOWN",
Uwe Kleine-Königde9c5152012-07-16 22:07:06 +0200195 [CLOCK_EVT_MODE_UNUSED] = "CLOCK_EVT_MODE_UNUSED",
196 [CLOCK_EVT_MODE_RESUME] = "CLOCK_EVT_MODE_RESUME",
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200197};
198#endif /* DEBUG */
199
200static void mxc_set_mode(enum clock_event_mode mode,
201 struct clock_event_device *evt)
202{
203 unsigned long flags;
204
205 /*
206 * The timer interrupt generation is disabled at least
207 * for enough time to call mxc_set_next_event()
208 */
209 local_irq_save(flags);
210
211 /* Disable interrupt in GPT module */
212 gpt_irq_disable();
213
214 if (mode != clockevent_mode) {
215 /* Set event time into far-far future */
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100216 if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800217 writel_relaxed(readl_relaxed(timer_base + V2_TCN) - 3,
Amit Kucheria38a66f52010-04-21 21:34:36 +0300218 timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100219 else
Shawn Guoc7770bb2015-05-19 18:47:47 +0800220 writel_relaxed(readl_relaxed(timer_base + MX1_2_TCN) - 3,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100221 timer_base + MX1_2_TCMP);
222
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200223 /* Clear pending interrupt */
224 gpt_irq_acknowledge();
225 }
226
227#ifdef DEBUG
228 printk(KERN_INFO "mxc_set_mode: changing mode from %s to %s\n",
229 clock_event_mode_label[clockevent_mode],
230 clock_event_mode_label[mode]);
231#endif /* DEBUG */
232
233 /* Remember timer mode */
234 clockevent_mode = mode;
235 local_irq_restore(flags);
236
237 switch (mode) {
238 case CLOCK_EVT_MODE_PERIODIC:
239 printk(KERN_ERR"mxc_set_mode: Periodic mode is not "
240 "supported for i.MX\n");
241 break;
242 case CLOCK_EVT_MODE_ONESHOT:
243 /*
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 */
249 local_irq_save(flags);
250 gpt_irq_enable();
251 local_irq_restore(flags);
252 break;
253 case CLOCK_EVT_MODE_SHUTDOWN:
254 case CLOCK_EVT_MODE_UNUSED:
255 case CLOCK_EVT_MODE_RESUME:
256 /* Left event sources disabled, no more interrupts appear */
257 break;
258 }
259}
260
261/*
262 * IRQ handler for the timer
263 */
264static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
265{
266 struct clock_event_device *evt = &clockevent_mxc;
267 uint32_t tstat;
268
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100269 if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800270 tstat = readl_relaxed(timer_base + V2_TSTAT);
Sascha Hauer81ec1f92009-04-29 13:55:13 +0200271 else
Shawn Guoc7770bb2015-05-19 18:47:47 +0800272 tstat = readl_relaxed(timer_base + MX1_2_TSTAT);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200273
274 gpt_irq_acknowledge();
275
276 evt->event_handler(evt);
277
278 return IRQ_HANDLED;
279}
280
281static struct irqaction mxc_timer_irq = {
282 .name = "i.MX Timer Tick",
Michael Opdenacker4c1dd3e2013-09-04 07:04:39 +0200283 .flags = IRQF_TIMER | IRQF_IRQPOLL,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200284 .handler = mxc_timer_interrupt,
285};
286
287static struct clock_event_device clockevent_mxc = {
288 .name = "mxc_timer1",
289 .features = CLOCK_EVT_FEAT_ONESHOT,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200290 .set_mode = mxc_set_mode,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100291 .set_next_event = mx1_2_set_next_event,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200292 .rating = 200,
293};
294
Shawn Guo6dd74782015-05-22 13:53:45 +0800295static int __init mxc_clockevent_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200296{
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100297 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300298 clockevent_mxc.set_next_event = v2_set_next_event;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100299
Rusty Russell320ab2b2008-12-13 21:20:26 +1030300 clockevent_mxc.cpumask = cpumask_of(0);
Shawn Guo838a2ae2013-01-12 11:50:05 +0000301 clockevents_config_and_register(&clockevent_mxc,
Shawn Guo6dd74782015-05-22 13:53:45 +0800302 clk_get_rate(imxtm->clk_per),
Shawn Guo838a2ae2013-01-12 11:50:05 +0000303 0xff, 0xfffffffe);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200304
305 return 0;
306}
307
Shawn Guo6dd74782015-05-22 13:53:45 +0800308static void __init _mxc_timer_init(struct imx_timer *imxtm)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200309{
Sascha Hauerec996ba2009-02-18 20:58:40 +0100310 uint32_t tctl_val;
Sascha Hauer821dc4d2012-03-09 09:29:27 +0100311
Shawn Guo6dd74782015-05-22 13:53:45 +0800312 /* Temporary */
313 timer_base = imxtm->base;
314
315 if (IS_ERR(imxtm->clk_per)) {
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200316 pr_err("i.MX timer: unable to get clk\n");
317 return;
Sascha Hauer821dc4d2012-03-09 09:29:27 +0100318 }
Sascha Hauerec996ba2009-02-18 20:58:40 +0100319
Shawn Guo6dd74782015-05-22 13:53:45 +0800320 if (!IS_ERR(imxtm->clk_ipg))
321 clk_prepare_enable(imxtm->clk_ipg);
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200322
Shawn Guo6dd74782015-05-22 13:53:45 +0800323 clk_prepare_enable(imxtm->clk_per);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200324
325 /*
326 * Initialise to a known state (all timers off, and timing reset)
327 */
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200328
Shawn Guo6dd74782015-05-22 13:53:45 +0800329 writel_relaxed(0, imxtm->base + MXC_TCTL);
330 writel_relaxed(0, imxtm->base + MXC_TPRER); /* see datasheet note */
Sascha Hauerec996ba2009-02-18 20:58:40 +0100331
Anson Huangbad3db12014-09-11 11:29:42 +0800332 if (timer_is_v2()) {
333 tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
Shawn Guo6dd74782015-05-22 13:53:45 +0800334 if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8) {
Anson Huangbad3db12014-09-11 11:29:42 +0800335 tctl_val |= V2_TCTL_CLK_OSC_DIV8;
336 if (cpu_is_imx6dl() || cpu_is_imx6sx()) {
337 /* 24 / 8 = 3 MHz */
Shawn Guoc7770bb2015-05-19 18:47:47 +0800338 writel_relaxed(7 << V2_TPRER_PRE24M,
Shawn Guo6dd74782015-05-22 13:53:45 +0800339 imxtm->base + MXC_TPRER);
Anson Huangbad3db12014-09-11 11:29:42 +0800340 tctl_val |= V2_TCTL_24MEN;
341 }
342 } else {
343 tctl_val |= V2_TCTL_CLK_PER;
344 }
345 } else {
Sascha Hauerec996ba2009-02-18 20:58:40 +0100346 tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
Anson Huangbad3db12014-09-11 11:29:42 +0800347 }
Sascha Hauerec996ba2009-02-18 20:58:40 +0100348
Shawn Guo6dd74782015-05-22 13:53:45 +0800349 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200350
351 /* init and register the timer to the framework */
Shawn Guo6dd74782015-05-22 13:53:45 +0800352 mxc_clocksource_init(imxtm);
353 mxc_clockevent_init(imxtm);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200354
355 /* Make irqs happen */
Shawn Guo6dd74782015-05-22 13:53:45 +0800356 setup_irq(imxtm->irq, &mxc_timer_irq);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200357}
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200358
Shawn Guo6c529c42015-04-25 15:44:10 +0800359void __init mxc_timer_init(unsigned long pbase, int irq)
Alexander Shiyanf4696752014-05-27 13:04:46 +0400360{
Shawn Guo6dd74782015-05-22 13:53:45 +0800361 struct imx_timer *imxtm;
Alexander Shiyanf4696752014-05-27 13:04:46 +0400362
Shawn Guo6dd74782015-05-22 13:53:45 +0800363 imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
364 BUG_ON(!imxtm);
Alexander Shiyand7f98912014-05-27 13:04:47 +0400365
Shawn Guo6dd74782015-05-22 13:53:45 +0800366 imxtm->clk_per = clk_get_sys("imx-gpt.0", "per");
367 imxtm->clk_ipg = clk_get_sys("imx-gpt.0", "ipg");
368
369 imxtm->base = ioremap(pbase, SZ_4K);
370 BUG_ON(!imxtm->base);
371
372 _mxc_timer_init(imxtm);
Alexander Shiyanf4696752014-05-27 13:04:46 +0400373}
374
Alexander Shiyanfd4959d2014-07-13 09:34:00 +0400375static void __init mxc_timer_init_dt(struct device_node *np)
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200376{
Shawn Guo6dd74782015-05-22 13:53:45 +0800377 struct imx_timer *imxtm;
378 static int initialized;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200379
Shawn Guo6dd74782015-05-22 13:53:45 +0800380 /* Support one instance only */
381 if (initialized)
Alexander Shiyanfd4959d2014-07-13 09:34:00 +0400382 return;
383
Shawn Guo6dd74782015-05-22 13:53:45 +0800384 imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
385 BUG_ON(!imxtm);
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200386
Shawn Guo6dd74782015-05-22 13:53:45 +0800387 imxtm->base = of_iomap(np, 0);
388 WARN_ON(!imxtm->base);
389 imxtm->irq = irq_of_parse_and_map(np, 0);
390
391 imxtm->clk_ipg = of_clk_get_by_name(np, "ipg");
Alexander Shiyanf4696752014-05-27 13:04:46 +0400392
Anson Huangbad3db12014-09-11 11:29:42 +0800393 /* Try osc_per first, and fall back to per otherwise */
Shawn Guo6dd74782015-05-22 13:53:45 +0800394 imxtm->clk_per = of_clk_get_by_name(np, "osc_per");
395 if (IS_ERR(imxtm->clk_per))
396 imxtm->clk_per = of_clk_get_by_name(np, "per");
Anson Huangbad3db12014-09-11 11:29:42 +0800397
Shawn Guo6dd74782015-05-22 13:53:45 +0800398 _mxc_timer_init(imxtm);
399
400 initialized = 1;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200401}
Alexander Shiyanfd4959d2014-07-13 09:34:00 +0400402CLOCKSOURCE_OF_DECLARE(mx1_timer, "fsl,imx1-gpt", mxc_timer_init_dt);
403CLOCKSOURCE_OF_DECLARE(mx25_timer, "fsl,imx25-gpt", mxc_timer_init_dt);
404CLOCKSOURCE_OF_DECLARE(mx50_timer, "fsl,imx50-gpt", mxc_timer_init_dt);
405CLOCKSOURCE_OF_DECLARE(mx51_timer, "fsl,imx51-gpt", mxc_timer_init_dt);
406CLOCKSOURCE_OF_DECLARE(mx53_timer, "fsl,imx53-gpt", mxc_timer_init_dt);
407CLOCKSOURCE_OF_DECLARE(mx6q_timer, "fsl,imx6q-gpt", mxc_timer_init_dt);
408CLOCKSOURCE_OF_DECLARE(mx6sl_timer, "fsl,imx6sl-gpt", mxc_timer_init_dt);
409CLOCKSOURCE_OF_DECLARE(mx6sx_timer, "fsl,imx6sx-gpt", mxc_timer_init_dt);