Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / arch / arm / mach-omap2 / timer.c
1 /*
2 * linux/arch/arm/mach-omap2/timer.c
3 *
4 * OMAP2 GP timer support.
5 *
6 * Copyright (C) 2009 Nokia Corporation
7 *
8 * Update to use new clocksource/clockevent layers
9 * Author: Kevin Hilman, MontaVista Software, Inc. <source@mvista.com>
10 * Copyright (C) 2007 MontaVista Software, Inc.
11 *
12 * Original driver:
13 * Copyright (C) 2005 Nokia Corporation
14 * Author: Paul Mundt <paul.mundt@nokia.com>
15 * Juha Yrjölä <juha.yrjola@nokia.com>
16 * OMAP Dual-mode timer framework support by Timo Teras
17 *
18 * Some parts based off of TI's 24xx code:
19 *
20 * Copyright (C) 2004-2009 Texas Instruments, Inc.
21 *
22 * Roughly modelled after the OMAP1 MPU timer code.
23 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
24 *
25 * This file is subject to the terms and conditions of the GNU General Public
26 * License. See the file "COPYING" in the main directory of this archive
27 * for more details.
28 */
29 #include <linux/init.h>
30 #include <linux/time.h>
31 #include <linux/interrupt.h>
32 #include <linux/err.h>
33 #include <linux/clk.h>
34 #include <linux/delay.h>
35 #include <linux/irq.h>
36 #include <linux/clocksource.h>
37 #include <linux/clockchips.h>
38 #include <linux/slab.h>
39
40 #include <asm/mach/time.h>
41 #include <plat/dmtimer.h>
42 #include <asm/smp_twd.h>
43 #include <asm/sched_clock.h>
44 #include "common.h"
45 #include <plat/omap_hwmod.h>
46 #include <plat/omap_device.h>
47 #include <plat/omap-pm.h>
48
49 #include "powerdomain.h"
50
51 /* Parent clocks, eventually these will come from the clock framework */
52
53 #define OMAP2_MPU_SOURCE "sys_ck"
54 #define OMAP3_MPU_SOURCE OMAP2_MPU_SOURCE
55 #define OMAP4_MPU_SOURCE "sys_clkin_ck"
56 #define OMAP2_32K_SOURCE "func_32k_ck"
57 #define OMAP3_32K_SOURCE "omap_32k_fck"
58 #define OMAP4_32K_SOURCE "sys_32k_ck"
59
60 #ifdef CONFIG_OMAP_32K_TIMER
61 #define OMAP2_CLKEV_SOURCE OMAP2_32K_SOURCE
62 #define OMAP3_CLKEV_SOURCE OMAP3_32K_SOURCE
63 #define OMAP4_CLKEV_SOURCE OMAP4_32K_SOURCE
64 #define OMAP3_SECURE_TIMER 12
65 #else
66 #define OMAP2_CLKEV_SOURCE OMAP2_MPU_SOURCE
67 #define OMAP3_CLKEV_SOURCE OMAP3_MPU_SOURCE
68 #define OMAP4_CLKEV_SOURCE OMAP4_MPU_SOURCE
69 #define OMAP3_SECURE_TIMER 1
70 #endif
71
72 /* Clockevent code */
73
74 static struct omap_dm_timer clkev;
75 static struct clock_event_device clockevent_gpt;
76
77 static irqreturn_t omap2_gp_timer_interrupt(int irq, void *dev_id)
78 {
79 struct clock_event_device *evt = &clockevent_gpt;
80
81 __omap_dm_timer_write_status(&clkev, OMAP_TIMER_INT_OVERFLOW);
82
83 evt->event_handler(evt);
84 return IRQ_HANDLED;
85 }
86
87 static struct irqaction omap2_gp_timer_irq = {
88 .name = "gp_timer",
89 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
90 .handler = omap2_gp_timer_interrupt,
91 };
92
93 static int omap2_gp_timer_set_next_event(unsigned long cycles,
94 struct clock_event_device *evt)
95 {
96 __omap_dm_timer_load_start(&clkev, OMAP_TIMER_CTRL_ST,
97 0xffffffff - cycles, 1);
98
99 return 0;
100 }
101
102 static void omap2_gp_timer_set_mode(enum clock_event_mode mode,
103 struct clock_event_device *evt)
104 {
105 u32 period;
106
107 __omap_dm_timer_stop(&clkev, 1, clkev.rate);
108
109 switch (mode) {
110 case CLOCK_EVT_MODE_PERIODIC:
111 period = clkev.rate / HZ;
112 period -= 1;
113 /* Looks like we need to first set the load value separately */
114 __omap_dm_timer_write(&clkev, OMAP_TIMER_LOAD_REG,
115 0xffffffff - period, 1);
116 __omap_dm_timer_load_start(&clkev,
117 OMAP_TIMER_CTRL_AR | OMAP_TIMER_CTRL_ST,
118 0xffffffff - period, 1);
119 break;
120 case CLOCK_EVT_MODE_ONESHOT:
121 break;
122 case CLOCK_EVT_MODE_UNUSED:
123 case CLOCK_EVT_MODE_SHUTDOWN:
124 case CLOCK_EVT_MODE_RESUME:
125 break;
126 }
127 }
128
129 static struct clock_event_device clockevent_gpt = {
130 .name = "gp_timer",
131 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
132 .shift = 32,
133 .rating = 300,
134 .set_next_event = omap2_gp_timer_set_next_event,
135 .set_mode = omap2_gp_timer_set_mode,
136 };
137
138 static int __init omap_dm_timer_init_one(struct omap_dm_timer *timer,
139 int gptimer_id,
140 const char *fck_source)
141 {
142 char name[10]; /* 10 = sizeof("gptXX_Xck0") */
143 struct omap_hwmod *oh;
144 struct resource irq_rsrc, mem_rsrc;
145 size_t size;
146 int res = 0;
147 int r;
148
149 sprintf(name, "timer%d", gptimer_id);
150 omap_hwmod_setup_one(name);
151 oh = omap_hwmod_lookup(name);
152 if (!oh)
153 return -ENODEV;
154
155 r = omap_hwmod_get_resource_byname(oh, IORESOURCE_IRQ, NULL, &irq_rsrc);
156 if (r)
157 return -ENXIO;
158 timer->irq = irq_rsrc.start;
159
160 r = omap_hwmod_get_resource_byname(oh, IORESOURCE_MEM, NULL, &mem_rsrc);
161 if (r)
162 return -ENXIO;
163 timer->phys_base = mem_rsrc.start;
164 size = mem_rsrc.end - mem_rsrc.start;
165
166 /* Static mapping, never released */
167 timer->io_base = ioremap(timer->phys_base, size);
168 if (!timer->io_base)
169 return -ENXIO;
170
171 /* After the dmtimer is using hwmod these clocks won't be needed */
172 timer->fclk = clk_get(NULL, omap_hwmod_get_main_clk(oh));
173 if (IS_ERR(timer->fclk))
174 return -ENODEV;
175
176 omap_hwmod_enable(oh);
177
178 if (omap_dm_timer_reserve_systimer(gptimer_id))
179 return -ENODEV;
180
181 if (gptimer_id != 12) {
182 struct clk *src;
183
184 src = clk_get(NULL, fck_source);
185 if (IS_ERR(src)) {
186 res = -EINVAL;
187 } else {
188 res = __omap_dm_timer_set_source(timer->fclk, src);
189 if (IS_ERR_VALUE(res))
190 pr_warning("%s: timer%i cannot set source\n",
191 __func__, gptimer_id);
192 clk_put(src);
193 }
194 }
195 __omap_dm_timer_init_regs(timer);
196 __omap_dm_timer_reset(timer, 1, 1);
197 timer->posted = 1;
198
199 timer->rate = clk_get_rate(timer->fclk);
200
201 timer->reserved = 1;
202
203 return res;
204 }
205
206 static void __init omap2_gp_clockevent_init(int gptimer_id,
207 const char *fck_source)
208 {
209 int res;
210
211 res = omap_dm_timer_init_one(&clkev, gptimer_id, fck_source);
212 BUG_ON(res);
213
214 omap2_gp_timer_irq.dev_id = (void *)&clkev;
215 setup_irq(clkev.irq, &omap2_gp_timer_irq);
216
217 __omap_dm_timer_int_enable(&clkev, OMAP_TIMER_INT_OVERFLOW);
218
219 clockevent_gpt.mult = div_sc(clkev.rate, NSEC_PER_SEC,
220 clockevent_gpt.shift);
221 clockevent_gpt.max_delta_ns =
222 clockevent_delta2ns(0xffffffff, &clockevent_gpt);
223 clockevent_gpt.min_delta_ns =
224 clockevent_delta2ns(3, &clockevent_gpt);
225 /* Timer internal resynch latency. */
226
227 clockevent_gpt.cpumask = cpu_possible_mask;
228 clockevent_gpt.irq = omap_dm_timer_get_irq(&clkev);
229 clockevents_register_device(&clockevent_gpt);
230
231 pr_info("OMAP clockevent source: GPTIMER%d at %lu Hz\n",
232 gptimer_id, clkev.rate);
233 }
234
235 /* Clocksource code */
236 static struct omap_dm_timer clksrc;
237 static bool use_gptimer_clksrc;
238
239 /*
240 * clocksource
241 */
242 static cycle_t clocksource_read_cycles(struct clocksource *cs)
243 {
244 return (cycle_t)__omap_dm_timer_read_counter(&clksrc, 1);
245 }
246
247 static struct clocksource clocksource_gpt = {
248 .name = "gp_timer",
249 .rating = 300,
250 .read = clocksource_read_cycles,
251 .mask = CLOCKSOURCE_MASK(32),
252 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
253 };
254
255 static u32 notrace dmtimer_read_sched_clock(void)
256 {
257 if (clksrc.reserved)
258 return __omap_dm_timer_read_counter(&clksrc, 1);
259
260 return 0;
261 }
262
263 #ifdef CONFIG_OMAP_32K_TIMER
264 /* Setup free-running counter for clocksource */
265 static int __init omap2_sync32k_clocksource_init(void)
266 {
267 int ret;
268 struct omap_hwmod *oh;
269 void __iomem *vbase;
270 const char *oh_name = "counter_32k";
271
272 /*
273 * First check hwmod data is available for sync32k counter
274 */
275 oh = omap_hwmod_lookup(oh_name);
276 if (!oh || oh->slaves_cnt == 0)
277 return -ENODEV;
278
279 omap_hwmod_setup_one(oh_name);
280
281 vbase = omap_hwmod_get_mpu_rt_va(oh);
282 if (!vbase) {
283 pr_warn("%s: failed to get counter_32k resource\n", __func__);
284 return -ENXIO;
285 }
286
287 ret = omap_hwmod_enable(oh);
288 if (ret) {
289 pr_warn("%s: failed to enable counter_32k module (%d)\n",
290 __func__, ret);
291 return ret;
292 }
293
294 ret = omap_init_clocksource_32k(vbase);
295 if (ret) {
296 pr_warn("%s: failed to initialize counter_32k as a clocksource (%d)\n",
297 __func__, ret);
298 omap_hwmod_idle(oh);
299 }
300
301 return ret;
302 }
303 #else
304 static inline int omap2_sync32k_clocksource_init(void)
305 {
306 return -ENODEV;
307 }
308 #endif
309
310 static void __init omap2_gptimer_clocksource_init(int gptimer_id,
311 const char *fck_source)
312 {
313 int res;
314
315 res = omap_dm_timer_init_one(&clksrc, gptimer_id, fck_source);
316 BUG_ON(res);
317
318 __omap_dm_timer_load_start(&clksrc,
319 OMAP_TIMER_CTRL_ST | OMAP_TIMER_CTRL_AR, 0, 1);
320 setup_sched_clock(dmtimer_read_sched_clock, 32, clksrc.rate);
321
322 if (clocksource_register_hz(&clocksource_gpt, clksrc.rate))
323 pr_err("Could not register clocksource %s\n",
324 clocksource_gpt.name);
325 else
326 pr_info("OMAP clocksource: GPTIMER%d at %lu Hz\n",
327 gptimer_id, clksrc.rate);
328 }
329
330 static void __init omap2_clocksource_init(int gptimer_id,
331 const char *fck_source)
332 {
333 /*
334 * First give preference to kernel parameter configuration
335 * by user (clocksource="gp_timer").
336 *
337 * In case of missing kernel parameter for clocksource,
338 * first check for availability for 32k-sync timer, in case
339 * of failure in finding 32k_counter module or registering
340 * it as clocksource, execution will fallback to gp-timer.
341 */
342 if (use_gptimer_clksrc == true)
343 omap2_gptimer_clocksource_init(gptimer_id, fck_source);
344 else if (omap2_sync32k_clocksource_init())
345 /* Fall back to gp-timer code */
346 omap2_gptimer_clocksource_init(gptimer_id, fck_source);
347 }
348
349 #define OMAP_SYS_TIMER_INIT(name, clkev_nr, clkev_src, \
350 clksrc_nr, clksrc_src) \
351 static void __init omap##name##_timer_init(void) \
352 { \
353 omap2_gp_clockevent_init((clkev_nr), clkev_src); \
354 omap2_clocksource_init((clksrc_nr), clksrc_src); \
355 }
356
357 #define OMAP_SYS_TIMER(name) \
358 struct sys_timer omap##name##_timer = { \
359 .init = omap##name##_timer_init, \
360 };
361
362 #ifdef CONFIG_ARCH_OMAP2
363 OMAP_SYS_TIMER_INIT(2, 1, OMAP2_CLKEV_SOURCE, 2, OMAP2_MPU_SOURCE)
364 OMAP_SYS_TIMER(2)
365 #endif
366
367 #ifdef CONFIG_ARCH_OMAP3
368 OMAP_SYS_TIMER_INIT(3, 1, OMAP3_CLKEV_SOURCE, 2, OMAP3_MPU_SOURCE)
369 OMAP_SYS_TIMER(3)
370 OMAP_SYS_TIMER_INIT(3_secure, OMAP3_SECURE_TIMER, OMAP3_CLKEV_SOURCE,
371 2, OMAP3_MPU_SOURCE)
372 OMAP_SYS_TIMER(3_secure)
373 #endif
374
375 #ifdef CONFIG_SOC_AM33XX
376 OMAP_SYS_TIMER_INIT(3_am33xx, 1, OMAP4_MPU_SOURCE, 2, OMAP4_MPU_SOURCE)
377 OMAP_SYS_TIMER(3_am33xx)
378 #endif
379
380 #ifdef CONFIG_ARCH_OMAP4
381 #ifdef CONFIG_LOCAL_TIMERS
382 static DEFINE_TWD_LOCAL_TIMER(twd_local_timer,
383 OMAP44XX_LOCAL_TWD_BASE,
384 OMAP44XX_IRQ_LOCALTIMER);
385 #endif
386
387 static void __init omap4_timer_init(void)
388 {
389 omap2_gp_clockevent_init(1, OMAP4_CLKEV_SOURCE);
390 omap2_clocksource_init(2, OMAP4_MPU_SOURCE);
391 #ifdef CONFIG_LOCAL_TIMERS
392 /* Local timers are not supprted on OMAP4430 ES1.0 */
393 if (omap_rev() != OMAP4430_REV_ES1_0) {
394 int err;
395
396 err = twd_local_timer_register(&twd_local_timer);
397 if (err)
398 pr_err("twd_local_timer_register failed %d\n", err);
399 }
400 #endif
401 }
402 OMAP_SYS_TIMER(4)
403 #endif
404
405 #ifdef CONFIG_SOC_OMAP5
406 OMAP_SYS_TIMER_INIT(5, 1, OMAP4_CLKEV_SOURCE, 2, OMAP4_MPU_SOURCE)
407 OMAP_SYS_TIMER(5)
408 #endif
409
410 /**
411 * omap_timer_init - build and register timer device with an
412 * associated timer hwmod
413 * @oh: timer hwmod pointer to be used to build timer device
414 * @user: parameter that can be passed from calling hwmod API
415 *
416 * Called by omap_hwmod_for_each_by_class to register each of the timer
417 * devices present in the system. The number of timer devices is known
418 * by parsing through the hwmod database for a given class name. At the
419 * end of function call memory is allocated for timer device and it is
420 * registered to the framework ready to be proved by the driver.
421 */
422 static int __init omap_timer_init(struct omap_hwmod *oh, void *unused)
423 {
424 int id;
425 int ret = 0;
426 char *name = "omap_timer";
427 struct dmtimer_platform_data *pdata;
428 struct platform_device *pdev;
429 struct omap_timer_capability_dev_attr *timer_dev_attr;
430
431 pr_debug("%s: %s\n", __func__, oh->name);
432
433 /* on secure device, do not register secure timer */
434 timer_dev_attr = oh->dev_attr;
435 if (omap_type() != OMAP2_DEVICE_TYPE_GP && timer_dev_attr)
436 if (timer_dev_attr->timer_capability == OMAP_TIMER_SECURE)
437 return ret;
438
439 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
440 if (!pdata) {
441 pr_err("%s: No memory for [%s]\n", __func__, oh->name);
442 return -ENOMEM;
443 }
444
445 /*
446 * Extract the IDs from name field in hwmod database
447 * and use the same for constructing ids' for the
448 * timer devices. In a way, we are avoiding usage of
449 * static variable witin the function to do the same.
450 * CAUTION: We have to be careful and make sure the
451 * name in hwmod database does not change in which case
452 * we might either make corresponding change here or
453 * switch back static variable mechanism.
454 */
455 sscanf(oh->name, "timer%2d", &id);
456
457 if (timer_dev_attr)
458 pdata->timer_capability = timer_dev_attr->timer_capability;
459
460 pdev = omap_device_build(name, id, oh, pdata, sizeof(*pdata),
461 NULL, 0, 0);
462
463 if (IS_ERR(pdev)) {
464 pr_err("%s: Can't build omap_device for %s: %s.\n",
465 __func__, name, oh->name);
466 ret = -EINVAL;
467 }
468
469 kfree(pdata);
470
471 return ret;
472 }
473
474 /**
475 * omap2_dm_timer_init - top level regular device initialization
476 *
477 * Uses dedicated hwmod api to parse through hwmod database for
478 * given class name and then build and register the timer device.
479 */
480 static int __init omap2_dm_timer_init(void)
481 {
482 int ret;
483
484 ret = omap_hwmod_for_each_by_class("timer", omap_timer_init, NULL);
485 if (unlikely(ret)) {
486 pr_err("%s: device registration failed.\n", __func__);
487 return -EINVAL;
488 }
489
490 return 0;
491 }
492 arch_initcall(omap2_dm_timer_init);
493
494 /**
495 * omap2_override_clocksource - clocksource override with user configuration
496 *
497 * Allows user to override default clocksource, using kernel parameter
498 * clocksource="gp_timer" (For all OMAP2PLUS architectures)
499 *
500 * Note that, here we are using same standard kernel parameter "clocksource=",
501 * and not introducing any OMAP specific interface.
502 */
503 static int __init omap2_override_clocksource(char *str)
504 {
505 if (!str)
506 return 0;
507 /*
508 * For OMAP architecture, we only have two options
509 * - sync_32k (default)
510 * - gp_timer (sys_clk based)
511 */
512 if (!strcmp(str, "gp_timer"))
513 use_gptimer_clksrc = true;
514
515 return 0;
516 }
517 early_param("clocksource", omap2_override_clocksource);
This page took 0.047707 seconds and 5 git commands to generate.