cgroup: add seq_file forward declaration for struct cftype
[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>
876292d6
GC
31#include <linux/of.h>
32#include <linux/of_address.h>
33#include <linux/of_irq.h>
d0f349fb 34
d0f349fb 35#include <asm/mach/time.h>
e3372474
SG
36
37#include "common.h"
50f2de61 38#include "hardware.h"
ec996ba9 39
0f3332c4
SH
40/*
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
ec996ba9
SH
46/* defines common for all i.MX */
47#define MXC_TCTL 0x00
0f3332c4 48#define MXC_TCTL_TEN (1 << 0) /* Enable module */
ec996ba9
SH
49#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
bad3db10 63/* MX31, MX35, MX25, MX5, MX6 */
38a66f51
AK
64#define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */
65#define V2_TCTL_CLK_IPG (1 << 6)
1f152b48 66#define V2_TCTL_CLK_PER (2 << 6)
bad3db10 67#define V2_TCTL_CLK_OSC_DIV8 (5 << 6)
38a66f51 68#define V2_TCTL_FRR (1 << 9)
bad3db10
AH
69#define V2_TCTL_24MEN (1 << 10)
70#define V2_TPRER_PRE24M 12
38a66f51
AK
71#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
d0f349fb 76
bad3db10
AH
77#define V2_TIMER_RATE_OSC_DIV8 3000000
78
0f3332c4
SH
79#define timer_is_v1() (cpu_is_mx1() || cpu_is_mx21() || cpu_is_mx27())
80#define timer_is_v2() (!timer_is_v1())
81
d0f349fb
JB
82static struct clock_event_device clockevent_mxc;
83static enum clock_event_mode clockevent_mode = CLOCK_EVT_MODE_UNUSED;
84
ec996ba9 85static void __iomem *timer_base;
d0f349fb 86
ec996ba9 87static inline void gpt_irq_disable(void)
d0f349fb 88{
ec996ba9
SH
89 unsigned int tmp;
90
0f3332c4 91 if (timer_is_v2())
38a66f51 92 __raw_writel(0, timer_base + V2_IR);
ec996ba9
SH
93 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{
0f3332c4 101 if (timer_is_v2())
38a66f51 102 __raw_writel(1<<0, timer_base + V2_IR);
ec996ba9
SH
103 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{
0f3332c4
SH
111 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())
d943f2c8 118 __raw_writel(V2_TSTAT_OF1, timer_base + V2_TSTAT);
ec996ba9
SH
119}
120
234b6ced 121static void __iomem *sched_clock_reg;
d0f349fb 122
b93767e3 123static u64 notrace mxc_read_sched_clock(void)
c124befc 124{
2f0778af 125 return sched_clock_reg ? __raw_readl(sched_clock_reg) : 0;
c124befc
JW
126}
127
1119c84a
SAS
128static 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
30c730f8 135static int __init mxc_clocksource_init(struct clk *timer_clk)
d0f349fb 136{
058b7a6f 137 unsigned int c = clk_get_rate(timer_clk);
234b6ced 138 void __iomem *reg = timer_base + (timer_is_v2() ? V2_TCN : MX1_2_TCN);
d0f349fb 139
1119c84a
SAS
140 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
234b6ced 144 sched_clock_reg = reg;
ec996ba9 145
b93767e3 146 sched_clock_register(mxc_read_sched_clock, 32, c);
234b6ced
RK
147 return clocksource_mmio_init(reg, "mxc_timer1", c, 200, 32,
148 clocksource_mmio_readl_up);
d0f349fb
JB
149}
150
151/* clock event */
152
ec996ba9 153static int mx1_2_set_next_event(unsigned long evt,
d0f349fb
JB
154 struct clock_event_device *unused)
155{
156 unsigned long tcmp;
157
ec996ba9 158 tcmp = __raw_readl(timer_base + MX1_2_TCN) + evt;
d0f349fb 159
ec996ba9
SH
160 __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
38a66f51 166static int v2_set_next_event(unsigned long evt,
ec996ba9
SH
167 struct clock_event_device *unused)
168{
169 unsigned long tcmp;
170
38a66f51 171 tcmp = __raw_readl(timer_base + V2_TCN) + evt;
ec996ba9 172
38a66f51 173 __raw_writel(tcmp, timer_base + V2_TCMP);
ec996ba9 174
eea8e326
SG
175 return evt < 0x7fffffff &&
176 (int)(tcmp - __raw_readl(timer_base + V2_TCN)) < 0 ?
d0f349fb
JB
177 -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",
de9c5159
UKK
185 [CLOCK_EVT_MODE_UNUSED] = "CLOCK_EVT_MODE_UNUSED",
186 [CLOCK_EVT_MODE_RESUME] = "CLOCK_EVT_MODE_RESUME",
d0f349fb
JB
187};
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 */
0f3332c4 206 if (timer_is_v2())
38a66f51
AK
207 __raw_writel(__raw_readl(timer_base + V2_TCN) - 3,
208 timer_base + V2_TCMP);
ec996ba9
SH
209 else
210 __raw_writel(__raw_readl(timer_base + MX1_2_TCN) - 3,
211 timer_base + MX1_2_TCMP);
212
d0f349fb
JB
213 /* 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
0f3332c4 259 if (timer_is_v2())
38a66f51 260 tstat = __raw_readl(timer_base + V2_TSTAT);
81ec1f92
SH
261 else
262 tstat = __raw_readl(timer_base + MX1_2_TSTAT);
d0f349fb
JB
263
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",
4c1dd3e5 273 .flags = IRQF_TIMER | IRQF_IRQPOLL,
d0f349fb
JB
274 .handler = mxc_timer_interrupt,
275};
276
277static struct clock_event_device clockevent_mxc = {
278 .name = "mxc_timer1",
279 .features = CLOCK_EVT_FEAT_ONESHOT,
d0f349fb 280 .set_mode = mxc_set_mode,
ec996ba9 281 .set_next_event = mx1_2_set_next_event,
d0f349fb
JB
282 .rating = 200,
283};
284
30c730f8 285static int __init mxc_clockevent_init(struct clk *timer_clk)
d0f349fb 286{
0f3332c4 287 if (timer_is_v2())
38a66f51 288 clockevent_mxc.set_next_event = v2_set_next_event;
ec996ba9 289
320ab2b0 290 clockevent_mxc.cpumask = cpumask_of(0);
838a2ae8
SG
291 clockevents_config_and_register(&clockevent_mxc,
292 clk_get_rate(timer_clk),
293 0xff, 0xfffffffe);
d0f349fb
JB
294
295 return 0;
296}
297
d7f98915 298static void __init _mxc_timer_init(int irq,
f4696752 299 struct clk *clk_per, struct clk *clk_ipg)
d0f349fb 300{
ec996ba9 301 uint32_t tctl_val;
821dc4df 302
f4696752 303 if (IS_ERR(clk_per)) {
2cfb4518
SH
304 pr_err("i.MX timer: unable to get clk\n");
305 return;
821dc4df 306 }
ec996ba9 307
f4696752
AS
308 if (!IS_ERR(clk_ipg))
309 clk_prepare_enable(clk_ipg);
2cfb4518 310
f4696752 311 clk_prepare_enable(clk_per);
d0f349fb
JB
312
313 /*
314 * Initialise to a known state (all timers off, and timing reset)
315 */
d0f349fb 316
ec996ba9
SH
317 __raw_writel(0, timer_base + MXC_TCTL);
318 __raw_writel(0, timer_base + MXC_TPRER); /* see datasheet note */
319
bad3db10
AH
320 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 {
ec996ba9 334 tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
bad3db10 335 }
ec996ba9
SH
336
337 __raw_writel(tctl_val, timer_base + MXC_TCTL);
d0f349fb
JB
338
339 /* init and register the timer to the framework */
f4696752
AS
340 mxc_clocksource_init(clk_per);
341 mxc_clockevent_init(clk_per);
d0f349fb
JB
342
343 /* Make irqs happen */
ec996ba9 344 setup_irq(irq, &mxc_timer_irq);
d0f349fb 345}
876292d6 346
f4696752
AS
347void __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
d7f98915
AS
352 timer_base = base;
353
354 _mxc_timer_init(irq, clk_per, clk_ipg);
f4696752
AS
355}
356
fd4959d8 357static void __init mxc_timer_init_dt(struct device_node *np)
876292d6 358{
f4696752 359 struct clk *clk_per, *clk_ipg;
876292d6
GC
360 int irq;
361
fd4959d8
AS
362 if (timer_base)
363 return;
364
d7f98915
AS
365 timer_base = of_iomap(np, 0);
366 WARN_ON(!timer_base);
876292d6
GC
367 irq = irq_of_parse_and_map(np, 0);
368
f4696752
AS
369 clk_ipg = of_clk_get_by_name(np, "ipg");
370
bad3db10
AH
371 /* 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
d7f98915 376 _mxc_timer_init(irq, clk_per, clk_ipg);
876292d6 377}
fd4959d8
AS
378CLOCKSOURCE_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);
This page took 1.322013 seconds and 5 git commands to generate.