ARM: imx: set up .set_next_event hook via imx_gpt_data
[deliverable/linux.git] / arch / arm / mach-imx / time.c
CommitLineData
d0f349fb
JB
1/*
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>
1119c84a 28#include <linux/delay.h>
821dc4df 29#include <linux/err.h>
38ff87f7 30#include <linux/sched_clock.h>
6dd74782 31#include <linux/slab.h>
876292d6
GC
32#include <linux/of.h>
33#include <linux/of_address.h>
34#include <linux/of_irq.h>
0931aff7 35#include <soc/imx/timer.h>
d0f349fb 36
d0f349fb 37#include <asm/mach/time.h>
e3372474
SG
38
39#include "common.h"
50f2de61 40#include "hardware.h"
ec996ba9 41
0f3332c4 42/*
65d0a16d
SW
43 * 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+)
0f3332c4
SH
48 */
49
ec996ba9
SH
50/* defines common for all i.MX */
51#define MXC_TCTL 0x00
0f3332c4 52#define MXC_TCTL_TEN (1 << 0) /* Enable module */
ec996ba9
SH
53#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
bad3db10 67/* MX31, MX35, MX25, MX5, MX6 */
38a66f51
AK
68#define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */
69#define V2_TCTL_CLK_IPG (1 << 6)
1f152b48 70#define V2_TCTL_CLK_PER (2 << 6)
bad3db10 71#define V2_TCTL_CLK_OSC_DIV8 (5 << 6)
38a66f51 72#define V2_TCTL_FRR (1 << 9)
bad3db10
AH
73#define V2_TCTL_24MEN (1 << 10)
74#define V2_TPRER_PRE24M 12
38a66f51
AK
75#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
d0f349fb 80
bad3db10
AH
81#define V2_TIMER_RATE_OSC_DIV8 3000000
82
0f3332c4
SH
83#define timer_is_v1() (cpu_is_mx1() || cpu_is_mx21() || cpu_is_mx27())
84#define timer_is_v2() (!timer_is_v1())
85
d0f349fb
JB
86static struct clock_event_device clockevent_mxc;
87static enum clock_event_mode clockevent_mode = CLOCK_EVT_MODE_UNUSED;
88
6dd74782 89struct imx_timer {
0931aff7 90 enum imx_gpt_type type;
6dd74782
SG
91 void __iomem *base;
92 int irq;
93 struct clk *clk_per;
94 struct clk *clk_ipg;
9c8694bd
SG
95 const struct imx_gpt_data *gpt;
96};
97
98struct imx_gpt_data {
99 void (*gpt_setup_tctl)(struct imx_timer *imxtm);
5ab0475b
SG
100 int (*set_next_event)(unsigned long evt,
101 struct clock_event_device *ced);
6dd74782
SG
102};
103
ec996ba9 104static void __iomem *timer_base;
d0f349fb 105
ec996ba9 106static inline void gpt_irq_disable(void)
d0f349fb 107{
ec996ba9
SH
108 unsigned int tmp;
109
0f3332c4 110 if (timer_is_v2())
c7770bba 111 writel_relaxed(0, timer_base + V2_IR);
ec996ba9 112 else {
c7770bba
SG
113 tmp = readl_relaxed(timer_base + MXC_TCTL);
114 writel_relaxed(tmp & ~MX1_2_TCTL_IRQEN, timer_base + MXC_TCTL);
ec996ba9
SH
115 }
116}
117
118static inline void gpt_irq_enable(void)
119{
0f3332c4 120 if (timer_is_v2())
c7770bba 121 writel_relaxed(1<<0, timer_base + V2_IR);
ec996ba9 122 else {
c7770bba 123 writel_relaxed(readl_relaxed(timer_base + MXC_TCTL) | MX1_2_TCTL_IRQEN,
ec996ba9
SH
124 timer_base + MXC_TCTL);
125 }
126}
127
128static void gpt_irq_acknowledge(void)
129{
0f3332c4
SH
130 if (timer_is_v1()) {
131 if (cpu_is_mx1())
c7770bba 132 writel_relaxed(0, timer_base + MX1_2_TSTAT);
0f3332c4 133 else
c7770bba 134 writel_relaxed(MX2_TSTAT_CAPT | MX2_TSTAT_COMP,
0f3332c4
SH
135 timer_base + MX1_2_TSTAT);
136 } else if (timer_is_v2())
c7770bba 137 writel_relaxed(V2_TSTAT_OF1, timer_base + V2_TSTAT);
ec996ba9
SH
138}
139
234b6ced 140static void __iomem *sched_clock_reg;
d0f349fb 141
b93767e3 142static u64 notrace mxc_read_sched_clock(void)
c124befc 143{
c7770bba 144 return sched_clock_reg ? readl_relaxed(sched_clock_reg) : 0;
c124befc
JW
145}
146
1119c84a
SAS
147static struct delay_timer imx_delay_timer;
148
149static unsigned long imx_read_current_timer(void)
150{
c7770bba 151 return readl_relaxed(sched_clock_reg);
1119c84a
SAS
152}
153
6dd74782 154static int __init mxc_clocksource_init(struct imx_timer *imxtm)
d0f349fb 155{
6dd74782
SG
156 unsigned int c = clk_get_rate(imxtm->clk_per);
157 void __iomem *reg = imxtm->base + (timer_is_v2() ? V2_TCN : MX1_2_TCN);
d0f349fb 158
1119c84a
SAS
159 imx_delay_timer.read_current_timer = &imx_read_current_timer;
160 imx_delay_timer.freq = c;
161 register_current_timer_delay(&imx_delay_timer);
162
234b6ced 163 sched_clock_reg = reg;
ec996ba9 164
b93767e3 165 sched_clock_register(mxc_read_sched_clock, 32, c);
234b6ced
RK
166 return clocksource_mmio_init(reg, "mxc_timer1", c, 200, 32,
167 clocksource_mmio_readl_up);
d0f349fb
JB
168}
169
170/* clock event */
171
ec996ba9 172static int mx1_2_set_next_event(unsigned long evt,
d0f349fb
JB
173 struct clock_event_device *unused)
174{
175 unsigned long tcmp;
176
c7770bba 177 tcmp = readl_relaxed(timer_base + MX1_2_TCN) + evt;
d0f349fb 178
c7770bba 179 writel_relaxed(tcmp, timer_base + MX1_2_TCMP);
ec996ba9 180
c7770bba 181 return (int)(tcmp - readl_relaxed(timer_base + MX1_2_TCN)) < 0 ?
ec996ba9
SH
182 -ETIME : 0;
183}
184
38a66f51 185static int v2_set_next_event(unsigned long evt,
ec996ba9
SH
186 struct clock_event_device *unused)
187{
188 unsigned long tcmp;
189
c7770bba 190 tcmp = readl_relaxed(timer_base + V2_TCN) + evt;
ec996ba9 191
c7770bba 192 writel_relaxed(tcmp, timer_base + V2_TCMP);
ec996ba9 193
eea8e326 194 return evt < 0x7fffffff &&
c7770bba 195 (int)(tcmp - readl_relaxed(timer_base + V2_TCN)) < 0 ?
d0f349fb
JB
196 -ETIME : 0;
197}
198
199#ifdef DEBUG
200static const char *clock_event_mode_label[] = {
201 [CLOCK_EVT_MODE_PERIODIC] = "CLOCK_EVT_MODE_PERIODIC",
202 [CLOCK_EVT_MODE_ONESHOT] = "CLOCK_EVT_MODE_ONESHOT",
203 [CLOCK_EVT_MODE_SHUTDOWN] = "CLOCK_EVT_MODE_SHUTDOWN",
de9c5159
UKK
204 [CLOCK_EVT_MODE_UNUSED] = "CLOCK_EVT_MODE_UNUSED",
205 [CLOCK_EVT_MODE_RESUME] = "CLOCK_EVT_MODE_RESUME",
d0f349fb
JB
206};
207#endif /* DEBUG */
208
209static void mxc_set_mode(enum clock_event_mode mode,
210 struct clock_event_device *evt)
211{
212 unsigned long flags;
213
214 /*
215 * The timer interrupt generation is disabled at least
216 * for enough time to call mxc_set_next_event()
217 */
218 local_irq_save(flags);
219
220 /* Disable interrupt in GPT module */
221 gpt_irq_disable();
222
223 if (mode != clockevent_mode) {
224 /* Set event time into far-far future */
0f3332c4 225 if (timer_is_v2())
c7770bba 226 writel_relaxed(readl_relaxed(timer_base + V2_TCN) - 3,
38a66f51 227 timer_base + V2_TCMP);
ec996ba9 228 else
c7770bba 229 writel_relaxed(readl_relaxed(timer_base + MX1_2_TCN) - 3,
ec996ba9
SH
230 timer_base + MX1_2_TCMP);
231
d0f349fb
JB
232 /* Clear pending interrupt */
233 gpt_irq_acknowledge();
234 }
235
236#ifdef DEBUG
237 printk(KERN_INFO "mxc_set_mode: changing mode from %s to %s\n",
238 clock_event_mode_label[clockevent_mode],
239 clock_event_mode_label[mode]);
240#endif /* DEBUG */
241
242 /* Remember timer mode */
243 clockevent_mode = mode;
244 local_irq_restore(flags);
245
246 switch (mode) {
247 case CLOCK_EVT_MODE_PERIODIC:
248 printk(KERN_ERR"mxc_set_mode: Periodic mode is not "
249 "supported for i.MX\n");
250 break;
251 case CLOCK_EVT_MODE_ONESHOT:
252 /*
253 * Do not put overhead of interrupt enable/disable into
254 * mxc_set_next_event(), the core has about 4 minutes
255 * to call mxc_set_next_event() or shutdown clock after
256 * mode switching
257 */
258 local_irq_save(flags);
259 gpt_irq_enable();
260 local_irq_restore(flags);
261 break;
262 case CLOCK_EVT_MODE_SHUTDOWN:
263 case CLOCK_EVT_MODE_UNUSED:
264 case CLOCK_EVT_MODE_RESUME:
265 /* Left event sources disabled, no more interrupts appear */
266 break;
267 }
268}
269
270/*
271 * IRQ handler for the timer
272 */
273static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
274{
275 struct clock_event_device *evt = &clockevent_mxc;
276 uint32_t tstat;
277
0f3332c4 278 if (timer_is_v2())
c7770bba 279 tstat = readl_relaxed(timer_base + V2_TSTAT);
81ec1f92 280 else
c7770bba 281 tstat = readl_relaxed(timer_base + MX1_2_TSTAT);
d0f349fb
JB
282
283 gpt_irq_acknowledge();
284
285 evt->event_handler(evt);
286
287 return IRQ_HANDLED;
288}
289
290static struct irqaction mxc_timer_irq = {
291 .name = "i.MX Timer Tick",
4c1dd3e5 292 .flags = IRQF_TIMER | IRQF_IRQPOLL,
d0f349fb
JB
293 .handler = mxc_timer_interrupt,
294};
295
296static struct clock_event_device clockevent_mxc = {
297 .name = "mxc_timer1",
298 .features = CLOCK_EVT_FEAT_ONESHOT,
d0f349fb 299 .set_mode = mxc_set_mode,
ec996ba9 300 .set_next_event = mx1_2_set_next_event,
d0f349fb
JB
301 .rating = 200,
302};
303
6dd74782 304static int __init mxc_clockevent_init(struct imx_timer *imxtm)
d0f349fb 305{
5ab0475b 306 clockevent_mxc.set_next_event = imxtm->gpt->set_next_event;
320ab2b0 307 clockevent_mxc.cpumask = cpumask_of(0);
838a2ae8 308 clockevents_config_and_register(&clockevent_mxc,
6dd74782 309 clk_get_rate(imxtm->clk_per),
838a2ae8 310 0xff, 0xfffffffe);
d0f349fb
JB
311
312 return 0;
313}
314
9c8694bd
SG
315static void imx1_gpt_setup_tctl(struct imx_timer *imxtm)
316{
317 u32 tctl_val;
318
319 tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
320 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
321}
322#define imx21_gpt_setup_tctl imx1_gpt_setup_tctl
323
324static void imx31_gpt_setup_tctl(struct imx_timer *imxtm)
325{
326 u32 tctl_val;
327
328 tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
329 if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8)
330 tctl_val |= V2_TCTL_CLK_OSC_DIV8;
331 else
332 tctl_val |= V2_TCTL_CLK_PER;
333
334 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
335}
336
337static void imx6dl_gpt_setup_tctl(struct imx_timer *imxtm)
d0f349fb 338{
9c8694bd
SG
339 u32 tctl_val;
340
341 tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
342 if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8) {
343 tctl_val |= V2_TCTL_CLK_OSC_DIV8;
344 /* 24 / 8 = 3 MHz */
345 writel_relaxed(7 << V2_TPRER_PRE24M, imxtm->base + MXC_TPRER);
346 tctl_val |= V2_TCTL_24MEN;
347 } else {
348 tctl_val |= V2_TCTL_CLK_PER;
349 }
350
351 writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
352}
821dc4df 353
9c8694bd
SG
354static const struct imx_gpt_data imx1_gpt_data = {
355 .gpt_setup_tctl = imx1_gpt_setup_tctl,
5ab0475b 356 .set_next_event = mx1_2_set_next_event,
9c8694bd
SG
357};
358
359static const struct imx_gpt_data imx21_gpt_data = {
360 .gpt_setup_tctl = imx21_gpt_setup_tctl,
5ab0475b 361 .set_next_event = mx1_2_set_next_event,
9c8694bd
SG
362};
363
364static const struct imx_gpt_data imx31_gpt_data = {
365 .gpt_setup_tctl = imx31_gpt_setup_tctl,
5ab0475b 366 .set_next_event = v2_set_next_event,
9c8694bd
SG
367};
368
369static const struct imx_gpt_data imx6dl_gpt_data = {
370 .gpt_setup_tctl = imx6dl_gpt_setup_tctl,
5ab0475b 371 .set_next_event = v2_set_next_event,
9c8694bd
SG
372};
373
374static void __init _mxc_timer_init(struct imx_timer *imxtm)
375{
6dd74782
SG
376 /* Temporary */
377 timer_base = imxtm->base;
378
9c8694bd
SG
379 switch (imxtm->type) {
380 case GPT_TYPE_IMX1:
381 imxtm->gpt = &imx1_gpt_data;
382 break;
383 case GPT_TYPE_IMX21:
384 imxtm->gpt = &imx21_gpt_data;
385 break;
386 case GPT_TYPE_IMX31:
387 imxtm->gpt = &imx31_gpt_data;
388 break;
389 case GPT_TYPE_IMX6DL:
390 imxtm->gpt = &imx6dl_gpt_data;
391 break;
392 default:
393 BUG();
394 }
395
6dd74782 396 if (IS_ERR(imxtm->clk_per)) {
2cfb4518
SH
397 pr_err("i.MX timer: unable to get clk\n");
398 return;
821dc4df 399 }
ec996ba9 400
6dd74782
SG
401 if (!IS_ERR(imxtm->clk_ipg))
402 clk_prepare_enable(imxtm->clk_ipg);
2cfb4518 403
6dd74782 404 clk_prepare_enable(imxtm->clk_per);
d0f349fb
JB
405
406 /*
407 * Initialise to a known state (all timers off, and timing reset)
408 */
d0f349fb 409
6dd74782
SG
410 writel_relaxed(0, imxtm->base + MXC_TCTL);
411 writel_relaxed(0, imxtm->base + MXC_TPRER); /* see datasheet note */
ec996ba9 412
9c8694bd 413 imxtm->gpt->gpt_setup_tctl(imxtm);
d0f349fb
JB
414
415 /* init and register the timer to the framework */
6dd74782
SG
416 mxc_clocksource_init(imxtm);
417 mxc_clockevent_init(imxtm);
d0f349fb
JB
418
419 /* Make irqs happen */
6dd74782 420 setup_irq(imxtm->irq, &mxc_timer_irq);
d0f349fb 421}
876292d6 422
0931aff7 423void __init mxc_timer_init(unsigned long pbase, int irq, enum imx_gpt_type type)
f4696752 424{
6dd74782
SG
425 struct imx_timer *imxtm;
426
427 imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
428 BUG_ON(!imxtm);
f4696752 429
6dd74782
SG
430 imxtm->clk_per = clk_get_sys("imx-gpt.0", "per");
431 imxtm->clk_ipg = clk_get_sys("imx-gpt.0", "ipg");
d7f98915 432
6dd74782
SG
433 imxtm->base = ioremap(pbase, SZ_4K);
434 BUG_ON(!imxtm->base);
435
0931aff7
SG
436 imxtm->type = type;
437
6dd74782 438 _mxc_timer_init(imxtm);
f4696752
AS
439}
440
bef11c88 441static void __init mxc_timer_init_dt(struct device_node *np, enum imx_gpt_type type)
876292d6 442{
6dd74782
SG
443 struct imx_timer *imxtm;
444 static int initialized;
876292d6 445
6dd74782
SG
446 /* Support one instance only */
447 if (initialized)
fd4959d8
AS
448 return;
449
6dd74782
SG
450 imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
451 BUG_ON(!imxtm);
876292d6 452
6dd74782
SG
453 imxtm->base = of_iomap(np, 0);
454 WARN_ON(!imxtm->base);
455 imxtm->irq = irq_of_parse_and_map(np, 0);
456
457 imxtm->clk_ipg = of_clk_get_by_name(np, "ipg");
f4696752 458
bad3db10 459 /* Try osc_per first, and fall back to per otherwise */
6dd74782
SG
460 imxtm->clk_per = of_clk_get_by_name(np, "osc_per");
461 if (IS_ERR(imxtm->clk_per))
462 imxtm->clk_per = of_clk_get_by_name(np, "per");
463
bef11c88
SG
464 imxtm->type = type;
465
6dd74782 466 _mxc_timer_init(imxtm);
bad3db10 467
6dd74782 468 initialized = 1;
876292d6 469}
bef11c88
SG
470
471static void __init imx1_timer_init_dt(struct device_node *np)
472{
473 mxc_timer_init_dt(np, GPT_TYPE_IMX1);
474}
475
476static void __init imx21_timer_init_dt(struct device_node *np)
477{
478 mxc_timer_init_dt(np, GPT_TYPE_IMX21);
479}
480
481static void __init imx31_timer_init_dt(struct device_node *np)
482{
483 enum imx_gpt_type type = GPT_TYPE_IMX31;
484
485 /*
486 * We were using the same compatible string for i.MX6Q/D and i.MX6DL/S
487 * GPT device, while they actually have different programming model.
488 * This is a workaround to keep the existing i.MX6DL/S DTBs continue
489 * working with the new kernel.
490 */
491 if (of_machine_is_compatible("fsl,imx6dl"))
492 type = GPT_TYPE_IMX6DL;
493
494 mxc_timer_init_dt(np, type);
495}
496
497static void __init imx6dl_timer_init_dt(struct device_node *np)
498{
499 mxc_timer_init_dt(np, GPT_TYPE_IMX6DL);
500}
501
502CLOCKSOURCE_OF_DECLARE(imx1_timer, "fsl,imx1-gpt", imx1_timer_init_dt);
503CLOCKSOURCE_OF_DECLARE(imx21_timer, "fsl,imx21-gpt", imx21_timer_init_dt);
504CLOCKSOURCE_OF_DECLARE(imx31_timer, "fsl,imx31-gpt", imx31_timer_init_dt);
505CLOCKSOURCE_OF_DECLARE(imx25_timer, "fsl,imx25-gpt", imx31_timer_init_dt);
506CLOCKSOURCE_OF_DECLARE(imx50_timer, "fsl,imx50-gpt", imx31_timer_init_dt);
507CLOCKSOURCE_OF_DECLARE(imx51_timer, "fsl,imx51-gpt", imx31_timer_init_dt);
508CLOCKSOURCE_OF_DECLARE(imx53_timer, "fsl,imx53-gpt", imx31_timer_init_dt);
509CLOCKSOURCE_OF_DECLARE(imx6q_timer, "fsl,imx6q-gpt", imx31_timer_init_dt);
510CLOCKSOURCE_OF_DECLARE(imx6dl_timer, "fsl,imx6dl-gpt", imx6dl_timer_init_dt);
511CLOCKSOURCE_OF_DECLARE(imx6sl_timer, "fsl,imx6sl-gpt", imx6dl_timer_init_dt);
512CLOCKSOURCE_OF_DECLARE(imx6sx_timer, "fsl,imx6sx-gpt", imx6dl_timer_init_dt);
This page took 0.348282 seconds and 5 git commands to generate.