blob: 565e5755c9bc9f9352a3876341e958c5a39a2074 [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>
Santosh Shilimkareed0de22012-07-04 18:32:32 +053039#include <linux/of.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000040
Tony Lindgren1dbae812005-11-10 14:26:51 +000041#include <asm/mach/time.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 Lindgren7d7e1eb2012-08-27 17:43:01 -070044
Santosh Shilimkar3c7c5da2012-08-13 14:39:03 +053045#include <asm/arch_timer.h>
Tony Lindgren2a296c82012-10-02 17:41:35 -070046#include "omap_hwmod.h"
Tony Lindgren25c7d492012-10-02 17:25:48 -070047#include "omap_device.h"
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -070048#include <plat/dmtimer.h>
Tony Lindgren1d5aef42012-10-03 16:36:40 -070049#include "omap-pm.h"
Tarun Kanti DebBarmab4811132011-09-20 17:00:24 +053050
Tony Lindgrendbc04162012-08-31 10:59:07 -070051#include "soc.h"
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -070052#include "common.h"
Tarun Kanti DebBarmab4811132011-09-20 17:00:24 +053053#include "powerdomain.h"
Tony Lindgren1dbae812005-11-10 14:26:51 +000054
Tony Lindgrenaa561882011-03-29 15:54:48 -070055/* Parent clocks, eventually these will come from the clock framework */
56
57#define OMAP2_MPU_SOURCE "sys_ck"
58#define OMAP3_MPU_SOURCE OMAP2_MPU_SOURCE
59#define OMAP4_MPU_SOURCE "sys_clkin_ck"
60#define OMAP2_32K_SOURCE "func_32k_ck"
61#define OMAP3_32K_SOURCE "omap_32k_fck"
62#define OMAP4_32K_SOURCE "sys_32k_ck"
63
64#ifdef CONFIG_OMAP_32K_TIMER
65#define OMAP2_CLKEV_SOURCE OMAP2_32K_SOURCE
66#define OMAP3_CLKEV_SOURCE OMAP3_32K_SOURCE
67#define OMAP4_CLKEV_SOURCE OMAP4_32K_SOURCE
68#define OMAP3_SECURE_TIMER 12
69#else
70#define OMAP2_CLKEV_SOURCE OMAP2_MPU_SOURCE
71#define OMAP3_CLKEV_SOURCE OMAP3_MPU_SOURCE
72#define OMAP4_CLKEV_SOURCE OMAP4_MPU_SOURCE
73#define OMAP3_SECURE_TIMER 1
74#endif
Paul Walmsleyd8328f32011-01-15 21:32:01 -070075
Santosh Shilimkarfa6d79d2012-08-13 14:24:24 +053076#define REALTIME_COUNTER_BASE 0x48243200
77#define INCREMENTER_NUMERATOR_OFFSET 0x10
78#define INCREMENTER_DENUMERATOR_RELOAD_OFFSET 0x14
79#define NUMERATOR_DENUMERATOR_MASK 0xfffff000
80
Tony Lindgrenaa561882011-03-29 15:54:48 -070081/* Clockevent code */
82
83static struct omap_dm_timer clkev;
Kevin Hilman5a3a3882007-11-12 23:24:02 -080084static struct clock_event_device clockevent_gpt;
Tony Lindgren1dbae812005-11-10 14:26:51 +000085
Linus Torvalds0cd61b62006-10-06 10:53:39 -070086static irqreturn_t omap2_gp_timer_interrupt(int irq, void *dev_id)
Tony Lindgren1dbae812005-11-10 14:26:51 +000087{
Kevin Hilman5a3a3882007-11-12 23:24:02 -080088 struct clock_event_device *evt = &clockevent_gpt;
Tony Lindgren1dbae812005-11-10 14:26:51 +000089
Tony Lindgrenee17f112011-09-16 15:44:20 -070090 __omap_dm_timer_write_status(&clkev, OMAP_TIMER_INT_OVERFLOW);
Kevin Hilman5a3a3882007-11-12 23:24:02 -080091
92 evt->event_handler(evt);
Tony Lindgren1dbae812005-11-10 14:26:51 +000093 return IRQ_HANDLED;
94}
95
96static struct irqaction omap2_gp_timer_irq = {
Vaibhav Hiremathf36921b2012-05-09 10:07:05 -070097 .name = "gp_timer",
Bernhard Walleb30faba2007-05-08 00:35:39 -070098 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Tony Lindgren1dbae812005-11-10 14:26:51 +000099 .handler = omap2_gp_timer_interrupt,
100};
101
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800102static int omap2_gp_timer_set_next_event(unsigned long cycles,
103 struct clock_event_device *evt)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000104{
Tony Lindgrenee17f112011-09-16 15:44:20 -0700105 __omap_dm_timer_load_start(&clkev, OMAP_TIMER_CTRL_ST,
Tony Lindgrenaa561882011-03-29 15:54:48 -0700106 0xffffffff - cycles, 1);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000107
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800108 return 0;
109}
110
111static void omap2_gp_timer_set_mode(enum clock_event_mode mode,
112 struct clock_event_device *evt)
113{
114 u32 period;
115
Tony Lindgrenee17f112011-09-16 15:44:20 -0700116 __omap_dm_timer_stop(&clkev, 1, clkev.rate);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800117
118 switch (mode) {
119 case CLOCK_EVT_MODE_PERIODIC:
Tony Lindgrenaa561882011-03-29 15:54:48 -0700120 period = clkev.rate / HZ;
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800121 period -= 1;
Tony Lindgrenaa561882011-03-29 15:54:48 -0700122 /* Looks like we need to first set the load value separately */
Tony Lindgrenee17f112011-09-16 15:44:20 -0700123 __omap_dm_timer_write(&clkev, OMAP_TIMER_LOAD_REG,
Tony Lindgrenaa561882011-03-29 15:54:48 -0700124 0xffffffff - period, 1);
Tony Lindgrenee17f112011-09-16 15:44:20 -0700125 __omap_dm_timer_load_start(&clkev,
Tony Lindgrenaa561882011-03-29 15:54:48 -0700126 OMAP_TIMER_CTRL_AR | OMAP_TIMER_CTRL_ST,
127 0xffffffff - period, 1);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800128 break;
129 case CLOCK_EVT_MODE_ONESHOT:
130 break;
131 case CLOCK_EVT_MODE_UNUSED:
132 case CLOCK_EVT_MODE_SHUTDOWN:
133 case CLOCK_EVT_MODE_RESUME:
134 break;
135 }
136}
137
138static struct clock_event_device clockevent_gpt = {
Vaibhav Hiremathf36921b2012-05-09 10:07:05 -0700139 .name = "gp_timer",
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800140 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
141 .shift = 32,
Santosh Shilimkar11d6ec22012-03-17 15:00:16 +0530142 .rating = 300,
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800143 .set_next_event = omap2_gp_timer_set_next_event,
144 .set_mode = omap2_gp_timer_set_mode,
145};
146
Tony Lindgrenaa561882011-03-29 15:54:48 -0700147static int __init omap_dm_timer_init_one(struct omap_dm_timer *timer,
148 int gptimer_id,
149 const char *fck_source)
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800150{
Tony Lindgrenaa561882011-03-29 15:54:48 -0700151 char name[10]; /* 10 = sizeof("gptXX_Xck0") */
152 struct omap_hwmod *oh;
Paul Walmsley6c0c27f2012-04-19 04:01:50 -0600153 struct resource irq_rsrc, mem_rsrc;
Tony Lindgrenaa561882011-03-29 15:54:48 -0700154 size_t size;
155 int res = 0;
Paul Walmsley6c0c27f2012-04-19 04:01:50 -0600156 int r;
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800157
Tony Lindgrenaa561882011-03-29 15:54:48 -0700158 sprintf(name, "timer%d", gptimer_id);
159 omap_hwmod_setup_one(name);
160 oh = omap_hwmod_lookup(name);
161 if (!oh)
162 return -ENODEV;
Paul Walmsleyf2480762009-04-23 21:11:10 -0600163
Paul Walmsley6c0c27f2012-04-19 04:01:50 -0600164 r = omap_hwmod_get_resource_byname(oh, IORESOURCE_IRQ, NULL, &irq_rsrc);
165 if (r)
166 return -ENXIO;
167 timer->irq = irq_rsrc.start;
168
169 r = omap_hwmod_get_resource_byname(oh, IORESOURCE_MEM, NULL, &mem_rsrc);
170 if (r)
171 return -ENXIO;
172 timer->phys_base = mem_rsrc.start;
173 size = mem_rsrc.end - mem_rsrc.start;
Tony Lindgrenaa561882011-03-29 15:54:48 -0700174
175 /* Static mapping, never released */
176 timer->io_base = ioremap(timer->phys_base, size);
177 if (!timer->io_base)
178 return -ENXIO;
179
180 /* After the dmtimer is using hwmod these clocks won't be needed */
Tarun Kanti DebBarmaae6df412012-07-05 18:10:59 +0530181 timer->fclk = clk_get(NULL, omap_hwmod_get_main_clk(oh));
Tony Lindgrenaa561882011-03-29 15:54:48 -0700182 if (IS_ERR(timer->fclk))
183 return -ENODEV;
184
Tony Lindgrenaa561882011-03-29 15:54:48 -0700185 omap_hwmod_enable(oh);
186
Jon Hunterb7b4ff72012-06-05 12:34:51 -0500187 if (omap_dm_timer_reserve_systimer(gptimer_id))
188 return -ENODEV;
Tony Lindgren11a01862011-03-29 15:54:49 -0700189
Tony Lindgrenaa561882011-03-29 15:54:48 -0700190 if (gptimer_id != 12) {
191 struct clk *src;
192
193 src = clk_get(NULL, fck_source);
194 if (IS_ERR(src)) {
195 res = -EINVAL;
196 } else {
197 res = __omap_dm_timer_set_source(timer->fclk, src);
198 if (IS_ERR_VALUE(res))
199 pr_warning("%s: timer%i cannot set source\n",
200 __func__, gptimer_id);
201 clk_put(src);
202 }
203 }
Tony Lindgrenee17f112011-09-16 15:44:20 -0700204 __omap_dm_timer_init_regs(timer);
205 __omap_dm_timer_reset(timer, 1, 1);
Tony Lindgrenaa561882011-03-29 15:54:48 -0700206 timer->posted = 1;
207
208 timer->rate = clk_get_rate(timer->fclk);
209
210 timer->reserved = 1;
Paul Walmsley38698be2011-02-23 00:14:08 -0700211
Tony Lindgrenaa561882011-03-29 15:54:48 -0700212 return res;
213}
Paul Walmsleyf2480762009-04-23 21:11:10 -0600214
Tony Lindgrenaa561882011-03-29 15:54:48 -0700215static void __init omap2_gp_clockevent_init(int gptimer_id,
216 const char *fck_source)
217{
218 int res;
Paul Walmsleyf2480762009-04-23 21:11:10 -0600219
Tony Lindgrenaa561882011-03-29 15:54:48 -0700220 res = omap_dm_timer_init_one(&clkev, gptimer_id, fck_source);
221 BUG_ON(res);
Paul Walmsleyf2480762009-04-23 21:11:10 -0600222
Paul Walmsleya032d332012-08-03 09:21:10 -0600223 omap2_gp_timer_irq.dev_id = &clkev;
Tony Lindgrenaa561882011-03-29 15:54:48 -0700224 setup_irq(clkev.irq, &omap2_gp_timer_irq);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800225
Tony Lindgrenee17f112011-09-16 15:44:20 -0700226 __omap_dm_timer_int_enable(&clkev, OMAP_TIMER_INT_OVERFLOW);
Tony Lindgrenaa561882011-03-29 15:54:48 -0700227
228 clockevent_gpt.mult = div_sc(clkev.rate, NSEC_PER_SEC,
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800229 clockevent_gpt.shift);
230 clockevent_gpt.max_delta_ns =
231 clockevent_delta2ns(0xffffffff, &clockevent_gpt);
232 clockevent_gpt.min_delta_ns =
Aaro Koskinendf88acb2009-01-29 08:57:17 -0800233 clockevent_delta2ns(3, &clockevent_gpt);
234 /* Timer internal resynch latency. */
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800235
Santosh Shilimkar11d6ec22012-03-17 15:00:16 +0530236 clockevent_gpt.cpumask = cpu_possible_mask;
237 clockevent_gpt.irq = omap_dm_timer_get_irq(&clkev);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800238 clockevents_register_device(&clockevent_gpt);
Tony Lindgrenaa561882011-03-29 15:54:48 -0700239
240 pr_info("OMAP clockevent source: GPTIMER%d at %lu Hz\n",
241 gptimer_id, clkev.rate);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800242}
243
Paul Walmsleyf2480762009-04-23 21:11:10 -0600244/* Clocksource code */
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700245static struct omap_dm_timer clksrc;
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700246static bool use_gptimer_clksrc;
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700247
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800248/*
249 * clocksource
250 */
Magnus Damm8e196082009-04-21 12:24:00 -0700251static cycle_t clocksource_read_cycles(struct clocksource *cs)
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800252{
Tony Lindgrenee17f112011-09-16 15:44:20 -0700253 return (cycle_t)__omap_dm_timer_read_counter(&clksrc, 1);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800254}
255
256static struct clocksource clocksource_gpt = {
Vaibhav Hiremathf36921b2012-05-09 10:07:05 -0700257 .name = "gp_timer",
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800258 .rating = 300,
259 .read = clocksource_read_cycles,
260 .mask = CLOCKSOURCE_MASK(32),
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800261 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
262};
263
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100264static u32 notrace dmtimer_read_sched_clock(void)
Paul Walmsleycbc94382011-02-22 19:59:49 -0700265{
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700266 if (clksrc.reserved)
Vaibhav Hiremathdbc39822012-01-23 12:18:14 +0530267 return __omap_dm_timer_read_counter(&clksrc, 1);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800268
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100269 return 0;
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700270}
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800271
Igor Grinberg45caae72012-08-28 01:26:14 +0300272#ifdef CONFIG_OMAP_32K_TIMER
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700273/* Setup free-running counter for clocksource */
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700274static int __init omap2_sync32k_clocksource_init(void)
275{
276 int ret;
277 struct omap_hwmod *oh;
278 void __iomem *vbase;
279 const char *oh_name = "counter_32k";
280
281 /*
282 * First check hwmod data is available for sync32k counter
283 */
284 oh = omap_hwmod_lookup(oh_name);
285 if (!oh || oh->slaves_cnt == 0)
286 return -ENODEV;
287
288 omap_hwmod_setup_one(oh_name);
289
290 vbase = omap_hwmod_get_mpu_rt_va(oh);
291 if (!vbase) {
292 pr_warn("%s: failed to get counter_32k resource\n", __func__);
293 return -ENXIO;
294 }
295
296 ret = omap_hwmod_enable(oh);
297 if (ret) {
298 pr_warn("%s: failed to enable counter_32k module (%d)\n",
299 __func__, ret);
300 return ret;
301 }
302
303 ret = omap_init_clocksource_32k(vbase);
304 if (ret) {
305 pr_warn("%s: failed to initialize counter_32k as a clocksource (%d)\n",
306 __func__, ret);
307 omap_hwmod_idle(oh);
308 }
309
310 return ret;
311}
Igor Grinberg45caae72012-08-28 01:26:14 +0300312#else
313static inline int omap2_sync32k_clocksource_init(void)
314{
315 return -ENODEV;
316}
317#endif
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700318
319static void __init omap2_gptimer_clocksource_init(int gptimer_id,
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700320 const char *fck_source)
321{
322 int res;
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800323
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700324 res = omap_dm_timer_init_one(&clksrc, gptimer_id, fck_source);
325 BUG_ON(res);
Paul Walmsleycbc94382011-02-22 19:59:49 -0700326
Tony Lindgrenee17f112011-09-16 15:44:20 -0700327 __omap_dm_timer_load_start(&clksrc,
Hemant Pedanekare9d0b972011-08-10 13:19:35 +0000328 OMAP_TIMER_CTRL_ST | OMAP_TIMER_CTRL_AR, 0, 1);
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100329 setup_sched_clock(dmtimer_read_sched_clock, 32, clksrc.rate);
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700330
331 if (clocksource_register_hz(&clocksource_gpt, clksrc.rate))
332 pr_err("Could not register clocksource %s\n",
333 clocksource_gpt.name);
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700334 else
335 pr_info("OMAP clocksource: GPTIMER%d at %lu Hz\n",
336 gptimer_id, clksrc.rate);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800337}
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700338
339static void __init omap2_clocksource_init(int gptimer_id,
340 const char *fck_source)
341{
342 /*
343 * First give preference to kernel parameter configuration
344 * by user (clocksource="gp_timer").
345 *
346 * In case of missing kernel parameter for clocksource,
347 * first check for availability for 32k-sync timer, in case
348 * of failure in finding 32k_counter module or registering
349 * it as clocksource, execution will fallback to gp-timer.
350 */
351 if (use_gptimer_clksrc == true)
352 omap2_gptimer_clocksource_init(gptimer_id, fck_source);
353 else if (omap2_sync32k_clocksource_init())
354 /* Fall back to gp-timer code */
355 omap2_gptimer_clocksource_init(gptimer_id, fck_source);
356}
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800357
Santosh Shilimkarfa6d79d2012-08-13 14:24:24 +0530358#ifdef CONFIG_SOC_HAS_REALTIME_COUNTER
359/*
360 * The realtime counter also called master counter, is a free-running
361 * counter, which is related to real time. It produces the count used
362 * by the CPU local timer peripherals in the MPU cluster. The timer counts
363 * at a rate of 6.144 MHz. Because the device operates on different clocks
364 * in different power modes, the master counter shifts operation between
365 * clocks, adjusting the increment per clock in hardware accordingly to
366 * maintain a constant count rate.
367 */
368static void __init realtime_counter_init(void)
369{
370 void __iomem *base;
371 static struct clk *sys_clk;
372 unsigned long rate;
373 unsigned int reg, num, den;
374
375 base = ioremap(REALTIME_COUNTER_BASE, SZ_32);
376 if (!base) {
377 pr_err("%s: ioremap failed\n", __func__);
378 return;
379 }
380 sys_clk = clk_get(NULL, "sys_clkin_ck");
Wei Yongjun533b2982012-10-08 15:01:41 -0700381 if (IS_ERR(sys_clk)) {
Santosh Shilimkarfa6d79d2012-08-13 14:24:24 +0530382 pr_err("%s: failed to get system clock handle\n", __func__);
383 iounmap(base);
384 return;
385 }
386
387 rate = clk_get_rate(sys_clk);
388 /* Numerator/denumerator values refer TRM Realtime Counter section */
389 switch (rate) {
390 case 1200000:
391 num = 64;
392 den = 125;
393 break;
394 case 1300000:
395 num = 768;
396 den = 1625;
397 break;
398 case 19200000:
399 num = 8;
400 den = 25;
401 break;
402 case 2600000:
403 num = 384;
404 den = 1625;
405 break;
406 case 2700000:
407 num = 256;
408 den = 1125;
409 break;
410 case 38400000:
411 default:
412 /* Program it for 38.4 MHz */
413 num = 4;
414 den = 25;
415 break;
416 }
417
418 /* Program numerator and denumerator registers */
419 reg = __raw_readl(base + INCREMENTER_NUMERATOR_OFFSET) &
420 NUMERATOR_DENUMERATOR_MASK;
421 reg |= num;
422 __raw_writel(reg, base + INCREMENTER_NUMERATOR_OFFSET);
423
424 reg = __raw_readl(base + INCREMENTER_NUMERATOR_OFFSET) &
425 NUMERATOR_DENUMERATOR_MASK;
426 reg |= den;
427 __raw_writel(reg, base + INCREMENTER_DENUMERATOR_RELOAD_OFFSET);
428
429 iounmap(base);
430}
431#else
432static inline void __init realtime_counter_init(void)
433{}
434#endif
435
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700436#define OMAP_SYS_TIMER_INIT(name, clkev_nr, clkev_src, \
437 clksrc_nr, clksrc_src) \
Tony Lindgrene74984e2011-03-29 15:54:48 -0700438static void __init omap##name##_timer_init(void) \
439{ \
Tony Lindgrenaa561882011-03-29 15:54:48 -0700440 omap2_gp_clockevent_init((clkev_nr), clkev_src); \
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700441 omap2_clocksource_init((clksrc_nr), clksrc_src); \
Tony Lindgrene74984e2011-03-29 15:54:48 -0700442}
443
444#define OMAP_SYS_TIMER(name) \
445struct sys_timer omap##name##_timer = { \
446 .init = omap##name##_timer_init, \
447};
448
449#ifdef CONFIG_ARCH_OMAP2
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700450OMAP_SYS_TIMER_INIT(2, 1, OMAP2_CLKEV_SOURCE, 2, OMAP2_MPU_SOURCE)
Tony Lindgrene74984e2011-03-29 15:54:48 -0700451OMAP_SYS_TIMER(2)
452#endif
453
454#ifdef CONFIG_ARCH_OMAP3
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700455OMAP_SYS_TIMER_INIT(3, 1, OMAP3_CLKEV_SOURCE, 2, OMAP3_MPU_SOURCE)
Tony Lindgrene74984e2011-03-29 15:54:48 -0700456OMAP_SYS_TIMER(3)
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700457OMAP_SYS_TIMER_INIT(3_secure, OMAP3_SECURE_TIMER, OMAP3_CLKEV_SOURCE,
458 2, OMAP3_MPU_SOURCE)
Tony Lindgrene74984e2011-03-29 15:54:48 -0700459OMAP_SYS_TIMER(3_secure)
460#endif
461
Afzal Mohammed08f30982012-05-11 00:38:49 +0530462#ifdef CONFIG_SOC_AM33XX
463OMAP_SYS_TIMER_INIT(3_am33xx, 1, OMAP4_MPU_SOURCE, 2, OMAP4_MPU_SOURCE)
464OMAP_SYS_TIMER(3_am33xx)
465#endif
466
Tony Lindgrene74984e2011-03-29 15:54:48 -0700467#ifdef CONFIG_ARCH_OMAP4
Marc Zyngiera45c9832012-01-10 19:44:19 +0000468#ifdef CONFIG_LOCAL_TIMERS
469static DEFINE_TWD_LOCAL_TIMER(twd_local_timer,
Tony Lindgren3f216ef2012-10-16 11:19:16 -0700470 OMAP44XX_LOCAL_TWD_BASE, 29);
Marc Zyngiera45c9832012-01-10 19:44:19 +0000471#endif
472
Tony Lindgrene74984e2011-03-29 15:54:48 -0700473static void __init omap4_timer_init(void)
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800474{
Tony Lindgrenaa561882011-03-29 15:54:48 -0700475 omap2_gp_clockevent_init(1, OMAP4_CLKEV_SOURCE);
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700476 omap2_clocksource_init(2, OMAP4_MPU_SOURCE);
Marc Zyngiera45c9832012-01-10 19:44:19 +0000477#ifdef CONFIG_LOCAL_TIMERS
478 /* Local timers are not supprted on OMAP4430 ES1.0 */
479 if (omap_rev() != OMAP4430_REV_ES1_0) {
480 int err;
481
Santosh Shilimkareed0de22012-07-04 18:32:32 +0530482 if (of_have_populated_dt()) {
483 twd_local_timer_of_register();
484 return;
485 }
486
Marc Zyngiera45c9832012-01-10 19:44:19 +0000487 err = twd_local_timer_register(&twd_local_timer);
488 if (err)
489 pr_err("twd_local_timer_register failed %d\n", err);
490 }
491#endif
Tony Lindgren1dbae812005-11-10 14:26:51 +0000492}
Tony Lindgrene74984e2011-03-29 15:54:48 -0700493OMAP_SYS_TIMER(4)
494#endif
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530495
R Sricharan37b32802012-05-02 13:07:12 +0530496#ifdef CONFIG_SOC_OMAP5
Santosh Shilimkarfa6d79d2012-08-13 14:24:24 +0530497static void __init omap5_timer_init(void)
498{
Santosh Shilimkar3c7c5da2012-08-13 14:39:03 +0530499 int err;
500
Santosh Shilimkarfa6d79d2012-08-13 14:24:24 +0530501 omap2_gp_clockevent_init(1, OMAP4_CLKEV_SOURCE);
502 omap2_clocksource_init(2, OMAP4_MPU_SOURCE);
503 realtime_counter_init();
Santosh Shilimkar3c7c5da2012-08-13 14:39:03 +0530504
505 err = arch_timer_of_register();
506 if (err)
507 pr_err("%s: arch_timer_register failed %d\n", __func__, err);
Santosh Shilimkarfa6d79d2012-08-13 14:24:24 +0530508}
R Sricharan37b32802012-05-02 13:07:12 +0530509OMAP_SYS_TIMER(5)
510#endif
511
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530512/**
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530513 * omap_timer_init - build and register timer device with an
514 * associated timer hwmod
515 * @oh: timer hwmod pointer to be used to build timer device
516 * @user: parameter that can be passed from calling hwmod API
517 *
518 * Called by omap_hwmod_for_each_by_class to register each of the timer
519 * devices present in the system. The number of timer devices is known
520 * by parsing through the hwmod database for a given class name. At the
521 * end of function call memory is allocated for timer device and it is
522 * registered to the framework ready to be proved by the driver.
523 */
524static int __init omap_timer_init(struct omap_hwmod *oh, void *unused)
525{
526 int id;
527 int ret = 0;
528 char *name = "omap_timer";
529 struct dmtimer_platform_data *pdata;
Tony Lindgrenc541c152011-10-04 09:47:06 -0700530 struct platform_device *pdev;
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530531 struct omap_timer_capability_dev_attr *timer_dev_attr;
532
533 pr_debug("%s: %s\n", __func__, oh->name);
534
535 /* on secure device, do not register secure timer */
536 timer_dev_attr = oh->dev_attr;
537 if (omap_type() != OMAP2_DEVICE_TYPE_GP && timer_dev_attr)
538 if (timer_dev_attr->timer_capability == OMAP_TIMER_SECURE)
539 return ret;
540
541 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
542 if (!pdata) {
543 pr_err("%s: No memory for [%s]\n", __func__, oh->name);
544 return -ENOMEM;
545 }
546
547 /*
548 * Extract the IDs from name field in hwmod database
549 * and use the same for constructing ids' for the
550 * timer devices. In a way, we are avoiding usage of
551 * static variable witin the function to do the same.
552 * CAUTION: We have to be careful and make sure the
553 * name in hwmod database does not change in which case
554 * we might either make corresponding change here or
555 * switch back static variable mechanism.
556 */
557 sscanf(oh->name, "timer%2d", &id);
558
Jon Hunterd1c16912012-06-05 12:34:52 -0500559 if (timer_dev_attr)
560 pdata->timer_capability = timer_dev_attr->timer_capability;
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530561
Tony Lindgrenc541c152011-10-04 09:47:06 -0700562 pdev = omap_device_build(name, id, oh, pdata, sizeof(*pdata),
Benoit Coussonc16ae1e2011-10-04 23:20:41 +0200563 NULL, 0, 0);
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530564
Tony Lindgrenc541c152011-10-04 09:47:06 -0700565 if (IS_ERR(pdev)) {
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530566 pr_err("%s: Can't build omap_device for %s: %s.\n",
567 __func__, name, oh->name);
568 ret = -EINVAL;
569 }
570
571 kfree(pdata);
572
573 return ret;
574}
Tarun Kanti DebBarma3392cdd2011-09-20 17:00:20 +0530575
576/**
577 * omap2_dm_timer_init - top level regular device initialization
578 *
579 * Uses dedicated hwmod api to parse through hwmod database for
580 * given class name and then build and register the timer device.
581 */
582static int __init omap2_dm_timer_init(void)
583{
584 int ret;
585
586 ret = omap_hwmod_for_each_by_class("timer", omap_timer_init, NULL);
587 if (unlikely(ret)) {
588 pr_err("%s: device registration failed.\n", __func__);
589 return -EINVAL;
590 }
591
592 return 0;
593}
594arch_initcall(omap2_dm_timer_init);
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700595
596/**
597 * omap2_override_clocksource - clocksource override with user configuration
598 *
599 * Allows user to override default clocksource, using kernel parameter
600 * clocksource="gp_timer" (For all OMAP2PLUS architectures)
601 *
602 * Note that, here we are using same standard kernel parameter "clocksource=",
603 * and not introducing any OMAP specific interface.
604 */
605static int __init omap2_override_clocksource(char *str)
606{
607 if (!str)
608 return 0;
609 /*
610 * For OMAP architecture, we only have two options
611 * - sync_32k (default)
612 * - gp_timer (sys_clk based)
613 */
614 if (!strcmp(str, "gp_timer"))
615 use_gptimer_clksrc = true;
616
617 return 0;
618}
619early_param("clocksource", omap2_override_clocksource);