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
;
89 static struct msm_clock msm_clocks
[];
90 static struct clock_event_device
*local_clock_event
;
92 static irqreturn_t
msm_timer_interrupt(int irq
, void *dev_id
)
94 struct clock_event_device
*evt
= dev_id
;
95 if (smp_processor_id() != 0)
96 evt
= local_clock_event
;
97 if (evt
->event_handler
== NULL
)
99 evt
->event_handler(evt
);
103 static cycle_t
msm_read_timer_count(struct clocksource
*cs
)
105 struct msm_clock
*clk
= container_of(cs
, struct msm_clock
, clocksource
);
108 * Shift timer count down by a constant due to unreliable lower bits
111 return readl(clk
->global_counter
) >> clk
->shift
;
114 static struct msm_clock
*clockevent_to_clock(struct clock_event_device
*evt
)
118 for (i
= 0; i
< NR_TIMERS
; i
++)
119 if (evt
== &(msm_clocks
[i
].clockevent
))
120 return &msm_clocks
[i
];
121 return &msm_clocks
[MSM_GLOBAL_TIMER
];
123 return container_of(evt
, struct msm_clock
, clockevent
);
127 static int msm_timer_set_next_event(unsigned long cycles
,
128 struct clock_event_device
*evt
)
130 struct msm_clock
*clock
= clockevent_to_clock(evt
);
131 uint32_t now
= readl(clock
->local_counter
);
132 uint32_t alarm
= now
+ (cycles
<< clock
->shift
);
134 writel(alarm
, clock
->regbase
+ TIMER_MATCH_VAL
);
138 static void msm_timer_set_mode(enum clock_event_mode mode
,
139 struct clock_event_device
*evt
)
141 struct msm_clock
*clock
= clockevent_to_clock(evt
);
144 case CLOCK_EVT_MODE_RESUME
:
145 case CLOCK_EVT_MODE_PERIODIC
:
147 case CLOCK_EVT_MODE_ONESHOT
:
148 writel(TIMER_ENABLE_EN
, clock
->regbase
+ TIMER_ENABLE
);
150 case CLOCK_EVT_MODE_UNUSED
:
151 case CLOCK_EVT_MODE_SHUTDOWN
:
152 writel(0, clock
->regbase
+ TIMER_ENABLE
);
157 static struct msm_clock msm_clocks
[] = {
161 .features
= CLOCK_EVT_FEAT_ONESHOT
,
164 .set_next_event
= msm_timer_set_next_event
,
165 .set_mode
= msm_timer_set_mode
,
170 .read
= msm_read_timer_count
,
171 .mask
= CLOCKSOURCE_MASK(32),
172 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
176 .flags
= IRQF_DISABLED
| IRQF_TIMER
| IRQF_TRIGGER_RISING
,
177 .handler
= msm_timer_interrupt
,
178 .dev_id
= &msm_clocks
[0].clockevent
,
179 .irq
= INT_GP_TIMER_EXP
186 .features
= CLOCK_EVT_FEAT_ONESHOT
,
187 .shift
= 32 + MSM_DGT_SHIFT
,
189 .set_next_event
= msm_timer_set_next_event
,
190 .set_mode
= msm_timer_set_mode
,
195 .read
= msm_read_timer_count
,
196 .mask
= CLOCKSOURCE_MASK((32 - MSM_DGT_SHIFT
)),
197 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
201 .flags
= IRQF_DISABLED
| IRQF_TIMER
| IRQF_TRIGGER_RISING
,
202 .handler
= msm_timer_interrupt
,
203 .dev_id
= &msm_clocks
[1].clockevent
,
204 .irq
= INT_DEBUG_TIMER_EXP
206 .freq
= DGT_HZ
>> MSM_DGT_SHIFT
,
207 .shift
= MSM_DGT_SHIFT
,
211 static void __init
msm_timer_init(void)
215 int global_offset
= 0;
217 if (cpu_is_msm7x01()) {
218 msm_clocks
[MSM_CLOCK_GPT
].regbase
= MSM_CSR_BASE
;
219 msm_clocks
[MSM_CLOCK_DGT
].regbase
= MSM_CSR_BASE
+ 0x10;
220 } else if (cpu_is_msm7x30()) {
221 msm_clocks
[MSM_CLOCK_GPT
].regbase
= MSM_CSR_BASE
+ 0x04;
222 msm_clocks
[MSM_CLOCK_DGT
].regbase
= MSM_CSR_BASE
+ 0x24;
223 } else if (cpu_is_qsd8x50()) {
224 msm_clocks
[MSM_CLOCK_GPT
].regbase
= MSM_CSR_BASE
;
225 msm_clocks
[MSM_CLOCK_DGT
].regbase
= MSM_CSR_BASE
+ 0x10;
226 } else if (cpu_is_msm8x60() || cpu_is_msm8960()) {
227 msm_clocks
[MSM_CLOCK_GPT
].regbase
= MSM_TMR_BASE
+ 0x04;
228 msm_clocks
[MSM_CLOCK_DGT
].regbase
= MSM_TMR_BASE
+ 0x24;
230 /* Use CPU0's timer as the global timer. */
231 global_offset
= MSM_TMR0_BASE
- MSM_TMR_BASE
;
235 #ifdef CONFIG_ARCH_MSM_SCORPIONMP
236 writel(DGT_CLK_CTL_DIV_4
, MSM_TMR_BASE
+ DGT_CLK_CTL
);
239 for (i
= 0; i
< ARRAY_SIZE(msm_clocks
); i
++) {
240 struct msm_clock
*clock
= &msm_clocks
[i
];
241 struct clock_event_device
*ce
= &clock
->clockevent
;
242 struct clocksource
*cs
= &clock
->clocksource
;
244 clock
->local_counter
= clock
->regbase
+ TIMER_COUNT_VAL
;
245 clock
->global_counter
= clock
->local_counter
+ global_offset
;
247 writel(0, clock
->regbase
+ TIMER_ENABLE
);
248 writel(0, clock
->regbase
+ TIMER_CLEAR
);
249 writel(~0, clock
->regbase
+ TIMER_MATCH_VAL
);
251 ce
->mult
= div_sc(clock
->freq
, NSEC_PER_SEC
, ce
->shift
);
252 /* allow at least 10 seconds to notice that the timer wrapped */
254 clockevent_delta2ns(0xf0000000 >> clock
->shift
, ce
);
255 /* 4 gets rounded down to 3 */
256 ce
->min_delta_ns
= clockevent_delta2ns(4, ce
);
257 ce
->cpumask
= cpumask_of(0);
259 res
= clocksource_register_hz(cs
, clock
->freq
);
261 printk(KERN_ERR
"msm_timer_init: clocksource_register "
262 "failed for %s\n", cs
->name
);
264 res
= setup_irq(clock
->irq
.irq
, &clock
->irq
);
266 printk(KERN_ERR
"msm_timer_init: setup_irq "
267 "failed for %s\n", cs
->name
);
269 clockevents_register_device(ce
);
274 int __cpuinit
local_timer_setup(struct clock_event_device
*evt
)
276 struct msm_clock
*clock
= &msm_clocks
[MSM_GLOBAL_TIMER
];
278 /* Use existing clock_event for cpu 0 */
279 if (!smp_processor_id())
282 writel(DGT_CLK_CTL_DIV_4
, MSM_TMR_BASE
+ DGT_CLK_CTL
);
284 if (!local_clock_event
) {
285 writel(0, clock
->regbase
+ TIMER_ENABLE
);
286 writel(0, clock
->regbase
+ TIMER_CLEAR
);
287 writel(~0, clock
->regbase
+ TIMER_MATCH_VAL
);
289 evt
->irq
= clock
->irq
.irq
;
290 evt
->name
= "local_timer";
291 evt
->features
= CLOCK_EVT_FEAT_ONESHOT
;
292 evt
->rating
= clock
->clockevent
.rating
;
293 evt
->set_mode
= msm_timer_set_mode
;
294 evt
->set_next_event
= msm_timer_set_next_event
;
295 evt
->shift
= clock
->clockevent
.shift
;
296 evt
->mult
= div_sc(clock
->freq
, NSEC_PER_SEC
, evt
->shift
);
298 clockevent_delta2ns(0xf0000000 >> clock
->shift
, evt
);
299 evt
->min_delta_ns
= clockevent_delta2ns(4, evt
);
301 local_clock_event
= evt
;
303 gic_enable_ppi(clock
->irq
.irq
);
305 clockevents_register_device(evt
);
309 inline int local_timer_ack(void)
316 struct sys_timer msm_timer
= {
317 .init
= msm_timer_init