4 * refclock_wwvb - clock driver for Spectracom WWVB and GPS receivers
11 #if defined(REFCLOCK) && defined(CLOCK_SPECTRACOM)
15 #include "ntp_refclock.h"
16 #include "ntp_calendar.h"
17 #include "ntp_stdlib.h"
23 #include "ppsapi_timepps.h"
24 #include "refclock_atom.h"
25 #endif /* HAVE_PPSAPI */
28 * This driver supports the Spectracom Model 8170 and Netclock/2 WWVB
29 * Synchronized Clocks and the Netclock/GPS Master Clock. Both the WWVB
30 * and GPS clocks have proven reliable sources of time; however, the
31 * WWVB clocks have proven vulnerable to high ambient conductive RF
32 * interference. The claimed accuracy of the WWVB clocks is 100 us
33 * relative to the broadcast signal, while the claimed accuracy of the
34 * GPS clock is 50 ns; however, in most cases the actual accuracy is
35 * limited by the resolution of the timecode and the latencies of the
36 * serial interface and operating system.
38 * The WWVB and GPS clocks should be configured for 24-hour display,
39 * AUTO DST off, time zone 0 (UTC), data format 0 or 2 (see below) and
40 * baud rate 9600. If the clock is to used as the source for the IRIG
41 * Audio Decoder (refclock_irig.c in this distribution), it should be
42 * configured for AM IRIG output and IRIG format 1 (IRIG B with
43 * signature control). The GPS clock can be configured either to respond
44 * to a 'T' poll character or left running continuously.
46 * There are two timecode formats used by these clocks. Format 0, which
47 * is available with both the Netclock/2 and 8170, and format 2, which
48 * is available only with the Netclock/2, specially modified 8170 and
51 * Format 0 (22 ASCII printing characters):
53 * <cr><lf>i ddd hh:mm:ss TZ=zz<cr><lf>
55 * on-time = first <cr>
56 * hh:mm:ss = hours, minutes, seconds
57 * i = synchronization flag (' ' = in synch, '?' = out of synch)
59 * The alarm condition is indicated by other than ' ' at a, which occurs
60 * during initial synchronization and when received signal is lost for
63 * Format 2 (24 ASCII printing characters):
65 * <cr><lf>iqyy ddd hh:mm:ss.fff ld
68 * i = synchronization flag (' ' = in synch, '?' = out of synch)
69 * q = quality indicator (' ' = locked, 'A'...'D' = unlocked)
70 * yy = year (as broadcast)
72 * hh:mm:ss.fff = hours, minutes, seconds, milliseconds
74 * The alarm condition is indicated by other than ' ' at a, which occurs
75 * during initial synchronization and when received signal is lost for
76 * about ten hours. The unlock condition is indicated by other than ' '
79 * The q is normally ' ' when the time error is less than 1 ms and a
80 * character in the set 'A'...'D' when the time error is less than 10,
81 * 100, 500 and greater than 500 ms respectively. The l is normally ' ',
82 * but is set to 'L' early in the month of an upcoming UTC leap second
83 * and reset to ' ' on the first day of the following month. The d is
84 * set to 'S' for standard time 'I' on the day preceding a switch to
85 * daylight time, 'D' for daylight time and 'O' on the day preceding a
86 * switch to standard time. The start bit of the first <cr> is
87 * synchronized to the indicated time as returned.
89 * This driver does not need to be told which format is in use - it
90 * figures out which one from the length of the message. The driver
91 * makes no attempt to correct for the intrinsic jitter of the radio
92 * itself, which is a known problem with the older radios.
94 * PPS Signal Processing
96 * When PPS signal processing is enabled, and when the system clock has
97 * been set by this or another driver and the PPS signal offset is
98 * within 0.4 s of the system clock offset, the PPS signal replaces the
99 * timecode for as long as the PPS signal is active. If for some reason
100 * the PPS signal fails for one or more poll intervals, the driver
101 * reverts to the timecode. If the timecode fails for one or more poll
102 * intervals, the PPS signal is disconnected.
106 * This driver can retrieve a table of quality data maintained
107 * internally by the Netclock/2 clock. If flag4 of the fudge
108 * configuration command is set to 1, the driver will retrieve this
109 * table and write it to the clockstats file when the first timecode
110 * message of a new day is received.
112 * PPS calibration fudge time 1: format 0 .003134, format 2 .004034
115 * Interface definitions
117 #define DEVICE "/dev/wwvb%d" /* device name and unit */
118 #define SPEED232 B9600 /* uart speed (9600 baud) */
119 #define PRECISION (-13) /* precision assumed (about 100 us) */
120 #define PPS_PRECISION (-13) /* precision assumed (about 100 us) */
121 #define REFID "WWVB" /* reference ID */
122 #define DESCRIPTION "Spectracom WWVB/GPS Receiver" /* WRU */
124 #define LENWWVB0 22 /* format 0 timecode length */
125 #define LENWWVB1 22 /* format 1 timecode length */
126 #define LENWWVB2 24 /* format 2 timecode length */
127 #define LENWWVB3 29 /* format 3 timecode length */
128 #define MONLIN 15 /* number of monitoring lines */
131 * WWVB unit control structure
135 struct refclock_atom atom
; /* PPSAPI structure */
136 int ppsapi_tried
; /* attempt PPSAPI once */
137 int ppsapi_lit
; /* time_pps_create() worked */
138 int tcount
; /* timecode sample counter */
139 int pcount
; /* PPS sample counter */
140 #endif /* HAVE_PPSAPI */
141 l_fp laststamp
; /* last receive timestamp */
142 u_char lasthour
; /* last hour (for monitor) */
143 u_char linect
; /* count ignored lines (for monitor */
147 * Function prototypes
149 static int wwvb_start (int, struct peer
*);
150 static void wwvb_shutdown (int, struct peer
*);
151 static void wwvb_receive (struct recvbuf
*);
152 static void wwvb_poll (int, struct peer
*);
153 static void wwvb_timer (int, struct peer
*);
155 static void wwvb_control (int, struct refclockstat
*,
156 struct refclockstat
*, struct peer
*);
157 #define WWVB_CONTROL wwvb_control
159 #define WWVB_CONTROL noentry
160 #endif /* HAVE_PPSAPI */
165 struct refclock refclock_wwvb
= {
166 wwvb_start
, /* start up driver */
167 wwvb_shutdown
, /* shut down driver */
168 wwvb_poll
, /* transmit poll message */
169 WWVB_CONTROL
, /* fudge set/change notification */
170 noentry
, /* initialize driver (not used) */
171 noentry
, /* not used (old wwvb_buginfo) */
172 wwvb_timer
/* called once per second */
177 * wwvb_start - open the devices and initialize data for processing
185 register struct wwvbunit
*up
;
186 struct refclockproc
*pp
;
191 * Open serial port. Use CLK line discipline, if available.
193 sprintf(device
, DEVICE
, unit
);
194 if (-1 == (fd
= refclock_open(device
, SPEED232
, LDISC_CLK
)))
198 * Allocate and initialize unit structure
200 up
= (struct wwvbunit
*)emalloc(sizeof(struct wwvbunit
));
201 memset((char *)up
, 0, sizeof(struct wwvbunit
));
203 pp
->unitptr
= (caddr_t
)up
;
204 pp
->io
.clock_recv
= wwvb_receive
;
205 pp
->io
.srcclock
= (caddr_t
)peer
;
208 if (!io_addclock(&pp
->io
)) {
215 * Initialize miscellaneous variables
217 peer
->precision
= PRECISION
;
218 pp
->clockdesc
= DESCRIPTION
;
219 memcpy((char *)&pp
->refid
, REFID
, 4);
225 * wwvb_shutdown - shut down the clock
233 register struct wwvbunit
*up
;
234 struct refclockproc
*pp
;
237 up
= (struct wwvbunit
*)pp
->unitptr
;
238 io_closeclock(&pp
->io
);
244 * wwvb_receive - receive data from the serial interface
248 struct recvbuf
*rbufp
252 struct refclockproc
*pp
;
255 l_fp trtmp
; /* arrival timestamp */
256 int tz
; /* time zone */
257 int day
, month
; /* ddd conversion */
258 int temp
; /* int temp */
259 char syncchar
; /* synchronization indicator */
260 char qualchar
; /* quality indicator */
261 char leapchar
; /* leap indicator */
262 char dstchar
; /* daylight/standard indicator */
263 char tmpchar
; /* trashbin */
266 * Initialize pointers and read the timecode and timestamp
268 peer
= (struct peer
*)rbufp
->recv_srcclock
;
270 up
= (struct wwvbunit
*)pp
->unitptr
;
271 temp
= refclock_gtlin(rbufp
, pp
->a_lastcode
, BMAX
, &trtmp
);
274 * Note we get a buffer and timestamp for both a <cr> and <lf>,
275 * but only the <cr> timestamp is retained. Note: in format 0 on
276 * a Netclock/2 or upgraded 8170 the start bit is delayed 100
277 * +-50 us relative to the pps; however, on an unmodified 8170
278 * the start bit can be delayed up to 10 ms. In format 2 the
279 * reading precision is only to the millisecond. Thus, unless
280 * you have a PPS gadget and don't have to have the year, format
281 * 0 provides the lowest jitter.
284 up
->laststamp
= trtmp
;
288 pp
->lastrec
= up
->laststamp
;
291 * We get down to business, check the timecode format and decode
292 * its contents. This code uses the timecode length to determine
293 * format 0, 2 or 3. If the timecode has invalid length or is
294 * not in proper format, we declare bad format and exit.
296 syncchar
= qualchar
= leapchar
= dstchar
= ' ';
298 switch (pp
->lencode
) {
303 * Timecode format 0: "I ddd hh:mm:ss DTZ=nn"
305 if (sscanf(pp
->a_lastcode
,
306 "%c %3d %2d:%2d:%2d%c%cTZ=%2d",
307 &syncchar
, &pp
->day
, &pp
->hour
, &pp
->minute
,
308 &pp
->second
, &tmpchar
, &dstchar
, &tz
) == 8)
315 * Timecode format 2: "IQyy ddd hh:mm:ss.mmm LD" */
316 if (sscanf(pp
->a_lastcode
,
317 "%c%c %2d %3d %2d:%2d:%2d.%3ld %c",
318 &syncchar
, &qualchar
, &pp
->year
, &pp
->day
,
319 &pp
->hour
, &pp
->minute
, &pp
->second
, &pp
->nsec
,
327 * Timecode format 3: "0003I yyyymmdd hhmmss+0000SL#"
329 if (sscanf(pp
->a_lastcode
,
330 "0003%c %4d%2d%2d %2d%2d%2d+0000%c%c",
331 &syncchar
, &pp
->year
, &month
, &day
, &pp
->hour
,
332 &pp
->minute
, &pp
->second
, &dstchar
, &leapchar
) == 8)
334 pp
->day
= ymd2yd(pp
->year
, month
, day
);
342 * Unknown format: If dumping internal table, record
343 * stats; otherwise, declare bad format.
345 if (up
->linect
> 0) {
347 record_clock_stats(&peer
->srcadr
,
350 refclock_report(peer
, CEVNT_BADREPLY
);
356 * Decode synchronization, quality and leap characters. If
357 * unsynchronized, set the leap bits accordingly and exit.
358 * Otherwise, set the leap bits according to the leap character.
359 * Once synchronized, the dispersion depends only on the
366 pp
->lastref
= pp
->lastrec
;
382 pp
->disp
= MAXDISPERSE
;
386 pp
->disp
= MAXDISPERSE
;
387 refclock_report(peer
, CEVNT_BADREPLY
);
391 pp
->leap
= LEAP_NOTINSYNC
;
392 else if (leapchar
== 'L')
393 pp
->leap
= LEAP_ADDSECOND
;
395 pp
->leap
= LEAP_NOWARNING
;
398 * Process the new sample in the median filter and determine the
399 * timecode timestamp, but only if the PPS is not in control.
403 if (peer
->flags
& FLAG_PPS
)
406 #endif /* HAVE_PPSAPI */
407 if (!refclock_process_f(pp
, pp
->fudgetime2
))
408 refclock_report(peer
, CEVNT_BADTIME
);
413 * wwvb_timer - called once per second by the transmit procedure
421 register struct wwvbunit
*up
;
422 struct refclockproc
*pp
;
423 char pollchar
; /* character sent to clock */
426 * Time to poll the clock. The Spectracom clock responds to a
427 * 'T' by returning a timecode in the format(s) specified above.
428 * Note there is no checking on state, since this may not be the
429 * only customer reading the clock. Only one customer need poll
430 * the clock; all others just listen in.
433 up
= (struct wwvbunit
*)pp
->unitptr
;
438 if (write(pp
->io
.fd
, &pollchar
, 1) != 1)
439 refclock_report(peer
, CEVNT_FAULT
);
441 if (up
->ppsapi_lit
&&
442 refclock_pps(peer
, &up
->atom
, pp
->sloppyclockflag
) > 0) {
444 peer
->flags
|= FLAG_PPS
;
445 peer
->precision
= PPS_PRECISION
;
447 #endif /* HAVE_PPSAPI */
452 * wwvb_poll - called by the transmit procedure
460 register struct wwvbunit
*up
;
461 struct refclockproc
*pp
;
464 * Sweep up the samples received since the last poll. If none
465 * are received, declare a timeout and keep going.
468 up
= (struct wwvbunit
*)pp
->unitptr
;
472 * If the monitor flag is set (flag4), we dump the internal
473 * quality table at the first timecode beginning the day.
475 if (pp
->sloppyclockflag
& CLK_FLAG4
&& pp
->hour
<
478 up
->lasthour
= (u_char
)pp
->hour
;
481 * Process median filter samples. If none received, declare a
482 * timeout and keep going.
485 if (up
->pcount
== 0) {
486 peer
->flags
&= ~FLAG_PPS
;
487 peer
->precision
= PRECISION
;
489 if (up
->tcount
== 0) {
490 pp
->coderecv
= pp
->codeproc
;
491 refclock_report(peer
, CEVNT_TIMEOUT
);
494 up
->pcount
= up
->tcount
= 0;
495 #else /* HAVE_PPSAPI */
496 if (pp
->coderecv
== pp
->codeproc
) {
497 refclock_report(peer
, CEVNT_TIMEOUT
);
500 #endif /* HAVE_PPSAPI */
501 refclock_receive(peer
);
502 record_clock_stats(&peer
->srcadr
, pp
->a_lastcode
);
505 printf("wwvb: timecode %d %s\n", pp
->lencode
,
512 * wwvb_control - fudge parameters have been set or changed
518 struct refclockstat
*in_st
,
519 struct refclockstat
*out_st
,
523 register struct wwvbunit
*up
;
524 struct refclockproc
*pp
;
527 up
= (struct wwvbunit
*)pp
->unitptr
;
529 if (!(pp
->sloppyclockflag
& CLK_FLAG1
)) {
530 if (!up
->ppsapi_tried
)
532 up
->ppsapi_tried
= 0;
535 peer
->flags
&= ~FLAG_PPS
;
536 peer
->precision
= PRECISION
;
537 time_pps_destroy(up
->atom
.handle
);
543 if (up
->ppsapi_tried
)
546 * Light up the PPSAPI interface.
548 up
->ppsapi_tried
= 1;
549 if (refclock_ppsapi(pp
->io
.fd
, &up
->atom
)) {
555 msyslog(LOG_WARNING
, "%s flag1 1 but PPSAPI fails",
556 refnumtoa(&peer
->srcadr
));
558 #endif /* HAVE_PPSAPI */
561 int refclock_wwvb_bs
;
562 #endif /* REFCLOCK */