aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2014-07-16 17:04:13 -0400
committerJohn Stultz <john.stultz@linaro.org>2014-07-23 13:17:58 -0400
commit0077dc60f274b9a7e9aa705a34784fefb87e0eee (patch)
treea4ec63fa3836caf78a9cc6c3bf484bbf883f610d
parenta016a5bd62e29a738531d9d4d925037a1fdb52f5 (diff)
timekeeping: Provide ktime_get_with_offset()
Provide a helper function which lets us implement ktime_t based interfaces for real, boot and tai clocks. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: John Stultz <john.stultz@linaro.org>
-rw-r--r--include/linux/timekeeping.h9
-rw-r--r--kernel/time/timekeeping.c27
2 files changed, 36 insertions, 0 deletions
diff --git a/include/linux/timekeeping.h b/include/linux/timekeeping.h
index 3eb19e34cc20..a58e4b1879db 100644
--- a/include/linux/timekeeping.h
+++ b/include/linux/timekeeping.h
@@ -98,7 +98,16 @@ extern void getboottime(struct timespec *ts);
98/* 98/*
99 * ktime_t based interfaces 99 * ktime_t based interfaces
100 */ 100 */
101
102enum tk_offsets {
103 TK_OFFS_REAL,
104 TK_OFFS_BOOT,
105 TK_OFFS_TAI,
106 TK_OFFS_MAX,
107};
108
101extern ktime_t ktime_get(void); 109extern ktime_t ktime_get(void);
110extern ktime_t ktime_get_with_offset(enum tk_offsets offs);
102extern ktime_t ktime_get_real(void); 111extern ktime_t ktime_get_real(void);
103extern ktime_t ktime_get_boottime(void); 112extern ktime_t ktime_get_boottime(void);
104extern ktime_t ktime_get_monotonic_offset(void); 113extern ktime_t ktime_get_monotonic_offset(void);
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index d5be1425cc03..7c5f5e4a006c 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -423,6 +423,33 @@ ktime_t ktime_get(void)
423} 423}
424EXPORT_SYMBOL_GPL(ktime_get); 424EXPORT_SYMBOL_GPL(ktime_get);
425 425
426static ktime_t *offsets[TK_OFFS_MAX] = {
427 [TK_OFFS_REAL] = &tk_core.timekeeper.offs_real,
428 [TK_OFFS_BOOT] = &tk_core.timekeeper.offs_boot,
429 [TK_OFFS_TAI] = &tk_core.timekeeper.offs_tai,
430};
431
432ktime_t ktime_get_with_offset(enum tk_offsets offs)
433{
434 struct timekeeper *tk = &tk_core.timekeeper;
435 unsigned int seq;
436 ktime_t base, *offset = offsets[offs];
437 s64 nsecs;
438
439 WARN_ON(timekeeping_suspended);
440
441 do {
442 seq = read_seqcount_begin(&tk_core.seq);
443 base = ktime_add(tk->base_mono, *offset);
444 nsecs = timekeeping_get_ns(tk);
445
446 } while (read_seqcount_retry(&tk_core.seq, seq));
447
448 return ktime_add_ns(base, nsecs);
449
450}
451EXPORT_SYMBOL_GPL(ktime_get_with_offset);
452
426/** 453/**
427 * ktime_get_ts64 - get the monotonic clock in timespec64 format 454 * ktime_get_ts64 - get the monotonic clock in timespec64 format
428 * @ts: pointer to timespec variable 455 * @ts: pointer to timespec variable