blob: b0b208077c96230392350815d553c904e5d3a322 [file] [log] [blame]
Tony Lindgren1dbae812005-11-10 14:26:51 +00001/*
Tony Lindgren0f622e82011-03-29 15:54:50 -07002 * linux/arch/arm/mach-omap2/timer.c
Tony Lindgren1dbae812005-11-10 14:26:51 +00003 *
4 * OMAP2 GP timer support.
5 *
Paul Walmsleyf2480762009-04-23 21:11:10 -06006 * Copyright (C) 2009 Nokia Corporation
7 *
Kevin Hilman5a3a3882007-11-12 23:24:02 -08008 * 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:
Tony Lindgren1dbae812005-11-10 14:26:51 +000013 * Copyright (C) 2005 Nokia Corporation
14 * Author: Paul Mundt <paul.mundt@nokia.com>
Jan Engelhardt96de0e22007-10-19 23:21:04 +020015 * Juha Yrjölä <juha.yrjola@nokia.com>
Timo Teras77900a22006-06-26 16:16:12 -070016 * OMAP Dual-mode timer framework support by Timo Teras
Tony Lindgren1dbae812005-11-10 14:26:51 +000017 *
18 * Some parts based off of TI's 24xx code:
19 *
Santosh Shilimkar44169072009-05-28 14:16:04 -070020 * Copyright (C) 2004-2009 Texas Instruments, Inc.
Tony Lindgren1dbae812005-11-10 14:26:51 +000021 *
22 * Roughly modelled after the OMAP1 MPU timer code.
Santosh Shilimkar44169072009-05-28 14:16:04 -070023 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
Tony Lindgren1dbae812005-11-10 14:26:51 +000024 *
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>
Russell Kingf8ce2542006-01-07 16:15:52 +000033#include <linux/clk.h>
Timo Teras77900a22006-06-26 16:16:12 -070034#include <linux/delay.h>
Dirk Behmee6687292006-12-06 17:14:00 -080035#include <linux/irq.h>
Kevin Hilman5a3a3882007-11-12 23:24:02 -080036#include <linux/clocksource.h>
37#include <linux/clockchips.h>
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +053038#include <linux/slab.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000039
Tony Lindgren1dbae812005-11-10 14:26:51 +000040#include <asm/mach/time.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070041#include <plat/dmtimer.h>
Marc Zyngiera45c9832012-01-10 19:44:19 +000042#include <asm/smp_twd.h>
Paul Walmsleycbc94382011-02-22 19:59:49 -070043#include <asm/sched_clock.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010044#include "common.h"
Paul Walmsley38698be2011-02-23 00:14:08 -070045#include <plat/omap_hwmod.h>
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +053046#include <plat/omap_device.h>
Tarun Kanti DebBarmab4811132011-09-20 17:00:24 +053047#include <plat/omap-pm.h>
48
49#include "powerdomain.h"
Tony Lindgren1dbae812005-11-10 14:26:51 +000050
Tony Lindgrenaa561882011-03-29 15:54:48 -070051/* 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
Paul Walmsleyd8328f32011-01-15 21:32:01 -070071
Tony Lindgrenaa561882011-03-29 15:54:48 -070072/* Clockevent code */
73
74static struct omap_dm_timer clkev;
Kevin Hilman5a3a3882007-11-12 23:24:02 -080075static struct clock_event_device clockevent_gpt;
Tony Lindgren1dbae812005-11-10 14:26:51 +000076
Linus Torvalds0cd61b62006-10-06 10:53:39 -070077static irqreturn_t omap2_gp_timer_interrupt(int irq, void *dev_id)
Tony Lindgren1dbae812005-11-10 14:26:51 +000078{
Kevin Hilman5a3a3882007-11-12 23:24:02 -080079 struct clock_event_device *evt = &clockevent_gpt;
Tony Lindgren1dbae812005-11-10 14:26:51 +000080
Tony Lindgrenee17f112011-09-16 15:44:20 -070081 __omap_dm_timer_write_status(&clkev, OMAP_TIMER_INT_OVERFLOW);
Kevin Hilman5a3a3882007-11-12 23:24:02 -080082
83 evt->event_handler(evt);
Tony Lindgren1dbae812005-11-10 14:26:51 +000084 return IRQ_HANDLED;
85}
86
87static struct irqaction omap2_gp_timer_irq = {
Vaibhav Hiremathf36921b2012-05-09 10:07:05 -070088 .name = "gp_timer",
Bernhard Walleb30faba2007-05-08 00:35:39 -070089 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Tony Lindgren1dbae812005-11-10 14:26:51 +000090 .handler = omap2_gp_timer_interrupt,
91};
92
Kevin Hilman5a3a3882007-11-12 23:24:02 -080093static int omap2_gp_timer_set_next_event(unsigned long cycles,
94 struct clock_event_device *evt)
Tony Lindgren1dbae812005-11-10 14:26:51 +000095{
Tony Lindgrenee17f112011-09-16 15:44:20 -070096 __omap_dm_timer_load_start(&clkev, OMAP_TIMER_CTRL_ST,
Tony Lindgrenaa561882011-03-29 15:54:48 -070097 0xffffffff - cycles, 1);
Tony Lindgren1dbae812005-11-10 14:26:51 +000098
Kevin Hilman5a3a3882007-11-12 23:24:02 -080099 return 0;
100}
101
102static void omap2_gp_timer_set_mode(enum clock_event_mode mode,
103 struct clock_event_device *evt)
104{
105 u32 period;
106
Tony Lindgrenee17f112011-09-16 15:44:20 -0700107 __omap_dm_timer_stop(&clkev, 1, clkev.rate);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800108
109 switch (mode) {
110 case CLOCK_EVT_MODE_PERIODIC:
Tony Lindgrenaa561882011-03-29 15:54:48 -0700111 period = clkev.rate / HZ;
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800112 period -= 1;
Tony Lindgrenaa561882011-03-29 15:54:48 -0700113 /* Looks like we need to first set the load value separately */
Tony Lindgrenee17f112011-09-16 15:44:20 -0700114 __omap_dm_timer_write(&clkev, OMAP_TIMER_LOAD_REG,
Tony Lindgrenaa561882011-03-29 15:54:48 -0700115 0xffffffff - period, 1);
Tony Lindgrenee17f112011-09-16 15:44:20 -0700116 __omap_dm_timer_load_start(&clkev,
Tony Lindgrenaa561882011-03-29 15:54:48 -0700117 OMAP_TIMER_CTRL_AR | OMAP_TIMER_CTRL_ST,
118 0xffffffff - period, 1);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800119 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
129static struct clock_event_device clockevent_gpt = {
Vaibhav Hiremathf36921b2012-05-09 10:07:05 -0700130 .name = "gp_timer",
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800131 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
132 .shift = 32,
133 .set_next_event = omap2_gp_timer_set_next_event,
134 .set_mode = omap2_gp_timer_set_mode,
135};
136
Tony Lindgrenaa561882011-03-29 15:54:48 -0700137static int __init omap_dm_timer_init_one(struct omap_dm_timer *timer,
138 int gptimer_id,
139 const char *fck_source)
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800140{
Tony Lindgrenaa561882011-03-29 15:54:48 -0700141 char name[10]; /* 10 = sizeof("gptXX_Xck0") */
142 struct omap_hwmod *oh;
Paul Walmsley6c0c27f2012-04-19 04:01:50 -0600143 struct resource irq_rsrc, mem_rsrc;
Tony Lindgrenaa561882011-03-29 15:54:48 -0700144 size_t size;
145 int res = 0;
Paul Walmsley6c0c27f2012-04-19 04:01:50 -0600146 int r;
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800147
Tony Lindgrenaa561882011-03-29 15:54:48 -0700148 sprintf(name, "timer%d", gptimer_id);
149 omap_hwmod_setup_one(name);
150 oh = omap_hwmod_lookup(name);
151 if (!oh)
152 return -ENODEV;
Paul Walmsleyf2480762009-04-23 21:11:10 -0600153
Paul Walmsley6c0c27f2012-04-19 04:01:50 -0600154 r = omap_hwmod_get_resource_byname(oh, IORESOURCE_IRQ, NULL, &irq_rsrc);
155 if (r)
156 return -ENXIO;
157 timer->irq = irq_rsrc.start;
158
159 r = omap_hwmod_get_resource_byname(oh, IORESOURCE_MEM, NULL, &mem_rsrc);
160 if (r)
161 return -ENXIO;
162 timer->phys_base = mem_rsrc.start;
163 size = mem_rsrc.end - mem_rsrc.start;
Tony Lindgrenaa561882011-03-29 15:54:48 -0700164
165 /* Static mapping, never released */
166 timer->io_base = ioremap(timer->phys_base, size);
167 if (!timer->io_base)
168 return -ENXIO;
169
170 /* After the dmtimer is using hwmod these clocks won't be needed */
171 sprintf(name, "gpt%d_fck", gptimer_id);
172 timer->fclk = clk_get(NULL, name);
173 if (IS_ERR(timer->fclk))
174 return -ENODEV;
175
Tony Lindgrenaa561882011-03-29 15:54:48 -0700176 omap_hwmod_enable(oh);
177
Jon Hunterb7b4ff72012-06-05 12:34:51 -0500178 if (omap_dm_timer_reserve_systimer(gptimer_id))
179 return -ENODEV;
Tony Lindgren11a01862011-03-29 15:54:49 -0700180
Tony Lindgrenaa561882011-03-29 15:54:48 -0700181 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 }
Tony Lindgrenee17f112011-09-16 15:44:20 -0700195 __omap_dm_timer_init_regs(timer);
196 __omap_dm_timer_reset(timer, 1, 1);
Tony Lindgrenaa561882011-03-29 15:54:48 -0700197 timer->posted = 1;
198
199 timer->rate = clk_get_rate(timer->fclk);
200
201 timer->reserved = 1;
Paul Walmsley38698be2011-02-23 00:14:08 -0700202
Tony Lindgrenaa561882011-03-29 15:54:48 -0700203 return res;
204}
Paul Walmsleyf2480762009-04-23 21:11:10 -0600205
Tony Lindgrenaa561882011-03-29 15:54:48 -0700206static void __init omap2_gp_clockevent_init(int gptimer_id,
207 const char *fck_source)
208{
209 int res;
Paul Walmsleyf2480762009-04-23 21:11:10 -0600210
Tony Lindgrenaa561882011-03-29 15:54:48 -0700211 res = omap_dm_timer_init_one(&clkev, gptimer_id, fck_source);
212 BUG_ON(res);
Paul Walmsleyf2480762009-04-23 21:11:10 -0600213
Tony Lindgren98e182a2011-03-29 15:54:49 -0700214 omap2_gp_timer_irq.dev_id = (void *)&clkev;
Tony Lindgrenaa561882011-03-29 15:54:48 -0700215 setup_irq(clkev.irq, &omap2_gp_timer_irq);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800216
Tony Lindgrenee17f112011-09-16 15:44:20 -0700217 __omap_dm_timer_int_enable(&clkev, OMAP_TIMER_INT_OVERFLOW);
Tony Lindgrenaa561882011-03-29 15:54:48 -0700218
219 clockevent_gpt.mult = div_sc(clkev.rate, NSEC_PER_SEC,
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800220 clockevent_gpt.shift);
221 clockevent_gpt.max_delta_ns =
222 clockevent_delta2ns(0xffffffff, &clockevent_gpt);
223 clockevent_gpt.min_delta_ns =
Aaro Koskinendf88acb2009-01-29 08:57:17 -0800224 clockevent_delta2ns(3, &clockevent_gpt);
225 /* Timer internal resynch latency. */
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800226
Rusty Russell320ab2b2008-12-13 21:20:26 +1030227 clockevent_gpt.cpumask = cpumask_of(0);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800228 clockevents_register_device(&clockevent_gpt);
Tony Lindgrenaa561882011-03-29 15:54:48 -0700229
230 pr_info("OMAP clockevent source: GPTIMER%d at %lu Hz\n",
231 gptimer_id, clkev.rate);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800232}
233
Paul Walmsleyf2480762009-04-23 21:11:10 -0600234/* Clocksource code */
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700235static struct omap_dm_timer clksrc;
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700236static bool use_gptimer_clksrc;
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700237
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800238/*
239 * clocksource
240 */
Magnus Damm8e196082009-04-21 12:24:00 -0700241static cycle_t clocksource_read_cycles(struct clocksource *cs)
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800242{
Tony Lindgrenee17f112011-09-16 15:44:20 -0700243 return (cycle_t)__omap_dm_timer_read_counter(&clksrc, 1);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800244}
245
246static struct clocksource clocksource_gpt = {
Vaibhav Hiremathf36921b2012-05-09 10:07:05 -0700247 .name = "gp_timer",
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800248 .rating = 300,
249 .read = clocksource_read_cycles,
250 .mask = CLOCKSOURCE_MASK(32),
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800251 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
252};
253
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100254static u32 notrace dmtimer_read_sched_clock(void)
Paul Walmsleycbc94382011-02-22 19:59:49 -0700255{
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700256 if (clksrc.reserved)
Vaibhav Hiremathdbc39822012-01-23 12:18:14 +0530257 return __omap_dm_timer_read_counter(&clksrc, 1);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800258
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100259 return 0;
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700260}
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800261
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700262/* Setup free-running counter for clocksource */
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700263static int __init omap2_sync32k_clocksource_init(void)
264{
265 int ret;
266 struct omap_hwmod *oh;
267 void __iomem *vbase;
268 const char *oh_name = "counter_32k";
269
270 /*
271 * First check hwmod data is available for sync32k counter
272 */
273 oh = omap_hwmod_lookup(oh_name);
274 if (!oh || oh->slaves_cnt == 0)
275 return -ENODEV;
276
277 omap_hwmod_setup_one(oh_name);
278
279 vbase = omap_hwmod_get_mpu_rt_va(oh);
280 if (!vbase) {
281 pr_warn("%s: failed to get counter_32k resource\n", __func__);
282 return -ENXIO;
283 }
284
285 ret = omap_hwmod_enable(oh);
286 if (ret) {
287 pr_warn("%s: failed to enable counter_32k module (%d)\n",
288 __func__, ret);
289 return ret;
290 }
291
292 ret = omap_init_clocksource_32k(vbase);
293 if (ret) {
294 pr_warn("%s: failed to initialize counter_32k as a clocksource (%d)\n",
295 __func__, ret);
296 omap_hwmod_idle(oh);
297 }
298
299 return ret;
300}
301
302static void __init omap2_gptimer_clocksource_init(int gptimer_id,
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700303 const char *fck_source)
304{
305 int res;
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800306
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700307 res = omap_dm_timer_init_one(&clksrc, gptimer_id, fck_source);
308 BUG_ON(res);
Paul Walmsleycbc94382011-02-22 19:59:49 -0700309
Tony Lindgrenee17f112011-09-16 15:44:20 -0700310 __omap_dm_timer_load_start(&clksrc,
Hemant Pedanekare9d0b972011-08-10 13:19:35 +0000311 OMAP_TIMER_CTRL_ST | OMAP_TIMER_CTRL_AR, 0, 1);
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100312 setup_sched_clock(dmtimer_read_sched_clock, 32, clksrc.rate);
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700313
314 if (clocksource_register_hz(&clocksource_gpt, clksrc.rate))
315 pr_err("Could not register clocksource %s\n",
316 clocksource_gpt.name);
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700317 else
318 pr_info("OMAP clocksource: GPTIMER%d at %lu Hz\n",
319 gptimer_id, clksrc.rate);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800320}
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700321
322static void __init omap2_clocksource_init(int gptimer_id,
323 const char *fck_source)
324{
325 /*
326 * First give preference to kernel parameter configuration
327 * by user (clocksource="gp_timer").
328 *
329 * In case of missing kernel parameter for clocksource,
330 * first check for availability for 32k-sync timer, in case
331 * of failure in finding 32k_counter module or registering
332 * it as clocksource, execution will fallback to gp-timer.
333 */
334 if (use_gptimer_clksrc == true)
335 omap2_gptimer_clocksource_init(gptimer_id, fck_source);
336 else if (omap2_sync32k_clocksource_init())
337 /* Fall back to gp-timer code */
338 omap2_gptimer_clocksource_init(gptimer_id, fck_source);
339}
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800340
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700341#define OMAP_SYS_TIMER_INIT(name, clkev_nr, clkev_src, \
342 clksrc_nr, clksrc_src) \
Tony Lindgrene74984e2011-03-29 15:54:48 -0700343static void __init omap##name##_timer_init(void) \
344{ \
Tony Lindgrenaa561882011-03-29 15:54:48 -0700345 omap2_gp_clockevent_init((clkev_nr), clkev_src); \
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700346 omap2_clocksource_init((clksrc_nr), clksrc_src); \
Tony Lindgrene74984e2011-03-29 15:54:48 -0700347}
348
349#define OMAP_SYS_TIMER(name) \
350struct sys_timer omap##name##_timer = { \
351 .init = omap##name##_timer_init, \
352};
353
354#ifdef CONFIG_ARCH_OMAP2
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700355OMAP_SYS_TIMER_INIT(2, 1, OMAP2_CLKEV_SOURCE, 2, OMAP2_MPU_SOURCE)
Tony Lindgrene74984e2011-03-29 15:54:48 -0700356OMAP_SYS_TIMER(2)
357#endif
358
359#ifdef CONFIG_ARCH_OMAP3
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700360OMAP_SYS_TIMER_INIT(3, 1, OMAP3_CLKEV_SOURCE, 2, OMAP3_MPU_SOURCE)
Tony Lindgrene74984e2011-03-29 15:54:48 -0700361OMAP_SYS_TIMER(3)
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700362OMAP_SYS_TIMER_INIT(3_secure, OMAP3_SECURE_TIMER, OMAP3_CLKEV_SOURCE,
363 2, OMAP3_MPU_SOURCE)
Tony Lindgrene74984e2011-03-29 15:54:48 -0700364OMAP_SYS_TIMER(3_secure)
365#endif
366
367#ifdef CONFIG_ARCH_OMAP4
Marc Zyngiera45c9832012-01-10 19:44:19 +0000368#ifdef CONFIG_LOCAL_TIMERS
369static DEFINE_TWD_LOCAL_TIMER(twd_local_timer,
370 OMAP44XX_LOCAL_TWD_BASE,
371 OMAP44XX_IRQ_LOCALTIMER);
372#endif
373
Tony Lindgrene74984e2011-03-29 15:54:48 -0700374static void __init omap4_timer_init(void)
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800375{
Tony Lindgrenaa561882011-03-29 15:54:48 -0700376 omap2_gp_clockevent_init(1, OMAP4_CLKEV_SOURCE);
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700377 omap2_clocksource_init(2, OMAP4_MPU_SOURCE);
Marc Zyngiera45c9832012-01-10 19:44:19 +0000378#ifdef CONFIG_LOCAL_TIMERS
379 /* Local timers are not supprted on OMAP4430 ES1.0 */
380 if (omap_rev() != OMAP4430_REV_ES1_0) {
381 int err;
382
383 err = twd_local_timer_register(&twd_local_timer);
384 if (err)
385 pr_err("twd_local_timer_register failed %d\n", err);
386 }
387#endif
Tony Lindgren1dbae812005-11-10 14:26:51 +0000388}
Tony Lindgrene74984e2011-03-29 15:54:48 -0700389OMAP_SYS_TIMER(4)
390#endif
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530391
392/**
393 * omap2_dm_timer_set_src - change the timer input clock source
394 * @pdev: timer platform device pointer
395 * @source: array index of parent clock source
396 */
397static int omap2_dm_timer_set_src(struct platform_device *pdev, int source)
398{
399 int ret;
400 struct dmtimer_platform_data *pdata = pdev->dev.platform_data;
401 struct clk *fclk, *parent;
402 char *parent_name = NULL;
403
404 fclk = clk_get(&pdev->dev, "fck");
405 if (IS_ERR_OR_NULL(fclk)) {
406 dev_err(&pdev->dev, "%s: %d: clk_get() FAILED\n",
407 __func__, __LINE__);
408 return -EINVAL;
409 }
410
411 switch (source) {
412 case OMAP_TIMER_SRC_SYS_CLK:
413 parent_name = "sys_ck";
414 break;
415
416 case OMAP_TIMER_SRC_32_KHZ:
417 parent_name = "32k_ck";
418 break;
419
420 case OMAP_TIMER_SRC_EXT_CLK:
421 if (pdata->timer_ip_version == OMAP_TIMER_IP_VERSION_1) {
422 parent_name = "alt_ck";
423 break;
424 }
425 dev_err(&pdev->dev, "%s: %d: invalid clk src.\n",
426 __func__, __LINE__);
427 clk_put(fclk);
428 return -EINVAL;
429 }
430
431 parent = clk_get(&pdev->dev, parent_name);
432 if (IS_ERR_OR_NULL(parent)) {
433 dev_err(&pdev->dev, "%s: %d: clk_get() %s FAILED\n",
434 __func__, __LINE__, parent_name);
435 clk_put(fclk);
436 return -EINVAL;
437 }
438
439 ret = clk_set_parent(fclk, parent);
440 if (IS_ERR_VALUE(ret)) {
441 dev_err(&pdev->dev, "%s: clk_set_parent() to %s FAILED\n",
442 __func__, parent_name);
443 ret = -EINVAL;
444 }
445
446 clk_put(parent);
447 clk_put(fclk);
448
449 return ret;
450}
451
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530452/**
453 * omap_timer_init - build and register timer device with an
454 * associated timer hwmod
455 * @oh: timer hwmod pointer to be used to build timer device
456 * @user: parameter that can be passed from calling hwmod API
457 *
458 * Called by omap_hwmod_for_each_by_class to register each of the timer
459 * devices present in the system. The number of timer devices is known
460 * by parsing through the hwmod database for a given class name. At the
461 * end of function call memory is allocated for timer device and it is
462 * registered to the framework ready to be proved by the driver.
463 */
464static int __init omap_timer_init(struct omap_hwmod *oh, void *unused)
465{
466 int id;
467 int ret = 0;
468 char *name = "omap_timer";
469 struct dmtimer_platform_data *pdata;
Tony Lindgrenc541c152011-10-04 09:47:06 -0700470 struct platform_device *pdev;
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530471 struct omap_timer_capability_dev_attr *timer_dev_attr;
Tarun Kanti DebBarmab4811132011-09-20 17:00:24 +0530472 struct powerdomain *pwrdm;
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530473
474 pr_debug("%s: %s\n", __func__, oh->name);
475
476 /* on secure device, do not register secure timer */
477 timer_dev_attr = oh->dev_attr;
478 if (omap_type() != OMAP2_DEVICE_TYPE_GP && timer_dev_attr)
479 if (timer_dev_attr->timer_capability == OMAP_TIMER_SECURE)
480 return ret;
481
482 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
483 if (!pdata) {
484 pr_err("%s: No memory for [%s]\n", __func__, oh->name);
485 return -ENOMEM;
486 }
487
488 /*
489 * Extract the IDs from name field in hwmod database
490 * and use the same for constructing ids' for the
491 * timer devices. In a way, we are avoiding usage of
492 * static variable witin the function to do the same.
493 * CAUTION: We have to be careful and make sure the
494 * name in hwmod database does not change in which case
495 * we might either make corresponding change here or
496 * switch back static variable mechanism.
497 */
498 sscanf(oh->name, "timer%2d", &id);
499
500 pdata->set_timer_src = omap2_dm_timer_set_src;
501 pdata->timer_ip_version = oh->class->rev;
502
Tarun Kanti DebBarmab4811132011-09-20 17:00:24 +0530503 pwrdm = omap_hwmod_get_pwrdm(oh);
504 pdata->loses_context = pwrdm_can_ever_lose_context(pwrdm);
505#ifdef CONFIG_PM
506 pdata->get_context_loss_count = omap_pm_get_dev_context_loss_count;
507#endif
Tony Lindgrenc541c152011-10-04 09:47:06 -0700508 pdev = omap_device_build(name, id, oh, pdata, sizeof(*pdata),
Benoit Coussonc16ae1e2011-10-04 23:20:41 +0200509 NULL, 0, 0);
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530510
Tony Lindgrenc541c152011-10-04 09:47:06 -0700511 if (IS_ERR(pdev)) {
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530512 pr_err("%s: Can't build omap_device for %s: %s.\n",
513 __func__, name, oh->name);
514 ret = -EINVAL;
515 }
516
517 kfree(pdata);
518
519 return ret;
520}
Tarun Kanti DebBarma3392cdd2011-09-20 17:00:20 +0530521
522/**
523 * omap2_dm_timer_init - top level regular device initialization
524 *
525 * Uses dedicated hwmod api to parse through hwmod database for
526 * given class name and then build and register the timer device.
527 */
528static int __init omap2_dm_timer_init(void)
529{
530 int ret;
531
532 ret = omap_hwmod_for_each_by_class("timer", omap_timer_init, NULL);
533 if (unlikely(ret)) {
534 pr_err("%s: device registration failed.\n", __func__);
535 return -EINVAL;
536 }
537
538 return 0;
539}
540arch_initcall(omap2_dm_timer_init);
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700541
542/**
543 * omap2_override_clocksource - clocksource override with user configuration
544 *
545 * Allows user to override default clocksource, using kernel parameter
546 * clocksource="gp_timer" (For all OMAP2PLUS architectures)
547 *
548 * Note that, here we are using same standard kernel parameter "clocksource=",
549 * and not introducing any OMAP specific interface.
550 */
551static int __init omap2_override_clocksource(char *str)
552{
553 if (!str)
554 return 0;
555 /*
556 * For OMAP architecture, we only have two options
557 * - sync_32k (default)
558 * - gp_timer (sys_clk based)
559 */
560 if (!strcmp(str, "gp_timer"))
561 use_gptimer_clksrc = true;
562
563 return 0;
564}
565early_param("clocksource", omap2_override_clocksource);