blob: 983d67b388d7109f83fbaa67fc17a9313742e2d6 [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
Thomas Gleixnerc905fae2014-07-16 21:04:05 +000054static inline struct timespec64 tk_xtime(struct timekeeper *tk)
55{
56 struct timespec64 ts;
57
58 ts.tv_sec = tk->xtime_sec;
59 ts.tv_nsec = (long)(tk->xtime_nsec >> tk->shift);
60 return ts;
61}
62
John Stultz7d489d12014-07-16 21:04:01 +000063static void tk_set_xtime(struct timekeeper *tk, const struct timespec64 *ts)
John Stultz1e75fa82012-07-13 01:21:53 -040064{
65 tk->xtime_sec = ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040066 tk->xtime_nsec = (u64)ts->tv_nsec << tk->shift;
John Stultz1e75fa82012-07-13 01:21:53 -040067}
68
John Stultz7d489d12014-07-16 21:04:01 +000069static void tk_xtime_add(struct timekeeper *tk, const struct timespec64 *ts)
John Stultz1e75fa82012-07-13 01:21:53 -040070{
71 tk->xtime_sec += ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040072 tk->xtime_nsec += (u64)ts->tv_nsec << tk->shift;
John Stultz784ffcb2012-08-21 20:30:46 -040073 tk_normalize_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -040074}
John Stultz8fcce542011-11-14 11:46:39 -080075
John Stultz7d489d12014-07-16 21:04:01 +000076static void tk_set_wall_to_mono(struct timekeeper *tk, struct timespec64 wtm)
John Stultz6d0ef902012-07-27 14:48:12 -040077{
John Stultz7d489d12014-07-16 21:04:01 +000078 struct timespec64 tmp;
John Stultz6d0ef902012-07-27 14:48:12 -040079
80 /*
81 * Verify consistency of: offset_real = -wall_to_monotonic
82 * before modifying anything
83 */
John Stultz7d489d12014-07-16 21:04:01 +000084 set_normalized_timespec64(&tmp, -tk->wall_to_monotonic.tv_sec,
John Stultz6d0ef902012-07-27 14:48:12 -040085 -tk->wall_to_monotonic.tv_nsec);
John Stultz7d489d12014-07-16 21:04:01 +000086 WARN_ON_ONCE(tk->offs_real.tv64 != timespec64_to_ktime(tmp).tv64);
John Stultz6d0ef902012-07-27 14:48:12 -040087 tk->wall_to_monotonic = wtm;
John Stultz7d489d12014-07-16 21:04:01 +000088 set_normalized_timespec64(&tmp, -wtm.tv_sec, -wtm.tv_nsec);
89 tk->offs_real = timespec64_to_ktime(tmp);
John Stultz04005f62013-12-10 17:13:35 -080090 tk->offs_tai = ktime_add(tk->offs_real, ktime_set(tk->tai_offset, 0));
John Stultz6d0ef902012-07-27 14:48:12 -040091}
92
John Stultz7d489d12014-07-16 21:04:01 +000093static void tk_set_sleep_time(struct timekeeper *tk, struct timespec64 t)
John Stultz6d0ef902012-07-27 14:48:12 -040094{
95 /* Verify consistency before modifying */
John Stultz7d489d12014-07-16 21:04:01 +000096 WARN_ON_ONCE(tk->offs_boot.tv64 != timespec64_to_ktime(tk->total_sleep_time).tv64);
John Stultz6d0ef902012-07-27 14:48:12 -040097
98 tk->total_sleep_time = t;
John Stultz7d489d12014-07-16 21:04:01 +000099 tk->offs_boot = timespec64_to_ktime(t);
John Stultz6d0ef902012-07-27 14:48:12 -0400100}
101
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200102/**
Yijing Wangd26e4fe2013-11-28 16:28:55 +0800103 * tk_setup_internals - Set up internals to use clocksource clock.
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200104 *
Yijing Wangd26e4fe2013-11-28 16:28:55 +0800105 * @tk: The target timekeeper to setup.
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200106 * @clock: Pointer to clocksource.
107 *
108 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
109 * pair and interval request.
110 *
111 * Unless you're the timekeeping code, you should not be using this!
112 */
John Stultzf726a692012-07-13 01:21:57 -0400113static void tk_setup_internals(struct timekeeper *tk, struct clocksource *clock)
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200114{
115 cycle_t interval;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700116 u64 tmp, ntpinterval;
John Stultz1e75fa82012-07-13 01:21:53 -0400117 struct clocksource *old_clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200118
John Stultzf726a692012-07-13 01:21:57 -0400119 old_clock = tk->clock;
120 tk->clock = clock;
Thomas Gleixner14a3b6a2013-02-21 22:51:38 +0000121 tk->cycle_last = clock->cycle_last = clock->read(clock);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200122
123 /* Do the ns -> cycle conversion first, using original mult */
124 tmp = NTP_INTERVAL_LENGTH;
125 tmp <<= clock->shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700126 ntpinterval = tmp;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200127 tmp += clock->mult/2;
128 do_div(tmp, clock->mult);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200129 if (tmp == 0)
130 tmp = 1;
131
132 interval = (cycle_t) tmp;
John Stultzf726a692012-07-13 01:21:57 -0400133 tk->cycle_interval = interval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200134
135 /* Go back from cycles -> shifted ns */
John Stultzf726a692012-07-13 01:21:57 -0400136 tk->xtime_interval = (u64) interval * clock->mult;
137 tk->xtime_remainder = ntpinterval - tk->xtime_interval;
138 tk->raw_interval =
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200139 ((u64) interval * clock->mult) >> clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200140
John Stultz1e75fa82012-07-13 01:21:53 -0400141 /* if changing clocks, convert xtime_nsec shift units */
142 if (old_clock) {
143 int shift_change = clock->shift - old_clock->shift;
144 if (shift_change < 0)
John Stultzf726a692012-07-13 01:21:57 -0400145 tk->xtime_nsec >>= -shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400146 else
John Stultzf726a692012-07-13 01:21:57 -0400147 tk->xtime_nsec <<= shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400148 }
John Stultzf726a692012-07-13 01:21:57 -0400149 tk->shift = clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200150
John Stultzf726a692012-07-13 01:21:57 -0400151 tk->ntp_error = 0;
152 tk->ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200153
154 /*
155 * The timekeeper keeps its own mult values for the currently
156 * active clocksource. These value will be adjusted via NTP
157 * to counteract clock drifting.
158 */
John Stultzf726a692012-07-13 01:21:57 -0400159 tk->mult = clock->mult;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200160}
john stultz85240702007-05-08 00:27:59 -0700161
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200162/* Timekeeper helper functions. */
Stephen Warren7b1f6202012-11-07 17:58:54 -0700163
164#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000165static u32 default_arch_gettimeoffset(void) { return 0; }
166u32 (*arch_gettimeoffset)(void) = default_arch_gettimeoffset;
Stephen Warren7b1f6202012-11-07 17:58:54 -0700167#else
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000168static inline u32 arch_gettimeoffset(void) { return 0; }
Stephen Warren7b1f6202012-11-07 17:58:54 -0700169#endif
170
John Stultzf726a692012-07-13 01:21:57 -0400171static inline s64 timekeeping_get_ns(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200172{
173 cycle_t cycle_now, cycle_delta;
174 struct clocksource *clock;
John Stultz1e75fa82012-07-13 01:21:53 -0400175 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200176
177 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400178 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200179 cycle_now = clock->read(clock);
180
181 /* calculate the delta since the last update_wall_time: */
182 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
183
John Stultzf726a692012-07-13 01:21:57 -0400184 nsec = cycle_delta * tk->mult + tk->xtime_nsec;
185 nsec >>= tk->shift;
John Stultzf2a5a082012-07-13 01:21:55 -0400186
Stephen Warren7b1f6202012-11-07 17:58:54 -0700187 /* If arch requires, add in get_arch_timeoffset() */
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000188 return nsec + arch_gettimeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200189}
190
John Stultzf726a692012-07-13 01:21:57 -0400191static inline s64 timekeeping_get_ns_raw(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200192{
193 cycle_t cycle_now, cycle_delta;
194 struct clocksource *clock;
John Stultzf2a5a082012-07-13 01:21:55 -0400195 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200196
197 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400198 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200199 cycle_now = clock->read(clock);
200
201 /* calculate the delta since the last update_wall_time: */
202 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
203
John Stultzf2a5a082012-07-13 01:21:55 -0400204 /* convert delta to nanoseconds. */
205 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
206
Stephen Warren7b1f6202012-11-07 17:58:54 -0700207 /* If arch requires, add in get_arch_timeoffset() */
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000208 return nsec + arch_gettimeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200209}
210
Thomas Gleixnerc905fae2014-07-16 21:04:05 +0000211#ifdef CONFIG_GENERIC_TIME_VSYSCALL_OLD
212
213static inline void update_vsyscall(struct timekeeper *tk)
214{
215 struct timespec xt;
216
217 xt = tk_xtime(tk);
218 update_vsyscall_old(&xt, &tk->wall_to_monotonic, tk->clock, tk->mult);
219}
220
221static inline void old_vsyscall_fixup(struct timekeeper *tk)
222{
223 s64 remainder;
224
225 /*
226 * Store only full nanoseconds into xtime_nsec after rounding
227 * it up and add the remainder to the error difference.
228 * XXX - This is necessary to avoid small 1ns inconsistnecies caused
229 * by truncating the remainder in vsyscalls. However, it causes
230 * additional work to be done in timekeeping_adjust(). Once
231 * the vsyscall implementations are converted to use xtime_nsec
232 * (shifted nanoseconds), and CONFIG_GENERIC_TIME_VSYSCALL_OLD
233 * users are removed, this can be killed.
234 */
235 remainder = tk->xtime_nsec & ((1ULL << tk->shift) - 1);
236 tk->xtime_nsec -= remainder;
237 tk->xtime_nsec += 1ULL << tk->shift;
238 tk->ntp_error += remainder << tk->ntp_error_shift;
239 tk->ntp_error -= (1ULL << tk->shift) << tk->ntp_error_shift;
240}
241#else
242#define old_vsyscall_fixup(tk)
243#endif
244
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200245static RAW_NOTIFIER_HEAD(pvclock_gtod_chain);
246
David Vrabel780427f2013-06-27 11:35:46 +0100247static void update_pvclock_gtod(struct timekeeper *tk, bool was_set)
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200248{
David Vrabel780427f2013-06-27 11:35:46 +0100249 raw_notifier_call_chain(&pvclock_gtod_chain, was_set, tk);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200250}
251
252/**
253 * pvclock_gtod_register_notifier - register a pvclock timedata update listener
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200254 */
255int pvclock_gtod_register_notifier(struct notifier_block *nb)
256{
257 struct timekeeper *tk = &timekeeper;
258 unsigned long flags;
259 int ret;
260
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000261 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200262 ret = raw_notifier_chain_register(&pvclock_gtod_chain, nb);
David Vrabel780427f2013-06-27 11:35:46 +0100263 update_pvclock_gtod(tk, true);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000264 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200265
266 return ret;
267}
268EXPORT_SYMBOL_GPL(pvclock_gtod_register_notifier);
269
270/**
271 * pvclock_gtod_unregister_notifier - unregister a pvclock
272 * timedata update listener
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200273 */
274int pvclock_gtod_unregister_notifier(struct notifier_block *nb)
275{
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200276 unsigned long flags;
277 int ret;
278
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000279 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200280 ret = raw_notifier_chain_unregister(&pvclock_gtod_chain, nb);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000281 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200282
283 return ret;
284}
285EXPORT_SYMBOL_GPL(pvclock_gtod_unregister_notifier);
286
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000287/* must hold timekeeper_lock */
David Vrabel04397fe92013-06-27 11:35:45 +0100288static void timekeeping_update(struct timekeeper *tk, unsigned int action)
Thomas Gleixnercc062682011-11-13 23:19:49 +0000289{
David Vrabel04397fe92013-06-27 11:35:45 +0100290 if (action & TK_CLEAR_NTP) {
John Stultzf726a692012-07-13 01:21:57 -0400291 tk->ntp_error = 0;
Thomas Gleixnercc062682011-11-13 23:19:49 +0000292 ntp_clear();
293 }
John Stultz576094b2012-09-11 19:58:13 -0400294 update_vsyscall(tk);
David Vrabel780427f2013-06-27 11:35:46 +0100295 update_pvclock_gtod(tk, action & TK_CLOCK_WAS_SET);
Thomas Gleixner48cdc132013-02-21 22:51:40 +0000296
David Vrabel04397fe92013-06-27 11:35:45 +0100297 if (action & TK_MIRROR)
Thomas Gleixner48cdc132013-02-21 22:51:40 +0000298 memcpy(&shadow_timekeeper, &timekeeper, sizeof(timekeeper));
Thomas Gleixnercc062682011-11-13 23:19:49 +0000299}
300
john stultz85240702007-05-08 00:27:59 -0700301/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200302 * timekeeping_forward_now - update clock to the current time
john stultz85240702007-05-08 00:27:59 -0700303 *
Roman Zippel9a055112008-08-20 16:37:28 -0700304 * Forward the current clock to update its state since the last call to
305 * update_wall_time(). This is useful before significant clock changes,
306 * as it avoids having to deal with this time offset explicitly.
john stultz85240702007-05-08 00:27:59 -0700307 */
John Stultzf726a692012-07-13 01:21:57 -0400308static void timekeeping_forward_now(struct timekeeper *tk)
john stultz85240702007-05-08 00:27:59 -0700309{
310 cycle_t cycle_now, cycle_delta;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200311 struct clocksource *clock;
Roman Zippel9a055112008-08-20 16:37:28 -0700312 s64 nsec;
john stultz85240702007-05-08 00:27:59 -0700313
John Stultzf726a692012-07-13 01:21:57 -0400314 clock = tk->clock;
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200315 cycle_now = clock->read(clock);
john stultz85240702007-05-08 00:27:59 -0700316 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
Thomas Gleixner14a3b6a2013-02-21 22:51:38 +0000317 tk->cycle_last = clock->cycle_last = cycle_now;
john stultz85240702007-05-08 00:27:59 -0700318
John Stultzf726a692012-07-13 01:21:57 -0400319 tk->xtime_nsec += cycle_delta * tk->mult;
john stultz7d275582009-05-01 13:10:26 -0700320
Stephen Warren7b1f6202012-11-07 17:58:54 -0700321 /* If arch requires, add in get_arch_timeoffset() */
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000322 tk->xtime_nsec += (u64)arch_gettimeoffset() << tk->shift;
john stultz7d275582009-05-01 13:10:26 -0700323
John Stultzf726a692012-07-13 01:21:57 -0400324 tk_normalize_xtime(tk);
John Stultz2d422442008-08-20 16:37:30 -0700325
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200326 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
John Stultz7d489d12014-07-16 21:04:01 +0000327 timespec64_add_ns(&tk->raw_time, nsec);
john stultz85240702007-05-08 00:27:59 -0700328}
329
330/**
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000331 * __getnstimeofday64 - Returns the time of day in a timespec64.
john stultz85240702007-05-08 00:27:59 -0700332 * @ts: pointer to the timespec to be set
333 *
Kees Cook1e817fb2012-11-19 10:26:16 -0800334 * Updates the time of day in the timespec.
335 * Returns 0 on success, or -ve when suspended (timespec will be undefined).
john stultz85240702007-05-08 00:27:59 -0700336 */
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000337int __getnstimeofday64(struct timespec64 *ts)
john stultz85240702007-05-08 00:27:59 -0700338{
John Stultz4e250fd2012-07-27 14:48:13 -0400339 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700340 unsigned long seq;
John Stultz1e75fa82012-07-13 01:21:53 -0400341 s64 nsecs = 0;
john stultz85240702007-05-08 00:27:59 -0700342
343 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000344 seq = read_seqcount_begin(&timekeeper_seq);
john stultz85240702007-05-08 00:27:59 -0700345
John Stultz4e250fd2012-07-27 14:48:13 -0400346 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400347 nsecs = timekeeping_get_ns(tk);
john stultz85240702007-05-08 00:27:59 -0700348
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000349 } while (read_seqcount_retry(&timekeeper_seq, seq));
john stultz85240702007-05-08 00:27:59 -0700350
John Stultzec145ba2012-09-11 19:26:03 -0400351 ts->tv_nsec = 0;
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000352 timespec64_add_ns(ts, nsecs);
Kees Cook1e817fb2012-11-19 10:26:16 -0800353
354 /*
355 * Do not bail out early, in case there were callers still using
356 * the value, even in the face of the WARN_ON.
357 */
358 if (unlikely(timekeeping_suspended))
359 return -EAGAIN;
360 return 0;
361}
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000362EXPORT_SYMBOL(__getnstimeofday64);
Kees Cook1e817fb2012-11-19 10:26:16 -0800363
364/**
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000365 * getnstimeofday64 - Returns the time of day in a timespec64.
Kees Cook1e817fb2012-11-19 10:26:16 -0800366 * @ts: pointer to the timespec to be set
367 *
368 * Returns the time of day in a timespec (WARN if suspended).
369 */
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000370void getnstimeofday64(struct timespec64 *ts)
Kees Cook1e817fb2012-11-19 10:26:16 -0800371{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000372 WARN_ON(__getnstimeofday64(ts));
john stultz85240702007-05-08 00:27:59 -0700373}
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000374EXPORT_SYMBOL(getnstimeofday64);
john stultz85240702007-05-08 00:27:59 -0700375
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200376ktime_t ktime_get(void)
377{
John Stultz4e250fd2012-07-27 14:48:13 -0400378 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200379 unsigned int seq;
380 s64 secs, nsecs;
381
382 WARN_ON(timekeeping_suspended);
383
384 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000385 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -0400386 secs = tk->xtime_sec + tk->wall_to_monotonic.tv_sec;
387 nsecs = timekeeping_get_ns(tk) + tk->wall_to_monotonic.tv_nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200388
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000389 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz24e4a8c2014-07-16 21:03:53 +0000390
391 return ktime_set(secs, nsecs);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200392}
393EXPORT_SYMBOL_GPL(ktime_get);
394
395/**
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000396 * ktime_get_ts64 - get the monotonic clock in timespec64 format
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200397 * @ts: pointer to timespec variable
398 *
399 * The function calculates the monotonic clock from the realtime
400 * clock and the wall_to_monotonic offset and stores the result
401 * in normalized timespec format in the variable pointed to by @ts.
402 */
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000403void ktime_get_ts64(struct timespec64 *ts)
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200404{
John Stultz4e250fd2012-07-27 14:48:13 -0400405 struct timekeeper *tk = &timekeeper;
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000406 struct timespec64 tomono;
John Stultzec145ba2012-09-11 19:26:03 -0400407 s64 nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200408 unsigned int seq;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200409
410 WARN_ON(timekeeping_suspended);
411
412 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000413 seq = read_seqcount_begin(&timekeeper_seq);
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000414 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400415 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -0400416 tomono = tk->wall_to_monotonic;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200417
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000418 } while (read_seqcount_retry(&timekeeper_seq, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200419
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000420 ts->tv_sec += tomono.tv_sec;
421 ts->tv_nsec = 0;
422 timespec64_add_ns(ts, nsec + tomono.tv_nsec);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200423}
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000424EXPORT_SYMBOL_GPL(ktime_get_ts64);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200425
John Stultz1ff3c962012-05-03 12:43:40 -0700426
427/**
428 * timekeeping_clocktai - Returns the TAI time of day in a timespec
429 * @ts: pointer to the timespec to be set
430 *
431 * Returns the time of day in a timespec.
432 */
433void timekeeping_clocktai(struct timespec *ts)
434{
435 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000436 struct timespec64 ts64;
John Stultz1ff3c962012-05-03 12:43:40 -0700437 unsigned long seq;
438 u64 nsecs;
439
440 WARN_ON(timekeeping_suspended);
441
442 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000443 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz1ff3c962012-05-03 12:43:40 -0700444
John Stultz7d489d12014-07-16 21:04:01 +0000445 ts64.tv_sec = tk->xtime_sec + tk->tai_offset;
John Stultz1ff3c962012-05-03 12:43:40 -0700446 nsecs = timekeeping_get_ns(tk);
447
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000448 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz1ff3c962012-05-03 12:43:40 -0700449
John Stultz7d489d12014-07-16 21:04:01 +0000450 ts64.tv_nsec = 0;
451 timespec64_add_ns(&ts64, nsecs);
452 *ts = timespec64_to_timespec(ts64);
John Stultz1ff3c962012-05-03 12:43:40 -0700453
454}
455EXPORT_SYMBOL(timekeeping_clocktai);
456
457
John Stultz90adda92013-01-21 17:00:11 -0800458/**
459 * ktime_get_clocktai - Returns the TAI time of day in a ktime
460 *
461 * Returns the time of day in a ktime.
462 */
463ktime_t ktime_get_clocktai(void)
464{
465 struct timespec ts;
466
467 timekeeping_clocktai(&ts);
468 return timespec_to_ktime(ts);
469}
470EXPORT_SYMBOL(ktime_get_clocktai);
471
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800472#ifdef CONFIG_NTP_PPS
473
474/**
475 * getnstime_raw_and_real - get day and raw monotonic time in timespec format
476 * @ts_raw: pointer to the timespec to be set to raw monotonic time
477 * @ts_real: pointer to the timespec to be set to the time of day
478 *
479 * This function reads both the time of day and raw monotonic time at the
480 * same time atomically and stores the resulting timestamps in timespec
481 * format.
482 */
483void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
484{
John Stultz4e250fd2012-07-27 14:48:13 -0400485 struct timekeeper *tk = &timekeeper;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800486 unsigned long seq;
487 s64 nsecs_raw, nsecs_real;
488
489 WARN_ON_ONCE(timekeeping_suspended);
490
491 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000492 seq = read_seqcount_begin(&timekeeper_seq);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800493
John Stultz7d489d12014-07-16 21:04:01 +0000494 *ts_raw = timespec64_to_timespec(tk->raw_time);
John Stultz4e250fd2012-07-27 14:48:13 -0400495 ts_real->tv_sec = tk->xtime_sec;
John Stultz1e75fa82012-07-13 01:21:53 -0400496 ts_real->tv_nsec = 0;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800497
John Stultz4e250fd2012-07-27 14:48:13 -0400498 nsecs_raw = timekeeping_get_ns_raw(tk);
499 nsecs_real = timekeeping_get_ns(tk);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800500
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000501 } while (read_seqcount_retry(&timekeeper_seq, seq));
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800502
503 timespec_add_ns(ts_raw, nsecs_raw);
504 timespec_add_ns(ts_real, nsecs_real);
505}
506EXPORT_SYMBOL(getnstime_raw_and_real);
507
508#endif /* CONFIG_NTP_PPS */
509
john stultz85240702007-05-08 00:27:59 -0700510/**
511 * do_gettimeofday - Returns the time of day in a timeval
512 * @tv: pointer to the timeval to be set
513 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100514 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -0700515 */
516void do_gettimeofday(struct timeval *tv)
517{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000518 struct timespec64 now;
john stultz85240702007-05-08 00:27:59 -0700519
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000520 getnstimeofday64(&now);
john stultz85240702007-05-08 00:27:59 -0700521 tv->tv_sec = now.tv_sec;
522 tv->tv_usec = now.tv_nsec/1000;
523}
john stultz85240702007-05-08 00:27:59 -0700524EXPORT_SYMBOL(do_gettimeofday);
Richard Cochrand239f492012-04-27 10:12:42 +0200525
john stultz85240702007-05-08 00:27:59 -0700526/**
527 * do_settimeofday - Sets the time of day
528 * @tv: pointer to the timespec variable containing the new time
529 *
530 * Sets the time of day to the new time and update NTP and notify hrtimers
531 */
Richard Cochran1e6d7672011-02-01 13:50:58 +0000532int do_settimeofday(const struct timespec *tv)
john stultz85240702007-05-08 00:27:59 -0700533{
John Stultz4e250fd2012-07-27 14:48:13 -0400534 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000535 struct timespec64 ts_delta, xt, tmp;
John Stultz92c1d3e2011-11-14 14:05:44 -0800536 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700537
John Stultzcee58482012-08-31 13:30:06 -0400538 if (!timespec_valid_strict(tv))
john stultz85240702007-05-08 00:27:59 -0700539 return -EINVAL;
540
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000541 raw_spin_lock_irqsave(&timekeeper_lock, flags);
542 write_seqcount_begin(&timekeeper_seq);
john stultz85240702007-05-08 00:27:59 -0700543
John Stultz4e250fd2012-07-27 14:48:13 -0400544 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700545
John Stultz4e250fd2012-07-27 14:48:13 -0400546 xt = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400547 ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
548 ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
549
John Stultz7d489d12014-07-16 21:04:01 +0000550 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, ts_delta));
john stultz85240702007-05-08 00:27:59 -0700551
John Stultz7d489d12014-07-16 21:04:01 +0000552 tmp = timespec_to_timespec64(*tv);
553 tk_set_xtime(tk, &tmp);
John Stultz1e75fa82012-07-13 01:21:53 -0400554
David Vrabel780427f2013-06-27 11:35:46 +0100555 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
john stultz85240702007-05-08 00:27:59 -0700556
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000557 write_seqcount_end(&timekeeper_seq);
558 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -0700559
560 /* signal hrtimers about time change */
561 clock_was_set();
562
563 return 0;
564}
john stultz85240702007-05-08 00:27:59 -0700565EXPORT_SYMBOL(do_settimeofday);
566
John Stultzc528f7c2011-02-01 13:52:17 +0000567/**
568 * timekeeping_inject_offset - Adds or subtracts from the current time.
569 * @tv: pointer to the timespec variable containing the offset
570 *
571 * Adds or subtracts an offset value from the current time.
572 */
573int timekeeping_inject_offset(struct timespec *ts)
574{
John Stultz4e250fd2012-07-27 14:48:13 -0400575 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800576 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +0000577 struct timespec64 ts64, tmp;
John Stultz4e8b1452012-08-08 15:36:20 -0400578 int ret = 0;
John Stultzc528f7c2011-02-01 13:52:17 +0000579
580 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
581 return -EINVAL;
582
John Stultz7d489d12014-07-16 21:04:01 +0000583 ts64 = timespec_to_timespec64(*ts);
584
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000585 raw_spin_lock_irqsave(&timekeeper_lock, flags);
586 write_seqcount_begin(&timekeeper_seq);
John Stultzc528f7c2011-02-01 13:52:17 +0000587
John Stultz4e250fd2012-07-27 14:48:13 -0400588 timekeeping_forward_now(tk);
John Stultzc528f7c2011-02-01 13:52:17 +0000589
John Stultz4e8b1452012-08-08 15:36:20 -0400590 /* Make sure the proposed value is valid */
John Stultz7d489d12014-07-16 21:04:01 +0000591 tmp = timespec64_add(tk_xtime(tk), ts64);
592 if (!timespec64_valid_strict(&tmp)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400593 ret = -EINVAL;
594 goto error;
595 }
John Stultz1e75fa82012-07-13 01:21:53 -0400596
John Stultz7d489d12014-07-16 21:04:01 +0000597 tk_xtime_add(tk, &ts64);
598 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, ts64));
John Stultzc528f7c2011-02-01 13:52:17 +0000599
John Stultz4e8b1452012-08-08 15:36:20 -0400600error: /* even if we error out, we forwarded the time, so call update */
David Vrabel780427f2013-06-27 11:35:46 +0100601 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultzc528f7c2011-02-01 13:52:17 +0000602
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000603 write_seqcount_end(&timekeeper_seq);
604 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000605
606 /* signal hrtimers about time change */
607 clock_was_set();
608
John Stultz4e8b1452012-08-08 15:36:20 -0400609 return ret;
John Stultzc528f7c2011-02-01 13:52:17 +0000610}
611EXPORT_SYMBOL(timekeeping_inject_offset);
612
John Stultzcc244dd2012-05-03 12:30:07 -0700613
614/**
615 * timekeeping_get_tai_offset - Returns current TAI offset from UTC
616 *
617 */
618s32 timekeeping_get_tai_offset(void)
619{
620 struct timekeeper *tk = &timekeeper;
621 unsigned int seq;
622 s32 ret;
623
624 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000625 seq = read_seqcount_begin(&timekeeper_seq);
John Stultzcc244dd2012-05-03 12:30:07 -0700626 ret = tk->tai_offset;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000627 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultzcc244dd2012-05-03 12:30:07 -0700628
629 return ret;
630}
631
632/**
633 * __timekeeping_set_tai_offset - Lock free worker function
634 *
635 */
Fengguang Wudd5d70e2013-03-25 12:24:24 -0700636static void __timekeeping_set_tai_offset(struct timekeeper *tk, s32 tai_offset)
John Stultzcc244dd2012-05-03 12:30:07 -0700637{
638 tk->tai_offset = tai_offset;
John Stultz04005f62013-12-10 17:13:35 -0800639 tk->offs_tai = ktime_add(tk->offs_real, ktime_set(tai_offset, 0));
John Stultzcc244dd2012-05-03 12:30:07 -0700640}
641
642/**
643 * timekeeping_set_tai_offset - Sets the current TAI offset from UTC
644 *
645 */
646void timekeeping_set_tai_offset(s32 tai_offset)
647{
648 struct timekeeper *tk = &timekeeper;
649 unsigned long flags;
650
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000651 raw_spin_lock_irqsave(&timekeeper_lock, flags);
652 write_seqcount_begin(&timekeeper_seq);
John Stultzcc244dd2012-05-03 12:30:07 -0700653 __timekeeping_set_tai_offset(tk, tai_offset);
John Stultzf55c0762013-12-11 18:50:25 -0800654 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000655 write_seqcount_end(&timekeeper_seq);
656 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz4e8f8b32013-04-10 12:41:49 -0700657 clock_was_set();
John Stultzcc244dd2012-05-03 12:30:07 -0700658}
659
john stultz85240702007-05-08 00:27:59 -0700660/**
661 * change_clocksource - Swaps clocksources if a new one is available
662 *
663 * Accumulates current time interval and initializes new clocksource
664 */
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200665static int change_clocksource(void *data)
john stultz85240702007-05-08 00:27:59 -0700666{
John Stultz4e250fd2012-07-27 14:48:13 -0400667 struct timekeeper *tk = &timekeeper;
Magnus Damm4614e6a2009-04-21 12:24:02 -0700668 struct clocksource *new, *old;
John Stultzf695cf92012-03-14 16:38:15 -0700669 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700670
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200671 new = (struct clocksource *) data;
john stultz85240702007-05-08 00:27:59 -0700672
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000673 raw_spin_lock_irqsave(&timekeeper_lock, flags);
674 write_seqcount_begin(&timekeeper_seq);
John Stultzf695cf92012-03-14 16:38:15 -0700675
John Stultz4e250fd2012-07-27 14:48:13 -0400676 timekeeping_forward_now(tk);
Thomas Gleixner09ac3692013-04-25 20:31:44 +0000677 /*
678 * If the cs is in module, get a module reference. Succeeds
679 * for built-in code (owner == NULL) as well.
680 */
681 if (try_module_get(new->owner)) {
682 if (!new->enable || new->enable(new) == 0) {
683 old = tk->clock;
684 tk_setup_internals(tk, new);
685 if (old->disable)
686 old->disable(old);
687 module_put(old->owner);
688 } else {
689 module_put(new->owner);
690 }
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200691 }
David Vrabel780427f2013-06-27 11:35:46 +0100692 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultzf695cf92012-03-14 16:38:15 -0700693
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000694 write_seqcount_end(&timekeeper_seq);
695 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -0700696
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200697 return 0;
698}
john stultz85240702007-05-08 00:27:59 -0700699
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200700/**
701 * timekeeping_notify - Install a new clock source
702 * @clock: pointer to the clock source
703 *
704 * This function is called from clocksource.c after a new, better clock
705 * source has been registered. The caller holds the clocksource_mutex.
706 */
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000707int timekeeping_notify(struct clocksource *clock)
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200708{
John Stultz4e250fd2012-07-27 14:48:13 -0400709 struct timekeeper *tk = &timekeeper;
710
711 if (tk->clock == clock)
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000712 return 0;
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200713 stop_machine(change_clocksource, clock, NULL);
john stultz85240702007-05-08 00:27:59 -0700714 tick_clock_notify();
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000715 return tk->clock == clock ? 0 : -1;
john stultz85240702007-05-08 00:27:59 -0700716}
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200717
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200718/**
719 * ktime_get_real - get the real (wall-) time in ktime_t format
720 *
721 * returns the time in ktime_t format
722 */
723ktime_t ktime_get_real(void)
724{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000725 struct timespec64 now;
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200726
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000727 getnstimeofday64(&now);
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200728
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000729 return timespec64_to_ktime(now);
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200730}
731EXPORT_SYMBOL_GPL(ktime_get_real);
john stultz85240702007-05-08 00:27:59 -0700732
733/**
John Stultz2d422442008-08-20 16:37:30 -0700734 * getrawmonotonic - Returns the raw monotonic time in a timespec
735 * @ts: pointer to the timespec to be set
736 *
737 * Returns the raw monotonic time (completely un-modified by ntp)
738 */
739void getrawmonotonic(struct timespec *ts)
740{
John Stultz4e250fd2012-07-27 14:48:13 -0400741 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000742 struct timespec64 ts64;
John Stultz2d422442008-08-20 16:37:30 -0700743 unsigned long seq;
744 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -0700745
746 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000747 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -0400748 nsecs = timekeeping_get_ns_raw(tk);
John Stultz7d489d12014-07-16 21:04:01 +0000749 ts64 = tk->raw_time;
John Stultz2d422442008-08-20 16:37:30 -0700750
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000751 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz2d422442008-08-20 16:37:30 -0700752
John Stultz7d489d12014-07-16 21:04:01 +0000753 timespec64_add_ns(&ts64, nsecs);
754 *ts = timespec64_to_timespec(ts64);
John Stultz2d422442008-08-20 16:37:30 -0700755}
756EXPORT_SYMBOL(getrawmonotonic);
757
John Stultz2d422442008-08-20 16:37:30 -0700758/**
Li Zefancf4fc6c2008-02-08 04:19:24 -0800759 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -0700760 */
Li Zefancf4fc6c2008-02-08 04:19:24 -0800761int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -0700762{
John Stultz4e250fd2012-07-27 14:48:13 -0400763 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700764 unsigned long seq;
765 int ret;
766
767 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000768 seq = read_seqcount_begin(&timekeeper_seq);
john stultz85240702007-05-08 00:27:59 -0700769
John Stultz4e250fd2012-07-27 14:48:13 -0400770 ret = tk->clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -0700771
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000772 } while (read_seqcount_retry(&timekeeper_seq, seq));
john stultz85240702007-05-08 00:27:59 -0700773
774 return ret;
775}
776
777/**
Jon Hunter98962462009-08-18 12:45:10 -0500778 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
Jon Hunter98962462009-08-18 12:45:10 -0500779 */
780u64 timekeeping_max_deferment(void)
781{
John Stultz4e250fd2012-07-27 14:48:13 -0400782 struct timekeeper *tk = &timekeeper;
John Stultz70471f22011-11-14 12:48:10 -0800783 unsigned long seq;
784 u64 ret;
John Stultz42e71e82012-07-13 01:21:51 -0400785
John Stultz70471f22011-11-14 12:48:10 -0800786 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000787 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz70471f22011-11-14 12:48:10 -0800788
John Stultz4e250fd2012-07-27 14:48:13 -0400789 ret = tk->clock->max_idle_ns;
John Stultz70471f22011-11-14 12:48:10 -0800790
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000791 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz70471f22011-11-14 12:48:10 -0800792
793 return ret;
Jon Hunter98962462009-08-18 12:45:10 -0500794}
795
796/**
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200797 * read_persistent_clock - Return time from the persistent clock.
john stultz85240702007-05-08 00:27:59 -0700798 *
799 * Weak dummy function for arches that do not yet support it.
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200800 * Reads the time from the battery backed persistent clock.
801 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
john stultz85240702007-05-08 00:27:59 -0700802 *
803 * XXX - Do be sure to remove it once all arches implement it.
804 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -0700805void __weak read_persistent_clock(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700806{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200807 ts->tv_sec = 0;
808 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700809}
810
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200811/**
812 * read_boot_clock - Return time of the system start.
813 *
814 * Weak dummy function for arches that do not yet support it.
815 * Function to read the exact time the system has been started.
816 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
817 *
818 * XXX - Do be sure to remove it once all arches implement it.
819 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -0700820void __weak read_boot_clock(struct timespec *ts)
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200821{
822 ts->tv_sec = 0;
823 ts->tv_nsec = 0;
824}
825
john stultz85240702007-05-08 00:27:59 -0700826/*
827 * timekeeping_init - Initializes the clocksource and common timekeeping values
828 */
829void __init timekeeping_init(void)
830{
John Stultz4e250fd2012-07-27 14:48:13 -0400831 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200832 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700833 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +0000834 struct timespec64 now, boot, tmp;
835 struct timespec ts;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200836
John Stultz7d489d12014-07-16 21:04:01 +0000837 read_persistent_clock(&ts);
838 now = timespec_to_timespec64(ts);
839 if (!timespec64_valid_strict(&now)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400840 pr_warn("WARNING: Persistent clock returned invalid value!\n"
841 " Check your CMOS/BIOS settings.\n");
842 now.tv_sec = 0;
843 now.tv_nsec = 0;
Feng Tang31ade302013-01-16 00:09:47 +0800844 } else if (now.tv_sec || now.tv_nsec)
845 persistent_clock_exist = true;
John Stultz4e8b1452012-08-08 15:36:20 -0400846
John Stultz7d489d12014-07-16 21:04:01 +0000847 read_boot_clock(&ts);
848 boot = timespec_to_timespec64(ts);
849 if (!timespec64_valid_strict(&boot)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400850 pr_warn("WARNING: Boot clock returned invalid value!\n"
851 " Check your CMOS/BIOS settings.\n");
852 boot.tv_sec = 0;
853 boot.tv_nsec = 0;
854 }
john stultz85240702007-05-08 00:27:59 -0700855
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000856 raw_spin_lock_irqsave(&timekeeper_lock, flags);
857 write_seqcount_begin(&timekeeper_seq);
John Stultz06c017f2013-03-22 11:37:28 -0700858 ntp_init();
859
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200860 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200861 if (clock->enable)
862 clock->enable(clock);
John Stultz4e250fd2012-07-27 14:48:13 -0400863 tk_setup_internals(tk, clock);
john stultz85240702007-05-08 00:27:59 -0700864
John Stultz4e250fd2012-07-27 14:48:13 -0400865 tk_set_xtime(tk, &now);
866 tk->raw_time.tv_sec = 0;
867 tk->raw_time.tv_nsec = 0;
John Stultz1e75fa82012-07-13 01:21:53 -0400868 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
John Stultz4e250fd2012-07-27 14:48:13 -0400869 boot = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400870
John Stultz7d489d12014-07-16 21:04:01 +0000871 set_normalized_timespec64(&tmp, -boot.tv_sec, -boot.tv_nsec);
John Stultz4e250fd2012-07-27 14:48:13 -0400872 tk_set_wall_to_mono(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400873
874 tmp.tv_sec = 0;
875 tmp.tv_nsec = 0;
John Stultz4e250fd2012-07-27 14:48:13 -0400876 tk_set_sleep_time(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400877
Thomas Gleixner48cdc132013-02-21 22:51:40 +0000878 memcpy(&shadow_timekeeper, &timekeeper, sizeof(timekeeper));
879
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000880 write_seqcount_end(&timekeeper_seq);
881 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -0700882}
883
john stultz85240702007-05-08 00:27:59 -0700884/* time in seconds when suspend began */
John Stultz7d489d12014-07-16 21:04:01 +0000885static struct timespec64 timekeeping_suspend_time;
john stultz85240702007-05-08 00:27:59 -0700886
887/**
John Stultz304529b2011-04-01 14:32:09 -0700888 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
889 * @delta: pointer to a timespec delta value
890 *
891 * Takes a timespec offset measuring a suspend interval and properly
892 * adds the sleep offset to the timekeeping variables.
893 */
John Stultzf726a692012-07-13 01:21:57 -0400894static void __timekeeping_inject_sleeptime(struct timekeeper *tk,
John Stultz7d489d12014-07-16 21:04:01 +0000895 struct timespec64 *delta)
John Stultz304529b2011-04-01 14:32:09 -0700896{
John Stultz7d489d12014-07-16 21:04:01 +0000897 if (!timespec64_valid_strict(delta)) {
John Stultz6d9bcb62014-06-04 16:11:43 -0700898 printk_deferred(KERN_WARNING
899 "__timekeeping_inject_sleeptime: Invalid "
900 "sleep delta value!\n");
John Stultzcb5de2f8d2011-06-01 18:18:09 -0700901 return;
902 }
John Stultzf726a692012-07-13 01:21:57 -0400903 tk_xtime_add(tk, delta);
John Stultz7d489d12014-07-16 21:04:01 +0000904 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, *delta));
905 tk_set_sleep_time(tk, timespec64_add(tk->total_sleep_time, *delta));
Colin Cross5c835452013-05-21 22:32:14 -0700906 tk_debug_account_sleep_time(delta);
John Stultz304529b2011-04-01 14:32:09 -0700907}
908
John Stultz304529b2011-04-01 14:32:09 -0700909/**
910 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
911 * @delta: pointer to a timespec delta value
912 *
913 * This hook is for architectures that cannot support read_persistent_clock
914 * because their RTC/persistent clock is only accessible when irqs are enabled.
915 *
916 * This function should only be called by rtc_resume(), and allows
917 * a suspend offset to be injected into the timekeeping values.
918 */
919void timekeeping_inject_sleeptime(struct timespec *delta)
920{
John Stultz4e250fd2012-07-27 14:48:13 -0400921 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000922 struct timespec64 tmp;
John Stultz92c1d3e2011-11-14 14:05:44 -0800923 unsigned long flags;
John Stultz304529b2011-04-01 14:32:09 -0700924
Feng Tang31ade302013-01-16 00:09:47 +0800925 /*
926 * Make sure we don't set the clock twice, as timekeeping_resume()
927 * already did it
928 */
929 if (has_persistent_clock())
John Stultz304529b2011-04-01 14:32:09 -0700930 return;
931
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000932 raw_spin_lock_irqsave(&timekeeper_lock, flags);
933 write_seqcount_begin(&timekeeper_seq);
John Stultz70471f22011-11-14 12:48:10 -0800934
John Stultz4e250fd2012-07-27 14:48:13 -0400935 timekeeping_forward_now(tk);
John Stultz304529b2011-04-01 14:32:09 -0700936
John Stultz7d489d12014-07-16 21:04:01 +0000937 tmp = timespec_to_timespec64(*delta);
938 __timekeeping_inject_sleeptime(tk, &tmp);
John Stultz304529b2011-04-01 14:32:09 -0700939
David Vrabel780427f2013-06-27 11:35:46 +0100940 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultz304529b2011-04-01 14:32:09 -0700941
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000942 write_seqcount_end(&timekeeper_seq);
943 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz304529b2011-04-01 14:32:09 -0700944
945 /* signal hrtimers about time change */
946 clock_was_set();
947}
948
John Stultz304529b2011-04-01 14:32:09 -0700949/**
john stultz85240702007-05-08 00:27:59 -0700950 * timekeeping_resume - Resumes the generic timekeeping subsystem.
john stultz85240702007-05-08 00:27:59 -0700951 *
952 * This is for the generic clocksource timekeeping.
953 * xtime/wall_to_monotonic/jiffies/etc are
954 * still managed by arch specific suspend/resume code.
955 */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100956static void timekeeping_resume(void)
john stultz85240702007-05-08 00:27:59 -0700957{
John Stultz4e250fd2012-07-27 14:48:13 -0400958 struct timekeeper *tk = &timekeeper;
Feng Tange445cf12013-03-12 11:56:48 +0800959 struct clocksource *clock = tk->clock;
John Stultz92c1d3e2011-11-14 14:05:44 -0800960 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +0000961 struct timespec64 ts_new, ts_delta;
962 struct timespec tmp;
Feng Tange445cf12013-03-12 11:56:48 +0800963 cycle_t cycle_now, cycle_delta;
964 bool suspendtime_found = false;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200965
John Stultz7d489d12014-07-16 21:04:01 +0000966 read_persistent_clock(&tmp);
967 ts_new = timespec_to_timespec64(tmp);
john stultz85240702007-05-08 00:27:59 -0700968
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +0200969 clockevents_resume();
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +0200970 clocksource_resume();
971
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000972 raw_spin_lock_irqsave(&timekeeper_lock, flags);
973 write_seqcount_begin(&timekeeper_seq);
john stultz85240702007-05-08 00:27:59 -0700974
Feng Tange445cf12013-03-12 11:56:48 +0800975 /*
976 * After system resumes, we need to calculate the suspended time and
977 * compensate it for the OS time. There are 3 sources that could be
978 * used: Nonstop clocksource during suspend, persistent clock and rtc
979 * device.
980 *
981 * One specific platform may have 1 or 2 or all of them, and the
982 * preference will be:
983 * suspend-nonstop clocksource -> persistent clock -> rtc
984 * The less preferred source will only be tried if there is no better
985 * usable source. The rtc part is handled separately in rtc core code.
986 */
987 cycle_now = clock->read(clock);
988 if ((clock->flags & CLOCK_SOURCE_SUSPEND_NONSTOP) &&
989 cycle_now > clock->cycle_last) {
990 u64 num, max = ULLONG_MAX;
991 u32 mult = clock->mult;
992 u32 shift = clock->shift;
993 s64 nsec = 0;
994
995 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
996
997 /*
998 * "cycle_delta * mutl" may cause 64 bits overflow, if the
999 * suspended time is too long. In that case we need do the
1000 * 64 bits math carefully
1001 */
1002 do_div(max, mult);
1003 if (cycle_delta > max) {
1004 num = div64_u64(cycle_delta, max);
1005 nsec = (((u64) max * mult) >> shift) * num;
1006 cycle_delta -= num * max;
1007 }
1008 nsec += ((u64) cycle_delta * mult) >> shift;
1009
John Stultz7d489d12014-07-16 21:04:01 +00001010 ts_delta = ns_to_timespec64(nsec);
Feng Tange445cf12013-03-12 11:56:48 +08001011 suspendtime_found = true;
John Stultz7d489d12014-07-16 21:04:01 +00001012 } else if (timespec64_compare(&ts_new, &timekeeping_suspend_time) > 0) {
1013 ts_delta = timespec64_sub(ts_new, timekeeping_suspend_time);
Feng Tange445cf12013-03-12 11:56:48 +08001014 suspendtime_found = true;
john stultz85240702007-05-08 00:27:59 -07001015 }
Feng Tange445cf12013-03-12 11:56:48 +08001016
1017 if (suspendtime_found)
1018 __timekeeping_inject_sleeptime(tk, &ts_delta);
1019
1020 /* Re-base the last cycle value */
Thomas Gleixner77c675b2013-04-22 09:37:04 +02001021 tk->cycle_last = clock->cycle_last = cycle_now;
John Stultz4e250fd2012-07-27 14:48:13 -04001022 tk->ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -07001023 timekeeping_suspended = 0;
David Vrabel780427f2013-06-27 11:35:46 +01001024 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001025 write_seqcount_end(&timekeeper_seq);
1026 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001027
1028 touch_softlockup_watchdog();
1029
1030 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
1031
1032 /* Resume hrtimers */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +02001033 hrtimers_resume();
john stultz85240702007-05-08 00:27:59 -07001034}
1035
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001036static int timekeeping_suspend(void)
john stultz85240702007-05-08 00:27:59 -07001037{
John Stultz4e250fd2012-07-27 14:48:13 -04001038 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -08001039 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +00001040 struct timespec64 delta, delta_delta;
1041 static struct timespec64 old_delta;
1042 struct timespec tmp;
john stultz85240702007-05-08 00:27:59 -07001043
John Stultz7d489d12014-07-16 21:04:01 +00001044 read_persistent_clock(&tmp);
1045 timekeeping_suspend_time = timespec_to_timespec64(tmp);
Thomas Gleixner3be90952007-09-16 15:36:43 +02001046
Zoran Markovic0d6bd992013-05-17 11:24:05 -07001047 /*
1048 * On some systems the persistent_clock can not be detected at
1049 * timekeeping_init by its return value, so if we see a valid
1050 * value returned, update the persistent_clock_exists flag.
1051 */
1052 if (timekeeping_suspend_time.tv_sec || timekeeping_suspend_time.tv_nsec)
1053 persistent_clock_exist = true;
1054
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001055 raw_spin_lock_irqsave(&timekeeper_lock, flags);
1056 write_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -04001057 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -07001058 timekeeping_suspended = 1;
John Stultzcb332172011-05-31 22:53:23 -07001059
1060 /*
1061 * To avoid drift caused by repeated suspend/resumes,
1062 * which each can add ~1 second drift error,
1063 * try to compensate so the difference in system time
1064 * and persistent_clock time stays close to constant.
1065 */
John Stultz7d489d12014-07-16 21:04:01 +00001066 delta = timespec64_sub(tk_xtime(tk), timekeeping_suspend_time);
1067 delta_delta = timespec64_sub(delta, old_delta);
John Stultzcb332172011-05-31 22:53:23 -07001068 if (abs(delta_delta.tv_sec) >= 2) {
1069 /*
1070 * if delta_delta is too large, assume time correction
1071 * has occured and set old_delta to the current delta.
1072 */
1073 old_delta = delta;
1074 } else {
1075 /* Otherwise try to adjust old_system to compensate */
1076 timekeeping_suspend_time =
John Stultz7d489d12014-07-16 21:04:01 +00001077 timespec64_add(timekeeping_suspend_time, delta_delta);
John Stultzcb332172011-05-31 22:53:23 -07001078 }
John Stultz330a1612013-12-11 19:10:36 -08001079
1080 timekeeping_update(tk, TK_MIRROR);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001081 write_seqcount_end(&timekeeper_seq);
1082 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001083
1084 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
Magnus Dammc54a42b2010-02-02 14:41:41 -08001085 clocksource_suspend();
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +02001086 clockevents_suspend();
john stultz85240702007-05-08 00:27:59 -07001087
1088 return 0;
1089}
1090
1091/* sysfs resume/suspend bits for timekeeping */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001092static struct syscore_ops timekeeping_syscore_ops = {
john stultz85240702007-05-08 00:27:59 -07001093 .resume = timekeeping_resume,
1094 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -07001095};
1096
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001097static int __init timekeeping_init_ops(void)
john stultz85240702007-05-08 00:27:59 -07001098{
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001099 register_syscore_ops(&timekeeping_syscore_ops);
1100 return 0;
john stultz85240702007-05-08 00:27:59 -07001101}
1102
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001103device_initcall(timekeeping_init_ops);
john stultz85240702007-05-08 00:27:59 -07001104
1105/*
1106 * If the error is already larger, we look ahead even further
1107 * to compensate for late or lost adjustments.
1108 */
John Stultzf726a692012-07-13 01:21:57 -04001109static __always_inline int timekeeping_bigadjust(struct timekeeper *tk,
1110 s64 error, s64 *interval,
john stultz85240702007-05-08 00:27:59 -07001111 s64 *offset)
1112{
1113 s64 tick_error, i;
1114 u32 look_ahead, adj;
1115 s32 error2, mult;
1116
1117 /*
1118 * Use the current error value to determine how much to look ahead.
1119 * The larger the error the slower we adjust for it to avoid problems
1120 * with losing too many ticks, otherwise we would overadjust and
1121 * produce an even larger error. The smaller the adjustment the
1122 * faster we try to adjust for it, as lost ticks can do less harm
Li Zefan3eb05672008-02-08 04:19:25 -08001123 * here. This is tuned so that an error of about 1 msec is adjusted
john stultz85240702007-05-08 00:27:59 -07001124 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
1125 */
John Stultzf726a692012-07-13 01:21:57 -04001126 error2 = tk->ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
john stultz85240702007-05-08 00:27:59 -07001127 error2 = abs(error2);
1128 for (look_ahead = 0; error2 > 0; look_ahead++)
1129 error2 >>= 2;
1130
1131 /*
1132 * Now calculate the error in (1 << look_ahead) ticks, but first
1133 * remove the single look ahead already included in the error.
1134 */
John Stultzf726a692012-07-13 01:21:57 -04001135 tick_error = ntp_tick_length() >> (tk->ntp_error_shift + 1);
1136 tick_error -= tk->xtime_interval >> 1;
john stultz85240702007-05-08 00:27:59 -07001137 error = ((error - tick_error) >> look_ahead) + tick_error;
1138
1139 /* Finally calculate the adjustment shift value. */
1140 i = *interval;
1141 mult = 1;
1142 if (error < 0) {
1143 error = -error;
1144 *interval = -*interval;
1145 *offset = -*offset;
1146 mult = -1;
1147 }
1148 for (adj = 0; error > i; adj++)
1149 error >>= 1;
1150
1151 *interval <<= adj;
1152 *offset <<= adj;
1153 return mult << adj;
1154}
1155
1156/*
1157 * Adjust the multiplier to reduce the error value,
1158 * this is optimized for the most common adjustments of -1,0,1,
1159 * for other values we can do a bit more work.
1160 */
John Stultzf726a692012-07-13 01:21:57 -04001161static void timekeeping_adjust(struct timekeeper *tk, s64 offset)
john stultz85240702007-05-08 00:27:59 -07001162{
John Stultzf726a692012-07-13 01:21:57 -04001163 s64 error, interval = tk->cycle_interval;
john stultz85240702007-05-08 00:27:59 -07001164 int adj;
1165
John Stultzc2bc1112011-10-27 18:12:42 -07001166 /*
Jim Cromie88b28ad2012-03-14 21:28:56 -06001167 * The point of this is to check if the error is greater than half
John Stultzc2bc1112011-10-27 18:12:42 -07001168 * an interval.
1169 *
1170 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
1171 *
1172 * Note we subtract one in the shift, so that error is really error*2.
John Stultz3f86f282011-10-27 17:41:17 -07001173 * This "saves" dividing(shifting) interval twice, but keeps the
1174 * (error > interval) comparison as still measuring if error is
Jim Cromie88b28ad2012-03-14 21:28:56 -06001175 * larger than half an interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001176 *
John Stultz3f86f282011-10-27 17:41:17 -07001177 * Note: It does not "save" on aggravation when reading the code.
John Stultzc2bc1112011-10-27 18:12:42 -07001178 */
John Stultzf726a692012-07-13 01:21:57 -04001179 error = tk->ntp_error >> (tk->ntp_error_shift - 1);
john stultz85240702007-05-08 00:27:59 -07001180 if (error > interval) {
John Stultzc2bc1112011-10-27 18:12:42 -07001181 /*
1182 * We now divide error by 4(via shift), which checks if
Jim Cromie88b28ad2012-03-14 21:28:56 -06001183 * the error is greater than twice the interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001184 * If it is greater, we need a bigadjust, if its smaller,
1185 * we can adjust by 1.
1186 */
john stultz85240702007-05-08 00:27:59 -07001187 error >>= 2;
1188 if (likely(error <= interval))
1189 adj = 1;
1190 else
Ingo Molnar1d17d172012-08-04 21:21:14 +02001191 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1192 } else {
1193 if (error < -interval) {
1194 /* See comment above, this is just switched for the negative */
1195 error >>= 2;
1196 if (likely(error >= -interval)) {
1197 adj = -1;
1198 interval = -interval;
1199 offset = -offset;
1200 } else {
1201 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1202 }
1203 } else {
1204 goto out_adjust;
1205 }
1206 }
john stultz85240702007-05-08 00:27:59 -07001207
John Stultzf726a692012-07-13 01:21:57 -04001208 if (unlikely(tk->clock->maxadj &&
1209 (tk->mult + adj > tk->clock->mult + tk->clock->maxadj))) {
John Stultz6d9bcb62014-06-04 16:11:43 -07001210 printk_deferred_once(KERN_WARNING
John Stultze919cfd2012-03-22 19:14:46 -07001211 "Adjusting %s more than 11%% (%ld vs %ld)\n",
John Stultzf726a692012-07-13 01:21:57 -04001212 tk->clock->name, (long)tk->mult + adj,
1213 (long)tk->clock->mult + tk->clock->maxadj);
John Stultze919cfd2012-03-22 19:14:46 -07001214 }
John Stultzc2bc1112011-10-27 18:12:42 -07001215 /*
1216 * So the following can be confusing.
1217 *
1218 * To keep things simple, lets assume adj == 1 for now.
1219 *
1220 * When adj != 1, remember that the interval and offset values
1221 * have been appropriately scaled so the math is the same.
1222 *
1223 * The basic idea here is that we're increasing the multiplier
1224 * by one, this causes the xtime_interval to be incremented by
1225 * one cycle_interval. This is because:
1226 * xtime_interval = cycle_interval * mult
1227 * So if mult is being incremented by one:
1228 * xtime_interval = cycle_interval * (mult + 1)
1229 * Its the same as:
1230 * xtime_interval = (cycle_interval * mult) + cycle_interval
1231 * Which can be shortened to:
1232 * xtime_interval += cycle_interval
1233 *
1234 * So offset stores the non-accumulated cycles. Thus the current
1235 * time (in shifted nanoseconds) is:
1236 * now = (offset * adj) + xtime_nsec
1237 * Now, even though we're adjusting the clock frequency, we have
1238 * to keep time consistent. In other words, we can't jump back
1239 * in time, and we also want to avoid jumping forward in time.
1240 *
1241 * So given the same offset value, we need the time to be the same
1242 * both before and after the freq adjustment.
1243 * now = (offset * adj_1) + xtime_nsec_1
1244 * now = (offset * adj_2) + xtime_nsec_2
1245 * So:
1246 * (offset * adj_1) + xtime_nsec_1 =
1247 * (offset * adj_2) + xtime_nsec_2
1248 * And we know:
1249 * adj_2 = adj_1 + 1
1250 * So:
1251 * (offset * adj_1) + xtime_nsec_1 =
1252 * (offset * (adj_1+1)) + xtime_nsec_2
1253 * (offset * adj_1) + xtime_nsec_1 =
1254 * (offset * adj_1) + offset + xtime_nsec_2
1255 * Canceling the sides:
1256 * xtime_nsec_1 = offset + xtime_nsec_2
1257 * Which gives us:
1258 * xtime_nsec_2 = xtime_nsec_1 - offset
1259 * Which simplfies to:
1260 * xtime_nsec -= offset
1261 *
1262 * XXX - TODO: Doc ntp_error calculation.
1263 */
John Stultzf726a692012-07-13 01:21:57 -04001264 tk->mult += adj;
1265 tk->xtime_interval += interval;
1266 tk->xtime_nsec -= offset;
1267 tk->ntp_error -= (interval - offset) << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001268
Ingo Molnar1d17d172012-08-04 21:21:14 +02001269out_adjust:
John Stultz2a8c0882012-07-13 01:21:56 -04001270 /*
1271 * It may be possible that when we entered this function, xtime_nsec
1272 * was very small. Further, if we're slightly speeding the clocksource
1273 * in the code above, its possible the required corrective factor to
1274 * xtime_nsec could cause it to underflow.
1275 *
1276 * Now, since we already accumulated the second, cannot simply roll
1277 * the accumulated second back, since the NTP subsystem has been
1278 * notified via second_overflow. So instead we push xtime_nsec forward
1279 * by the amount we underflowed, and add that amount into the error.
1280 *
1281 * We'll correct this error next time through this function, when
1282 * xtime_nsec is not as small.
1283 */
John Stultzf726a692012-07-13 01:21:57 -04001284 if (unlikely((s64)tk->xtime_nsec < 0)) {
1285 s64 neg = -(s64)tk->xtime_nsec;
1286 tk->xtime_nsec = 0;
1287 tk->ntp_error += neg << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001288 }
1289
john stultz85240702007-05-08 00:27:59 -07001290}
1291
1292/**
John Stultz1f4f9482012-07-13 01:21:54 -04001293 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
1294 *
1295 * Helper function that accumulates a the nsecs greater then a second
1296 * from the xtime_nsec field to the xtime_secs field.
1297 * It also calls into the NTP code to handle leapsecond processing.
1298 *
1299 */
David Vrabel780427f2013-06-27 11:35:46 +01001300static inline unsigned int accumulate_nsecs_to_secs(struct timekeeper *tk)
John Stultz1f4f9482012-07-13 01:21:54 -04001301{
1302 u64 nsecps = (u64)NSEC_PER_SEC << tk->shift;
John Stultz5258d3f2013-12-11 20:07:49 -08001303 unsigned int clock_set = 0;
John Stultz1f4f9482012-07-13 01:21:54 -04001304
1305 while (tk->xtime_nsec >= nsecps) {
1306 int leap;
1307
1308 tk->xtime_nsec -= nsecps;
1309 tk->xtime_sec++;
1310
1311 /* Figure out if its a leap sec and apply if needed */
1312 leap = second_overflow(tk->xtime_sec);
John Stultz6d0ef902012-07-27 14:48:12 -04001313 if (unlikely(leap)) {
John Stultz7d489d12014-07-16 21:04:01 +00001314 struct timespec64 ts;
John Stultz1f4f9482012-07-13 01:21:54 -04001315
John Stultz6d0ef902012-07-27 14:48:12 -04001316 tk->xtime_sec += leap;
1317
1318 ts.tv_sec = leap;
1319 ts.tv_nsec = 0;
1320 tk_set_wall_to_mono(tk,
John Stultz7d489d12014-07-16 21:04:01 +00001321 timespec64_sub(tk->wall_to_monotonic, ts));
John Stultz6d0ef902012-07-27 14:48:12 -04001322
John Stultzcc244dd2012-05-03 12:30:07 -07001323 __timekeeping_set_tai_offset(tk, tk->tai_offset - leap);
1324
John Stultz5258d3f2013-12-11 20:07:49 -08001325 clock_set = TK_CLOCK_WAS_SET;
John Stultz6d0ef902012-07-27 14:48:12 -04001326 }
John Stultz1f4f9482012-07-13 01:21:54 -04001327 }
John Stultz5258d3f2013-12-11 20:07:49 -08001328 return clock_set;
John Stultz1f4f9482012-07-13 01:21:54 -04001329}
1330
John Stultz1f4f9482012-07-13 01:21:54 -04001331/**
john stultza092ff02009-10-02 16:17:53 -07001332 * logarithmic_accumulation - shifted accumulation of cycles
1333 *
1334 * This functions accumulates a shifted interval of cycles into
1335 * into a shifted interval nanoseconds. Allows for O(log) accumulation
1336 * loop.
1337 *
1338 * Returns the unconsumed cycles.
1339 */
John Stultzf726a692012-07-13 01:21:57 -04001340static cycle_t logarithmic_accumulation(struct timekeeper *tk, cycle_t offset,
John Stultz5258d3f2013-12-11 20:07:49 -08001341 u32 shift,
1342 unsigned int *clock_set)
john stultza092ff02009-10-02 16:17:53 -07001343{
Thomas Gleixner23a95372013-02-21 22:51:36 +00001344 cycle_t interval = tk->cycle_interval << shift;
Jason Wesseldeda2e82010-08-09 14:20:09 -07001345 u64 raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001346
John Stultzf726a692012-07-13 01:21:57 -04001347 /* If the offset is smaller then a shifted interval, do nothing */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001348 if (offset < interval)
john stultza092ff02009-10-02 16:17:53 -07001349 return offset;
1350
1351 /* Accumulate one shifted interval */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001352 offset -= interval;
Thomas Gleixner7ec98e12013-02-21 22:51:39 +00001353 tk->cycle_last += interval;
john stultza092ff02009-10-02 16:17:53 -07001354
John Stultzf726a692012-07-13 01:21:57 -04001355 tk->xtime_nsec += tk->xtime_interval << shift;
John Stultz5258d3f2013-12-11 20:07:49 -08001356 *clock_set |= accumulate_nsecs_to_secs(tk);
john stultza092ff02009-10-02 16:17:53 -07001357
Jason Wesseldeda2e82010-08-09 14:20:09 -07001358 /* Accumulate raw time */
Dan Carpenter5b3900c2012-10-09 10:18:23 +03001359 raw_nsecs = (u64)tk->raw_interval << shift;
John Stultzf726a692012-07-13 01:21:57 -04001360 raw_nsecs += tk->raw_time.tv_nsec;
John Stultzc7dcf872010-08-13 11:30:58 -07001361 if (raw_nsecs >= NSEC_PER_SEC) {
1362 u64 raw_secs = raw_nsecs;
1363 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
John Stultzf726a692012-07-13 01:21:57 -04001364 tk->raw_time.tv_sec += raw_secs;
john stultza092ff02009-10-02 16:17:53 -07001365 }
John Stultzf726a692012-07-13 01:21:57 -04001366 tk->raw_time.tv_nsec = raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001367
1368 /* Accumulate error between NTP and clock interval */
John Stultzf726a692012-07-13 01:21:57 -04001369 tk->ntp_error += ntp_tick_length() << shift;
1370 tk->ntp_error -= (tk->xtime_interval + tk->xtime_remainder) <<
1371 (tk->ntp_error_shift + shift);
john stultza092ff02009-10-02 16:17:53 -07001372
1373 return offset;
1374}
1375
john stultz85240702007-05-08 00:27:59 -07001376/**
1377 * update_wall_time - Uses the current clocksource to increment the wall time
1378 *
john stultz85240702007-05-08 00:27:59 -07001379 */
John Stultz47a1b7962013-12-12 13:10:55 -08001380void update_wall_time(void)
john stultz85240702007-05-08 00:27:59 -07001381{
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001382 struct clocksource *clock;
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001383 struct timekeeper *real_tk = &timekeeper;
1384 struct timekeeper *tk = &shadow_timekeeper;
john stultz85240702007-05-08 00:27:59 -07001385 cycle_t offset;
john stultza092ff02009-10-02 16:17:53 -07001386 int shift = 0, maxshift;
John Stultz5258d3f2013-12-11 20:07:49 -08001387 unsigned int clock_set = 0;
John Stultz70471f22011-11-14 12:48:10 -08001388 unsigned long flags;
1389
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001390 raw_spin_lock_irqsave(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001391
1392 /* Make sure we're fully resumed: */
1393 if (unlikely(timekeeping_suspended))
John Stultz70471f22011-11-14 12:48:10 -08001394 goto out;
john stultz85240702007-05-08 00:27:59 -07001395
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001396 clock = real_tk->clock;
John Stultz592913e2010-07-13 17:56:20 -07001397
1398#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001399 offset = real_tk->cycle_interval;
John Stultz592913e2010-07-13 17:56:20 -07001400#else
1401 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
john stultz85240702007-05-08 00:27:59 -07001402#endif
john stultz85240702007-05-08 00:27:59 -07001403
John Stultzbf2ac312012-08-21 20:30:49 -04001404 /* Check if there's really nothing to do */
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001405 if (offset < real_tk->cycle_interval)
John Stultzbf2ac312012-08-21 20:30:49 -04001406 goto out;
1407
john stultza092ff02009-10-02 16:17:53 -07001408 /*
1409 * With NO_HZ we may have to accumulate many cycle_intervals
1410 * (think "ticks") worth of time at once. To do this efficiently,
1411 * we calculate the largest doubling multiple of cycle_intervals
Jim Cromie88b28ad2012-03-14 21:28:56 -06001412 * that is smaller than the offset. We then accumulate that
john stultza092ff02009-10-02 16:17:53 -07001413 * chunk in one go, and then try to consume the next smaller
1414 * doubled multiple.
john stultz85240702007-05-08 00:27:59 -07001415 */
John Stultz4e250fd2012-07-27 14:48:13 -04001416 shift = ilog2(offset) - ilog2(tk->cycle_interval);
john stultza092ff02009-10-02 16:17:53 -07001417 shift = max(0, shift);
Jim Cromie88b28ad2012-03-14 21:28:56 -06001418 /* Bound shift to one less than what overflows tick_length */
John Stultzea7cf492011-11-14 13:18:07 -08001419 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
john stultza092ff02009-10-02 16:17:53 -07001420 shift = min(shift, maxshift);
John Stultz4e250fd2012-07-27 14:48:13 -04001421 while (offset >= tk->cycle_interval) {
John Stultz5258d3f2013-12-11 20:07:49 -08001422 offset = logarithmic_accumulation(tk, offset, shift,
1423 &clock_set);
John Stultz4e250fd2012-07-27 14:48:13 -04001424 if (offset < tk->cycle_interval<<shift)
John Stultz830ec042010-03-18 14:47:30 -07001425 shift--;
john stultz85240702007-05-08 00:27:59 -07001426 }
1427
1428 /* correct the clock when NTP error is too big */
John Stultz4e250fd2012-07-27 14:48:13 -04001429 timekeeping_adjust(tk, offset);
john stultz85240702007-05-08 00:27:59 -07001430
John Stultz6a867a32010-04-06 14:30:51 -07001431 /*
John Stultz92bb1fc2012-09-04 15:38:12 -04001432 * XXX This can be killed once everyone converts
1433 * to the new update_vsyscall.
1434 */
1435 old_vsyscall_fixup(tk);
john stultz85240702007-05-08 00:27:59 -07001436
John Stultz6a867a32010-04-06 14:30:51 -07001437 /*
1438 * Finally, make sure that after the rounding
John Stultz1e75fa82012-07-13 01:21:53 -04001439 * xtime_nsec isn't larger than NSEC_PER_SEC
John Stultz6a867a32010-04-06 14:30:51 -07001440 */
John Stultz5258d3f2013-12-11 20:07:49 -08001441 clock_set |= accumulate_nsecs_to_secs(tk);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001442
Thomas Gleixnerca4523c2013-02-21 22:51:40 +00001443 write_seqcount_begin(&timekeeper_seq);
Thomas Gleixner7ec98e12013-02-21 22:51:39 +00001444 /* Update clock->cycle_last with the new value */
1445 clock->cycle_last = tk->cycle_last;
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001446 /*
1447 * Update the real timekeeper.
1448 *
1449 * We could avoid this memcpy by switching pointers, but that
1450 * requires changes to all other timekeeper usage sites as
1451 * well, i.e. move the timekeeper pointer getter into the
1452 * spinlocked/seqcount protected sections. And we trade this
1453 * memcpy under the timekeeper_seq against one before we start
1454 * updating.
1455 */
1456 memcpy(real_tk, tk, sizeof(*tk));
John Stultz5258d3f2013-12-11 20:07:49 -08001457 timekeeping_update(real_tk, clock_set);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001458 write_seqcount_end(&timekeeper_seq);
Thomas Gleixnerca4523c2013-02-21 22:51:40 +00001459out:
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001460 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz47a1b7962013-12-12 13:10:55 -08001461 if (clock_set)
John Stultzcab5e122014-03-27 16:30:49 -07001462 /* Have to call _delayed version, since in irq context*/
1463 clock_was_set_delayed();
john stultz85240702007-05-08 00:27:59 -07001464}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001465
1466/**
1467 * getboottime - Return the real time of system boot.
1468 * @ts: pointer to the timespec to be set
1469 *
John Stultzabb3a4e2011-02-14 17:52:09 -08001470 * Returns the wall-time of boot in a timespec.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001471 *
1472 * This is based on the wall_to_monotonic offset and the total suspend
1473 * time. Calls to settimeofday will affect the value returned (which
1474 * basically means that however wrong your real time clock is at boot time,
1475 * you get the right time here).
1476 */
1477void getboottime(struct timespec *ts)
1478{
John Stultz4e250fd2012-07-27 14:48:13 -04001479 struct timekeeper *tk = &timekeeper;
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001480 struct timespec boottime = {
John Stultz4e250fd2012-07-27 14:48:13 -04001481 .tv_sec = tk->wall_to_monotonic.tv_sec +
1482 tk->total_sleep_time.tv_sec,
1483 .tv_nsec = tk->wall_to_monotonic.tv_nsec +
1484 tk->total_sleep_time.tv_nsec
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001485 };
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001486
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001487 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001488}
Jason Wangc93d89f2010-01-27 19:13:40 +08001489EXPORT_SYMBOL_GPL(getboottime);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001490
John Stultzabb3a4e2011-02-14 17:52:09 -08001491/**
1492 * get_monotonic_boottime - Returns monotonic time since boot
1493 * @ts: pointer to the timespec to be set
1494 *
1495 * Returns the monotonic time since boot in a timespec.
1496 *
1497 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1498 * includes the time spent in suspend.
1499 */
1500void get_monotonic_boottime(struct timespec *ts)
1501{
John Stultz4e250fd2012-07-27 14:48:13 -04001502 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001503 struct timespec64 tomono, sleep, ret;
John Stultzec145ba2012-09-11 19:26:03 -04001504 s64 nsec;
John Stultzabb3a4e2011-02-14 17:52:09 -08001505 unsigned int seq;
John Stultzabb3a4e2011-02-14 17:52:09 -08001506
1507 WARN_ON(timekeeping_suspended);
1508
1509 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001510 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz7d489d12014-07-16 21:04:01 +00001511 ret.tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -04001512 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -04001513 tomono = tk->wall_to_monotonic;
1514 sleep = tk->total_sleep_time;
John Stultzabb3a4e2011-02-14 17:52:09 -08001515
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001516 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultzabb3a4e2011-02-14 17:52:09 -08001517
John Stultz7d489d12014-07-16 21:04:01 +00001518 ret.tv_sec += tomono.tv_sec + sleep.tv_sec;
1519 ret.tv_nsec = 0;
1520 timespec64_add_ns(&ret, nsec + tomono.tv_nsec + sleep.tv_nsec);
1521 *ts = timespec64_to_timespec(ret);
John Stultzabb3a4e2011-02-14 17:52:09 -08001522}
1523EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1524
1525/**
1526 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1527 *
1528 * Returns the monotonic time since boot in a ktime
1529 *
1530 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1531 * includes the time spent in suspend.
1532 */
1533ktime_t ktime_get_boottime(void)
1534{
1535 struct timespec ts;
1536
1537 get_monotonic_boottime(&ts);
1538 return timespec_to_ktime(ts);
1539}
1540EXPORT_SYMBOL_GPL(ktime_get_boottime);
1541
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001542/**
1543 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1544 * @ts: pointer to the timespec to be converted
1545 */
1546void monotonic_to_bootbased(struct timespec *ts)
1547{
John Stultz4e250fd2012-07-27 14:48:13 -04001548 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001549 struct timespec64 ts64;
John Stultz4e250fd2012-07-27 14:48:13 -04001550
John Stultz7d489d12014-07-16 21:04:01 +00001551 ts64 = timespec_to_timespec64(*ts);
1552 ts64 = timespec64_add(ts64, tk->total_sleep_time);
1553 *ts = timespec64_to_timespec(ts64);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001554}
Jason Wangc93d89f2010-01-27 19:13:40 +08001555EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
john stultz2c6b47d2007-07-24 17:47:43 -07001556
john stultz17c38b72007-07-24 18:38:34 -07001557unsigned long get_seconds(void)
1558{
John Stultz4e250fd2012-07-27 14:48:13 -04001559 struct timekeeper *tk = &timekeeper;
1560
1561 return tk->xtime_sec;
john stultz17c38b72007-07-24 18:38:34 -07001562}
1563EXPORT_SYMBOL(get_seconds);
1564
john stultzda15cfd2009-08-19 19:13:34 -07001565struct timespec __current_kernel_time(void)
1566{
John Stultz4e250fd2012-07-27 14:48:13 -04001567 struct timekeeper *tk = &timekeeper;
1568
John Stultz7d489d12014-07-16 21:04:01 +00001569 return timespec64_to_timespec(tk_xtime(tk));
john stultzda15cfd2009-08-19 19:13:34 -07001570}
john stultz17c38b72007-07-24 18:38:34 -07001571
john stultz2c6b47d2007-07-24 17:47:43 -07001572struct timespec current_kernel_time(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;
john stultz2c6b47d2007-07-24 17:47:43 -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);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001582 } while (read_seqcount_retry(&timekeeper_seq, seq));
john stultz2c6b47d2007-07-24 17:47:43 -07001583
John Stultz7d489d12014-07-16 21:04:01 +00001584 return timespec64_to_timespec(now);
john stultz2c6b47d2007-07-24 17:47:43 -07001585}
john stultz2c6b47d2007-07-24 17:47:43 -07001586EXPORT_SYMBOL(current_kernel_time);
john stultzda15cfd2009-08-19 19:13:34 -07001587
1588struct timespec get_monotonic_coarse(void)
1589{
John Stultz4e250fd2012-07-27 14:48:13 -04001590 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001591 struct timespec64 now, mono;
john stultzda15cfd2009-08-19 19:13:34 -07001592 unsigned long seq;
1593
1594 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001595 seq = read_seqcount_begin(&timekeeper_seq);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001596
John Stultz4e250fd2012-07-27 14:48:13 -04001597 now = tk_xtime(tk);
1598 mono = tk->wall_to_monotonic;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001599 } while (read_seqcount_retry(&timekeeper_seq, seq));
john stultzda15cfd2009-08-19 19:13:34 -07001600
John Stultz7d489d12014-07-16 21:04:01 +00001601 set_normalized_timespec64(&now, now.tv_sec + mono.tv_sec,
john stultzda15cfd2009-08-19 19:13:34 -07001602 now.tv_nsec + mono.tv_nsec);
John Stultz7d489d12014-07-16 21:04:01 +00001603
1604 return timespec64_to_timespec(now);
john stultzda15cfd2009-08-19 19:13:34 -07001605}
Torben Hohn871cf1e2011-01-27 15:58:55 +01001606
1607/*
John Stultzd6ad4182012-02-28 16:50:11 -08001608 * Must hold jiffies_lock
Torben Hohn871cf1e2011-01-27 15:58:55 +01001609 */
1610void do_timer(unsigned long ticks)
1611{
1612 jiffies_64 += ticks;
Torben Hohn871cf1e2011-01-27 15:58:55 +01001613 calc_global_load(ticks);
1614}
Torben Hohn48cf76f72011-01-27 15:59:05 +01001615
1616/**
John Stultz76f41082014-07-16 21:03:52 +00001617 * ktime_get_update_offsets_tick - hrtimer helper
1618 * @offs_real: pointer to storage for monotonic -> realtime offset
1619 * @offs_boot: pointer to storage for monotonic -> boottime offset
1620 * @offs_tai: pointer to storage for monotonic -> clock tai offset
1621 *
1622 * Returns monotonic time at last tick and various offsets
Torben Hohn48cf76f72011-01-27 15:59:05 +01001623 */
John Stultz76f41082014-07-16 21:03:52 +00001624ktime_t ktime_get_update_offsets_tick(ktime_t *offs_real, ktime_t *offs_boot,
1625 ktime_t *offs_tai)
Torben Hohn48cf76f72011-01-27 15:59:05 +01001626{
John Stultz4e250fd2012-07-27 14:48:13 -04001627 struct timekeeper *tk = &timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001628 struct timespec64 ts;
John Stultz76f41082014-07-16 21:03:52 +00001629 ktime_t now;
1630 unsigned int seq;
Torben Hohn48cf76f72011-01-27 15:59:05 +01001631
1632 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001633 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz76f41082014-07-16 21:03:52 +00001634
1635 ts = tk_xtime(tk);
John Stultz76f41082014-07-16 21:03:52 +00001636 *offs_real = tk->offs_real;
1637 *offs_boot = tk->offs_boot;
1638 *offs_tai = tk->offs_tai;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001639 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz76f41082014-07-16 21:03:52 +00001640
1641 now = ktime_set(ts.tv_sec, ts.tv_nsec);
1642 now = ktime_sub(now, *offs_real);
1643 return now;
Torben Hohn48cf76f72011-01-27 15:59:05 +01001644}
Torben Hohnf0af911a92011-01-27 15:59:10 +01001645
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001646#ifdef CONFIG_HIGH_RES_TIMERS
1647/**
John Stultz76f41082014-07-16 21:03:52 +00001648 * ktime_get_update_offsets_now - hrtimer helper
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001649 * @offs_real: pointer to storage for monotonic -> realtime offset
1650 * @offs_boot: pointer to storage for monotonic -> boottime offset
Xie XiuQib7bc50e2013-10-18 09:13:30 +08001651 * @offs_tai: pointer to storage for monotonic -> clock tai offset
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001652 *
1653 * Returns current monotonic time and updates the offsets
Xie XiuQib7bc50e2013-10-18 09:13:30 +08001654 * Called from hrtimer_interrupt() or retrigger_next_event()
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001655 */
John Stultz76f41082014-07-16 21:03:52 +00001656ktime_t ktime_get_update_offsets_now(ktime_t *offs_real, ktime_t *offs_boot,
John Stultz90adda92013-01-21 17:00:11 -08001657 ktime_t *offs_tai)
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001658{
John Stultz4e250fd2012-07-27 14:48:13 -04001659 struct timekeeper *tk = &timekeeper;
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001660 ktime_t now;
1661 unsigned int seq;
1662 u64 secs, nsecs;
1663
1664 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001665 seq = read_seqcount_begin(&timekeeper_seq);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001666
John Stultz4e250fd2012-07-27 14:48:13 -04001667 secs = tk->xtime_sec;
1668 nsecs = timekeeping_get_ns(tk);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001669
John Stultz4e250fd2012-07-27 14:48:13 -04001670 *offs_real = tk->offs_real;
1671 *offs_boot = tk->offs_boot;
John Stultz90adda92013-01-21 17:00:11 -08001672 *offs_tai = tk->offs_tai;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001673 } while (read_seqcount_retry(&timekeeper_seq, seq));
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001674
1675 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1676 now = ktime_sub(now, *offs_real);
1677 return now;
1678}
1679#endif
1680
Torben Hohnf0af911a92011-01-27 15:59:10 +01001681/**
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001682 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1683 */
1684ktime_t ktime_get_monotonic_offset(void)
1685{
John Stultz4e250fd2012-07-27 14:48:13 -04001686 struct timekeeper *tk = &timekeeper;
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001687 unsigned long seq;
John Stultz7d489d12014-07-16 21:04:01 +00001688 struct timespec64 wtom;
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001689
1690 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001691 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -04001692 wtom = tk->wall_to_monotonic;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001693 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz70471f22011-11-14 12:48:10 -08001694
John Stultz7d489d12014-07-16 21:04:01 +00001695 return timespec64_to_ktime(wtom);
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001696}
John Stultza80b83b2012-02-03 00:19:07 -08001697EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1698
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001699/**
John Stultzaa6f9c592013-03-22 11:31:29 -07001700 * do_adjtimex() - Accessor function to NTP __do_adjtimex function
1701 */
1702int do_adjtimex(struct timex *txc)
1703{
John Stultz0b5154f2013-03-22 14:20:03 -07001704 struct timekeeper *tk = &timekeeper;
John Stultz06c017f2013-03-22 11:37:28 -07001705 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +00001706 struct timespec64 ts;
John Stultz4e8f8b32013-04-10 12:41:49 -07001707 s32 orig_tai, tai;
John Stultze4085692013-03-22 12:08:52 -07001708 int ret;
1709
1710 /* Validate the data before disabling interrupts */
1711 ret = ntp_validate_timex(txc);
1712 if (ret)
1713 return ret;
1714
John Stultzcef90372013-03-22 15:04:13 -07001715 if (txc->modes & ADJ_SETOFFSET) {
1716 struct timespec delta;
1717 delta.tv_sec = txc->time.tv_sec;
1718 delta.tv_nsec = txc->time.tv_usec;
1719 if (!(txc->modes & ADJ_NANO))
1720 delta.tv_nsec *= 1000;
1721 ret = timekeeping_inject_offset(&delta);
1722 if (ret)
1723 return ret;
1724 }
1725
Thomas Gleixnerd6d29892014-07-16 21:04:04 +00001726 getnstimeofday64(&ts);
John Stultzaa6f9c592013-03-22 11:31:29 -07001727
John Stultz06c017f2013-03-22 11:37:28 -07001728 raw_spin_lock_irqsave(&timekeeper_lock, flags);
1729 write_seqcount_begin(&timekeeper_seq);
1730
John Stultz4e8f8b32013-04-10 12:41:49 -07001731 orig_tai = tai = tk->tai_offset;
John Stultz87ace392013-03-22 12:28:15 -07001732 ret = __do_adjtimex(txc, &ts, &tai);
1733
John Stultz4e8f8b32013-04-10 12:41:49 -07001734 if (tai != orig_tai) {
1735 __timekeeping_set_tai_offset(tk, tai);
John Stultzf55c0762013-12-11 18:50:25 -08001736 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultz4e8f8b32013-04-10 12:41:49 -07001737 }
John Stultz06c017f2013-03-22 11:37:28 -07001738 write_seqcount_end(&timekeeper_seq);
1739 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
1740
John Stultz6fdda9a2013-12-10 17:18:18 -08001741 if (tai != orig_tai)
1742 clock_was_set();
1743
John Stultz7bd36012013-09-11 16:50:56 -07001744 ntp_notify_cmos_timer();
1745
John Stultz87ace392013-03-22 12:28:15 -07001746 return ret;
1747}
John Stultzaa6f9c592013-03-22 11:31:29 -07001748
1749#ifdef CONFIG_NTP_PPS
1750/**
1751 * hardpps() - Accessor function to NTP __hardpps function
1752 */
1753void hardpps(const struct timespec *phase_ts, const struct timespec *raw_ts)
1754{
John Stultz06c017f2013-03-22 11:37:28 -07001755 unsigned long flags;
1756
1757 raw_spin_lock_irqsave(&timekeeper_lock, flags);
1758 write_seqcount_begin(&timekeeper_seq);
1759
John Stultzaa6f9c592013-03-22 11:31:29 -07001760 __hardpps(phase_ts, raw_ts);
John Stultz06c017f2013-03-22 11:37:28 -07001761
1762 write_seqcount_end(&timekeeper_seq);
1763 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzaa6f9c592013-03-22 11:31:29 -07001764}
1765EXPORT_SYMBOL(hardpps);
1766#endif
1767
1768/**
Torben Hohnf0af911a92011-01-27 15:59:10 +01001769 * xtime_update() - advances the timekeeping infrastructure
1770 * @ticks: number of ticks, that have elapsed since the last call.
1771 *
1772 * Must be called with interrupts disabled.
1773 */
1774void xtime_update(unsigned long ticks)
1775{
John Stultzd6ad4182012-02-28 16:50:11 -08001776 write_seqlock(&jiffies_lock);
Torben Hohnf0af911a92011-01-27 15:59:10 +01001777 do_timer(ticks);
John Stultzd6ad4182012-02-28 16:50:11 -08001778 write_sequnlock(&jiffies_lock);
John Stultz47a1b7962013-12-12 13:10:55 -08001779 update_wall_time();
Torben Hohnf0af911a92011-01-27 15:59:10 +01001780}