blob: 0758bae3a57a41cabd0de872a446c6c12cdc6782 [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>
Jon Hunter9725f442012-05-14 10:41:37 -050040#include <linux/of_address.h>
41#include <linux/of_irq.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000042
Tony Lindgren1dbae812005-11-10 14:26:51 +000043#include <asm/mach/time.h>
Marc Zyngiera45c9832012-01-10 19:44:19 +000044#include <asm/smp_twd.h>
Paul Walmsleycbc94382011-02-22 19:59:49 -070045#include <asm/sched_clock.h>
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -070046
Santosh Shilimkar3c7c5da2012-08-13 14:39:03 +053047#include <asm/arch_timer.h>
Paul Walmsley38698be2011-02-23 00:14:08 -070048#include <plat/omap_hwmod.h>
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +053049#include <plat/omap_device.h>
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -070050#include <plat/dmtimer.h>
Tarun Kanti DebBarmab4811132011-09-20 17:00:24 +053051#include <plat/omap-pm.h>
52
Tony Lindgrendbc04162012-08-31 10:59:07 -070053#include "soc.h"
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -070054#include "common.h"
Tarun Kanti DebBarmab4811132011-09-20 17:00:24 +053055#include "powerdomain.h"
Tony Lindgren1dbae812005-11-10 14:26:51 +000056
Tony Lindgrenaa561882011-03-29 15:54:48 -070057/* Parent clocks, eventually these will come from the clock framework */
58
59#define OMAP2_MPU_SOURCE "sys_ck"
60#define OMAP3_MPU_SOURCE OMAP2_MPU_SOURCE
61#define OMAP4_MPU_SOURCE "sys_clkin_ck"
62#define OMAP2_32K_SOURCE "func_32k_ck"
63#define OMAP3_32K_SOURCE "omap_32k_fck"
64#define OMAP4_32K_SOURCE "sys_32k_ck"
65
66#ifdef CONFIG_OMAP_32K_TIMER
67#define OMAP2_CLKEV_SOURCE OMAP2_32K_SOURCE
68#define OMAP3_CLKEV_SOURCE OMAP3_32K_SOURCE
69#define OMAP4_CLKEV_SOURCE OMAP4_32K_SOURCE
70#define OMAP3_SECURE_TIMER 12
Jon Hunter9725f442012-05-14 10:41:37 -050071#define TIMER_PROP_SECURE "ti,timer-secure"
Tony Lindgrenaa561882011-03-29 15:54:48 -070072#else
73#define OMAP2_CLKEV_SOURCE OMAP2_MPU_SOURCE
74#define OMAP3_CLKEV_SOURCE OMAP3_MPU_SOURCE
75#define OMAP4_CLKEV_SOURCE OMAP4_MPU_SOURCE
76#define OMAP3_SECURE_TIMER 1
Jon Hunter9725f442012-05-14 10:41:37 -050077#define TIMER_PROP_SECURE "ti,timer-alwon"
Tony Lindgrenaa561882011-03-29 15:54:48 -070078#endif
Paul Walmsleyd8328f32011-01-15 21:32:01 -070079
Santosh Shilimkarfa6d79d2012-08-13 14:24:24 +053080#define REALTIME_COUNTER_BASE 0x48243200
81#define INCREMENTER_NUMERATOR_OFFSET 0x10
82#define INCREMENTER_DENUMERATOR_RELOAD_OFFSET 0x14
83#define NUMERATOR_DENUMERATOR_MASK 0xfffff000
84
Tony Lindgrenaa561882011-03-29 15:54:48 -070085/* Clockevent code */
86
87static struct omap_dm_timer clkev;
Kevin Hilman5a3a3882007-11-12 23:24:02 -080088static struct clock_event_device clockevent_gpt;
Tony Lindgren1dbae812005-11-10 14:26:51 +000089
Linus Torvalds0cd61b62006-10-06 10:53:39 -070090static irqreturn_t omap2_gp_timer_interrupt(int irq, void *dev_id)
Tony Lindgren1dbae812005-11-10 14:26:51 +000091{
Kevin Hilman5a3a3882007-11-12 23:24:02 -080092 struct clock_event_device *evt = &clockevent_gpt;
Tony Lindgren1dbae812005-11-10 14:26:51 +000093
Tony Lindgrenee17f112011-09-16 15:44:20 -070094 __omap_dm_timer_write_status(&clkev, OMAP_TIMER_INT_OVERFLOW);
Kevin Hilman5a3a3882007-11-12 23:24:02 -080095
96 evt->event_handler(evt);
Tony Lindgren1dbae812005-11-10 14:26:51 +000097 return IRQ_HANDLED;
98}
99
100static struct irqaction omap2_gp_timer_irq = {
Vaibhav Hiremathf36921b2012-05-09 10:07:05 -0700101 .name = "gp_timer",
Bernhard Walleb30faba2007-05-08 00:35:39 -0700102 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Tony Lindgren1dbae812005-11-10 14:26:51 +0000103 .handler = omap2_gp_timer_interrupt,
104};
105
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800106static int omap2_gp_timer_set_next_event(unsigned long cycles,
107 struct clock_event_device *evt)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000108{
Tony Lindgrenee17f112011-09-16 15:44:20 -0700109 __omap_dm_timer_load_start(&clkev, OMAP_TIMER_CTRL_ST,
Tony Lindgrenaa561882011-03-29 15:54:48 -0700110 0xffffffff - cycles, 1);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000111
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800112 return 0;
113}
114
115static void omap2_gp_timer_set_mode(enum clock_event_mode mode,
116 struct clock_event_device *evt)
117{
118 u32 period;
119
Tony Lindgrenee17f112011-09-16 15:44:20 -0700120 __omap_dm_timer_stop(&clkev, 1, clkev.rate);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800121
122 switch (mode) {
123 case CLOCK_EVT_MODE_PERIODIC:
Tony Lindgrenaa561882011-03-29 15:54:48 -0700124 period = clkev.rate / HZ;
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800125 period -= 1;
Tony Lindgrenaa561882011-03-29 15:54:48 -0700126 /* Looks like we need to first set the load value separately */
Tony Lindgrenee17f112011-09-16 15:44:20 -0700127 __omap_dm_timer_write(&clkev, OMAP_TIMER_LOAD_REG,
Tony Lindgrenaa561882011-03-29 15:54:48 -0700128 0xffffffff - period, 1);
Tony Lindgrenee17f112011-09-16 15:44:20 -0700129 __omap_dm_timer_load_start(&clkev,
Tony Lindgrenaa561882011-03-29 15:54:48 -0700130 OMAP_TIMER_CTRL_AR | OMAP_TIMER_CTRL_ST,
131 0xffffffff - period, 1);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800132 break;
133 case CLOCK_EVT_MODE_ONESHOT:
134 break;
135 case CLOCK_EVT_MODE_UNUSED:
136 case CLOCK_EVT_MODE_SHUTDOWN:
137 case CLOCK_EVT_MODE_RESUME:
138 break;
139 }
140}
141
142static struct clock_event_device clockevent_gpt = {
Vaibhav Hiremathf36921b2012-05-09 10:07:05 -0700143 .name = "gp_timer",
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800144 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
145 .shift = 32,
Santosh Shilimkar11d6ec22012-03-17 15:00:16 +0530146 .rating = 300,
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800147 .set_next_event = omap2_gp_timer_set_next_event,
148 .set_mode = omap2_gp_timer_set_mode,
149};
150
Jon Hunterad24bde2012-06-20 15:55:24 -0500151static struct property device_disabled = {
152 .name = "status",
153 .length = sizeof("disabled"),
154 .value = "disabled",
155};
156
157static struct of_device_id omap_timer_match[] __initdata = {
158 { .compatible = "ti,omap2-timer", },
159 { }
160};
161
Jon Hunter9883f7c2012-10-09 14:12:26 -0500162static struct of_device_id omap_counter_match[] __initdata = {
163 { .compatible = "ti,omap-counter32k", },
164 { }
165};
166
Jon Hunterad24bde2012-06-20 15:55:24 -0500167/**
Jon Hunter9725f442012-05-14 10:41:37 -0500168 * omap_get_timer_dt - get a timer using device-tree
169 * @match - device-tree match structure for matching a device type
170 * @property - optional timer property to match
171 *
172 * Helper function to get a timer during early boot using device-tree for use
173 * as kernel system timer. Optionally, the property argument can be used to
174 * select a timer with a specific property. Once a timer is found then mark
175 * the timer node in device-tree as disabled, to prevent the kernel from
176 * registering this timer as a platform device and so no one else can use it.
177 */
178static struct device_node * __init omap_get_timer_dt(struct of_device_id *match,
179 const char *property)
180{
181 struct device_node *np;
182
183 for_each_matching_node(np, match) {
184 if (!of_device_is_available(np)) {
185 of_node_put(np);
186 continue;
187 }
188
189 if (property && !of_get_property(np, property, NULL)) {
190 of_node_put(np);
191 continue;
192 }
193
194 prom_add_property(np, &device_disabled);
195 return np;
196 }
197
198 return NULL;
199}
200
201/**
Jon Hunterad24bde2012-06-20 15:55:24 -0500202 * omap_dmtimer_init - initialisation function when device tree is used
203 *
204 * For secure OMAP3 devices, timers with device type "timer-secure" cannot
205 * be used by the kernel as they are reserved. Therefore, to prevent the
206 * kernel registering these devices remove them dynamically from the device
207 * tree on boot.
208 */
209void __init omap_dmtimer_init(void)
210{
211 struct device_node *np;
212
213 if (!cpu_is_omap34xx())
214 return;
215
216 /* If we are a secure device, remove any secure timer nodes */
217 if ((omap_type() != OMAP2_DEVICE_TYPE_GP)) {
Jon Hunter9725f442012-05-14 10:41:37 -0500218 np = omap_get_timer_dt(omap_timer_match, "ti,timer-secure");
219 if (np)
220 of_node_put(np);
Jon Hunterad24bde2012-06-20 15:55:24 -0500221 }
222}
223
Tony Lindgrenaa561882011-03-29 15:54:48 -0700224static int __init omap_dm_timer_init_one(struct omap_dm_timer *timer,
225 int gptimer_id,
Jon Hunter9725f442012-05-14 10:41:37 -0500226 const char *fck_source,
227 const char *property)
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800228{
Tony Lindgrenaa561882011-03-29 15:54:48 -0700229 char name[10]; /* 10 = sizeof("gptXX_Xck0") */
Jon Hunter9725f442012-05-14 10:41:37 -0500230 const char *oh_name;
231 struct device_node *np;
Tony Lindgrenaa561882011-03-29 15:54:48 -0700232 struct omap_hwmod *oh;
Paul Walmsley6c0c27f2012-04-19 04:01:50 -0600233 struct resource irq_rsrc, mem_rsrc;
Tony Lindgrenaa561882011-03-29 15:54:48 -0700234 size_t size;
235 int res = 0;
Paul Walmsley6c0c27f2012-04-19 04:01:50 -0600236 int r;
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800237
Jon Hunter9725f442012-05-14 10:41:37 -0500238 if (of_have_populated_dt()) {
239 np = omap_get_timer_dt(omap_timer_match, NULL);
240 if (!np)
241 return -ENODEV;
242
243 of_property_read_string_index(np, "ti,hwmods", 0, &oh_name);
244 if (!oh_name)
245 return -ENODEV;
246
247 timer->irq = irq_of_parse_and_map(np, 0);
248 if (!timer->irq)
249 return -ENXIO;
250
251 timer->io_base = of_iomap(np, 0);
252
253 of_node_put(np);
254 } else {
255 if (omap_dm_timer_reserve_systimer(gptimer_id))
256 return -ENODEV;
257
258 sprintf(name, "timer%d", gptimer_id);
259 oh_name = name;
260 }
261
262 omap_hwmod_setup_one(oh_name);
263 oh = omap_hwmod_lookup(oh_name);
264
Tony Lindgrenaa561882011-03-29 15:54:48 -0700265 if (!oh)
266 return -ENODEV;
Paul Walmsleyf2480762009-04-23 21:11:10 -0600267
Jon Hunter9725f442012-05-14 10:41:37 -0500268 if (!of_have_populated_dt()) {
269 r = omap_hwmod_get_resource_byname(oh, IORESOURCE_IRQ, NULL,
270 &irq_rsrc);
271 if (r)
272 return -ENXIO;
273 timer->irq = irq_rsrc.start;
Paul Walmsley6c0c27f2012-04-19 04:01:50 -0600274
Jon Hunter9725f442012-05-14 10:41:37 -0500275 r = omap_hwmod_get_resource_byname(oh, IORESOURCE_MEM, NULL,
276 &mem_rsrc);
277 if (r)
278 return -ENXIO;
279 timer->phys_base = mem_rsrc.start;
280 size = mem_rsrc.end - mem_rsrc.start;
Tony Lindgrenaa561882011-03-29 15:54:48 -0700281
Jon Hunter9725f442012-05-14 10:41:37 -0500282 /* Static mapping, never released */
283 timer->io_base = ioremap(timer->phys_base, size);
284 }
285
Tony Lindgrenaa561882011-03-29 15:54:48 -0700286 if (!timer->io_base)
287 return -ENXIO;
288
289 /* After the dmtimer is using hwmod these clocks won't be needed */
Tarun Kanti DebBarmaae6df412012-07-05 18:10:59 +0530290 timer->fclk = clk_get(NULL, omap_hwmod_get_main_clk(oh));
Tony Lindgrenaa561882011-03-29 15:54:48 -0700291 if (IS_ERR(timer->fclk))
292 return -ENODEV;
293
Tony Lindgrenaa561882011-03-29 15:54:48 -0700294 omap_hwmod_enable(oh);
295
Jon Hunter9725f442012-05-14 10:41:37 -0500296 /* FIXME: Need to remove hard-coded test on timer ID */
Tony Lindgrenaa561882011-03-29 15:54:48 -0700297 if (gptimer_id != 12) {
298 struct clk *src;
299
300 src = clk_get(NULL, fck_source);
301 if (IS_ERR(src)) {
302 res = -EINVAL;
303 } else {
304 res = __omap_dm_timer_set_source(timer->fclk, src);
305 if (IS_ERR_VALUE(res))
Jon Hunter9725f442012-05-14 10:41:37 -0500306 pr_warn("%s: %s cannot set source\n",
307 __func__, oh->name);
Tony Lindgrenaa561882011-03-29 15:54:48 -0700308 clk_put(src);
309 }
310 }
Tony Lindgrenee17f112011-09-16 15:44:20 -0700311 __omap_dm_timer_init_regs(timer);
312 __omap_dm_timer_reset(timer, 1, 1);
Tony Lindgrenaa561882011-03-29 15:54:48 -0700313 timer->posted = 1;
314
315 timer->rate = clk_get_rate(timer->fclk);
316
317 timer->reserved = 1;
Paul Walmsley38698be2011-02-23 00:14:08 -0700318
Tony Lindgrenaa561882011-03-29 15:54:48 -0700319 return res;
320}
Paul Walmsleyf2480762009-04-23 21:11:10 -0600321
Tony Lindgrenaa561882011-03-29 15:54:48 -0700322static void __init omap2_gp_clockevent_init(int gptimer_id,
Jon Hunter9725f442012-05-14 10:41:37 -0500323 const char *fck_source,
324 const char *property)
Tony Lindgrenaa561882011-03-29 15:54:48 -0700325{
326 int res;
Paul Walmsleyf2480762009-04-23 21:11:10 -0600327
Jon Hunter9725f442012-05-14 10:41:37 -0500328 res = omap_dm_timer_init_one(&clkev, gptimer_id, fck_source, property);
Tony Lindgrenaa561882011-03-29 15:54:48 -0700329 BUG_ON(res);
Paul Walmsleyf2480762009-04-23 21:11:10 -0600330
Paul Walmsleya032d332012-08-03 09:21:10 -0600331 omap2_gp_timer_irq.dev_id = &clkev;
Tony Lindgrenaa561882011-03-29 15:54:48 -0700332 setup_irq(clkev.irq, &omap2_gp_timer_irq);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800333
Tony Lindgrenee17f112011-09-16 15:44:20 -0700334 __omap_dm_timer_int_enable(&clkev, OMAP_TIMER_INT_OVERFLOW);
Tony Lindgrenaa561882011-03-29 15:54:48 -0700335
336 clockevent_gpt.mult = div_sc(clkev.rate, NSEC_PER_SEC,
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800337 clockevent_gpt.shift);
338 clockevent_gpt.max_delta_ns =
339 clockevent_delta2ns(0xffffffff, &clockevent_gpt);
340 clockevent_gpt.min_delta_ns =
Aaro Koskinendf88acb2009-01-29 08:57:17 -0800341 clockevent_delta2ns(3, &clockevent_gpt);
342 /* Timer internal resynch latency. */
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800343
Santosh Shilimkar11d6ec22012-03-17 15:00:16 +0530344 clockevent_gpt.cpumask = cpu_possible_mask;
345 clockevent_gpt.irq = omap_dm_timer_get_irq(&clkev);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800346 clockevents_register_device(&clockevent_gpt);
Tony Lindgrenaa561882011-03-29 15:54:48 -0700347
348 pr_info("OMAP clockevent source: GPTIMER%d at %lu Hz\n",
349 gptimer_id, clkev.rate);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800350}
351
Paul Walmsleyf2480762009-04-23 21:11:10 -0600352/* Clocksource code */
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700353static struct omap_dm_timer clksrc;
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700354static bool use_gptimer_clksrc;
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700355
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800356/*
357 * clocksource
358 */
Magnus Damm8e196082009-04-21 12:24:00 -0700359static cycle_t clocksource_read_cycles(struct clocksource *cs)
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800360{
Tony Lindgrenee17f112011-09-16 15:44:20 -0700361 return (cycle_t)__omap_dm_timer_read_counter(&clksrc, 1);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800362}
363
364static struct clocksource clocksource_gpt = {
Vaibhav Hiremathf36921b2012-05-09 10:07:05 -0700365 .name = "gp_timer",
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800366 .rating = 300,
367 .read = clocksource_read_cycles,
368 .mask = CLOCKSOURCE_MASK(32),
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800369 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
370};
371
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100372static u32 notrace dmtimer_read_sched_clock(void)
Paul Walmsleycbc94382011-02-22 19:59:49 -0700373{
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700374 if (clksrc.reserved)
Vaibhav Hiremathdbc39822012-01-23 12:18:14 +0530375 return __omap_dm_timer_read_counter(&clksrc, 1);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800376
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100377 return 0;
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700378}
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800379
Igor Grinberg45caae72012-08-28 01:26:14 +0300380#ifdef CONFIG_OMAP_32K_TIMER
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700381/* Setup free-running counter for clocksource */
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700382static int __init omap2_sync32k_clocksource_init(void)
383{
384 int ret;
Jon Hunter9883f7c2012-10-09 14:12:26 -0500385 struct device_node *np = NULL;
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700386 struct omap_hwmod *oh;
387 void __iomem *vbase;
388 const char *oh_name = "counter_32k";
389
390 /*
Jon Hunter9883f7c2012-10-09 14:12:26 -0500391 * If device-tree is present, then search the DT blob
392 * to see if the 32kHz counter is supported.
393 */
394 if (of_have_populated_dt()) {
395 np = omap_get_timer_dt(omap_counter_match, NULL);
396 if (!np)
397 return -ENODEV;
398
399 of_property_read_string_index(np, "ti,hwmods", 0, &oh_name);
400 if (!oh_name)
401 return -ENODEV;
402 }
403
404 /*
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700405 * First check hwmod data is available for sync32k counter
406 */
407 oh = omap_hwmod_lookup(oh_name);
408 if (!oh || oh->slaves_cnt == 0)
409 return -ENODEV;
410
411 omap_hwmod_setup_one(oh_name);
412
Jon Hunter9883f7c2012-10-09 14:12:26 -0500413 if (np) {
414 vbase = of_iomap(np, 0);
415 of_node_put(np);
416 } else {
417 vbase = omap_hwmod_get_mpu_rt_va(oh);
418 }
419
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700420 if (!vbase) {
421 pr_warn("%s: failed to get counter_32k resource\n", __func__);
422 return -ENXIO;
423 }
424
425 ret = omap_hwmod_enable(oh);
426 if (ret) {
427 pr_warn("%s: failed to enable counter_32k module (%d)\n",
428 __func__, ret);
429 return ret;
430 }
431
432 ret = omap_init_clocksource_32k(vbase);
433 if (ret) {
434 pr_warn("%s: failed to initialize counter_32k as a clocksource (%d)\n",
435 __func__, ret);
436 omap_hwmod_idle(oh);
437 }
438
439 return ret;
440}
Igor Grinberg45caae72012-08-28 01:26:14 +0300441#else
442static inline int omap2_sync32k_clocksource_init(void)
443{
444 return -ENODEV;
445}
446#endif
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700447
448static void __init omap2_gptimer_clocksource_init(int gptimer_id,
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700449 const char *fck_source)
450{
451 int res;
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800452
Jon Hunter9725f442012-05-14 10:41:37 -0500453 res = omap_dm_timer_init_one(&clksrc, gptimer_id, fck_source, NULL);
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700454 BUG_ON(res);
Paul Walmsleycbc94382011-02-22 19:59:49 -0700455
Tony Lindgrenee17f112011-09-16 15:44:20 -0700456 __omap_dm_timer_load_start(&clksrc,
Hemant Pedanekare9d0b972011-08-10 13:19:35 +0000457 OMAP_TIMER_CTRL_ST | OMAP_TIMER_CTRL_AR, 0, 1);
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100458 setup_sched_clock(dmtimer_read_sched_clock, 32, clksrc.rate);
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700459
460 if (clocksource_register_hz(&clocksource_gpt, clksrc.rate))
461 pr_err("Could not register clocksource %s\n",
462 clocksource_gpt.name);
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700463 else
464 pr_info("OMAP clocksource: GPTIMER%d at %lu Hz\n",
465 gptimer_id, clksrc.rate);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800466}
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700467
468static void __init omap2_clocksource_init(int gptimer_id,
469 const char *fck_source)
470{
471 /*
472 * First give preference to kernel parameter configuration
473 * by user (clocksource="gp_timer").
474 *
475 * In case of missing kernel parameter for clocksource,
476 * first check for availability for 32k-sync timer, in case
477 * of failure in finding 32k_counter module or registering
478 * it as clocksource, execution will fallback to gp-timer.
479 */
480 if (use_gptimer_clksrc == true)
481 omap2_gptimer_clocksource_init(gptimer_id, fck_source);
482 else if (omap2_sync32k_clocksource_init())
483 /* Fall back to gp-timer code */
484 omap2_gptimer_clocksource_init(gptimer_id, fck_source);
485}
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800486
Santosh Shilimkarfa6d79d2012-08-13 14:24:24 +0530487#ifdef CONFIG_SOC_HAS_REALTIME_COUNTER
488/*
489 * The realtime counter also called master counter, is a free-running
490 * counter, which is related to real time. It produces the count used
491 * by the CPU local timer peripherals in the MPU cluster. The timer counts
492 * at a rate of 6.144 MHz. Because the device operates on different clocks
493 * in different power modes, the master counter shifts operation between
494 * clocks, adjusting the increment per clock in hardware accordingly to
495 * maintain a constant count rate.
496 */
497static void __init realtime_counter_init(void)
498{
499 void __iomem *base;
500 static struct clk *sys_clk;
501 unsigned long rate;
502 unsigned int reg, num, den;
503
504 base = ioremap(REALTIME_COUNTER_BASE, SZ_32);
505 if (!base) {
506 pr_err("%s: ioremap failed\n", __func__);
507 return;
508 }
509 sys_clk = clk_get(NULL, "sys_clkin_ck");
Wei Yongjun533b2982012-10-08 15:01:41 -0700510 if (IS_ERR(sys_clk)) {
Santosh Shilimkarfa6d79d2012-08-13 14:24:24 +0530511 pr_err("%s: failed to get system clock handle\n", __func__);
512 iounmap(base);
513 return;
514 }
515
516 rate = clk_get_rate(sys_clk);
517 /* Numerator/denumerator values refer TRM Realtime Counter section */
518 switch (rate) {
519 case 1200000:
520 num = 64;
521 den = 125;
522 break;
523 case 1300000:
524 num = 768;
525 den = 1625;
526 break;
527 case 19200000:
528 num = 8;
529 den = 25;
530 break;
531 case 2600000:
532 num = 384;
533 den = 1625;
534 break;
535 case 2700000:
536 num = 256;
537 den = 1125;
538 break;
539 case 38400000:
540 default:
541 /* Program it for 38.4 MHz */
542 num = 4;
543 den = 25;
544 break;
545 }
546
547 /* Program numerator and denumerator registers */
548 reg = __raw_readl(base + INCREMENTER_NUMERATOR_OFFSET) &
549 NUMERATOR_DENUMERATOR_MASK;
550 reg |= num;
551 __raw_writel(reg, base + INCREMENTER_NUMERATOR_OFFSET);
552
553 reg = __raw_readl(base + INCREMENTER_NUMERATOR_OFFSET) &
554 NUMERATOR_DENUMERATOR_MASK;
555 reg |= den;
556 __raw_writel(reg, base + INCREMENTER_DENUMERATOR_RELOAD_OFFSET);
557
558 iounmap(base);
559}
560#else
561static inline void __init realtime_counter_init(void)
562{}
563#endif
564
Jon Hunter9725f442012-05-14 10:41:37 -0500565#define OMAP_SYS_TIMER_INIT(name, clkev_nr, clkev_src, clkev_prop, \
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700566 clksrc_nr, clksrc_src) \
Tony Lindgrene74984e2011-03-29 15:54:48 -0700567static void __init omap##name##_timer_init(void) \
568{ \
Jon Hunterad24bde2012-06-20 15:55:24 -0500569 omap_dmtimer_init(); \
Jon Hunter9725f442012-05-14 10:41:37 -0500570 omap2_gp_clockevent_init((clkev_nr), clkev_src, clkev_prop); \
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700571 omap2_clocksource_init((clksrc_nr), clksrc_src); \
Tony Lindgrene74984e2011-03-29 15:54:48 -0700572}
573
574#define OMAP_SYS_TIMER(name) \
575struct sys_timer omap##name##_timer = { \
576 .init = omap##name##_timer_init, \
577};
578
579#ifdef CONFIG_ARCH_OMAP2
Jon Hunter9725f442012-05-14 10:41:37 -0500580OMAP_SYS_TIMER_INIT(2, 1, OMAP2_CLKEV_SOURCE, "ti,timer-alwon",
581 2, OMAP2_MPU_SOURCE)
Tony Lindgrene74984e2011-03-29 15:54:48 -0700582OMAP_SYS_TIMER(2)
583#endif
584
585#ifdef CONFIG_ARCH_OMAP3
Jon Hunter9725f442012-05-14 10:41:37 -0500586OMAP_SYS_TIMER_INIT(3, 1, OMAP3_CLKEV_SOURCE, "ti,timer-alwon",
587 2, OMAP3_MPU_SOURCE)
Tony Lindgrene74984e2011-03-29 15:54:48 -0700588OMAP_SYS_TIMER(3)
Tony Lindgren3d05a3e2011-03-29 15:54:49 -0700589OMAP_SYS_TIMER_INIT(3_secure, OMAP3_SECURE_TIMER, OMAP3_CLKEV_SOURCE,
Jon Hunter9725f442012-05-14 10:41:37 -0500590 TIMER_PROP_SECURE, 2, OMAP3_MPU_SOURCE)
Tony Lindgrene74984e2011-03-29 15:54:48 -0700591OMAP_SYS_TIMER(3_secure)
592#endif
593
Afzal Mohammed08f30982012-05-11 00:38:49 +0530594#ifdef CONFIG_SOC_AM33XX
Jon Hunter9725f442012-05-14 10:41:37 -0500595OMAP_SYS_TIMER_INIT(3_am33xx, 1, OMAP4_MPU_SOURCE, "ti,timer-alwon",
596 2, OMAP4_MPU_SOURCE)
Afzal Mohammed08f30982012-05-11 00:38:49 +0530597OMAP_SYS_TIMER(3_am33xx)
598#endif
599
Tony Lindgrene74984e2011-03-29 15:54:48 -0700600#ifdef CONFIG_ARCH_OMAP4
Marc Zyngiera45c9832012-01-10 19:44:19 +0000601#ifdef CONFIG_LOCAL_TIMERS
602static DEFINE_TWD_LOCAL_TIMER(twd_local_timer,
Tony Lindgren3f216ef2012-10-16 11:19:16 -0700603 OMAP44XX_LOCAL_TWD_BASE, 29);
Marc Zyngiera45c9832012-01-10 19:44:19 +0000604#endif
605
Tony Lindgrene74984e2011-03-29 15:54:48 -0700606static void __init omap4_timer_init(void)
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800607{
Jon Hunter9725f442012-05-14 10:41:37 -0500608 omap2_gp_clockevent_init(1, OMAP4_CLKEV_SOURCE, "ti,timer-alwon");
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700609 omap2_clocksource_init(2, OMAP4_MPU_SOURCE);
Marc Zyngiera45c9832012-01-10 19:44:19 +0000610#ifdef CONFIG_LOCAL_TIMERS
611 /* Local timers are not supprted on OMAP4430 ES1.0 */
612 if (omap_rev() != OMAP4430_REV_ES1_0) {
613 int err;
614
Santosh Shilimkareed0de22012-07-04 18:32:32 +0530615 if (of_have_populated_dt()) {
616 twd_local_timer_of_register();
617 return;
618 }
619
Marc Zyngiera45c9832012-01-10 19:44:19 +0000620 err = twd_local_timer_register(&twd_local_timer);
621 if (err)
622 pr_err("twd_local_timer_register failed %d\n", err);
623 }
624#endif
Tony Lindgren1dbae812005-11-10 14:26:51 +0000625}
Tony Lindgrene74984e2011-03-29 15:54:48 -0700626OMAP_SYS_TIMER(4)
627#endif
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530628
R Sricharan37b32802012-05-02 13:07:12 +0530629#ifdef CONFIG_SOC_OMAP5
Santosh Shilimkarfa6d79d2012-08-13 14:24:24 +0530630static void __init omap5_timer_init(void)
631{
Santosh Shilimkar3c7c5da2012-08-13 14:39:03 +0530632 int err;
633
Jon Hunter9725f442012-05-14 10:41:37 -0500634 omap2_gp_clockevent_init(1, OMAP4_CLKEV_SOURCE, "ti,timer-alwon");
Santosh Shilimkarfa6d79d2012-08-13 14:24:24 +0530635 omap2_clocksource_init(2, OMAP4_MPU_SOURCE);
636 realtime_counter_init();
Santosh Shilimkar3c7c5da2012-08-13 14:39:03 +0530637
638 err = arch_timer_of_register();
639 if (err)
640 pr_err("%s: arch_timer_register failed %d\n", __func__, err);
Santosh Shilimkarfa6d79d2012-08-13 14:24:24 +0530641}
R Sricharan37b32802012-05-02 13:07:12 +0530642OMAP_SYS_TIMER(5)
643#endif
644
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530645/**
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530646 * omap_timer_init - build and register timer device with an
647 * associated timer hwmod
648 * @oh: timer hwmod pointer to be used to build timer device
649 * @user: parameter that can be passed from calling hwmod API
650 *
651 * Called by omap_hwmod_for_each_by_class to register each of the timer
652 * devices present in the system. The number of timer devices is known
653 * by parsing through the hwmod database for a given class name. At the
654 * end of function call memory is allocated for timer device and it is
655 * registered to the framework ready to be proved by the driver.
656 */
657static int __init omap_timer_init(struct omap_hwmod *oh, void *unused)
658{
659 int id;
660 int ret = 0;
661 char *name = "omap_timer";
662 struct dmtimer_platform_data *pdata;
Tony Lindgrenc541c152011-10-04 09:47:06 -0700663 struct platform_device *pdev;
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530664 struct omap_timer_capability_dev_attr *timer_dev_attr;
665
666 pr_debug("%s: %s\n", __func__, oh->name);
667
668 /* on secure device, do not register secure timer */
669 timer_dev_attr = oh->dev_attr;
670 if (omap_type() != OMAP2_DEVICE_TYPE_GP && timer_dev_attr)
671 if (timer_dev_attr->timer_capability == OMAP_TIMER_SECURE)
672 return ret;
673
674 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
675 if (!pdata) {
676 pr_err("%s: No memory for [%s]\n", __func__, oh->name);
677 return -ENOMEM;
678 }
679
680 /*
681 * Extract the IDs from name field in hwmod database
682 * and use the same for constructing ids' for the
683 * timer devices. In a way, we are avoiding usage of
684 * static variable witin the function to do the same.
685 * CAUTION: We have to be careful and make sure the
686 * name in hwmod database does not change in which case
687 * we might either make corresponding change here or
688 * switch back static variable mechanism.
689 */
690 sscanf(oh->name, "timer%2d", &id);
691
Jon Hunterd1c16912012-06-05 12:34:52 -0500692 if (timer_dev_attr)
693 pdata->timer_capability = timer_dev_attr->timer_capability;
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530694
Tony Lindgrenc541c152011-10-04 09:47:06 -0700695 pdev = omap_device_build(name, id, oh, pdata, sizeof(*pdata),
Benoit Coussonc16ae1e2011-10-04 23:20:41 +0200696 NULL, 0, 0);
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530697
Tony Lindgrenc541c152011-10-04 09:47:06 -0700698 if (IS_ERR(pdev)) {
Tarun Kanti DebBarmac345c8b2011-09-20 17:00:18 +0530699 pr_err("%s: Can't build omap_device for %s: %s.\n",
700 __func__, name, oh->name);
701 ret = -EINVAL;
702 }
703
704 kfree(pdata);
705
706 return ret;
707}
Tarun Kanti DebBarma3392cdd2011-09-20 17:00:20 +0530708
709/**
710 * omap2_dm_timer_init - top level regular device initialization
711 *
712 * Uses dedicated hwmod api to parse through hwmod database for
713 * given class name and then build and register the timer device.
714 */
715static int __init omap2_dm_timer_init(void)
716{
717 int ret;
718
Jon Hunter9725f442012-05-14 10:41:37 -0500719 /* If dtb is there, the devices will be created dynamically */
720 if (of_have_populated_dt())
721 return -ENODEV;
722
Tarun Kanti DebBarma3392cdd2011-09-20 17:00:20 +0530723 ret = omap_hwmod_for_each_by_class("timer", omap_timer_init, NULL);
724 if (unlikely(ret)) {
725 pr_err("%s: device registration failed.\n", __func__);
726 return -EINVAL;
727 }
728
729 return 0;
730}
731arch_initcall(omap2_dm_timer_init);
Vaibhav Hiremath1fe97c82012-05-09 10:07:05 -0700732
733/**
734 * omap2_override_clocksource - clocksource override with user configuration
735 *
736 * Allows user to override default clocksource, using kernel parameter
737 * clocksource="gp_timer" (For all OMAP2PLUS architectures)
738 *
739 * Note that, here we are using same standard kernel parameter "clocksource=",
740 * and not introducing any OMAP specific interface.
741 */
742static int __init omap2_override_clocksource(char *str)
743{
744 if (!str)
745 return 0;
746 /*
747 * For OMAP architecture, we only have two options
748 * - sync_32k (default)
749 * - gp_timer (sys_clk based)
750 */
751 if (!strcmp(str, "gp_timer"))
752 use_gptimer_clksrc = true;
753
754 return 0;
755}
756early_param("clocksource", omap2_override_clocksource);