blob: e947bfddd2c27820861f2c400268347f767f98a2 [file] [log] [blame]
john stultz4c7ee8d2006-09-30 23:28:22 -07001/*
john stultz4c7ee8d2006-09-30 23:28:22 -07002 * NTP state machine interfaces and logic.
3 *
4 * This code was mainly moved from kernel/timer.c and kernel/time.c
5 * Please see those files for relevant copyright info and historical
6 * changelogs.
7 */
Alexey Dobriyanaa0ac362007-07-15 23:40:39 -07008#include <linux/capability.h>
Roman Zippel7dffa3c2008-05-01 04:34:41 -07009#include <linux/clocksource.h>
Maciej W. Rozyckieb3f9382008-09-22 14:42:40 -070010#include <linux/workqueue.h>
Ingo Molnar53bbfa92008-02-20 07:58:42 +010011#include <linux/hrtimer.h>
12#include <linux/jiffies.h>
13#include <linux/math64.h>
14#include <linux/timex.h>
15#include <linux/time.h>
16#include <linux/mm.h>
Alexander Gordeev025b40a2011-01-12 17:00:56 -080017#include <linux/module.h>
Jason Gunthorpe023f3332012-12-17 14:30:53 -070018#include <linux/rtc.h>
john stultz4c7ee8d2006-09-30 23:28:22 -070019
John Stultzaa6f9c592013-03-22 11:31:29 -070020#include "ntp_internal.h"
DengChao0af86462015-12-13 12:24:19 +080021#include "timekeeping_internal.h"
22
Torben Hohne2830b52011-01-27 16:00:32 +010023
Roman Zippelb0ee7552006-09-30 23:28:22 -070024/*
Ingo Molnar53bbfa92008-02-20 07:58:42 +010025 * NTP timekeeping variables:
John Stultza076b212013-03-22 11:52:03 -070026 *
27 * Note: All of the NTP state is protected by the timekeeping locks.
Roman Zippelb0ee7552006-09-30 23:28:22 -070028 */
Roman Zippelb0ee7552006-09-30 23:28:22 -070029
John Stultzbd331262011-11-14 13:48:36 -080030
Ingo Molnar53bbfa92008-02-20 07:58:42 +010031/* USER_HZ period (usecs): */
32unsigned long tick_usec = TICK_USEC;
Roman Zippel7dffa3c2008-05-01 04:34:41 -070033
John Stultz02ab20a2012-07-27 14:48:10 -040034/* SHIFTED_HZ period (nsecs): */
Ingo Molnar53bbfa92008-02-20 07:58:42 +010035unsigned long tick_nsec;
36
John Stultzea7cf49a2011-11-14 13:18:07 -080037static u64 tick_length;
Ingo Molnar53bbfa92008-02-20 07:58:42 +010038static u64 tick_length_base;
39
John Stultz90bf3612015-06-11 15:54:54 -070040#define SECS_PER_DAY 86400
Ingo Molnarbbd12672009-02-22 12:11:11 +010041#define MAX_TICKADJ 500LL /* usecs */
Ingo Molnar53bbfa92008-02-20 07:58:42 +010042#define MAX_TICKADJ_SCALED \
Ingo Molnarbbd12672009-02-22 12:11:11 +010043 (((MAX_TICKADJ * NSEC_PER_USEC) << NTP_SCALE_SHIFT) / NTP_INTERVAL_FREQ)
john stultz4c7ee8d2006-09-30 23:28:22 -070044
45/*
46 * phase-lock loop variables
47 */
Ingo Molnar53bbfa92008-02-20 07:58:42 +010048
49/*
50 * clock synchronization status
51 *
52 * (TIME_ERROR prevents overwriting the CMOS clock)
53 */
54static int time_state = TIME_OK;
55
56/* clock status bits: */
John Stultz83579292011-11-14 13:06:21 -080057static int time_status = STA_UNSYNC;
Ingo Molnar53bbfa92008-02-20 07:58:42 +010058
Ingo Molnar53bbfa92008-02-20 07:58:42 +010059/* time adjustment (nsecs): */
60static s64 time_offset;
61
62/* pll time constant: */
63static long time_constant = 2;
64
65/* maximum error (usecs): */
john stultz1f5b8f82010-01-28 15:02:41 -080066static long time_maxerror = NTP_PHASE_LIMIT;
Ingo Molnar53bbfa92008-02-20 07:58:42 +010067
68/* estimated error (usecs): */
john stultz1f5b8f82010-01-28 15:02:41 -080069static long time_esterror = NTP_PHASE_LIMIT;
Ingo Molnar53bbfa92008-02-20 07:58:42 +010070
71/* frequency offset (scaled nsecs/secs): */
72static s64 time_freq;
73
74/* time at last adjustment (secs): */
DengChao0af86462015-12-13 12:24:19 +080075static time64_t time_reftime;
Ingo Molnar53bbfa92008-02-20 07:58:42 +010076
John Stultze1292ba2010-03-18 20:19:27 -070077static long time_adjust;
Ingo Molnar53bbfa92008-02-20 07:58:42 +010078
Ingo Molnar069569e2009-02-22 16:03:37 +010079/* constant (boot-param configurable) NTP tick adjustment (upscaled) */
80static s64 ntp_tick_adj;
Ingo Molnar53bbfa92008-02-20 07:58:42 +010081
John Stultz833f32d2015-06-11 15:54:55 -070082/* second value of the next pending leapsecond, or TIME64_MAX if no leap */
83static time64_t ntp_next_leap_sec = TIME64_MAX;
84
Alexander Gordeev025b40a2011-01-12 17:00:56 -080085#ifdef CONFIG_NTP_PPS
86
87/*
88 * The following variables are used when a pulse-per-second (PPS) signal
89 * is available. They establish the engineering parameters of the clock
90 * discipline loop when controlled by the PPS signal.
91 */
92#define PPS_VALID 10 /* PPS signal watchdog max (s) */
93#define PPS_POPCORN 4 /* popcorn spike threshold (shift) */
94#define PPS_INTMIN 2 /* min freq interval (s) (shift) */
95#define PPS_INTMAX 8 /* max freq interval (s) (shift) */
96#define PPS_INTCOUNT 4 /* number of consecutive good intervals to
97 increase pps_shift or consecutive bad
98 intervals to decrease it */
99#define PPS_MAXWANDER 100000 /* max PPS freq wander (ns/s) */
100
101static int pps_valid; /* signal watchdog counter */
102static long pps_tf[3]; /* phase median filter */
103static long pps_jitter; /* current jitter (ns) */
Arnd Bergmann7ec88e42015-09-28 22:21:28 +0200104static struct timespec64 pps_fbase; /* beginning of the last freq interval */
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800105static int pps_shift; /* current interval duration (s) (shift) */
106static int pps_intcnt; /* interval counter */
107static s64 pps_freq; /* frequency offset (scaled ns/s) */
108static long pps_stabil; /* current stability (scaled ns/s) */
109
110/*
111 * PPS signal quality monitors
112 */
113static long pps_calcnt; /* calibration intervals */
114static long pps_jitcnt; /* jitter limit exceeded */
115static long pps_stbcnt; /* stability limit exceeded */
116static long pps_errcnt; /* calibration errors */
117
118
119/* PPS kernel consumer compensates the whole phase error immediately.
120 * Otherwise, reduce the offset by a fixed factor times the time constant.
121 */
122static inline s64 ntp_offset_chunk(s64 offset)
123{
124 if (time_status & STA_PPSTIME && time_status & STA_PPSSIGNAL)
125 return offset;
126 else
127 return shift_right(offset, SHIFT_PLL + time_constant);
128}
129
130static inline void pps_reset_freq_interval(void)
131{
132 /* the PPS calibration interval may end
133 surprisingly early */
134 pps_shift = PPS_INTMIN;
135 pps_intcnt = 0;
136}
137
138/**
139 * pps_clear - Clears the PPS state variables
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800140 */
141static inline void pps_clear(void)
142{
143 pps_reset_freq_interval();
144 pps_tf[0] = 0;
145 pps_tf[1] = 0;
146 pps_tf[2] = 0;
147 pps_fbase.tv_sec = pps_fbase.tv_nsec = 0;
148 pps_freq = 0;
149}
150
151/* Decrease pps_valid to indicate that another second has passed since
152 * the last PPS signal. When it reaches 0, indicate that PPS signal is
153 * missing.
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800154 */
155static inline void pps_dec_valid(void)
156{
157 if (pps_valid > 0)
158 pps_valid--;
159 else {
160 time_status &= ~(STA_PPSSIGNAL | STA_PPSJITTER |
161 STA_PPSWANDER | STA_PPSERROR);
162 pps_clear();
163 }
164}
165
166static inline void pps_set_freq(s64 freq)
167{
168 pps_freq = freq;
169}
170
171static inline int is_error_status(int status)
172{
George Spelvinea54bca2014-05-12 09:35:48 -0400173 return (status & (STA_UNSYNC|STA_CLOCKERR))
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800174 /* PPS signal lost when either PPS time or
175 * PPS frequency synchronization requested
176 */
George Spelvinea54bca2014-05-12 09:35:48 -0400177 || ((status & (STA_PPSFREQ|STA_PPSTIME))
178 && !(status & STA_PPSSIGNAL))
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800179 /* PPS jitter exceeded when
180 * PPS time synchronization requested */
George Spelvinea54bca2014-05-12 09:35:48 -0400181 || ((status & (STA_PPSTIME|STA_PPSJITTER))
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800182 == (STA_PPSTIME|STA_PPSJITTER))
183 /* PPS wander exceeded or calibration error when
184 * PPS frequency synchronization requested
185 */
George Spelvinea54bca2014-05-12 09:35:48 -0400186 || ((status & STA_PPSFREQ)
187 && (status & (STA_PPSWANDER|STA_PPSERROR)));
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800188}
189
190static inline void pps_fill_timex(struct timex *txc)
191{
192 txc->ppsfreq = shift_right((pps_freq >> PPM_SCALE_INV_SHIFT) *
193 PPM_SCALE_INV, NTP_SCALE_SHIFT);
194 txc->jitter = pps_jitter;
195 if (!(time_status & STA_NANO))
196 txc->jitter /= NSEC_PER_USEC;
197 txc->shift = pps_shift;
198 txc->stabil = pps_stabil;
199 txc->jitcnt = pps_jitcnt;
200 txc->calcnt = pps_calcnt;
201 txc->errcnt = pps_errcnt;
202 txc->stbcnt = pps_stbcnt;
203}
204
205#else /* !CONFIG_NTP_PPS */
206
207static inline s64 ntp_offset_chunk(s64 offset)
208{
209 return shift_right(offset, SHIFT_PLL + time_constant);
210}
211
212static inline void pps_reset_freq_interval(void) {}
213static inline void pps_clear(void) {}
214static inline void pps_dec_valid(void) {}
215static inline void pps_set_freq(s64 freq) {}
216
217static inline int is_error_status(int status)
218{
219 return status & (STA_UNSYNC|STA_CLOCKERR);
220}
221
222static inline void pps_fill_timex(struct timex *txc)
223{
224 /* PPS is not implemented, so these are zero */
225 txc->ppsfreq = 0;
226 txc->jitter = 0;
227 txc->shift = 0;
228 txc->stabil = 0;
229 txc->jitcnt = 0;
230 txc->calcnt = 0;
231 txc->errcnt = 0;
232 txc->stbcnt = 0;
233}
234
235#endif /* CONFIG_NTP_PPS */
236
John Stultz83579292011-11-14 13:06:21 -0800237
238/**
239 * ntp_synced - Returns 1 if the NTP status is not UNSYNC
240 *
241 */
242static inline int ntp_synced(void)
243{
244 return !(time_status & STA_UNSYNC);
245}
246
247
Ingo Molnar53bbfa92008-02-20 07:58:42 +0100248/*
249 * NTP methods:
250 */
john stultz4c7ee8d2006-09-30 23:28:22 -0700251
Ingo Molnar9ce616a2009-02-22 12:42:59 +0100252/*
253 * Update (tick_length, tick_length_base, tick_nsec), based
254 * on (tick_usec, ntp_tick_adj, time_freq):
255 */
Adrian Bunk70bc42f2006-09-30 23:28:29 -0700256static void ntp_update_frequency(void)
257{
Ingo Molnar9ce616a2009-02-22 12:42:59 +0100258 u64 second_length;
Ingo Molnarbc26c312009-02-22 12:17:36 +0100259 u64 new_base;
Adrian Bunk70bc42f2006-09-30 23:28:29 -0700260
Ingo Molnar9ce616a2009-02-22 12:42:59 +0100261 second_length = (u64)(tick_usec * NSEC_PER_USEC * USER_HZ)
262 << NTP_SCALE_SHIFT;
263
Ingo Molnar069569e2009-02-22 16:03:37 +0100264 second_length += ntp_tick_adj;
Ingo Molnar9ce616a2009-02-22 12:42:59 +0100265 second_length += time_freq;
266
Ingo Molnar9ce616a2009-02-22 12:42:59 +0100267 tick_nsec = div_u64(second_length, HZ) >> NTP_SCALE_SHIFT;
Ingo Molnarbc26c312009-02-22 12:17:36 +0100268 new_base = div_u64(second_length, NTP_INTERVAL_FREQ);
john stultzfdcedf72009-02-18 16:02:22 -0800269
270 /*
271 * Don't wait for the next second_overflow, apply
Ingo Molnarbc26c312009-02-22 12:17:36 +0100272 * the change to the tick length immediately:
john stultzfdcedf72009-02-18 16:02:22 -0800273 */
Ingo Molnarbc26c312009-02-22 12:17:36 +0100274 tick_length += new_base - tick_length_base;
275 tick_length_base = new_base;
Adrian Bunk70bc42f2006-09-30 23:28:29 -0700276}
277
Ingo Molnar478b7aa2009-02-22 13:22:23 +0100278static inline s64 ntp_update_offset_fll(s64 offset64, long secs)
Ingo Molnarf9398902009-02-22 12:57:49 +0100279{
280 time_status &= ~STA_MODE;
281
282 if (secs < MINSEC)
Ingo Molnar478b7aa2009-02-22 13:22:23 +0100283 return 0;
Ingo Molnarf9398902009-02-22 12:57:49 +0100284
285 if (!(time_status & STA_FLL) && (secs <= MAXSEC))
Ingo Molnar478b7aa2009-02-22 13:22:23 +0100286 return 0;
Ingo Molnarf9398902009-02-22 12:57:49 +0100287
Ingo Molnarf9398902009-02-22 12:57:49 +0100288 time_status |= STA_MODE;
289
Sasha Levina078c6d2012-03-15 12:36:14 -0400290 return div64_long(offset64 << (NTP_SCALE_SHIFT - SHIFT_FLL), secs);
Ingo Molnarf9398902009-02-22 12:57:49 +0100291}
292
Roman Zippelee9851b2008-05-01 04:34:32 -0700293static void ntp_update_offset(long offset)
294{
Roman Zippelee9851b2008-05-01 04:34:32 -0700295 s64 freq_adj;
Ingo Molnarf9398902009-02-22 12:57:49 +0100296 s64 offset64;
297 long secs;
Roman Zippelee9851b2008-05-01 04:34:32 -0700298
299 if (!(time_status & STA_PLL))
300 return;
301
Sasha Levin52d189f2015-12-03 15:46:48 -0500302 if (!(time_status & STA_NANO)) {
303 /* Make sure the multiplication below won't overflow */
304 offset = clamp(offset, -USEC_PER_SEC, USEC_PER_SEC);
Roman Zippel9f14f662008-05-01 04:34:36 -0700305 offset *= NSEC_PER_USEC;
Sasha Levin52d189f2015-12-03 15:46:48 -0500306 }
Roman Zippelee9851b2008-05-01 04:34:32 -0700307
308 /*
309 * Scale the phase adjustment and
310 * clamp to the operating range.
311 */
Sasha Levin52d189f2015-12-03 15:46:48 -0500312 offset = clamp(offset, -MAXPHASE, MAXPHASE);
Roman Zippelee9851b2008-05-01 04:34:32 -0700313
314 /*
315 * Select how the frequency is to be controlled
316 * and in which mode (PLL or FLL).
317 */
DengChao0af86462015-12-13 12:24:19 +0800318 secs = (long)(__ktime_get_real_seconds() - time_reftime);
Ingo Molnar10dd31a2009-02-22 13:38:40 +0100319 if (unlikely(time_status & STA_FREQHOLD))
Ingo Molnarc7986ac2009-02-22 13:29:09 +0100320 secs = 0;
321
DengChao0af86462015-12-13 12:24:19 +0800322 time_reftime = __ktime_get_real_seconds();
Roman Zippelee9851b2008-05-01 04:34:32 -0700323
Ingo Molnarf9398902009-02-22 12:57:49 +0100324 offset64 = offset;
Miroslav Lichvar8af3c152010-09-07 16:43:46 +0200325 freq_adj = ntp_update_offset_fll(offset64, secs);
Roman Zippel9f14f662008-05-01 04:34:36 -0700326
Miroslav Lichvar8af3c152010-09-07 16:43:46 +0200327 /*
328 * Clamp update interval to reduce PLL gain with low
329 * sampling rate (e.g. intermittent network connection)
330 * to avoid instability.
331 */
332 if (unlikely(secs > 1 << (SHIFT_PLL + 1 + time_constant)))
333 secs = 1 << (SHIFT_PLL + 1 + time_constant);
334
335 freq_adj += (offset64 * secs) <<
336 (NTP_SCALE_SHIFT - 2 * (SHIFT_PLL + 2 + time_constant));
Ingo Molnarf9398902009-02-22 12:57:49 +0100337
338 freq_adj = min(freq_adj + time_freq, MAXFREQ_SCALED);
339
340 time_freq = max(freq_adj, -MAXFREQ_SCALED);
341
342 time_offset = div_s64(offset64 << NTP_SCALE_SHIFT, NTP_INTERVAL_FREQ);
Roman Zippelee9851b2008-05-01 04:34:32 -0700343}
344
Roman Zippelb0ee7552006-09-30 23:28:22 -0700345/**
346 * ntp_clear - Clears the NTP state variables
Roman Zippelb0ee7552006-09-30 23:28:22 -0700347 */
348void ntp_clear(void)
349{
Ingo Molnar53bbfa92008-02-20 07:58:42 +0100350 time_adjust = 0; /* stop active adjtime() */
351 time_status |= STA_UNSYNC;
352 time_maxerror = NTP_PHASE_LIMIT;
353 time_esterror = NTP_PHASE_LIMIT;
Roman Zippelb0ee7552006-09-30 23:28:22 -0700354
355 ntp_update_frequency();
356
Ingo Molnar53bbfa92008-02-20 07:58:42 +0100357 tick_length = tick_length_base;
358 time_offset = 0;
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800359
John Stultz833f32d2015-06-11 15:54:55 -0700360 ntp_next_leap_sec = TIME64_MAX;
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800361 /* Clear PPS state variables */
362 pps_clear();
Roman Zippelb0ee7552006-09-30 23:28:22 -0700363}
364
John Stultzea7cf49a2011-11-14 13:18:07 -0800365
366u64 ntp_tick_length(void)
367{
John Stultza076b212013-03-22 11:52:03 -0700368 return tick_length;
John Stultzea7cf49a2011-11-14 13:18:07 -0800369}
370
John Stultz833f32d2015-06-11 15:54:55 -0700371/**
372 * ntp_get_next_leap - Returns the next leapsecond in CLOCK_REALTIME ktime_t
373 *
374 * Provides the time of the next leapsecond against CLOCK_REALTIME in
375 * a ktime_t format. Returns KTIME_MAX if no leapsecond is pending.
376 */
377ktime_t ntp_get_next_leap(void)
378{
379 ktime_t ret;
380
381 if ((time_state == TIME_INS) && (time_status & STA_INS))
382 return ktime_set(ntp_next_leap_sec, 0);
383 ret.tv64 = KTIME_MAX;
384 return ret;
385}
John Stultzea7cf49a2011-11-14 13:18:07 -0800386
john stultz4c7ee8d2006-09-30 23:28:22 -0700387/*
388 * this routine handles the overflow of the microsecond field
389 *
390 * The tricky bits of code to handle the accurate clock support
391 * were provided by Dave Mills (Mills@UDEL.EDU) of NTP fame.
392 * They were originally developed for SUN and DEC kernels.
393 * All the kudos should go to Dave for this stuff.
John Stultz6b43ae82012-03-15 13:04:03 -0700394 *
395 * Also handles leap second processing, and returns leap offset
john stultz4c7ee8d2006-09-30 23:28:22 -0700396 */
John Stultz6b43ae82012-03-15 13:04:03 -0700397int second_overflow(unsigned long secs)
john stultz4c7ee8d2006-09-30 23:28:22 -0700398{
Ingo Molnar39854fe2009-02-22 16:06:58 +0100399 s64 delta;
John Stultz6b43ae82012-03-15 13:04:03 -0700400 int leap = 0;
john stultz4c7ee8d2006-09-30 23:28:22 -0700401
John Stultz6b43ae82012-03-15 13:04:03 -0700402 /*
403 * Leap second processing. If in leap-insert state at the end of the
404 * day, the system clock is set back one second; if in leap-delete
405 * state, the system clock is set ahead one second.
406 */
407 switch (time_state) {
408 case TIME_OK:
John Stultz833f32d2015-06-11 15:54:55 -0700409 if (time_status & STA_INS) {
John Stultz6b43ae82012-03-15 13:04:03 -0700410 time_state = TIME_INS;
John Stultz833f32d2015-06-11 15:54:55 -0700411 ntp_next_leap_sec = secs + SECS_PER_DAY -
412 (secs % SECS_PER_DAY);
413 } else if (time_status & STA_DEL) {
John Stultz6b43ae82012-03-15 13:04:03 -0700414 time_state = TIME_DEL;
John Stultz833f32d2015-06-11 15:54:55 -0700415 ntp_next_leap_sec = secs + SECS_PER_DAY -
416 ((secs+1) % SECS_PER_DAY);
417 }
John Stultz6b43ae82012-03-15 13:04:03 -0700418 break;
419 case TIME_INS:
John Stultz833f32d2015-06-11 15:54:55 -0700420 if (!(time_status & STA_INS)) {
421 ntp_next_leap_sec = TIME64_MAX;
John Stultz6b1859d2012-07-13 01:21:50 -0400422 time_state = TIME_OK;
John Stultz833f32d2015-06-11 15:54:55 -0700423 } else if (secs % SECS_PER_DAY == 0) {
John Stultz6b43ae82012-03-15 13:04:03 -0700424 leap = -1;
425 time_state = TIME_OOP;
426 printk(KERN_NOTICE
427 "Clock: inserting leap second 23:59:60 UTC\n");
428 }
429 break;
430 case TIME_DEL:
John Stultz833f32d2015-06-11 15:54:55 -0700431 if (!(time_status & STA_DEL)) {
432 ntp_next_leap_sec = TIME64_MAX;
John Stultz6b1859d2012-07-13 01:21:50 -0400433 time_state = TIME_OK;
John Stultz833f32d2015-06-11 15:54:55 -0700434 } else if ((secs + 1) % SECS_PER_DAY == 0) {
John Stultz6b43ae82012-03-15 13:04:03 -0700435 leap = 1;
John Stultz833f32d2015-06-11 15:54:55 -0700436 ntp_next_leap_sec = TIME64_MAX;
John Stultz6b43ae82012-03-15 13:04:03 -0700437 time_state = TIME_WAIT;
438 printk(KERN_NOTICE
439 "Clock: deleting leap second 23:59:59 UTC\n");
440 }
441 break;
442 case TIME_OOP:
John Stultz833f32d2015-06-11 15:54:55 -0700443 ntp_next_leap_sec = TIME64_MAX;
John Stultz6b43ae82012-03-15 13:04:03 -0700444 time_state = TIME_WAIT;
445 break;
John Stultz6b43ae82012-03-15 13:04:03 -0700446 case TIME_WAIT:
447 if (!(time_status & (STA_INS | STA_DEL)))
448 time_state = TIME_OK;
449 break;
450 }
451
452
john stultz4c7ee8d2006-09-30 23:28:22 -0700453 /* Bump the maxerror field */
Roman Zippel074b3b82008-05-01 04:34:34 -0700454 time_maxerror += MAXFREQ / NSEC_PER_USEC;
john stultz4c7ee8d2006-09-30 23:28:22 -0700455 if (time_maxerror > NTP_PHASE_LIMIT) {
456 time_maxerror = NTP_PHASE_LIMIT;
457 time_status |= STA_UNSYNC;
458 }
459
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800460 /* Compute the phase adjustment for the next second */
Ingo Molnar39854fe2009-02-22 16:06:58 +0100461 tick_length = tick_length_base;
462
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800463 delta = ntp_offset_chunk(time_offset);
Ingo Molnar39854fe2009-02-22 16:06:58 +0100464 time_offset -= delta;
465 tick_length += delta;
john stultz4c7ee8d2006-09-30 23:28:22 -0700466
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800467 /* Check PPS signal */
468 pps_dec_valid();
469
Ingo Molnar3c972c22009-02-22 12:06:57 +0100470 if (!time_adjust)
John Stultzbd331262011-11-14 13:48:36 -0800471 goto out;
Ingo Molnar3c972c22009-02-22 12:06:57 +0100472
473 if (time_adjust > MAX_TICKADJ) {
474 time_adjust -= MAX_TICKADJ;
475 tick_length += MAX_TICKADJ_SCALED;
John Stultzbd331262011-11-14 13:48:36 -0800476 goto out;
john stultz4c7ee8d2006-09-30 23:28:22 -0700477 }
Ingo Molnar3c972c22009-02-22 12:06:57 +0100478
479 if (time_adjust < -MAX_TICKADJ) {
480 time_adjust += MAX_TICKADJ;
481 tick_length -= MAX_TICKADJ_SCALED;
John Stultzbd331262011-11-14 13:48:36 -0800482 goto out;
Ingo Molnar3c972c22009-02-22 12:06:57 +0100483 }
484
485 tick_length += (s64)(time_adjust * NSEC_PER_USEC / NTP_INTERVAL_FREQ)
486 << NTP_SCALE_SHIFT;
487 time_adjust = 0;
John Stultz6b43ae82012-03-15 13:04:03 -0700488
John Stultzbd331262011-11-14 13:48:36 -0800489out:
John Stultz6b43ae82012-03-15 13:04:03 -0700490 return leap;
john stultz4c7ee8d2006-09-30 23:28:22 -0700491}
492
Xunlei Pang3c00a1f2015-04-01 20:34:23 -0700493#ifdef CONFIG_GENERIC_CMOS_UPDATE
Xunlei Pang7494e9e2015-07-26 18:45:39 +0800494int __weak update_persistent_clock(struct timespec now)
495{
496 return -ENODEV;
497}
498
Xunlei Pang3c00a1f2015-04-01 20:34:23 -0700499int __weak update_persistent_clock64(struct timespec64 now64)
500{
501 struct timespec now;
502
503 now = timespec64_to_timespec(now64);
504 return update_persistent_clock(now);
505}
506#endif
507
Jason Gunthorpe023f3332012-12-17 14:30:53 -0700508#if defined(CONFIG_GENERIC_CMOS_UPDATE) || defined(CONFIG_RTC_SYSTOHC)
Maciej W. Rozyckieb3f9382008-09-22 14:42:40 -0700509static void sync_cmos_clock(struct work_struct *work);
Thomas Gleixner82644452007-07-21 04:37:37 -0700510
Maciej W. Rozyckieb3f9382008-09-22 14:42:40 -0700511static DECLARE_DELAYED_WORK(sync_cmos_work, sync_cmos_clock);
Thomas Gleixner82644452007-07-21 04:37:37 -0700512
Maciej W. Rozyckieb3f9382008-09-22 14:42:40 -0700513static void sync_cmos_clock(struct work_struct *work)
john stultz4c7ee8d2006-09-30 23:28:22 -0700514{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000515 struct timespec64 now;
Arnd Bergmann5fd96c42015-09-28 22:21:30 +0200516 struct timespec64 next;
Thomas Gleixner82644452007-07-21 04:37:37 -0700517 int fail = 1;
518
519 /*
520 * If we have an externally synchronized Linux clock, then update
521 * CMOS clock accordingly every ~11 minutes. Set_rtc_mmss() has to be
522 * called as close as possible to 500 ms before the new second starts.
523 * This code is run on a timer. If the clock is set, that timer
524 * may not expire at the correct time. Thus, we adjust...
Miroslav Lichvara97ad0c2013-08-01 19:31:35 +0200525 * We want the clock to be within a couple of ticks from the target.
Thomas Gleixner82644452007-07-21 04:37:37 -0700526 */
Ingo Molnar53bbfa92008-02-20 07:58:42 +0100527 if (!ntp_synced()) {
Thomas Gleixner82644452007-07-21 04:37:37 -0700528 /*
529 * Not synced, exit, do not restart a timer (if one is
530 * running, let it run out).
531 */
532 return;
Ingo Molnar53bbfa92008-02-20 07:58:42 +0100533 }
Thomas Gleixner82644452007-07-21 04:37:37 -0700534
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000535 getnstimeofday64(&now);
Miroslav Lichvara97ad0c2013-08-01 19:31:35 +0200536 if (abs(now.tv_nsec - (NSEC_PER_SEC / 2)) <= tick_nsec * 5) {
Xunlei Pang9a4a4452015-01-22 02:31:55 +0000537 struct timespec64 adjust = now;
Prarit Bhargava84e345e2013-02-08 17:59:53 -0500538
Jason Gunthorpe023f3332012-12-17 14:30:53 -0700539 fail = -ENODEV;
Prarit Bhargava84e345e2013-02-08 17:59:53 -0500540 if (persistent_clock_is_local)
541 adjust.tv_sec -= (sys_tz.tz_minuteswest * 60);
Jason Gunthorpe023f3332012-12-17 14:30:53 -0700542#ifdef CONFIG_GENERIC_CMOS_UPDATE
Xunlei Pang3c00a1f2015-04-01 20:34:23 -0700543 fail = update_persistent_clock64(adjust);
Jason Gunthorpe023f3332012-12-17 14:30:53 -0700544#endif
Xunlei Pang3c00a1f2015-04-01 20:34:23 -0700545
Jason Gunthorpe023f3332012-12-17 14:30:53 -0700546#ifdef CONFIG_RTC_SYSTOHC
547 if (fail == -ENODEV)
Prarit Bhargava84e345e2013-02-08 17:59:53 -0500548 fail = rtc_set_ntp_time(adjust);
Jason Gunthorpe023f3332012-12-17 14:30:53 -0700549#endif
550 }
Thomas Gleixner82644452007-07-21 04:37:37 -0700551
Maciej W. Rozycki4ff4b9e2008-09-05 14:05:31 -0700552 next.tv_nsec = (NSEC_PER_SEC / 2) - now.tv_nsec - (TICK_NSEC / 2);
Thomas Gleixner82644452007-07-21 04:37:37 -0700553 if (next.tv_nsec <= 0)
554 next.tv_nsec += NSEC_PER_SEC;
555
Jason Gunthorpe023f3332012-12-17 14:30:53 -0700556 if (!fail || fail == -ENODEV)
Thomas Gleixner82644452007-07-21 04:37:37 -0700557 next.tv_sec = 659;
558 else
559 next.tv_sec = 0;
560
561 if (next.tv_nsec >= NSEC_PER_SEC) {
562 next.tv_sec++;
563 next.tv_nsec -= NSEC_PER_SEC;
564 }
Shaibal Duttae8b17592014-01-31 11:18:24 -0800565 queue_delayed_work(system_power_efficient_wq,
Arnd Bergmann5fd96c42015-09-28 22:21:30 +0200566 &sync_cmos_work, timespec64_to_jiffies(&next));
john stultz4c7ee8d2006-09-30 23:28:22 -0700567}
568
John Stultz7bd36012013-09-11 16:50:56 -0700569void ntp_notify_cmos_timer(void)
Thomas Gleixner82644452007-07-21 04:37:37 -0700570{
Shaibal Duttae8b17592014-01-31 11:18:24 -0800571 queue_delayed_work(system_power_efficient_wq, &sync_cmos_work, 0);
Thomas Gleixner82644452007-07-21 04:37:37 -0700572}
573
574#else
John Stultz7bd36012013-09-11 16:50:56 -0700575void ntp_notify_cmos_timer(void) { }
Thomas Gleixner82644452007-07-21 04:37:37 -0700576#endif
577
Ingo Molnar80f225712009-02-22 15:15:32 +0100578
579/*
580 * Propagate a new txc->status value into the NTP state:
581 */
John Stultz7d489d12014-07-16 21:04:01 +0000582static inline void process_adj_status(struct timex *txc, struct timespec64 *ts)
Ingo Molnar80f225712009-02-22 15:15:32 +0100583{
Ingo Molnar80f225712009-02-22 15:15:32 +0100584 if ((time_status & STA_PLL) && !(txc->status & STA_PLL)) {
585 time_state = TIME_OK;
586 time_status = STA_UNSYNC;
John Stultz833f32d2015-06-11 15:54:55 -0700587 ntp_next_leap_sec = TIME64_MAX;
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800588 /* restart PPS frequency calibration */
589 pps_reset_freq_interval();
Ingo Molnar80f225712009-02-22 15:15:32 +0100590 }
Ingo Molnar80f225712009-02-22 15:15:32 +0100591
592 /*
593 * If we turn on PLL adjustments then reset the
594 * reference time to current time.
595 */
596 if (!(time_status & STA_PLL) && (txc->status & STA_PLL))
DengChao0af86462015-12-13 12:24:19 +0800597 time_reftime = __ktime_get_real_seconds();
Ingo Molnar80f225712009-02-22 15:15:32 +0100598
John Stultza2a5ac82009-02-26 09:46:14 -0800599 /* only set allowed bits */
600 time_status &= STA_RONLY;
Ingo Molnar80f225712009-02-22 15:15:32 +0100601 time_status |= txc->status & ~STA_RONLY;
Ingo Molnar80f225712009-02-22 15:15:32 +0100602}
Richard Cochrancd5398b2012-04-27 10:12:41 +0200603
John Stultza076b212013-03-22 11:52:03 -0700604
John Stultzcc244dd2012-05-03 12:30:07 -0700605static inline void process_adjtimex_modes(struct timex *txc,
John Stultz7d489d12014-07-16 21:04:01 +0000606 struct timespec64 *ts,
John Stultzcc244dd2012-05-03 12:30:07 -0700607 s32 *time_tai)
Ingo Molnar80f225712009-02-22 15:15:32 +0100608{
609 if (txc->modes & ADJ_STATUS)
610 process_adj_status(txc, ts);
611
612 if (txc->modes & ADJ_NANO)
613 time_status |= STA_NANO;
Ingo Molnare9629162009-02-22 15:35:18 +0100614
Ingo Molnar80f225712009-02-22 15:15:32 +0100615 if (txc->modes & ADJ_MICRO)
616 time_status &= ~STA_NANO;
617
618 if (txc->modes & ADJ_FREQUENCY) {
Ingo Molnar2b9d1492009-02-22 15:48:43 +0100619 time_freq = txc->freq * PPM_SCALE;
Ingo Molnar80f225712009-02-22 15:15:32 +0100620 time_freq = min(time_freq, MAXFREQ_SCALED);
621 time_freq = max(time_freq, -MAXFREQ_SCALED);
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800622 /* update pps_freq */
623 pps_set_freq(time_freq);
Ingo Molnar80f225712009-02-22 15:15:32 +0100624 }
625
626 if (txc->modes & ADJ_MAXERROR)
627 time_maxerror = txc->maxerror;
Ingo Molnare9629162009-02-22 15:35:18 +0100628
Ingo Molnar80f225712009-02-22 15:15:32 +0100629 if (txc->modes & ADJ_ESTERROR)
630 time_esterror = txc->esterror;
631
632 if (txc->modes & ADJ_TIMECONST) {
633 time_constant = txc->constant;
634 if (!(time_status & STA_NANO))
635 time_constant += 4;
636 time_constant = min(time_constant, (long)MAXTC);
637 time_constant = max(time_constant, 0l);
638 }
639
640 if (txc->modes & ADJ_TAI && txc->constant > 0)
John Stultzcc244dd2012-05-03 12:30:07 -0700641 *time_tai = txc->constant;
Ingo Molnar80f225712009-02-22 15:15:32 +0100642
643 if (txc->modes & ADJ_OFFSET)
644 ntp_update_offset(txc->offset);
Ingo Molnare9629162009-02-22 15:35:18 +0100645
Ingo Molnar80f225712009-02-22 15:15:32 +0100646 if (txc->modes & ADJ_TICK)
647 tick_usec = txc->tick;
648
649 if (txc->modes & (ADJ_TICK|ADJ_FREQUENCY|ADJ_OFFSET))
650 ntp_update_frequency();
651}
652
john stultz4c7ee8d2006-09-30 23:28:22 -0700653
John Stultzad460962013-03-22 11:59:04 -0700654
655/**
656 * ntp_validate_timex - Ensures the timex is ok for use in do_adjtimex
657 */
658int ntp_validate_timex(struct timex *txc)
659{
Roman Zippel916c7a82008-08-20 16:46:08 -0700660 if (txc->modes & ADJ_ADJTIME) {
Roman Zippeleea83d82008-05-01 04:34:33 -0700661 /* singleshot must not be used with any other mode bits */
Roman Zippel916c7a82008-08-20 16:46:08 -0700662 if (!(txc->modes & ADJ_OFFSET_SINGLESHOT))
john stultz4c7ee8d2006-09-30 23:28:22 -0700663 return -EINVAL;
Roman Zippel916c7a82008-08-20 16:46:08 -0700664 if (!(txc->modes & ADJ_OFFSET_READONLY) &&
665 !capable(CAP_SYS_TIME))
666 return -EPERM;
667 } else {
668 /* In order to modify anything, you gotta be super-user! */
669 if (txc->modes && !capable(CAP_SYS_TIME))
670 return -EPERM;
Ingo Molnar53bbfa92008-02-20 07:58:42 +0100671 /*
672 * if the quartz is off by more than 10% then
673 * something is VERY wrong!
674 */
Roman Zippel916c7a82008-08-20 16:46:08 -0700675 if (txc->modes & ADJ_TICK &&
676 (txc->tick < 900000/USER_HZ ||
677 txc->tick > 1100000/USER_HZ))
Ingo Molnare9629162009-02-22 15:35:18 +0100678 return -EINVAL;
John Stultz52bfb362007-11-26 20:42:19 +0100679 }
john stultz4c7ee8d2006-09-30 23:28:22 -0700680
John Stultz37cf4dc2015-12-03 22:09:31 -0500681 if (txc->modes & ADJ_SETOFFSET) {
682 /* In order to inject time, you gotta be super-user! */
683 if (!capable(CAP_SYS_TIME))
684 return -EPERM;
685
686 if (!timeval_inject_offset_valid(&txc->time))
687 return -EINVAL;
688 }
John Stultzad460962013-03-22 11:59:04 -0700689
John Stultz29183a72015-02-09 23:30:36 -0800690 /*
691 * Check for potential multiplication overflows that can
692 * only happen on 64-bit systems:
693 */
694 if ((txc->modes & ADJ_FREQUENCY) && (BITS_PER_LONG == 64)) {
695 if (LLONG_MIN / PPM_SCALE > txc->freq)
Sasha Levin5e5aeb42014-12-03 19:25:05 -0500696 return -EINVAL;
John Stultz29183a72015-02-09 23:30:36 -0800697 if (LLONG_MAX / PPM_SCALE < txc->freq)
Sasha Levin5e5aeb42014-12-03 19:25:05 -0500698 return -EINVAL;
699 }
700
John Stultzad460962013-03-22 11:59:04 -0700701 return 0;
702}
703
704
705/*
706 * adjtimex mainly allows reading (and writing, if superuser) of
707 * kernel time-keeping variables. used by xntpd.
708 */
John Stultz7d489d12014-07-16 21:04:01 +0000709int __do_adjtimex(struct timex *txc, struct timespec64 *ts, s32 *time_tai)
John Stultzad460962013-03-22 11:59:04 -0700710{
John Stultzad460962013-03-22 11:59:04 -0700711 int result;
712
Roman Zippel916c7a82008-08-20 16:46:08 -0700713 if (txc->modes & ADJ_ADJTIME) {
714 long save_adjust = time_adjust;
715
716 if (!(txc->modes & ADJ_OFFSET_READONLY)) {
717 /* adjtime() is independent from ntp_adjtime() */
718 time_adjust = txc->offset;
719 ntp_update_frequency();
720 }
721 txc->offset = save_adjust;
Ingo Molnare9629162009-02-22 15:35:18 +0100722 } else {
723
724 /* If there are input parameters, then process them: */
725 if (txc->modes)
John Stultz87ace392013-03-22 12:28:15 -0700726 process_adjtimex_modes(txc, ts, time_tai);
Ingo Molnare9629162009-02-22 15:35:18 +0100727
728 txc->offset = shift_right(time_offset * NTP_INTERVAL_FREQ,
729 NTP_SCALE_SHIFT);
730 if (!(time_status & STA_NANO))
731 txc->offset /= NSEC_PER_USEC;
Roman Zippel916c7a82008-08-20 16:46:08 -0700732 }
Roman Zippel916c7a82008-08-20 16:46:08 -0700733
Roman Zippeleea83d82008-05-01 04:34:33 -0700734 result = time_state; /* mostly `TIME_OK' */
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800735 /* check for errors */
736 if (is_error_status(time_status))
john stultz4c7ee8d2006-09-30 23:28:22 -0700737 result = TIME_ERROR;
738
Roman Zippeld40e9442008-09-22 14:42:44 -0700739 txc->freq = shift_right((time_freq >> PPM_SCALE_INV_SHIFT) *
Ingo Molnar2b9d1492009-02-22 15:48:43 +0100740 PPM_SCALE_INV, NTP_SCALE_SHIFT);
john stultz4c7ee8d2006-09-30 23:28:22 -0700741 txc->maxerror = time_maxerror;
742 txc->esterror = time_esterror;
743 txc->status = time_status;
744 txc->constant = time_constant;
Adrian Bunk70bc42f2006-09-30 23:28:29 -0700745 txc->precision = 1;
Roman Zippel074b3b82008-05-01 04:34:34 -0700746 txc->tolerance = MAXFREQ_SCALED / PPM_SCALE;
john stultz4c7ee8d2006-09-30 23:28:22 -0700747 txc->tick = tick_usec;
John Stultz87ace392013-03-22 12:28:15 -0700748 txc->tai = *time_tai;
john stultz4c7ee8d2006-09-30 23:28:22 -0700749
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800750 /* fill PPS status fields */
751 pps_fill_timex(txc);
Ingo Molnare9629162009-02-22 15:35:18 +0100752
John Stultz7d489d12014-07-16 21:04:01 +0000753 txc->time.tv_sec = (time_t)ts->tv_sec;
John Stultz87ace392013-03-22 12:28:15 -0700754 txc->time.tv_usec = ts->tv_nsec;
Roman Zippeleea83d82008-05-01 04:34:33 -0700755 if (!(time_status & STA_NANO))
756 txc->time.tv_usec /= NSEC_PER_USEC;
Roman Zippelee9851b2008-05-01 04:34:32 -0700757
John Stultz96efdcf2015-06-11 15:54:56 -0700758 /* Handle leapsec adjustments */
759 if (unlikely(ts->tv_sec >= ntp_next_leap_sec)) {
760 if ((time_state == TIME_INS) && (time_status & STA_INS)) {
761 result = TIME_OOP;
762 txc->tai++;
763 txc->time.tv_sec--;
764 }
765 if ((time_state == TIME_DEL) && (time_status & STA_DEL)) {
766 result = TIME_WAIT;
767 txc->tai--;
768 txc->time.tv_sec++;
769 }
770 if ((time_state == TIME_OOP) &&
771 (ts->tv_sec == ntp_next_leap_sec)) {
772 result = TIME_WAIT;
773 }
774 }
775
Roman Zippelee9851b2008-05-01 04:34:32 -0700776 return result;
john stultz4c7ee8d2006-09-30 23:28:22 -0700777}
Roman Zippel10a398d2008-03-04 15:14:26 -0800778
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800779#ifdef CONFIG_NTP_PPS
780
781/* actually struct pps_normtime is good old struct timespec, but it is
782 * semantically different (and it is the reason why it was invented):
783 * pps_normtime.nsec has a range of ( -NSEC_PER_SEC / 2, NSEC_PER_SEC / 2 ]
784 * while timespec.tv_nsec has a range of [0, NSEC_PER_SEC) */
785struct pps_normtime {
Arnd Bergmann7ec88e42015-09-28 22:21:28 +0200786 s64 sec; /* seconds */
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800787 long nsec; /* nanoseconds */
788};
789
790/* normalize the timestamp so that nsec is in the
791 ( -NSEC_PER_SEC / 2, NSEC_PER_SEC / 2 ] interval */
Arnd Bergmann7ec88e42015-09-28 22:21:28 +0200792static inline struct pps_normtime pps_normalize_ts(struct timespec64 ts)
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800793{
794 struct pps_normtime norm = {
795 .sec = ts.tv_sec,
796 .nsec = ts.tv_nsec
797 };
798
799 if (norm.nsec > (NSEC_PER_SEC >> 1)) {
800 norm.nsec -= NSEC_PER_SEC;
801 norm.sec++;
802 }
803
804 return norm;
805}
806
807/* get current phase correction and jitter */
808static inline long pps_phase_filter_get(long *jitter)
809{
810 *jitter = pps_tf[0] - pps_tf[1];
811 if (*jitter < 0)
812 *jitter = -*jitter;
813
814 /* TODO: test various filters */
815 return pps_tf[0];
816}
817
818/* add the sample to the phase filter */
819static inline void pps_phase_filter_add(long err)
820{
821 pps_tf[2] = pps_tf[1];
822 pps_tf[1] = pps_tf[0];
823 pps_tf[0] = err;
824}
825
826/* decrease frequency calibration interval length.
827 * It is halved after four consecutive unstable intervals.
828 */
829static inline void pps_dec_freq_interval(void)
830{
831 if (--pps_intcnt <= -PPS_INTCOUNT) {
832 pps_intcnt = -PPS_INTCOUNT;
833 if (pps_shift > PPS_INTMIN) {
834 pps_shift--;
835 pps_intcnt = 0;
836 }
837 }
838}
839
840/* increase frequency calibration interval length.
841 * It is doubled after four consecutive stable intervals.
842 */
843static inline void pps_inc_freq_interval(void)
844{
845 if (++pps_intcnt >= PPS_INTCOUNT) {
846 pps_intcnt = PPS_INTCOUNT;
847 if (pps_shift < PPS_INTMAX) {
848 pps_shift++;
849 pps_intcnt = 0;
850 }
851 }
852}
853
854/* update clock frequency based on MONOTONIC_RAW clock PPS signal
855 * timestamps
856 *
857 * At the end of the calibration interval the difference between the
858 * first and last MONOTONIC_RAW clock timestamps divided by the length
859 * of the interval becomes the frequency update. If the interval was
860 * too long, the data are discarded.
861 * Returns the difference between old and new frequency values.
862 */
863static long hardpps_update_freq(struct pps_normtime freq_norm)
864{
865 long delta, delta_mod;
866 s64 ftemp;
867
868 /* check if the frequency interval was too long */
869 if (freq_norm.sec > (2 << pps_shift)) {
870 time_status |= STA_PPSERROR;
871 pps_errcnt++;
872 pps_dec_freq_interval();
John Stultz6d9bcb62014-06-04 16:11:43 -0700873 printk_deferred(KERN_ERR
Arnd Bergmann7ec88e42015-09-28 22:21:28 +0200874 "hardpps: PPSERROR: interval too long - %lld s\n",
John Stultz6d9bcb62014-06-04 16:11:43 -0700875 freq_norm.sec);
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800876 return 0;
877 }
878
879 /* here the raw frequency offset and wander (stability) is
880 * calculated. If the wander is less than the wander threshold
881 * the interval is increased; otherwise it is decreased.
882 */
883 ftemp = div_s64(((s64)(-freq_norm.nsec)) << NTP_SCALE_SHIFT,
884 freq_norm.sec);
885 delta = shift_right(ftemp - pps_freq, NTP_SCALE_SHIFT);
886 pps_freq = ftemp;
887 if (delta > PPS_MAXWANDER || delta < -PPS_MAXWANDER) {
John Stultz6d9bcb62014-06-04 16:11:43 -0700888 printk_deferred(KERN_WARNING
889 "hardpps: PPSWANDER: change=%ld\n", delta);
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800890 time_status |= STA_PPSWANDER;
891 pps_stbcnt++;
892 pps_dec_freq_interval();
893 } else { /* good sample */
894 pps_inc_freq_interval();
895 }
896
897 /* the stability metric is calculated as the average of recent
898 * frequency changes, but is used only for performance
899 * monitoring
900 */
901 delta_mod = delta;
902 if (delta_mod < 0)
903 delta_mod = -delta_mod;
904 pps_stabil += (div_s64(((s64)delta_mod) <<
905 (NTP_SCALE_SHIFT - SHIFT_USEC),
906 NSEC_PER_USEC) - pps_stabil) >> PPS_INTMIN;
907
908 /* if enabled, the system clock frequency is updated */
909 if ((time_status & STA_PPSFREQ) != 0 &&
910 (time_status & STA_FREQHOLD) == 0) {
911 time_freq = pps_freq;
912 ntp_update_frequency();
913 }
914
915 return delta;
916}
917
918/* correct REALTIME clock phase error against PPS signal */
919static void hardpps_update_phase(long error)
920{
921 long correction = -error;
922 long jitter;
923
924 /* add the sample to the median filter */
925 pps_phase_filter_add(correction);
926 correction = pps_phase_filter_get(&jitter);
927
928 /* Nominal jitter is due to PPS signal noise. If it exceeds the
929 * threshold, the sample is discarded; otherwise, if so enabled,
930 * the time offset is updated.
931 */
932 if (jitter > (pps_jitter << PPS_POPCORN)) {
John Stultz6d9bcb62014-06-04 16:11:43 -0700933 printk_deferred(KERN_WARNING
934 "hardpps: PPSJITTER: jitter=%ld, limit=%ld\n",
935 jitter, (pps_jitter << PPS_POPCORN));
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800936 time_status |= STA_PPSJITTER;
937 pps_jitcnt++;
938 } else if (time_status & STA_PPSTIME) {
939 /* correct the time using the phase offset */
940 time_offset = div_s64(((s64)correction) << NTP_SCALE_SHIFT,
941 NTP_INTERVAL_FREQ);
942 /* cancel running adjtime() */
943 time_adjust = 0;
944 }
945 /* update jitter */
946 pps_jitter += (jitter - pps_jitter) >> PPS_INTMIN;
947}
948
949/*
John Stultzaa6f9c592013-03-22 11:31:29 -0700950 * __hardpps() - discipline CPU clock oscillator to external PPS signal
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800951 *
952 * This routine is called at each PPS signal arrival in order to
953 * discipline the CPU clock oscillator to the PPS signal. It takes two
954 * parameters: REALTIME and MONOTONIC_RAW clock timestamps. The former
955 * is used to correct clock phase error and the latter is used to
956 * correct the frequency.
957 *
958 * This code is based on David Mills's reference nanokernel
959 * implementation. It was mostly rewritten but keeps the same idea.
960 */
Arnd Bergmann7ec88e42015-09-28 22:21:28 +0200961void __hardpps(const struct timespec64 *phase_ts, const struct timespec64 *raw_ts)
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800962{
963 struct pps_normtime pts_norm, freq_norm;
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800964
965 pts_norm = pps_normalize_ts(*phase_ts);
966
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800967 /* clear the error bits, they will be set again if needed */
968 time_status &= ~(STA_PPSJITTER | STA_PPSWANDER | STA_PPSERROR);
969
970 /* indicate signal presence */
971 time_status |= STA_PPSSIGNAL;
972 pps_valid = PPS_VALID;
973
974 /* when called for the first time,
975 * just start the frequency interval */
976 if (unlikely(pps_fbase.tv_sec == 0)) {
977 pps_fbase = *raw_ts;
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800978 return;
979 }
980
981 /* ok, now we have a base for frequency calculation */
Arnd Bergmann7ec88e42015-09-28 22:21:28 +0200982 freq_norm = pps_normalize_ts(timespec64_sub(*raw_ts, pps_fbase));
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800983
984 /* check that the signal is in the range
985 * [1s - MAXFREQ us, 1s + MAXFREQ us], otherwise reject it */
986 if ((freq_norm.sec == 0) ||
987 (freq_norm.nsec > MAXFREQ * freq_norm.sec) ||
988 (freq_norm.nsec < -MAXFREQ * freq_norm.sec)) {
989 time_status |= STA_PPSJITTER;
990 /* restart the frequency calibration interval */
991 pps_fbase = *raw_ts;
John Stultz6d9bcb62014-06-04 16:11:43 -0700992 printk_deferred(KERN_ERR "hardpps: PPSJITTER: bad pulse\n");
Alexander Gordeev025b40a2011-01-12 17:00:56 -0800993 return;
994 }
995
996 /* signal is ok */
997
998 /* check if the current frequency interval is finished */
999 if (freq_norm.sec >= (1 << pps_shift)) {
1000 pps_calcnt++;
1001 /* restart the frequency calibration interval */
1002 pps_fbase = *raw_ts;
1003 hardpps_update_freq(freq_norm);
1004 }
1005
1006 hardpps_update_phase(pts_norm.nsec);
1007
Alexander Gordeev025b40a2011-01-12 17:00:56 -08001008}
Alexander Gordeev025b40a2011-01-12 17:00:56 -08001009#endif /* CONFIG_NTP_PPS */
1010
Roman Zippel10a398d2008-03-04 15:14:26 -08001011static int __init ntp_tick_adj_setup(char *str)
1012{
Fabian Frederickcdafb932014-05-09 20:32:25 +02001013 int rc = kstrtol(str, 0, (long *)&ntp_tick_adj);
1014
1015 if (rc)
1016 return rc;
Ingo Molnar069569e2009-02-22 16:03:37 +01001017 ntp_tick_adj <<= NTP_SCALE_SHIFT;
1018
Roman Zippel10a398d2008-03-04 15:14:26 -08001019 return 1;
1020}
1021
1022__setup("ntp_tick_adj=", ntp_tick_adj_setup);
Roman Zippel7dffa3c2008-05-01 04:34:41 -07001023
1024void __init ntp_init(void)
1025{
1026 ntp_clear();
Roman Zippel7dffa3c2008-05-01 04:34:41 -07001027}