blob: 376d5d8ccfb8f7dd3e10e8b27bf49115b79ac5bc [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>
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +020031#include <linux/of.h>
32#include <linux/of_address.h>
33#include <linux/of_irq.h>
Juergen Beisertd0f349f2008-07-05 10:02:50 +020034
Juergen Beisertd0f349f2008-07-05 10:02:50 +020035#include <asm/mach/time.h>
Shawn Guoe3372472012-09-13 21:01:00 +080036
37#include "common.h"
Shawn Guo50f2de62012-09-14 14:14:45 +080038#include "hardware.h"
Sascha Hauerec996ba2009-02-18 20:58:40 +010039
Sascha Hauer0f3332c2009-12-04 09:34:51 +010040/*
Shenwei Wang65d0a162015-04-29 16:40:27 -050041 * There are 4 versions of the timer hardware on Freescale MXC hardware.
42 * - MX1/MXL
43 * - MX21, MX27.
44 * - MX25, MX31, MX35, MX37, MX51, MX6Q(rev1.0)
45 * - MX6DL, MX6SX, MX6Q(rev1.1+)
Sascha Hauer0f3332c2009-12-04 09:34:51 +010046 */
47
Sascha Hauerec996ba2009-02-18 20:58:40 +010048/* defines common for all i.MX */
49#define MXC_TCTL 0x00
Sascha Hauer0f3332c2009-12-04 09:34:51 +010050#define MXC_TCTL_TEN (1 << 0) /* Enable module */
Sascha Hauerec996ba2009-02-18 20:58:40 +010051#define MXC_TPRER 0x04
52
53/* MX1, MX21, MX27 */
54#define MX1_2_TCTL_CLK_PCLK1 (1 << 1)
55#define MX1_2_TCTL_IRQEN (1 << 4)
56#define MX1_2_TCTL_FRR (1 << 8)
57#define MX1_2_TCMP 0x08
58#define MX1_2_TCN 0x10
59#define MX1_2_TSTAT 0x14
60
61/* MX21, MX27 */
62#define MX2_TSTAT_CAPT (1 << 1)
63#define MX2_TSTAT_COMP (1 << 0)
64
Anson Huangbad3db12014-09-11 11:29:42 +080065/* MX31, MX35, MX25, MX5, MX6 */
Amit Kucheria38a66f52010-04-21 21:34:36 +030066#define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */
67#define V2_TCTL_CLK_IPG (1 << 6)
Richard Zhao1f152b42012-05-15 15:34:40 +080068#define V2_TCTL_CLK_PER (2 << 6)
Anson Huangbad3db12014-09-11 11:29:42 +080069#define V2_TCTL_CLK_OSC_DIV8 (5 << 6)
Amit Kucheria38a66f52010-04-21 21:34:36 +030070#define V2_TCTL_FRR (1 << 9)
Anson Huangbad3db12014-09-11 11:29:42 +080071#define V2_TCTL_24MEN (1 << 10)
72#define V2_TPRER_PRE24M 12
Amit Kucheria38a66f52010-04-21 21:34:36 +030073#define V2_IR 0x0c
74#define V2_TSTAT 0x08
75#define V2_TSTAT_OF1 (1 << 0)
76#define V2_TCN 0x24
77#define V2_TCMP 0x10
Juergen Beisertd0f349f2008-07-05 10:02:50 +020078
Anson Huangbad3db12014-09-11 11:29:42 +080079#define V2_TIMER_RATE_OSC_DIV8 3000000
80
Sascha Hauer0f3332c2009-12-04 09:34:51 +010081#define timer_is_v1() (cpu_is_mx1() || cpu_is_mx21() || cpu_is_mx27())
82#define timer_is_v2() (!timer_is_v1())
83
Juergen Beisertd0f349f2008-07-05 10:02:50 +020084static struct clock_event_device clockevent_mxc;
85static enum clock_event_mode clockevent_mode = CLOCK_EVT_MODE_UNUSED;
86
Sascha Hauerec996ba2009-02-18 20:58:40 +010087static void __iomem *timer_base;
Juergen Beisertd0f349f2008-07-05 10:02:50 +020088
Sascha Hauerec996ba2009-02-18 20:58:40 +010089static inline void gpt_irq_disable(void)
Juergen Beisertd0f349f2008-07-05 10:02:50 +020090{
Sascha Hauerec996ba2009-02-18 20:58:40 +010091 unsigned int tmp;
92
Sascha Hauer0f3332c2009-12-04 09:34:51 +010093 if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +080094 writel_relaxed(0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +010095 else {
Shawn Guoc7770bb2015-05-19 18:47:47 +080096 tmp = readl_relaxed(timer_base + MXC_TCTL);
97 writel_relaxed(tmp & ~MX1_2_TCTL_IRQEN, timer_base + MXC_TCTL);
Sascha Hauerec996ba2009-02-18 20:58:40 +010098 }
99}
100
101static inline void gpt_irq_enable(void)
102{
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100103 if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800104 writel_relaxed(1<<0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100105 else {
Shawn Guoc7770bb2015-05-19 18:47:47 +0800106 writel_relaxed(readl_relaxed(timer_base + MXC_TCTL) | MX1_2_TCTL_IRQEN,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100107 timer_base + MXC_TCTL);
108 }
109}
110
111static void gpt_irq_acknowledge(void)
112{
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100113 if (timer_is_v1()) {
114 if (cpu_is_mx1())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800115 writel_relaxed(0, timer_base + MX1_2_TSTAT);
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100116 else
Shawn Guoc7770bb2015-05-19 18:47:47 +0800117 writel_relaxed(MX2_TSTAT_CAPT | MX2_TSTAT_COMP,
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100118 timer_base + MX1_2_TSTAT);
119 } else if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800120 writel_relaxed(V2_TSTAT_OF1, timer_base + V2_TSTAT);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100121}
122
Russell King234b6ced2011-05-08 14:09:47 +0100123static void __iomem *sched_clock_reg;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200124
Stephen Boydb93767e2013-11-15 15:26:12 -0800125static u64 notrace mxc_read_sched_clock(void)
Jan Weitzelc124bef2011-03-17 13:44:30 +0100126{
Shawn Guoc7770bb2015-05-19 18:47:47 +0800127 return sched_clock_reg ? readl_relaxed(sched_clock_reg) : 0;
Jan Weitzelc124bef2011-03-17 13:44:30 +0100128}
129
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100130static struct delay_timer imx_delay_timer;
131
132static unsigned long imx_read_current_timer(void)
133{
Shawn Guoc7770bb2015-05-19 18:47:47 +0800134 return readl_relaxed(sched_clock_reg);
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100135}
136
Sascha Hauer30c730f2009-02-16 14:36:49 +0100137static int __init mxc_clocksource_init(struct clk *timer_clk)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200138{
Holger Schurig058b7a62009-01-26 16:34:51 +0100139 unsigned int c = clk_get_rate(timer_clk);
Russell King234b6ced2011-05-08 14:09:47 +0100140 void __iomem *reg = timer_base + (timer_is_v2() ? V2_TCN : MX1_2_TCN);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200141
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100142 imx_delay_timer.read_current_timer = &imx_read_current_timer;
143 imx_delay_timer.freq = c;
144 register_current_timer_delay(&imx_delay_timer);
145
Russell King234b6ced2011-05-08 14:09:47 +0100146 sched_clock_reg = reg;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100147
Stephen Boydb93767e2013-11-15 15:26:12 -0800148 sched_clock_register(mxc_read_sched_clock, 32, c);
Russell King234b6ced2011-05-08 14:09:47 +0100149 return clocksource_mmio_init(reg, "mxc_timer1", c, 200, 32,
150 clocksource_mmio_readl_up);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200151}
152
153/* clock event */
154
Sascha Hauerec996ba2009-02-18 20:58:40 +0100155static int mx1_2_set_next_event(unsigned long evt,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200156 struct clock_event_device *unused)
157{
158 unsigned long tcmp;
159
Shawn Guoc7770bb2015-05-19 18:47:47 +0800160 tcmp = readl_relaxed(timer_base + MX1_2_TCN) + evt;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200161
Shawn Guoc7770bb2015-05-19 18:47:47 +0800162 writel_relaxed(tcmp, timer_base + MX1_2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100163
Shawn Guoc7770bb2015-05-19 18:47:47 +0800164 return (int)(tcmp - readl_relaxed(timer_base + MX1_2_TCN)) < 0 ?
Sascha Hauerec996ba2009-02-18 20:58:40 +0100165 -ETIME : 0;
166}
167
Amit Kucheria38a66f52010-04-21 21:34:36 +0300168static int v2_set_next_event(unsigned long evt,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100169 struct clock_event_device *unused)
170{
171 unsigned long tcmp;
172
Shawn Guoc7770bb2015-05-19 18:47:47 +0800173 tcmp = readl_relaxed(timer_base + V2_TCN) + evt;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100174
Shawn Guoc7770bb2015-05-19 18:47:47 +0800175 writel_relaxed(tcmp, timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100176
Shawn Guoeea8e322012-12-06 22:54:41 +0800177 return evt < 0x7fffffff &&
Shawn Guoc7770bb2015-05-19 18:47:47 +0800178 (int)(tcmp - readl_relaxed(timer_base + V2_TCN)) < 0 ?
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200179 -ETIME : 0;
180}
181
182#ifdef DEBUG
183static const char *clock_event_mode_label[] = {
184 [CLOCK_EVT_MODE_PERIODIC] = "CLOCK_EVT_MODE_PERIODIC",
185 [CLOCK_EVT_MODE_ONESHOT] = "CLOCK_EVT_MODE_ONESHOT",
186 [CLOCK_EVT_MODE_SHUTDOWN] = "CLOCK_EVT_MODE_SHUTDOWN",
Uwe Kleine-Königde9c5152012-07-16 22:07:06 +0200187 [CLOCK_EVT_MODE_UNUSED] = "CLOCK_EVT_MODE_UNUSED",
188 [CLOCK_EVT_MODE_RESUME] = "CLOCK_EVT_MODE_RESUME",
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200189};
190#endif /* DEBUG */
191
192static void mxc_set_mode(enum clock_event_mode mode,
193 struct clock_event_device *evt)
194{
195 unsigned long flags;
196
197 /*
198 * The timer interrupt generation is disabled at least
199 * for enough time to call mxc_set_next_event()
200 */
201 local_irq_save(flags);
202
203 /* Disable interrupt in GPT module */
204 gpt_irq_disable();
205
206 if (mode != clockevent_mode) {
207 /* Set event time into far-far future */
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100208 if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800209 writel_relaxed(readl_relaxed(timer_base + V2_TCN) - 3,
Amit Kucheria38a66f52010-04-21 21:34:36 +0300210 timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100211 else
Shawn Guoc7770bb2015-05-19 18:47:47 +0800212 writel_relaxed(readl_relaxed(timer_base + MX1_2_TCN) - 3,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100213 timer_base + MX1_2_TCMP);
214
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200215 /* Clear pending interrupt */
216 gpt_irq_acknowledge();
217 }
218
219#ifdef DEBUG
220 printk(KERN_INFO "mxc_set_mode: changing mode from %s to %s\n",
221 clock_event_mode_label[clockevent_mode],
222 clock_event_mode_label[mode]);
223#endif /* DEBUG */
224
225 /* Remember timer mode */
226 clockevent_mode = mode;
227 local_irq_restore(flags);
228
229 switch (mode) {
230 case CLOCK_EVT_MODE_PERIODIC:
231 printk(KERN_ERR"mxc_set_mode: Periodic mode is not "
232 "supported for i.MX\n");
233 break;
234 case CLOCK_EVT_MODE_ONESHOT:
235 /*
236 * Do not put overhead of interrupt enable/disable into
237 * mxc_set_next_event(), the core has about 4 minutes
238 * to call mxc_set_next_event() or shutdown clock after
239 * mode switching
240 */
241 local_irq_save(flags);
242 gpt_irq_enable();
243 local_irq_restore(flags);
244 break;
245 case CLOCK_EVT_MODE_SHUTDOWN:
246 case CLOCK_EVT_MODE_UNUSED:
247 case CLOCK_EVT_MODE_RESUME:
248 /* Left event sources disabled, no more interrupts appear */
249 break;
250 }
251}
252
253/*
254 * IRQ handler for the timer
255 */
256static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
257{
258 struct clock_event_device *evt = &clockevent_mxc;
259 uint32_t tstat;
260
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100261 if (timer_is_v2())
Shawn Guoc7770bb2015-05-19 18:47:47 +0800262 tstat = readl_relaxed(timer_base + V2_TSTAT);
Sascha Hauer81ec1f92009-04-29 13:55:13 +0200263 else
Shawn Guoc7770bb2015-05-19 18:47:47 +0800264 tstat = readl_relaxed(timer_base + MX1_2_TSTAT);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200265
266 gpt_irq_acknowledge();
267
268 evt->event_handler(evt);
269
270 return IRQ_HANDLED;
271}
272
273static struct irqaction mxc_timer_irq = {
274 .name = "i.MX Timer Tick",
Michael Opdenacker4c1dd3e2013-09-04 07:04:39 +0200275 .flags = IRQF_TIMER | IRQF_IRQPOLL,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200276 .handler = mxc_timer_interrupt,
277};
278
279static struct clock_event_device clockevent_mxc = {
280 .name = "mxc_timer1",
281 .features = CLOCK_EVT_FEAT_ONESHOT,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200282 .set_mode = mxc_set_mode,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100283 .set_next_event = mx1_2_set_next_event,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200284 .rating = 200,
285};
286
Sascha Hauer30c730f2009-02-16 14:36:49 +0100287static int __init mxc_clockevent_init(struct clk *timer_clk)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200288{
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100289 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300290 clockevent_mxc.set_next_event = v2_set_next_event;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100291
Rusty Russell320ab2b2008-12-13 21:20:26 +1030292 clockevent_mxc.cpumask = cpumask_of(0);
Shawn Guo838a2ae2013-01-12 11:50:05 +0000293 clockevents_config_and_register(&clockevent_mxc,
294 clk_get_rate(timer_clk),
295 0xff, 0xfffffffe);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200296
297 return 0;
298}
299
Alexander Shiyand7f98912014-05-27 13:04:47 +0400300static void __init _mxc_timer_init(int irq,
Alexander Shiyanf4696752014-05-27 13:04:46 +0400301 struct clk *clk_per, struct clk *clk_ipg)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200302{
Sascha Hauerec996ba2009-02-18 20:58:40 +0100303 uint32_t tctl_val;
Sascha Hauer821dc4d2012-03-09 09:29:27 +0100304
Alexander Shiyanf4696752014-05-27 13:04:46 +0400305 if (IS_ERR(clk_per)) {
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200306 pr_err("i.MX timer: unable to get clk\n");
307 return;
Sascha Hauer821dc4d2012-03-09 09:29:27 +0100308 }
Sascha Hauerec996ba2009-02-18 20:58:40 +0100309
Alexander Shiyanf4696752014-05-27 13:04:46 +0400310 if (!IS_ERR(clk_ipg))
311 clk_prepare_enable(clk_ipg);
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200312
Alexander Shiyanf4696752014-05-27 13:04:46 +0400313 clk_prepare_enable(clk_per);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200314
315 /*
316 * Initialise to a known state (all timers off, and timing reset)
317 */
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200318
Shawn Guoc7770bb2015-05-19 18:47:47 +0800319 writel_relaxed(0, timer_base + MXC_TCTL);
320 writel_relaxed(0, timer_base + MXC_TPRER); /* see datasheet note */
Sascha Hauerec996ba2009-02-18 20:58:40 +0100321
Anson Huangbad3db12014-09-11 11:29:42 +0800322 if (timer_is_v2()) {
323 tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
324 if (clk_get_rate(clk_per) == V2_TIMER_RATE_OSC_DIV8) {
325 tctl_val |= V2_TCTL_CLK_OSC_DIV8;
326 if (cpu_is_imx6dl() || cpu_is_imx6sx()) {
327 /* 24 / 8 = 3 MHz */
Shawn Guoc7770bb2015-05-19 18:47:47 +0800328 writel_relaxed(7 << V2_TPRER_PRE24M,
Anson Huangbad3db12014-09-11 11:29:42 +0800329 timer_base + MXC_TPRER);
330 tctl_val |= V2_TCTL_24MEN;
331 }
332 } else {
333 tctl_val |= V2_TCTL_CLK_PER;
334 }
335 } else {
Sascha Hauerec996ba2009-02-18 20:58:40 +0100336 tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
Anson Huangbad3db12014-09-11 11:29:42 +0800337 }
Sascha Hauerec996ba2009-02-18 20:58:40 +0100338
Shawn Guoc7770bb2015-05-19 18:47:47 +0800339 writel_relaxed(tctl_val, timer_base + MXC_TCTL);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200340
341 /* init and register the timer to the framework */
Alexander Shiyanf4696752014-05-27 13:04:46 +0400342 mxc_clocksource_init(clk_per);
343 mxc_clockevent_init(clk_per);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200344
345 /* Make irqs happen */
Sascha Hauerec996ba2009-02-18 20:58:40 +0100346 setup_irq(irq, &mxc_timer_irq);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200347}
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200348
Shawn Guo6c529c42015-04-25 15:44:10 +0800349void __init mxc_timer_init(unsigned long pbase, int irq)
Alexander Shiyanf4696752014-05-27 13:04:46 +0400350{
351 struct clk *clk_per = clk_get_sys("imx-gpt.0", "per");
352 struct clk *clk_ipg = clk_get_sys("imx-gpt.0", "ipg");
353
Shawn Guo6c529c42015-04-25 15:44:10 +0800354 timer_base = ioremap(pbase, SZ_4K);
355 BUG_ON(!timer_base);
Alexander Shiyand7f98912014-05-27 13:04:47 +0400356
357 _mxc_timer_init(irq, clk_per, clk_ipg);
Alexander Shiyanf4696752014-05-27 13:04:46 +0400358}
359
Alexander Shiyanfd4959d2014-07-13 09:34:00 +0400360static void __init mxc_timer_init_dt(struct device_node *np)
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200361{
Alexander Shiyanf4696752014-05-27 13:04:46 +0400362 struct clk *clk_per, *clk_ipg;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200363 int irq;
364
Alexander Shiyanfd4959d2014-07-13 09:34:00 +0400365 if (timer_base)
366 return;
367
Alexander Shiyand7f98912014-05-27 13:04:47 +0400368 timer_base = of_iomap(np, 0);
369 WARN_ON(!timer_base);
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200370 irq = irq_of_parse_and_map(np, 0);
371
Alexander Shiyanf4696752014-05-27 13:04:46 +0400372 clk_ipg = of_clk_get_by_name(np, "ipg");
373
Anson Huangbad3db12014-09-11 11:29:42 +0800374 /* Try osc_per first, and fall back to per otherwise */
375 clk_per = of_clk_get_by_name(np, "osc_per");
376 if (IS_ERR(clk_per))
377 clk_per = of_clk_get_by_name(np, "per");
378
Alexander Shiyand7f98912014-05-27 13:04:47 +0400379 _mxc_timer_init(irq, clk_per, clk_ipg);
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200380}
Alexander Shiyanfd4959d2014-07-13 09:34:00 +0400381CLOCKSOURCE_OF_DECLARE(mx1_timer, "fsl,imx1-gpt", mxc_timer_init_dt);
382CLOCKSOURCE_OF_DECLARE(mx25_timer, "fsl,imx25-gpt", mxc_timer_init_dt);
383CLOCKSOURCE_OF_DECLARE(mx50_timer, "fsl,imx50-gpt", mxc_timer_init_dt);
384CLOCKSOURCE_OF_DECLARE(mx51_timer, "fsl,imx51-gpt", mxc_timer_init_dt);
385CLOCKSOURCE_OF_DECLARE(mx53_timer, "fsl,imx53-gpt", mxc_timer_init_dt);
386CLOCKSOURCE_OF_DECLARE(mx6q_timer, "fsl,imx6q-gpt", mxc_timer_init_dt);
387CLOCKSOURCE_OF_DECLARE(mx6sl_timer, "fsl,imx6sl-gpt", mxc_timer_init_dt);
388CLOCKSOURCE_OF_DECLARE(mx6sx_timer, "fsl,imx6sx-gpt", mxc_timer_init_dt);