2 * DaVinci timer subsystem
4 * Author: Kevin Hilman, MontaVista Software, Inc. <source@mvista.com>
6 * 2007 (c) MontaVista Software, Inc. This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/types.h>
14 #include <linux/interrupt.h>
15 #include <linux/clocksource.h>
16 #include <linux/clockchips.h>
17 #include <linux/spinlock.h>
19 #include <linux/clk.h>
20 #include <linux/err.h>
21 #include <linux/device.h>
23 #include <mach/hardware.h>
24 #include <asm/system.h>
26 #include <asm/mach/irq.h>
27 #include <asm/mach/time.h>
28 #include <asm/errno.h>
30 #include <mach/cputype.h>
33 static struct clock_event_device clockevent_davinci
;
34 static unsigned int davinci_clock_tick_rate
;
36 #define DAVINCI_TIMER0_BASE (IO_PHYS + 0x21400)
37 #define DAVINCI_TIMER1_BASE (IO_PHYS + 0x21800)
38 #define DAVINCI_WDOG_BASE (IO_PHYS + 0x21C00)
41 T0_BOT
= 0, T0_TOP
, T1_BOT
, T1_TOP
, NUM_TIMERS
,
44 #define IS_TIMER1(id) (id & 0x2)
45 #define IS_TIMER0(id) (!IS_TIMER1(id))
46 #define IS_TIMER_TOP(id) ((id & 0x1))
47 #define IS_TIMER_BOT(id) (!IS_TIMER_TOP(id))
49 static int timer_irqs
[NUM_TIMERS
] = {
57 * This driver configures the 2 64-bit count-up timers as 4 independent
58 * 32-bit count-up timers used as follows:
60 * T0_BOT: Timer 0, bottom: clockevent source for hrtimers
61 * T0_TOP: Timer 0, top : clocksource for generic timekeeping
62 * T1_BOT: Timer 1, bottom: (used by DSP in TI DSPLink code)
63 * T1_TOP: Timer 1, top : <unused>
65 #define TID_CLOCKEVENT T0_BOT
66 #define TID_CLOCKSOURCE T0_TOP
68 /* Timer register offsets */
78 /* Timer register bitfields */
79 #define TCR_ENAMODE_DISABLE 0x0
80 #define TCR_ENAMODE_ONESHOT 0x1
81 #define TCR_ENAMODE_PERIODIC 0x2
82 #define TCR_ENAMODE_MASK 0x3
84 #define TGCR_TIMMODE_SHIFT 2
85 #define TGCR_TIMMODE_64BIT_GP 0x0
86 #define TGCR_TIMMODE_32BIT_UNCHAINED 0x1
87 #define TGCR_TIMMODE_64BIT_WDOG 0x2
88 #define TGCR_TIMMODE_32BIT_CHAINED 0x3
90 #define TGCR_TIM12RS_SHIFT 0
91 #define TGCR_TIM34RS_SHIFT 1
92 #define TGCR_RESET 0x0
93 #define TGCR_UNRESET 0x1
94 #define TGCR_RESET_MASK 0x3
96 #define WDTCR_WDEN_SHIFT 14
97 #define WDTCR_WDEN_DISABLE 0x0
98 #define WDTCR_WDEN_ENABLE 0x1
99 #define WDTCR_WDKEY_SHIFT 16
100 #define WDTCR_WDKEY_SEQ0 0xa5c6
101 #define WDTCR_WDKEY_SEQ1 0xda7e
106 unsigned long period
;
109 unsigned long tim_off
;
110 unsigned long prd_off
;
111 unsigned long enamode_shift
;
112 struct irqaction irqaction
;
114 static struct timer_s timers
[];
116 /* values for 'opts' field of struct timer_s */
117 #define TIMER_OPTS_DISABLED 0x00
118 #define TIMER_OPTS_ONESHOT 0x01
119 #define TIMER_OPTS_PERIODIC 0x02
121 static int timer32_config(struct timer_s
*t
)
123 u32 tcr
= __raw_readl(t
->base
+ TCR
);
126 tcr
&= ~(TCR_ENAMODE_MASK
<< t
->enamode_shift
);
127 __raw_writel(tcr
, t
->base
+ TCR
);
129 /* reset counter to zero, set new period */
130 __raw_writel(0, t
->base
+ t
->tim_off
);
131 __raw_writel(t
->period
, t
->base
+ t
->prd_off
);
133 /* Set enable mode */
134 if (t
->opts
& TIMER_OPTS_ONESHOT
) {
135 tcr
|= TCR_ENAMODE_ONESHOT
<< t
->enamode_shift
;
136 } else if (t
->opts
& TIMER_OPTS_PERIODIC
) {
137 tcr
|= TCR_ENAMODE_PERIODIC
<< t
->enamode_shift
;
140 __raw_writel(tcr
, t
->base
+ TCR
);
144 static inline u32
timer32_read(struct timer_s
*t
)
146 return __raw_readl(t
->base
+ t
->tim_off
);
149 static irqreturn_t
timer_interrupt(int irq
, void *dev_id
)
151 struct clock_event_device
*evt
= &clockevent_davinci
;
153 evt
->event_handler(evt
);
157 /* called when 32-bit counter wraps */
158 static irqreturn_t
freerun_interrupt(int irq
, void *dev_id
)
163 static struct timer_s timers
[] = {
165 .name
= "clockevent",
166 .opts
= TIMER_OPTS_DISABLED
,
168 .flags
= IRQF_DISABLED
| IRQF_TIMER
,
169 .handler
= timer_interrupt
,
172 [TID_CLOCKSOURCE
] = {
173 .name
= "free-run counter",
175 .opts
= TIMER_OPTS_PERIODIC
,
177 .flags
= IRQF_DISABLED
| IRQF_TIMER
,
178 .handler
= freerun_interrupt
,
183 static void __init
timer_init(void)
185 u32 phys_bases
[] = {DAVINCI_TIMER0_BASE
, DAVINCI_TIMER1_BASE
};
188 /* Global init of each 64-bit timer as a whole */
191 void __iomem
*base
= IO_ADDRESS(phys_bases
[i
]);
193 /* Disabled, Internal clock source */
194 __raw_writel(0, base
+ TCR
);
196 /* reset both timers, no pre-scaler for timer34 */
198 __raw_writel(tgcr
, base
+ TGCR
);
200 /* Set both timers to unchained 32-bit */
201 tgcr
= TGCR_TIMMODE_32BIT_UNCHAINED
<< TGCR_TIMMODE_SHIFT
;
202 __raw_writel(tgcr
, base
+ TGCR
);
205 tgcr
|= (TGCR_UNRESET
<< TGCR_TIM12RS_SHIFT
) |
206 (TGCR_UNRESET
<< TGCR_TIM34RS_SHIFT
);
207 __raw_writel(tgcr
, base
+ TGCR
);
209 /* Init both counters to zero */
210 __raw_writel(0, base
+ TIM12
);
211 __raw_writel(0, base
+ TIM34
);
214 /* Init of each timer as a 32-bit timer */
215 for (i
=0; i
< ARRAY_SIZE(timers
); i
++) {
216 struct timer_s
*t
= &timers
[i
];
221 phys_base
= (IS_TIMER1(t
->id
) ?
222 DAVINCI_TIMER1_BASE
: DAVINCI_TIMER0_BASE
);
223 t
->base
= IO_ADDRESS(phys_base
);
225 if (IS_TIMER_BOT(t
->id
)) {
226 t
->enamode_shift
= 6;
230 t
->enamode_shift
= 22;
235 /* Register interrupt */
236 t
->irqaction
.name
= t
->name
;
237 t
->irqaction
.dev_id
= (void *)t
;
238 if (t
->irqaction
.handler
!= NULL
) {
239 setup_irq(timer_irqs
[t
->id
], &t
->irqaction
);
242 timer32_config(&timers
[i
]);
250 static cycle_t
read_cycles(struct clocksource
*cs
)
252 struct timer_s
*t
= &timers
[TID_CLOCKSOURCE
];
254 return (cycles_t
)timer32_read(t
);
257 static struct clocksource clocksource_davinci
= {
261 .mask
= CLOCKSOURCE_MASK(32),
263 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
269 static int davinci_set_next_event(unsigned long cycles
,
270 struct clock_event_device
*evt
)
272 struct timer_s
*t
= &timers
[TID_CLOCKEVENT
];
279 static void davinci_set_mode(enum clock_event_mode mode
,
280 struct clock_event_device
*evt
)
282 struct timer_s
*t
= &timers
[TID_CLOCKEVENT
];
285 case CLOCK_EVT_MODE_PERIODIC
:
286 t
->period
= davinci_clock_tick_rate
/ (HZ
);
287 t
->opts
= TIMER_OPTS_PERIODIC
;
290 case CLOCK_EVT_MODE_ONESHOT
:
291 t
->opts
= TIMER_OPTS_ONESHOT
;
293 case CLOCK_EVT_MODE_UNUSED
:
294 case CLOCK_EVT_MODE_SHUTDOWN
:
295 t
->opts
= TIMER_OPTS_DISABLED
;
297 case CLOCK_EVT_MODE_RESUME
:
302 static struct clock_event_device clockevent_davinci
= {
304 .features
= CLOCK_EVT_FEAT_PERIODIC
| CLOCK_EVT_FEAT_ONESHOT
,
306 .set_next_event
= davinci_set_next_event
,
307 .set_mode
= davinci_set_mode
,
311 static void __init
davinci_timer_init(void)
313 struct clk
*timer_clk
;
315 static char err
[] __initdata
= KERN_ERR
316 "%s: can't register clocksource!\n";
321 timer_clk
= clk_get(NULL
, "timer0");
322 BUG_ON(IS_ERR(timer_clk
));
323 clk_enable(timer_clk
);
325 davinci_clock_tick_rate
= clk_get_rate(timer_clk
);
327 /* setup clocksource */
328 clocksource_davinci
.mult
=
329 clocksource_khz2mult(davinci_clock_tick_rate
/1000,
330 clocksource_davinci
.shift
);
331 if (clocksource_register(&clocksource_davinci
))
332 printk(err
, clocksource_davinci
.name
);
334 /* setup clockevent */
335 clockevent_davinci
.mult
= div_sc(davinci_clock_tick_rate
, NSEC_PER_SEC
,
336 clockevent_davinci
.shift
);
337 clockevent_davinci
.max_delta_ns
=
338 clockevent_delta2ns(0xfffffffe, &clockevent_davinci
);
339 clockevent_davinci
.min_delta_ns
=
340 clockevent_delta2ns(1, &clockevent_davinci
);
342 clockevent_davinci
.cpumask
= cpumask_of(0);
343 clockevents_register_device(&clockevent_davinci
);
346 struct sys_timer davinci_timer
= {
347 .init
= davinci_timer_init
,
351 /* reset board using watchdog timer */
352 void davinci_watchdog_reset(void) {
354 void __iomem
*base
= IO_ADDRESS(DAVINCI_WDOG_BASE
);
357 char *name
= "watchdog";
359 dev_set_name(&dev
, name
);
360 wd_clk
= clk_get(&dev
, NULL
);
361 if (WARN_ON(IS_ERR(wd_clk
)))
365 /* disable, internal clock source */
366 __raw_writel(0, base
+ TCR
);
368 /* reset timer, set mode to 64-bit watchdog, and unreset */
370 __raw_writel(tgcr
, base
+ TCR
);
371 tgcr
= TGCR_TIMMODE_64BIT_WDOG
<< TGCR_TIMMODE_SHIFT
;
372 tgcr
|= (TGCR_UNRESET
<< TGCR_TIM12RS_SHIFT
) |
373 (TGCR_UNRESET
<< TGCR_TIM34RS_SHIFT
);
374 __raw_writel(tgcr
, base
+ TCR
);
376 /* clear counter and period regs */
377 __raw_writel(0, base
+ TIM12
);
378 __raw_writel(0, base
+ TIM34
);
379 __raw_writel(0, base
+ PRD12
);
380 __raw_writel(0, base
+ PRD34
);
383 wdtcr
= __raw_readl(base
+ WDTCR
);
384 wdtcr
|= WDTCR_WDEN_ENABLE
<< WDTCR_WDEN_SHIFT
;
385 __raw_writel(wdtcr
, base
+ WDTCR
);
387 /* put watchdog in pre-active state */
388 wdtcr
= (WDTCR_WDKEY_SEQ0
<< WDTCR_WDKEY_SHIFT
) |
389 (WDTCR_WDEN_ENABLE
<< WDTCR_WDEN_SHIFT
);
390 __raw_writel(wdtcr
, base
+ WDTCR
);
392 /* put watchdog in active state */
393 wdtcr
= (WDTCR_WDKEY_SEQ1
<< WDTCR_WDKEY_SHIFT
) |
394 (WDTCR_WDEN_ENABLE
<< WDTCR_WDEN_SHIFT
);
395 __raw_writel(wdtcr
, base
+ WDTCR
);
397 /* write an invalid value to the WDKEY field to trigger
398 * a watchdog reset */
400 __raw_writel(wdtcr
, base
+ WDTCR
);