blob: 3210c9e690c58dd02576bb986d181cb7683475a7 [file] [log] [blame]
john stultz85240702007-05-08 00:27:59 -07001/*
2 * linux/kernel/time/timekeeping.c
3 *
4 * Kernel timekeeping code and accessor functions
5 *
6 * This code was moved from linux/kernel/timer.c.
7 * Please see that file for copyright and history logs.
8 *
9 */
10
John Stultzd7b42022012-09-04 15:12:07 -040011#include <linux/timekeeper_internal.h>
john stultz85240702007-05-08 00:27:59 -070012#include <linux/module.h>
13#include <linux/interrupt.h>
14#include <linux/percpu.h>
15#include <linux/init.h>
16#include <linux/mm.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040017#include <linux/sched.h>
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +010018#include <linux/syscore_ops.h>
john stultz85240702007-05-08 00:27:59 -070019#include <linux/clocksource.h>
20#include <linux/jiffies.h>
21#include <linux/time.h>
22#include <linux/tick.h>
Martin Schwidefsky75c51582009-08-14 15:47:30 +020023#include <linux/stop_machine.h>
Marcelo Tosattie0b306f2012-11-27 23:28:59 -020024#include <linux/pvclock_gtod.h>
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -070025#include <linux/compiler.h>
john stultz85240702007-05-08 00:27:59 -070026
Thomas Gleixnereb93e4d2013-02-21 22:51:36 +000027#include "tick-internal.h"
John Stultzaa6f9c592013-03-22 11:31:29 -070028#include "ntp_internal.h"
Colin Cross5c835452013-05-21 22:32:14 -070029#include "timekeeping_internal.h"
Martin Schwidefsky155ec602009-08-14 15:47:26 +020030
David Vrabel04397fe92013-06-27 11:35:45 +010031#define TK_CLEAR_NTP (1 << 0)
32#define TK_MIRROR (1 << 1)
David Vrabel780427f2013-06-27 11:35:46 +010033#define TK_CLOCK_WAS_SET (1 << 2)
David Vrabel04397fe92013-06-27 11:35:45 +010034
H Hartley Sweetenafa14e72011-01-11 17:59:38 -060035static struct timekeeper timekeeper;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +000036static DEFINE_RAW_SPINLOCK(timekeeper_lock);
37static seqcount_t timekeeper_seq;
Thomas Gleixner48cdc132013-02-21 22:51:40 +000038static struct timekeeper shadow_timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020039
John Stultz8fcce542011-11-14 11:46:39 -080040/* flag for if timekeeping is suspended */
41int __read_mostly timekeeping_suspended;
42
Feng Tang31ade302013-01-16 00:09:47 +080043/* Flag for if there is a persistent clock on this platform */
44bool __read_mostly persistent_clock_exist = false;
45
John Stultz1e75fa82012-07-13 01:21:53 -040046static inline void tk_normalize_xtime(struct timekeeper *tk)
47{
48 while (tk->xtime_nsec >= ((u64)NSEC_PER_SEC << tk->shift)) {
49 tk->xtime_nsec -= (u64)NSEC_PER_SEC << tk->shift;
50 tk->xtime_sec++;
51 }
52}
John Stultz8fcce542011-11-14 11:46:39 -080053
John Stultz7d489d12014-07-16 21:04:01 +000054static void tk_set_xtime(struct timekeeper *tk, const struct timespec64 *ts)
John Stultz1e75fa82012-07-13 01:21:53 -040055{
56 tk->xtime_sec = ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040057 tk->xtime_nsec = (u64)ts->tv_nsec << tk->shift;
John Stultz1e75fa82012-07-13 01:21:53 -040058}
59
John Stultz7d489d12014-07-16 21:04:01 +000060static void tk_xtime_add(struct timekeeper *tk, const struct timespec64 *ts)
John Stultz1e75fa82012-07-13 01:21:53 -040061{
62 tk->xtime_sec += ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040063 tk->xtime_nsec += (u64)ts->tv_nsec << tk->shift;
John Stultz784ffcb2012-08-21 20:30:46 -040064 tk_normalize_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -040065}
John Stultz8fcce542011-11-14 11:46:39 -080066
John Stultz7d489d12014-07-16 21:04:01 +000067static void tk_set_wall_to_mono(struct timekeeper *tk, struct timespec64 wtm)
John Stultz6d0ef902012-07-27 14:48:12 -040068{
John Stultz7d489d12014-07-16 21:04:01 +000069 struct timespec64 tmp;
John Stultz6d0ef902012-07-27 14:48:12 -040070
71 /*
72 * Verify consistency of: offset_real = -wall_to_monotonic
73 * before modifying anything
74 */
John Stultz7d489d12014-07-16 21:04:01 +000075 set_normalized_timespec64(&tmp, -tk->wall_to_monotonic.tv_sec,
John Stultz6d0ef902012-07-27 14:48:12 -040076 -tk->wall_to_monotonic.tv_nsec);
John Stultz7d489d12014-07-16 21:04:01 +000077 WARN_ON_ONCE(tk->offs_real.tv64 != timespec64_to_ktime(tmp).tv64);
John Stultz6d0ef902012-07-27 14:48:12 -040078 tk->wall_to_monotonic = wtm;
John Stultz7d489d12014-07-16 21:04:01 +000079 set_normalized_timespec64(&tmp, -wtm.tv_sec, -wtm.tv_nsec);
80 tk->offs_real = timespec64_to_ktime(tmp);
John Stultz04005f62013-12-10 17:13:35 -080081 tk->offs_tai = ktime_add(tk->offs_real, ktime_set(tk->tai_offset, 0));
John Stultz6d0ef902012-07-27 14:48:12 -040082}
83
John Stultz7d489d12014-07-16 21:04:01 +000084static void tk_set_sleep_time(struct timekeeper *tk, struct timespec64 t)
John Stultz6d0ef902012-07-27 14:48:12 -040085{
86 /* Verify consistency before modifying */
John Stultz7d489d12014-07-16 21:04:01 +000087 WARN_ON_ONCE(tk->offs_boot.tv64 != timespec64_to_ktime(tk->total_sleep_time).tv64);
John Stultz6d0ef902012-07-27 14:48:12 -040088
89 tk->total_sleep_time = t;
John Stultz7d489d12014-07-16 21:04:01 +000090 tk->offs_boot = timespec64_to_ktime(t);
John Stultz6d0ef902012-07-27 14:48:12 -040091}
92
Martin Schwidefsky155ec602009-08-14 15:47:26 +020093/**
Yijing Wangd26e4fe2013-11-28 16:28:55 +080094 * tk_setup_internals - Set up internals to use clocksource clock.
Martin Schwidefsky155ec602009-08-14 15:47:26 +020095 *
Yijing Wangd26e4fe2013-11-28 16:28:55 +080096 * @tk: The target timekeeper to setup.
Martin Schwidefsky155ec602009-08-14 15:47:26 +020097 * @clock: Pointer to clocksource.
98 *
99 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
100 * pair and interval request.
101 *
102 * Unless you're the timekeeping code, you should not be using this!
103 */
John Stultzf726a692012-07-13 01:21:57 -0400104static void tk_setup_internals(struct timekeeper *tk, struct clocksource *clock)
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200105{
106 cycle_t interval;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700107 u64 tmp, ntpinterval;
John Stultz1e75fa82012-07-13 01:21:53 -0400108 struct clocksource *old_clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200109
John Stultzf726a692012-07-13 01:21:57 -0400110 old_clock = tk->clock;
111 tk->clock = clock;
Thomas Gleixner14a3b6a2013-02-21 22:51:38 +0000112 tk->cycle_last = clock->cycle_last = clock->read(clock);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200113
114 /* Do the ns -> cycle conversion first, using original mult */
115 tmp = NTP_INTERVAL_LENGTH;
116 tmp <<= clock->shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700117 ntpinterval = tmp;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200118 tmp += clock->mult/2;
119 do_div(tmp, clock->mult);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200120 if (tmp == 0)
121 tmp = 1;
122
123 interval = (cycle_t) tmp;
John Stultzf726a692012-07-13 01:21:57 -0400124 tk->cycle_interval = interval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200125
126 /* Go back from cycles -> shifted ns */
John Stultzf726a692012-07-13 01:21:57 -0400127 tk->xtime_interval = (u64) interval * clock->mult;
128 tk->xtime_remainder = ntpinterval - tk->xtime_interval;
129 tk->raw_interval =
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200130 ((u64) interval * clock->mult) >> clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200131
John Stultz1e75fa82012-07-13 01:21:53 -0400132 /* if changing clocks, convert xtime_nsec shift units */
133 if (old_clock) {
134 int shift_change = clock->shift - old_clock->shift;
135 if (shift_change < 0)
John Stultzf726a692012-07-13 01:21:57 -0400136 tk->xtime_nsec >>= -shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400137 else
John Stultzf726a692012-07-13 01:21:57 -0400138 tk->xtime_nsec <<= shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400139 }
John Stultzf726a692012-07-13 01:21:57 -0400140 tk->shift = clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200141
John Stultzf726a692012-07-13 01:21:57 -0400142 tk->ntp_error = 0;
143 tk->ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200144
145 /*
146 * The timekeeper keeps its own mult values for the currently
147 * active clocksource. These value will be adjusted via NTP
148 * to counteract clock drifting.
149 */
John Stultzf726a692012-07-13 01:21:57 -0400150 tk->mult = clock->mult;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200151}
john stultz85240702007-05-08 00:27:59 -0700152
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200153/* Timekeeper helper functions. */
Stephen Warren7b1f6202012-11-07 17:58:54 -0700154
155#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000156static u32 default_arch_gettimeoffset(void) { return 0; }
157u32 (*arch_gettimeoffset)(void) = default_arch_gettimeoffset;
Stephen Warren7b1f6202012-11-07 17:58:54 -0700158#else
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000159static inline u32 arch_gettimeoffset(void) { return 0; }
Stephen Warren7b1f6202012-11-07 17:58:54 -0700160#endif
161
John Stultzf726a692012-07-13 01:21:57 -0400162static inline s64 timekeeping_get_ns(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200163{
164 cycle_t cycle_now, cycle_delta;
165 struct clocksource *clock;
John Stultz1e75fa82012-07-13 01:21:53 -0400166 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200167
168 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400169 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200170 cycle_now = clock->read(clock);
171
172 /* calculate the delta since the last update_wall_time: */
173 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
174
John Stultzf726a692012-07-13 01:21:57 -0400175 nsec = cycle_delta * tk->mult + tk->xtime_nsec;
176 nsec >>= tk->shift;
John Stultzf2a5a082012-07-13 01:21:55 -0400177
Stephen Warren7b1f6202012-11-07 17:58:54 -0700178 /* If arch requires, add in get_arch_timeoffset() */
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000179 return nsec + arch_gettimeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200180}
181
John Stultzf726a692012-07-13 01:21:57 -0400182static inline s64 timekeeping_get_ns_raw(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200183{
184 cycle_t cycle_now, cycle_delta;
185 struct clocksource *clock;
John Stultzf2a5a082012-07-13 01:21:55 -0400186 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200187
188 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400189 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200190 cycle_now = clock->read(clock);
191
192 /* calculate the delta since the last update_wall_time: */
193 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
194
John Stultzf2a5a082012-07-13 01:21:55 -0400195 /* convert delta to nanoseconds. */
196 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
197
Stephen Warren7b1f6202012-11-07 17:58:54 -0700198 /* If arch requires, add in get_arch_timeoffset() */
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000199 return nsec + arch_gettimeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200200}
201
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200202static RAW_NOTIFIER_HEAD(pvclock_gtod_chain);
203
David Vrabel780427f2013-06-27 11:35:46 +0100204static void update_pvclock_gtod(struct timekeeper *tk, bool was_set)
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200205{
David Vrabel780427f2013-06-27 11:35:46 +0100206 raw_notifier_call_chain(&pvclock_gtod_chain, was_set, tk);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200207}
208
209/**
210 * pvclock_gtod_register_notifier - register a pvclock timedata update listener
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200211 */
212int pvclock_gtod_register_notifier(struct notifier_block *nb)
213{
214 struct timekeeper *tk = &timekeeper;
215 unsigned long flags;
216 int ret;
217
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000218 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200219 ret = raw_notifier_chain_register(&pvclock_gtod_chain, nb);
David Vrabel780427f2013-06-27 11:35:46 +0100220 update_pvclock_gtod(tk, true);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000221 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200222
223 return ret;
224}
225EXPORT_SYMBOL_GPL(pvclock_gtod_register_notifier);
226
227/**
228 * pvclock_gtod_unregister_notifier - unregister a pvclock
229 * timedata update listener
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200230 */
231int pvclock_gtod_unregister_notifier(struct notifier_block *nb)
232{
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200233 unsigned long flags;
234 int ret;
235
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000236 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200237 ret = raw_notifier_chain_unregister(&pvclock_gtod_chain, nb);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000238 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200239
240 return ret;
241}
242EXPORT_SYMBOL_GPL(pvclock_gtod_unregister_notifier);
243
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000244/* must hold timekeeper_lock */
David Vrabel04397fe92013-06-27 11:35:45 +0100245static void timekeeping_update(struct timekeeper *tk, unsigned int action)
Thomas Gleixnercc062682011-11-13 23:19:49 +0000246{
David Vrabel04397fe92013-06-27 11:35:45 +0100247 if (action & TK_CLEAR_NTP) {
John Stultzf726a692012-07-13 01:21:57 -0400248 tk->ntp_error = 0;
Thomas Gleixnercc062682011-11-13 23:19:49 +0000249 ntp_clear();
250 }
John Stultz576094b2012-09-11 19:58:13 -0400251 update_vsyscall(tk);
David Vrabel780427f2013-06-27 11:35:46 +0100252 update_pvclock_gtod(tk, action & TK_CLOCK_WAS_SET);
Thomas Gleixner48cdc132013-02-21 22:51:40 +0000253
David Vrabel04397fe92013-06-27 11:35:45 +0100254 if (action & TK_MIRROR)
Thomas Gleixner48cdc132013-02-21 22:51:40 +0000255 memcpy(&shadow_timekeeper, &timekeeper, sizeof(timekeeper));
Thomas Gleixnercc062682011-11-13 23:19:49 +0000256}
257
john stultz85240702007-05-08 00:27:59 -0700258/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200259 * timekeeping_forward_now - update clock to the current time
john stultz85240702007-05-08 00:27:59 -0700260 *
Roman Zippel9a055112008-08-20 16:37:28 -0700261 * Forward the current clock to update its state since the last call to
262 * update_wall_time(). This is useful before significant clock changes,
263 * as it avoids having to deal with this time offset explicitly.
john stultz85240702007-05-08 00:27:59 -0700264 */
John Stultzf726a692012-07-13 01:21:57 -0400265static void timekeeping_forward_now(struct timekeeper *tk)
john stultz85240702007-05-08 00:27:59 -0700266{
267 cycle_t cycle_now, cycle_delta;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200268 struct clocksource *clock;
Roman Zippel9a055112008-08-20 16:37:28 -0700269 s64 nsec;
john stultz85240702007-05-08 00:27:59 -0700270
John Stultzf726a692012-07-13 01:21:57 -0400271 clock = tk->clock;
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200272 cycle_now = clock->read(clock);
john stultz85240702007-05-08 00:27:59 -0700273 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
Thomas Gleixner14a3b6a2013-02-21 22:51:38 +0000274 tk->cycle_last = clock->cycle_last = cycle_now;
john stultz85240702007-05-08 00:27:59 -0700275
John Stultzf726a692012-07-13 01:21:57 -0400276 tk->xtime_nsec += cycle_delta * tk->mult;
john stultz7d275582009-05-01 13:10:26 -0700277
Stephen Warren7b1f6202012-11-07 17:58:54 -0700278 /* If arch requires, add in get_arch_timeoffset() */
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000279 tk->xtime_nsec += (u64)arch_gettimeoffset() << tk->shift;
john stultz7d275582009-05-01 13:10:26 -0700280
John Stultzf726a692012-07-13 01:21:57 -0400281 tk_normalize_xtime(tk);
John Stultz2d422442008-08-20 16:37:30 -0700282
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200283 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
John Stultz7d489d12014-07-16 21:04:01 +0000284 timespec64_add_ns(&tk->raw_time, nsec);
john stultz85240702007-05-08 00:27:59 -0700285}
286
287/**
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000288 * __getnstimeofday64 - Returns the time of day in a timespec64.
john stultz85240702007-05-08 00:27:59 -0700289 * @ts: pointer to the timespec to be set
290 *
Kees Cook1e817fb2012-11-19 10:26:16 -0800291 * Updates the time of day in the timespec.
292 * Returns 0 on success, or -ve when suspended (timespec will be undefined).
john stultz85240702007-05-08 00:27:59 -0700293 */
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000294int __getnstimeofday64(struct timespec64 *ts)
john stultz85240702007-05-08 00:27:59 -0700295{
John Stultz4e250fd2012-07-27 14:48:13 -0400296 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700297 unsigned long seq;
John Stultz1e75fa82012-07-13 01:21:53 -0400298 s64 nsecs = 0;
john stultz85240702007-05-08 00:27:59 -0700299
300 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000301 seq = read_seqcount_begin(&timekeeper_seq);
john stultz85240702007-05-08 00:27:59 -0700302
John Stultz4e250fd2012-07-27 14:48:13 -0400303 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400304 nsecs = timekeeping_get_ns(tk);
john stultz85240702007-05-08 00:27:59 -0700305
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000306 } while (read_seqcount_retry(&timekeeper_seq, seq));
john stultz85240702007-05-08 00:27:59 -0700307
John Stultzec145ba2012-09-11 19:26:03 -0400308 ts->tv_nsec = 0;
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000309 timespec64_add_ns(ts, nsecs);
Kees Cook1e817fb2012-11-19 10:26:16 -0800310
311 /*
312 * Do not bail out early, in case there were callers still using
313 * the value, even in the face of the WARN_ON.
314 */
315 if (unlikely(timekeeping_suspended))
316 return -EAGAIN;
317 return 0;
318}
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000319EXPORT_SYMBOL(__getnstimeofday64);
Kees Cook1e817fb2012-11-19 10:26:16 -0800320
321/**
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000322 * getnstimeofday64 - Returns the time of day in a timespec64.
Kees Cook1e817fb2012-11-19 10:26:16 -0800323 * @ts: pointer to the timespec to be set
324 *
325 * Returns the time of day in a timespec (WARN if suspended).
326 */
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000327void getnstimeofday64(struct timespec64 *ts)
Kees Cook1e817fb2012-11-19 10:26:16 -0800328{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000329 WARN_ON(__getnstimeofday64(ts));
john stultz85240702007-05-08 00:27:59 -0700330}
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000331EXPORT_SYMBOL(getnstimeofday64);
john stultz85240702007-05-08 00:27:59 -0700332
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200333ktime_t ktime_get(void)
334{
John Stultz4e250fd2012-07-27 14:48:13 -0400335 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200336 unsigned int seq;
337 s64 secs, nsecs;
338
339 WARN_ON(timekeeping_suspended);
340
341 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000342 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -0400343 secs = tk->xtime_sec + tk->wall_to_monotonic.tv_sec;
344 nsecs = timekeeping_get_ns(tk) + tk->wall_to_monotonic.tv_nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200345
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000346 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz24e4a8c2014-07-16 21:03:53 +0000347
348 return ktime_set(secs, nsecs);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200349}
350EXPORT_SYMBOL_GPL(ktime_get);
351
352/**
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000353 * ktime_get_ts64 - get the monotonic clock in timespec64 format
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200354 * @ts: pointer to timespec variable
355 *
356 * The function calculates the monotonic clock from the realtime
357 * clock and the wall_to_monotonic offset and stores the result
358 * in normalized timespec format in the variable pointed to by @ts.
359 */
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000360void ktime_get_ts64(struct timespec64 *ts)
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200361{
John Stultz4e250fd2012-07-27 14:48:13 -0400362 struct timekeeper *tk = &timekeeper;
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000363 struct timespec64 tomono;
John Stultzec145ba2012-09-11 19:26:03 -0400364 s64 nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200365 unsigned int seq;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200366
367 WARN_ON(timekeeping_suspended);
368
369 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000370 seq = read_seqcount_begin(&timekeeper_seq);
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000371 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400372 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -0400373 tomono = tk->wall_to_monotonic;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200374
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000375 } while (read_seqcount_retry(&timekeeper_seq, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200376
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000377 ts->tv_sec += tomono.tv_sec;
378 ts->tv_nsec = 0;
379 timespec64_add_ns(ts, nsec + tomono.tv_nsec);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200380}
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000381EXPORT_SYMBOL_GPL(ktime_get_ts64);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200382
John Stultz1ff3c962012-05-03 12:43:40 -0700383
384/**
385 * timekeeping_clocktai - Returns the TAI time of day in a timespec
386 * @ts: pointer to the timespec to be set
387 *
388 * Returns the time of day in a timespec.
389 */
390void timekeeping_clocktai(struct timespec *ts)
391{
392 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000393 struct timespec64 ts64;
John Stultz1ff3c962012-05-03 12:43:40 -0700394 unsigned long seq;
395 u64 nsecs;
396
397 WARN_ON(timekeeping_suspended);
398
399 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000400 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz1ff3c962012-05-03 12:43:40 -0700401
John Stultz7d489d12014-07-16 21:04:01 +0000402 ts64.tv_sec = tk->xtime_sec + tk->tai_offset;
John Stultz1ff3c962012-05-03 12:43:40 -0700403 nsecs = timekeeping_get_ns(tk);
404
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000405 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz1ff3c962012-05-03 12:43:40 -0700406
John Stultz7d489d12014-07-16 21:04:01 +0000407 ts64.tv_nsec = 0;
408 timespec64_add_ns(&ts64, nsecs);
409 *ts = timespec64_to_timespec(ts64);
John Stultz1ff3c962012-05-03 12:43:40 -0700410
411}
412EXPORT_SYMBOL(timekeeping_clocktai);
413
414
John Stultz90adda92013-01-21 17:00:11 -0800415/**
416 * ktime_get_clocktai - Returns the TAI time of day in a ktime
417 *
418 * Returns the time of day in a ktime.
419 */
420ktime_t ktime_get_clocktai(void)
421{
422 struct timespec ts;
423
424 timekeeping_clocktai(&ts);
425 return timespec_to_ktime(ts);
426}
427EXPORT_SYMBOL(ktime_get_clocktai);
428
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800429#ifdef CONFIG_NTP_PPS
430
431/**
432 * getnstime_raw_and_real - get day and raw monotonic time in timespec format
433 * @ts_raw: pointer to the timespec to be set to raw monotonic time
434 * @ts_real: pointer to the timespec to be set to the time of day
435 *
436 * This function reads both the time of day and raw monotonic time at the
437 * same time atomically and stores the resulting timestamps in timespec
438 * format.
439 */
440void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
441{
John Stultz4e250fd2012-07-27 14:48:13 -0400442 struct timekeeper *tk = &timekeeper;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800443 unsigned long seq;
444 s64 nsecs_raw, nsecs_real;
445
446 WARN_ON_ONCE(timekeeping_suspended);
447
448 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000449 seq = read_seqcount_begin(&timekeeper_seq);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800450
John Stultz7d489d12014-07-16 21:04:01 +0000451 *ts_raw = timespec64_to_timespec(tk->raw_time);
John Stultz4e250fd2012-07-27 14:48:13 -0400452 ts_real->tv_sec = tk->xtime_sec;
John Stultz1e75fa82012-07-13 01:21:53 -0400453 ts_real->tv_nsec = 0;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800454
John Stultz4e250fd2012-07-27 14:48:13 -0400455 nsecs_raw = timekeeping_get_ns_raw(tk);
456 nsecs_real = timekeeping_get_ns(tk);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800457
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000458 } while (read_seqcount_retry(&timekeeper_seq, seq));
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800459
460 timespec_add_ns(ts_raw, nsecs_raw);
461 timespec_add_ns(ts_real, nsecs_real);
462}
463EXPORT_SYMBOL(getnstime_raw_and_real);
464
465#endif /* CONFIG_NTP_PPS */
466
john stultz85240702007-05-08 00:27:59 -0700467/**
468 * do_gettimeofday - Returns the time of day in a timeval
469 * @tv: pointer to the timeval to be set
470 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100471 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -0700472 */
473void do_gettimeofday(struct timeval *tv)
474{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000475 struct timespec64 now;
john stultz85240702007-05-08 00:27:59 -0700476
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000477 getnstimeofday64(&now);
john stultz85240702007-05-08 00:27:59 -0700478 tv->tv_sec = now.tv_sec;
479 tv->tv_usec = now.tv_nsec/1000;
480}
john stultz85240702007-05-08 00:27:59 -0700481EXPORT_SYMBOL(do_gettimeofday);
Richard Cochrand239f492012-04-27 10:12:42 +0200482
john stultz85240702007-05-08 00:27:59 -0700483/**
484 * do_settimeofday - Sets the time of day
485 * @tv: pointer to the timespec variable containing the new time
486 *
487 * Sets the time of day to the new time and update NTP and notify hrtimers
488 */
Richard Cochran1e6d7672011-02-01 13:50:58 +0000489int do_settimeofday(const struct timespec *tv)
john stultz85240702007-05-08 00:27:59 -0700490{
John Stultz4e250fd2012-07-27 14:48:13 -0400491 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000492 struct timespec64 ts_delta, xt, tmp;
John Stultz92c1d3e2011-11-14 14:05:44 -0800493 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700494
John Stultzcee58482012-08-31 13:30:06 -0400495 if (!timespec_valid_strict(tv))
john stultz85240702007-05-08 00:27:59 -0700496 return -EINVAL;
497
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000498 raw_spin_lock_irqsave(&timekeeper_lock, flags);
499 write_seqcount_begin(&timekeeper_seq);
john stultz85240702007-05-08 00:27:59 -0700500
John Stultz4e250fd2012-07-27 14:48:13 -0400501 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700502
John Stultz4e250fd2012-07-27 14:48:13 -0400503 xt = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400504 ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
505 ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
506
John Stultz7d489d12014-07-16 21:04:01 +0000507 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, ts_delta));
john stultz85240702007-05-08 00:27:59 -0700508
John Stultz7d489d12014-07-16 21:04:01 +0000509 tmp = timespec_to_timespec64(*tv);
510 tk_set_xtime(tk, &tmp);
John Stultz1e75fa82012-07-13 01:21:53 -0400511
David Vrabel780427f2013-06-27 11:35:46 +0100512 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
john stultz85240702007-05-08 00:27:59 -0700513
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000514 write_seqcount_end(&timekeeper_seq);
515 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -0700516
517 /* signal hrtimers about time change */
518 clock_was_set();
519
520 return 0;
521}
john stultz85240702007-05-08 00:27:59 -0700522EXPORT_SYMBOL(do_settimeofday);
523
John Stultzc528f7c2011-02-01 13:52:17 +0000524/**
525 * timekeeping_inject_offset - Adds or subtracts from the current time.
526 * @tv: pointer to the timespec variable containing the offset
527 *
528 * Adds or subtracts an offset value from the current time.
529 */
530int timekeeping_inject_offset(struct timespec *ts)
531{
John Stultz4e250fd2012-07-27 14:48:13 -0400532 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800533 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +0000534 struct timespec64 ts64, tmp;
John Stultz4e8b1452012-08-08 15:36:20 -0400535 int ret = 0;
John Stultzc528f7c2011-02-01 13:52:17 +0000536
537 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
538 return -EINVAL;
539
John Stultz7d489d12014-07-16 21:04:01 +0000540 ts64 = timespec_to_timespec64(*ts);
541
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000542 raw_spin_lock_irqsave(&timekeeper_lock, flags);
543 write_seqcount_begin(&timekeeper_seq);
John Stultzc528f7c2011-02-01 13:52:17 +0000544
John Stultz4e250fd2012-07-27 14:48:13 -0400545 timekeeping_forward_now(tk);
John Stultzc528f7c2011-02-01 13:52:17 +0000546
John Stultz4e8b1452012-08-08 15:36:20 -0400547 /* Make sure the proposed value is valid */
John Stultz7d489d12014-07-16 21:04:01 +0000548 tmp = timespec64_add(tk_xtime(tk), ts64);
549 if (!timespec64_valid_strict(&tmp)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400550 ret = -EINVAL;
551 goto error;
552 }
John Stultz1e75fa82012-07-13 01:21:53 -0400553
John Stultz7d489d12014-07-16 21:04:01 +0000554 tk_xtime_add(tk, &ts64);
555 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, ts64));
John Stultzc528f7c2011-02-01 13:52:17 +0000556
John Stultz4e8b1452012-08-08 15:36:20 -0400557error: /* even if we error out, we forwarded the time, so call update */
David Vrabel780427f2013-06-27 11:35:46 +0100558 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultzc528f7c2011-02-01 13:52:17 +0000559
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000560 write_seqcount_end(&timekeeper_seq);
561 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000562
563 /* signal hrtimers about time change */
564 clock_was_set();
565
John Stultz4e8b1452012-08-08 15:36:20 -0400566 return ret;
John Stultzc528f7c2011-02-01 13:52:17 +0000567}
568EXPORT_SYMBOL(timekeeping_inject_offset);
569
John Stultzcc244dd2012-05-03 12:30:07 -0700570
571/**
572 * timekeeping_get_tai_offset - Returns current TAI offset from UTC
573 *
574 */
575s32 timekeeping_get_tai_offset(void)
576{
577 struct timekeeper *tk = &timekeeper;
578 unsigned int seq;
579 s32 ret;
580
581 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000582 seq = read_seqcount_begin(&timekeeper_seq);
John Stultzcc244dd2012-05-03 12:30:07 -0700583 ret = tk->tai_offset;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000584 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultzcc244dd2012-05-03 12:30:07 -0700585
586 return ret;
587}
588
589/**
590 * __timekeeping_set_tai_offset - Lock free worker function
591 *
592 */
Fengguang Wudd5d70e2013-03-25 12:24:24 -0700593static void __timekeeping_set_tai_offset(struct timekeeper *tk, s32 tai_offset)
John Stultzcc244dd2012-05-03 12:30:07 -0700594{
595 tk->tai_offset = tai_offset;
John Stultz04005f62013-12-10 17:13:35 -0800596 tk->offs_tai = ktime_add(tk->offs_real, ktime_set(tai_offset, 0));
John Stultzcc244dd2012-05-03 12:30:07 -0700597}
598
599/**
600 * timekeeping_set_tai_offset - Sets the current TAI offset from UTC
601 *
602 */
603void timekeeping_set_tai_offset(s32 tai_offset)
604{
605 struct timekeeper *tk = &timekeeper;
606 unsigned long flags;
607
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000608 raw_spin_lock_irqsave(&timekeeper_lock, flags);
609 write_seqcount_begin(&timekeeper_seq);
John Stultzcc244dd2012-05-03 12:30:07 -0700610 __timekeeping_set_tai_offset(tk, tai_offset);
John Stultzf55c0762013-12-11 18:50:25 -0800611 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000612 write_seqcount_end(&timekeeper_seq);
613 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz4e8f8b32013-04-10 12:41:49 -0700614 clock_was_set();
John Stultzcc244dd2012-05-03 12:30:07 -0700615}
616
john stultz85240702007-05-08 00:27:59 -0700617/**
618 * change_clocksource - Swaps clocksources if a new one is available
619 *
620 * Accumulates current time interval and initializes new clocksource
621 */
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200622static int change_clocksource(void *data)
john stultz85240702007-05-08 00:27:59 -0700623{
John Stultz4e250fd2012-07-27 14:48:13 -0400624 struct timekeeper *tk = &timekeeper;
Magnus Damm4614e6a2009-04-21 12:24:02 -0700625 struct clocksource *new, *old;
John Stultzf695cf92012-03-14 16:38:15 -0700626 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700627
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200628 new = (struct clocksource *) data;
john stultz85240702007-05-08 00:27:59 -0700629
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000630 raw_spin_lock_irqsave(&timekeeper_lock, flags);
631 write_seqcount_begin(&timekeeper_seq);
John Stultzf695cf92012-03-14 16:38:15 -0700632
John Stultz4e250fd2012-07-27 14:48:13 -0400633 timekeeping_forward_now(tk);
Thomas Gleixner09ac3692013-04-25 20:31:44 +0000634 /*
635 * If the cs is in module, get a module reference. Succeeds
636 * for built-in code (owner == NULL) as well.
637 */
638 if (try_module_get(new->owner)) {
639 if (!new->enable || new->enable(new) == 0) {
640 old = tk->clock;
641 tk_setup_internals(tk, new);
642 if (old->disable)
643 old->disable(old);
644 module_put(old->owner);
645 } else {
646 module_put(new->owner);
647 }
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200648 }
David Vrabel780427f2013-06-27 11:35:46 +0100649 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultzf695cf92012-03-14 16:38:15 -0700650
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000651 write_seqcount_end(&timekeeper_seq);
652 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -0700653
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200654 return 0;
655}
john stultz85240702007-05-08 00:27:59 -0700656
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200657/**
658 * timekeeping_notify - Install a new clock source
659 * @clock: pointer to the clock source
660 *
661 * This function is called from clocksource.c after a new, better clock
662 * source has been registered. The caller holds the clocksource_mutex.
663 */
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000664int timekeeping_notify(struct clocksource *clock)
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200665{
John Stultz4e250fd2012-07-27 14:48:13 -0400666 struct timekeeper *tk = &timekeeper;
667
668 if (tk->clock == clock)
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000669 return 0;
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200670 stop_machine(change_clocksource, clock, NULL);
john stultz85240702007-05-08 00:27:59 -0700671 tick_clock_notify();
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000672 return tk->clock == clock ? 0 : -1;
john stultz85240702007-05-08 00:27:59 -0700673}
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200674
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200675/**
676 * ktime_get_real - get the real (wall-) time in ktime_t format
677 *
678 * returns the time in ktime_t format
679 */
680ktime_t ktime_get_real(void)
681{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000682 struct timespec64 now;
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200683
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000684 getnstimeofday64(&now);
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200685
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000686 return timespec64_to_ktime(now);
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200687}
688EXPORT_SYMBOL_GPL(ktime_get_real);
john stultz85240702007-05-08 00:27:59 -0700689
690/**
John Stultz2d422442008-08-20 16:37:30 -0700691 * getrawmonotonic - Returns the raw monotonic time in a timespec
692 * @ts: pointer to the timespec to be set
693 *
694 * Returns the raw monotonic time (completely un-modified by ntp)
695 */
696void getrawmonotonic(struct timespec *ts)
697{
John Stultz4e250fd2012-07-27 14:48:13 -0400698 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000699 struct timespec64 ts64;
John Stultz2d422442008-08-20 16:37:30 -0700700 unsigned long seq;
701 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -0700702
703 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000704 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -0400705 nsecs = timekeeping_get_ns_raw(tk);
John Stultz7d489d12014-07-16 21:04:01 +0000706 ts64 = tk->raw_time;
John Stultz2d422442008-08-20 16:37:30 -0700707
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000708 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz2d422442008-08-20 16:37:30 -0700709
John Stultz7d489d12014-07-16 21:04:01 +0000710 timespec64_add_ns(&ts64, nsecs);
711 *ts = timespec64_to_timespec(ts64);
John Stultz2d422442008-08-20 16:37:30 -0700712}
713EXPORT_SYMBOL(getrawmonotonic);
714
John Stultz2d422442008-08-20 16:37:30 -0700715/**
Li Zefancf4fc6c2008-02-08 04:19:24 -0800716 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -0700717 */
Li Zefancf4fc6c2008-02-08 04:19:24 -0800718int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -0700719{
John Stultz4e250fd2012-07-27 14:48:13 -0400720 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700721 unsigned long seq;
722 int ret;
723
724 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000725 seq = read_seqcount_begin(&timekeeper_seq);
john stultz85240702007-05-08 00:27:59 -0700726
John Stultz4e250fd2012-07-27 14:48:13 -0400727 ret = tk->clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -0700728
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000729 } while (read_seqcount_retry(&timekeeper_seq, seq));
john stultz85240702007-05-08 00:27:59 -0700730
731 return ret;
732}
733
734/**
Jon Hunter98962462009-08-18 12:45:10 -0500735 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
Jon Hunter98962462009-08-18 12:45:10 -0500736 */
737u64 timekeeping_max_deferment(void)
738{
John Stultz4e250fd2012-07-27 14:48:13 -0400739 struct timekeeper *tk = &timekeeper;
John Stultz70471f22011-11-14 12:48:10 -0800740 unsigned long seq;
741 u64 ret;
John Stultz42e71e82012-07-13 01:21:51 -0400742
John Stultz70471f22011-11-14 12:48:10 -0800743 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000744 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz70471f22011-11-14 12:48:10 -0800745
John Stultz4e250fd2012-07-27 14:48:13 -0400746 ret = tk->clock->max_idle_ns;
John Stultz70471f22011-11-14 12:48:10 -0800747
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000748 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz70471f22011-11-14 12:48:10 -0800749
750 return ret;
Jon Hunter98962462009-08-18 12:45:10 -0500751}
752
753/**
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200754 * read_persistent_clock - Return time from the persistent clock.
john stultz85240702007-05-08 00:27:59 -0700755 *
756 * Weak dummy function for arches that do not yet support it.
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200757 * Reads the time from the battery backed persistent clock.
758 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
john stultz85240702007-05-08 00:27:59 -0700759 *
760 * XXX - Do be sure to remove it once all arches implement it.
761 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -0700762void __weak read_persistent_clock(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700763{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200764 ts->tv_sec = 0;
765 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700766}
767
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200768/**
769 * read_boot_clock - Return time of the system start.
770 *
771 * Weak dummy function for arches that do not yet support it.
772 * Function to read the exact time the system has been started.
773 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
774 *
775 * XXX - Do be sure to remove it once all arches implement it.
776 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -0700777void __weak read_boot_clock(struct timespec *ts)
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200778{
779 ts->tv_sec = 0;
780 ts->tv_nsec = 0;
781}
782
john stultz85240702007-05-08 00:27:59 -0700783/*
784 * timekeeping_init - Initializes the clocksource and common timekeeping values
785 */
786void __init timekeeping_init(void)
787{
John Stultz4e250fd2012-07-27 14:48:13 -0400788 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200789 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700790 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +0000791 struct timespec64 now, boot, tmp;
792 struct timespec ts;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200793
John Stultz7d489d12014-07-16 21:04:01 +0000794 read_persistent_clock(&ts);
795 now = timespec_to_timespec64(ts);
796 if (!timespec64_valid_strict(&now)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400797 pr_warn("WARNING: Persistent clock returned invalid value!\n"
798 " Check your CMOS/BIOS settings.\n");
799 now.tv_sec = 0;
800 now.tv_nsec = 0;
Feng Tang31ade302013-01-16 00:09:47 +0800801 } else if (now.tv_sec || now.tv_nsec)
802 persistent_clock_exist = true;
John Stultz4e8b1452012-08-08 15:36:20 -0400803
John Stultz7d489d12014-07-16 21:04:01 +0000804 read_boot_clock(&ts);
805 boot = timespec_to_timespec64(ts);
806 if (!timespec64_valid_strict(&boot)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400807 pr_warn("WARNING: Boot clock returned invalid value!\n"
808 " Check your CMOS/BIOS settings.\n");
809 boot.tv_sec = 0;
810 boot.tv_nsec = 0;
811 }
john stultz85240702007-05-08 00:27:59 -0700812
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000813 raw_spin_lock_irqsave(&timekeeper_lock, flags);
814 write_seqcount_begin(&timekeeper_seq);
John Stultz06c017f2013-03-22 11:37:28 -0700815 ntp_init();
816
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200817 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200818 if (clock->enable)
819 clock->enable(clock);
John Stultz4e250fd2012-07-27 14:48:13 -0400820 tk_setup_internals(tk, clock);
john stultz85240702007-05-08 00:27:59 -0700821
John Stultz4e250fd2012-07-27 14:48:13 -0400822 tk_set_xtime(tk, &now);
823 tk->raw_time.tv_sec = 0;
824 tk->raw_time.tv_nsec = 0;
John Stultz1e75fa82012-07-13 01:21:53 -0400825 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
John Stultz4e250fd2012-07-27 14:48:13 -0400826 boot = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400827
John Stultz7d489d12014-07-16 21:04:01 +0000828 set_normalized_timespec64(&tmp, -boot.tv_sec, -boot.tv_nsec);
John Stultz4e250fd2012-07-27 14:48:13 -0400829 tk_set_wall_to_mono(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400830
831 tmp.tv_sec = 0;
832 tmp.tv_nsec = 0;
John Stultz4e250fd2012-07-27 14:48:13 -0400833 tk_set_sleep_time(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400834
Thomas Gleixner48cdc132013-02-21 22:51:40 +0000835 memcpy(&shadow_timekeeper, &timekeeper, sizeof(timekeeper));
836
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000837 write_seqcount_end(&timekeeper_seq);
838 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -0700839}
840
john stultz85240702007-05-08 00:27:59 -0700841/* time in seconds when suspend began */
John Stultz7d489d12014-07-16 21:04:01 +0000842static struct timespec64 timekeeping_suspend_time;
john stultz85240702007-05-08 00:27:59 -0700843
844/**
John Stultz304529b2011-04-01 14:32:09 -0700845 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
846 * @delta: pointer to a timespec delta value
847 *
848 * Takes a timespec offset measuring a suspend interval and properly
849 * adds the sleep offset to the timekeeping variables.
850 */
John Stultzf726a692012-07-13 01:21:57 -0400851static void __timekeeping_inject_sleeptime(struct timekeeper *tk,
John Stultz7d489d12014-07-16 21:04:01 +0000852 struct timespec64 *delta)
John Stultz304529b2011-04-01 14:32:09 -0700853{
John Stultz7d489d12014-07-16 21:04:01 +0000854 if (!timespec64_valid_strict(delta)) {
John Stultz6d9bcb62014-06-04 16:11:43 -0700855 printk_deferred(KERN_WARNING
856 "__timekeeping_inject_sleeptime: Invalid "
857 "sleep delta value!\n");
John Stultzcb5de2f8d2011-06-01 18:18:09 -0700858 return;
859 }
John Stultzf726a692012-07-13 01:21:57 -0400860 tk_xtime_add(tk, delta);
John Stultz7d489d12014-07-16 21:04:01 +0000861 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, *delta));
862 tk_set_sleep_time(tk, timespec64_add(tk->total_sleep_time, *delta));
Colin Cross5c835452013-05-21 22:32:14 -0700863 tk_debug_account_sleep_time(delta);
John Stultz304529b2011-04-01 14:32:09 -0700864}
865
John Stultz304529b2011-04-01 14:32:09 -0700866/**
867 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
868 * @delta: pointer to a timespec delta value
869 *
870 * This hook is for architectures that cannot support read_persistent_clock
871 * because their RTC/persistent clock is only accessible when irqs are enabled.
872 *
873 * This function should only be called by rtc_resume(), and allows
874 * a suspend offset to be injected into the timekeeping values.
875 */
876void timekeeping_inject_sleeptime(struct timespec *delta)
877{
John Stultz4e250fd2012-07-27 14:48:13 -0400878 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000879 struct timespec64 tmp;
John Stultz92c1d3e2011-11-14 14:05:44 -0800880 unsigned long flags;
John Stultz304529b2011-04-01 14:32:09 -0700881
Feng Tang31ade302013-01-16 00:09:47 +0800882 /*
883 * Make sure we don't set the clock twice, as timekeeping_resume()
884 * already did it
885 */
886 if (has_persistent_clock())
John Stultz304529b2011-04-01 14:32:09 -0700887 return;
888
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000889 raw_spin_lock_irqsave(&timekeeper_lock, flags);
890 write_seqcount_begin(&timekeeper_seq);
John Stultz70471f22011-11-14 12:48:10 -0800891
John Stultz4e250fd2012-07-27 14:48:13 -0400892 timekeeping_forward_now(tk);
John Stultz304529b2011-04-01 14:32:09 -0700893
John Stultz7d489d12014-07-16 21:04:01 +0000894 tmp = timespec_to_timespec64(*delta);
895 __timekeeping_inject_sleeptime(tk, &tmp);
John Stultz304529b2011-04-01 14:32:09 -0700896
David Vrabel780427f2013-06-27 11:35:46 +0100897 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultz304529b2011-04-01 14:32:09 -0700898
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000899 write_seqcount_end(&timekeeper_seq);
900 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz304529b2011-04-01 14:32:09 -0700901
902 /* signal hrtimers about time change */
903 clock_was_set();
904}
905
John Stultz304529b2011-04-01 14:32:09 -0700906/**
john stultz85240702007-05-08 00:27:59 -0700907 * timekeeping_resume - Resumes the generic timekeeping subsystem.
john stultz85240702007-05-08 00:27:59 -0700908 *
909 * This is for the generic clocksource timekeeping.
910 * xtime/wall_to_monotonic/jiffies/etc are
911 * still managed by arch specific suspend/resume code.
912 */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100913static void timekeeping_resume(void)
john stultz85240702007-05-08 00:27:59 -0700914{
John Stultz4e250fd2012-07-27 14:48:13 -0400915 struct timekeeper *tk = &timekeeper;
Feng Tange445cf12013-03-12 11:56:48 +0800916 struct clocksource *clock = tk->clock;
John Stultz92c1d3e2011-11-14 14:05:44 -0800917 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +0000918 struct timespec64 ts_new, ts_delta;
919 struct timespec tmp;
Feng Tange445cf12013-03-12 11:56:48 +0800920 cycle_t cycle_now, cycle_delta;
921 bool suspendtime_found = false;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200922
John Stultz7d489d12014-07-16 21:04:01 +0000923 read_persistent_clock(&tmp);
924 ts_new = timespec_to_timespec64(tmp);
john stultz85240702007-05-08 00:27:59 -0700925
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +0200926 clockevents_resume();
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +0200927 clocksource_resume();
928
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000929 raw_spin_lock_irqsave(&timekeeper_lock, flags);
930 write_seqcount_begin(&timekeeper_seq);
john stultz85240702007-05-08 00:27:59 -0700931
Feng Tange445cf12013-03-12 11:56:48 +0800932 /*
933 * After system resumes, we need to calculate the suspended time and
934 * compensate it for the OS time. There are 3 sources that could be
935 * used: Nonstop clocksource during suspend, persistent clock and rtc
936 * device.
937 *
938 * One specific platform may have 1 or 2 or all of them, and the
939 * preference will be:
940 * suspend-nonstop clocksource -> persistent clock -> rtc
941 * The less preferred source will only be tried if there is no better
942 * usable source. The rtc part is handled separately in rtc core code.
943 */
944 cycle_now = clock->read(clock);
945 if ((clock->flags & CLOCK_SOURCE_SUSPEND_NONSTOP) &&
946 cycle_now > clock->cycle_last) {
947 u64 num, max = ULLONG_MAX;
948 u32 mult = clock->mult;
949 u32 shift = clock->shift;
950 s64 nsec = 0;
951
952 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
953
954 /*
955 * "cycle_delta * mutl" may cause 64 bits overflow, if the
956 * suspended time is too long. In that case we need do the
957 * 64 bits math carefully
958 */
959 do_div(max, mult);
960 if (cycle_delta > max) {
961 num = div64_u64(cycle_delta, max);
962 nsec = (((u64) max * mult) >> shift) * num;
963 cycle_delta -= num * max;
964 }
965 nsec += ((u64) cycle_delta * mult) >> shift;
966
John Stultz7d489d12014-07-16 21:04:01 +0000967 ts_delta = ns_to_timespec64(nsec);
Feng Tange445cf12013-03-12 11:56:48 +0800968 suspendtime_found = true;
John Stultz7d489d12014-07-16 21:04:01 +0000969 } else if (timespec64_compare(&ts_new, &timekeeping_suspend_time) > 0) {
970 ts_delta = timespec64_sub(ts_new, timekeeping_suspend_time);
Feng Tange445cf12013-03-12 11:56:48 +0800971 suspendtime_found = true;
john stultz85240702007-05-08 00:27:59 -0700972 }
Feng Tange445cf12013-03-12 11:56:48 +0800973
974 if (suspendtime_found)
975 __timekeeping_inject_sleeptime(tk, &ts_delta);
976
977 /* Re-base the last cycle value */
Thomas Gleixner77c675b2013-04-22 09:37:04 +0200978 tk->cycle_last = clock->cycle_last = cycle_now;
John Stultz4e250fd2012-07-27 14:48:13 -0400979 tk->ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -0700980 timekeeping_suspended = 0;
David Vrabel780427f2013-06-27 11:35:46 +0100981 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000982 write_seqcount_end(&timekeeper_seq);
983 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -0700984
985 touch_softlockup_watchdog();
986
987 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
988
989 /* Resume hrtimers */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200990 hrtimers_resume();
john stultz85240702007-05-08 00:27:59 -0700991}
992
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100993static int timekeeping_suspend(void)
john stultz85240702007-05-08 00:27:59 -0700994{
John Stultz4e250fd2012-07-27 14:48:13 -0400995 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800996 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +0000997 struct timespec64 delta, delta_delta;
998 static struct timespec64 old_delta;
999 struct timespec tmp;
john stultz85240702007-05-08 00:27:59 -07001000
John Stultz7d489d12014-07-16 21:04:01 +00001001 read_persistent_clock(&tmp);
1002 timekeeping_suspend_time = timespec_to_timespec64(tmp);
Thomas Gleixner3be90952007-09-16 15:36:43 +02001003
Zoran Markovic0d6bd992013-05-17 11:24:05 -07001004 /*
1005 * On some systems the persistent_clock can not be detected at
1006 * timekeeping_init by its return value, so if we see a valid
1007 * value returned, update the persistent_clock_exists flag.
1008 */
1009 if (timekeeping_suspend_time.tv_sec || timekeeping_suspend_time.tv_nsec)
1010 persistent_clock_exist = true;
1011
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001012 raw_spin_lock_irqsave(&timekeeper_lock, flags);
1013 write_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -04001014 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -07001015 timekeeping_suspended = 1;
John Stultzcb332172011-05-31 22:53:23 -07001016
1017 /*
1018 * To avoid drift caused by repeated suspend/resumes,
1019 * which each can add ~1 second drift error,
1020 * try to compensate so the difference in system time
1021 * and persistent_clock time stays close to constant.
1022 */
John Stultz7d489d12014-07-16 21:04:01 +00001023 delta = timespec64_sub(tk_xtime(tk), timekeeping_suspend_time);
1024 delta_delta = timespec64_sub(delta, old_delta);
John Stultzcb332172011-05-31 22:53:23 -07001025 if (abs(delta_delta.tv_sec) >= 2) {
1026 /*
1027 * if delta_delta is too large, assume time correction
1028 * has occured and set old_delta to the current delta.
1029 */
1030 old_delta = delta;
1031 } else {
1032 /* Otherwise try to adjust old_system to compensate */
1033 timekeeping_suspend_time =
John Stultz7d489d12014-07-16 21:04:01 +00001034 timespec64_add(timekeeping_suspend_time, delta_delta);
John Stultzcb332172011-05-31 22:53:23 -07001035 }
John Stultz330a1612013-12-11 19:10:36 -08001036
1037 timekeeping_update(tk, TK_MIRROR);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001038 write_seqcount_end(&timekeeper_seq);
1039 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001040
1041 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
Magnus Dammc54a42b2010-02-02 14:41:41 -08001042 clocksource_suspend();
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +02001043 clockevents_suspend();
john stultz85240702007-05-08 00:27:59 -07001044
1045 return 0;
1046}
1047
1048/* sysfs resume/suspend bits for timekeeping */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001049static struct syscore_ops timekeeping_syscore_ops = {
john stultz85240702007-05-08 00:27:59 -07001050 .resume = timekeeping_resume,
1051 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -07001052};
1053
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001054static int __init timekeeping_init_ops(void)
john stultz85240702007-05-08 00:27:59 -07001055{
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001056 register_syscore_ops(&timekeeping_syscore_ops);
1057 return 0;
john stultz85240702007-05-08 00:27:59 -07001058}
1059
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001060device_initcall(timekeeping_init_ops);
john stultz85240702007-05-08 00:27:59 -07001061
1062/*
1063 * If the error is already larger, we look ahead even further
1064 * to compensate for late or lost adjustments.
1065 */
John Stultzf726a692012-07-13 01:21:57 -04001066static __always_inline int timekeeping_bigadjust(struct timekeeper *tk,
1067 s64 error, s64 *interval,
john stultz85240702007-05-08 00:27:59 -07001068 s64 *offset)
1069{
1070 s64 tick_error, i;
1071 u32 look_ahead, adj;
1072 s32 error2, mult;
1073
1074 /*
1075 * Use the current error value to determine how much to look ahead.
1076 * The larger the error the slower we adjust for it to avoid problems
1077 * with losing too many ticks, otherwise we would overadjust and
1078 * produce an even larger error. The smaller the adjustment the
1079 * faster we try to adjust for it, as lost ticks can do less harm
Li Zefan3eb05672008-02-08 04:19:25 -08001080 * here. This is tuned so that an error of about 1 msec is adjusted
john stultz85240702007-05-08 00:27:59 -07001081 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
1082 */
John Stultzf726a692012-07-13 01:21:57 -04001083 error2 = tk->ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
john stultz85240702007-05-08 00:27:59 -07001084 error2 = abs(error2);
1085 for (look_ahead = 0; error2 > 0; look_ahead++)
1086 error2 >>= 2;
1087
1088 /*
1089 * Now calculate the error in (1 << look_ahead) ticks, but first
1090 * remove the single look ahead already included in the error.
1091 */
John Stultzf726a692012-07-13 01:21:57 -04001092 tick_error = ntp_tick_length() >> (tk->ntp_error_shift + 1);
1093 tick_error -= tk->xtime_interval >> 1;
john stultz85240702007-05-08 00:27:59 -07001094 error = ((error - tick_error) >> look_ahead) + tick_error;
1095
1096 /* Finally calculate the adjustment shift value. */
1097 i = *interval;
1098 mult = 1;
1099 if (error < 0) {
1100 error = -error;
1101 *interval = -*interval;
1102 *offset = -*offset;
1103 mult = -1;
1104 }
1105 for (adj = 0; error > i; adj++)
1106 error >>= 1;
1107
1108 *interval <<= adj;
1109 *offset <<= adj;
1110 return mult << adj;
1111}
1112
1113/*
1114 * Adjust the multiplier to reduce the error value,
1115 * this is optimized for the most common adjustments of -1,0,1,
1116 * for other values we can do a bit more work.
1117 */
John Stultzf726a692012-07-13 01:21:57 -04001118static void timekeeping_adjust(struct timekeeper *tk, s64 offset)
john stultz85240702007-05-08 00:27:59 -07001119{
John Stultzf726a692012-07-13 01:21:57 -04001120 s64 error, interval = tk->cycle_interval;
john stultz85240702007-05-08 00:27:59 -07001121 int adj;
1122
John Stultzc2bc1112011-10-27 18:12:42 -07001123 /*
Jim Cromie88b28ad2012-03-14 21:28:56 -06001124 * The point of this is to check if the error is greater than half
John Stultzc2bc1112011-10-27 18:12:42 -07001125 * an interval.
1126 *
1127 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
1128 *
1129 * Note we subtract one in the shift, so that error is really error*2.
John Stultz3f86f282011-10-27 17:41:17 -07001130 * This "saves" dividing(shifting) interval twice, but keeps the
1131 * (error > interval) comparison as still measuring if error is
Jim Cromie88b28ad2012-03-14 21:28:56 -06001132 * larger than half an interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001133 *
John Stultz3f86f282011-10-27 17:41:17 -07001134 * Note: It does not "save" on aggravation when reading the code.
John Stultzc2bc1112011-10-27 18:12:42 -07001135 */
John Stultzf726a692012-07-13 01:21:57 -04001136 error = tk->ntp_error >> (tk->ntp_error_shift - 1);
john stultz85240702007-05-08 00:27:59 -07001137 if (error > interval) {
John Stultzc2bc1112011-10-27 18:12:42 -07001138 /*
1139 * We now divide error by 4(via shift), which checks if
Jim Cromie88b28ad2012-03-14 21:28:56 -06001140 * the error is greater than twice the interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001141 * If it is greater, we need a bigadjust, if its smaller,
1142 * we can adjust by 1.
1143 */
john stultz85240702007-05-08 00:27:59 -07001144 error >>= 2;
1145 if (likely(error <= interval))
1146 adj = 1;
1147 else
Ingo Molnar1d17d172012-08-04 21:21:14 +02001148 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1149 } else {
1150 if (error < -interval) {
1151 /* See comment above, this is just switched for the negative */
1152 error >>= 2;
1153 if (likely(error >= -interval)) {
1154 adj = -1;
1155 interval = -interval;
1156 offset = -offset;
1157 } else {
1158 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1159 }
1160 } else {
1161 goto out_adjust;
1162 }
1163 }
john stultz85240702007-05-08 00:27:59 -07001164
John Stultzf726a692012-07-13 01:21:57 -04001165 if (unlikely(tk->clock->maxadj &&
1166 (tk->mult + adj > tk->clock->mult + tk->clock->maxadj))) {
John Stultz6d9bcb62014-06-04 16:11:43 -07001167 printk_deferred_once(KERN_WARNING
John Stultze919cfd2012-03-22 19:14:46 -07001168 "Adjusting %s more than 11%% (%ld vs %ld)\n",
John Stultzf726a692012-07-13 01:21:57 -04001169 tk->clock->name, (long)tk->mult + adj,
1170 (long)tk->clock->mult + tk->clock->maxadj);
John Stultze919cfd2012-03-22 19:14:46 -07001171 }
John Stultzc2bc1112011-10-27 18:12:42 -07001172 /*
1173 * So the following can be confusing.
1174 *
1175 * To keep things simple, lets assume adj == 1 for now.
1176 *
1177 * When adj != 1, remember that the interval and offset values
1178 * have been appropriately scaled so the math is the same.
1179 *
1180 * The basic idea here is that we're increasing the multiplier
1181 * by one, this causes the xtime_interval to be incremented by
1182 * one cycle_interval. This is because:
1183 * xtime_interval = cycle_interval * mult
1184 * So if mult is being incremented by one:
1185 * xtime_interval = cycle_interval * (mult + 1)
1186 * Its the same as:
1187 * xtime_interval = (cycle_interval * mult) + cycle_interval
1188 * Which can be shortened to:
1189 * xtime_interval += cycle_interval
1190 *
1191 * So offset stores the non-accumulated cycles. Thus the current
1192 * time (in shifted nanoseconds) is:
1193 * now = (offset * adj) + xtime_nsec
1194 * Now, even though we're adjusting the clock frequency, we have
1195 * to keep time consistent. In other words, we can't jump back
1196 * in time, and we also want to avoid jumping forward in time.
1197 *
1198 * So given the same offset value, we need the time to be the same
1199 * both before and after the freq adjustment.
1200 * now = (offset * adj_1) + xtime_nsec_1
1201 * now = (offset * adj_2) + xtime_nsec_2
1202 * So:
1203 * (offset * adj_1) + xtime_nsec_1 =
1204 * (offset * adj_2) + xtime_nsec_2
1205 * And we know:
1206 * adj_2 = adj_1 + 1
1207 * So:
1208 * (offset * adj_1) + xtime_nsec_1 =
1209 * (offset * (adj_1+1)) + xtime_nsec_2
1210 * (offset * adj_1) + xtime_nsec_1 =
1211 * (offset * adj_1) + offset + xtime_nsec_2
1212 * Canceling the sides:
1213 * xtime_nsec_1 = offset + xtime_nsec_2
1214 * Which gives us:
1215 * xtime_nsec_2 = xtime_nsec_1 - offset
1216 * Which simplfies to:
1217 * xtime_nsec -= offset
1218 *
1219 * XXX - TODO: Doc ntp_error calculation.
1220 */
John Stultzf726a692012-07-13 01:21:57 -04001221 tk->mult += adj;
1222 tk->xtime_interval += interval;
1223 tk->xtime_nsec -= offset;
1224 tk->ntp_error -= (interval - offset) << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001225
Ingo Molnar1d17d172012-08-04 21:21:14 +02001226out_adjust:
John Stultz2a8c0882012-07-13 01:21:56 -04001227 /*
1228 * It may be possible that when we entered this function, xtime_nsec
1229 * was very small. Further, if we're slightly speeding the clocksource
1230 * in the code above, its possible the required corrective factor to
1231 * xtime_nsec could cause it to underflow.
1232 *
1233 * Now, since we already accumulated the second, cannot simply roll
1234 * the accumulated second back, since the NTP subsystem has been
1235 * notified via second_overflow. So instead we push xtime_nsec forward
1236 * by the amount we underflowed, and add that amount into the error.
1237 *
1238 * We'll correct this error next time through this function, when
1239 * xtime_nsec is not as small.
1240 */
John Stultzf726a692012-07-13 01:21:57 -04001241 if (unlikely((s64)tk->xtime_nsec < 0)) {
1242 s64 neg = -(s64)tk->xtime_nsec;
1243 tk->xtime_nsec = 0;
1244 tk->ntp_error += neg << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001245 }
1246
john stultz85240702007-05-08 00:27:59 -07001247}
1248
1249/**
John Stultz1f4f9482012-07-13 01:21:54 -04001250 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
1251 *
1252 * Helper function that accumulates a the nsecs greater then a second
1253 * from the xtime_nsec field to the xtime_secs field.
1254 * It also calls into the NTP code to handle leapsecond processing.
1255 *
1256 */
David Vrabel780427f2013-06-27 11:35:46 +01001257static inline unsigned int accumulate_nsecs_to_secs(struct timekeeper *tk)
John Stultz1f4f9482012-07-13 01:21:54 -04001258{
1259 u64 nsecps = (u64)NSEC_PER_SEC << tk->shift;
John Stultz5258d3f2013-12-11 20:07:49 -08001260 unsigned int clock_set = 0;
John Stultz1f4f9482012-07-13 01:21:54 -04001261
1262 while (tk->xtime_nsec >= nsecps) {
1263 int leap;
1264
1265 tk->xtime_nsec -= nsecps;
1266 tk->xtime_sec++;
1267
1268 /* Figure out if its a leap sec and apply if needed */
1269 leap = second_overflow(tk->xtime_sec);
John Stultz6d0ef902012-07-27 14:48:12 -04001270 if (unlikely(leap)) {
John Stultz7d489d12014-07-16 21:04:01 +00001271 struct timespec64 ts;
John Stultz1f4f9482012-07-13 01:21:54 -04001272
John Stultz6d0ef902012-07-27 14:48:12 -04001273 tk->xtime_sec += leap;
1274
1275 ts.tv_sec = leap;
1276 ts.tv_nsec = 0;
1277 tk_set_wall_to_mono(tk,
John Stultz7d489d12014-07-16 21:04:01 +00001278 timespec64_sub(tk->wall_to_monotonic, ts));
John Stultz6d0ef902012-07-27 14:48:12 -04001279
John Stultzcc244dd2012-05-03 12:30:07 -07001280 __timekeeping_set_tai_offset(tk, tk->tai_offset - leap);
1281
John Stultz5258d3f2013-12-11 20:07:49 -08001282 clock_set = TK_CLOCK_WAS_SET;
John Stultz6d0ef902012-07-27 14:48:12 -04001283 }
John Stultz1f4f9482012-07-13 01:21:54 -04001284 }
John Stultz5258d3f2013-12-11 20:07:49 -08001285 return clock_set;
John Stultz1f4f9482012-07-13 01:21:54 -04001286}
1287
John Stultz1f4f9482012-07-13 01:21:54 -04001288/**
john stultza092ff02009-10-02 16:17:53 -07001289 * logarithmic_accumulation - shifted accumulation of cycles
1290 *
1291 * This functions accumulates a shifted interval of cycles into
1292 * into a shifted interval nanoseconds. Allows for O(log) accumulation
1293 * loop.
1294 *
1295 * Returns the unconsumed cycles.
1296 */
John Stultzf726a692012-07-13 01:21:57 -04001297static cycle_t logarithmic_accumulation(struct timekeeper *tk, cycle_t offset,
John Stultz5258d3f2013-12-11 20:07:49 -08001298 u32 shift,
1299 unsigned int *clock_set)
john stultza092ff02009-10-02 16:17:53 -07001300{
Thomas Gleixner23a95372013-02-21 22:51:36 +00001301 cycle_t interval = tk->cycle_interval << shift;
Jason Wesseldeda2e82010-08-09 14:20:09 -07001302 u64 raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001303
John Stultzf726a692012-07-13 01:21:57 -04001304 /* If the offset is smaller then a shifted interval, do nothing */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001305 if (offset < interval)
john stultza092ff02009-10-02 16:17:53 -07001306 return offset;
1307
1308 /* Accumulate one shifted interval */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001309 offset -= interval;
Thomas Gleixner7ec98e12013-02-21 22:51:39 +00001310 tk->cycle_last += interval;
john stultza092ff02009-10-02 16:17:53 -07001311
John Stultzf726a692012-07-13 01:21:57 -04001312 tk->xtime_nsec += tk->xtime_interval << shift;
John Stultz5258d3f2013-12-11 20:07:49 -08001313 *clock_set |= accumulate_nsecs_to_secs(tk);
john stultza092ff02009-10-02 16:17:53 -07001314
Jason Wesseldeda2e82010-08-09 14:20:09 -07001315 /* Accumulate raw time */
Dan Carpenter5b3900c2012-10-09 10:18:23 +03001316 raw_nsecs = (u64)tk->raw_interval << shift;
John Stultzf726a692012-07-13 01:21:57 -04001317 raw_nsecs += tk->raw_time.tv_nsec;
John Stultzc7dcf872010-08-13 11:30:58 -07001318 if (raw_nsecs >= NSEC_PER_SEC) {
1319 u64 raw_secs = raw_nsecs;
1320 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
John Stultzf726a692012-07-13 01:21:57 -04001321 tk->raw_time.tv_sec += raw_secs;
john stultza092ff02009-10-02 16:17:53 -07001322 }
John Stultzf726a692012-07-13 01:21:57 -04001323 tk->raw_time.tv_nsec = raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001324
1325 /* Accumulate error between NTP and clock interval */
John Stultzf726a692012-07-13 01:21:57 -04001326 tk->ntp_error += ntp_tick_length() << shift;
1327 tk->ntp_error -= (tk->xtime_interval + tk->xtime_remainder) <<
1328 (tk->ntp_error_shift + shift);
john stultza092ff02009-10-02 16:17:53 -07001329
1330 return offset;
1331}
1332
John Stultz92bb1fc2012-09-04 15:38:12 -04001333#ifdef CONFIG_GENERIC_TIME_VSYSCALL_OLD
1334static inline void old_vsyscall_fixup(struct timekeeper *tk)
1335{
1336 s64 remainder;
1337
1338 /*
1339 * Store only full nanoseconds into xtime_nsec after rounding
1340 * it up and add the remainder to the error difference.
1341 * XXX - This is necessary to avoid small 1ns inconsistnecies caused
1342 * by truncating the remainder in vsyscalls. However, it causes
1343 * additional work to be done in timekeeping_adjust(). Once
1344 * the vsyscall implementations are converted to use xtime_nsec
1345 * (shifted nanoseconds), and CONFIG_GENERIC_TIME_VSYSCALL_OLD
1346 * users are removed, this can be killed.
1347 */
1348 remainder = tk->xtime_nsec & ((1ULL << tk->shift) - 1);
1349 tk->xtime_nsec -= remainder;
1350 tk->xtime_nsec += 1ULL << tk->shift;
1351 tk->ntp_error += remainder << tk->ntp_error_shift;
Martin Schwidefsky4be77392013-11-22 11:44:51 -08001352 tk->ntp_error -= (1ULL << tk->shift) << tk->ntp_error_shift;
John Stultz92bb1fc2012-09-04 15:38:12 -04001353}
1354#else
1355#define old_vsyscall_fixup(tk)
1356#endif
1357
1358
1359
john stultz85240702007-05-08 00:27:59 -07001360/**
1361 * update_wall_time - Uses the current clocksource to increment the wall time
1362 *
john stultz85240702007-05-08 00:27:59 -07001363 */
John Stultz47a1b7962013-12-12 13:10:55 -08001364void update_wall_time(void)
john stultz85240702007-05-08 00:27:59 -07001365{
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001366 struct clocksource *clock;
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001367 struct timekeeper *real_tk = &timekeeper;
1368 struct timekeeper *tk = &shadow_timekeeper;
john stultz85240702007-05-08 00:27:59 -07001369 cycle_t offset;
john stultza092ff02009-10-02 16:17:53 -07001370 int shift = 0, maxshift;
John Stultz5258d3f2013-12-11 20:07:49 -08001371 unsigned int clock_set = 0;
John Stultz70471f22011-11-14 12:48:10 -08001372 unsigned long flags;
1373
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001374 raw_spin_lock_irqsave(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001375
1376 /* Make sure we're fully resumed: */
1377 if (unlikely(timekeeping_suspended))
John Stultz70471f22011-11-14 12:48:10 -08001378 goto out;
john stultz85240702007-05-08 00:27:59 -07001379
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001380 clock = real_tk->clock;
John Stultz592913e2010-07-13 17:56:20 -07001381
1382#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001383 offset = real_tk->cycle_interval;
John Stultz592913e2010-07-13 17:56:20 -07001384#else
1385 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
john stultz85240702007-05-08 00:27:59 -07001386#endif
john stultz85240702007-05-08 00:27:59 -07001387
John Stultzbf2ac312012-08-21 20:30:49 -04001388 /* Check if there's really nothing to do */
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001389 if (offset < real_tk->cycle_interval)
John Stultzbf2ac312012-08-21 20:30:49 -04001390 goto out;
1391
john stultza092ff02009-10-02 16:17:53 -07001392 /*
1393 * With NO_HZ we may have to accumulate many cycle_intervals
1394 * (think "ticks") worth of time at once. To do this efficiently,
1395 * we calculate the largest doubling multiple of cycle_intervals
Jim Cromie88b28ad2012-03-14 21:28:56 -06001396 * that is smaller than the offset. We then accumulate that
john stultza092ff02009-10-02 16:17:53 -07001397 * chunk in one go, and then try to consume the next smaller
1398 * doubled multiple.
john stultz85240702007-05-08 00:27:59 -07001399 */
John Stultz4e250fd2012-07-27 14:48:13 -04001400 shift = ilog2(offset) - ilog2(tk->cycle_interval);
john stultza092ff02009-10-02 16:17:53 -07001401 shift = max(0, shift);
Jim Cromie88b28ad2012-03-14 21:28:56 -06001402 /* Bound shift to one less than what overflows tick_length */
John Stultzea7cf492011-11-14 13:18:07 -08001403 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
john stultza092ff02009-10-02 16:17:53 -07001404 shift = min(shift, maxshift);
John Stultz4e250fd2012-07-27 14:48:13 -04001405 while (offset >= tk->cycle_interval) {
John Stultz5258d3f2013-12-11 20:07:49 -08001406 offset = logarithmic_accumulation(tk, offset, shift,
1407 &clock_set);
John Stultz4e250fd2012-07-27 14:48:13 -04001408 if (offset < tk->cycle_interval<<shift)
John Stultz830ec042010-03-18 14:47:30 -07001409 shift--;
john stultz85240702007-05-08 00:27:59 -07001410 }
1411
1412 /* correct the clock when NTP error is too big */
John Stultz4e250fd2012-07-27 14:48:13 -04001413 timekeeping_adjust(tk, offset);
john stultz85240702007-05-08 00:27:59 -07001414
John Stultz6a867a32010-04-06 14:30:51 -07001415 /*
John Stultz92bb1fc2012-09-04 15:38:12 -04001416 * XXX This can be killed once everyone converts
1417 * to the new update_vsyscall.
1418 */
1419 old_vsyscall_fixup(tk);
john stultz85240702007-05-08 00:27:59 -07001420
John Stultz6a867a32010-04-06 14:30:51 -07001421 /*
1422 * Finally, make sure that after the rounding
John Stultz1e75fa82012-07-13 01:21:53 -04001423 * xtime_nsec isn't larger than NSEC_PER_SEC
John Stultz6a867a32010-04-06 14:30:51 -07001424 */
John Stultz5258d3f2013-12-11 20:07:49 -08001425 clock_set |= accumulate_nsecs_to_secs(tk);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001426
Thomas Gleixnerca4523c2013-02-21 22:51:40 +00001427 write_seqcount_begin(&timekeeper_seq);
Thomas Gleixner7ec98e12013-02-21 22:51:39 +00001428 /* Update clock->cycle_last with the new value */
1429 clock->cycle_last = tk->cycle_last;
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001430 /*
1431 * Update the real timekeeper.
1432 *
1433 * We could avoid this memcpy by switching pointers, but that
1434 * requires changes to all other timekeeper usage sites as
1435 * well, i.e. move the timekeeper pointer getter into the
1436 * spinlocked/seqcount protected sections. And we trade this
1437 * memcpy under the timekeeper_seq against one before we start
1438 * updating.
1439 */
1440 memcpy(real_tk, tk, sizeof(*tk));
John Stultz5258d3f2013-12-11 20:07:49 -08001441 timekeeping_update(real_tk, clock_set);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001442 write_seqcount_end(&timekeeper_seq);
Thomas Gleixnerca4523c2013-02-21 22:51:40 +00001443out:
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001444 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz47a1b7962013-12-12 13:10:55 -08001445 if (clock_set)
John Stultzcab5e122014-03-27 16:30:49 -07001446 /* Have to call _delayed version, since in irq context*/
1447 clock_was_set_delayed();
john stultz85240702007-05-08 00:27:59 -07001448}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001449
1450/**
1451 * getboottime - Return the real time of system boot.
1452 * @ts: pointer to the timespec to be set
1453 *
John Stultzabb3a4e2011-02-14 17:52:09 -08001454 * Returns the wall-time of boot in a timespec.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001455 *
1456 * This is based on the wall_to_monotonic offset and the total suspend
1457 * time. Calls to settimeofday will affect the value returned (which
1458 * basically means that however wrong your real time clock is at boot time,
1459 * you get the right time here).
1460 */
1461void getboottime(struct timespec *ts)
1462{
John Stultz4e250fd2012-07-27 14:48:13 -04001463 struct timekeeper *tk = &timekeeper;
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001464 struct timespec boottime = {
John Stultz4e250fd2012-07-27 14:48:13 -04001465 .tv_sec = tk->wall_to_monotonic.tv_sec +
1466 tk->total_sleep_time.tv_sec,
1467 .tv_nsec = tk->wall_to_monotonic.tv_nsec +
1468 tk->total_sleep_time.tv_nsec
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001469 };
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001470
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001471 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001472}
Jason Wangc93d89f2010-01-27 19:13:40 +08001473EXPORT_SYMBOL_GPL(getboottime);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001474
John Stultzabb3a4e2011-02-14 17:52:09 -08001475/**
1476 * get_monotonic_boottime - Returns monotonic time since boot
1477 * @ts: pointer to the timespec to be set
1478 *
1479 * Returns the monotonic time since boot in a timespec.
1480 *
1481 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1482 * includes the time spent in suspend.
1483 */
1484void get_monotonic_boottime(struct timespec *ts)
1485{
John Stultz4e250fd2012-07-27 14:48:13 -04001486 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001487 struct timespec64 tomono, sleep, ret;
John Stultzec145ba2012-09-11 19:26:03 -04001488 s64 nsec;
John Stultzabb3a4e2011-02-14 17:52:09 -08001489 unsigned int seq;
John Stultzabb3a4e2011-02-14 17:52:09 -08001490
1491 WARN_ON(timekeeping_suspended);
1492
1493 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001494 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz7d489d12014-07-16 21:04:01 +00001495 ret.tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -04001496 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -04001497 tomono = tk->wall_to_monotonic;
1498 sleep = tk->total_sleep_time;
John Stultzabb3a4e2011-02-14 17:52:09 -08001499
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001500 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultzabb3a4e2011-02-14 17:52:09 -08001501
John Stultz7d489d12014-07-16 21:04:01 +00001502 ret.tv_sec += tomono.tv_sec + sleep.tv_sec;
1503 ret.tv_nsec = 0;
1504 timespec64_add_ns(&ret, nsec + tomono.tv_nsec + sleep.tv_nsec);
1505 *ts = timespec64_to_timespec(ret);
John Stultzabb3a4e2011-02-14 17:52:09 -08001506}
1507EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1508
1509/**
1510 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1511 *
1512 * Returns the monotonic time since boot in a ktime
1513 *
1514 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1515 * includes the time spent in suspend.
1516 */
1517ktime_t ktime_get_boottime(void)
1518{
1519 struct timespec ts;
1520
1521 get_monotonic_boottime(&ts);
1522 return timespec_to_ktime(ts);
1523}
1524EXPORT_SYMBOL_GPL(ktime_get_boottime);
1525
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001526/**
1527 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1528 * @ts: pointer to the timespec to be converted
1529 */
1530void monotonic_to_bootbased(struct timespec *ts)
1531{
John Stultz4e250fd2012-07-27 14:48:13 -04001532 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001533 struct timespec64 ts64;
John Stultz4e250fd2012-07-27 14:48:13 -04001534
John Stultz7d489d12014-07-16 21:04:01 +00001535 ts64 = timespec_to_timespec64(*ts);
1536 ts64 = timespec64_add(ts64, tk->total_sleep_time);
1537 *ts = timespec64_to_timespec(ts64);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001538}
Jason Wangc93d89f2010-01-27 19:13:40 +08001539EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
john stultz2c6b47d2007-07-24 17:47:43 -07001540
john stultz17c38b72007-07-24 18:38:34 -07001541unsigned long get_seconds(void)
1542{
John Stultz4e250fd2012-07-27 14:48:13 -04001543 struct timekeeper *tk = &timekeeper;
1544
1545 return tk->xtime_sec;
john stultz17c38b72007-07-24 18:38:34 -07001546}
1547EXPORT_SYMBOL(get_seconds);
1548
john stultzda15cfd2009-08-19 19:13:34 -07001549struct timespec __current_kernel_time(void)
1550{
John Stultz4e250fd2012-07-27 14:48:13 -04001551 struct timekeeper *tk = &timekeeper;
1552
John Stultz7d489d12014-07-16 21:04:01 +00001553 return timespec64_to_timespec(tk_xtime(tk));
john stultzda15cfd2009-08-19 19:13:34 -07001554}
john stultz17c38b72007-07-24 18:38:34 -07001555
john stultz2c6b47d2007-07-24 17:47:43 -07001556struct timespec current_kernel_time(void)
1557{
John Stultz4e250fd2012-07-27 14:48:13 -04001558 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001559 struct timespec64 now;
john stultz2c6b47d2007-07-24 17:47:43 -07001560 unsigned long seq;
1561
1562 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001563 seq = read_seqcount_begin(&timekeeper_seq);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001564
John Stultz4e250fd2012-07-27 14:48:13 -04001565 now = tk_xtime(tk);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001566 } while (read_seqcount_retry(&timekeeper_seq, seq));
john stultz2c6b47d2007-07-24 17:47:43 -07001567
John Stultz7d489d12014-07-16 21:04:01 +00001568 return timespec64_to_timespec(now);
john stultz2c6b47d2007-07-24 17:47:43 -07001569}
john stultz2c6b47d2007-07-24 17:47:43 -07001570EXPORT_SYMBOL(current_kernel_time);
john stultzda15cfd2009-08-19 19:13:34 -07001571
1572struct timespec get_monotonic_coarse(void)
1573{
John Stultz4e250fd2012-07-27 14:48:13 -04001574 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001575 struct timespec64 now, mono;
john stultzda15cfd2009-08-19 19:13:34 -07001576 unsigned long seq;
1577
1578 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001579 seq = read_seqcount_begin(&timekeeper_seq);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001580
John Stultz4e250fd2012-07-27 14:48:13 -04001581 now = tk_xtime(tk);
1582 mono = tk->wall_to_monotonic;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001583 } while (read_seqcount_retry(&timekeeper_seq, seq));
john stultzda15cfd2009-08-19 19:13:34 -07001584
John Stultz7d489d12014-07-16 21:04:01 +00001585 set_normalized_timespec64(&now, now.tv_sec + mono.tv_sec,
john stultzda15cfd2009-08-19 19:13:34 -07001586 now.tv_nsec + mono.tv_nsec);
John Stultz7d489d12014-07-16 21:04:01 +00001587
1588 return timespec64_to_timespec(now);
john stultzda15cfd2009-08-19 19:13:34 -07001589}
Torben Hohn871cf1e2011-01-27 15:58:55 +01001590
1591/*
John Stultzd6ad4182012-02-28 16:50:11 -08001592 * Must hold jiffies_lock
Torben Hohn871cf1e2011-01-27 15:58:55 +01001593 */
1594void do_timer(unsigned long ticks)
1595{
1596 jiffies_64 += ticks;
Torben Hohn871cf1e2011-01-27 15:58:55 +01001597 calc_global_load(ticks);
1598}
Torben Hohn48cf76f72011-01-27 15:59:05 +01001599
1600/**
John Stultz76f41082014-07-16 21:03:52 +00001601 * ktime_get_update_offsets_tick - hrtimer helper
1602 * @offs_real: pointer to storage for monotonic -> realtime offset
1603 * @offs_boot: pointer to storage for monotonic -> boottime offset
1604 * @offs_tai: pointer to storage for monotonic -> clock tai offset
1605 *
1606 * Returns monotonic time at last tick and various offsets
Torben Hohn48cf76f72011-01-27 15:59:05 +01001607 */
John Stultz76f41082014-07-16 21:03:52 +00001608ktime_t ktime_get_update_offsets_tick(ktime_t *offs_real, ktime_t *offs_boot,
1609 ktime_t *offs_tai)
Torben Hohn48cf76f72011-01-27 15:59:05 +01001610{
John Stultz4e250fd2012-07-27 14:48:13 -04001611 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001612 struct timespec64 ts;
John Stultz76f41082014-07-16 21:03:52 +00001613 ktime_t now;
1614 unsigned int seq;
Torben Hohn48cf76f72011-01-27 15:59:05 +01001615
1616 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001617 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz76f41082014-07-16 21:03:52 +00001618
1619 ts = tk_xtime(tk);
John Stultz76f41082014-07-16 21:03:52 +00001620 *offs_real = tk->offs_real;
1621 *offs_boot = tk->offs_boot;
1622 *offs_tai = tk->offs_tai;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001623 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz76f41082014-07-16 21:03:52 +00001624
1625 now = ktime_set(ts.tv_sec, ts.tv_nsec);
1626 now = ktime_sub(now, *offs_real);
1627 return now;
Torben Hohn48cf76f72011-01-27 15:59:05 +01001628}
Torben Hohnf0af911a92011-01-27 15:59:10 +01001629
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001630#ifdef CONFIG_HIGH_RES_TIMERS
1631/**
John Stultz76f41082014-07-16 21:03:52 +00001632 * ktime_get_update_offsets_now - hrtimer helper
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001633 * @offs_real: pointer to storage for monotonic -> realtime offset
1634 * @offs_boot: pointer to storage for monotonic -> boottime offset
Xie XiuQib7bc50e2013-10-18 09:13:30 +08001635 * @offs_tai: pointer to storage for monotonic -> clock tai offset
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001636 *
1637 * Returns current monotonic time and updates the offsets
Xie XiuQib7bc50e2013-10-18 09:13:30 +08001638 * Called from hrtimer_interrupt() or retrigger_next_event()
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001639 */
John Stultz76f41082014-07-16 21:03:52 +00001640ktime_t ktime_get_update_offsets_now(ktime_t *offs_real, ktime_t *offs_boot,
John Stultz90adda92013-01-21 17:00:11 -08001641 ktime_t *offs_tai)
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001642{
John Stultz4e250fd2012-07-27 14:48:13 -04001643 struct timekeeper *tk = &timekeeper;
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001644 ktime_t now;
1645 unsigned int seq;
1646 u64 secs, nsecs;
1647
1648 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001649 seq = read_seqcount_begin(&timekeeper_seq);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001650
John Stultz4e250fd2012-07-27 14:48:13 -04001651 secs = tk->xtime_sec;
1652 nsecs = timekeeping_get_ns(tk);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001653
John Stultz4e250fd2012-07-27 14:48:13 -04001654 *offs_real = tk->offs_real;
1655 *offs_boot = tk->offs_boot;
John Stultz90adda92013-01-21 17:00:11 -08001656 *offs_tai = tk->offs_tai;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001657 } while (read_seqcount_retry(&timekeeper_seq, seq));
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001658
1659 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1660 now = ktime_sub(now, *offs_real);
1661 return now;
1662}
1663#endif
1664
Torben Hohnf0af911a92011-01-27 15:59:10 +01001665/**
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001666 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1667 */
1668ktime_t ktime_get_monotonic_offset(void)
1669{
John Stultz4e250fd2012-07-27 14:48:13 -04001670 struct timekeeper *tk = &timekeeper;
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001671 unsigned long seq;
John Stultz7d489d12014-07-16 21:04:01 +00001672 struct timespec64 wtom;
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001673
1674 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001675 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -04001676 wtom = tk->wall_to_monotonic;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001677 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz70471f22011-11-14 12:48:10 -08001678
John Stultz7d489d12014-07-16 21:04:01 +00001679 return timespec64_to_ktime(wtom);
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001680}
John Stultza80b83b2012-02-03 00:19:07 -08001681EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1682
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001683/**
John Stultzaa6f9c592013-03-22 11:31:29 -07001684 * do_adjtimex() - Accessor function to NTP __do_adjtimex function
1685 */
1686int do_adjtimex(struct timex *txc)
1687{
John Stultz0b5154f2013-03-22 14:20:03 -07001688 struct timekeeper *tk = &timekeeper;
John Stultz06c017f2013-03-22 11:37:28 -07001689 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +00001690 struct timespec64 ts;
John Stultz4e8f8b32013-04-10 12:41:49 -07001691 s32 orig_tai, tai;
John Stultze4085692013-03-22 12:08:52 -07001692 int ret;
1693
1694 /* Validate the data before disabling interrupts */
1695 ret = ntp_validate_timex(txc);
1696 if (ret)
1697 return ret;
1698
John Stultzcef90372013-03-22 15:04:13 -07001699 if (txc->modes & ADJ_SETOFFSET) {
1700 struct timespec delta;
1701 delta.tv_sec = txc->time.tv_sec;
1702 delta.tv_nsec = txc->time.tv_usec;
1703 if (!(txc->modes & ADJ_NANO))
1704 delta.tv_nsec *= 1000;
1705 ret = timekeeping_inject_offset(&delta);
1706 if (ret)
1707 return ret;
1708 }
1709
Thomas Gleixnerd6d29892014-07-16 21:04:04 +00001710 getnstimeofday64(&ts);
John Stultzaa6f9c592013-03-22 11:31:29 -07001711
John Stultz06c017f2013-03-22 11:37:28 -07001712 raw_spin_lock_irqsave(&timekeeper_lock, flags);
1713 write_seqcount_begin(&timekeeper_seq);
1714
John Stultz4e8f8b32013-04-10 12:41:49 -07001715 orig_tai = tai = tk->tai_offset;
John Stultz87ace392013-03-22 12:28:15 -07001716 ret = __do_adjtimex(txc, &ts, &tai);
1717
John Stultz4e8f8b32013-04-10 12:41:49 -07001718 if (tai != orig_tai) {
1719 __timekeeping_set_tai_offset(tk, tai);
John Stultzf55c0762013-12-11 18:50:25 -08001720 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultz4e8f8b32013-04-10 12:41:49 -07001721 }
John Stultz06c017f2013-03-22 11:37:28 -07001722 write_seqcount_end(&timekeeper_seq);
1723 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
1724
John Stultz6fdda9a2013-12-10 17:18:18 -08001725 if (tai != orig_tai)
1726 clock_was_set();
1727
John Stultz7bd36012013-09-11 16:50:56 -07001728 ntp_notify_cmos_timer();
1729
John Stultz87ace392013-03-22 12:28:15 -07001730 return ret;
1731}
John Stultzaa6f9c592013-03-22 11:31:29 -07001732
1733#ifdef CONFIG_NTP_PPS
1734/**
1735 * hardpps() - Accessor function to NTP __hardpps function
1736 */
1737void hardpps(const struct timespec *phase_ts, const struct timespec *raw_ts)
1738{
John Stultz06c017f2013-03-22 11:37:28 -07001739 unsigned long flags;
1740
1741 raw_spin_lock_irqsave(&timekeeper_lock, flags);
1742 write_seqcount_begin(&timekeeper_seq);
1743
John Stultzaa6f9c592013-03-22 11:31:29 -07001744 __hardpps(phase_ts, raw_ts);
John Stultz06c017f2013-03-22 11:37:28 -07001745
1746 write_seqcount_end(&timekeeper_seq);
1747 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzaa6f9c592013-03-22 11:31:29 -07001748}
1749EXPORT_SYMBOL(hardpps);
1750#endif
1751
1752/**
Torben Hohnf0af911a92011-01-27 15:59:10 +01001753 * xtime_update() - advances the timekeeping infrastructure
1754 * @ticks: number of ticks, that have elapsed since the last call.
1755 *
1756 * Must be called with interrupts disabled.
1757 */
1758void xtime_update(unsigned long ticks)
1759{
John Stultzd6ad4182012-02-28 16:50:11 -08001760 write_seqlock(&jiffies_lock);
Torben Hohnf0af911a92011-01-27 15:59:10 +01001761 do_timer(ticks);
John Stultzd6ad4182012-02-28 16:50:11 -08001762 write_sequnlock(&jiffies_lock);
John Stultz47a1b7962013-12-12 13:10:55 -08001763 update_wall_time();
Torben Hohnf0af911a92011-01-27 15:59:10 +01001764}