blob: 7c5f5e4a006ce87e5f4bf957651bbd6f010eab71 [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
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +000035/*
36 * The most important data for readout fits into a single 64 byte
37 * cache line.
38 */
39static struct {
40 seqcount_t seq;
41 struct timekeeper timekeeper;
42} tk_core ____cacheline_aligned;
43
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +000044static DEFINE_RAW_SPINLOCK(timekeeper_lock);
Thomas Gleixner48cdc132013-02-21 22:51:40 +000045static struct timekeeper shadow_timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020046
John Stultz8fcce542011-11-14 11:46:39 -080047/* flag for if timekeeping is suspended */
48int __read_mostly timekeeping_suspended;
49
Feng Tang31ade302013-01-16 00:09:47 +080050/* Flag for if there is a persistent clock on this platform */
51bool __read_mostly persistent_clock_exist = false;
52
John Stultz1e75fa82012-07-13 01:21:53 -040053static inline void tk_normalize_xtime(struct timekeeper *tk)
54{
55 while (tk->xtime_nsec >= ((u64)NSEC_PER_SEC << tk->shift)) {
56 tk->xtime_nsec -= (u64)NSEC_PER_SEC << tk->shift;
57 tk->xtime_sec++;
58 }
59}
John Stultz8fcce542011-11-14 11:46:39 -080060
Thomas Gleixnerc905fae2014-07-16 21:04:05 +000061static inline struct timespec64 tk_xtime(struct timekeeper *tk)
62{
63 struct timespec64 ts;
64
65 ts.tv_sec = tk->xtime_sec;
66 ts.tv_nsec = (long)(tk->xtime_nsec >> tk->shift);
67 return ts;
68}
69
John Stultz7d489d12014-07-16 21:04:01 +000070static void tk_set_xtime(struct timekeeper *tk, const struct timespec64 *ts)
John Stultz1e75fa82012-07-13 01:21:53 -040071{
72 tk->xtime_sec = ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040073 tk->xtime_nsec = (u64)ts->tv_nsec << tk->shift;
John Stultz1e75fa82012-07-13 01:21:53 -040074}
75
John Stultz7d489d12014-07-16 21:04:01 +000076static void tk_xtime_add(struct timekeeper *tk, const struct timespec64 *ts)
John Stultz1e75fa82012-07-13 01:21:53 -040077{
78 tk->xtime_sec += ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040079 tk->xtime_nsec += (u64)ts->tv_nsec << tk->shift;
John Stultz784ffcb2012-08-21 20:30:46 -040080 tk_normalize_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -040081}
John Stultz8fcce542011-11-14 11:46:39 -080082
John Stultz7d489d12014-07-16 21:04:01 +000083static void tk_set_wall_to_mono(struct timekeeper *tk, struct timespec64 wtm)
John Stultz6d0ef902012-07-27 14:48:12 -040084{
John Stultz7d489d12014-07-16 21:04:01 +000085 struct timespec64 tmp;
John Stultz6d0ef902012-07-27 14:48:12 -040086
87 /*
88 * Verify consistency of: offset_real = -wall_to_monotonic
89 * before modifying anything
90 */
John Stultz7d489d12014-07-16 21:04:01 +000091 set_normalized_timespec64(&tmp, -tk->wall_to_monotonic.tv_sec,
John Stultz6d0ef902012-07-27 14:48:12 -040092 -tk->wall_to_monotonic.tv_nsec);
John Stultz7d489d12014-07-16 21:04:01 +000093 WARN_ON_ONCE(tk->offs_real.tv64 != timespec64_to_ktime(tmp).tv64);
John Stultz6d0ef902012-07-27 14:48:12 -040094 tk->wall_to_monotonic = wtm;
John Stultz7d489d12014-07-16 21:04:01 +000095 set_normalized_timespec64(&tmp, -wtm.tv_sec, -wtm.tv_nsec);
96 tk->offs_real = timespec64_to_ktime(tmp);
John Stultz04005f62013-12-10 17:13:35 -080097 tk->offs_tai = ktime_add(tk->offs_real, ktime_set(tk->tai_offset, 0));
John Stultz6d0ef902012-07-27 14:48:12 -040098}
99
John Stultz7d489d12014-07-16 21:04:01 +0000100static void tk_set_sleep_time(struct timekeeper *tk, struct timespec64 t)
John Stultz6d0ef902012-07-27 14:48:12 -0400101{
102 /* Verify consistency before modifying */
John Stultz7d489d12014-07-16 21:04:01 +0000103 WARN_ON_ONCE(tk->offs_boot.tv64 != timespec64_to_ktime(tk->total_sleep_time).tv64);
John Stultz6d0ef902012-07-27 14:48:12 -0400104
105 tk->total_sleep_time = t;
John Stultz7d489d12014-07-16 21:04:01 +0000106 tk->offs_boot = timespec64_to_ktime(t);
John Stultz6d0ef902012-07-27 14:48:12 -0400107}
108
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200109/**
Yijing Wangd26e4fe2013-11-28 16:28:55 +0800110 * tk_setup_internals - Set up internals to use clocksource clock.
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200111 *
Yijing Wangd26e4fe2013-11-28 16:28:55 +0800112 * @tk: The target timekeeper to setup.
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200113 * @clock: Pointer to clocksource.
114 *
115 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
116 * pair and interval request.
117 *
118 * Unless you're the timekeeping code, you should not be using this!
119 */
John Stultzf726a692012-07-13 01:21:57 -0400120static void tk_setup_internals(struct timekeeper *tk, struct clocksource *clock)
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200121{
122 cycle_t interval;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700123 u64 tmp, ntpinterval;
John Stultz1e75fa82012-07-13 01:21:53 -0400124 struct clocksource *old_clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200125
John Stultzf726a692012-07-13 01:21:57 -0400126 old_clock = tk->clock;
127 tk->clock = clock;
Thomas Gleixner14a3b6a2013-02-21 22:51:38 +0000128 tk->cycle_last = clock->cycle_last = clock->read(clock);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200129
130 /* Do the ns -> cycle conversion first, using original mult */
131 tmp = NTP_INTERVAL_LENGTH;
132 tmp <<= clock->shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700133 ntpinterval = tmp;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200134 tmp += clock->mult/2;
135 do_div(tmp, clock->mult);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200136 if (tmp == 0)
137 tmp = 1;
138
139 interval = (cycle_t) tmp;
John Stultzf726a692012-07-13 01:21:57 -0400140 tk->cycle_interval = interval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200141
142 /* Go back from cycles -> shifted ns */
John Stultzf726a692012-07-13 01:21:57 -0400143 tk->xtime_interval = (u64) interval * clock->mult;
144 tk->xtime_remainder = ntpinterval - tk->xtime_interval;
145 tk->raw_interval =
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200146 ((u64) interval * clock->mult) >> clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200147
John Stultz1e75fa82012-07-13 01:21:53 -0400148 /* if changing clocks, convert xtime_nsec shift units */
149 if (old_clock) {
150 int shift_change = clock->shift - old_clock->shift;
151 if (shift_change < 0)
John Stultzf726a692012-07-13 01:21:57 -0400152 tk->xtime_nsec >>= -shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400153 else
John Stultzf726a692012-07-13 01:21:57 -0400154 tk->xtime_nsec <<= shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400155 }
John Stultzf726a692012-07-13 01:21:57 -0400156 tk->shift = clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200157
John Stultzf726a692012-07-13 01:21:57 -0400158 tk->ntp_error = 0;
159 tk->ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200160
161 /*
162 * The timekeeper keeps its own mult values for the currently
163 * active clocksource. These value will be adjusted via NTP
164 * to counteract clock drifting.
165 */
John Stultzf726a692012-07-13 01:21:57 -0400166 tk->mult = clock->mult;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200167}
john stultz85240702007-05-08 00:27:59 -0700168
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200169/* Timekeeper helper functions. */
Stephen Warren7b1f6202012-11-07 17:58:54 -0700170
171#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000172static u32 default_arch_gettimeoffset(void) { return 0; }
173u32 (*arch_gettimeoffset)(void) = default_arch_gettimeoffset;
Stephen Warren7b1f6202012-11-07 17:58:54 -0700174#else
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000175static inline u32 arch_gettimeoffset(void) { return 0; }
Stephen Warren7b1f6202012-11-07 17:58:54 -0700176#endif
177
John Stultzf726a692012-07-13 01:21:57 -0400178static inline s64 timekeeping_get_ns(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200179{
180 cycle_t cycle_now, cycle_delta;
181 struct clocksource *clock;
John Stultz1e75fa82012-07-13 01:21:53 -0400182 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200183
184 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400185 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200186 cycle_now = clock->read(clock);
187
188 /* calculate the delta since the last update_wall_time: */
189 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
190
John Stultzf726a692012-07-13 01:21:57 -0400191 nsec = cycle_delta * tk->mult + tk->xtime_nsec;
192 nsec >>= tk->shift;
John Stultzf2a5a082012-07-13 01:21:55 -0400193
Stephen Warren7b1f6202012-11-07 17:58:54 -0700194 /* If arch requires, add in get_arch_timeoffset() */
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000195 return nsec + arch_gettimeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200196}
197
John Stultzf726a692012-07-13 01:21:57 -0400198static inline s64 timekeeping_get_ns_raw(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200199{
200 cycle_t cycle_now, cycle_delta;
201 struct clocksource *clock;
John Stultzf2a5a082012-07-13 01:21:55 -0400202 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200203
204 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400205 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200206 cycle_now = clock->read(clock);
207
208 /* calculate the delta since the last update_wall_time: */
209 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
210
John Stultzf2a5a082012-07-13 01:21:55 -0400211 /* convert delta to nanoseconds. */
212 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
213
Stephen Warren7b1f6202012-11-07 17:58:54 -0700214 /* If arch requires, add in get_arch_timeoffset() */
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000215 return nsec + arch_gettimeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200216}
217
Thomas Gleixnerc905fae2014-07-16 21:04:05 +0000218#ifdef CONFIG_GENERIC_TIME_VSYSCALL_OLD
219
220static inline void update_vsyscall(struct timekeeper *tk)
221{
222 struct timespec xt;
223
224 xt = tk_xtime(tk);
225 update_vsyscall_old(&xt, &tk->wall_to_monotonic, tk->clock, tk->mult);
226}
227
228static inline void old_vsyscall_fixup(struct timekeeper *tk)
229{
230 s64 remainder;
231
232 /*
233 * Store only full nanoseconds into xtime_nsec after rounding
234 * it up and add the remainder to the error difference.
235 * XXX - This is necessary to avoid small 1ns inconsistnecies caused
236 * by truncating the remainder in vsyscalls. However, it causes
237 * additional work to be done in timekeeping_adjust(). Once
238 * the vsyscall implementations are converted to use xtime_nsec
239 * (shifted nanoseconds), and CONFIG_GENERIC_TIME_VSYSCALL_OLD
240 * users are removed, this can be killed.
241 */
242 remainder = tk->xtime_nsec & ((1ULL << tk->shift) - 1);
243 tk->xtime_nsec -= remainder;
244 tk->xtime_nsec += 1ULL << tk->shift;
245 tk->ntp_error += remainder << tk->ntp_error_shift;
246 tk->ntp_error -= (1ULL << tk->shift) << tk->ntp_error_shift;
247}
248#else
249#define old_vsyscall_fixup(tk)
250#endif
251
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200252static RAW_NOTIFIER_HEAD(pvclock_gtod_chain);
253
David Vrabel780427f2013-06-27 11:35:46 +0100254static void update_pvclock_gtod(struct timekeeper *tk, bool was_set)
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200255{
David Vrabel780427f2013-06-27 11:35:46 +0100256 raw_notifier_call_chain(&pvclock_gtod_chain, was_set, tk);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200257}
258
259/**
260 * pvclock_gtod_register_notifier - register a pvclock timedata update listener
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200261 */
262int pvclock_gtod_register_notifier(struct notifier_block *nb)
263{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000264 struct timekeeper *tk = &tk_core.timekeeper;
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200265 unsigned long flags;
266 int ret;
267
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000268 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200269 ret = raw_notifier_chain_register(&pvclock_gtod_chain, nb);
David Vrabel780427f2013-06-27 11:35:46 +0100270 update_pvclock_gtod(tk, true);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000271 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200272
273 return ret;
274}
275EXPORT_SYMBOL_GPL(pvclock_gtod_register_notifier);
276
277/**
278 * pvclock_gtod_unregister_notifier - unregister a pvclock
279 * timedata update listener
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200280 */
281int pvclock_gtod_unregister_notifier(struct notifier_block *nb)
282{
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200283 unsigned long flags;
284 int ret;
285
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000286 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200287 ret = raw_notifier_chain_unregister(&pvclock_gtod_chain, nb);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000288 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200289
290 return ret;
291}
292EXPORT_SYMBOL_GPL(pvclock_gtod_unregister_notifier);
293
Thomas Gleixner7c032df2014-07-16 21:04:10 +0000294/*
295 * Update the ktime_t based scalar nsec members of the timekeeper
296 */
297static inline void tk_update_ktime_data(struct timekeeper *tk)
298{
299 s64 nsec;
300
301 /*
302 * The xtime based monotonic readout is:
303 * nsec = (xtime_sec + wtm_sec) * 1e9 + wtm_nsec + now();
304 * The ktime based monotonic readout is:
305 * nsec = base_mono + now();
306 * ==> base_mono = (xtime_sec + wtm_sec) * 1e9 + wtm_nsec
307 */
308 nsec = (s64)(tk->xtime_sec + tk->wall_to_monotonic.tv_sec);
309 nsec *= NSEC_PER_SEC;
310 nsec += tk->wall_to_monotonic.tv_nsec;
311 tk->base_mono = ns_to_ktime(nsec);
312}
313
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000314/* must hold timekeeper_lock */
David Vrabel04397fe92013-06-27 11:35:45 +0100315static void timekeeping_update(struct timekeeper *tk, unsigned int action)
Thomas Gleixnercc062682011-11-13 23:19:49 +0000316{
David Vrabel04397fe92013-06-27 11:35:45 +0100317 if (action & TK_CLEAR_NTP) {
John Stultzf726a692012-07-13 01:21:57 -0400318 tk->ntp_error = 0;
Thomas Gleixnercc062682011-11-13 23:19:49 +0000319 ntp_clear();
320 }
John Stultz576094b2012-09-11 19:58:13 -0400321 update_vsyscall(tk);
David Vrabel780427f2013-06-27 11:35:46 +0100322 update_pvclock_gtod(tk, action & TK_CLOCK_WAS_SET);
Thomas Gleixner48cdc132013-02-21 22:51:40 +0000323
Thomas Gleixner7c032df2014-07-16 21:04:10 +0000324 tk_update_ktime_data(tk);
325
David Vrabel04397fe92013-06-27 11:35:45 +0100326 if (action & TK_MIRROR)
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000327 memcpy(&shadow_timekeeper, &tk_core.timekeeper,
328 sizeof(tk_core.timekeeper));
Thomas Gleixnercc062682011-11-13 23:19:49 +0000329}
330
john stultz85240702007-05-08 00:27:59 -0700331/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200332 * timekeeping_forward_now - update clock to the current time
john stultz85240702007-05-08 00:27:59 -0700333 *
Roman Zippel9a055112008-08-20 16:37:28 -0700334 * Forward the current clock to update its state since the last call to
335 * update_wall_time(). This is useful before significant clock changes,
336 * as it avoids having to deal with this time offset explicitly.
john stultz85240702007-05-08 00:27:59 -0700337 */
John Stultzf726a692012-07-13 01:21:57 -0400338static void timekeeping_forward_now(struct timekeeper *tk)
john stultz85240702007-05-08 00:27:59 -0700339{
340 cycle_t cycle_now, cycle_delta;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200341 struct clocksource *clock;
Roman Zippel9a055112008-08-20 16:37:28 -0700342 s64 nsec;
john stultz85240702007-05-08 00:27:59 -0700343
John Stultzf726a692012-07-13 01:21:57 -0400344 clock = tk->clock;
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200345 cycle_now = clock->read(clock);
john stultz85240702007-05-08 00:27:59 -0700346 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
Thomas Gleixner14a3b6a2013-02-21 22:51:38 +0000347 tk->cycle_last = clock->cycle_last = cycle_now;
john stultz85240702007-05-08 00:27:59 -0700348
John Stultzf726a692012-07-13 01:21:57 -0400349 tk->xtime_nsec += cycle_delta * tk->mult;
john stultz7d275582009-05-01 13:10:26 -0700350
Stephen Warren7b1f6202012-11-07 17:58:54 -0700351 /* If arch requires, add in get_arch_timeoffset() */
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000352 tk->xtime_nsec += (u64)arch_gettimeoffset() << tk->shift;
john stultz7d275582009-05-01 13:10:26 -0700353
John Stultzf726a692012-07-13 01:21:57 -0400354 tk_normalize_xtime(tk);
John Stultz2d422442008-08-20 16:37:30 -0700355
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200356 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
John Stultz7d489d12014-07-16 21:04:01 +0000357 timespec64_add_ns(&tk->raw_time, nsec);
john stultz85240702007-05-08 00:27:59 -0700358}
359
360/**
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000361 * __getnstimeofday64 - Returns the time of day in a timespec64.
john stultz85240702007-05-08 00:27:59 -0700362 * @ts: pointer to the timespec to be set
363 *
Kees Cook1e817fb2012-11-19 10:26:16 -0800364 * Updates the time of day in the timespec.
365 * Returns 0 on success, or -ve when suspended (timespec will be undefined).
john stultz85240702007-05-08 00:27:59 -0700366 */
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000367int __getnstimeofday64(struct timespec64 *ts)
john stultz85240702007-05-08 00:27:59 -0700368{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000369 struct timekeeper *tk = &tk_core.timekeeper;
john stultz85240702007-05-08 00:27:59 -0700370 unsigned long seq;
John Stultz1e75fa82012-07-13 01:21:53 -0400371 s64 nsecs = 0;
john stultz85240702007-05-08 00:27:59 -0700372
373 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000374 seq = read_seqcount_begin(&tk_core.seq);
john stultz85240702007-05-08 00:27:59 -0700375
John Stultz4e250fd2012-07-27 14:48:13 -0400376 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400377 nsecs = timekeeping_get_ns(tk);
john stultz85240702007-05-08 00:27:59 -0700378
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000379 } while (read_seqcount_retry(&tk_core.seq, seq));
john stultz85240702007-05-08 00:27:59 -0700380
John Stultzec145ba2012-09-11 19:26:03 -0400381 ts->tv_nsec = 0;
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000382 timespec64_add_ns(ts, nsecs);
Kees Cook1e817fb2012-11-19 10:26:16 -0800383
384 /*
385 * Do not bail out early, in case there were callers still using
386 * the value, even in the face of the WARN_ON.
387 */
388 if (unlikely(timekeeping_suspended))
389 return -EAGAIN;
390 return 0;
391}
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000392EXPORT_SYMBOL(__getnstimeofday64);
Kees Cook1e817fb2012-11-19 10:26:16 -0800393
394/**
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000395 * getnstimeofday64 - Returns the time of day in a timespec64.
Kees Cook1e817fb2012-11-19 10:26:16 -0800396 * @ts: pointer to the timespec to be set
397 *
398 * Returns the time of day in a timespec (WARN if suspended).
399 */
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000400void getnstimeofday64(struct timespec64 *ts)
Kees Cook1e817fb2012-11-19 10:26:16 -0800401{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000402 WARN_ON(__getnstimeofday64(ts));
john stultz85240702007-05-08 00:27:59 -0700403}
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000404EXPORT_SYMBOL(getnstimeofday64);
john stultz85240702007-05-08 00:27:59 -0700405
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200406ktime_t ktime_get(void)
407{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000408 struct timekeeper *tk = &tk_core.timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200409 unsigned int seq;
Thomas Gleixnera016a5b2014-07-16 21:04:12 +0000410 ktime_t base;
411 s64 nsecs;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200412
413 WARN_ON(timekeeping_suspended);
414
415 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000416 seq = read_seqcount_begin(&tk_core.seq);
Thomas Gleixnera016a5b2014-07-16 21:04:12 +0000417 base = tk->base_mono;
418 nsecs = timekeeping_get_ns(tk);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200419
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000420 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz24e4a8c2014-07-16 21:03:53 +0000421
Thomas Gleixnera016a5b2014-07-16 21:04:12 +0000422 return ktime_add_ns(base, nsecs);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200423}
424EXPORT_SYMBOL_GPL(ktime_get);
425
Thomas Gleixner0077dc62014-07-16 21:04:13 +0000426static ktime_t *offsets[TK_OFFS_MAX] = {
427 [TK_OFFS_REAL] = &tk_core.timekeeper.offs_real,
428 [TK_OFFS_BOOT] = &tk_core.timekeeper.offs_boot,
429 [TK_OFFS_TAI] = &tk_core.timekeeper.offs_tai,
430};
431
432ktime_t ktime_get_with_offset(enum tk_offsets offs)
433{
434 struct timekeeper *tk = &tk_core.timekeeper;
435 unsigned int seq;
436 ktime_t base, *offset = offsets[offs];
437 s64 nsecs;
438
439 WARN_ON(timekeeping_suspended);
440
441 do {
442 seq = read_seqcount_begin(&tk_core.seq);
443 base = ktime_add(tk->base_mono, *offset);
444 nsecs = timekeeping_get_ns(tk);
445
446 } while (read_seqcount_retry(&tk_core.seq, seq));
447
448 return ktime_add_ns(base, nsecs);
449
450}
451EXPORT_SYMBOL_GPL(ktime_get_with_offset);
452
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200453/**
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000454 * ktime_get_ts64 - get the monotonic clock in timespec64 format
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200455 * @ts: pointer to timespec variable
456 *
457 * The function calculates the monotonic clock from the realtime
458 * clock and the wall_to_monotonic offset and stores the result
459 * in normalized timespec format in the variable pointed to by @ts.
460 */
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000461void ktime_get_ts64(struct timespec64 *ts)
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200462{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000463 struct timekeeper *tk = &tk_core.timekeeper;
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000464 struct timespec64 tomono;
John Stultzec145ba2012-09-11 19:26:03 -0400465 s64 nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200466 unsigned int seq;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200467
468 WARN_ON(timekeeping_suspended);
469
470 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000471 seq = read_seqcount_begin(&tk_core.seq);
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000472 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400473 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -0400474 tomono = tk->wall_to_monotonic;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200475
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000476 } while (read_seqcount_retry(&tk_core.seq, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200477
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000478 ts->tv_sec += tomono.tv_sec;
479 ts->tv_nsec = 0;
480 timespec64_add_ns(ts, nsec + tomono.tv_nsec);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200481}
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000482EXPORT_SYMBOL_GPL(ktime_get_ts64);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200483
John Stultz1ff3c962012-05-03 12:43:40 -0700484
485/**
486 * timekeeping_clocktai - Returns the TAI time of day in a timespec
487 * @ts: pointer to the timespec to be set
488 *
489 * Returns the time of day in a timespec.
490 */
491void timekeeping_clocktai(struct timespec *ts)
492{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000493 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000494 struct timespec64 ts64;
John Stultz1ff3c962012-05-03 12:43:40 -0700495 unsigned long seq;
496 u64 nsecs;
497
498 WARN_ON(timekeeping_suspended);
499
500 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000501 seq = read_seqcount_begin(&tk_core.seq);
John Stultz1ff3c962012-05-03 12:43:40 -0700502
John Stultz7d489d12014-07-16 21:04:01 +0000503 ts64.tv_sec = tk->xtime_sec + tk->tai_offset;
John Stultz1ff3c962012-05-03 12:43:40 -0700504 nsecs = timekeeping_get_ns(tk);
505
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000506 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz1ff3c962012-05-03 12:43:40 -0700507
John Stultz7d489d12014-07-16 21:04:01 +0000508 ts64.tv_nsec = 0;
509 timespec64_add_ns(&ts64, nsecs);
510 *ts = timespec64_to_timespec(ts64);
John Stultz1ff3c962012-05-03 12:43:40 -0700511
512}
513EXPORT_SYMBOL(timekeeping_clocktai);
514
515
John Stultz90adda92013-01-21 17:00:11 -0800516/**
517 * ktime_get_clocktai - Returns the TAI time of day in a ktime
518 *
519 * Returns the time of day in a ktime.
520 */
521ktime_t ktime_get_clocktai(void)
522{
523 struct timespec ts;
524
525 timekeeping_clocktai(&ts);
526 return timespec_to_ktime(ts);
527}
528EXPORT_SYMBOL(ktime_get_clocktai);
529
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800530#ifdef CONFIG_NTP_PPS
531
532/**
533 * getnstime_raw_and_real - get day and raw monotonic time in timespec format
534 * @ts_raw: pointer to the timespec to be set to raw monotonic time
535 * @ts_real: pointer to the timespec to be set to the time of day
536 *
537 * This function reads both the time of day and raw monotonic time at the
538 * same time atomically and stores the resulting timestamps in timespec
539 * format.
540 */
541void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
542{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000543 struct timekeeper *tk = &tk_core.timekeeper;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800544 unsigned long seq;
545 s64 nsecs_raw, nsecs_real;
546
547 WARN_ON_ONCE(timekeeping_suspended);
548
549 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000550 seq = read_seqcount_begin(&tk_core.seq);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800551
John Stultz7d489d12014-07-16 21:04:01 +0000552 *ts_raw = timespec64_to_timespec(tk->raw_time);
John Stultz4e250fd2012-07-27 14:48:13 -0400553 ts_real->tv_sec = tk->xtime_sec;
John Stultz1e75fa82012-07-13 01:21:53 -0400554 ts_real->tv_nsec = 0;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800555
John Stultz4e250fd2012-07-27 14:48:13 -0400556 nsecs_raw = timekeeping_get_ns_raw(tk);
557 nsecs_real = timekeeping_get_ns(tk);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800558
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000559 } while (read_seqcount_retry(&tk_core.seq, seq));
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800560
561 timespec_add_ns(ts_raw, nsecs_raw);
562 timespec_add_ns(ts_real, nsecs_real);
563}
564EXPORT_SYMBOL(getnstime_raw_and_real);
565
566#endif /* CONFIG_NTP_PPS */
567
john stultz85240702007-05-08 00:27:59 -0700568/**
569 * do_gettimeofday - Returns the time of day in a timeval
570 * @tv: pointer to the timeval to be set
571 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100572 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -0700573 */
574void do_gettimeofday(struct timeval *tv)
575{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000576 struct timespec64 now;
john stultz85240702007-05-08 00:27:59 -0700577
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000578 getnstimeofday64(&now);
john stultz85240702007-05-08 00:27:59 -0700579 tv->tv_sec = now.tv_sec;
580 tv->tv_usec = now.tv_nsec/1000;
581}
john stultz85240702007-05-08 00:27:59 -0700582EXPORT_SYMBOL(do_gettimeofday);
Richard Cochrand239f492012-04-27 10:12:42 +0200583
john stultz85240702007-05-08 00:27:59 -0700584/**
585 * do_settimeofday - Sets the time of day
586 * @tv: pointer to the timespec variable containing the new time
587 *
588 * Sets the time of day to the new time and update NTP and notify hrtimers
589 */
Richard Cochran1e6d7672011-02-01 13:50:58 +0000590int do_settimeofday(const struct timespec *tv)
john stultz85240702007-05-08 00:27:59 -0700591{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000592 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000593 struct timespec64 ts_delta, xt, tmp;
John Stultz92c1d3e2011-11-14 14:05:44 -0800594 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700595
John Stultzcee58482012-08-31 13:30:06 -0400596 if (!timespec_valid_strict(tv))
john stultz85240702007-05-08 00:27:59 -0700597 return -EINVAL;
598
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000599 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000600 write_seqcount_begin(&tk_core.seq);
john stultz85240702007-05-08 00:27:59 -0700601
John Stultz4e250fd2012-07-27 14:48:13 -0400602 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700603
John Stultz4e250fd2012-07-27 14:48:13 -0400604 xt = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400605 ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
606 ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
607
John Stultz7d489d12014-07-16 21:04:01 +0000608 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, ts_delta));
john stultz85240702007-05-08 00:27:59 -0700609
John Stultz7d489d12014-07-16 21:04:01 +0000610 tmp = timespec_to_timespec64(*tv);
611 tk_set_xtime(tk, &tmp);
John Stultz1e75fa82012-07-13 01:21:53 -0400612
David Vrabel780427f2013-06-27 11:35:46 +0100613 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
john stultz85240702007-05-08 00:27:59 -0700614
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000615 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000616 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -0700617
618 /* signal hrtimers about time change */
619 clock_was_set();
620
621 return 0;
622}
john stultz85240702007-05-08 00:27:59 -0700623EXPORT_SYMBOL(do_settimeofday);
624
John Stultzc528f7c2011-02-01 13:52:17 +0000625/**
626 * timekeeping_inject_offset - Adds or subtracts from the current time.
627 * @tv: pointer to the timespec variable containing the offset
628 *
629 * Adds or subtracts an offset value from the current time.
630 */
631int timekeeping_inject_offset(struct timespec *ts)
632{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000633 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800634 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +0000635 struct timespec64 ts64, tmp;
John Stultz4e8b1452012-08-08 15:36:20 -0400636 int ret = 0;
John Stultzc528f7c2011-02-01 13:52:17 +0000637
638 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
639 return -EINVAL;
640
John Stultz7d489d12014-07-16 21:04:01 +0000641 ts64 = timespec_to_timespec64(*ts);
642
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000643 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000644 write_seqcount_begin(&tk_core.seq);
John Stultzc528f7c2011-02-01 13:52:17 +0000645
John Stultz4e250fd2012-07-27 14:48:13 -0400646 timekeeping_forward_now(tk);
John Stultzc528f7c2011-02-01 13:52:17 +0000647
John Stultz4e8b1452012-08-08 15:36:20 -0400648 /* Make sure the proposed value is valid */
John Stultz7d489d12014-07-16 21:04:01 +0000649 tmp = timespec64_add(tk_xtime(tk), ts64);
650 if (!timespec64_valid_strict(&tmp)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400651 ret = -EINVAL;
652 goto error;
653 }
John Stultz1e75fa82012-07-13 01:21:53 -0400654
John Stultz7d489d12014-07-16 21:04:01 +0000655 tk_xtime_add(tk, &ts64);
656 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, ts64));
John Stultzc528f7c2011-02-01 13:52:17 +0000657
John Stultz4e8b1452012-08-08 15:36:20 -0400658error: /* even if we error out, we forwarded the time, so call update */
David Vrabel780427f2013-06-27 11:35:46 +0100659 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultzc528f7c2011-02-01 13:52:17 +0000660
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000661 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000662 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000663
664 /* signal hrtimers about time change */
665 clock_was_set();
666
John Stultz4e8b1452012-08-08 15:36:20 -0400667 return ret;
John Stultzc528f7c2011-02-01 13:52:17 +0000668}
669EXPORT_SYMBOL(timekeeping_inject_offset);
670
John Stultzcc244dd2012-05-03 12:30:07 -0700671
672/**
673 * timekeeping_get_tai_offset - Returns current TAI offset from UTC
674 *
675 */
676s32 timekeeping_get_tai_offset(void)
677{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000678 struct timekeeper *tk = &tk_core.timekeeper;
John Stultzcc244dd2012-05-03 12:30:07 -0700679 unsigned int seq;
680 s32 ret;
681
682 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000683 seq = read_seqcount_begin(&tk_core.seq);
John Stultzcc244dd2012-05-03 12:30:07 -0700684 ret = tk->tai_offset;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000685 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultzcc244dd2012-05-03 12:30:07 -0700686
687 return ret;
688}
689
690/**
691 * __timekeeping_set_tai_offset - Lock free worker function
692 *
693 */
Fengguang Wudd5d70e2013-03-25 12:24:24 -0700694static void __timekeeping_set_tai_offset(struct timekeeper *tk, s32 tai_offset)
John Stultzcc244dd2012-05-03 12:30:07 -0700695{
696 tk->tai_offset = tai_offset;
John Stultz04005f62013-12-10 17:13:35 -0800697 tk->offs_tai = ktime_add(tk->offs_real, ktime_set(tai_offset, 0));
John Stultzcc244dd2012-05-03 12:30:07 -0700698}
699
700/**
701 * timekeeping_set_tai_offset - Sets the current TAI offset from UTC
702 *
703 */
704void timekeeping_set_tai_offset(s32 tai_offset)
705{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000706 struct timekeeper *tk = &tk_core.timekeeper;
John Stultzcc244dd2012-05-03 12:30:07 -0700707 unsigned long flags;
708
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000709 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000710 write_seqcount_begin(&tk_core.seq);
John Stultzcc244dd2012-05-03 12:30:07 -0700711 __timekeeping_set_tai_offset(tk, tai_offset);
John Stultzf55c0762013-12-11 18:50:25 -0800712 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000713 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000714 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz4e8f8b32013-04-10 12:41:49 -0700715 clock_was_set();
John Stultzcc244dd2012-05-03 12:30:07 -0700716}
717
john stultz85240702007-05-08 00:27:59 -0700718/**
719 * change_clocksource - Swaps clocksources if a new one is available
720 *
721 * Accumulates current time interval and initializes new clocksource
722 */
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200723static int change_clocksource(void *data)
john stultz85240702007-05-08 00:27:59 -0700724{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000725 struct timekeeper *tk = &tk_core.timekeeper;
Magnus Damm4614e6a2009-04-21 12:24:02 -0700726 struct clocksource *new, *old;
John Stultzf695cf92012-03-14 16:38:15 -0700727 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700728
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200729 new = (struct clocksource *) data;
john stultz85240702007-05-08 00:27:59 -0700730
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000731 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000732 write_seqcount_begin(&tk_core.seq);
John Stultzf695cf92012-03-14 16:38:15 -0700733
John Stultz4e250fd2012-07-27 14:48:13 -0400734 timekeeping_forward_now(tk);
Thomas Gleixner09ac3692013-04-25 20:31:44 +0000735 /*
736 * If the cs is in module, get a module reference. Succeeds
737 * for built-in code (owner == NULL) as well.
738 */
739 if (try_module_get(new->owner)) {
740 if (!new->enable || new->enable(new) == 0) {
741 old = tk->clock;
742 tk_setup_internals(tk, new);
743 if (old->disable)
744 old->disable(old);
745 module_put(old->owner);
746 } else {
747 module_put(new->owner);
748 }
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200749 }
David Vrabel780427f2013-06-27 11:35:46 +0100750 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultzf695cf92012-03-14 16:38:15 -0700751
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000752 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000753 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -0700754
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200755 return 0;
756}
john stultz85240702007-05-08 00:27:59 -0700757
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200758/**
759 * timekeeping_notify - Install a new clock source
760 * @clock: pointer to the clock source
761 *
762 * This function is called from clocksource.c after a new, better clock
763 * source has been registered. The caller holds the clocksource_mutex.
764 */
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000765int timekeeping_notify(struct clocksource *clock)
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200766{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000767 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz4e250fd2012-07-27 14:48:13 -0400768
769 if (tk->clock == clock)
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000770 return 0;
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200771 stop_machine(change_clocksource, clock, NULL);
john stultz85240702007-05-08 00:27:59 -0700772 tick_clock_notify();
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000773 return tk->clock == clock ? 0 : -1;
john stultz85240702007-05-08 00:27:59 -0700774}
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200775
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200776/**
777 * ktime_get_real - get the real (wall-) time in ktime_t format
778 *
779 * returns the time in ktime_t format
780 */
781ktime_t ktime_get_real(void)
782{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000783 struct timespec64 now;
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200784
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000785 getnstimeofday64(&now);
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200786
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000787 return timespec64_to_ktime(now);
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200788}
789EXPORT_SYMBOL_GPL(ktime_get_real);
john stultz85240702007-05-08 00:27:59 -0700790
791/**
John Stultz2d422442008-08-20 16:37:30 -0700792 * getrawmonotonic - Returns the raw monotonic time in a timespec
793 * @ts: pointer to the timespec to be set
794 *
795 * Returns the raw monotonic time (completely un-modified by ntp)
796 */
797void getrawmonotonic(struct timespec *ts)
798{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000799 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000800 struct timespec64 ts64;
John Stultz2d422442008-08-20 16:37:30 -0700801 unsigned long seq;
802 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -0700803
804 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000805 seq = read_seqcount_begin(&tk_core.seq);
John Stultz4e250fd2012-07-27 14:48:13 -0400806 nsecs = timekeeping_get_ns_raw(tk);
John Stultz7d489d12014-07-16 21:04:01 +0000807 ts64 = tk->raw_time;
John Stultz2d422442008-08-20 16:37:30 -0700808
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000809 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz2d422442008-08-20 16:37:30 -0700810
John Stultz7d489d12014-07-16 21:04:01 +0000811 timespec64_add_ns(&ts64, nsecs);
812 *ts = timespec64_to_timespec(ts64);
John Stultz2d422442008-08-20 16:37:30 -0700813}
814EXPORT_SYMBOL(getrawmonotonic);
815
John Stultz2d422442008-08-20 16:37:30 -0700816/**
Li Zefancf4fc6c2008-02-08 04:19:24 -0800817 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -0700818 */
Li Zefancf4fc6c2008-02-08 04:19:24 -0800819int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -0700820{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000821 struct timekeeper *tk = &tk_core.timekeeper;
john stultz85240702007-05-08 00:27:59 -0700822 unsigned long seq;
823 int ret;
824
825 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000826 seq = read_seqcount_begin(&tk_core.seq);
john stultz85240702007-05-08 00:27:59 -0700827
John Stultz4e250fd2012-07-27 14:48:13 -0400828 ret = tk->clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -0700829
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000830 } while (read_seqcount_retry(&tk_core.seq, seq));
john stultz85240702007-05-08 00:27:59 -0700831
832 return ret;
833}
834
835/**
Jon Hunter98962462009-08-18 12:45:10 -0500836 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
Jon Hunter98962462009-08-18 12:45:10 -0500837 */
838u64 timekeeping_max_deferment(void)
839{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000840 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz70471f22011-11-14 12:48:10 -0800841 unsigned long seq;
842 u64 ret;
John Stultz42e71e82012-07-13 01:21:51 -0400843
John Stultz70471f22011-11-14 12:48:10 -0800844 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000845 seq = read_seqcount_begin(&tk_core.seq);
John Stultz70471f22011-11-14 12:48:10 -0800846
John Stultz4e250fd2012-07-27 14:48:13 -0400847 ret = tk->clock->max_idle_ns;
John Stultz70471f22011-11-14 12:48:10 -0800848
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000849 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz70471f22011-11-14 12:48:10 -0800850
851 return ret;
Jon Hunter98962462009-08-18 12:45:10 -0500852}
853
854/**
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200855 * read_persistent_clock - Return time from the persistent clock.
john stultz85240702007-05-08 00:27:59 -0700856 *
857 * Weak dummy function for arches that do not yet support it.
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200858 * Reads the time from the battery backed persistent clock.
859 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
john stultz85240702007-05-08 00:27:59 -0700860 *
861 * XXX - Do be sure to remove it once all arches implement it.
862 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -0700863void __weak read_persistent_clock(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700864{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200865 ts->tv_sec = 0;
866 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700867}
868
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200869/**
870 * read_boot_clock - Return time of the system start.
871 *
872 * Weak dummy function for arches that do not yet support it.
873 * Function to read the exact time the system has been started.
874 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
875 *
876 * XXX - Do be sure to remove it once all arches implement it.
877 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -0700878void __weak read_boot_clock(struct timespec *ts)
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200879{
880 ts->tv_sec = 0;
881 ts->tv_nsec = 0;
882}
883
john stultz85240702007-05-08 00:27:59 -0700884/*
885 * timekeeping_init - Initializes the clocksource and common timekeeping values
886 */
887void __init timekeeping_init(void)
888{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000889 struct timekeeper *tk = &tk_core.timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200890 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700891 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +0000892 struct timespec64 now, boot, tmp;
893 struct timespec ts;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200894
John Stultz7d489d12014-07-16 21:04:01 +0000895 read_persistent_clock(&ts);
896 now = timespec_to_timespec64(ts);
897 if (!timespec64_valid_strict(&now)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400898 pr_warn("WARNING: Persistent clock returned invalid value!\n"
899 " Check your CMOS/BIOS settings.\n");
900 now.tv_sec = 0;
901 now.tv_nsec = 0;
Feng Tang31ade302013-01-16 00:09:47 +0800902 } else if (now.tv_sec || now.tv_nsec)
903 persistent_clock_exist = true;
John Stultz4e8b1452012-08-08 15:36:20 -0400904
John Stultz7d489d12014-07-16 21:04:01 +0000905 read_boot_clock(&ts);
906 boot = timespec_to_timespec64(ts);
907 if (!timespec64_valid_strict(&boot)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400908 pr_warn("WARNING: Boot clock returned invalid value!\n"
909 " Check your CMOS/BIOS settings.\n");
910 boot.tv_sec = 0;
911 boot.tv_nsec = 0;
912 }
john stultz85240702007-05-08 00:27:59 -0700913
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000914 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000915 write_seqcount_begin(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -0700916 ntp_init();
917
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200918 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200919 if (clock->enable)
920 clock->enable(clock);
John Stultz4e250fd2012-07-27 14:48:13 -0400921 tk_setup_internals(tk, clock);
john stultz85240702007-05-08 00:27:59 -0700922
John Stultz4e250fd2012-07-27 14:48:13 -0400923 tk_set_xtime(tk, &now);
924 tk->raw_time.tv_sec = 0;
925 tk->raw_time.tv_nsec = 0;
John Stultz1e75fa82012-07-13 01:21:53 -0400926 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
John Stultz4e250fd2012-07-27 14:48:13 -0400927 boot = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400928
John Stultz7d489d12014-07-16 21:04:01 +0000929 set_normalized_timespec64(&tmp, -boot.tv_sec, -boot.tv_nsec);
John Stultz4e250fd2012-07-27 14:48:13 -0400930 tk_set_wall_to_mono(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400931
932 tmp.tv_sec = 0;
933 tmp.tv_nsec = 0;
John Stultz4e250fd2012-07-27 14:48:13 -0400934 tk_set_sleep_time(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400935
Thomas Gleixnerf111adf2014-07-16 21:04:09 +0000936 timekeeping_update(tk, TK_MIRROR);
Thomas Gleixner48cdc132013-02-21 22:51:40 +0000937
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000938 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000939 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -0700940}
941
john stultz85240702007-05-08 00:27:59 -0700942/* time in seconds when suspend began */
John Stultz7d489d12014-07-16 21:04:01 +0000943static struct timespec64 timekeeping_suspend_time;
john stultz85240702007-05-08 00:27:59 -0700944
945/**
John Stultz304529b2011-04-01 14:32:09 -0700946 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
947 * @delta: pointer to a timespec delta value
948 *
949 * Takes a timespec offset measuring a suspend interval and properly
950 * adds the sleep offset to the timekeeping variables.
951 */
John Stultzf726a692012-07-13 01:21:57 -0400952static void __timekeeping_inject_sleeptime(struct timekeeper *tk,
John Stultz7d489d12014-07-16 21:04:01 +0000953 struct timespec64 *delta)
John Stultz304529b2011-04-01 14:32:09 -0700954{
John Stultz7d489d12014-07-16 21:04:01 +0000955 if (!timespec64_valid_strict(delta)) {
John Stultz6d9bcb62014-06-04 16:11:43 -0700956 printk_deferred(KERN_WARNING
957 "__timekeeping_inject_sleeptime: Invalid "
958 "sleep delta value!\n");
John Stultzcb5de2f8d2011-06-01 18:18:09 -0700959 return;
960 }
John Stultzf726a692012-07-13 01:21:57 -0400961 tk_xtime_add(tk, delta);
John Stultz7d489d12014-07-16 21:04:01 +0000962 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, *delta));
963 tk_set_sleep_time(tk, timespec64_add(tk->total_sleep_time, *delta));
Colin Cross5c835452013-05-21 22:32:14 -0700964 tk_debug_account_sleep_time(delta);
John Stultz304529b2011-04-01 14:32:09 -0700965}
966
John Stultz304529b2011-04-01 14:32:09 -0700967/**
968 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
969 * @delta: pointer to a timespec delta value
970 *
971 * This hook is for architectures that cannot support read_persistent_clock
972 * because their RTC/persistent clock is only accessible when irqs are enabled.
973 *
974 * This function should only be called by rtc_resume(), and allows
975 * a suspend offset to be injected into the timekeeping values.
976 */
977void timekeeping_inject_sleeptime(struct timespec *delta)
978{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000979 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000980 struct timespec64 tmp;
John Stultz92c1d3e2011-11-14 14:05:44 -0800981 unsigned long flags;
John Stultz304529b2011-04-01 14:32:09 -0700982
Feng Tang31ade302013-01-16 00:09:47 +0800983 /*
984 * Make sure we don't set the clock twice, as timekeeping_resume()
985 * already did it
986 */
987 if (has_persistent_clock())
John Stultz304529b2011-04-01 14:32:09 -0700988 return;
989
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000990 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000991 write_seqcount_begin(&tk_core.seq);
John Stultz70471f22011-11-14 12:48:10 -0800992
John Stultz4e250fd2012-07-27 14:48:13 -0400993 timekeeping_forward_now(tk);
John Stultz304529b2011-04-01 14:32:09 -0700994
John Stultz7d489d12014-07-16 21:04:01 +0000995 tmp = timespec_to_timespec64(*delta);
996 __timekeeping_inject_sleeptime(tk, &tmp);
John Stultz304529b2011-04-01 14:32:09 -0700997
David Vrabel780427f2013-06-27 11:35:46 +0100998 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultz304529b2011-04-01 14:32:09 -0700999
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001000 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001001 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz304529b2011-04-01 14:32:09 -07001002
1003 /* signal hrtimers about time change */
1004 clock_was_set();
1005}
1006
John Stultz304529b2011-04-01 14:32:09 -07001007/**
john stultz85240702007-05-08 00:27:59 -07001008 * timekeeping_resume - Resumes the generic timekeeping subsystem.
john stultz85240702007-05-08 00:27:59 -07001009 *
1010 * This is for the generic clocksource timekeeping.
1011 * xtime/wall_to_monotonic/jiffies/etc are
1012 * still managed by arch specific suspend/resume code.
1013 */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001014static void timekeeping_resume(void)
john stultz85240702007-05-08 00:27:59 -07001015{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001016 struct timekeeper *tk = &tk_core.timekeeper;
Feng Tange445cf12013-03-12 11:56:48 +08001017 struct clocksource *clock = tk->clock;
John Stultz92c1d3e2011-11-14 14:05:44 -08001018 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +00001019 struct timespec64 ts_new, ts_delta;
1020 struct timespec tmp;
Feng Tange445cf12013-03-12 11:56:48 +08001021 cycle_t cycle_now, cycle_delta;
1022 bool suspendtime_found = false;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001023
John Stultz7d489d12014-07-16 21:04:01 +00001024 read_persistent_clock(&tmp);
1025 ts_new = timespec_to_timespec64(tmp);
john stultz85240702007-05-08 00:27:59 -07001026
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +02001027 clockevents_resume();
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +02001028 clocksource_resume();
1029
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001030 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001031 write_seqcount_begin(&tk_core.seq);
john stultz85240702007-05-08 00:27:59 -07001032
Feng Tange445cf12013-03-12 11:56:48 +08001033 /*
1034 * After system resumes, we need to calculate the suspended time and
1035 * compensate it for the OS time. There are 3 sources that could be
1036 * used: Nonstop clocksource during suspend, persistent clock and rtc
1037 * device.
1038 *
1039 * One specific platform may have 1 or 2 or all of them, and the
1040 * preference will be:
1041 * suspend-nonstop clocksource -> persistent clock -> rtc
1042 * The less preferred source will only be tried if there is no better
1043 * usable source. The rtc part is handled separately in rtc core code.
1044 */
1045 cycle_now = clock->read(clock);
1046 if ((clock->flags & CLOCK_SOURCE_SUSPEND_NONSTOP) &&
1047 cycle_now > clock->cycle_last) {
1048 u64 num, max = ULLONG_MAX;
1049 u32 mult = clock->mult;
1050 u32 shift = clock->shift;
1051 s64 nsec = 0;
1052
1053 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
1054
1055 /*
1056 * "cycle_delta * mutl" may cause 64 bits overflow, if the
1057 * suspended time is too long. In that case we need do the
1058 * 64 bits math carefully
1059 */
1060 do_div(max, mult);
1061 if (cycle_delta > max) {
1062 num = div64_u64(cycle_delta, max);
1063 nsec = (((u64) max * mult) >> shift) * num;
1064 cycle_delta -= num * max;
1065 }
1066 nsec += ((u64) cycle_delta * mult) >> shift;
1067
John Stultz7d489d12014-07-16 21:04:01 +00001068 ts_delta = ns_to_timespec64(nsec);
Feng Tange445cf12013-03-12 11:56:48 +08001069 suspendtime_found = true;
John Stultz7d489d12014-07-16 21:04:01 +00001070 } else if (timespec64_compare(&ts_new, &timekeeping_suspend_time) > 0) {
1071 ts_delta = timespec64_sub(ts_new, timekeeping_suspend_time);
Feng Tange445cf12013-03-12 11:56:48 +08001072 suspendtime_found = true;
john stultz85240702007-05-08 00:27:59 -07001073 }
Feng Tange445cf12013-03-12 11:56:48 +08001074
1075 if (suspendtime_found)
1076 __timekeeping_inject_sleeptime(tk, &ts_delta);
1077
1078 /* Re-base the last cycle value */
Thomas Gleixner77c675b2013-04-22 09:37:04 +02001079 tk->cycle_last = clock->cycle_last = cycle_now;
John Stultz4e250fd2012-07-27 14:48:13 -04001080 tk->ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -07001081 timekeeping_suspended = 0;
David Vrabel780427f2013-06-27 11:35:46 +01001082 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001083 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001084 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001085
1086 touch_softlockup_watchdog();
1087
1088 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
1089
1090 /* Resume hrtimers */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +02001091 hrtimers_resume();
john stultz85240702007-05-08 00:27:59 -07001092}
1093
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001094static int timekeeping_suspend(void)
john stultz85240702007-05-08 00:27:59 -07001095{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001096 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -08001097 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +00001098 struct timespec64 delta, delta_delta;
1099 static struct timespec64 old_delta;
1100 struct timespec tmp;
john stultz85240702007-05-08 00:27:59 -07001101
John Stultz7d489d12014-07-16 21:04:01 +00001102 read_persistent_clock(&tmp);
1103 timekeeping_suspend_time = timespec_to_timespec64(tmp);
Thomas Gleixner3be90952007-09-16 15:36:43 +02001104
Zoran Markovic0d6bd992013-05-17 11:24:05 -07001105 /*
1106 * On some systems the persistent_clock can not be detected at
1107 * timekeeping_init by its return value, so if we see a valid
1108 * value returned, update the persistent_clock_exists flag.
1109 */
1110 if (timekeeping_suspend_time.tv_sec || timekeeping_suspend_time.tv_nsec)
1111 persistent_clock_exist = true;
1112
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001113 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001114 write_seqcount_begin(&tk_core.seq);
John Stultz4e250fd2012-07-27 14:48:13 -04001115 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -07001116 timekeeping_suspended = 1;
John Stultzcb332172011-05-31 22:53:23 -07001117
1118 /*
1119 * To avoid drift caused by repeated suspend/resumes,
1120 * which each can add ~1 second drift error,
1121 * try to compensate so the difference in system time
1122 * and persistent_clock time stays close to constant.
1123 */
John Stultz7d489d12014-07-16 21:04:01 +00001124 delta = timespec64_sub(tk_xtime(tk), timekeeping_suspend_time);
1125 delta_delta = timespec64_sub(delta, old_delta);
John Stultzcb332172011-05-31 22:53:23 -07001126 if (abs(delta_delta.tv_sec) >= 2) {
1127 /*
1128 * if delta_delta is too large, assume time correction
1129 * has occured and set old_delta to the current delta.
1130 */
1131 old_delta = delta;
1132 } else {
1133 /* Otherwise try to adjust old_system to compensate */
1134 timekeeping_suspend_time =
John Stultz7d489d12014-07-16 21:04:01 +00001135 timespec64_add(timekeeping_suspend_time, delta_delta);
John Stultzcb332172011-05-31 22:53:23 -07001136 }
John Stultz330a1612013-12-11 19:10:36 -08001137
1138 timekeeping_update(tk, TK_MIRROR);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001139 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001140 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001141
1142 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
Magnus Dammc54a42b2010-02-02 14:41:41 -08001143 clocksource_suspend();
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +02001144 clockevents_suspend();
john stultz85240702007-05-08 00:27:59 -07001145
1146 return 0;
1147}
1148
1149/* sysfs resume/suspend bits for timekeeping */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001150static struct syscore_ops timekeeping_syscore_ops = {
john stultz85240702007-05-08 00:27:59 -07001151 .resume = timekeeping_resume,
1152 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -07001153};
1154
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001155static int __init timekeeping_init_ops(void)
john stultz85240702007-05-08 00:27:59 -07001156{
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001157 register_syscore_ops(&timekeeping_syscore_ops);
1158 return 0;
john stultz85240702007-05-08 00:27:59 -07001159}
1160
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001161device_initcall(timekeeping_init_ops);
john stultz85240702007-05-08 00:27:59 -07001162
1163/*
1164 * If the error is already larger, we look ahead even further
1165 * to compensate for late or lost adjustments.
1166 */
John Stultzf726a692012-07-13 01:21:57 -04001167static __always_inline int timekeeping_bigadjust(struct timekeeper *tk,
1168 s64 error, s64 *interval,
john stultz85240702007-05-08 00:27:59 -07001169 s64 *offset)
1170{
1171 s64 tick_error, i;
1172 u32 look_ahead, adj;
1173 s32 error2, mult;
1174
1175 /*
1176 * Use the current error value to determine how much to look ahead.
1177 * The larger the error the slower we adjust for it to avoid problems
1178 * with losing too many ticks, otherwise we would overadjust and
1179 * produce an even larger error. The smaller the adjustment the
1180 * faster we try to adjust for it, as lost ticks can do less harm
Li Zefan3eb05672008-02-08 04:19:25 -08001181 * here. This is tuned so that an error of about 1 msec is adjusted
john stultz85240702007-05-08 00:27:59 -07001182 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
1183 */
John Stultzf726a692012-07-13 01:21:57 -04001184 error2 = tk->ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
john stultz85240702007-05-08 00:27:59 -07001185 error2 = abs(error2);
1186 for (look_ahead = 0; error2 > 0; look_ahead++)
1187 error2 >>= 2;
1188
1189 /*
1190 * Now calculate the error in (1 << look_ahead) ticks, but first
1191 * remove the single look ahead already included in the error.
1192 */
John Stultzf726a692012-07-13 01:21:57 -04001193 tick_error = ntp_tick_length() >> (tk->ntp_error_shift + 1);
1194 tick_error -= tk->xtime_interval >> 1;
john stultz85240702007-05-08 00:27:59 -07001195 error = ((error - tick_error) >> look_ahead) + tick_error;
1196
1197 /* Finally calculate the adjustment shift value. */
1198 i = *interval;
1199 mult = 1;
1200 if (error < 0) {
1201 error = -error;
1202 *interval = -*interval;
1203 *offset = -*offset;
1204 mult = -1;
1205 }
1206 for (adj = 0; error > i; adj++)
1207 error >>= 1;
1208
1209 *interval <<= adj;
1210 *offset <<= adj;
1211 return mult << adj;
1212}
1213
1214/*
1215 * Adjust the multiplier to reduce the error value,
1216 * this is optimized for the most common adjustments of -1,0,1,
1217 * for other values we can do a bit more work.
1218 */
John Stultzf726a692012-07-13 01:21:57 -04001219static void timekeeping_adjust(struct timekeeper *tk, s64 offset)
john stultz85240702007-05-08 00:27:59 -07001220{
John Stultzf726a692012-07-13 01:21:57 -04001221 s64 error, interval = tk->cycle_interval;
john stultz85240702007-05-08 00:27:59 -07001222 int adj;
1223
John Stultzc2bc1112011-10-27 18:12:42 -07001224 /*
Jim Cromie88b28ad2012-03-14 21:28:56 -06001225 * The point of this is to check if the error is greater than half
John Stultzc2bc1112011-10-27 18:12:42 -07001226 * an interval.
1227 *
1228 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
1229 *
1230 * Note we subtract one in the shift, so that error is really error*2.
John Stultz3f86f282011-10-27 17:41:17 -07001231 * This "saves" dividing(shifting) interval twice, but keeps the
1232 * (error > interval) comparison as still measuring if error is
Jim Cromie88b28ad2012-03-14 21:28:56 -06001233 * larger than half an interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001234 *
John Stultz3f86f282011-10-27 17:41:17 -07001235 * Note: It does not "save" on aggravation when reading the code.
John Stultzc2bc1112011-10-27 18:12:42 -07001236 */
John Stultzf726a692012-07-13 01:21:57 -04001237 error = tk->ntp_error >> (tk->ntp_error_shift - 1);
john stultz85240702007-05-08 00:27:59 -07001238 if (error > interval) {
John Stultzc2bc1112011-10-27 18:12:42 -07001239 /*
1240 * We now divide error by 4(via shift), which checks if
Jim Cromie88b28ad2012-03-14 21:28:56 -06001241 * the error is greater than twice the interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001242 * If it is greater, we need a bigadjust, if its smaller,
1243 * we can adjust by 1.
1244 */
john stultz85240702007-05-08 00:27:59 -07001245 error >>= 2;
1246 if (likely(error <= interval))
1247 adj = 1;
1248 else
Ingo Molnar1d17d172012-08-04 21:21:14 +02001249 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1250 } else {
1251 if (error < -interval) {
1252 /* See comment above, this is just switched for the negative */
1253 error >>= 2;
1254 if (likely(error >= -interval)) {
1255 adj = -1;
1256 interval = -interval;
1257 offset = -offset;
1258 } else {
1259 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1260 }
1261 } else {
1262 goto out_adjust;
1263 }
1264 }
john stultz85240702007-05-08 00:27:59 -07001265
John Stultzf726a692012-07-13 01:21:57 -04001266 if (unlikely(tk->clock->maxadj &&
1267 (tk->mult + adj > tk->clock->mult + tk->clock->maxadj))) {
John Stultz6d9bcb62014-06-04 16:11:43 -07001268 printk_deferred_once(KERN_WARNING
John Stultze919cfd2012-03-22 19:14:46 -07001269 "Adjusting %s more than 11%% (%ld vs %ld)\n",
John Stultzf726a692012-07-13 01:21:57 -04001270 tk->clock->name, (long)tk->mult + adj,
1271 (long)tk->clock->mult + tk->clock->maxadj);
John Stultze919cfd2012-03-22 19:14:46 -07001272 }
John Stultzc2bc1112011-10-27 18:12:42 -07001273 /*
1274 * So the following can be confusing.
1275 *
1276 * To keep things simple, lets assume adj == 1 for now.
1277 *
1278 * When adj != 1, remember that the interval and offset values
1279 * have been appropriately scaled so the math is the same.
1280 *
1281 * The basic idea here is that we're increasing the multiplier
1282 * by one, this causes the xtime_interval to be incremented by
1283 * one cycle_interval. This is because:
1284 * xtime_interval = cycle_interval * mult
1285 * So if mult is being incremented by one:
1286 * xtime_interval = cycle_interval * (mult + 1)
1287 * Its the same as:
1288 * xtime_interval = (cycle_interval * mult) + cycle_interval
1289 * Which can be shortened to:
1290 * xtime_interval += cycle_interval
1291 *
1292 * So offset stores the non-accumulated cycles. Thus the current
1293 * time (in shifted nanoseconds) is:
1294 * now = (offset * adj) + xtime_nsec
1295 * Now, even though we're adjusting the clock frequency, we have
1296 * to keep time consistent. In other words, we can't jump back
1297 * in time, and we also want to avoid jumping forward in time.
1298 *
1299 * So given the same offset value, we need the time to be the same
1300 * both before and after the freq adjustment.
1301 * now = (offset * adj_1) + xtime_nsec_1
1302 * now = (offset * adj_2) + xtime_nsec_2
1303 * So:
1304 * (offset * adj_1) + xtime_nsec_1 =
1305 * (offset * adj_2) + xtime_nsec_2
1306 * And we know:
1307 * adj_2 = adj_1 + 1
1308 * So:
1309 * (offset * adj_1) + xtime_nsec_1 =
1310 * (offset * (adj_1+1)) + xtime_nsec_2
1311 * (offset * adj_1) + xtime_nsec_1 =
1312 * (offset * adj_1) + offset + xtime_nsec_2
1313 * Canceling the sides:
1314 * xtime_nsec_1 = offset + xtime_nsec_2
1315 * Which gives us:
1316 * xtime_nsec_2 = xtime_nsec_1 - offset
1317 * Which simplfies to:
1318 * xtime_nsec -= offset
1319 *
1320 * XXX - TODO: Doc ntp_error calculation.
1321 */
John Stultzf726a692012-07-13 01:21:57 -04001322 tk->mult += adj;
1323 tk->xtime_interval += interval;
1324 tk->xtime_nsec -= offset;
1325 tk->ntp_error -= (interval - offset) << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001326
Ingo Molnar1d17d172012-08-04 21:21:14 +02001327out_adjust:
John Stultz2a8c0882012-07-13 01:21:56 -04001328 /*
1329 * It may be possible that when we entered this function, xtime_nsec
1330 * was very small. Further, if we're slightly speeding the clocksource
1331 * in the code above, its possible the required corrective factor to
1332 * xtime_nsec could cause it to underflow.
1333 *
1334 * Now, since we already accumulated the second, cannot simply roll
1335 * the accumulated second back, since the NTP subsystem has been
1336 * notified via second_overflow. So instead we push xtime_nsec forward
1337 * by the amount we underflowed, and add that amount into the error.
1338 *
1339 * We'll correct this error next time through this function, when
1340 * xtime_nsec is not as small.
1341 */
John Stultzf726a692012-07-13 01:21:57 -04001342 if (unlikely((s64)tk->xtime_nsec < 0)) {
1343 s64 neg = -(s64)tk->xtime_nsec;
1344 tk->xtime_nsec = 0;
1345 tk->ntp_error += neg << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001346 }
1347
john stultz85240702007-05-08 00:27:59 -07001348}
1349
1350/**
John Stultz1f4f9482012-07-13 01:21:54 -04001351 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
1352 *
1353 * Helper function that accumulates a the nsecs greater then a second
1354 * from the xtime_nsec field to the xtime_secs field.
1355 * It also calls into the NTP code to handle leapsecond processing.
1356 *
1357 */
David Vrabel780427f2013-06-27 11:35:46 +01001358static inline unsigned int accumulate_nsecs_to_secs(struct timekeeper *tk)
John Stultz1f4f9482012-07-13 01:21:54 -04001359{
1360 u64 nsecps = (u64)NSEC_PER_SEC << tk->shift;
John Stultz5258d3f2013-12-11 20:07:49 -08001361 unsigned int clock_set = 0;
John Stultz1f4f9482012-07-13 01:21:54 -04001362
1363 while (tk->xtime_nsec >= nsecps) {
1364 int leap;
1365
1366 tk->xtime_nsec -= nsecps;
1367 tk->xtime_sec++;
1368
1369 /* Figure out if its a leap sec and apply if needed */
1370 leap = second_overflow(tk->xtime_sec);
John Stultz6d0ef902012-07-27 14:48:12 -04001371 if (unlikely(leap)) {
John Stultz7d489d12014-07-16 21:04:01 +00001372 struct timespec64 ts;
John Stultz1f4f9482012-07-13 01:21:54 -04001373
John Stultz6d0ef902012-07-27 14:48:12 -04001374 tk->xtime_sec += leap;
1375
1376 ts.tv_sec = leap;
1377 ts.tv_nsec = 0;
1378 tk_set_wall_to_mono(tk,
John Stultz7d489d12014-07-16 21:04:01 +00001379 timespec64_sub(tk->wall_to_monotonic, ts));
John Stultz6d0ef902012-07-27 14:48:12 -04001380
John Stultzcc244dd2012-05-03 12:30:07 -07001381 __timekeeping_set_tai_offset(tk, tk->tai_offset - leap);
1382
John Stultz5258d3f2013-12-11 20:07:49 -08001383 clock_set = TK_CLOCK_WAS_SET;
John Stultz6d0ef902012-07-27 14:48:12 -04001384 }
John Stultz1f4f9482012-07-13 01:21:54 -04001385 }
John Stultz5258d3f2013-12-11 20:07:49 -08001386 return clock_set;
John Stultz1f4f9482012-07-13 01:21:54 -04001387}
1388
John Stultz1f4f9482012-07-13 01:21:54 -04001389/**
john stultza092ff02009-10-02 16:17:53 -07001390 * logarithmic_accumulation - shifted accumulation of cycles
1391 *
1392 * This functions accumulates a shifted interval of cycles into
1393 * into a shifted interval nanoseconds. Allows for O(log) accumulation
1394 * loop.
1395 *
1396 * Returns the unconsumed cycles.
1397 */
John Stultzf726a692012-07-13 01:21:57 -04001398static cycle_t logarithmic_accumulation(struct timekeeper *tk, cycle_t offset,
John Stultz5258d3f2013-12-11 20:07:49 -08001399 u32 shift,
1400 unsigned int *clock_set)
john stultza092ff02009-10-02 16:17:53 -07001401{
Thomas Gleixner23a95372013-02-21 22:51:36 +00001402 cycle_t interval = tk->cycle_interval << shift;
Jason Wesseldeda2e82010-08-09 14:20:09 -07001403 u64 raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001404
John Stultzf726a692012-07-13 01:21:57 -04001405 /* If the offset is smaller then a shifted interval, do nothing */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001406 if (offset < interval)
john stultza092ff02009-10-02 16:17:53 -07001407 return offset;
1408
1409 /* Accumulate one shifted interval */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001410 offset -= interval;
Thomas Gleixner7ec98e12013-02-21 22:51:39 +00001411 tk->cycle_last += interval;
john stultza092ff02009-10-02 16:17:53 -07001412
John Stultzf726a692012-07-13 01:21:57 -04001413 tk->xtime_nsec += tk->xtime_interval << shift;
John Stultz5258d3f2013-12-11 20:07:49 -08001414 *clock_set |= accumulate_nsecs_to_secs(tk);
john stultza092ff02009-10-02 16:17:53 -07001415
Jason Wesseldeda2e82010-08-09 14:20:09 -07001416 /* Accumulate raw time */
Dan Carpenter5b3900c2012-10-09 10:18:23 +03001417 raw_nsecs = (u64)tk->raw_interval << shift;
John Stultzf726a692012-07-13 01:21:57 -04001418 raw_nsecs += tk->raw_time.tv_nsec;
John Stultzc7dcf872010-08-13 11:30:58 -07001419 if (raw_nsecs >= NSEC_PER_SEC) {
1420 u64 raw_secs = raw_nsecs;
1421 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
John Stultzf726a692012-07-13 01:21:57 -04001422 tk->raw_time.tv_sec += raw_secs;
john stultza092ff02009-10-02 16:17:53 -07001423 }
John Stultzf726a692012-07-13 01:21:57 -04001424 tk->raw_time.tv_nsec = raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001425
1426 /* Accumulate error between NTP and clock interval */
John Stultzf726a692012-07-13 01:21:57 -04001427 tk->ntp_error += ntp_tick_length() << shift;
1428 tk->ntp_error -= (tk->xtime_interval + tk->xtime_remainder) <<
1429 (tk->ntp_error_shift + shift);
john stultza092ff02009-10-02 16:17:53 -07001430
1431 return offset;
1432}
1433
john stultz85240702007-05-08 00:27:59 -07001434/**
1435 * update_wall_time - Uses the current clocksource to increment the wall time
1436 *
john stultz85240702007-05-08 00:27:59 -07001437 */
John Stultz47a1b7962013-12-12 13:10:55 -08001438void update_wall_time(void)
john stultz85240702007-05-08 00:27:59 -07001439{
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001440 struct clocksource *clock;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001441 struct timekeeper *real_tk = &tk_core.timekeeper;
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001442 struct timekeeper *tk = &shadow_timekeeper;
john stultz85240702007-05-08 00:27:59 -07001443 cycle_t offset;
john stultza092ff02009-10-02 16:17:53 -07001444 int shift = 0, maxshift;
John Stultz5258d3f2013-12-11 20:07:49 -08001445 unsigned int clock_set = 0;
John Stultz70471f22011-11-14 12:48:10 -08001446 unsigned long flags;
1447
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001448 raw_spin_lock_irqsave(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001449
1450 /* Make sure we're fully resumed: */
1451 if (unlikely(timekeeping_suspended))
John Stultz70471f22011-11-14 12:48:10 -08001452 goto out;
john stultz85240702007-05-08 00:27:59 -07001453
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001454 clock = real_tk->clock;
John Stultz592913e2010-07-13 17:56:20 -07001455
1456#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001457 offset = real_tk->cycle_interval;
John Stultz592913e2010-07-13 17:56:20 -07001458#else
1459 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
john stultz85240702007-05-08 00:27:59 -07001460#endif
john stultz85240702007-05-08 00:27:59 -07001461
John Stultzbf2ac312012-08-21 20:30:49 -04001462 /* Check if there's really nothing to do */
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001463 if (offset < real_tk->cycle_interval)
John Stultzbf2ac312012-08-21 20:30:49 -04001464 goto out;
1465
john stultza092ff02009-10-02 16:17:53 -07001466 /*
1467 * With NO_HZ we may have to accumulate many cycle_intervals
1468 * (think "ticks") worth of time at once. To do this efficiently,
1469 * we calculate the largest doubling multiple of cycle_intervals
Jim Cromie88b28ad2012-03-14 21:28:56 -06001470 * that is smaller than the offset. We then accumulate that
john stultza092ff02009-10-02 16:17:53 -07001471 * chunk in one go, and then try to consume the next smaller
1472 * doubled multiple.
john stultz85240702007-05-08 00:27:59 -07001473 */
John Stultz4e250fd2012-07-27 14:48:13 -04001474 shift = ilog2(offset) - ilog2(tk->cycle_interval);
john stultza092ff02009-10-02 16:17:53 -07001475 shift = max(0, shift);
Jim Cromie88b28ad2012-03-14 21:28:56 -06001476 /* Bound shift to one less than what overflows tick_length */
John Stultzea7cf492011-11-14 13:18:07 -08001477 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
john stultza092ff02009-10-02 16:17:53 -07001478 shift = min(shift, maxshift);
John Stultz4e250fd2012-07-27 14:48:13 -04001479 while (offset >= tk->cycle_interval) {
John Stultz5258d3f2013-12-11 20:07:49 -08001480 offset = logarithmic_accumulation(tk, offset, shift,
1481 &clock_set);
John Stultz4e250fd2012-07-27 14:48:13 -04001482 if (offset < tk->cycle_interval<<shift)
John Stultz830ec042010-03-18 14:47:30 -07001483 shift--;
john stultz85240702007-05-08 00:27:59 -07001484 }
1485
1486 /* correct the clock when NTP error is too big */
John Stultz4e250fd2012-07-27 14:48:13 -04001487 timekeeping_adjust(tk, offset);
john stultz85240702007-05-08 00:27:59 -07001488
John Stultz6a867a32010-04-06 14:30:51 -07001489 /*
John Stultz92bb1fc2012-09-04 15:38:12 -04001490 * XXX This can be killed once everyone converts
1491 * to the new update_vsyscall.
1492 */
1493 old_vsyscall_fixup(tk);
john stultz85240702007-05-08 00:27:59 -07001494
John Stultz6a867a32010-04-06 14:30:51 -07001495 /*
1496 * Finally, make sure that after the rounding
John Stultz1e75fa82012-07-13 01:21:53 -04001497 * xtime_nsec isn't larger than NSEC_PER_SEC
John Stultz6a867a32010-04-06 14:30:51 -07001498 */
John Stultz5258d3f2013-12-11 20:07:49 -08001499 clock_set |= accumulate_nsecs_to_secs(tk);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001500
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001501 write_seqcount_begin(&tk_core.seq);
Thomas Gleixner7ec98e12013-02-21 22:51:39 +00001502 /* Update clock->cycle_last with the new value */
1503 clock->cycle_last = tk->cycle_last;
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001504 /*
1505 * Update the real timekeeper.
1506 *
1507 * We could avoid this memcpy by switching pointers, but that
1508 * requires changes to all other timekeeper usage sites as
1509 * well, i.e. move the timekeeper pointer getter into the
1510 * spinlocked/seqcount protected sections. And we trade this
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001511 * memcpy under the tk_core.seq against one before we start
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001512 * updating.
1513 */
1514 memcpy(real_tk, tk, sizeof(*tk));
John Stultz5258d3f2013-12-11 20:07:49 -08001515 timekeeping_update(real_tk, clock_set);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001516 write_seqcount_end(&tk_core.seq);
Thomas Gleixnerca4523c2013-02-21 22:51:40 +00001517out:
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001518 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz47a1b7962013-12-12 13:10:55 -08001519 if (clock_set)
John Stultzcab5e122014-03-27 16:30:49 -07001520 /* Have to call _delayed version, since in irq context*/
1521 clock_was_set_delayed();
john stultz85240702007-05-08 00:27:59 -07001522}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001523
1524/**
1525 * getboottime - Return the real time of system boot.
1526 * @ts: pointer to the timespec to be set
1527 *
John Stultzabb3a4e2011-02-14 17:52:09 -08001528 * Returns the wall-time of boot in a timespec.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001529 *
1530 * This is based on the wall_to_monotonic offset and the total suspend
1531 * time. Calls to settimeofday will affect the value returned (which
1532 * basically means that however wrong your real time clock is at boot time,
1533 * you get the right time here).
1534 */
1535void getboottime(struct timespec *ts)
1536{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001537 struct timekeeper *tk = &tk_core.timekeeper;
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001538 struct timespec boottime = {
John Stultz4e250fd2012-07-27 14:48:13 -04001539 .tv_sec = tk->wall_to_monotonic.tv_sec +
1540 tk->total_sleep_time.tv_sec,
1541 .tv_nsec = tk->wall_to_monotonic.tv_nsec +
1542 tk->total_sleep_time.tv_nsec
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001543 };
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001544
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001545 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001546}
Jason Wangc93d89f2010-01-27 19:13:40 +08001547EXPORT_SYMBOL_GPL(getboottime);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001548
John Stultzabb3a4e2011-02-14 17:52:09 -08001549/**
1550 * get_monotonic_boottime - Returns monotonic time since boot
1551 * @ts: pointer to the timespec to be set
1552 *
1553 * Returns the monotonic time since boot in a timespec.
1554 *
1555 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1556 * includes the time spent in suspend.
1557 */
1558void get_monotonic_boottime(struct timespec *ts)
1559{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001560 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001561 struct timespec64 tomono, sleep, ret;
John Stultzec145ba2012-09-11 19:26:03 -04001562 s64 nsec;
John Stultzabb3a4e2011-02-14 17:52:09 -08001563 unsigned int seq;
John Stultzabb3a4e2011-02-14 17:52:09 -08001564
1565 WARN_ON(timekeeping_suspended);
1566
1567 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001568 seq = read_seqcount_begin(&tk_core.seq);
John Stultz7d489d12014-07-16 21:04:01 +00001569 ret.tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -04001570 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -04001571 tomono = tk->wall_to_monotonic;
1572 sleep = tk->total_sleep_time;
John Stultzabb3a4e2011-02-14 17:52:09 -08001573
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001574 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultzabb3a4e2011-02-14 17:52:09 -08001575
John Stultz7d489d12014-07-16 21:04:01 +00001576 ret.tv_sec += tomono.tv_sec + sleep.tv_sec;
1577 ret.tv_nsec = 0;
1578 timespec64_add_ns(&ret, nsec + tomono.tv_nsec + sleep.tv_nsec);
1579 *ts = timespec64_to_timespec(ret);
John Stultzabb3a4e2011-02-14 17:52:09 -08001580}
1581EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1582
1583/**
1584 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1585 *
1586 * Returns the monotonic time since boot in a ktime
1587 *
1588 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1589 * includes the time spent in suspend.
1590 */
1591ktime_t ktime_get_boottime(void)
1592{
1593 struct timespec ts;
1594
1595 get_monotonic_boottime(&ts);
1596 return timespec_to_ktime(ts);
1597}
1598EXPORT_SYMBOL_GPL(ktime_get_boottime);
1599
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001600/**
1601 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1602 * @ts: pointer to the timespec to be converted
1603 */
1604void monotonic_to_bootbased(struct timespec *ts)
1605{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001606 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001607 struct timespec64 ts64;
John Stultz4e250fd2012-07-27 14:48:13 -04001608
John Stultz7d489d12014-07-16 21:04:01 +00001609 ts64 = timespec_to_timespec64(*ts);
1610 ts64 = timespec64_add(ts64, tk->total_sleep_time);
1611 *ts = timespec64_to_timespec(ts64);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001612}
Jason Wangc93d89f2010-01-27 19:13:40 +08001613EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
john stultz2c6b47d2007-07-24 17:47:43 -07001614
john stultz17c38b72007-07-24 18:38:34 -07001615unsigned long get_seconds(void)
1616{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001617 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz4e250fd2012-07-27 14:48:13 -04001618
1619 return tk->xtime_sec;
john stultz17c38b72007-07-24 18:38:34 -07001620}
1621EXPORT_SYMBOL(get_seconds);
1622
john stultzda15cfd2009-08-19 19:13:34 -07001623struct timespec __current_kernel_time(void)
1624{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001625 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz4e250fd2012-07-27 14:48:13 -04001626
John Stultz7d489d12014-07-16 21:04:01 +00001627 return timespec64_to_timespec(tk_xtime(tk));
john stultzda15cfd2009-08-19 19:13:34 -07001628}
john stultz17c38b72007-07-24 18:38:34 -07001629
john stultz2c6b47d2007-07-24 17:47:43 -07001630struct timespec current_kernel_time(void)
1631{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001632 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001633 struct timespec64 now;
john stultz2c6b47d2007-07-24 17:47:43 -07001634 unsigned long seq;
1635
1636 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001637 seq = read_seqcount_begin(&tk_core.seq);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001638
John Stultz4e250fd2012-07-27 14:48:13 -04001639 now = tk_xtime(tk);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001640 } while (read_seqcount_retry(&tk_core.seq, seq));
john stultz2c6b47d2007-07-24 17:47:43 -07001641
John Stultz7d489d12014-07-16 21:04:01 +00001642 return timespec64_to_timespec(now);
john stultz2c6b47d2007-07-24 17:47:43 -07001643}
john stultz2c6b47d2007-07-24 17:47:43 -07001644EXPORT_SYMBOL(current_kernel_time);
john stultzda15cfd2009-08-19 19:13:34 -07001645
1646struct timespec get_monotonic_coarse(void)
1647{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001648 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001649 struct timespec64 now, mono;
john stultzda15cfd2009-08-19 19:13:34 -07001650 unsigned long seq;
1651
1652 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001653 seq = read_seqcount_begin(&tk_core.seq);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001654
John Stultz4e250fd2012-07-27 14:48:13 -04001655 now = tk_xtime(tk);
1656 mono = tk->wall_to_monotonic;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001657 } while (read_seqcount_retry(&tk_core.seq, seq));
john stultzda15cfd2009-08-19 19:13:34 -07001658
John Stultz7d489d12014-07-16 21:04:01 +00001659 set_normalized_timespec64(&now, now.tv_sec + mono.tv_sec,
john stultzda15cfd2009-08-19 19:13:34 -07001660 now.tv_nsec + mono.tv_nsec);
John Stultz7d489d12014-07-16 21:04:01 +00001661
1662 return timespec64_to_timespec(now);
john stultzda15cfd2009-08-19 19:13:34 -07001663}
Torben Hohn871cf1e2011-01-27 15:58:55 +01001664
1665/*
John Stultzd6ad4182012-02-28 16:50:11 -08001666 * Must hold jiffies_lock
Torben Hohn871cf1e2011-01-27 15:58:55 +01001667 */
1668void do_timer(unsigned long ticks)
1669{
1670 jiffies_64 += ticks;
Torben Hohn871cf1e2011-01-27 15:58:55 +01001671 calc_global_load(ticks);
1672}
Torben Hohn48cf76f72011-01-27 15:59:05 +01001673
1674/**
John Stultz76f41082014-07-16 21:03:52 +00001675 * ktime_get_update_offsets_tick - hrtimer helper
1676 * @offs_real: pointer to storage for monotonic -> realtime offset
1677 * @offs_boot: pointer to storage for monotonic -> boottime offset
1678 * @offs_tai: pointer to storage for monotonic -> clock tai offset
1679 *
1680 * Returns monotonic time at last tick and various offsets
Torben Hohn48cf76f72011-01-27 15:59:05 +01001681 */
John Stultz76f41082014-07-16 21:03:52 +00001682ktime_t ktime_get_update_offsets_tick(ktime_t *offs_real, ktime_t *offs_boot,
1683 ktime_t *offs_tai)
Torben Hohn48cf76f72011-01-27 15:59:05 +01001684{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001685 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001686 struct timespec64 ts;
John Stultz76f41082014-07-16 21:03:52 +00001687 ktime_t now;
1688 unsigned int seq;
Torben Hohn48cf76f72011-01-27 15:59:05 +01001689
1690 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001691 seq = read_seqcount_begin(&tk_core.seq);
John Stultz76f41082014-07-16 21:03:52 +00001692
1693 ts = tk_xtime(tk);
John Stultz76f41082014-07-16 21:03:52 +00001694 *offs_real = tk->offs_real;
1695 *offs_boot = tk->offs_boot;
1696 *offs_tai = tk->offs_tai;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001697 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz76f41082014-07-16 21:03:52 +00001698
1699 now = ktime_set(ts.tv_sec, ts.tv_nsec);
1700 now = ktime_sub(now, *offs_real);
1701 return now;
Torben Hohn48cf76f72011-01-27 15:59:05 +01001702}
Torben Hohnf0af911a92011-01-27 15:59:10 +01001703
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001704#ifdef CONFIG_HIGH_RES_TIMERS
1705/**
John Stultz76f41082014-07-16 21:03:52 +00001706 * ktime_get_update_offsets_now - hrtimer helper
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001707 * @offs_real: pointer to storage for monotonic -> realtime offset
1708 * @offs_boot: pointer to storage for monotonic -> boottime offset
Xie XiuQib7bc50e2013-10-18 09:13:30 +08001709 * @offs_tai: pointer to storage for monotonic -> clock tai offset
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001710 *
1711 * Returns current monotonic time and updates the offsets
Xie XiuQib7bc50e2013-10-18 09:13:30 +08001712 * Called from hrtimer_interrupt() or retrigger_next_event()
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001713 */
John Stultz76f41082014-07-16 21:03:52 +00001714ktime_t ktime_get_update_offsets_now(ktime_t *offs_real, ktime_t *offs_boot,
John Stultz90adda92013-01-21 17:00:11 -08001715 ktime_t *offs_tai)
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001716{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001717 struct timekeeper *tk = &tk_core.timekeeper;
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001718 ktime_t now;
1719 unsigned int seq;
1720 u64 secs, nsecs;
1721
1722 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001723 seq = read_seqcount_begin(&tk_core.seq);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001724
John Stultz4e250fd2012-07-27 14:48:13 -04001725 secs = tk->xtime_sec;
1726 nsecs = timekeeping_get_ns(tk);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001727
John Stultz4e250fd2012-07-27 14:48:13 -04001728 *offs_real = tk->offs_real;
1729 *offs_boot = tk->offs_boot;
John Stultz90adda92013-01-21 17:00:11 -08001730 *offs_tai = tk->offs_tai;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001731 } while (read_seqcount_retry(&tk_core.seq, seq));
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001732
1733 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1734 now = ktime_sub(now, *offs_real);
1735 return now;
1736}
1737#endif
1738
Torben Hohnf0af911a92011-01-27 15:59:10 +01001739/**
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001740 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1741 */
1742ktime_t ktime_get_monotonic_offset(void)
1743{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001744 struct timekeeper *tk = &tk_core.timekeeper;
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001745 unsigned long seq;
John Stultz7d489d12014-07-16 21:04:01 +00001746 struct timespec64 wtom;
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001747
1748 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001749 seq = read_seqcount_begin(&tk_core.seq);
John Stultz4e250fd2012-07-27 14:48:13 -04001750 wtom = tk->wall_to_monotonic;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001751 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz70471f22011-11-14 12:48:10 -08001752
John Stultz7d489d12014-07-16 21:04:01 +00001753 return timespec64_to_ktime(wtom);
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001754}
John Stultza80b83b2012-02-03 00:19:07 -08001755EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1756
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001757/**
John Stultzaa6f9c592013-03-22 11:31:29 -07001758 * do_adjtimex() - Accessor function to NTP __do_adjtimex function
1759 */
1760int do_adjtimex(struct timex *txc)
1761{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001762 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz06c017f2013-03-22 11:37:28 -07001763 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +00001764 struct timespec64 ts;
John Stultz4e8f8b32013-04-10 12:41:49 -07001765 s32 orig_tai, tai;
John Stultze4085692013-03-22 12:08:52 -07001766 int ret;
1767
1768 /* Validate the data before disabling interrupts */
1769 ret = ntp_validate_timex(txc);
1770 if (ret)
1771 return ret;
1772
John Stultzcef90372013-03-22 15:04:13 -07001773 if (txc->modes & ADJ_SETOFFSET) {
1774 struct timespec delta;
1775 delta.tv_sec = txc->time.tv_sec;
1776 delta.tv_nsec = txc->time.tv_usec;
1777 if (!(txc->modes & ADJ_NANO))
1778 delta.tv_nsec *= 1000;
1779 ret = timekeeping_inject_offset(&delta);
1780 if (ret)
1781 return ret;
1782 }
1783
Thomas Gleixnerd6d29892014-07-16 21:04:04 +00001784 getnstimeofday64(&ts);
John Stultzaa6f9c592013-03-22 11:31:29 -07001785
John Stultz06c017f2013-03-22 11:37:28 -07001786 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001787 write_seqcount_begin(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -07001788
John Stultz4e8f8b32013-04-10 12:41:49 -07001789 orig_tai = tai = tk->tai_offset;
John Stultz87ace392013-03-22 12:28:15 -07001790 ret = __do_adjtimex(txc, &ts, &tai);
1791
John Stultz4e8f8b32013-04-10 12:41:49 -07001792 if (tai != orig_tai) {
1793 __timekeeping_set_tai_offset(tk, tai);
John Stultzf55c0762013-12-11 18:50:25 -08001794 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultz4e8f8b32013-04-10 12:41:49 -07001795 }
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001796 write_seqcount_end(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -07001797 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
1798
John Stultz6fdda9a2013-12-10 17:18:18 -08001799 if (tai != orig_tai)
1800 clock_was_set();
1801
John Stultz7bd36012013-09-11 16:50:56 -07001802 ntp_notify_cmos_timer();
1803
John Stultz87ace392013-03-22 12:28:15 -07001804 return ret;
1805}
John Stultzaa6f9c592013-03-22 11:31:29 -07001806
1807#ifdef CONFIG_NTP_PPS
1808/**
1809 * hardpps() - Accessor function to NTP __hardpps function
1810 */
1811void hardpps(const struct timespec *phase_ts, const struct timespec *raw_ts)
1812{
John Stultz06c017f2013-03-22 11:37:28 -07001813 unsigned long flags;
1814
1815 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001816 write_seqcount_begin(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -07001817
John Stultzaa6f9c592013-03-22 11:31:29 -07001818 __hardpps(phase_ts, raw_ts);
John Stultz06c017f2013-03-22 11:37:28 -07001819
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001820 write_seqcount_end(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -07001821 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzaa6f9c592013-03-22 11:31:29 -07001822}
1823EXPORT_SYMBOL(hardpps);
1824#endif
1825
1826/**
Torben Hohnf0af911a92011-01-27 15:59:10 +01001827 * xtime_update() - advances the timekeeping infrastructure
1828 * @ticks: number of ticks, that have elapsed since the last call.
1829 *
1830 * Must be called with interrupts disabled.
1831 */
1832void xtime_update(unsigned long ticks)
1833{
John Stultzd6ad4182012-02-28 16:50:11 -08001834 write_seqlock(&jiffies_lock);
Torben Hohnf0af911a92011-01-27 15:59:10 +01001835 do_timer(ticks);
John Stultzd6ad4182012-02-28 16:50:11 -08001836 write_sequnlock(&jiffies_lock);
John Stultz47a1b7962013-12-12 13:10:55 -08001837 update_wall_time();
Torben Hohnf0af911a92011-01-27 15:59:10 +01001838}