1 /* linux/arch/arm/mach-msm/timer.c
3 * Copyright (C) 2007 Google, Inc.
5 * This software is licensed under the terms of the GNU General Public
6 * License version 2, as published by the Free Software Foundation, and
7 * may be copied, distributed, and modified under those terms.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
16 #include <linux/init.h>
17 #include <linux/time.h>
18 #include <linux/interrupt.h>
19 #include <linux/irq.h>
20 #include <linux/clk.h>
21 #include <linux/clockchips.h>
22 #include <linux/delay.h>
25 #include <asm/mach/time.h>
26 #include <asm/hardware/gic.h>
28 #include <mach/msm_iomap.h>
31 #define TIMER_MATCH_VAL 0x0000
32 #define TIMER_COUNT_VAL 0x0004
33 #define TIMER_ENABLE 0x0008
34 #define TIMER_ENABLE_CLR_ON_MATCH_EN 2
35 #define TIMER_ENABLE_EN 1
36 #define TIMER_CLEAR 0x000C
37 #define DGT_CLK_CTL 0x0034
39 DGT_CLK_CTL_DIV_1
= 0,
40 DGT_CLK_CTL_DIV_2
= 1,
41 DGT_CLK_CTL_DIV_3
= 2,
42 DGT_CLK_CTL_DIV_4
= 3,
44 #define CSR_PROTECTION 0x0020
45 #define CSR_PROTECTION_EN 1
54 #define MSM_GLOBAL_TIMER MSM_CLOCK_DGT
56 /* TODO: Remove these ifdefs */
57 #if defined(CONFIG_ARCH_QSD8X50)
58 #define DGT_HZ (19200000 / 4) /* 19.2 MHz / 4 by default */
59 #define MSM_DGT_SHIFT (0)
60 #elif defined(CONFIG_ARCH_MSM7X30)
61 #define DGT_HZ (24576000 / 4) /* 24.576 MHz (LPXO) / 4 by default */
62 #define MSM_DGT_SHIFT (0)
63 #elif defined(CONFIG_ARCH_MSM8X60) || defined(CONFIG_ARCH_MSM8960)
64 #define DGT_HZ (27000000 / 4) /* 27 MHz (PXO) / 4 by default */
65 #define MSM_DGT_SHIFT (0)
67 #define DGT_HZ 19200000 /* 19.2 MHz or 600 KHz after shift */
68 #define MSM_DGT_SHIFT (5)
72 struct clock_event_device clockevent
;
73 struct clocksource clocksource
;
75 void __iomem
*regbase
;
78 void __iomem
*global_counter
;
79 void __iomem
*local_counter
;
81 struct clock_event_device
*evt
;
82 struct clock_event_device __percpu
**percpu_evt
;
93 static struct msm_clock msm_clocks
[];
95 static irqreturn_t
msm_timer_interrupt(int irq
, void *dev_id
)
97 struct clock_event_device
*evt
= *(struct clock_event_device
**)dev_id
;
98 if (evt
->event_handler
== NULL
)
100 evt
->event_handler(evt
);
104 static cycle_t
msm_read_timer_count(struct clocksource
*cs
)
106 struct msm_clock
*clk
= container_of(cs
, struct msm_clock
, clocksource
);
109 * Shift timer count down by a constant due to unreliable lower bits
112 return readl(clk
->global_counter
) >> clk
->shift
;
115 static struct msm_clock
*clockevent_to_clock(struct clock_event_device
*evt
)
119 for (i
= 0; i
< NR_TIMERS
; i
++)
120 if (evt
== &(msm_clocks
[i
].clockevent
))
121 return &msm_clocks
[i
];
122 return &msm_clocks
[MSM_GLOBAL_TIMER
];
124 return container_of(evt
, struct msm_clock
, clockevent
);
128 static int msm_timer_set_next_event(unsigned long cycles
,
129 struct clock_event_device
*evt
)
131 struct msm_clock
*clock
= clockevent_to_clock(evt
);
132 uint32_t now
= readl(clock
->local_counter
);
133 uint32_t alarm
= now
+ (cycles
<< clock
->shift
);
135 writel(alarm
, clock
->regbase
+ TIMER_MATCH_VAL
);
139 static void msm_timer_set_mode(enum clock_event_mode mode
,
140 struct clock_event_device
*evt
)
142 struct msm_clock
*clock
= clockevent_to_clock(evt
);
145 case CLOCK_EVT_MODE_RESUME
:
146 case CLOCK_EVT_MODE_PERIODIC
:
148 case CLOCK_EVT_MODE_ONESHOT
:
149 writel(TIMER_ENABLE_EN
, clock
->regbase
+ TIMER_ENABLE
);
151 case CLOCK_EVT_MODE_UNUSED
:
152 case CLOCK_EVT_MODE_SHUTDOWN
:
153 writel(0, clock
->regbase
+ TIMER_ENABLE
);
158 static struct msm_clock msm_clocks
[] = {
162 .features
= CLOCK_EVT_FEAT_ONESHOT
,
165 .set_next_event
= msm_timer_set_next_event
,
166 .set_mode
= msm_timer_set_mode
,
171 .read
= msm_read_timer_count
,
172 .mask
= CLOCKSOURCE_MASK(32),
173 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
175 .irq
= INT_GP_TIMER_EXP
,
181 .features
= CLOCK_EVT_FEAT_ONESHOT
,
182 .shift
= 32 + MSM_DGT_SHIFT
,
184 .set_next_event
= msm_timer_set_next_event
,
185 .set_mode
= msm_timer_set_mode
,
190 .read
= msm_read_timer_count
,
191 .mask
= CLOCKSOURCE_MASK((32 - MSM_DGT_SHIFT
)),
192 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
194 .irq
= INT_DEBUG_TIMER_EXP
,
195 .freq
= DGT_HZ
>> MSM_DGT_SHIFT
,
196 .shift
= MSM_DGT_SHIFT
,
200 static void __init
msm_timer_init(void)
204 int global_offset
= 0;
206 if (cpu_is_msm7x01()) {
207 msm_clocks
[MSM_CLOCK_GPT
].regbase
= MSM_CSR_BASE
;
208 msm_clocks
[MSM_CLOCK_DGT
].regbase
= MSM_CSR_BASE
+ 0x10;
209 } else if (cpu_is_msm7x30()) {
210 msm_clocks
[MSM_CLOCK_GPT
].regbase
= MSM_CSR_BASE
+ 0x04;
211 msm_clocks
[MSM_CLOCK_DGT
].regbase
= MSM_CSR_BASE
+ 0x24;
212 } else if (cpu_is_qsd8x50()) {
213 msm_clocks
[MSM_CLOCK_GPT
].regbase
= MSM_CSR_BASE
;
214 msm_clocks
[MSM_CLOCK_DGT
].regbase
= MSM_CSR_BASE
+ 0x10;
215 } else if (cpu_is_msm8x60() || cpu_is_msm8960()) {
216 msm_clocks
[MSM_CLOCK_GPT
].regbase
= MSM_TMR_BASE
+ 0x04;
217 msm_clocks
[MSM_CLOCK_DGT
].regbase
= MSM_TMR_BASE
+ 0x24;
219 /* Use CPU0's timer as the global timer. */
220 global_offset
= MSM_TMR0_BASE
- MSM_TMR_BASE
;
224 #ifdef CONFIG_ARCH_MSM_SCORPIONMP
225 writel(DGT_CLK_CTL_DIV_4
, MSM_TMR_BASE
+ DGT_CLK_CTL
);
228 for (i
= 0; i
< ARRAY_SIZE(msm_clocks
); i
++) {
229 struct msm_clock
*clock
= &msm_clocks
[i
];
230 struct clock_event_device
*ce
= &clock
->clockevent
;
231 struct clocksource
*cs
= &clock
->clocksource
;
233 clock
->local_counter
= clock
->regbase
+ TIMER_COUNT_VAL
;
234 clock
->global_counter
= clock
->local_counter
+ global_offset
;
236 writel(0, clock
->regbase
+ TIMER_ENABLE
);
237 writel(0, clock
->regbase
+ TIMER_CLEAR
);
238 writel(~0, clock
->regbase
+ TIMER_MATCH_VAL
);
240 ce
->mult
= div_sc(clock
->freq
, NSEC_PER_SEC
, ce
->shift
);
241 /* allow at least 10 seconds to notice that the timer wrapped */
243 clockevent_delta2ns(0xf0000000 >> clock
->shift
, ce
);
244 /* 4 gets rounded down to 3 */
245 ce
->min_delta_ns
= clockevent_delta2ns(4, ce
);
246 ce
->cpumask
= cpumask_of(0);
248 res
= clocksource_register_hz(cs
, clock
->freq
);
250 printk(KERN_ERR
"msm_timer_init: clocksource_register "
251 "failed for %s\n", cs
->name
);
253 ce
->irq
= clock
->irq
;
254 if (cpu_is_msm8x60() || cpu_is_msm8960()) {
255 clock
->percpu_evt
= alloc_percpu(struct clock_event_device
*);
256 if (!clock
->percpu_evt
) {
257 pr_err("msm_timer_init: memory allocation "
258 "failed for %s\n", ce
->name
);
262 *__this_cpu_ptr(clock
->percpu_evt
) = ce
;
263 res
= request_percpu_irq(ce
->irq
, msm_timer_interrupt
,
264 ce
->name
, clock
->percpu_evt
);
266 enable_percpu_irq(ce
->irq
, 0);
269 res
= request_irq(ce
->irq
, msm_timer_interrupt
,
270 IRQF_TIMER
| IRQF_NOBALANCING
| IRQF_TRIGGER_RISING
,
271 ce
->name
, &clock
->evt
);
275 pr_err("msm_timer_init: request_irq failed for %s\n",
278 clockevents_register_device(ce
);
283 int __cpuinit
local_timer_setup(struct clock_event_device
*evt
)
285 static bool local_timer_inited
;
286 struct msm_clock
*clock
= &msm_clocks
[MSM_GLOBAL_TIMER
];
288 /* Use existing clock_event for cpu 0 */
289 if (!smp_processor_id())
292 writel(DGT_CLK_CTL_DIV_4
, MSM_TMR_BASE
+ DGT_CLK_CTL
);
294 if (!local_timer_inited
) {
295 writel(0, clock
->regbase
+ TIMER_ENABLE
);
296 writel(0, clock
->regbase
+ TIMER_CLEAR
);
297 writel(~0, clock
->regbase
+ TIMER_MATCH_VAL
);
298 local_timer_inited
= true;
300 evt
->irq
= clock
->irq
;
301 evt
->name
= "local_timer";
302 evt
->features
= CLOCK_EVT_FEAT_ONESHOT
;
303 evt
->rating
= clock
->clockevent
.rating
;
304 evt
->set_mode
= msm_timer_set_mode
;
305 evt
->set_next_event
= msm_timer_set_next_event
;
306 evt
->shift
= clock
->clockevent
.shift
;
307 evt
->mult
= div_sc(clock
->freq
, NSEC_PER_SEC
, evt
->shift
);
309 clockevent_delta2ns(0xf0000000 >> clock
->shift
, evt
);
310 evt
->min_delta_ns
= clockevent_delta2ns(4, evt
);
312 *__this_cpu_ptr(clock
->percpu_evt
) = evt
;
313 enable_percpu_irq(evt
->irq
, 0);
315 clockevents_register_device(evt
);
319 void local_timer_stop(struct clock_event_device
*evt
)
321 evt
->set_mode(CLOCK_EVT_MODE_UNUSED
, evt
);
322 disable_percpu_irq(evt
->irq
);
327 struct sys_timer msm_timer
= {
328 .init
= msm_timer_init