Lines Matching +full:system +full:- +full:clock +full:- +full:frequency
18 * Copyright 1996-1997, 2002 Sun Microsystems, Inc. All rights reserved.
36 * phase-lock loop (PLL) model used in the kernel implementation. These
41 * establishes the timer interrupt frequency.
54 #define SCALE_KF (1<<16) /* PLL frequency factor (multiplier) */
55 #define SCALE_KH (1<<2) /* FLL frequency factor (multiplier) */
62 * possible without overflow of a 32-bit word.
65 * which serves as a an extension to the low-order bits of the system
66 * clock variable time.tv_usec.
73 * time_tolerance variables, which represent the current frequency
74 * offset and maximum frequency tolerance.
92 * MAXPHASE must be set greater than or equal to CLOCK.MAX (128 ms), as
93 * defined in the NTP specification. CLOCK.MAX establishes the maximum
94 * time offset allowed before the system time is reset, rather than
99 * MAXFREQ is the maximum frequency tolerance of the CPU clock
101 * should be set to at least the frequency tolerance of the oscillator
102 * plus 100 ppm for vernier frequency adjustments. The oscillator time and
103 * frequency are disciplined to an external source, presumably with
104 * negligible time and frequency error relative to UTC, and MAXFREQ can
119 * The following defines are used only if a pulse-per-second (PPS)
122 * asynch driver. They establish the design parameters of the frequency-
123 * lock loop used to discipline the CPU clock oscillator to the PPS
126 * PPS_AVG is the averaging factor for the frequency loop, as well as
127 * the time and frequency dispersion.
146 * the ntp_gettime() and ntp_adjtime() system calls.
151 #define MOD_FREQUENCY 0x0002 /* set frequency offset */
154 #define MOD_STATUS 0x0010 /* set clock status bits */
156 #define MOD_CLKB 0x4000 /* set clock B */
157 #define MOD_CLKA 0x8000 /* set clock A */
165 #define STA_FLL 0x0008 /* select frequency-lock mode (rw) */
169 #define STA_UNSYNC 0x0040 /* clock unsynchronized (rw) */
170 #define STA_FREQHOLD 0x0080 /* hold frequency (rw) */
177 #define STA_CLOCKERR 0x1000 /* clock hardware fault (ro) */
180 STA_PPSERROR | STA_CLOCKERR) /* read-only bits */
183 * Clock states (time_state)
190 #define TIME_ERROR 5 /* clock not synchronized */
193 * NTP user interface (ntp_gettime()) - used to read kernel clock values
217 * NTP daemon interface - (ntp_adjtime()) used to discipline CPU clock
221 uint32_t modes; /* clock mode bits (wo) */
223 int32_t freq; /* frequency offset (scaled ppm) (rw) */
226 int32_t status; /* clock status bits (rw) */
228 int32_t precision; /* clock precision (us) (ro) */
229 int32_t tolerance; /* clock freq tolerance (scaled ppm) (ro) */
230 int32_t ppsfreq; /* pps frequency (scaled ppm) (ro) */
248 extern int32_t time_state; /* clock state */
249 extern int32_t time_status; /* clock status bits */
251 extern int32_t time_freq; /* frequency offset (scaled ppm) */
255 extern int32_t time_precision; /* clock precision (us) */
256 extern int32_t time_tolerance; /* frequency tolerance (scaled ppm) */
258 extern int32_t pps_freq; /* pps frequency offset (scaled ppm) */