blob: bed081e58262ed1f94190a44039b6251db5d9f5e [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
Uwe Kleine-König13cf8df2011-04-07 11:13:25 +020063/* MX31, MX35, MX25, MX5 */
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)
Amit Kucheria38a66f52010-04-21 21:34:36 +030067#define V2_TCTL_FRR (1 << 9)
68#define V2_IR 0x0c
69#define V2_TSTAT 0x08
70#define V2_TSTAT_OF1 (1 << 0)
71#define V2_TCN 0x24
72#define V2_TCMP 0x10
Juergen Beisertd0f349f2008-07-05 10:02:50 +020073
Sascha Hauer0f3332c2009-12-04 09:34:51 +010074#define timer_is_v1() (cpu_is_mx1() || cpu_is_mx21() || cpu_is_mx27())
75#define timer_is_v2() (!timer_is_v1())
76
Juergen Beisertd0f349f2008-07-05 10:02:50 +020077static struct clock_event_device clockevent_mxc;
78static enum clock_event_mode clockevent_mode = CLOCK_EVT_MODE_UNUSED;
79
Sascha Hauerec996ba2009-02-18 20:58:40 +010080static void __iomem *timer_base;
Juergen Beisertd0f349f2008-07-05 10:02:50 +020081
Sascha Hauerec996ba2009-02-18 20:58:40 +010082static inline void gpt_irq_disable(void)
Juergen Beisertd0f349f2008-07-05 10:02:50 +020083{
Sascha Hauerec996ba2009-02-18 20:58:40 +010084 unsigned int tmp;
85
Sascha Hauer0f3332c2009-12-04 09:34:51 +010086 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +030087 __raw_writel(0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +010088 else {
89 tmp = __raw_readl(timer_base + MXC_TCTL);
90 __raw_writel(tmp & ~MX1_2_TCTL_IRQEN, timer_base + MXC_TCTL);
91 }
92}
93
94static inline void gpt_irq_enable(void)
95{
Sascha Hauer0f3332c2009-12-04 09:34:51 +010096 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +030097 __raw_writel(1<<0, timer_base + V2_IR);
Sascha Hauerec996ba2009-02-18 20:58:40 +010098 else {
99 __raw_writel(__raw_readl(timer_base + MXC_TCTL) | MX1_2_TCTL_IRQEN,
100 timer_base + MXC_TCTL);
101 }
102}
103
104static void gpt_irq_acknowledge(void)
105{
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100106 if (timer_is_v1()) {
107 if (cpu_is_mx1())
108 __raw_writel(0, timer_base + MX1_2_TSTAT);
109 else
110 __raw_writel(MX2_TSTAT_CAPT | MX2_TSTAT_COMP,
111 timer_base + MX1_2_TSTAT);
112 } else if (timer_is_v2())
Wolfram Sangd943f2c2010-04-23 06:49:43 +0200113 __raw_writel(V2_TSTAT_OF1, timer_base + V2_TSTAT);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100114}
115
Russell King234b6ced2011-05-08 14:09:47 +0100116static void __iomem *sched_clock_reg;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200117
Stephen Boydb93767e2013-11-15 15:26:12 -0800118static u64 notrace mxc_read_sched_clock(void)
Jan Weitzelc124bef2011-03-17 13:44:30 +0100119{
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100120 return sched_clock_reg ? __raw_readl(sched_clock_reg) : 0;
Jan Weitzelc124bef2011-03-17 13:44:30 +0100121}
122
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100123static struct delay_timer imx_delay_timer;
124
125static unsigned long imx_read_current_timer(void)
126{
127 return __raw_readl(sched_clock_reg);
128}
129
Sascha Hauer30c730f2009-02-16 14:36:49 +0100130static int __init mxc_clocksource_init(struct clk *timer_clk)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200131{
Holger Schurig058b7a62009-01-26 16:34:51 +0100132 unsigned int c = clk_get_rate(timer_clk);
Russell King234b6ced2011-05-08 14:09:47 +0100133 void __iomem *reg = timer_base + (timer_is_v2() ? V2_TCN : MX1_2_TCN);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200134
Sebastian Andrzej Siewior1119c842014-01-22 12:35:44 +0100135 imx_delay_timer.read_current_timer = &imx_read_current_timer;
136 imx_delay_timer.freq = c;
137 register_current_timer_delay(&imx_delay_timer);
138
Russell King234b6ced2011-05-08 14:09:47 +0100139 sched_clock_reg = reg;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100140
Stephen Boydb93767e2013-11-15 15:26:12 -0800141 sched_clock_register(mxc_read_sched_clock, 32, c);
Russell King234b6ced2011-05-08 14:09:47 +0100142 return clocksource_mmio_init(reg, "mxc_timer1", c, 200, 32,
143 clocksource_mmio_readl_up);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200144}
145
146/* clock event */
147
Sascha Hauerec996ba2009-02-18 20:58:40 +0100148static int mx1_2_set_next_event(unsigned long evt,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200149 struct clock_event_device *unused)
150{
151 unsigned long tcmp;
152
Sascha Hauerec996ba2009-02-18 20:58:40 +0100153 tcmp = __raw_readl(timer_base + MX1_2_TCN) + evt;
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200154
Sascha Hauerec996ba2009-02-18 20:58:40 +0100155 __raw_writel(tcmp, timer_base + MX1_2_TCMP);
156
157 return (int)(tcmp - __raw_readl(timer_base + MX1_2_TCN)) < 0 ?
158 -ETIME : 0;
159}
160
Amit Kucheria38a66f52010-04-21 21:34:36 +0300161static int v2_set_next_event(unsigned long evt,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100162 struct clock_event_device *unused)
163{
164 unsigned long tcmp;
165
Amit Kucheria38a66f52010-04-21 21:34:36 +0300166 tcmp = __raw_readl(timer_base + V2_TCN) + evt;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100167
Amit Kucheria38a66f52010-04-21 21:34:36 +0300168 __raw_writel(tcmp, timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100169
Shawn Guoeea8e322012-12-06 22:54:41 +0800170 return evt < 0x7fffffff &&
171 (int)(tcmp - __raw_readl(timer_base + V2_TCN)) < 0 ?
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200172 -ETIME : 0;
173}
174
175#ifdef DEBUG
176static const char *clock_event_mode_label[] = {
177 [CLOCK_EVT_MODE_PERIODIC] = "CLOCK_EVT_MODE_PERIODIC",
178 [CLOCK_EVT_MODE_ONESHOT] = "CLOCK_EVT_MODE_ONESHOT",
179 [CLOCK_EVT_MODE_SHUTDOWN] = "CLOCK_EVT_MODE_SHUTDOWN",
Uwe Kleine-Königde9c5152012-07-16 22:07:06 +0200180 [CLOCK_EVT_MODE_UNUSED] = "CLOCK_EVT_MODE_UNUSED",
181 [CLOCK_EVT_MODE_RESUME] = "CLOCK_EVT_MODE_RESUME",
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200182};
183#endif /* DEBUG */
184
185static void mxc_set_mode(enum clock_event_mode mode,
186 struct clock_event_device *evt)
187{
188 unsigned long flags;
189
190 /*
191 * The timer interrupt generation is disabled at least
192 * for enough time to call mxc_set_next_event()
193 */
194 local_irq_save(flags);
195
196 /* Disable interrupt in GPT module */
197 gpt_irq_disable();
198
199 if (mode != clockevent_mode) {
200 /* Set event time into far-far future */
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100201 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300202 __raw_writel(__raw_readl(timer_base + V2_TCN) - 3,
203 timer_base + V2_TCMP);
Sascha Hauerec996ba2009-02-18 20:58:40 +0100204 else
205 __raw_writel(__raw_readl(timer_base + MX1_2_TCN) - 3,
206 timer_base + MX1_2_TCMP);
207
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200208 /* Clear pending interrupt */
209 gpt_irq_acknowledge();
210 }
211
212#ifdef DEBUG
213 printk(KERN_INFO "mxc_set_mode: changing mode from %s to %s\n",
214 clock_event_mode_label[clockevent_mode],
215 clock_event_mode_label[mode]);
216#endif /* DEBUG */
217
218 /* Remember timer mode */
219 clockevent_mode = mode;
220 local_irq_restore(flags);
221
222 switch (mode) {
223 case CLOCK_EVT_MODE_PERIODIC:
224 printk(KERN_ERR"mxc_set_mode: Periodic mode is not "
225 "supported for i.MX\n");
226 break;
227 case CLOCK_EVT_MODE_ONESHOT:
228 /*
229 * Do not put overhead of interrupt enable/disable into
230 * mxc_set_next_event(), the core has about 4 minutes
231 * to call mxc_set_next_event() or shutdown clock after
232 * mode switching
233 */
234 local_irq_save(flags);
235 gpt_irq_enable();
236 local_irq_restore(flags);
237 break;
238 case CLOCK_EVT_MODE_SHUTDOWN:
239 case CLOCK_EVT_MODE_UNUSED:
240 case CLOCK_EVT_MODE_RESUME:
241 /* Left event sources disabled, no more interrupts appear */
242 break;
243 }
244}
245
246/*
247 * IRQ handler for the timer
248 */
249static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
250{
251 struct clock_event_device *evt = &clockevent_mxc;
252 uint32_t tstat;
253
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100254 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300255 tstat = __raw_readl(timer_base + V2_TSTAT);
Sascha Hauer81ec1f92009-04-29 13:55:13 +0200256 else
257 tstat = __raw_readl(timer_base + MX1_2_TSTAT);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200258
259 gpt_irq_acknowledge();
260
261 evt->event_handler(evt);
262
263 return IRQ_HANDLED;
264}
265
266static struct irqaction mxc_timer_irq = {
267 .name = "i.MX Timer Tick",
Michael Opdenacker4c1dd3e2013-09-04 07:04:39 +0200268 .flags = IRQF_TIMER | IRQF_IRQPOLL,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200269 .handler = mxc_timer_interrupt,
270};
271
272static struct clock_event_device clockevent_mxc = {
273 .name = "mxc_timer1",
274 .features = CLOCK_EVT_FEAT_ONESHOT,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200275 .set_mode = mxc_set_mode,
Sascha Hauerec996ba2009-02-18 20:58:40 +0100276 .set_next_event = mx1_2_set_next_event,
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200277 .rating = 200,
278};
279
Sascha Hauer30c730f2009-02-16 14:36:49 +0100280static int __init mxc_clockevent_init(struct clk *timer_clk)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200281{
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100282 if (timer_is_v2())
Amit Kucheria38a66f52010-04-21 21:34:36 +0300283 clockevent_mxc.set_next_event = v2_set_next_event;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100284
Rusty Russell320ab2b2008-12-13 21:20:26 +1030285 clockevent_mxc.cpumask = cpumask_of(0);
Shawn Guo838a2ae2013-01-12 11:50:05 +0000286 clockevents_config_and_register(&clockevent_mxc,
287 clk_get_rate(timer_clk),
288 0xff, 0xfffffffe);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200289
290 return 0;
291}
292
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200293void __init mxc_timer_init(void __iomem *base, int irq)
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200294{
Sascha Hauerec996ba2009-02-18 20:58:40 +0100295 uint32_t tctl_val;
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200296 struct clk *timer_clk;
Sascha Hauer821dc4d2012-03-09 09:29:27 +0100297 struct clk *timer_ipg_clk;
298
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200299 timer_clk = clk_get_sys("imx-gpt.0", "per");
300 if (IS_ERR(timer_clk)) {
301 pr_err("i.MX timer: unable to get clk\n");
302 return;
Sascha Hauer821dc4d2012-03-09 09:29:27 +0100303 }
Sascha Hauerec996ba2009-02-18 20:58:40 +0100304
Sascha Hauer2cfb4512012-05-16 12:29:53 +0200305 timer_ipg_clk = clk_get_sys("imx-gpt.0", "ipg");
306 if (!IS_ERR(timer_ipg_clk))
307 clk_prepare_enable(timer_ipg_clk);
308
Richard Zhao46f417d2011-11-15 14:47:57 +0800309 clk_prepare_enable(timer_clk);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200310
Sascha Hauer8db5d1a2009-05-25 12:21:38 +0200311 timer_base = base;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100312
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200313 /*
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
Sascha Hauer0f3332c2009-12-04 09:34:51 +0100320 if (timer_is_v2())
Richard Zhao1f152b42012-05-15 15:34:40 +0800321 tctl_val = V2_TCTL_CLK_PER | V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
Sascha Hauerec996ba2009-02-18 20:58:40 +0100322 else
323 tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
324
325 __raw_writel(tctl_val, timer_base + MXC_TCTL);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200326
327 /* init and register the timer to the framework */
Sascha Hauer30c730f2009-02-16 14:36:49 +0100328 mxc_clocksource_init(timer_clk);
329 mxc_clockevent_init(timer_clk);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200330
331 /* Make irqs happen */
Sascha Hauerec996ba2009-02-18 20:58:40 +0100332 setup_irq(irq, &mxc_timer_irq);
Juergen Beisertd0f349f2008-07-05 10:02:50 +0200333}
Gilles Chanteperdrix876292d2014-04-05 17:57:45 +0200334
335void __init mxc_timer_init_dt(struct device_node *np)
336{
337 void __iomem *base;
338 int irq;
339
340 base = of_iomap(np, 0);
341 WARN_ON(!base);
342 irq = irq_of_parse_and_map(np, 0);
343
344 mxc_timer_init(base, irq);
345}