2 * linux/arch/arm26/kernel/time.c
4 * Copyright (C) 1991, 1992, 1995 Linus Torvalds
5 * Modifications for ARM (C) 1994-2001 Russell King
6 * Mods for ARM26 (C) 2003 Ian Molton
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 * This file contains the ARM-specific time handling details:
13 * reading the RTC at bootup, etc...
15 * 1994-07-02 Alan Modra
16 * fixed set_rtc_mmss, fixed time.year for >= 2000, new mktime
17 * 1998-12-20 Updated NTP code according to technical memorandum Jan '96
18 * "A Kernel Model for Precision Timekeeping" by Dave Mills
21 #include <linux/config.h>
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/interrupt.h>
25 #include <linux/time.h>
26 #include <linux/init.h>
27 #include <linux/smp.h>
28 #include <linux/timex.h>
29 #include <linux/errno.h>
30 #include <linux/profile.h>
32 #include <asm/hardware.h>
37 extern unsigned long wall_jiffies;
39 /* this needs a better home */
40 DEFINE_SPINLOCK(rtc_lock);
42 /* change this if you have some constant time drift */
43 #define USECS_PER_JIFFY (1000000/HZ)
45 static int dummy_set_rtc(void)
51 * hook for setting the RTC's idea of the current time.
53 int (*set_rtc)(void) = dummy_set_rtc;
56 * Get time offset based on IOCs timer.
57 * FIXME - if this is called with interrutps off, why the shennanigans
60 static unsigned long gettimeoffset(void)
62 unsigned int count1, count2, status;
65 ioc_writeb (0, IOC_T0LATCH);
67 count1 = ioc_readb(IOC_T0CNTL) | (ioc_readb(IOC_T0CNTH) << 8);
69 status = ioc_readb(IOC_IRQREQA);
71 ioc_writeb (0, IOC_T0LATCH);
73 count2 = ioc_readb(IOC_T0CNTL) | (ioc_readb(IOC_T0CNTH) << 8);
76 if (count2 < count1) {
78 * We have not had an interrupt between reading count1
81 if (status & (1 << 5))
83 } else if (count2 > count1) {
85 * We have just had another interrupt between reading
91 offset = (LATCH - offset) * (tick_nsec / 1000);
92 return (offset + LATCH/2) / LATCH;
96 * Scheduler clock - returns current time in nanosec units.
98 unsigned long long sched_clock(void)
100 return (unsigned long long)jiffies * (1000000000 / HZ);
103 static unsigned long next_rtc_update;
106 * If we have an externally synchronized linux clock, then update
107 * CMOS clock accordingly every ~11 minutes. set_rtc() has to be
108 * called as close as possible to 500 ms before the new second
111 static inline void do_set_rtc(void)
113 if (!ntp_synced() || set_rtc == NULL)
116 //FIXME - timespec.tv_sec is a time_t not unsigned long
117 if (next_rtc_update &&
118 time_before((unsigned long)xtime.tv_sec, next_rtc_update))
121 if (xtime.tv_nsec < 500000000 - ((unsigned) tick_nsec >> 1) &&
122 xtime.tv_nsec >= 500000000 + ((unsigned) tick_nsec >> 1))
127 * rtc update failed. Try again in 60s
129 next_rtc_update = xtime.tv_sec + 60;
131 next_rtc_update = xtime.tv_sec + 660;
136 void do_gettimeofday(struct timeval *tv)
140 unsigned long usec, sec, lost;
143 seq = read_seqbegin_irqsave(&xtime_lock, flags);
144 usec = gettimeoffset();
146 lost = jiffies - wall_jiffies;
148 usec += lost * USECS_PER_JIFFY;
151 usec += xtime.tv_nsec / 1000;
152 } while (read_seqretry_irqrestore(&xtime_lock, seq, flags));
154 /* usec may have gone up a lot: be safe */
155 while (usec >= 1000000) {
164 EXPORT_SYMBOL(do_gettimeofday);
166 int do_settimeofday(struct timespec *tv)
168 if ((unsigned long)tv->tv_nsec >= NSEC_PER_SEC)
171 write_seqlock_irq(&xtime_lock);
173 * This is revolting. We need to set "xtime" correctly. However, the
174 * value in this location is the value at the most recent update of
175 * wall time. Discover what correction gettimeofday() would have
176 * done, and then undo it!
178 tv->tv_nsec -= 1000 * (gettimeoffset() +
179 (jiffies - wall_jiffies) * USECS_PER_JIFFY);
181 while (tv->tv_nsec < 0) {
182 tv->tv_nsec += NSEC_PER_SEC;
186 xtime.tv_sec = tv->tv_sec;
187 xtime.tv_nsec = tv->tv_nsec;
189 write_sequnlock_irq(&xtime_lock);
194 EXPORT_SYMBOL(do_settimeofday);
196 static irqreturn_t timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
200 update_process_times(user_mode(regs));
202 do_set_rtc(); //FIME - EVERY timer IRQ?
203 profile_tick(CPU_PROFILING, regs);
204 return IRQ_HANDLED; //FIXME - is this right?
207 static struct irqaction timer_irq = {
209 .flags = SA_INTERRUPT,
210 .handler = timer_interrupt,
213 extern void ioctime_init(void);
216 * Set up timer interrupt.
218 void __init time_init(void)
220 ioc_writeb(LATCH & 255, IOC_T0LTCHL);
221 ioc_writeb(LATCH >> 8, IOC_T0LTCHH);
222 ioc_writeb(0, IOC_T0GO);
225 setup_irq(IRQ_TIMER, &timer_irq);