kern_ntptime.c revision 104881
1155852Sgallatin/***********************************************************************
2155852Sgallatin *								       *
3175365Sgallatin * Copyright (c) David L. Mills 1993-2001			       *
4155852Sgallatin *								       *
5155852Sgallatin * Permission to use, copy, modify, and distribute this software and   *
6155852Sgallatin * its documentation for any purpose and without fee is hereby	       *
7155852Sgallatin * granted, provided that the above copyright notice appears in all    *
8155852Sgallatin * copies and that both the copyright notice and this permission       *
9155852Sgallatin * notice appear in supporting documentation, and that the name	       *
10155852Sgallatin * University of Delaware not be used in advertising or publicity      *
11155852Sgallatin * pertaining to distribution of the software without specific,	       *
12171405Sgallatin * written prior permission. The University of Delaware makes no       *
13155852Sgallatin * representations about the suitability this software for any	       *
14155852Sgallatin * purpose. It is provided "as is" without express or implied	       *
15155852Sgallatin * warranty.							       *
16155852Sgallatin *								       *
17155852Sgallatin **********************************************************************/
18155852Sgallatin
19155852Sgallatin/*
20155852Sgallatin * Adapted from the original sources for FreeBSD and timecounters by:
21155852Sgallatin * Poul-Henning Kamp <phk@FreeBSD.org>.
22155852Sgallatin *
23155852Sgallatin * The 32bit version of the "LP" macros seems a bit past its "sell by"
24155852Sgallatin * date so I have retained only the 64bit version and included it directly
25155852Sgallatin * in this file.
26155852Sgallatin *
27155852Sgallatin * Only minor changes done to interface with the timecounters over in
28155852Sgallatin * sys/kern/kern_clock.c.   Some of the comments below may be (even more)
29155852Sgallatin * confusing and/or plain wrong in that context.
30155852Sgallatin *
31159612Sgallatin * $FreeBSD: head/sys/kern/kern_ntptime.c 104881 2002-10-11 10:36:22Z phk $
32159612Sgallatin */
33155852Sgallatin
34159612Sgallatin#include "opt_ntp.h"
35159612Sgallatin
36159612Sgallatin#include <sys/param.h>
37159612Sgallatin#include <sys/systm.h>
38155852Sgallatin#include <sys/sysproto.h>
39155852Sgallatin#include <sys/kernel.h>
40155852Sgallatin#include <sys/proc.h>
41155852Sgallatin#include <sys/lock.h>
42155852Sgallatin#include <sys/mutex.h>
43155852Sgallatin#include <sys/time.h>
44155852Sgallatin#include <sys/timex.h>
45155852Sgallatin#include <sys/timetc.h>
46155852Sgallatin#include <sys/timepps.h>
47155852Sgallatin#include <sys/sysctl.h>
48155852Sgallatin
49159612Sgallatin/*
50155852Sgallatin * Single-precision macros for 64-bit machines
51155852Sgallatin */
52159612Sgallatintypedef long long l_fp;
53159612Sgallatin#define L_ADD(v, u)	((v) += (u))
54155852Sgallatin#define L_SUB(v, u)	((v) -= (u))
55175365Sgallatin#define L_ADDHI(v, a)	((v) += (long long)(a) << 32)
56159612Sgallatin#define L_NEG(v)	((v) = -(v))
57175365Sgallatin#define L_RSHIFT(v, n) \
58175365Sgallatin	do { \
59175365Sgallatin		if ((v) < 0) \
60175365Sgallatin			(v) = -(-(v) >> (n)); \
61175365Sgallatin		else \
62171917Sgallatin			(v) = (v) >> (n); \
63175365Sgallatin	} while (0)
64175365Sgallatin#define L_MPY(v, a)	((v) *= (a))
65175365Sgallatin#define L_CLR(v)	((v) = 0)
66171917Sgallatin#define L_ISNEG(v)	((v) < 0)
67171917Sgallatin#define L_LINT(v, a)	((v) = (long long)(a) << 32)
68171917Sgallatin#define L_GINT(v)	((v) < 0 ? -(-(v) >> 32) : (v) >> 32)
69159612Sgallatin
70159612Sgallatin/*
71159612Sgallatin * Generic NTP kernel interface
72175365Sgallatin *
73155852Sgallatin * These routines constitute the Network Time Protocol (NTP) interfaces
74171917Sgallatin * for user and daemon application programs. The ntp_gettime() routine
75171917Sgallatin * provides the time, maximum error (synch distance) and estimated error
76171917Sgallatin * (dispersion) to client user application programs. The ntp_adjtime()
77171917Sgallatin * routine is used by the NTP daemon to adjust the system clock to an
78171917Sgallatin * externally derived time. The time offset and related variables set by
79171917Sgallatin * this routine are used by other routines in this module to adjust the
80171917Sgallatin * phase and frequency of the clock discipline loop which controls the
81155852Sgallatin * system clock.
82159612Sgallatin *
83155852Sgallatin * When the kernel time is reckoned directly in nanoseconds (NTP_NANO
84155852Sgallatin * defined), the time at each tick interrupt is derived directly from
85155852Sgallatin * the kernel time variable. When the kernel time is reckoned in
86155852Sgallatin * microseconds, (NTP_NANO undefined), the time is derived from the
87155852Sgallatin * kernel time variable together with a variable representing the
88155852Sgallatin * leftover nanoseconds at the last tick interrupt. In either case, the
89159612Sgallatin * current nanosecond time is reckoned from these values plus an
90155852Sgallatin * interpolated value derived by the clock routines in another
91155852Sgallatin * architecture-specific module. The interpolation can use either a
92159612Sgallatin * dedicated counter or a processor cycle counter (PCC) implemented in
93159612Sgallatin * some architectures.
94155852Sgallatin *
95155852Sgallatin * Note that all routines must run at priority splclock or higher.
96159612Sgallatin */
97155852Sgallatin/*
98155852Sgallatin * Phase/frequency-lock loop (PLL/FLL) definitions
99159612Sgallatin *
100159612Sgallatin * The nanosecond clock discipline uses two variable types, time
101155852Sgallatin * variables and frequency variables. Both types are represented as 64-
102155852Sgallatin * bit fixed-point quantities with the decimal point between two 32-bit
103155852Sgallatin * halves. On a 32-bit machine, each half is represented as a single
104155852Sgallatin * word and mathematical operations are done using multiple-precision
105155852Sgallatin * arithmetic. On a 64-bit machine, ordinary computer arithmetic is
106155852Sgallatin * used.
107155852Sgallatin *
108155852Sgallatin * A time variable is a signed 64-bit fixed-point number in ns and
109155852Sgallatin * fraction. It represents the remaining time offset to be amortized
110155852Sgallatin * over succeeding tick interrupts. The maximum time offset is about
111155852Sgallatin * 0.5 s and the resolution is about 2.3e-10 ns.
112155852Sgallatin *
113155852Sgallatin *			1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 3
114155852Sgallatin *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
115159612Sgallatin * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
116155852Sgallatin * |s s s|			 ns				   |
117155852Sgallatin * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
118155852Sgallatin * |			    fraction				   |
119155852Sgallatin * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
120159612Sgallatin *
121159612Sgallatin * A frequency variable is a signed 64-bit fixed-point number in ns/s
122159612Sgallatin * and fraction. It represents the ns and fraction to be added to the
123159612Sgallatin * kernel time variable at each second. The maximum frequency offset is
124159612Sgallatin * about +-500000 ns/s and the resolution is about 2.3e-10 ns/s.
125159612Sgallatin *
126159612Sgallatin *			1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 3
127159612Sgallatin *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
128159612Sgallatin * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
129155852Sgallatin * |s s s s s s s s s s s s s|	          ns/s			   |
130159612Sgallatin * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
131159612Sgallatin * |			    fraction				   |
132155852Sgallatin * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
133159612Sgallatin */
134155852Sgallatin/*
135155852Sgallatin * The following variables establish the state of the PLL/FLL and the
136159612Sgallatin * residual time and frequency offset of the local clock.
137159612Sgallatin */
138155852Sgallatin#define SHIFT_PLL	4		/* PLL loop gain (shift) */
139159612Sgallatin#define SHIFT_FLL	2		/* FLL loop gain (shift) */
140159612Sgallatin
141155852Sgallatinstatic int time_state = TIME_OK;	/* clock state */
142155852Sgallatinstatic int time_status = STA_UNSYNC;	/* clock status bits */
143159612Sgallatinstatic long time_tai;			/* TAI offset (s) */
144155852Sgallatinstatic long time_monitor;		/* last time offset scaled (ns) */
145155852Sgallatinstatic long time_constant;		/* poll interval (shift) (s) */
146159612Sgallatinstatic long time_precision = 1;		/* clock precision (ns) */
147155852Sgallatinstatic long time_maxerror = MAXPHASE / 1000; /* maximum error (us) */
148159612Sgallatinstatic long time_esterror = MAXPHASE / 1000; /* estimated error (us) */
149159612Sgallatinstatic long time_reftime;		/* time at last adjustment (s) */
150155852Sgallatinstatic l_fp time_offset;		/* time offset (ns) */
151159612Sgallatinstatic l_fp time_freq;			/* frequency offset (ns/s) */
152159612Sgallatinstatic l_fp time_adj;			/* tick adjust (ns/s) */
153159612Sgallatin
154155852Sgallatinstatic int64_t time_adjtime;		/* correction from adjtime(2) (usec) */
155155852Sgallatin
156159612Sgallatin#ifdef PPS_SYNC
157155852Sgallatin/*
158155852Sgallatin * The following variables are used when a pulse-per-second (PPS) signal
159159612Sgallatin * is available and connected via a modem control lead. They establish
160159612Sgallatin * the engineering parameters of the clock discipline loop when
161155852Sgallatin * controlled by the PPS signal.
162155852Sgallatin */
163155852Sgallatin#define PPS_FAVG	2		/* min freq avg interval (s) (shift) */
164155852Sgallatin#define PPS_FAVGDEF	8		/* default freq avg int (s) (shift) */
165162328Sgallatin#define PPS_FAVGMAX	15		/* max freq avg interval (s) (shift) */
166162328Sgallatin#define PPS_PAVG	4		/* phase avg interval (s) (shift) */
167155852Sgallatin#define PPS_VALID	120		/* PPS signal watchdog max (s) */
168162328Sgallatin#define PPS_MAXWANDER	100000		/* max PPS wander (ns/s) */
169162328Sgallatin#define PPS_POPCORN	2		/* popcorn spike threshold (shift) */
170162328Sgallatin
171162328Sgallatinstatic struct timespec pps_tf[3];	/* phase median filter */
172162328Sgallatinstatic l_fp pps_freq;			/* scaled frequency offset (ns/s) */
173162328Sgallatinstatic long pps_fcount;			/* frequency accumulator */
174162328Sgallatinstatic long pps_jitter;			/* nominal jitter (ns) */
175183515Sgallatinstatic long pps_stabil;			/* nominal stability (scaled ns/s) */
176183515Sgallatinstatic long pps_lastsec;		/* time at last calibration (s) */
177162328Sgallatinstatic int pps_valid;			/* signal watchdog counter */
178162328Sgallatinstatic int pps_shift = PPS_FAVG;	/* interval duration (s) (shift) */
179162328Sgallatinstatic int pps_shiftmax = PPS_FAVGDEF;	/* max interval duration (s) (shift) */
180162328Sgallatinstatic int pps_intcnt;			/* wander counter */
181159612Sgallatin
182159612Sgallatin/*
183155852Sgallatin * PPS signal quality monitors
184155852Sgallatin */
185159612Sgallatinstatic long pps_calcnt;			/* calibration intervals */
186155852Sgallatinstatic long pps_jitcnt;			/* jitter limit exceeded */
187155852Sgallatinstatic long pps_stbcnt;			/* stability limit exceeded */
188155852Sgallatinstatic long pps_errcnt;			/* calibration errors */
189159612Sgallatin#endif /* PPS_SYNC */
190155852Sgallatin/*
191155852Sgallatin * End of phase/frequency-lock loop (PLL/FLL) definitions
192155852Sgallatin */
193159612Sgallatin
194159612Sgallatinstatic void ntp_init(void);
195155852Sgallatinstatic void hardupdate(long offset);
196159612Sgallatin
197183515Sgallatin/*
198183515Sgallatin * ntp_gettime() - NTP user application interface
199183515Sgallatin *
200183515Sgallatin * See the timex.h header file for synopsis and API description. Note
201183515Sgallatin * that the TAI offset is returned in the ntvtimeval.tai structure
202159612Sgallatin * member.
203159612Sgallatin */
204155852Sgallatinstatic int
205155852Sgallatinntp_sysctl(SYSCTL_HANDLER_ARGS)
206155852Sgallatin{
207155852Sgallatin	struct ntptimeval ntv;	/* temporary structure */
208155852Sgallatin	struct timespec atv;	/* nanosecond time */
209159612Sgallatin
210159612Sgallatin	nanotime(&atv);
211159612Sgallatin	ntv.time.tv_sec = atv.tv_sec;
212183515Sgallatin	ntv.time.tv_nsec = atv.tv_nsec;
213183515Sgallatin	ntv.maxerror = time_maxerror;
214159612Sgallatin	ntv.esterror = time_esterror;
215159612Sgallatin	ntv.tai = time_tai;
216155852Sgallatin	ntv.time_state = time_state;
217155852Sgallatin
218155852Sgallatin	/*
219155852Sgallatin	 * Status word error decode. If any of these conditions occur,
220159612Sgallatin	 * an error is returned, instead of the status word. Most
221159612Sgallatin	 * applications will care only about the fact the system clock
222155852Sgallatin	 * may not be trusted, not about the details.
223155852Sgallatin	 *
224155852Sgallatin	 * Hardware or software error
225155852Sgallatin	 */
226155852Sgallatin	if ((time_status & (STA_UNSYNC | STA_CLOCKERR)) ||
227155852Sgallatin
228159612Sgallatin	/*
229183515Sgallatin	 * PPS signal lost when either time or frequency synchronization
230155852Sgallatin	 * requested
231155852Sgallatin	 */
232155852Sgallatin	    (time_status & (STA_PPSFREQ | STA_PPSTIME) &&
233155852Sgallatin	    !(time_status & STA_PPSSIGNAL)) ||
234159612Sgallatin
235155852Sgallatin	/*
236155852Sgallatin	 * PPS jitter exceeded when time synchronization requested
237159612Sgallatin	 */
238155852Sgallatin	    (time_status & STA_PPSTIME &&
239155852Sgallatin	    time_status & STA_PPSJITTER) ||
240155852Sgallatin
241159612Sgallatin	/*
242155852Sgallatin	 * PPS wander exceeded or calibration error when frequency
243155852Sgallatin	 * synchronization requested
244155852Sgallatin	 */
245155852Sgallatin	    (time_status & STA_PPSFREQ &&
246155852Sgallatin	    time_status & (STA_PPSWANDER | STA_PPSERROR)))
247155852Sgallatin		ntv.time_state = TIME_ERROR;
248155852Sgallatin	return (sysctl_handle_opaque(oidp, &ntv, sizeof ntv, req));
249159612Sgallatin}
250159612Sgallatin
251159612SgallatinSYSCTL_NODE(_kern, OID_AUTO, ntp_pll, CTLFLAG_RW, 0, "");
252162328SgallatinSYSCTL_PROC(_kern_ntp_pll, OID_AUTO, gettime, CTLTYPE_OPAQUE|CTLFLAG_RD,
253155852Sgallatin	0, sizeof(struct ntptimeval) , ntp_sysctl, "S,ntptimeval", "");
254159612Sgallatin
255159612Sgallatin#ifdef PPS_SYNC
256159612SgallatinSYSCTL_INT(_kern_ntp_pll, OID_AUTO, pps_shiftmax, CTLFLAG_RW, &pps_shiftmax, 0, "");
257155852SgallatinSYSCTL_INT(_kern_ntp_pll, OID_AUTO, pps_shift, CTLFLAG_RW, &pps_shift, 0, "");
258159612SgallatinSYSCTL_INT(_kern_ntp_pll, OID_AUTO, time_monitor, CTLFLAG_RD, &time_monitor, 0, "");
259159612Sgallatin
260155852SgallatinSYSCTL_OPAQUE(_kern_ntp_pll, OID_AUTO, pps_freq, CTLFLAG_RD, &pps_freq, sizeof(pps_freq), "I", "");
261159612SgallatinSYSCTL_OPAQUE(_kern_ntp_pll, OID_AUTO, time_freq, CTLFLAG_RD, &time_freq, sizeof(time_freq), "I", "");
262159612Sgallatin#endif
263159612Sgallatin/*
264159612Sgallatin * ntp_adjtime() - NTP daemon application interface
265159612Sgallatin *
266162328Sgallatin * See the timex.h header file for synopsis and API description. Note
267162328Sgallatin * that the timex.constant structure member has a dual purpose to set
268162328Sgallatin * the time constant and to set the TAI offset.
269162328Sgallatin */
270162328Sgallatin#ifndef _SYS_SYSPROTO_H_
271162328Sgallatinstruct ntp_adjtime_args {
272162328Sgallatin	struct timex *tp;
273162328Sgallatin};
274162328Sgallatin#endif
275162328Sgallatin
276162328Sgallatin/*
277162328Sgallatin * MPSAFE
278162328Sgallatin */
279162328Sgallatinint
280162328Sgallatinntp_adjtime(struct thread *td, struct ntp_adjtime_args *uap)
281162328Sgallatin{
282162328Sgallatin	struct timex ntv;	/* temporary structure */
283162328Sgallatin	long freq;		/* frequency ns/s) */
284183515Sgallatin	int modes;		/* mode bits from structure */
285183515Sgallatin	int s;			/* caller priority */
286183515Sgallatin	int error;
287183515Sgallatin
288183515Sgallatin	error = copyin((caddr_t)uap->tp, (caddr_t)&ntv, sizeof(ntv));
289183515Sgallatin	if (error)
290183515Sgallatin		return(error);
291169376Sgallatin
292169376Sgallatin	/*
293169376Sgallatin	 * Update selected clock variables - only the superuser can
294169376Sgallatin	 * change anything. Note that there is no error checking here on
295169376Sgallatin	 * the assumption the superuser should know what it is doing.
296169840Sgallatin	 * Note that either the time constant or TAI offset are loaded
297169376Sgallatin	 * from the ntv.constant member, depending on the mode bits. If
298171917Sgallatin	 * the STA_PLL bit in the status word is cleared, the state and
299169840Sgallatin	 * status words are reset to the initial values at boot.
300169840Sgallatin	 */
301169840Sgallatin	mtx_lock(&Giant);
302169840Sgallatin	modes = ntv.modes;
303169840Sgallatin	if (modes)
304169840Sgallatin		error = suser(td);
305169840Sgallatin	if (error)
306169840Sgallatin		goto done2;
307169840Sgallatin	s = splclock();
308171917Sgallatin	if (modes & MOD_MAXERROR)
309171917Sgallatin		time_maxerror = ntv.maxerror;
310171917Sgallatin	if (modes & MOD_ESTERROR)
311171917Sgallatin		time_esterror = ntv.esterror;
312183515Sgallatin	if (modes & MOD_STATUS) {
313183515Sgallatin		if (time_status & STA_PLL && !(ntv.status & STA_PLL)) {
314183515Sgallatin			time_state = TIME_OK;
315171917Sgallatin			time_status = STA_UNSYNC;
316171917Sgallatin#ifdef PPS_SYNC
317183515Sgallatin			pps_shift = PPS_FAVG;
318183515Sgallatin#endif /* PPS_SYNC */
319183515Sgallatin		}
320171917Sgallatin		time_status &= STA_RONLY;
321183515Sgallatin		time_status |= ntv.status & ~STA_RONLY;
322183515Sgallatin	}
323183515Sgallatin	if (modes & MOD_TIMECONST) {
324175365Sgallatin		if (ntv.constant < 0)
325171917Sgallatin			time_constant = 0;
326171917Sgallatin		else if (ntv.constant > MAXTC)
327171917Sgallatin			time_constant = MAXTC;
328171917Sgallatin		else
329171917Sgallatin			time_constant = ntv.constant;
330171917Sgallatin	}
331171917Sgallatin	if (modes & MOD_TAI) {
332171917Sgallatin		if (ntv.constant > 0) /* XXX zero & negative numbers ? */
333171917Sgallatin			time_tai = ntv.constant;
334171917Sgallatin	}
335171917Sgallatin#ifdef PPS_SYNC
336171917Sgallatin	if (modes & MOD_PPSMAX) {
337171917Sgallatin		if (ntv.shift < PPS_FAVG)
338171917Sgallatin			pps_shiftmax = PPS_FAVG;
339171917Sgallatin		else if (ntv.shift > PPS_FAVGMAX)
340171917Sgallatin			pps_shiftmax = PPS_FAVGMAX;
341175365Sgallatin		else
342175365Sgallatin			pps_shiftmax = ntv.shift;
343175365Sgallatin	}
344175365Sgallatin#endif /* PPS_SYNC */
345183515Sgallatin	if (modes & MOD_NANO)
346171917Sgallatin		time_status |= STA_NANO;
347175365Sgallatin	if (modes & MOD_MICRO)
348175365Sgallatin		time_status &= ~STA_NANO;
349175365Sgallatin	if (modes & MOD_CLKB)
350183515Sgallatin		time_status |= STA_CLK;
351183515Sgallatin	if (modes & MOD_CLKA)
352175365Sgallatin		time_status &= ~STA_CLK;
353171917Sgallatin	if (modes & MOD_OFFSET) {
354171917Sgallatin		if (time_status & STA_NANO)
355171917Sgallatin			hardupdate(ntv.offset);
356171917Sgallatin		else
357171917Sgallatin			hardupdate(ntv.offset * 1000);
358171917Sgallatin	}
359171917Sgallatin	if (modes & MOD_FREQUENCY) {
360171917Sgallatin		freq = (ntv.freq * 1000LL) >> 16;
361171917Sgallatin		if (freq > MAXFREQ)
362171917Sgallatin			L_LINT(time_freq, MAXFREQ);
363171917Sgallatin		else if (freq < -MAXFREQ)
364171917Sgallatin			L_LINT(time_freq, -MAXFREQ);
365171917Sgallatin		else
366171917Sgallatin			L_LINT(time_freq, freq);
367175365Sgallatin#ifdef PPS_SYNC
368175365Sgallatin		pps_freq = time_freq;
369171917Sgallatin#endif /* PPS_SYNC */
370171917Sgallatin	}
371171917Sgallatin
372171917Sgallatin	/*
373171917Sgallatin	 * Retrieve all clock variables. Note that the TAI offset is
374171917Sgallatin	 * returned only by ntp_gettime();
375171917Sgallatin	 */
376171917Sgallatin	if (time_status & STA_NANO)
377171917Sgallatin		ntv.offset = L_GINT(time_offset);
378171917Sgallatin	else
379171917Sgallatin		ntv.offset = L_GINT(time_offset) / 1000; /* XXX rounding ? */
380171917Sgallatin	ntv.freq = L_GINT((time_freq / 1000LL) << 16);
381171917Sgallatin	ntv.maxerror = time_maxerror;
382171917Sgallatin	ntv.esterror = time_esterror;
383171917Sgallatin	ntv.status = time_status;
384175365Sgallatin	ntv.constant = time_constant;
385171917Sgallatin	if (time_status & STA_NANO)
386171917Sgallatin		ntv.precision = time_precision;
387171917Sgallatin	else
388171917Sgallatin		ntv.precision = time_precision / 1000;
389171917Sgallatin	ntv.tolerance = MAXFREQ * SCALE_PPM;
390175365Sgallatin#ifdef PPS_SYNC
391175365Sgallatin	ntv.shift = pps_shift;
392175365Sgallatin	ntv.ppsfreq = L_GINT((pps_freq / 1000LL) << 16);
393175365Sgallatin	if (time_status & STA_NANO)
394175365Sgallatin		ntv.jitter = pps_jitter;
395175365Sgallatin	else
396175365Sgallatin		ntv.jitter = pps_jitter / 1000;
397175365Sgallatin	ntv.stabil = pps_stabil;
398175365Sgallatin	ntv.calcnt = pps_calcnt;
399175365Sgallatin	ntv.errcnt = pps_errcnt;
400175365Sgallatin	ntv.jitcnt = pps_jitcnt;
401175365Sgallatin	ntv.stbcnt = pps_stbcnt;
402175365Sgallatin#endif /* PPS_SYNC */
403175365Sgallatin	splx(s);
404175365Sgallatin
405175365Sgallatin	error = copyout((caddr_t)&ntv, (caddr_t)uap->tp, sizeof(ntv));
406175365Sgallatin	if (error)
407175365Sgallatin		goto done2;
408175365Sgallatin
409175365Sgallatin	/*
410175365Sgallatin	 * Status word error decode. See comments in
411175365Sgallatin	 * ntp_gettime() routine.
412175365Sgallatin	 */
413175365Sgallatin	if ((time_status & (STA_UNSYNC | STA_CLOCKERR)) ||
414175365Sgallatin	    (time_status & (STA_PPSFREQ | STA_PPSTIME) &&
415175365Sgallatin	    !(time_status & STA_PPSSIGNAL)) ||
416175365Sgallatin	    (time_status & STA_PPSTIME &&
417175365Sgallatin	    time_status & STA_PPSJITTER) ||
418175365Sgallatin	    (time_status & STA_PPSFREQ &&
419183515Sgallatin	    time_status & (STA_PPSWANDER | STA_PPSERROR))) {
420183515Sgallatin		td->td_retval[0] = TIME_ERROR;
421175365Sgallatin	} else {
422183515Sgallatin		td->td_retval[0] = time_state;
423183515Sgallatin	}
424175365Sgallatindone2:
425183515Sgallatin	mtx_unlock(&Giant);
426183515Sgallatin	return (error);
427183515Sgallatin}
428183515Sgallatin
429183515Sgallatin/*
430183515Sgallatin * second_overflow() - called after ntp_tick_adjust()
431183515Sgallatin *
432183515Sgallatin * This routine is ordinarily called immediately following the above
433183515Sgallatin * routine ntp_tick_adjust(). While these two routines are normally
434183515Sgallatin * combined, they are separated here only for the purposes of
435183515Sgallatin * simulation.
436183515Sgallatin */
437183515Sgallatinvoid
438183515Sgallatinntp_update_second(int64_t *adjustment, time_t *newsec)
439183515Sgallatin{
440183515Sgallatin	int tickrate;
441159612Sgallatin	l_fp ftemp;		/* 32/64-bit temporary */
442159612Sgallatin
443155852Sgallatin	/*
444155852Sgallatin	 * On rollover of the second both the nanosecond and microsecond
445159612Sgallatin	 * clocks are updated and the state machine cranked as
446159612Sgallatin	 * necessary. The phase adjustment to be used for the next
447159612Sgallatin	 * second is calculated and the maximum error is increased by
448159612Sgallatin	 * the tolerance.
449159612Sgallatin	 */
450159612Sgallatin	time_maxerror += MAXFREQ / 1000;
451159612Sgallatin
452159612Sgallatin	/*
453159612Sgallatin	 * Leap second processing. If in leap-insert state at
454162328Sgallatin	 * the end of the day, the system clock is set back one
455169376Sgallatin	 * second; if in leap-delete state, the system clock is
456171917Sgallatin	 * set ahead one second. The nano_time() routine or
457171917Sgallatin	 * external clock driver will insure that reported time
458171917Sgallatin	 * is always monotonic.
459183515Sgallatin	 */
460183515Sgallatin	switch (time_state) {
461159612Sgallatin
462159612Sgallatin		/*
463155852Sgallatin		 * No warning.
464155852Sgallatin		 */
465162328Sgallatin		case TIME_OK:
466162328Sgallatin		if (time_status & STA_INS)
467162328Sgallatin			time_state = TIME_INS;
468162328Sgallatin		else if (time_status & STA_DEL)
469169376Sgallatin			time_state = TIME_DEL;
470169376Sgallatin		break;
471169376Sgallatin
472169376Sgallatin		/*
473169376Sgallatin		 * Insert second 23:59:60 following second
474162328Sgallatin		 * 23:59:59.
475159612Sgallatin		 */
476159612Sgallatin		case TIME_INS:
477159612Sgallatin		if (!(time_status & STA_INS))
478169376Sgallatin			time_state = TIME_OK;
479169376Sgallatin		else if ((*newsec) % 86400 == 0) {
480169376Sgallatin			(*newsec)--;
481169376Sgallatin			time_state = TIME_OOP;
482155852Sgallatin		}
483155852Sgallatin		break;
484155852Sgallatin
485155852Sgallatin		/*
486155852Sgallatin		 * Delete second 23:59:59.
487155852Sgallatin		 */
488155852Sgallatin		case TIME_DEL:
489155852Sgallatin		if (!(time_status & STA_DEL))
490155852Sgallatin			time_state = TIME_OK;
491159612Sgallatin		else if (((*newsec) + 1) % 86400 == 0) {
492159612Sgallatin			(*newsec)++;
493159612Sgallatin			time_tai--;
494159612Sgallatin			time_state = TIME_WAIT;
495159612Sgallatin		}
496159612Sgallatin		break;
497155852Sgallatin
498171917Sgallatin		/*
499175365Sgallatin		 * Insert second in progress.
500171917Sgallatin		 */
501171917Sgallatin		case TIME_OOP:
502171917Sgallatin			time_tai++;
503171917Sgallatin			time_state = TIME_WAIT;
504171917Sgallatin		break;
505171917Sgallatin
506159612Sgallatin		/*
507183515Sgallatin		 * Wait for status bits to clear.
508183515Sgallatin		 */
509183515Sgallatin		case TIME_WAIT:
510183515Sgallatin		if (!(time_status & (STA_INS | STA_DEL)))
511183515Sgallatin			time_state = TIME_OK;
512183515Sgallatin	}
513159612Sgallatin
514	/*
515	 * Compute the total time adjustment for the next second
516	 * in ns. The offset is reduced by a factor depending on
517	 * whether the PPS signal is operating. Note that the
518	 * value is in effect scaled by the clock frequency,
519	 * since the adjustment is added at each tick interrupt.
520	 */
521	ftemp = time_offset;
522#ifdef PPS_SYNC
523	/* XXX even if PPS signal dies we should finish adjustment ? */
524	if (time_status & STA_PPSTIME && time_status &
525	    STA_PPSSIGNAL)
526		L_RSHIFT(ftemp, pps_shift);
527	else
528		L_RSHIFT(ftemp, SHIFT_PLL + time_constant);
529#else
530		L_RSHIFT(ftemp, SHIFT_PLL + time_constant);
531#endif /* PPS_SYNC */
532	time_adj = ftemp;
533	L_SUB(time_offset, ftemp);
534	L_ADD(time_adj, time_freq);
535
536	/*
537	 * Apply any correction from adjtime(2).  If more than one second
538	 * off we slew at a rate of 5ms/s (5000 PPM) else 500us/s (500PPM)
539	 * until the last second is slewed the final < 500 usecs.
540	 */
541	if (time_adjtime != 0) {
542		if (time_adjtime > 1000000)
543			tickrate = 5000;
544		else if (time_adjtime < -1000000)
545			tickrate = -5000;
546		else if (time_adjtime > 500)
547			tickrate = 500;
548		else if (time_adjtime < -500)
549			tickrate = -500;
550		else if (time_adjtime != 0)
551			tickrate = time_adjtime;
552		else
553			tickrate = 0;	/* GCC sucks! */
554		time_adjtime -= tickrate;
555		L_LINT(ftemp, tickrate * 1000);
556		L_ADD(time_adj, ftemp);
557	}
558	*adjustment = time_adj;
559
560#ifdef PPS_SYNC
561	if (pps_valid > 0)
562		pps_valid--;
563	else
564		time_status &= ~STA_PPSSIGNAL;
565#endif /* PPS_SYNC */
566}
567
568/*
569 * ntp_init() - initialize variables and structures
570 *
571 * This routine must be called after the kernel variables hz and tick
572 * are set or changed and before the next tick interrupt. In this
573 * particular implementation, these values are assumed set elsewhere in
574 * the kernel. The design allows the clock frequency and tick interval
575 * to be changed while the system is running. So, this routine should
576 * probably be integrated with the code that does that.
577 */
578static void
579ntp_init()
580{
581
582	/*
583	 * The following variables are initialized only at startup. Only
584	 * those structures not cleared by the compiler need to be
585	 * initialized, and these only in the simulator. In the actual
586	 * kernel, any nonzero values here will quickly evaporate.
587	 */
588	L_CLR(time_offset);
589	L_CLR(time_freq);
590#ifdef PPS_SYNC
591	pps_tf[0].tv_sec = pps_tf[0].tv_nsec = 0;
592	pps_tf[1].tv_sec = pps_tf[1].tv_nsec = 0;
593	pps_tf[2].tv_sec = pps_tf[2].tv_nsec = 0;
594	pps_fcount = 0;
595	L_CLR(pps_freq);
596#endif /* PPS_SYNC */
597}
598
599SYSINIT(ntpclocks, SI_SUB_CLOCKS, SI_ORDER_FIRST, ntp_init, NULL)
600
601/*
602 * hardupdate() - local clock update
603 *
604 * This routine is called by ntp_adjtime() to update the local clock
605 * phase and frequency. The implementation is of an adaptive-parameter,
606 * hybrid phase/frequency-lock loop (PLL/FLL). The routine computes new
607 * time and frequency offset estimates for each call. If the kernel PPS
608 * discipline code is configured (PPS_SYNC), the PPS signal itself
609 * determines the new time offset, instead of the calling argument.
610 * Presumably, calls to ntp_adjtime() occur only when the caller
611 * believes the local clock is valid within some bound (+-128 ms with
612 * NTP). If the caller's time is far different than the PPS time, an
613 * argument will ensue, and it's not clear who will lose.
614 *
615 * For uncompensated quartz crystal oscillators and nominal update
616 * intervals less than 256 s, operation should be in phase-lock mode,
617 * where the loop is disciplined to phase. For update intervals greater
618 * than 1024 s, operation should be in frequency-lock mode, where the
619 * loop is disciplined to frequency. Between 256 s and 1024 s, the mode
620 * is selected by the STA_MODE status bit.
621 */
622static void
623hardupdate(offset)
624	long offset;		/* clock offset (ns) */
625{
626	long mtemp;
627	l_fp ftemp;
628
629	/*
630	 * Select how the phase is to be controlled and from which
631	 * source. If the PPS signal is present and enabled to
632	 * discipline the time, the PPS offset is used; otherwise, the
633	 * argument offset is used.
634	 */
635	if (!(time_status & STA_PLL))
636		return;
637	if (!(time_status & STA_PPSTIME && time_status &
638	    STA_PPSSIGNAL)) {
639		if (offset > MAXPHASE)
640			time_monitor = MAXPHASE;
641		else if (offset < -MAXPHASE)
642			time_monitor = -MAXPHASE;
643		else
644			time_monitor = offset;
645		L_LINT(time_offset, time_monitor);
646	}
647
648	/*
649	 * Select how the frequency is to be controlled and in which
650	 * mode (PLL or FLL). If the PPS signal is present and enabled
651	 * to discipline the frequency, the PPS frequency is used;
652	 * otherwise, the argument offset is used to compute it.
653	 */
654	if (time_status & STA_PPSFREQ && time_status & STA_PPSSIGNAL) {
655		time_reftime = time_second;
656		return;
657	}
658	if (time_status & STA_FREQHOLD || time_reftime == 0)
659		time_reftime = time_second;
660	mtemp = time_second - time_reftime;
661	L_LINT(ftemp, time_monitor);
662	L_RSHIFT(ftemp, (SHIFT_PLL + 2 + time_constant) << 1);
663	L_MPY(ftemp, mtemp);
664	L_ADD(time_freq, ftemp);
665	time_status &= ~STA_MODE;
666	if (mtemp >= MINSEC && (time_status & STA_FLL || mtemp >
667	    MAXSEC)) {
668		L_LINT(ftemp, (time_monitor << 4) / mtemp);
669		L_RSHIFT(ftemp, SHIFT_FLL + 4);
670		L_ADD(time_freq, ftemp);
671		time_status |= STA_MODE;
672	}
673	time_reftime = time_second;
674	if (L_GINT(time_freq) > MAXFREQ)
675		L_LINT(time_freq, MAXFREQ);
676	else if (L_GINT(time_freq) < -MAXFREQ)
677		L_LINT(time_freq, -MAXFREQ);
678}
679
680#ifdef PPS_SYNC
681/*
682 * hardpps() - discipline CPU clock oscillator to external PPS signal
683 *
684 * This routine is called at each PPS interrupt in order to discipline
685 * the CPU clock oscillator to the PPS signal. There are two independent
686 * first-order feedback loops, one for the phase, the other for the
687 * frequency. The phase loop measures and grooms the PPS phase offset
688 * and leaves it in a handy spot for the seconds overflow routine. The
689 * frequency loop averages successive PPS phase differences and
690 * calculates the PPS frequency offset, which is also processed by the
691 * seconds overflow routine. The code requires the caller to capture the
692 * time and architecture-dependent hardware counter values in
693 * nanoseconds at the on-time PPS signal transition.
694 *
695 * Note that, on some Unix systems this routine runs at an interrupt
696 * priority level higher than the timer interrupt routine hardclock().
697 * Therefore, the variables used are distinct from the hardclock()
698 * variables, except for the actual time and frequency variables, which
699 * are determined by this routine and updated atomically.
700 */
701void
702hardpps(tsp, nsec)
703	struct timespec *tsp;	/* time at PPS */
704	long nsec;		/* hardware counter at PPS */
705{
706	long u_sec, u_nsec, v_nsec; /* temps */
707	l_fp ftemp;
708
709	/*
710	 * The signal is first processed by a range gate and frequency
711	 * discriminator. The range gate rejects noise spikes outside
712	 * the range +-500 us. The frequency discriminator rejects input
713	 * signals with apparent frequency outside the range 1 +-500
714	 * PPM. If two hits occur in the same second, we ignore the
715	 * later hit; if not and a hit occurs outside the range gate,
716	 * keep the later hit for later comparison, but do not process
717	 * it.
718	 */
719	time_status |= STA_PPSSIGNAL | STA_PPSJITTER;
720	time_status &= ~(STA_PPSWANDER | STA_PPSERROR);
721	pps_valid = PPS_VALID;
722	u_sec = tsp->tv_sec;
723	u_nsec = tsp->tv_nsec;
724	if (u_nsec >= (NANOSECOND >> 1)) {
725		u_nsec -= NANOSECOND;
726		u_sec++;
727	}
728	v_nsec = u_nsec - pps_tf[0].tv_nsec;
729	if (u_sec == pps_tf[0].tv_sec && v_nsec < NANOSECOND -
730	    MAXFREQ)
731		return;
732	pps_tf[2] = pps_tf[1];
733	pps_tf[1] = pps_tf[0];
734	pps_tf[0].tv_sec = u_sec;
735	pps_tf[0].tv_nsec = u_nsec;
736
737	/*
738	 * Compute the difference between the current and previous
739	 * counter values. If the difference exceeds 0.5 s, assume it
740	 * has wrapped around, so correct 1.0 s. If the result exceeds
741	 * the tick interval, the sample point has crossed a tick
742	 * boundary during the last second, so correct the tick. Very
743	 * intricate.
744	 */
745	u_nsec = nsec;
746	if (u_nsec > (NANOSECOND >> 1))
747		u_nsec -= NANOSECOND;
748	else if (u_nsec < -(NANOSECOND >> 1))
749		u_nsec += NANOSECOND;
750	pps_fcount += u_nsec;
751	if (v_nsec > MAXFREQ || v_nsec < -MAXFREQ)
752		return;
753	time_status &= ~STA_PPSJITTER;
754
755	/*
756	 * A three-stage median filter is used to help denoise the PPS
757	 * time. The median sample becomes the time offset estimate; the
758	 * difference between the other two samples becomes the time
759	 * dispersion (jitter) estimate.
760	 */
761	if (pps_tf[0].tv_nsec > pps_tf[1].tv_nsec) {
762		if (pps_tf[1].tv_nsec > pps_tf[2].tv_nsec) {
763			v_nsec = pps_tf[1].tv_nsec;	/* 0 1 2 */
764			u_nsec = pps_tf[0].tv_nsec - pps_tf[2].tv_nsec;
765		} else if (pps_tf[2].tv_nsec > pps_tf[0].tv_nsec) {
766			v_nsec = pps_tf[0].tv_nsec;	/* 2 0 1 */
767			u_nsec = pps_tf[2].tv_nsec - pps_tf[1].tv_nsec;
768		} else {
769			v_nsec = pps_tf[2].tv_nsec;	/* 0 2 1 */
770			u_nsec = pps_tf[0].tv_nsec - pps_tf[1].tv_nsec;
771		}
772	} else {
773		if (pps_tf[1].tv_nsec < pps_tf[2].tv_nsec) {
774			v_nsec = pps_tf[1].tv_nsec;	/* 2 1 0 */
775			u_nsec = pps_tf[2].tv_nsec - pps_tf[0].tv_nsec;
776		} else if (pps_tf[2].tv_nsec < pps_tf[0].tv_nsec) {
777			v_nsec = pps_tf[0].tv_nsec;	/* 1 0 2 */
778			u_nsec = pps_tf[1].tv_nsec - pps_tf[2].tv_nsec;
779		} else {
780			v_nsec = pps_tf[2].tv_nsec;	/* 1 2 0 */
781			u_nsec = pps_tf[1].tv_nsec - pps_tf[0].tv_nsec;
782		}
783	}
784
785	/*
786	 * Nominal jitter is due to PPS signal noise and interrupt
787	 * latency. If it exceeds the popcorn threshold, the sample is
788	 * discarded. otherwise, if so enabled, the time offset is
789	 * updated. We can tolerate a modest loss of data here without
790	 * much degrading time accuracy.
791	 */
792	if (u_nsec > (pps_jitter << PPS_POPCORN)) {
793		time_status |= STA_PPSJITTER;
794		pps_jitcnt++;
795	} else if (time_status & STA_PPSTIME) {
796		time_monitor = -v_nsec;
797		L_LINT(time_offset, time_monitor);
798	}
799	pps_jitter += (u_nsec - pps_jitter) >> PPS_FAVG;
800	u_sec = pps_tf[0].tv_sec - pps_lastsec;
801	if (u_sec < (1 << pps_shift))
802		return;
803
804	/*
805	 * At the end of the calibration interval the difference between
806	 * the first and last counter values becomes the scaled
807	 * frequency. It will later be divided by the length of the
808	 * interval to determine the frequency update. If the frequency
809	 * exceeds a sanity threshold, or if the actual calibration
810	 * interval is not equal to the expected length, the data are
811	 * discarded. We can tolerate a modest loss of data here without
812	 * much degrading frequency accuracy.
813	 */
814	pps_calcnt++;
815	v_nsec = -pps_fcount;
816	pps_lastsec = pps_tf[0].tv_sec;
817	pps_fcount = 0;
818	u_nsec = MAXFREQ << pps_shift;
819	if (v_nsec > u_nsec || v_nsec < -u_nsec || u_sec != (1 <<
820	    pps_shift)) {
821		time_status |= STA_PPSERROR;
822		pps_errcnt++;
823		return;
824	}
825
826	/*
827	 * Here the raw frequency offset and wander (stability) is
828	 * calculated. If the wander is less than the wander threshold
829	 * for four consecutive averaging intervals, the interval is
830	 * doubled; if it is greater than the threshold for four
831	 * consecutive intervals, the interval is halved. The scaled
832	 * frequency offset is converted to frequency offset. The
833	 * stability metric is calculated as the average of recent
834	 * frequency changes, but is used only for performance
835	 * monitoring.
836	 */
837	L_LINT(ftemp, v_nsec);
838	L_RSHIFT(ftemp, pps_shift);
839	L_SUB(ftemp, pps_freq);
840	u_nsec = L_GINT(ftemp);
841	if (u_nsec > PPS_MAXWANDER) {
842		L_LINT(ftemp, PPS_MAXWANDER);
843		pps_intcnt--;
844		time_status |= STA_PPSWANDER;
845		pps_stbcnt++;
846	} else if (u_nsec < -PPS_MAXWANDER) {
847		L_LINT(ftemp, -PPS_MAXWANDER);
848		pps_intcnt--;
849		time_status |= STA_PPSWANDER;
850		pps_stbcnt++;
851	} else {
852		pps_intcnt++;
853	}
854	if (pps_intcnt >= 4) {
855		pps_intcnt = 4;
856		if (pps_shift < pps_shiftmax) {
857			pps_shift++;
858			pps_intcnt = 0;
859		}
860	} else if (pps_intcnt <= -4 || pps_shift > pps_shiftmax) {
861		pps_intcnt = -4;
862		if (pps_shift > PPS_FAVG) {
863			pps_shift--;
864			pps_intcnt = 0;
865		}
866	}
867	if (u_nsec < 0)
868		u_nsec = -u_nsec;
869	pps_stabil += (u_nsec * SCALE_PPM - pps_stabil) >> PPS_FAVG;
870
871	/*
872	 * The PPS frequency is recalculated and clamped to the maximum
873	 * MAXFREQ. If enabled, the system clock frequency is updated as
874	 * well.
875	 */
876	L_ADD(pps_freq, ftemp);
877	u_nsec = L_GINT(pps_freq);
878	if (u_nsec > MAXFREQ)
879		L_LINT(pps_freq, MAXFREQ);
880	else if (u_nsec < -MAXFREQ)
881		L_LINT(pps_freq, -MAXFREQ);
882	if (time_status & STA_PPSFREQ)
883		time_freq = pps_freq;
884}
885#endif /* PPS_SYNC */
886
887#ifndef _SYS_SYSPROTO_H_
888struct adjtime_args {
889	struct timeval *delta;
890	struct timeval *olddelta;
891};
892#endif
893/*
894 * MPSAFE
895 */
896/* ARGSUSED */
897int
898adjtime(struct thread *td, struct adjtime_args *uap)
899{
900	struct timeval atv;
901	int error;
902
903	if ((error = suser(td)))
904		return (error);
905
906	mtx_lock(&Giant);
907	if (uap->olddelta) {
908		atv.tv_sec = time_adjtime / 1000000;
909		atv.tv_usec = time_adjtime % 1000000;
910		if (atv.tv_usec < 0) {
911			atv.tv_usec += 1000000;
912			atv.tv_sec--;
913		}
914		error = copyout(&atv, uap->olddelta, sizeof(atv));
915		if (error)
916			goto done2;
917	}
918	if (uap->delta) {
919		error = copyin(uap->delta, &atv, sizeof(atv));
920		if (error)
921			goto done2;
922		time_adjtime = (int64_t)atv.tv_sec * 1000000 + atv.tv_usec;
923	}
924done2:
925	mtx_unlock(&Giant);
926	return (error);
927}
928
929