blob: cd04deaa88c531fd54a0a7d5d457e7116c52ec13 [file] [log] [blame]
Tony Lindgren1dbae812005-11-10 14:26:51 +00001/*
2 * linux/arch/arm/mach-omap2/timer-gp.c
3 *
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>
Russell Kingf8ce2542006-01-07 16:15:52 +000038
Tony Lindgren1dbae812005-11-10 14:26:51 +000039#include <asm/mach/time.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070040#include <plat/dmtimer.h>
Santosh Shilimkar39e1d4c2009-04-28 20:52:00 +053041#include <asm/localtimer.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000042
Paul Walmsleyf2480762009-04-23 21:11:10 -060043/* MAX_GPTIMER_ID: number of GPTIMERs on the chip */
44#define MAX_GPTIMER_ID 12
45
Timo Teras77900a22006-06-26 16:16:12 -070046static struct omap_dm_timer *gptimer;
Kevin Hilman5a3a3882007-11-12 23:24:02 -080047static struct clock_event_device clockevent_gpt;
Paul Walmsleyf2480762009-04-23 21:11:10 -060048static u8 __initdata gptimer_id = 1;
49static u8 __initdata inited;
Kevin Hilmand7814e42009-10-06 14:30:23 -070050struct omap_dm_timer *gptimer_wakeup;
Tony Lindgren1dbae812005-11-10 14:26:51 +000051
Linus Torvalds0cd61b62006-10-06 10:53:39 -070052static irqreturn_t omap2_gp_timer_interrupt(int irq, void *dev_id)
Tony Lindgren1dbae812005-11-10 14:26:51 +000053{
Kevin Hilman5a3a3882007-11-12 23:24:02 -080054 struct omap_dm_timer *gpt = (struct omap_dm_timer *)dev_id;
55 struct clock_event_device *evt = &clockevent_gpt;
Tony Lindgren1dbae812005-11-10 14:26:51 +000056
Kevin Hilman5a3a3882007-11-12 23:24:02 -080057 omap_dm_timer_write_status(gpt, OMAP_TIMER_INT_OVERFLOW);
58
59 evt->event_handler(evt);
Tony Lindgren1dbae812005-11-10 14:26:51 +000060 return IRQ_HANDLED;
61}
62
63static struct irqaction omap2_gp_timer_irq = {
64 .name = "gp timer",
Bernhard Walleb30faba2007-05-08 00:35:39 -070065 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Tony Lindgren1dbae812005-11-10 14:26:51 +000066 .handler = omap2_gp_timer_interrupt,
67};
68
Kevin Hilman5a3a3882007-11-12 23:24:02 -080069static int omap2_gp_timer_set_next_event(unsigned long cycles,
70 struct clock_event_device *evt)
Tony Lindgren1dbae812005-11-10 14:26:51 +000071{
Richard Woodruff3fddd092008-07-03 12:24:30 +030072 omap_dm_timer_set_load_start(gptimer, 0, 0xffffffff - cycles);
Tony Lindgren1dbae812005-11-10 14:26:51 +000073
Kevin Hilman5a3a3882007-11-12 23:24:02 -080074 return 0;
75}
76
77static void omap2_gp_timer_set_mode(enum clock_event_mode mode,
78 struct clock_event_device *evt)
79{
80 u32 period;
81
82 omap_dm_timer_stop(gptimer);
83
84 switch (mode) {
85 case CLOCK_EVT_MODE_PERIODIC:
86 period = clk_get_rate(omap_dm_timer_get_fclk(gptimer)) / HZ;
87 period -= 1;
Santosh Shilimkar44169072009-05-28 14:16:04 -070088 if (cpu_is_omap44xx())
89 period = 0xff; /* FIXME: */
Richard Woodruff3fddd092008-07-03 12:24:30 +030090 omap_dm_timer_set_load_start(gptimer, 1, 0xffffffff - period);
Kevin Hilman5a3a3882007-11-12 23:24:02 -080091 break;
92 case CLOCK_EVT_MODE_ONESHOT:
93 break;
94 case CLOCK_EVT_MODE_UNUSED:
95 case CLOCK_EVT_MODE_SHUTDOWN:
96 case CLOCK_EVT_MODE_RESUME:
97 break;
98 }
99}
100
101static struct clock_event_device clockevent_gpt = {
102 .name = "gp timer",
103 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
104 .shift = 32,
105 .set_next_event = omap2_gp_timer_set_next_event,
106 .set_mode = omap2_gp_timer_set_mode,
107};
108
Paul Walmsleyf2480762009-04-23 21:11:10 -0600109/**
110 * omap2_gp_clockevent_set_gptimer - set which GPTIMER is used for clockevents
111 * @id: GPTIMER to use (1..MAX_GPTIMER_ID)
112 *
113 * Define the GPTIMER that the system should use for the tick timer.
114 * Meant to be called from board-*.c files in the event that GPTIMER1, the
115 * default, is unsuitable. Returns -EINVAL on error or 0 on success.
116 */
117int __init omap2_gp_clockevent_set_gptimer(u8 id)
118{
119 if (id < 1 || id > MAX_GPTIMER_ID)
120 return -EINVAL;
121
122 BUG_ON(inited);
123
124 gptimer_id = id;
125
126 return 0;
127}
128
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800129static void __init omap2_gp_clockevent_init(void)
130{
131 u32 tick_rate;
Paul Walmsleyf2480762009-04-23 21:11:10 -0600132 int src;
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800133
Paul Walmsleyf2480762009-04-23 21:11:10 -0600134 inited = 1;
135
136 gptimer = omap_dm_timer_request_specific(gptimer_id);
Timo Teras77900a22006-06-26 16:16:12 -0700137 BUG_ON(gptimer == NULL);
Kevin Hilmand7814e42009-10-06 14:30:23 -0700138 gptimer_wakeup = gptimer;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000139
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800140#if defined(CONFIG_OMAP_32K_TIMER)
Paul Walmsleyf2480762009-04-23 21:11:10 -0600141 src = OMAP_TIMER_SRC_32_KHZ;
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800142#else
Paul Walmsleyf2480762009-04-23 21:11:10 -0600143 src = OMAP_TIMER_SRC_SYS_CLK;
144 WARN(gptimer_id == 12, "WARNING: GPTIMER12 can only use the "
145 "secure 32KiHz clock source\n");
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800146#endif
Paul Walmsleyf2480762009-04-23 21:11:10 -0600147
148 if (gptimer_id != 12)
149 WARN(IS_ERR_VALUE(omap_dm_timer_set_source(gptimer, src)),
150 "timer-gp: omap_dm_timer_set_source() failed\n");
151
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800152 tick_rate = clk_get_rate(omap_dm_timer_get_fclk(gptimer));
Santosh Shilimkar44169072009-05-28 14:16:04 -0700153 if (cpu_is_omap44xx())
154 /* Assuming 32kHz clk is driving GPT1 */
155 tick_rate = 32768; /* FIXME: */
Tony Lindgren1dbae812005-11-10 14:26:51 +0000156
Paul Walmsleyf2480762009-04-23 21:11:10 -0600157 pr_info("OMAP clockevent source: GPTIMER%d at %u Hz\n",
158 gptimer_id, tick_rate);
159
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800160 omap2_gp_timer_irq.dev_id = (void *)gptimer;
Timo Teras77900a22006-06-26 16:16:12 -0700161 setup_irq(omap_dm_timer_get_irq(gptimer), &omap2_gp_timer_irq);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800162 omap_dm_timer_set_int_enable(gptimer, OMAP_TIMER_INT_OVERFLOW);
163
164 clockevent_gpt.mult = div_sc(tick_rate, NSEC_PER_SEC,
165 clockevent_gpt.shift);
166 clockevent_gpt.max_delta_ns =
167 clockevent_delta2ns(0xffffffff, &clockevent_gpt);
168 clockevent_gpt.min_delta_ns =
Aaro Koskinendf88acb2009-01-29 08:57:17 -0800169 clockevent_delta2ns(3, &clockevent_gpt);
170 /* Timer internal resynch latency. */
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800171
Rusty Russell320ab2b2008-12-13 21:20:26 +1030172 clockevent_gpt.cpumask = cpumask_of(0);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800173 clockevents_register_device(&clockevent_gpt);
174}
175
Paul Walmsleyf2480762009-04-23 21:11:10 -0600176/* Clocksource code */
177
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800178#ifdef CONFIG_OMAP_32K_TIMER
179/*
180 * When 32k-timer is enabled, don't use GPTimer for clocksource
181 * instead, just leave default clocksource which uses the 32k
182 * sync counter. See clocksource setup in see plat-omap/common.c.
183 */
184
185static inline void __init omap2_gp_clocksource_init(void) {}
186#else
187/*
188 * clocksource
189 */
190static struct omap_dm_timer *gpt_clocksource;
Magnus Damm8e196082009-04-21 12:24:00 -0700191static cycle_t clocksource_read_cycles(struct clocksource *cs)
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800192{
193 return (cycle_t)omap_dm_timer_read_counter(gpt_clocksource);
194}
195
196static struct clocksource clocksource_gpt = {
197 .name = "gp timer",
198 .rating = 300,
199 .read = clocksource_read_cycles,
200 .mask = CLOCKSOURCE_MASK(32),
201 .shift = 24,
202 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
203};
204
205/* Setup free-running counter for clocksource */
206static void __init omap2_gp_clocksource_init(void)
207{
208 static struct omap_dm_timer *gpt;
209 u32 tick_rate, tick_period;
210 static char err1[] __initdata = KERN_ERR
211 "%s: failed to request dm-timer\n";
212 static char err2[] __initdata = KERN_ERR
213 "%s: can't register clocksource!\n";
214
215 gpt = omap_dm_timer_request();
216 if (!gpt)
217 printk(err1, clocksource_gpt.name);
218 gpt_clocksource = gpt;
219
220 omap_dm_timer_set_source(gpt, OMAP_TIMER_SRC_SYS_CLK);
221 tick_rate = clk_get_rate(omap_dm_timer_get_fclk(gpt));
222 tick_period = (tick_rate / HZ) - 1;
223
Richard Woodruff3fddd092008-07-03 12:24:30 +0300224 omap_dm_timer_set_load_start(gpt, 1, 0);
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800225
226 clocksource_gpt.mult =
227 clocksource_khz2mult(tick_rate/1000, clocksource_gpt.shift);
228 if (clocksource_register(&clocksource_gpt))
229 printk(err2, clocksource_gpt.name);
230}
231#endif
232
233static void __init omap2_gp_timer_init(void)
234{
Santosh Shilimkar39e1d4c2009-04-28 20:52:00 +0530235#ifdef CONFIG_LOCAL_TIMERS
Tony Lindgrene4e7a132009-10-19 15:25:26 -0700236 twd_base = ioremap(OMAP44XX_LOCAL_TWD_BASE, SZ_256);
237 BUG_ON(!twd_base);
Santosh Shilimkar39e1d4c2009-04-28 20:52:00 +0530238#endif
Kevin Hilman5a3a3882007-11-12 23:24:02 -0800239 omap_dm_timer_init();
240
241 omap2_gp_clockevent_init();
242 omap2_gp_clocksource_init();
Tony Lindgren1dbae812005-11-10 14:26:51 +0000243}
244
245struct sys_timer omap_timer = {
246 .init = omap2_gp_timer_init,
247};