2 * linux/arch/arm/mach-sa1100/time.c
4 * Copyright (C) 1998 Deborah Wallach.
5 * Twiddles (C) 1999 Hugo Fiennes <hugo@empeg.com>
7 * 2000/03/29 (C) Nicolas Pitre <nico@cam.org>
8 * Rewritten: big cleanup, much simpler, better HZ accuracy.
11 #include <linux/init.h>
12 #include <linux/errno.h>
13 #include <linux/interrupt.h>
14 #include <linux/timex.h>
15 #include <linux/signal.h>
17 #include <asm/mach/time.h>
18 #include <asm/hardware.h>
20 #define RTC_DEF_DIVIDER (32768 - 1)
21 #define RTC_DEF_TRIM 0
23 static unsigned long __init
sa1100_get_rtc_time(void)
26 * According to the manual we should be able to let RTTR be zero
27 * and then a default diviser for a 32.768KHz clock is used.
28 * Apparently this doesn't work, at least for my SA1110 rev 5.
29 * If the clock divider is uninitialized then reset it to the
30 * default value to get the 1Hz clock.
33 RTTR
= RTC_DEF_DIVIDER
+ (RTC_DEF_TRIM
<< 16);
34 printk(KERN_WARNING
"Warning: uninitialized Real Time Clock\n");
35 /* The current RTC value probably doesn't make sense either */
42 static int sa1100_set_rtc(void)
44 unsigned long current_time
= xtime
.tv_sec
;
46 if (RTSR
& RTSR_ALE
) {
47 /* make sure not to forward the clock over an alarm */
48 unsigned long alarm
= RTAR
;
49 if (current_time
>= alarm
&& alarm
>= RCNR
)
56 /* IRQs are disabled before entering here from do_gettimeofday() */
57 static unsigned long sa1100_gettimeoffset (void)
59 unsigned long ticks_to_match
, elapsed
, usec
;
61 /* Get ticks before next timer match */
62 ticks_to_match
= OSMR0
- OSCR
;
64 /* We need elapsed ticks since last match */
65 elapsed
= LATCH
- ticks_to_match
;
67 /* Now convert them to usec */
68 usec
= (unsigned long)(elapsed
* (tick_nsec
/ 1000))/LATCH
;
73 #ifdef CONFIG_NO_IDLE_HZ
74 static unsigned long initial_match
;
75 static int match_posponed
;
79 sa1100_timer_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
81 unsigned int next_match
;
83 write_seqlock(&xtime_lock
);
85 #ifdef CONFIG_NO_IDLE_HZ
88 OSMR0
= initial_match
;
93 * Loop until we get ahead of the free running timer.
94 * This ensures an exact clock tick count and time accuracy.
95 * Since IRQs are disabled at this point, coherence between
96 * lost_ticks(updated in do_timer()) and the match reg value is
97 * ensured, hence we can use do_gettimeofday() from interrupt
102 OSSR
= OSSR_M0
; /* Clear match on timer 0 */
103 next_match
= (OSMR0
+= LATCH
);
104 } while ((signed long)(next_match
- OSCR
) <= 0);
106 write_sequnlock(&xtime_lock
);
111 static struct irqaction sa1100_timer_irq
= {
112 .name
= "SA11xx Timer Tick",
113 .flags
= SA_INTERRUPT
| SA_TIMER
,
114 .handler
= sa1100_timer_interrupt
,
117 static void __init
sa1100_timer_init(void)
121 set_rtc
= sa1100_set_rtc
;
124 tv
.tv_sec
= sa1100_get_rtc_time();
125 do_settimeofday(&tv
);
127 OIER
= 0; /* disable any timer interrupts */
128 OSCR
= LATCH
*2; /* push OSCR out of the way */
129 OSMR0
= LATCH
; /* set initial match */
130 OSSR
= 0xf; /* clear status on all timers */
131 setup_irq(IRQ_OST0
, &sa1100_timer_irq
);
132 OIER
= OIER_E0
; /* enable match on timer 0 to cause interrupts */
133 OSCR
= 0; /* initialize free-running timer */
136 #ifdef CONFIG_NO_IDLE_HZ
137 static int sa1100_dyn_tick_enable_disable(void)
143 static void sa1100_dyn_tick_reprogram(unsigned long ticks
)
146 initial_match
= OSMR0
;
147 OSMR0
= initial_match
+ ticks
* LATCH
;
153 sa1100_dyn_tick_handler(int irq
, void *dev_id
, struct pt_regs
*regs
)
155 if (match_posponed
) {
157 OSMR0
= initial_match
;
158 if ((signed long)(initial_match
- OSCR
) <= 0)
159 return sa1100_timer_interrupt(irq
, dev_id
, regs
);
164 static struct dyn_tick_timer sa1100_dyn_tick
= {
165 .enable
= sa1100_dyn_tick_enable_disable
,
166 .disable
= sa1100_dyn_tick_enable_disable
,
167 .reprogram
= sa1100_dyn_tick_reprogram
,
168 .handler
= sa1100_dyn_tick_handler
,
173 unsigned long osmr
[4], oier
;
175 static void sa1100_timer_suspend(void)
184 static void sa1100_timer_resume(void)
194 * OSMR0 is the system timer: make sure OSCR is sufficiently behind
196 OSCR
= OSMR0
- LATCH
;
199 #define sa1100_timer_suspend NULL
200 #define sa1100_timer_resume NULL
203 struct sys_timer sa1100_timer
= {
204 .init
= sa1100_timer_init
,
205 .suspend
= sa1100_timer_suspend
,
206 .resume
= sa1100_timer_resume
,
207 .offset
= sa1100_gettimeoffset
,
208 #ifdef CONFIG_NO_IDLE_HZ
209 .dyn_tick
= &sa1100_dyn_tick
,