2 * PTP 1588 clock support - User space test program
4 * Copyright (C) 2010 OMICRON electronics GmbH
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #define __SANE_USERSPACE_TYPES__ /* For PPC64, to get LL64 types */
30 #include <sys/ioctl.h>
34 #include <sys/timex.h>
35 #include <sys/types.h>
39 #include <linux/ptp_clock.h>
41 #define DEVICE "/dev/ptp0"
44 #define ADJ_SETOFFSET 0x0100
48 #define CLOCK_INVALID -1
51 /* clock_adjtime is not available in GLIBC < 2.14 */
52 #if !__GLIBC_PREREQ(2, 14)
53 #include <sys/syscall.h>
54 static int clock_adjtime(clockid_t id
, struct timex
*tx
)
56 return syscall(__NR_clock_adjtime
, id
, tx
);
60 static clockid_t
get_clockid(int fd
)
63 return (((unsigned int) ~fd
) << 3) | CLOCKFD
;
66 static void handle_alarm(int s
)
68 printf("received signal %d\n", s
);
71 static int install_handler(int signum
, void (*handler
)(int))
73 struct sigaction action
;
76 /* Unblock the signal. */
78 sigaddset(&mask
, signum
);
79 sigprocmask(SIG_UNBLOCK
, &mask
, NULL
);
81 /* Install the signal handler. */
82 action
.sa_handler
= handler
;
84 sigemptyset(&action
.sa_mask
);
85 sigaction(signum
, &action
, NULL
);
90 static long ppb_to_scaled_ppm(int ppb
)
93 * The 'freq' field in the 'struct timex' is in parts per
94 * million, but with a 16 bit binary fractional field.
95 * Instead of calculating either one of
97 * scaled_ppm = (ppb / 1000) << 16 [1]
98 * scaled_ppm = (ppb << 16) / 1000 [2]
100 * we simply use double precision math, in order to avoid the
101 * truncation in [1] and the possible overflow in [2].
103 return (long) (ppb
* 65.536);
106 static int64_t pctns(struct ptp_clock_time
*t
)
108 return t
->sec
* 1000000000LL + t
->nsec
;
111 static void usage(char *progname
)
114 "usage: %s [options]\n"
115 " -a val request a one-shot alarm after 'val' seconds\n"
116 " -A val request a periodic alarm every 'val' seconds\n"
117 " -c query the ptp clock's capabilities\n"
118 " -d name device to open\n"
119 " -e val read 'val' external time stamp events\n"
120 " -f val adjust the ptp clock frequency by 'val' ppb\n"
121 " -g get the ptp clock time\n"
122 " -h prints this message\n"
123 " -i val index for event/trigger\n"
124 " -k val measure the time offset between system and phc clock\n"
125 " for 'val' times (Maximum 25)\n"
126 " -l list the current pin configuration\n"
127 " -L pin,val configure pin index 'pin' with function 'val'\n"
128 " the channel index is taken from the '-i' option\n"
129 " 'val' specifies the auxiliary function:\n"
131 " 1 - external time stamp\n"
132 " 2 - periodic output\n"
133 " -p val enable output with a period of 'val' nanoseconds\n"
134 " -P val enable or disable (val=1|0) the system clock PPS\n"
135 " -s set the ptp clock time from the system time\n"
136 " -S set the system time from the ptp clock time\n"
137 " -t val shift the ptp clock time by 'val' seconds\n"
138 " -T val set the ptp clock time to 'val' seconds\n",
142 int main(int argc
, char *argv
[])
144 struct ptp_clock_caps caps
;
145 struct ptp_extts_event event
;
146 struct ptp_extts_request extts_request
;
147 struct ptp_perout_request perout_request
;
148 struct ptp_pin_desc desc
;
152 static timer_t timerid
;
153 struct itimerspec timeout
;
154 struct sigevent sigevent
;
156 struct ptp_clock_time
*pct
;
157 struct ptp_sys_offset
*sysoff
;
164 char *device
= DEVICE
;
166 int adjfreq
= 0x7fffffff;
168 int capabilities
= 0;
178 int pin_index
= -1, pin_func
;
184 int64_t interval
, offset
;
186 progname
= strrchr(argv
[0], '/');
187 progname
= progname
? 1+progname
: argv
[0];
188 while (EOF
!= (c
= getopt(argc
, argv
, "a:A:cd:e:f:ghi:k:lL:p:P:sSt:T:v"))) {
191 oneshot
= atoi(optarg
);
194 periodic
= atoi(optarg
);
203 extts
= atoi(optarg
);
206 adjfreq
= atoi(optarg
);
212 index
= atoi(optarg
);
216 n_samples
= atoi(optarg
);
222 cnt
= sscanf(optarg
, "%d,%d", &pin_index
, &pin_func
);
229 perout
= atoi(optarg
);
241 adjtime
= atoi(optarg
);
245 seconds
= atoi(optarg
);
257 fd
= open(device
, O_RDWR
);
259 fprintf(stderr
, "opening %s: %s\n", device
, strerror(errno
));
263 clkid
= get_clockid(fd
);
264 if (CLOCK_INVALID
== clkid
) {
265 fprintf(stderr
, "failed to read clock id\n");
270 if (ioctl(fd
, PTP_CLOCK_GETCAPS
, &caps
)) {
271 perror("PTP_CLOCK_GETCAPS");
273 printf("capabilities:\n"
274 " %d maximum frequency adjustment (ppb)\n"
275 " %d programmable alarms\n"
276 " %d external time stamp channels\n"
277 " %d programmable periodic signals\n"
278 " %d pulse per second\n"
279 " %d programmable pins\n"
280 " %d cross timestamping\n",
287 caps
.cross_timestamping
);
291 if (0x7fffffff != adjfreq
) {
292 memset(&tx
, 0, sizeof(tx
));
293 tx
.modes
= ADJ_FREQUENCY
;
294 tx
.freq
= ppb_to_scaled_ppm(adjfreq
);
295 if (clock_adjtime(clkid
, &tx
)) {
296 perror("clock_adjtime");
298 puts("frequency adjustment okay");
303 memset(&tx
, 0, sizeof(tx
));
304 tx
.modes
= ADJ_SETOFFSET
;
305 tx
.time
.tv_sec
= adjtime
;
307 if (clock_adjtime(clkid
, &tx
) < 0) {
308 perror("clock_adjtime");
310 puts("time shift okay");
315 if (clock_gettime(clkid
, &ts
)) {
316 perror("clock_gettime");
318 printf("clock time: %ld.%09ld or %s",
319 ts
.tv_sec
, ts
.tv_nsec
, ctime(&ts
.tv_sec
));
324 clock_gettime(CLOCK_REALTIME
, &ts
);
325 if (clock_settime(clkid
, &ts
)) {
326 perror("clock_settime");
328 puts("set time okay");
333 clock_gettime(clkid
, &ts
);
334 if (clock_settime(CLOCK_REALTIME
, &ts
)) {
335 perror("clock_settime");
337 puts("set time okay");
344 if (clock_settime(clkid
, &ts
)) {
345 perror("clock_settime");
347 puts("set time okay");
352 memset(&extts_request
, 0, sizeof(extts_request
));
353 extts_request
.index
= index
;
354 extts_request
.flags
= PTP_ENABLE_FEATURE
;
355 if (ioctl(fd
, PTP_EXTTS_REQUEST
, &extts_request
)) {
356 perror("PTP_EXTTS_REQUEST");
359 puts("external time stamp request okay");
361 for (; extts
; extts
--) {
362 cnt
= read(fd
, &event
, sizeof(event
));
363 if (cnt
!= sizeof(event
)) {
367 printf("event index %u at %lld.%09u\n", event
.index
,
368 event
.t
.sec
, event
.t
.nsec
);
371 /* Disable the feature again. */
372 extts_request
.flags
= 0;
373 if (ioctl(fd
, PTP_EXTTS_REQUEST
, &extts_request
)) {
374 perror("PTP_EXTTS_REQUEST");
380 if (ioctl(fd
, PTP_CLOCK_GETCAPS
, &caps
)) {
381 perror("PTP_CLOCK_GETCAPS");
383 n_pins
= caps
.n_pins
;
385 for (i
= 0; i
< n_pins
; i
++) {
387 if (ioctl(fd
, PTP_PIN_GETFUNC
, &desc
)) {
388 perror("PTP_PIN_GETFUNC");
391 printf("name %s index %u func %u chan %u\n",
392 desc
.name
, desc
.index
, desc
.func
, desc
.chan
);
397 install_handler(SIGALRM
, handle_alarm
);
398 /* Create a timer. */
399 sigevent
.sigev_notify
= SIGEV_SIGNAL
;
400 sigevent
.sigev_signo
= SIGALRM
;
401 if (timer_create(clkid
, &sigevent
, &timerid
)) {
402 perror("timer_create");
405 /* Start the timer. */
406 memset(&timeout
, 0, sizeof(timeout
));
407 timeout
.it_value
.tv_sec
= oneshot
;
408 if (timer_settime(timerid
, 0, &timeout
, NULL
)) {
409 perror("timer_settime");
413 timer_delete(timerid
);
417 install_handler(SIGALRM
, handle_alarm
);
418 /* Create a timer. */
419 sigevent
.sigev_notify
= SIGEV_SIGNAL
;
420 sigevent
.sigev_signo
= SIGALRM
;
421 if (timer_create(clkid
, &sigevent
, &timerid
)) {
422 perror("timer_create");
425 /* Start the timer. */
426 memset(&timeout
, 0, sizeof(timeout
));
427 timeout
.it_interval
.tv_sec
= periodic
;
428 timeout
.it_value
.tv_sec
= periodic
;
429 if (timer_settime(timerid
, 0, &timeout
, NULL
)) {
430 perror("timer_settime");
436 timer_delete(timerid
);
440 if (clock_gettime(clkid
, &ts
)) {
441 perror("clock_gettime");
444 memset(&perout_request
, 0, sizeof(perout_request
));
445 perout_request
.index
= index
;
446 perout_request
.start
.sec
= ts
.tv_sec
+ 2;
447 perout_request
.start
.nsec
= 0;
448 perout_request
.period
.sec
= 0;
449 perout_request
.period
.nsec
= perout
;
450 if (ioctl(fd
, PTP_PEROUT_REQUEST
, &perout_request
)) {
451 perror("PTP_PEROUT_REQUEST");
453 puts("periodic output request okay");
457 if (pin_index
>= 0) {
458 memset(&desc
, 0, sizeof(desc
));
459 desc
.index
= pin_index
;
460 desc
.func
= pin_func
;
462 if (ioctl(fd
, PTP_PIN_SETFUNC
, &desc
)) {
463 perror("PTP_PIN_SETFUNC");
465 puts("set pin function okay");
470 int enable
= pps
? 1 : 0;
471 if (ioctl(fd
, PTP_ENABLE_PPS
, enable
)) {
472 perror("PTP_ENABLE_PPS");
474 puts("pps for system time request okay");
479 if (n_samples
<= 0 || n_samples
> 25) {
480 puts("n_samples should be between 1 and 25");
485 sysoff
= calloc(1, sizeof(*sysoff
));
490 sysoff
->n_samples
= n_samples
;
492 if (ioctl(fd
, PTP_SYS_OFFSET
, sysoff
))
493 perror("PTP_SYS_OFFSET");
495 puts("system and phc clock time offset request okay");
497 pct
= &sysoff
->ts
[0];
498 for (i
= 0; i
< sysoff
->n_samples
; i
++) {
500 tp
= pctns(pct
+2*i
+1);
501 t2
= pctns(pct
+2*i
+2);
503 offset
= (t2
+ t1
) / 2 - tp
;
505 printf("system time: %lld.%u\n",
506 (pct
+2*i
)->sec
, (pct
+2*i
)->nsec
);
507 printf("phc time: %lld.%u\n",
508 (pct
+2*i
+1)->sec
, (pct
+2*i
+1)->nsec
);
509 printf("system time: %lld.%u\n",
510 (pct
+2*i
+2)->sec
, (pct
+2*i
+2)->nsec
);
511 printf("system/phc clock time offset is %" PRId64
" ns\n"
512 "system clock time delay is %" PRId64
" ns\n",