aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/time
diff options
context:
space:
mode:
authorJohn Stultz <john.stultz@linaro.org>2012-05-03 15:43:40 -0400
committerJohn Stultz <john.stultz@linaro.org>2013-03-22 19:19:59 -0400
commit1ff3c9677bff7e468e0c487d0ffefe4e901d33f4 (patch)
tree202cef5857654e15eb471c2216f37f995f1c6e2f /kernel/time
parentcc244ddae6d4c6902ac9d7d64023534f8c44a7eb (diff)
timekeeping: Add CLOCK_TAI clockid
This add a CLOCK_TAI clockid and the needed accessors. CC: Thomas Gleixner <tglx@linutronix.de> CC: Eric Dumazet <eric.dumazet@gmail.com> CC: Richard Cochran <richardcochran@gmail.com> Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'kernel/time')
-rw-r--r--kernel/time/timekeeping.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index 937098aab498..8a842756572d 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -379,6 +379,36 @@ void ktime_get_ts(struct timespec *ts)
379} 379}
380EXPORT_SYMBOL_GPL(ktime_get_ts); 380EXPORT_SYMBOL_GPL(ktime_get_ts);
381 381
382
383/**
384 * timekeeping_clocktai - Returns the TAI time of day in a timespec
385 * @ts: pointer to the timespec to be set
386 *
387 * Returns the time of day in a timespec.
388 */
389void timekeeping_clocktai(struct timespec *ts)
390{
391 struct timekeeper *tk = &timekeeper;
392 unsigned long seq;
393 u64 nsecs;
394
395 WARN_ON(timekeeping_suspended);
396
397 do {
398 seq = read_seqbegin(&tk->lock);
399
400 ts->tv_sec = tk->xtime_sec + tk->tai_offset;
401 nsecs = timekeeping_get_ns(tk);
402
403 } while (read_seqretry(&tk->lock, seq));
404
405 ts->tv_nsec = 0;
406 timespec_add_ns(ts, nsecs);
407
408}
409EXPORT_SYMBOL(timekeeping_clocktai);
410
411
382#ifdef CONFIG_NTP_PPS 412#ifdef CONFIG_NTP_PPS
383 413
384/** 414/**