blob: 3fc81066d7f137ebd982e55fc834251861c8fc4e [file] [log] [blame]
john stultz4c7ee8d2006-09-30 23:28:22 -07001/*
2 * linux/kernel/time/ntp.c
3 *
4 * NTP state machine interfaces and logic.
5 *
6 * This code was mainly moved from kernel/timer.c and kernel/time.c
7 * Please see those files for relevant copyright info and historical
8 * changelogs.
9 */
10
11#include <linux/mm.h>
12#include <linux/time.h>
Thomas Gleixner82644452007-07-21 04:37:37 -070013#include <linux/timer.h>
john stultz4c7ee8d2006-09-30 23:28:22 -070014#include <linux/timex.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040015#include <linux/jiffies.h>
16#include <linux/hrtimer.h>
Alexey Dobriyanaa0ac362007-07-15 23:40:39 -070017#include <linux/capability.h>
Roman Zippel71abb3a2008-05-01 04:34:26 -070018#include <linux/math64.h>
john stultz4c7ee8d2006-09-30 23:28:22 -070019#include <asm/timex.h>
20
Roman Zippelb0ee7552006-09-30 23:28:22 -070021/*
22 * Timekeeping variables
23 */
24unsigned long tick_usec = TICK_USEC; /* USER_HZ period (usec) */
25unsigned long tick_nsec; /* ACTHZ period (nsec) */
26static u64 tick_length, tick_length_base;
27
Roman Zippel8f807f82006-09-30 23:28:25 -070028#define MAX_TICKADJ 500 /* microsecs */
29#define MAX_TICKADJ_SCALED (((u64)(MAX_TICKADJ * NSEC_PER_USEC) << \
john stultzf4304ab2007-02-16 01:27:26 -080030 TICK_LENGTH_SHIFT) / NTP_INTERVAL_FREQ)
john stultz4c7ee8d2006-09-30 23:28:22 -070031
32/*
33 * phase-lock loop variables
34 */
35/* TIME_ERROR prevents overwriting the CMOS clock */
Adrian Bunk70bc42f2006-09-30 23:28:29 -070036static int time_state = TIME_OK; /* clock synchronization status */
john stultz4c7ee8d2006-09-30 23:28:22 -070037int time_status = STA_UNSYNC; /* clock status bits */
Roman Zippelee9851b2008-05-01 04:34:32 -070038static s64 time_offset; /* time adjustment (ns) */
Adrian Bunk70bc42f2006-09-30 23:28:29 -070039static long time_constant = 2; /* pll time constant */
john stultz4c7ee8d2006-09-30 23:28:22 -070040long time_maxerror = NTP_PHASE_LIMIT; /* maximum error (us) */
41long time_esterror = NTP_PHASE_LIMIT; /* estimated error (us) */
Roman Zippeldc6a43e2006-09-30 23:28:24 -070042long time_freq; /* frequency offset (scaled ppm)*/
Adrian Bunk70bc42f2006-09-30 23:28:29 -070043static long time_reftime; /* time at last adjustment (s) */
john stultz4c7ee8d2006-09-30 23:28:22 -070044long time_adjust;
Roman Zippel10a398d2008-03-04 15:14:26 -080045static long ntp_tick_adj;
john stultz4c7ee8d2006-09-30 23:28:22 -070046
Adrian Bunk70bc42f2006-09-30 23:28:29 -070047static void ntp_update_frequency(void)
48{
john stultzf4304ab2007-02-16 01:27:26 -080049 u64 second_length = (u64)(tick_usec * NSEC_PER_USEC * USER_HZ)
50 << TICK_LENGTH_SHIFT;
Roman Zippel10a398d2008-03-04 15:14:26 -080051 second_length += (s64)ntp_tick_adj << TICK_LENGTH_SHIFT;
john stultzf4304ab2007-02-16 01:27:26 -080052 second_length += (s64)time_freq << (TICK_LENGTH_SHIFT - SHIFT_NSEC);
Adrian Bunk70bc42f2006-09-30 23:28:29 -070053
john stultzf4304ab2007-02-16 01:27:26 -080054 tick_length_base = second_length;
Adrian Bunk70bc42f2006-09-30 23:28:29 -070055
Roman Zippel71abb3a2008-05-01 04:34:26 -070056 tick_nsec = div_u64(second_length, HZ) >> TICK_LENGTH_SHIFT;
57 tick_length_base = div_u64(tick_length_base, NTP_INTERVAL_FREQ);
Adrian Bunk70bc42f2006-09-30 23:28:29 -070058}
59
Roman Zippelee9851b2008-05-01 04:34:32 -070060static void ntp_update_offset(long offset)
61{
62 long mtemp;
63 s64 freq_adj;
64
65 if (!(time_status & STA_PLL))
66 return;
67
Roman Zippeleea83d82008-05-01 04:34:33 -070068 time_offset = offset;
69 if (!(time_status & STA_NANO))
70 time_offset *= NSEC_PER_USEC;
Roman Zippelee9851b2008-05-01 04:34:32 -070071
72 /*
73 * Scale the phase adjustment and
74 * clamp to the operating range.
75 */
76 time_offset = min(time_offset, (s64)MAXPHASE * NSEC_PER_USEC);
77 time_offset = max(time_offset, (s64)-MAXPHASE * NSEC_PER_USEC);
78
79 /*
80 * Select how the frequency is to be controlled
81 * and in which mode (PLL or FLL).
82 */
83 if (time_status & STA_FREQHOLD || time_reftime == 0)
84 time_reftime = xtime.tv_sec;
85 mtemp = xtime.tv_sec - time_reftime;
86 time_reftime = xtime.tv_sec;
87
88 freq_adj = time_offset * mtemp;
89 freq_adj = shift_right(freq_adj, time_constant * 2 +
90 (SHIFT_PLL + 2) * 2 - SHIFT_NSEC);
Roman Zippeleea83d82008-05-01 04:34:33 -070091 time_status &= ~STA_MODE;
92 if (mtemp >= MINSEC && (time_status & STA_FLL || mtemp > MAXSEC)) {
Roman Zippelee9851b2008-05-01 04:34:32 -070093 freq_adj += div_s64(time_offset << (SHIFT_NSEC - SHIFT_FLL), mtemp);
Roman Zippeleea83d82008-05-01 04:34:33 -070094 time_status |= STA_MODE;
95 }
Roman Zippelee9851b2008-05-01 04:34:32 -070096 freq_adj += time_freq;
97 freq_adj = min(freq_adj, (s64)MAXFREQ_NSEC);
98 time_freq = max(freq_adj, (s64)-MAXFREQ_NSEC);
99 time_offset = div_s64(time_offset, NTP_INTERVAL_FREQ);
100 time_offset <<= SHIFT_UPDATE;
101}
102
Roman Zippelb0ee7552006-09-30 23:28:22 -0700103/**
104 * ntp_clear - Clears the NTP state variables
105 *
106 * Must be called while holding a write on the xtime_lock
107 */
108void ntp_clear(void)
109{
110 time_adjust = 0; /* stop active adjtime() */
111 time_status |= STA_UNSYNC;
112 time_maxerror = NTP_PHASE_LIMIT;
113 time_esterror = NTP_PHASE_LIMIT;
114
115 ntp_update_frequency();
116
117 tick_length = tick_length_base;
Roman Zippel3d3675c2006-09-30 23:28:25 -0700118 time_offset = 0;
Roman Zippelb0ee7552006-09-30 23:28:22 -0700119}
120
john stultz4c7ee8d2006-09-30 23:28:22 -0700121/*
122 * this routine handles the overflow of the microsecond field
123 *
124 * The tricky bits of code to handle the accurate clock support
125 * were provided by Dave Mills (Mills@UDEL.EDU) of NTP fame.
126 * They were originally developed for SUN and DEC kernels.
127 * All the kudos should go to Dave for this stuff.
128 */
129void second_overflow(void)
130{
Roman Zippel3d3675c2006-09-30 23:28:25 -0700131 long time_adj;
john stultz4c7ee8d2006-09-30 23:28:22 -0700132
133 /* Bump the maxerror field */
Roman Zippel97eebe12006-09-30 23:28:26 -0700134 time_maxerror += MAXFREQ >> SHIFT_USEC;
john stultz4c7ee8d2006-09-30 23:28:22 -0700135 if (time_maxerror > NTP_PHASE_LIMIT) {
136 time_maxerror = NTP_PHASE_LIMIT;
137 time_status |= STA_UNSYNC;
138 }
139
140 /*
141 * Leap second processing. If in leap-insert state at the end of the
142 * day, the system clock is set back one second; if in leap-delete
143 * state, the system clock is set ahead one second. The microtime()
144 * routine or external clock driver will insure that reported time is
145 * always monotonic. The ugly divides should be replaced.
146 */
147 switch (time_state) {
148 case TIME_OK:
149 if (time_status & STA_INS)
150 time_state = TIME_INS;
151 else if (time_status & STA_DEL)
152 time_state = TIME_DEL;
153 break;
154 case TIME_INS:
155 if (xtime.tv_sec % 86400 == 0) {
156 xtime.tv_sec--;
157 wall_to_monotonic.tv_sec++;
john stultz4c7ee8d2006-09-30 23:28:22 -0700158 time_state = TIME_OOP;
john stultz4c7ee8d2006-09-30 23:28:22 -0700159 printk(KERN_NOTICE "Clock: inserting leap second "
160 "23:59:60 UTC\n");
161 }
162 break;
163 case TIME_DEL:
164 if ((xtime.tv_sec + 1) % 86400 == 0) {
165 xtime.tv_sec++;
166 wall_to_monotonic.tv_sec--;
john stultz4c7ee8d2006-09-30 23:28:22 -0700167 time_state = TIME_WAIT;
john stultz4c7ee8d2006-09-30 23:28:22 -0700168 printk(KERN_NOTICE "Clock: deleting leap second "
169 "23:59:59 UTC\n");
170 }
171 break;
172 case TIME_OOP:
173 time_state = TIME_WAIT;
174 break;
175 case TIME_WAIT:
176 if (!(time_status & (STA_INS | STA_DEL)))
Roman Zippelee9851b2008-05-01 04:34:32 -0700177 time_state = TIME_OK;
john stultz4c7ee8d2006-09-30 23:28:22 -0700178 }
179
180 /*
Roman Zippelf1992392006-09-30 23:28:28 -0700181 * Compute the phase adjustment for the next second. The offset is
182 * reduced by a fixed factor times the time constant.
john stultz4c7ee8d2006-09-30 23:28:22 -0700183 */
Roman Zippelb0ee7552006-09-30 23:28:22 -0700184 tick_length = tick_length_base;
Roman Zippelf1992392006-09-30 23:28:28 -0700185 time_adj = shift_right(time_offset, SHIFT_PLL + time_constant);
Roman Zippel3d3675c2006-09-30 23:28:25 -0700186 time_offset -= time_adj;
187 tick_length += (s64)time_adj << (TICK_LENGTH_SHIFT - SHIFT_UPDATE);
john stultz4c7ee8d2006-09-30 23:28:22 -0700188
Roman Zippel8f807f82006-09-30 23:28:25 -0700189 if (unlikely(time_adjust)) {
190 if (time_adjust > MAX_TICKADJ) {
191 time_adjust -= MAX_TICKADJ;
192 tick_length += MAX_TICKADJ_SCALED;
193 } else if (time_adjust < -MAX_TICKADJ) {
194 time_adjust += MAX_TICKADJ;
195 tick_length -= MAX_TICKADJ_SCALED;
196 } else {
Roman Zippel8f807f82006-09-30 23:28:25 -0700197 tick_length += (s64)(time_adjust * NSEC_PER_USEC /
john stultzf4304ab2007-02-16 01:27:26 -0800198 NTP_INTERVAL_FREQ) << TICK_LENGTH_SHIFT;
Jim Houstonbb1d8602006-10-28 10:38:56 -0700199 time_adjust = 0;
Roman Zippel8f807f82006-09-30 23:28:25 -0700200 }
john stultz4c7ee8d2006-09-30 23:28:22 -0700201 }
202}
203
204/*
205 * Return how long ticks are at the moment, that is, how much time
206 * update_wall_time_one_tick will add to xtime next time we call it
207 * (assuming no calls to do_adjtimex in the meantime).
208 * The return value is in fixed-point nanoseconds shifted by the
209 * specified number of bits to the right of the binary point.
210 * This function has no side-effects.
211 */
212u64 current_tick_length(void)
213{
Roman Zippel8f807f82006-09-30 23:28:25 -0700214 return tick_length;
john stultz4c7ee8d2006-09-30 23:28:22 -0700215}
216
Thomas Gleixner82644452007-07-21 04:37:37 -0700217#ifdef CONFIG_GENERIC_CMOS_UPDATE
john stultz4c7ee8d2006-09-30 23:28:22 -0700218
Thomas Gleixner82644452007-07-21 04:37:37 -0700219/* Disable the cmos update - used by virtualization and embedded */
220int no_sync_cmos_clock __read_mostly;
221
222static void sync_cmos_clock(unsigned long dummy);
223
224static DEFINE_TIMER(sync_cmos_timer, sync_cmos_clock, 0, 0);
225
226static void sync_cmos_clock(unsigned long dummy)
john stultz4c7ee8d2006-09-30 23:28:22 -0700227{
Thomas Gleixner82644452007-07-21 04:37:37 -0700228 struct timespec now, next;
229 int fail = 1;
230
231 /*
232 * If we have an externally synchronized Linux clock, then update
233 * CMOS clock accordingly every ~11 minutes. Set_rtc_mmss() has to be
234 * called as close as possible to 500 ms before the new second starts.
235 * This code is run on a timer. If the clock is set, that timer
236 * may not expire at the correct time. Thus, we adjust...
237 */
238 if (!ntp_synced())
239 /*
240 * Not synced, exit, do not restart a timer (if one is
241 * running, let it run out).
242 */
243 return;
244
245 getnstimeofday(&now);
David P. Reedfa6a1a52007-11-14 17:49:21 -0500246 if (abs(now.tv_nsec - (NSEC_PER_SEC / 2)) <= tick_nsec / 2)
Thomas Gleixner82644452007-07-21 04:37:37 -0700247 fail = update_persistent_clock(now);
248
249 next.tv_nsec = (NSEC_PER_SEC / 2) - now.tv_nsec;
250 if (next.tv_nsec <= 0)
251 next.tv_nsec += NSEC_PER_SEC;
252
253 if (!fail)
254 next.tv_sec = 659;
255 else
256 next.tv_sec = 0;
257
258 if (next.tv_nsec >= NSEC_PER_SEC) {
259 next.tv_sec++;
260 next.tv_nsec -= NSEC_PER_SEC;
261 }
262 mod_timer(&sync_cmos_timer, jiffies + timespec_to_jiffies(&next));
john stultz4c7ee8d2006-09-30 23:28:22 -0700263}
264
Thomas Gleixner82644452007-07-21 04:37:37 -0700265static void notify_cmos_timer(void)
266{
Tony Breeds298a5df2007-09-11 15:24:03 -0700267 if (!no_sync_cmos_clock)
Thomas Gleixner82644452007-07-21 04:37:37 -0700268 mod_timer(&sync_cmos_timer, jiffies + 1);
269}
270
271#else
272static inline void notify_cmos_timer(void) { }
273#endif
274
john stultz4c7ee8d2006-09-30 23:28:22 -0700275/* adjtimex mainly allows reading (and writing, if superuser) of
276 * kernel time-keeping variables. used by xntpd.
277 */
278int do_adjtimex(struct timex *txc)
279{
Roman Zippeleea83d82008-05-01 04:34:33 -0700280 struct timespec ts;
Roman Zippelee9851b2008-05-01 04:34:32 -0700281 long save_adjust;
john stultz4c7ee8d2006-09-30 23:28:22 -0700282 int result;
283
284 /* In order to modify anything, you gotta be super-user! */
285 if (txc->modes && !capable(CAP_SYS_TIME))
286 return -EPERM;
287
288 /* Now we validate the data before disabling interrupts */
289
John Stultz52bfb362007-11-26 20:42:19 +0100290 if ((txc->modes & ADJ_OFFSET_SINGLESHOT) == ADJ_OFFSET_SINGLESHOT) {
Roman Zippeleea83d82008-05-01 04:34:33 -0700291 /* singleshot must not be used with any other mode bits */
292 if (txc->modes & ~ADJ_OFFSET_SS_READ)
john stultz4c7ee8d2006-09-30 23:28:22 -0700293 return -EINVAL;
John Stultz52bfb362007-11-26 20:42:19 +0100294 }
john stultz4c7ee8d2006-09-30 23:28:22 -0700295
john stultz4c7ee8d2006-09-30 23:28:22 -0700296 /* if the quartz is off by more than 10% something is VERY wrong ! */
297 if (txc->modes & ADJ_TICK)
298 if (txc->tick < 900000/USER_HZ ||
299 txc->tick > 1100000/USER_HZ)
300 return -EINVAL;
301
302 write_seqlock_irq(&xtime_lock);
john stultz4c7ee8d2006-09-30 23:28:22 -0700303
304 /* Save for later - semantics of adjtime is to return old value */
Roman Zippel8f807f82006-09-30 23:28:25 -0700305 save_adjust = time_adjust;
john stultz4c7ee8d2006-09-30 23:28:22 -0700306
john stultz4c7ee8d2006-09-30 23:28:22 -0700307 /* If there are input parameters, then process them */
Roman Zippelee9851b2008-05-01 04:34:32 -0700308 if (txc->modes) {
Roman Zippeleea83d82008-05-01 04:34:33 -0700309 if (txc->modes & ADJ_STATUS) {
310 if ((time_status & STA_PLL) &&
311 !(txc->status & STA_PLL)) {
312 time_state = TIME_OK;
313 time_status = STA_UNSYNC;
314 }
315 /* only set allowed bits */
316 time_status &= STA_RONLY;
317 time_status |= txc->status & ~STA_RONLY;
318 }
319
320 if (txc->modes & ADJ_NANO)
321 time_status |= STA_NANO;
322 if (txc->modes & ADJ_MICRO)
323 time_status &= ~STA_NANO;
john stultz4c7ee8d2006-09-30 23:28:22 -0700324
Roman Zippelee9851b2008-05-01 04:34:32 -0700325 if (txc->modes & ADJ_FREQUENCY) {
Roman Zippeleea83d82008-05-01 04:34:33 -0700326 time_freq = min(txc->freq, MAXFREQ);
327 time_freq = min(time_freq, -MAXFREQ);
328 time_freq = ((s64)time_freq * NSEC_PER_USEC)
Roman Zippelee9851b2008-05-01 04:34:32 -0700329 >> (SHIFT_USEC - SHIFT_NSEC);
john stultz4c7ee8d2006-09-30 23:28:22 -0700330 }
john stultz4c7ee8d2006-09-30 23:28:22 -0700331
Roman Zippeleea83d82008-05-01 04:34:33 -0700332 if (txc->modes & ADJ_MAXERROR)
Roman Zippelee9851b2008-05-01 04:34:32 -0700333 time_maxerror = txc->maxerror;
Roman Zippeleea83d82008-05-01 04:34:33 -0700334 if (txc->modes & ADJ_ESTERROR)
Roman Zippelee9851b2008-05-01 04:34:32 -0700335 time_esterror = txc->esterror;
john stultz4c7ee8d2006-09-30 23:28:22 -0700336
Roman Zippelee9851b2008-05-01 04:34:32 -0700337 if (txc->modes & ADJ_TIMECONST) {
Roman Zippeleea83d82008-05-01 04:34:33 -0700338 time_constant = txc->constant;
339 if (!(time_status & STA_NANO))
340 time_constant += 4;
341 time_constant = min(time_constant, (long)MAXTC);
342 time_constant = max(time_constant, 0l);
john stultz4c7ee8d2006-09-30 23:28:22 -0700343 }
john stultz4c7ee8d2006-09-30 23:28:22 -0700344
Roman Zippelee9851b2008-05-01 04:34:32 -0700345 if (txc->modes & ADJ_OFFSET) {
346 if (txc->modes == ADJ_OFFSET_SINGLESHOT)
347 /* adjtime() is independent from ntp_adjtime() */
348 time_adjust = txc->offset;
349 else
350 ntp_update_offset(txc->offset);
john stultz4c7ee8d2006-09-30 23:28:22 -0700351 }
Roman Zippelee9851b2008-05-01 04:34:32 -0700352 if (txc->modes & ADJ_TICK)
353 tick_usec = txc->tick;
john stultz4c7ee8d2006-09-30 23:28:22 -0700354
Roman Zippelee9851b2008-05-01 04:34:32 -0700355 if (txc->modes & (ADJ_TICK|ADJ_FREQUENCY|ADJ_OFFSET))
356 ntp_update_frequency();
357 }
Roman Zippeleea83d82008-05-01 04:34:33 -0700358
359 result = time_state; /* mostly `TIME_OK' */
Roman Zippelee9851b2008-05-01 04:34:32 -0700360 if (time_status & (STA_UNSYNC|STA_CLOCKERR))
john stultz4c7ee8d2006-09-30 23:28:22 -0700361 result = TIME_ERROR;
362
John Stultz52bfb362007-11-26 20:42:19 +0100363 if ((txc->modes == ADJ_OFFSET_SINGLESHOT) ||
Roman Zippelee9851b2008-05-01 04:34:32 -0700364 (txc->modes == ADJ_OFFSET_SS_READ))
john stultzd62ac212007-03-26 21:32:26 -0800365 txc->offset = save_adjust;
Roman Zippeleea83d82008-05-01 04:34:33 -0700366 else {
john stultzd62ac212007-03-26 21:32:26 -0800367 txc->offset = ((long)shift_right(time_offset, SHIFT_UPDATE)) *
Roman Zippeleea83d82008-05-01 04:34:33 -0700368 NTP_INTERVAL_FREQ;
369 if (!(time_status & STA_NANO))
370 txc->offset /= NSEC_PER_USEC;
371 }
john stultzd62ac212007-03-26 21:32:26 -0800372 txc->freq = (time_freq / NSEC_PER_USEC) <<
373 (SHIFT_USEC - SHIFT_NSEC);
john stultz4c7ee8d2006-09-30 23:28:22 -0700374 txc->maxerror = time_maxerror;
375 txc->esterror = time_esterror;
376 txc->status = time_status;
377 txc->constant = time_constant;
Adrian Bunk70bc42f2006-09-30 23:28:29 -0700378 txc->precision = 1;
Roman Zippel97eebe12006-09-30 23:28:26 -0700379 txc->tolerance = MAXFREQ;
john stultz4c7ee8d2006-09-30 23:28:22 -0700380 txc->tick = tick_usec;
381
382 /* PPS is not implemented, so these are zero */
383 txc->ppsfreq = 0;
384 txc->jitter = 0;
385 txc->shift = 0;
386 txc->stabil = 0;
387 txc->jitcnt = 0;
388 txc->calcnt = 0;
389 txc->errcnt = 0;
390 txc->stbcnt = 0;
391 write_sequnlock_irq(&xtime_lock);
Roman Zippelee9851b2008-05-01 04:34:32 -0700392
Roman Zippeleea83d82008-05-01 04:34:33 -0700393 getnstimeofday(&ts);
394 txc->time.tv_sec = ts.tv_sec;
395 txc->time.tv_usec = ts.tv_nsec;
396 if (!(time_status & STA_NANO))
397 txc->time.tv_usec /= NSEC_PER_USEC;
Roman Zippelee9851b2008-05-01 04:34:32 -0700398
Thomas Gleixner82644452007-07-21 04:37:37 -0700399 notify_cmos_timer();
Roman Zippelee9851b2008-05-01 04:34:32 -0700400
401 return result;
john stultz4c7ee8d2006-09-30 23:28:22 -0700402}
Roman Zippel10a398d2008-03-04 15:14:26 -0800403
404static int __init ntp_tick_adj_setup(char *str)
405{
406 ntp_tick_adj = simple_strtol(str, NULL, 0);
407 return 1;
408}
409
410__setup("ntp_tick_adj=", ntp_tick_adj_setup);