Adding a PPS source to ntpd



So I recently got given a Symmetricom TimeProvider 100 to have a bit of a play with - and was excited to see an ethernet port marked "NTP" on the front. After firing it up and having no luck at all talking to it on this port other than ICMP ping packets, I trawled online to try and find the manual. That's a challenge! So, as a favour to Google and all others that try to find the manual for this damn thing, I've uploaded it here. Symmetricom TimeProvider 100 User Manual One thing that struck me is this little note:

Note: The NTP feature in the NTP port is currently not implemented.
Ok, so no NTP server running on it. A little bit of a shame, but we still have a PPS port. But its BNC?! Linux has an entire API for PPS sources, but the main one seems to be using the DCD lines on a physical serial port. But how to convert a 50 ohm BNC connection to a RS232 serial port?! Easy: dsc_0057 It turns out that the PPS signal is compatible with the logic levels of the DCD line. Now all that's left is to set it up software wise. I'm using Scientific Linux 7 - so this should work across CentOS and RedHat Enterprise Linux. Testing:
$ yum install pps-tools
$ modprobe pps_ldisc
$ ldattach 18 /dev/ttyS0
$ $ ppstest /dev/pps0
trying PPS source "/dev/pps0"
found PPS source "/dev/pps0"
ok, found 1 source(s), now start fetching data...
source 0 - assert 1474704714.000005460, sequence: 4828 - clear  1474702748.000922784, sequence: 3229
source 0 - assert 1474704715.000005644, sequence: 4829 - clear  1474702748.000922784, sequence: 3229
source 0 - assert 1474704716.000002819, sequence: 4830 - clear  1474702748.000922784, sequence: 3229
source 0 - assert 1474704717.000002645, sequence: 4831 - clear  1474702748.000922784, sequence: 3229
If all of the above works, congratulations. Your PPS source works. Now you get to finalise the configuration. Firstly, we need to set up udev to properly configure the serial port on boot, add the following to: /etc/udev/rules.d/pps-sources.rules:
KERNEL=="pps0", OWNER="root", GROUP="ntp", MODE="0660"
KERNEL=="ttyS0", RUN+="/bin/setserial -v /dev/%k low_latency irq 4"
Now we need to automatically load the pps_ldisc module on boot. Create /etc/modules-load.d/pps-source.conf and throw this in there:
## Load the PPS module on boot.
pps_ldisc
Next we need to configure systemd to attach the serial port to the PPS driver on boot. Create /etc/systemd/system/ldattach@.service and use this:
[Unit]
Description=Line Discipline for GPS Timekeeping for %i
Before=ntpd.service
 
[Service]
ExecStart=/sbin/ldattach 18 /dev/%i
Type=forking
 
[Install]
WantedBy=multi-user.target
Enable this on boot and specify your serial port: $ systemctl enable ldattach@ttyS0.service The last step is to configure /etc/ntp.conf to use your PPS source. One thing to keep in mind is that the PPS source doesn't contain an actual time - so you MUST have an NTP server set to a preferred time source. I use:
server 127.127.22.0 minpoll 4 maxpoll 4
server 0.au.pool.ntp.org iburst prefer
server 1.au.pool.ntp.org iburst
server 2.au.pool.ntp.org iburst
Restart ntpd now, and you should be done: $ systemctl restart ntpd After a while, you should see some good accuracy:
$ ntpstat -q
synchronised to atomic clock at stratum 1
   time correct to within 1 ms
   polling server every 16 s
$ ntptime
ntp_gettime() returns code 0 (OK)
  time db90b5e4.76394f80  Sat, Sep 24 2016 18:20:52.461, (.461812146),
  maximum error 5500 us, estimated error 1 us, TAI offset 0
ntp_adjtime() returns code 0 (OK)
  modes 0x0 (),
  offset -1.654 us, frequency -5.593 ppm, interval 1 s,
  maximum error 5500 us, estimated error 1 us,
  status 0x2001 (PLL,NANO),
  time constant 4, precision 0.001 us, tolerance 500 ppm,

Comments


Comments powered by Disqus