Skip to content

Commit

Permalink
ptp: Add a command line option in testptp to set a specific PTP time
Browse files Browse the repository at this point in the history
Signed-off-by: Manfred Rudigier <manfred.rudigier@omicron.at>
Signed-off-by: Christian Riesch <christian.riesch@omicron.at>
Acked-by: Richard Cochran <richardcochran@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Manfred Rudigier authored and David S. Miller committed Mar 26, 2014
1 parent b620cb3 commit 271c83d
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions Documentation/ptp/testptp.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ static void usage(char *progname)
" -P val enable or disable (val=1|0) the system clock PPS\n"
" -s set the ptp clock time from the system time\n"
" -S set the system time from the ptp clock time\n"
" -t val shift the ptp clock time by 'val' seconds\n",
" -t val shift the ptp clock time by 'val' seconds\n"
" -T val set the ptp clock time to 'val' seconds\n",
progname);
}

Expand Down Expand Up @@ -172,14 +173,15 @@ int main(int argc, char *argv[])
int perout = -1;
int pin_index = -1, pin_func;
int pps = -1;
int seconds = 0;
int settime = 0;

int64_t t1, t2, tp;
int64_t interval, offset;

progname = strrchr(argv[0], '/');
progname = progname ? 1+progname : argv[0];
while (EOF != (c = getopt(argc, argv, "a:A:cd:e:f:ghi:k:lL:p:P:sSt:v"))) {
while (EOF != (c = getopt(argc, argv, "a:A:cd:e:f:ghi:k:lL:p:P:sSt:T:v"))) {
switch (c) {
case 'a':
oneshot = atoi(optarg);
Expand Down Expand Up @@ -234,6 +236,10 @@ int main(int argc, char *argv[])
case 't':
adjtime = atoi(optarg);
break;
case 'T':
settime = 3;
seconds = atoi(optarg);
break;
case 'h':
usage(progname);
return 0;
Expand Down Expand Up @@ -326,6 +332,16 @@ int main(int argc, char *argv[])
}
}

if (settime == 3) {
ts.tv_sec = seconds;
ts.tv_nsec = 0;
if (clock_settime(clkid, &ts)) {
perror("clock_settime");
} else {
puts("set time okay");
}
}

if (extts) {
memset(&extts_request, 0, sizeof(extts_request));
extts_request.index = index;
Expand Down

0 comments on commit 271c83d

Please sign in to comment.