blob: 15d18e198303f16ae6a77bf476c46acd066a6886 [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/*
41 * There are 2 versions of the timer hardware on Freescale MXC hardware.
42 * Version 1: MX1/MXL, MX21, MX27.
43 * Version 2: MX25, MX31, MX35, MX37, MX51
44 */
45
Sascha Hauerec996ba2009-02-18 20:58:40 +010046/* defines common for all i.MX */
47#define MXC_TCTL 0x00
Sascha Hauer0f3332c2009-12-04 09:34:51 +010048#define MXC_TCTL_TEN (1 << 0) /* Enable module */
Sascha Hauerec996ba2009-02-18 20:58:40 +010049#define MXC_TPRER 0x04
50
51/* MX1, MX21, MX27 */
52#define MX1_2_TCTL_CLK_PCLK1 (1 << 1)
53#define MX1_2_TCTL_IRQEN (1 << 4)
54#define MX1_2_TCTL_FRR (1 << 8)
55#define MX1_2_TCMP 0x08
56#define MX1_2_TCN 0x10
57#define MX1_2_TSTAT 0x14
58
59/* MX21, MX27 */
60#define MX2_TSTAT_CAPT (1 << 1)
61#define MX2_TSTAT_COMP (1 << 0)
62
Anson Huangbad3db12014-09-11 11:29:42 +080063/* MX31, MX35, MX25, MX5, MX6 */
Amit Kucheria38a66f52010-04-21 21:34:36 +030064#define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */
65#define V2_TCTL_CLK_IPG (1 << 6)
Richard Zhao1f152b42012-05-15 15:34:40 +080066#define V2_TCTL_CLK_PER (2 << 6)
Anson Huangbad3db12014-09-11 11:29:42 +080067#define V2_TCTL_CLK_OSC_DIV8 (5 << 6)
Amit Kucheria38a66f52010-04-21 21:34:36 +030068#define V2_TCTL_FRR (1 << 9)
Anson Huangbad3db12014-09-11 11:29:42 +080069#define V2_TCTL_24MEN (1 << 10)
70#define V2_TPRER_PRE24M 12
Amit Kucheria38a66f52010-04-21 21:34:36 +030071#define V2_IR 0x0c
72#define V2_TSTAT 0x08
73#define V2_TSTAT_OF1 (1 << 0)
74#define V2_TCN 0x24
75#define V2_TCMP 0x10
Juergen Beisertd0f349f2008-07-05 10:02:50 +020076
Anson Huangbad3db12014-09-11 11:29:42 +080077#define V2_TIMER_RATE_OSC_DIV8 3000000
78
Sascha Hauer0f3332c2009-12-04 09:34:51 +010079#define timer_is_v1() (cpu_is_mx1() || cpu_is_mx21() || cpu_is_mx27())
80#define timer_is_v2() (!timer_is_v1())
81
Juergen Beisertd0f349f2008-07-05 10:02:50 +020082static struct clock_event_device clockevent_mxc;
83static enum clock_event_mode clockevent_mode = CLOCK_EVT_MODE_UNUSED;
84
Sascha Hauerec996ba2009-02-18 20:58:40 +010085static void __iomem *timer_base;
Juergen Beisertd0f349f2008-07-05 10:02:50 +020086
Sascha Hauerec996ba2009-02-18 20:58:40 +010087static inline void gpt_irq_disable(void)
Juergen Beisertd0f349f2008-07-05 10:02:50 +020088{
Sascha Hauerec996ba2009-02-18 20:58:40 +010089 unsigned int tmp;
90
Sascha Hauer0f3332c2009-12-04 09:34:51 +010091 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +030092 __raw_writel(0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +010093 else {
94 tmp = __raw_readl(timer_base + MXC_TCTL);
95 __raw_writel(tmp & ~MX1_2_TCTL_IRQEN, timer_base + MXC_TCTL);
96 }
97}
98
99static inline void gpt_irq_enable(void)
100{
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100101 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300102 __raw_writel(1<<0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100103 else {
104 __raw_writel(__raw_readl(timer_base + MXC_TCTL) | MX1_2_TCTL_IRQEN,
105 timer_base + MXC_TCTL);
106 }
107}
108
109static void gpt_irq_acknowledge(void)
110{
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100111 if (timer_is_v1()) {
112 if (cpu_is_mx1())
113 __raw_writel(0, timer_base + MX1_2_TSTAT);
114 else
115 __raw_writel(MX2_TSTAT_CAPT | MX2_TSTAT_COMP,
116 timer_base + MX1_2_TSTAT);
117 } else if (timer_is_v2())
Wolfram Sangd943f2c2010-04-23 06:49:43 +0200118 __raw_writel(V2_TSTAT_OF1, timer_base + V2_TSTAT);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100119}
120
Russell King234b6ced2011-05-08 14:09:47 +0100121static void __iomem *sched_clock_reg;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200122
Stephen Boydb93767e2013-11-15 15:26:12 -0800123static u64 notrace mxc_read_sched_clock(void)
Jan Weitzelc124bef2011-03-17 13:44:30 +0100124{
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100125 return sched_clock_reg ? __raw_readl(sched_clock_reg) : 0;
Jan Weitzelc124bef2011-03-17 13:44:30 +0100126}
127
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100128static struct delay_timer imx_delay_timer;
129
130static unsigned long imx_read_current_timer(void)
131{
132 return __raw_readl(sched_clock_reg);
133}
134
Sascha Hauer30c730f2009-02-16 14:36:49 +0100135static int __init mxc_clocksource_init(struct clk *timer_clk)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200136{
Holger Schurig058b7a62009-01-26 16:34:51 +0100137 unsigned int c = clk_get_rate(timer_clk);
Russell King234b6ced2011-05-08 14:09:47 +0100138 void __iomem *reg = timer_base + (timer_is_v2() ? V2_TCN : MX1_2_TCN);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200139
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100140 imx_delay_timer.read_current_timer = &imx_read_current_timer;
141 imx_delay_timer.freq = c;
142 register_current_timer_delay(&imx_delay_timer);
143
Russell King234b6ced2011-05-08 14:09:47 +0100144 sched_clock_reg = reg;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100145
Stephen Boydb93767e2013-11-15 15:26:12 -0800146 sched_clock_register(mxc_read_sched_clock, 32, c);
Russell King234b6ced2011-05-08 14:09:47 +0100147 return clocksource_mmio_init(reg, "mxc_timer1", c, 200, 32,
148 clocksource_mmio_readl_up);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200149}
150
151/* clock event */
152
Sascha Hauerec996ba2009-02-18 20:58:40 +0100153static int mx1_2_set_next_event(unsigned long evt,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200154 struct clock_event_device *unused)
155{
156 unsigned long tcmp;
157
Sascha Hauerec996ba2009-02-18 20:58:40 +0100158 tcmp = __raw_readl(timer_base + MX1_2_TCN) + evt;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200159
Sascha Hauerec996ba2009-02-18 20:58:40 +0100160 __raw_writel(tcmp, timer_base + MX1_2_TCMP);
161
162 return (int)(tcmp - __raw_readl(timer_base + MX1_2_TCN)) < 0 ?
163 -ETIME : 0;
164}
165
Amit Kucheria38a66f52010-04-21 21:34:36 +0300166static int v2_set_next_event(unsigned long evt,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100167 struct clock_event_device *unused)
168{
169 unsigned long tcmp;
170
Amit Kucheria38a66f52010-04-21 21:34:36 +0300171 tcmp = __raw_readl(timer_base + V2_TCN) + evt;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100172
Amit Kucheria38a66f52010-04-21 21:34:36 +0300173 __raw_writel(tcmp, timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100174
Shawn Guoeea8e322012-12-06 22:54:41 +0800175 return evt < 0x7fffffff &&
176 (int)(tcmp - __raw_readl(timer_base + V2_TCN)) < 0 ?
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200177 -ETIME : 0;
178}
179
180#ifdef DEBUG
181static const char *clock_event_mode_label[] = {
182 [CLOCK_EVT_MODE_PERIODIC] = "CLOCK_EVT_MODE_PERIODIC",
183 [CLOCK_EVT_MODE_ONESHOT] = "CLOCK_EVT_MODE_ONESHOT",
184 [CLOCK_EVT_MODE_SHUTDOWN] = "CLOCK_EVT_MODE_SHUTDOWN",
Uwe Kleine-Königde9c5152012-07-16 22:07:06 +0200185 [CLOCK_EVT_MODE_UNUSED] = "CLOCK_EVT_MODE_UNUSED",
186 [CLOCK_EVT_MODE_RESUME] = "CLOCK_EVT_MODE_RESUME",
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200187};
188#endif /* DEBUG */
189
190static void mxc_set_mode(enum clock_event_mode mode,
191 struct clock_event_device *evt)
192{
193 unsigned long flags;
194
195 /*
196 * The timer interrupt generation is disabled at least
197 * for enough time to call mxc_set_next_event()
198 */
199 local_irq_save(flags);
200
201 /* Disable interrupt in GPT module */
202 gpt_irq_disable();
203
204 if (mode != clockevent_mode) {
205 /* Set event time into far-far future */
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100206 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300207 __raw_writel(__raw_readl(timer_base + V2_TCN) - 3,
208 timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100209 else
210 __raw_writel(__raw_readl(timer_base + MX1_2_TCN) - 3,
211 timer_base + MX1_2_TCMP);
212
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200213 /* Clear pending interrupt */
214 gpt_irq_acknowledge();
215 }
216
217#ifdef DEBUG
218 printk(KERN_INFO "mxc_set_mode: changing mode from %s to %s\n",
219 clock_event_mode_label[clockevent_mode],
220 clock_event_mode_label[mode]);
221#endif /* DEBUG */
222
223 /* Remember timer mode */
224 clockevent_mode = mode;
225 local_irq_restore(flags);
226
227 switch (mode) {
228 case CLOCK_EVT_MODE_PERIODIC:
229 printk(KERN_ERR"mxc_set_mode: Periodic mode is not "
230 "supported for i.MX\n");
231 break;
232 case CLOCK_EVT_MODE_ONESHOT:
233 /*
234 * Do not put overhead of interrupt enable/disable into
235 * mxc_set_next_event(), the core has about 4 minutes
236 * to call mxc_set_next_event() or shutdown clock after
237 * mode switching
238 */
239 local_irq_save(flags);
240 gpt_irq_enable();
241 local_irq_restore(flags);
242 break;
243 case CLOCK_EVT_MODE_SHUTDOWN:
244 case CLOCK_EVT_MODE_UNUSED:
245 case CLOCK_EVT_MODE_RESUME:
246 /* Left event sources disabled, no more interrupts appear */
247 break;
248 }
249}
250
251/*
252 * IRQ handler for the timer
253 */
254static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
255{
256 struct clock_event_device *evt = &clockevent_mxc;
257 uint32_t tstat;
258
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100259 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300260 tstat = __raw_readl(timer_base + V2_TSTAT);
Sascha Hauer81ec1f92009-04-29 13:55:13 +0200261 else
262 tstat = __raw_readl(timer_base + MX1_2_TSTAT);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200263
264 gpt_irq_acknowledge();
265
266 evt->event_handler(evt);
267
268 return IRQ_HANDLED;
269}
270
271static struct irqaction mxc_timer_irq = {
272 .name = "i.MX Timer Tick",
Michael Opdenacker4c1dd3e2013-09-04 07:04:39 +0200273 .flags = IRQF_TIMER | IRQF_IRQPOLL,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200274 .handler = mxc_timer_interrupt,
275};
276
277static struct clock_event_device clockevent_mxc = {
278 .name = "mxc_timer1",
279 .features = CLOCK_EVT_FEAT_ONESHOT,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200280 .set_mode = mxc_set_mode,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100281 .set_next_event = mx1_2_set_next_event,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200282 .rating = 200,
283};
284
Sascha Hauer30c730f2009-02-16 14:36:49 +0100285static int __init mxc_clockevent_init(struct clk *timer_clk)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200286{
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100287 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300288 clockevent_mxc.set_next_event = v2_set_next_event;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100289
Rusty Russell320ab2b2008-12-13 21:20:26 +1030290 clockevent_mxc.cpumask = cpumask_of(0);
Shawn Guo838a2ae2013-01-12 11:50:05 +0000291 clockevents_config_and_register(&clockevent_mxc,
292 clk_get_rate(timer_clk),
293 0xff, 0xfffffffe);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200294
295 return 0;
296}
297
Alexander Shiyand7f98912014-05-27 13:04:47 +0400298static void __init _mxc_timer_init(int irq,
Alexander Shiyanf4696752014-05-27 13:04:46 +0400299 struct clk *clk_per, struct clk *clk_ipg)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200300{
Sascha Hauerec996ba2009-02-18 20:58:40 +0100301 uint32_t tctl_val;
Sascha Hauer821dc4d2012-03-09 09:29:27 +0100302
Alexander Shiyanf4696752014-05-27 13:04:46 +0400303 if (IS_ERR(clk_per)) {
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200304 pr_err("i.MX timer: unable to get clk\n");
305 return;
Sascha Hauer821dc4d2012-03-09 09:29:27 +0100306 }
Sascha Hauerec996ba2009-02-18 20:58:40 +0100307
Alexander Shiyanf4696752014-05-27 13:04:46 +0400308 if (!IS_ERR(clk_ipg))
309 clk_prepare_enable(clk_ipg);
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200310
Alexander Shiyanf4696752014-05-27 13:04:46 +0400311 clk_prepare_enable(clk_per);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200312
313 /*
314 * Initialise to a known state (all timers off, and timing reset)
315 */
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200316
Sascha Hauerec996ba2009-02-18 20:58:40 +0100317 __raw_writel(0, timer_base + MXC_TCTL);
318 __raw_writel(0, timer_base + MXC_TPRER); /* see datasheet note */
319
Anson Huangbad3db12014-09-11 11:29:42 +0800320 if (timer_is_v2()) {
321 tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
322 if (clk_get_rate(clk_per) == V2_TIMER_RATE_OSC_DIV8) {
323 tctl_val |= V2_TCTL_CLK_OSC_DIV8;
324 if (cpu_is_imx6dl() || cpu_is_imx6sx()) {
325 /* 24 / 8 = 3 MHz */
326 __raw_writel(7 << V2_TPRER_PRE24M,
327 timer_base + MXC_TPRER);
328 tctl_val |= V2_TCTL_24MEN;
329 }
330 } else {
331 tctl_val |= V2_TCTL_CLK_PER;
332 }
333 } else {
Sascha Hauerec996ba2009-02-18 20:58:40 +0100334 tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
Anson Huangbad3db12014-09-11 11:29:42 +0800335 }
Sascha Hauerec996ba2009-02-18 20:58:40 +0100336
337 __raw_writel(tctl_val, timer_base + MXC_TCTL);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200338
339 /* init and register the timer to the framework */
Alexander Shiyanf4696752014-05-27 13:04:46 +0400340 mxc_clocksource_init(clk_per);
341 mxc_clockevent_init(clk_per);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200342
343 /* Make irqs happen */
Sascha Hauerec996ba2009-02-18 20:58:40 +0100344 setup_irq(irq, &mxc_timer_irq);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200345}
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200346
Alexander Shiyanf4696752014-05-27 13:04:46 +0400347void __init mxc_timer_init(void __iomem *base, int irq)
348{
349 struct clk *clk_per = clk_get_sys("imx-gpt.0", "per");
350 struct clk *clk_ipg = clk_get_sys("imx-gpt.0", "ipg");
351
Alexander Shiyand7f98912014-05-27 13:04:47 +0400352 timer_base = base;
353
354 _mxc_timer_init(irq, clk_per, clk_ipg);
Alexander Shiyanf4696752014-05-27 13:04:46 +0400355}
356
Alexander Shiyanfd4959d2014-07-13 09:34:00 +0400357static void __init mxc_timer_init_dt(struct device_node *np)
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200358{
Alexander Shiyanf4696752014-05-27 13:04:46 +0400359 struct clk *clk_per, *clk_ipg;
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200360 int irq;
361
Alexander Shiyanfd4959d2014-07-13 09:34:00 +0400362 if (timer_base)
363 return;
364
Alexander Shiyand7f98912014-05-27 13:04:47 +0400365 timer_base = of_iomap(np, 0);
366 WARN_ON(!timer_base);
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200367 irq = irq_of_parse_and_map(np, 0);
368
Alexander Shiyanf4696752014-05-27 13:04:46 +0400369 clk_ipg = of_clk_get_by_name(np, "ipg");
370
Anson Huangbad3db12014-09-11 11:29:42 +0800371 /* Try osc_per first, and fall back to per otherwise */
372 clk_per = of_clk_get_by_name(np, "osc_per");
373 if (IS_ERR(clk_per))
374 clk_per = of_clk_get_by_name(np, "per");
375
Alexander Shiyand7f98912014-05-27 13:04:47 +0400376 _mxc_timer_init(irq, clk_per, clk_ipg);
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200377}
Alexander Shiyanfd4959d2014-07-13 09:34:00 +0400378CLOCKSOURCE_OF_DECLARE(mx1_timer, "fsl,imx1-gpt", mxc_timer_init_dt);
379CLOCKSOURCE_OF_DECLARE(mx25_timer, "fsl,imx25-gpt", mxc_timer_init_dt);
380CLOCKSOURCE_OF_DECLARE(mx50_timer, "fsl,imx50-gpt", mxc_timer_init_dt);
381CLOCKSOURCE_OF_DECLARE(mx51_timer, "fsl,imx51-gpt", mxc_timer_init_dt);
382CLOCKSOURCE_OF_DECLARE(mx53_timer, "fsl,imx53-gpt", mxc_timer_init_dt);
383CLOCKSOURCE_OF_DECLARE(mx6q_timer, "fsl,imx6q-gpt", mxc_timer_init_dt);
384CLOCKSOURCE_OF_DECLARE(mx6sl_timer, "fsl,imx6sl-gpt", mxc_timer_init_dt);
385CLOCKSOURCE_OF_DECLARE(mx6sx_timer, "fsl,imx6sx-gpt", mxc_timer_init_dt);