blob: d5be1425cc03eb5fafe45933c39a8df7c51ae5fe [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
426/**
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000427 * ktime_get_ts64 - get the monotonic clock in timespec64 format
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200428 * @ts: pointer to timespec variable
429 *
430 * The function calculates the monotonic clock from the realtime
431 * clock and the wall_to_monotonic offset and stores the result
432 * in normalized timespec format in the variable pointed to by @ts.
433 */
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000434void ktime_get_ts64(struct timespec64 *ts)
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200435{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000436 struct timekeeper *tk = &tk_core.timekeeper;
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000437 struct timespec64 tomono;
John Stultzec145ba2012-09-11 19:26:03 -0400438 s64 nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200439 unsigned int seq;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200440
441 WARN_ON(timekeeping_suspended);
442
443 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000444 seq = read_seqcount_begin(&tk_core.seq);
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000445 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400446 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -0400447 tomono = tk->wall_to_monotonic;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200448
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000449 } while (read_seqcount_retry(&tk_core.seq, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200450
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000451 ts->tv_sec += tomono.tv_sec;
452 ts->tv_nsec = 0;
453 timespec64_add_ns(ts, nsec + tomono.tv_nsec);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200454}
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000455EXPORT_SYMBOL_GPL(ktime_get_ts64);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200456
John Stultz1ff3c962012-05-03 12:43:40 -0700457
458/**
459 * timekeeping_clocktai - Returns the TAI time of day in a timespec
460 * @ts: pointer to the timespec to be set
461 *
462 * Returns the time of day in a timespec.
463 */
464void timekeeping_clocktai(struct timespec *ts)
465{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000466 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000467 struct timespec64 ts64;
John Stultz1ff3c962012-05-03 12:43:40 -0700468 unsigned long seq;
469 u64 nsecs;
470
471 WARN_ON(timekeeping_suspended);
472
473 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000474 seq = read_seqcount_begin(&tk_core.seq);
John Stultz1ff3c962012-05-03 12:43:40 -0700475
John Stultz7d489d12014-07-16 21:04:01 +0000476 ts64.tv_sec = tk->xtime_sec + tk->tai_offset;
John Stultz1ff3c962012-05-03 12:43:40 -0700477 nsecs = timekeeping_get_ns(tk);
478
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000479 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz1ff3c962012-05-03 12:43:40 -0700480
John Stultz7d489d12014-07-16 21:04:01 +0000481 ts64.tv_nsec = 0;
482 timespec64_add_ns(&ts64, nsecs);
483 *ts = timespec64_to_timespec(ts64);
John Stultz1ff3c962012-05-03 12:43:40 -0700484
485}
486EXPORT_SYMBOL(timekeeping_clocktai);
487
488
John Stultz90adda92013-01-21 17:00:11 -0800489/**
490 * ktime_get_clocktai - Returns the TAI time of day in a ktime
491 *
492 * Returns the time of day in a ktime.
493 */
494ktime_t ktime_get_clocktai(void)
495{
496 struct timespec ts;
497
498 timekeeping_clocktai(&ts);
499 return timespec_to_ktime(ts);
500}
501EXPORT_SYMBOL(ktime_get_clocktai);
502
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800503#ifdef CONFIG_NTP_PPS
504
505/**
506 * getnstime_raw_and_real - get day and raw monotonic time in timespec format
507 * @ts_raw: pointer to the timespec to be set to raw monotonic time
508 * @ts_real: pointer to the timespec to be set to the time of day
509 *
510 * This function reads both the time of day and raw monotonic time at the
511 * same time atomically and stores the resulting timestamps in timespec
512 * format.
513 */
514void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
515{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000516 struct timekeeper *tk = &tk_core.timekeeper;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800517 unsigned long seq;
518 s64 nsecs_raw, nsecs_real;
519
520 WARN_ON_ONCE(timekeeping_suspended);
521
522 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000523 seq = read_seqcount_begin(&tk_core.seq);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800524
John Stultz7d489d12014-07-16 21:04:01 +0000525 *ts_raw = timespec64_to_timespec(tk->raw_time);
John Stultz4e250fd2012-07-27 14:48:13 -0400526 ts_real->tv_sec = tk->xtime_sec;
John Stultz1e75fa82012-07-13 01:21:53 -0400527 ts_real->tv_nsec = 0;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800528
John Stultz4e250fd2012-07-27 14:48:13 -0400529 nsecs_raw = timekeeping_get_ns_raw(tk);
530 nsecs_real = timekeeping_get_ns(tk);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800531
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000532 } while (read_seqcount_retry(&tk_core.seq, seq));
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800533
534 timespec_add_ns(ts_raw, nsecs_raw);
535 timespec_add_ns(ts_real, nsecs_real);
536}
537EXPORT_SYMBOL(getnstime_raw_and_real);
538
539#endif /* CONFIG_NTP_PPS */
540
john stultz85240702007-05-08 00:27:59 -0700541/**
542 * do_gettimeofday - Returns the time of day in a timeval
543 * @tv: pointer to the timeval to be set
544 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100545 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -0700546 */
547void do_gettimeofday(struct timeval *tv)
548{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000549 struct timespec64 now;
john stultz85240702007-05-08 00:27:59 -0700550
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000551 getnstimeofday64(&now);
john stultz85240702007-05-08 00:27:59 -0700552 tv->tv_sec = now.tv_sec;
553 tv->tv_usec = now.tv_nsec/1000;
554}
john stultz85240702007-05-08 00:27:59 -0700555EXPORT_SYMBOL(do_gettimeofday);
Richard Cochrand239f492012-04-27 10:12:42 +0200556
john stultz85240702007-05-08 00:27:59 -0700557/**
558 * do_settimeofday - Sets the time of day
559 * @tv: pointer to the timespec variable containing the new time
560 *
561 * Sets the time of day to the new time and update NTP and notify hrtimers
562 */
Richard Cochran1e6d7672011-02-01 13:50:58 +0000563int do_settimeofday(const struct timespec *tv)
john stultz85240702007-05-08 00:27:59 -0700564{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000565 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000566 struct timespec64 ts_delta, xt, tmp;
John Stultz92c1d3e2011-11-14 14:05:44 -0800567 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700568
John Stultzcee58482012-08-31 13:30:06 -0400569 if (!timespec_valid_strict(tv))
john stultz85240702007-05-08 00:27:59 -0700570 return -EINVAL;
571
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000572 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000573 write_seqcount_begin(&tk_core.seq);
john stultz85240702007-05-08 00:27:59 -0700574
John Stultz4e250fd2012-07-27 14:48:13 -0400575 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700576
John Stultz4e250fd2012-07-27 14:48:13 -0400577 xt = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400578 ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
579 ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
580
John Stultz7d489d12014-07-16 21:04:01 +0000581 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, ts_delta));
john stultz85240702007-05-08 00:27:59 -0700582
John Stultz7d489d12014-07-16 21:04:01 +0000583 tmp = timespec_to_timespec64(*tv);
584 tk_set_xtime(tk, &tmp);
John Stultz1e75fa82012-07-13 01:21:53 -0400585
David Vrabel780427f2013-06-27 11:35:46 +0100586 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
john stultz85240702007-05-08 00:27:59 -0700587
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000588 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000589 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -0700590
591 /* signal hrtimers about time change */
592 clock_was_set();
593
594 return 0;
595}
john stultz85240702007-05-08 00:27:59 -0700596EXPORT_SYMBOL(do_settimeofday);
597
John Stultzc528f7c2011-02-01 13:52:17 +0000598/**
599 * timekeeping_inject_offset - Adds or subtracts from the current time.
600 * @tv: pointer to the timespec variable containing the offset
601 *
602 * Adds or subtracts an offset value from the current time.
603 */
604int timekeeping_inject_offset(struct timespec *ts)
605{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000606 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800607 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +0000608 struct timespec64 ts64, tmp;
John Stultz4e8b1452012-08-08 15:36:20 -0400609 int ret = 0;
John Stultzc528f7c2011-02-01 13:52:17 +0000610
611 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
612 return -EINVAL;
613
John Stultz7d489d12014-07-16 21:04:01 +0000614 ts64 = timespec_to_timespec64(*ts);
615
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000616 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000617 write_seqcount_begin(&tk_core.seq);
John Stultzc528f7c2011-02-01 13:52:17 +0000618
John Stultz4e250fd2012-07-27 14:48:13 -0400619 timekeeping_forward_now(tk);
John Stultzc528f7c2011-02-01 13:52:17 +0000620
John Stultz4e8b1452012-08-08 15:36:20 -0400621 /* Make sure the proposed value is valid */
John Stultz7d489d12014-07-16 21:04:01 +0000622 tmp = timespec64_add(tk_xtime(tk), ts64);
623 if (!timespec64_valid_strict(&tmp)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400624 ret = -EINVAL;
625 goto error;
626 }
John Stultz1e75fa82012-07-13 01:21:53 -0400627
John Stultz7d489d12014-07-16 21:04:01 +0000628 tk_xtime_add(tk, &ts64);
629 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, ts64));
John Stultzc528f7c2011-02-01 13:52:17 +0000630
John Stultz4e8b1452012-08-08 15:36:20 -0400631error: /* even if we error out, we forwarded the time, so call update */
David Vrabel780427f2013-06-27 11:35:46 +0100632 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultzc528f7c2011-02-01 13:52:17 +0000633
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000634 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000635 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000636
637 /* signal hrtimers about time change */
638 clock_was_set();
639
John Stultz4e8b1452012-08-08 15:36:20 -0400640 return ret;
John Stultzc528f7c2011-02-01 13:52:17 +0000641}
642EXPORT_SYMBOL(timekeeping_inject_offset);
643
John Stultzcc244dd2012-05-03 12:30:07 -0700644
645/**
646 * timekeeping_get_tai_offset - Returns current TAI offset from UTC
647 *
648 */
649s32 timekeeping_get_tai_offset(void)
650{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000651 struct timekeeper *tk = &tk_core.timekeeper;
John Stultzcc244dd2012-05-03 12:30:07 -0700652 unsigned int seq;
653 s32 ret;
654
655 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000656 seq = read_seqcount_begin(&tk_core.seq);
John Stultzcc244dd2012-05-03 12:30:07 -0700657 ret = tk->tai_offset;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000658 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultzcc244dd2012-05-03 12:30:07 -0700659
660 return ret;
661}
662
663/**
664 * __timekeeping_set_tai_offset - Lock free worker function
665 *
666 */
Fengguang Wudd5d70e2013-03-25 12:24:24 -0700667static void __timekeeping_set_tai_offset(struct timekeeper *tk, s32 tai_offset)
John Stultzcc244dd2012-05-03 12:30:07 -0700668{
669 tk->tai_offset = tai_offset;
John Stultz04005f62013-12-10 17:13:35 -0800670 tk->offs_tai = ktime_add(tk->offs_real, ktime_set(tai_offset, 0));
John Stultzcc244dd2012-05-03 12:30:07 -0700671}
672
673/**
674 * timekeeping_set_tai_offset - Sets the current TAI offset from UTC
675 *
676 */
677void timekeeping_set_tai_offset(s32 tai_offset)
678{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000679 struct timekeeper *tk = &tk_core.timekeeper;
John Stultzcc244dd2012-05-03 12:30:07 -0700680 unsigned long flags;
681
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000682 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000683 write_seqcount_begin(&tk_core.seq);
John Stultzcc244dd2012-05-03 12:30:07 -0700684 __timekeeping_set_tai_offset(tk, tai_offset);
John Stultzf55c0762013-12-11 18:50:25 -0800685 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000686 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000687 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz4e8f8b32013-04-10 12:41:49 -0700688 clock_was_set();
John Stultzcc244dd2012-05-03 12:30:07 -0700689}
690
john stultz85240702007-05-08 00:27:59 -0700691/**
692 * change_clocksource - Swaps clocksources if a new one is available
693 *
694 * Accumulates current time interval and initializes new clocksource
695 */
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200696static int change_clocksource(void *data)
john stultz85240702007-05-08 00:27:59 -0700697{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000698 struct timekeeper *tk = &tk_core.timekeeper;
Magnus Damm4614e6a2009-04-21 12:24:02 -0700699 struct clocksource *new, *old;
John Stultzf695cf92012-03-14 16:38:15 -0700700 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700701
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200702 new = (struct clocksource *) data;
john stultz85240702007-05-08 00:27:59 -0700703
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000704 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000705 write_seqcount_begin(&tk_core.seq);
John Stultzf695cf92012-03-14 16:38:15 -0700706
John Stultz4e250fd2012-07-27 14:48:13 -0400707 timekeeping_forward_now(tk);
Thomas Gleixner09ac3692013-04-25 20:31:44 +0000708 /*
709 * If the cs is in module, get a module reference. Succeeds
710 * for built-in code (owner == NULL) as well.
711 */
712 if (try_module_get(new->owner)) {
713 if (!new->enable || new->enable(new) == 0) {
714 old = tk->clock;
715 tk_setup_internals(tk, new);
716 if (old->disable)
717 old->disable(old);
718 module_put(old->owner);
719 } else {
720 module_put(new->owner);
721 }
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200722 }
David Vrabel780427f2013-06-27 11:35:46 +0100723 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultzf695cf92012-03-14 16:38:15 -0700724
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000725 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000726 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -0700727
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200728 return 0;
729}
john stultz85240702007-05-08 00:27:59 -0700730
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200731/**
732 * timekeeping_notify - Install a new clock source
733 * @clock: pointer to the clock source
734 *
735 * This function is called from clocksource.c after a new, better clock
736 * source has been registered. The caller holds the clocksource_mutex.
737 */
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000738int timekeeping_notify(struct clocksource *clock)
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200739{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000740 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz4e250fd2012-07-27 14:48:13 -0400741
742 if (tk->clock == clock)
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000743 return 0;
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200744 stop_machine(change_clocksource, clock, NULL);
john stultz85240702007-05-08 00:27:59 -0700745 tick_clock_notify();
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000746 return tk->clock == clock ? 0 : -1;
john stultz85240702007-05-08 00:27:59 -0700747}
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200748
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200749/**
750 * ktime_get_real - get the real (wall-) time in ktime_t format
751 *
752 * returns the time in ktime_t format
753 */
754ktime_t ktime_get_real(void)
755{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000756 struct timespec64 now;
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200757
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000758 getnstimeofday64(&now);
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200759
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000760 return timespec64_to_ktime(now);
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200761}
762EXPORT_SYMBOL_GPL(ktime_get_real);
john stultz85240702007-05-08 00:27:59 -0700763
764/**
John Stultz2d422442008-08-20 16:37:30 -0700765 * getrawmonotonic - Returns the raw monotonic time in a timespec
766 * @ts: pointer to the timespec to be set
767 *
768 * Returns the raw monotonic time (completely un-modified by ntp)
769 */
770void getrawmonotonic(struct timespec *ts)
771{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000772 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000773 struct timespec64 ts64;
John Stultz2d422442008-08-20 16:37:30 -0700774 unsigned long seq;
775 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -0700776
777 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000778 seq = read_seqcount_begin(&tk_core.seq);
John Stultz4e250fd2012-07-27 14:48:13 -0400779 nsecs = timekeeping_get_ns_raw(tk);
John Stultz7d489d12014-07-16 21:04:01 +0000780 ts64 = tk->raw_time;
John Stultz2d422442008-08-20 16:37:30 -0700781
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000782 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz2d422442008-08-20 16:37:30 -0700783
John Stultz7d489d12014-07-16 21:04:01 +0000784 timespec64_add_ns(&ts64, nsecs);
785 *ts = timespec64_to_timespec(ts64);
John Stultz2d422442008-08-20 16:37:30 -0700786}
787EXPORT_SYMBOL(getrawmonotonic);
788
John Stultz2d422442008-08-20 16:37:30 -0700789/**
Li Zefancf4fc6c2008-02-08 04:19:24 -0800790 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -0700791 */
Li Zefancf4fc6c2008-02-08 04:19:24 -0800792int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -0700793{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000794 struct timekeeper *tk = &tk_core.timekeeper;
john stultz85240702007-05-08 00:27:59 -0700795 unsigned long seq;
796 int ret;
797
798 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000799 seq = read_seqcount_begin(&tk_core.seq);
john stultz85240702007-05-08 00:27:59 -0700800
John Stultz4e250fd2012-07-27 14:48:13 -0400801 ret = tk->clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -0700802
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000803 } while (read_seqcount_retry(&tk_core.seq, seq));
john stultz85240702007-05-08 00:27:59 -0700804
805 return ret;
806}
807
808/**
Jon Hunter98962462009-08-18 12:45:10 -0500809 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
Jon Hunter98962462009-08-18 12:45:10 -0500810 */
811u64 timekeeping_max_deferment(void)
812{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000813 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz70471f22011-11-14 12:48:10 -0800814 unsigned long seq;
815 u64 ret;
John Stultz42e71e82012-07-13 01:21:51 -0400816
John Stultz70471f22011-11-14 12:48:10 -0800817 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000818 seq = read_seqcount_begin(&tk_core.seq);
John Stultz70471f22011-11-14 12:48:10 -0800819
John Stultz4e250fd2012-07-27 14:48:13 -0400820 ret = tk->clock->max_idle_ns;
John Stultz70471f22011-11-14 12:48:10 -0800821
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000822 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz70471f22011-11-14 12:48:10 -0800823
824 return ret;
Jon Hunter98962462009-08-18 12:45:10 -0500825}
826
827/**
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200828 * read_persistent_clock - Return time from the persistent clock.
john stultz85240702007-05-08 00:27:59 -0700829 *
830 * Weak dummy function for arches that do not yet support it.
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200831 * Reads the time from the battery backed persistent clock.
832 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
john stultz85240702007-05-08 00:27:59 -0700833 *
834 * XXX - Do be sure to remove it once all arches implement it.
835 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -0700836void __weak read_persistent_clock(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700837{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200838 ts->tv_sec = 0;
839 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700840}
841
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200842/**
843 * read_boot_clock - Return time of the system start.
844 *
845 * Weak dummy function for arches that do not yet support it.
846 * Function to read the exact time the system has been started.
847 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
848 *
849 * XXX - Do be sure to remove it once all arches implement it.
850 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -0700851void __weak read_boot_clock(struct timespec *ts)
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200852{
853 ts->tv_sec = 0;
854 ts->tv_nsec = 0;
855}
856
john stultz85240702007-05-08 00:27:59 -0700857/*
858 * timekeeping_init - Initializes the clocksource and common timekeeping values
859 */
860void __init timekeeping_init(void)
861{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000862 struct timekeeper *tk = &tk_core.timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200863 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700864 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +0000865 struct timespec64 now, boot, tmp;
866 struct timespec ts;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200867
John Stultz7d489d12014-07-16 21:04:01 +0000868 read_persistent_clock(&ts);
869 now = timespec_to_timespec64(ts);
870 if (!timespec64_valid_strict(&now)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400871 pr_warn("WARNING: Persistent clock returned invalid value!\n"
872 " Check your CMOS/BIOS settings.\n");
873 now.tv_sec = 0;
874 now.tv_nsec = 0;
Feng Tang31ade302013-01-16 00:09:47 +0800875 } else if (now.tv_sec || now.tv_nsec)
876 persistent_clock_exist = true;
John Stultz4e8b1452012-08-08 15:36:20 -0400877
John Stultz7d489d12014-07-16 21:04:01 +0000878 read_boot_clock(&ts);
879 boot = timespec_to_timespec64(ts);
880 if (!timespec64_valid_strict(&boot)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400881 pr_warn("WARNING: Boot clock returned invalid value!\n"
882 " Check your CMOS/BIOS settings.\n");
883 boot.tv_sec = 0;
884 boot.tv_nsec = 0;
885 }
john stultz85240702007-05-08 00:27:59 -0700886
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000887 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000888 write_seqcount_begin(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -0700889 ntp_init();
890
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200891 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200892 if (clock->enable)
893 clock->enable(clock);
John Stultz4e250fd2012-07-27 14:48:13 -0400894 tk_setup_internals(tk, clock);
john stultz85240702007-05-08 00:27:59 -0700895
John Stultz4e250fd2012-07-27 14:48:13 -0400896 tk_set_xtime(tk, &now);
897 tk->raw_time.tv_sec = 0;
898 tk->raw_time.tv_nsec = 0;
John Stultz1e75fa82012-07-13 01:21:53 -0400899 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
John Stultz4e250fd2012-07-27 14:48:13 -0400900 boot = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400901
John Stultz7d489d12014-07-16 21:04:01 +0000902 set_normalized_timespec64(&tmp, -boot.tv_sec, -boot.tv_nsec);
John Stultz4e250fd2012-07-27 14:48:13 -0400903 tk_set_wall_to_mono(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400904
905 tmp.tv_sec = 0;
906 tmp.tv_nsec = 0;
John Stultz4e250fd2012-07-27 14:48:13 -0400907 tk_set_sleep_time(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400908
Thomas Gleixnerf111adf2014-07-16 21:04:09 +0000909 timekeeping_update(tk, TK_MIRROR);
Thomas Gleixner48cdc132013-02-21 22:51:40 +0000910
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000911 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000912 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -0700913}
914
john stultz85240702007-05-08 00:27:59 -0700915/* time in seconds when suspend began */
John Stultz7d489d12014-07-16 21:04:01 +0000916static struct timespec64 timekeeping_suspend_time;
john stultz85240702007-05-08 00:27:59 -0700917
918/**
John Stultz304529b2011-04-01 14:32:09 -0700919 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
920 * @delta: pointer to a timespec delta value
921 *
922 * Takes a timespec offset measuring a suspend interval and properly
923 * adds the sleep offset to the timekeeping variables.
924 */
John Stultzf726a692012-07-13 01:21:57 -0400925static void __timekeeping_inject_sleeptime(struct timekeeper *tk,
John Stultz7d489d12014-07-16 21:04:01 +0000926 struct timespec64 *delta)
John Stultz304529b2011-04-01 14:32:09 -0700927{
John Stultz7d489d12014-07-16 21:04:01 +0000928 if (!timespec64_valid_strict(delta)) {
John Stultz6d9bcb62014-06-04 16:11:43 -0700929 printk_deferred(KERN_WARNING
930 "__timekeeping_inject_sleeptime: Invalid "
931 "sleep delta value!\n");
John Stultzcb5de2f8d2011-06-01 18:18:09 -0700932 return;
933 }
John Stultzf726a692012-07-13 01:21:57 -0400934 tk_xtime_add(tk, delta);
John Stultz7d489d12014-07-16 21:04:01 +0000935 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, *delta));
936 tk_set_sleep_time(tk, timespec64_add(tk->total_sleep_time, *delta));
Colin Cross5c835452013-05-21 22:32:14 -0700937 tk_debug_account_sleep_time(delta);
John Stultz304529b2011-04-01 14:32:09 -0700938}
939
John Stultz304529b2011-04-01 14:32:09 -0700940/**
941 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
942 * @delta: pointer to a timespec delta value
943 *
944 * This hook is for architectures that cannot support read_persistent_clock
945 * because their RTC/persistent clock is only accessible when irqs are enabled.
946 *
947 * This function should only be called by rtc_resume(), and allows
948 * a suspend offset to be injected into the timekeeping values.
949 */
950void timekeeping_inject_sleeptime(struct timespec *delta)
951{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000952 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +0000953 struct timespec64 tmp;
John Stultz92c1d3e2011-11-14 14:05:44 -0800954 unsigned long flags;
John Stultz304529b2011-04-01 14:32:09 -0700955
Feng Tang31ade302013-01-16 00:09:47 +0800956 /*
957 * Make sure we don't set the clock twice, as timekeeping_resume()
958 * already did it
959 */
960 if (has_persistent_clock())
John Stultz304529b2011-04-01 14:32:09 -0700961 return;
962
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000963 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000964 write_seqcount_begin(&tk_core.seq);
John Stultz70471f22011-11-14 12:48:10 -0800965
John Stultz4e250fd2012-07-27 14:48:13 -0400966 timekeeping_forward_now(tk);
John Stultz304529b2011-04-01 14:32:09 -0700967
John Stultz7d489d12014-07-16 21:04:01 +0000968 tmp = timespec_to_timespec64(*delta);
969 __timekeeping_inject_sleeptime(tk, &tmp);
John Stultz304529b2011-04-01 14:32:09 -0700970
David Vrabel780427f2013-06-27 11:35:46 +0100971 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultz304529b2011-04-01 14:32:09 -0700972
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000973 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000974 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz304529b2011-04-01 14:32:09 -0700975
976 /* signal hrtimers about time change */
977 clock_was_set();
978}
979
John Stultz304529b2011-04-01 14:32:09 -0700980/**
john stultz85240702007-05-08 00:27:59 -0700981 * timekeeping_resume - Resumes the generic timekeeping subsystem.
john stultz85240702007-05-08 00:27:59 -0700982 *
983 * This is for the generic clocksource timekeeping.
984 * xtime/wall_to_monotonic/jiffies/etc are
985 * still managed by arch specific suspend/resume code.
986 */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100987static void timekeeping_resume(void)
john stultz85240702007-05-08 00:27:59 -0700988{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000989 struct timekeeper *tk = &tk_core.timekeeper;
Feng Tange445cf12013-03-12 11:56:48 +0800990 struct clocksource *clock = tk->clock;
John Stultz92c1d3e2011-11-14 14:05:44 -0800991 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +0000992 struct timespec64 ts_new, ts_delta;
993 struct timespec tmp;
Feng Tange445cf12013-03-12 11:56:48 +0800994 cycle_t cycle_now, cycle_delta;
995 bool suspendtime_found = false;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200996
John Stultz7d489d12014-07-16 21:04:01 +0000997 read_persistent_clock(&tmp);
998 ts_new = timespec_to_timespec64(tmp);
john stultz85240702007-05-08 00:27:59 -0700999
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +02001000 clockevents_resume();
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +02001001 clocksource_resume();
1002
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001003 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001004 write_seqcount_begin(&tk_core.seq);
john stultz85240702007-05-08 00:27:59 -07001005
Feng Tange445cf12013-03-12 11:56:48 +08001006 /*
1007 * After system resumes, we need to calculate the suspended time and
1008 * compensate it for the OS time. There are 3 sources that could be
1009 * used: Nonstop clocksource during suspend, persistent clock and rtc
1010 * device.
1011 *
1012 * One specific platform may have 1 or 2 or all of them, and the
1013 * preference will be:
1014 * suspend-nonstop clocksource -> persistent clock -> rtc
1015 * The less preferred source will only be tried if there is no better
1016 * usable source. The rtc part is handled separately in rtc core code.
1017 */
1018 cycle_now = clock->read(clock);
1019 if ((clock->flags & CLOCK_SOURCE_SUSPEND_NONSTOP) &&
1020 cycle_now > clock->cycle_last) {
1021 u64 num, max = ULLONG_MAX;
1022 u32 mult = clock->mult;
1023 u32 shift = clock->shift;
1024 s64 nsec = 0;
1025
1026 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
1027
1028 /*
1029 * "cycle_delta * mutl" may cause 64 bits overflow, if the
1030 * suspended time is too long. In that case we need do the
1031 * 64 bits math carefully
1032 */
1033 do_div(max, mult);
1034 if (cycle_delta > max) {
1035 num = div64_u64(cycle_delta, max);
1036 nsec = (((u64) max * mult) >> shift) * num;
1037 cycle_delta -= num * max;
1038 }
1039 nsec += ((u64) cycle_delta * mult) >> shift;
1040
John Stultz7d489d12014-07-16 21:04:01 +00001041 ts_delta = ns_to_timespec64(nsec);
Feng Tange445cf12013-03-12 11:56:48 +08001042 suspendtime_found = true;
John Stultz7d489d12014-07-16 21:04:01 +00001043 } else if (timespec64_compare(&ts_new, &timekeeping_suspend_time) > 0) {
1044 ts_delta = timespec64_sub(ts_new, timekeeping_suspend_time);
Feng Tange445cf12013-03-12 11:56:48 +08001045 suspendtime_found = true;
john stultz85240702007-05-08 00:27:59 -07001046 }
Feng Tange445cf12013-03-12 11:56:48 +08001047
1048 if (suspendtime_found)
1049 __timekeeping_inject_sleeptime(tk, &ts_delta);
1050
1051 /* Re-base the last cycle value */
Thomas Gleixner77c675b2013-04-22 09:37:04 +02001052 tk->cycle_last = clock->cycle_last = cycle_now;
John Stultz4e250fd2012-07-27 14:48:13 -04001053 tk->ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -07001054 timekeeping_suspended = 0;
David Vrabel780427f2013-06-27 11:35:46 +01001055 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001056 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001057 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001058
1059 touch_softlockup_watchdog();
1060
1061 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
1062
1063 /* Resume hrtimers */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +02001064 hrtimers_resume();
john stultz85240702007-05-08 00:27:59 -07001065}
1066
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001067static int timekeeping_suspend(void)
john stultz85240702007-05-08 00:27:59 -07001068{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001069 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -08001070 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +00001071 struct timespec64 delta, delta_delta;
1072 static struct timespec64 old_delta;
1073 struct timespec tmp;
john stultz85240702007-05-08 00:27:59 -07001074
John Stultz7d489d12014-07-16 21:04:01 +00001075 read_persistent_clock(&tmp);
1076 timekeeping_suspend_time = timespec_to_timespec64(tmp);
Thomas Gleixner3be90952007-09-16 15:36:43 +02001077
Zoran Markovic0d6bd992013-05-17 11:24:05 -07001078 /*
1079 * On some systems the persistent_clock can not be detected at
1080 * timekeeping_init by its return value, so if we see a valid
1081 * value returned, update the persistent_clock_exists flag.
1082 */
1083 if (timekeeping_suspend_time.tv_sec || timekeeping_suspend_time.tv_nsec)
1084 persistent_clock_exist = true;
1085
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001086 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001087 write_seqcount_begin(&tk_core.seq);
John Stultz4e250fd2012-07-27 14:48:13 -04001088 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -07001089 timekeeping_suspended = 1;
John Stultzcb332172011-05-31 22:53:23 -07001090
1091 /*
1092 * To avoid drift caused by repeated suspend/resumes,
1093 * which each can add ~1 second drift error,
1094 * try to compensate so the difference in system time
1095 * and persistent_clock time stays close to constant.
1096 */
John Stultz7d489d12014-07-16 21:04:01 +00001097 delta = timespec64_sub(tk_xtime(tk), timekeeping_suspend_time);
1098 delta_delta = timespec64_sub(delta, old_delta);
John Stultzcb332172011-05-31 22:53:23 -07001099 if (abs(delta_delta.tv_sec) >= 2) {
1100 /*
1101 * if delta_delta is too large, assume time correction
1102 * has occured and set old_delta to the current delta.
1103 */
1104 old_delta = delta;
1105 } else {
1106 /* Otherwise try to adjust old_system to compensate */
1107 timekeeping_suspend_time =
John Stultz7d489d12014-07-16 21:04:01 +00001108 timespec64_add(timekeeping_suspend_time, delta_delta);
John Stultzcb332172011-05-31 22:53:23 -07001109 }
John Stultz330a1612013-12-11 19:10:36 -08001110
1111 timekeeping_update(tk, TK_MIRROR);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001112 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001113 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001114
1115 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
Magnus Dammc54a42b2010-02-02 14:41:41 -08001116 clocksource_suspend();
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +02001117 clockevents_suspend();
john stultz85240702007-05-08 00:27:59 -07001118
1119 return 0;
1120}
1121
1122/* sysfs resume/suspend bits for timekeeping */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001123static struct syscore_ops timekeeping_syscore_ops = {
john stultz85240702007-05-08 00:27:59 -07001124 .resume = timekeeping_resume,
1125 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -07001126};
1127
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001128static int __init timekeeping_init_ops(void)
john stultz85240702007-05-08 00:27:59 -07001129{
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001130 register_syscore_ops(&timekeeping_syscore_ops);
1131 return 0;
john stultz85240702007-05-08 00:27:59 -07001132}
1133
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001134device_initcall(timekeeping_init_ops);
john stultz85240702007-05-08 00:27:59 -07001135
1136/*
1137 * If the error is already larger, we look ahead even further
1138 * to compensate for late or lost adjustments.
1139 */
John Stultzf726a692012-07-13 01:21:57 -04001140static __always_inline int timekeeping_bigadjust(struct timekeeper *tk,
1141 s64 error, s64 *interval,
john stultz85240702007-05-08 00:27:59 -07001142 s64 *offset)
1143{
1144 s64 tick_error, i;
1145 u32 look_ahead, adj;
1146 s32 error2, mult;
1147
1148 /*
1149 * Use the current error value to determine how much to look ahead.
1150 * The larger the error the slower we adjust for it to avoid problems
1151 * with losing too many ticks, otherwise we would overadjust and
1152 * produce an even larger error. The smaller the adjustment the
1153 * faster we try to adjust for it, as lost ticks can do less harm
Li Zefan3eb05672008-02-08 04:19:25 -08001154 * here. This is tuned so that an error of about 1 msec is adjusted
john stultz85240702007-05-08 00:27:59 -07001155 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
1156 */
John Stultzf726a692012-07-13 01:21:57 -04001157 error2 = tk->ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
john stultz85240702007-05-08 00:27:59 -07001158 error2 = abs(error2);
1159 for (look_ahead = 0; error2 > 0; look_ahead++)
1160 error2 >>= 2;
1161
1162 /*
1163 * Now calculate the error in (1 << look_ahead) ticks, but first
1164 * remove the single look ahead already included in the error.
1165 */
John Stultzf726a692012-07-13 01:21:57 -04001166 tick_error = ntp_tick_length() >> (tk->ntp_error_shift + 1);
1167 tick_error -= tk->xtime_interval >> 1;
john stultz85240702007-05-08 00:27:59 -07001168 error = ((error - tick_error) >> look_ahead) + tick_error;
1169
1170 /* Finally calculate the adjustment shift value. */
1171 i = *interval;
1172 mult = 1;
1173 if (error < 0) {
1174 error = -error;
1175 *interval = -*interval;
1176 *offset = -*offset;
1177 mult = -1;
1178 }
1179 for (adj = 0; error > i; adj++)
1180 error >>= 1;
1181
1182 *interval <<= adj;
1183 *offset <<= adj;
1184 return mult << adj;
1185}
1186
1187/*
1188 * Adjust the multiplier to reduce the error value,
1189 * this is optimized for the most common adjustments of -1,0,1,
1190 * for other values we can do a bit more work.
1191 */
John Stultzf726a692012-07-13 01:21:57 -04001192static void timekeeping_adjust(struct timekeeper *tk, s64 offset)
john stultz85240702007-05-08 00:27:59 -07001193{
John Stultzf726a692012-07-13 01:21:57 -04001194 s64 error, interval = tk->cycle_interval;
john stultz85240702007-05-08 00:27:59 -07001195 int adj;
1196
John Stultzc2bc1112011-10-27 18:12:42 -07001197 /*
Jim Cromie88b28ad2012-03-14 21:28:56 -06001198 * The point of this is to check if the error is greater than half
John Stultzc2bc1112011-10-27 18:12:42 -07001199 * an interval.
1200 *
1201 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
1202 *
1203 * Note we subtract one in the shift, so that error is really error*2.
John Stultz3f86f282011-10-27 17:41:17 -07001204 * This "saves" dividing(shifting) interval twice, but keeps the
1205 * (error > interval) comparison as still measuring if error is
Jim Cromie88b28ad2012-03-14 21:28:56 -06001206 * larger than half an interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001207 *
John Stultz3f86f282011-10-27 17:41:17 -07001208 * Note: It does not "save" on aggravation when reading the code.
John Stultzc2bc1112011-10-27 18:12:42 -07001209 */
John Stultzf726a692012-07-13 01:21:57 -04001210 error = tk->ntp_error >> (tk->ntp_error_shift - 1);
john stultz85240702007-05-08 00:27:59 -07001211 if (error > interval) {
John Stultzc2bc1112011-10-27 18:12:42 -07001212 /*
1213 * We now divide error by 4(via shift), which checks if
Jim Cromie88b28ad2012-03-14 21:28:56 -06001214 * the error is greater than twice the interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001215 * If it is greater, we need a bigadjust, if its smaller,
1216 * we can adjust by 1.
1217 */
john stultz85240702007-05-08 00:27:59 -07001218 error >>= 2;
1219 if (likely(error <= interval))
1220 adj = 1;
1221 else
Ingo Molnar1d17d172012-08-04 21:21:14 +02001222 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1223 } else {
1224 if (error < -interval) {
1225 /* See comment above, this is just switched for the negative */
1226 error >>= 2;
1227 if (likely(error >= -interval)) {
1228 adj = -1;
1229 interval = -interval;
1230 offset = -offset;
1231 } else {
1232 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1233 }
1234 } else {
1235 goto out_adjust;
1236 }
1237 }
john stultz85240702007-05-08 00:27:59 -07001238
John Stultzf726a692012-07-13 01:21:57 -04001239 if (unlikely(tk->clock->maxadj &&
1240 (tk->mult + adj > tk->clock->mult + tk->clock->maxadj))) {
John Stultz6d9bcb62014-06-04 16:11:43 -07001241 printk_deferred_once(KERN_WARNING
John Stultze919cfd2012-03-22 19:14:46 -07001242 "Adjusting %s more than 11%% (%ld vs %ld)\n",
John Stultzf726a692012-07-13 01:21:57 -04001243 tk->clock->name, (long)tk->mult + adj,
1244 (long)tk->clock->mult + tk->clock->maxadj);
John Stultze919cfd2012-03-22 19:14:46 -07001245 }
John Stultzc2bc1112011-10-27 18:12:42 -07001246 /*
1247 * So the following can be confusing.
1248 *
1249 * To keep things simple, lets assume adj == 1 for now.
1250 *
1251 * When adj != 1, remember that the interval and offset values
1252 * have been appropriately scaled so the math is the same.
1253 *
1254 * The basic idea here is that we're increasing the multiplier
1255 * by one, this causes the xtime_interval to be incremented by
1256 * one cycle_interval. This is because:
1257 * xtime_interval = cycle_interval * mult
1258 * So if mult is being incremented by one:
1259 * xtime_interval = cycle_interval * (mult + 1)
1260 * Its the same as:
1261 * xtime_interval = (cycle_interval * mult) + cycle_interval
1262 * Which can be shortened to:
1263 * xtime_interval += cycle_interval
1264 *
1265 * So offset stores the non-accumulated cycles. Thus the current
1266 * time (in shifted nanoseconds) is:
1267 * now = (offset * adj) + xtime_nsec
1268 * Now, even though we're adjusting the clock frequency, we have
1269 * to keep time consistent. In other words, we can't jump back
1270 * in time, and we also want to avoid jumping forward in time.
1271 *
1272 * So given the same offset value, we need the time to be the same
1273 * both before and after the freq adjustment.
1274 * now = (offset * adj_1) + xtime_nsec_1
1275 * now = (offset * adj_2) + xtime_nsec_2
1276 * So:
1277 * (offset * adj_1) + xtime_nsec_1 =
1278 * (offset * adj_2) + xtime_nsec_2
1279 * And we know:
1280 * adj_2 = adj_1 + 1
1281 * So:
1282 * (offset * adj_1) + xtime_nsec_1 =
1283 * (offset * (adj_1+1)) + xtime_nsec_2
1284 * (offset * adj_1) + xtime_nsec_1 =
1285 * (offset * adj_1) + offset + xtime_nsec_2
1286 * Canceling the sides:
1287 * xtime_nsec_1 = offset + xtime_nsec_2
1288 * Which gives us:
1289 * xtime_nsec_2 = xtime_nsec_1 - offset
1290 * Which simplfies to:
1291 * xtime_nsec -= offset
1292 *
1293 * XXX - TODO: Doc ntp_error calculation.
1294 */
John Stultzf726a692012-07-13 01:21:57 -04001295 tk->mult += adj;
1296 tk->xtime_interval += interval;
1297 tk->xtime_nsec -= offset;
1298 tk->ntp_error -= (interval - offset) << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001299
Ingo Molnar1d17d172012-08-04 21:21:14 +02001300out_adjust:
John Stultz2a8c0882012-07-13 01:21:56 -04001301 /*
1302 * It may be possible that when we entered this function, xtime_nsec
1303 * was very small. Further, if we're slightly speeding the clocksource
1304 * in the code above, its possible the required corrective factor to
1305 * xtime_nsec could cause it to underflow.
1306 *
1307 * Now, since we already accumulated the second, cannot simply roll
1308 * the accumulated second back, since the NTP subsystem has been
1309 * notified via second_overflow. So instead we push xtime_nsec forward
1310 * by the amount we underflowed, and add that amount into the error.
1311 *
1312 * We'll correct this error next time through this function, when
1313 * xtime_nsec is not as small.
1314 */
John Stultzf726a692012-07-13 01:21:57 -04001315 if (unlikely((s64)tk->xtime_nsec < 0)) {
1316 s64 neg = -(s64)tk->xtime_nsec;
1317 tk->xtime_nsec = 0;
1318 tk->ntp_error += neg << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001319 }
1320
john stultz85240702007-05-08 00:27:59 -07001321}
1322
1323/**
John Stultz1f4f9482012-07-13 01:21:54 -04001324 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
1325 *
1326 * Helper function that accumulates a the nsecs greater then a second
1327 * from the xtime_nsec field to the xtime_secs field.
1328 * It also calls into the NTP code to handle leapsecond processing.
1329 *
1330 */
David Vrabel780427f2013-06-27 11:35:46 +01001331static inline unsigned int accumulate_nsecs_to_secs(struct timekeeper *tk)
John Stultz1f4f9482012-07-13 01:21:54 -04001332{
1333 u64 nsecps = (u64)NSEC_PER_SEC << tk->shift;
John Stultz5258d3f2013-12-11 20:07:49 -08001334 unsigned int clock_set = 0;
John Stultz1f4f9482012-07-13 01:21:54 -04001335
1336 while (tk->xtime_nsec >= nsecps) {
1337 int leap;
1338
1339 tk->xtime_nsec -= nsecps;
1340 tk->xtime_sec++;
1341
1342 /* Figure out if its a leap sec and apply if needed */
1343 leap = second_overflow(tk->xtime_sec);
John Stultz6d0ef902012-07-27 14:48:12 -04001344 if (unlikely(leap)) {
John Stultz7d489d12014-07-16 21:04:01 +00001345 struct timespec64 ts;
John Stultz1f4f9482012-07-13 01:21:54 -04001346
John Stultz6d0ef902012-07-27 14:48:12 -04001347 tk->xtime_sec += leap;
1348
1349 ts.tv_sec = leap;
1350 ts.tv_nsec = 0;
1351 tk_set_wall_to_mono(tk,
John Stultz7d489d12014-07-16 21:04:01 +00001352 timespec64_sub(tk->wall_to_monotonic, ts));
John Stultz6d0ef902012-07-27 14:48:12 -04001353
John Stultzcc244dd2012-05-03 12:30:07 -07001354 __timekeeping_set_tai_offset(tk, tk->tai_offset - leap);
1355
John Stultz5258d3f2013-12-11 20:07:49 -08001356 clock_set = TK_CLOCK_WAS_SET;
John Stultz6d0ef902012-07-27 14:48:12 -04001357 }
John Stultz1f4f9482012-07-13 01:21:54 -04001358 }
John Stultz5258d3f2013-12-11 20:07:49 -08001359 return clock_set;
John Stultz1f4f9482012-07-13 01:21:54 -04001360}
1361
John Stultz1f4f9482012-07-13 01:21:54 -04001362/**
john stultza092ff02009-10-02 16:17:53 -07001363 * logarithmic_accumulation - shifted accumulation of cycles
1364 *
1365 * This functions accumulates a shifted interval of cycles into
1366 * into a shifted interval nanoseconds. Allows for O(log) accumulation
1367 * loop.
1368 *
1369 * Returns the unconsumed cycles.
1370 */
John Stultzf726a692012-07-13 01:21:57 -04001371static cycle_t logarithmic_accumulation(struct timekeeper *tk, cycle_t offset,
John Stultz5258d3f2013-12-11 20:07:49 -08001372 u32 shift,
1373 unsigned int *clock_set)
john stultza092ff02009-10-02 16:17:53 -07001374{
Thomas Gleixner23a95372013-02-21 22:51:36 +00001375 cycle_t interval = tk->cycle_interval << shift;
Jason Wesseldeda2e82010-08-09 14:20:09 -07001376 u64 raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001377
John Stultzf726a692012-07-13 01:21:57 -04001378 /* If the offset is smaller then a shifted interval, do nothing */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001379 if (offset < interval)
john stultza092ff02009-10-02 16:17:53 -07001380 return offset;
1381
1382 /* Accumulate one shifted interval */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001383 offset -= interval;
Thomas Gleixner7ec98e12013-02-21 22:51:39 +00001384 tk->cycle_last += interval;
john stultza092ff02009-10-02 16:17:53 -07001385
John Stultzf726a692012-07-13 01:21:57 -04001386 tk->xtime_nsec += tk->xtime_interval << shift;
John Stultz5258d3f2013-12-11 20:07:49 -08001387 *clock_set |= accumulate_nsecs_to_secs(tk);
john stultza092ff02009-10-02 16:17:53 -07001388
Jason Wesseldeda2e82010-08-09 14:20:09 -07001389 /* Accumulate raw time */
Dan Carpenter5b3900c2012-10-09 10:18:23 +03001390 raw_nsecs = (u64)tk->raw_interval << shift;
John Stultzf726a692012-07-13 01:21:57 -04001391 raw_nsecs += tk->raw_time.tv_nsec;
John Stultzc7dcf872010-08-13 11:30:58 -07001392 if (raw_nsecs >= NSEC_PER_SEC) {
1393 u64 raw_secs = raw_nsecs;
1394 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
John Stultzf726a692012-07-13 01:21:57 -04001395 tk->raw_time.tv_sec += raw_secs;
john stultza092ff02009-10-02 16:17:53 -07001396 }
John Stultzf726a692012-07-13 01:21:57 -04001397 tk->raw_time.tv_nsec = raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001398
1399 /* Accumulate error between NTP and clock interval */
John Stultzf726a692012-07-13 01:21:57 -04001400 tk->ntp_error += ntp_tick_length() << shift;
1401 tk->ntp_error -= (tk->xtime_interval + tk->xtime_remainder) <<
1402 (tk->ntp_error_shift + shift);
john stultza092ff02009-10-02 16:17:53 -07001403
1404 return offset;
1405}
1406
john stultz85240702007-05-08 00:27:59 -07001407/**
1408 * update_wall_time - Uses the current clocksource to increment the wall time
1409 *
john stultz85240702007-05-08 00:27:59 -07001410 */
John Stultz47a1b7962013-12-12 13:10:55 -08001411void update_wall_time(void)
john stultz85240702007-05-08 00:27:59 -07001412{
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001413 struct clocksource *clock;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001414 struct timekeeper *real_tk = &tk_core.timekeeper;
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001415 struct timekeeper *tk = &shadow_timekeeper;
john stultz85240702007-05-08 00:27:59 -07001416 cycle_t offset;
john stultza092ff02009-10-02 16:17:53 -07001417 int shift = 0, maxshift;
John Stultz5258d3f2013-12-11 20:07:49 -08001418 unsigned int clock_set = 0;
John Stultz70471f22011-11-14 12:48:10 -08001419 unsigned long flags;
1420
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001421 raw_spin_lock_irqsave(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001422
1423 /* Make sure we're fully resumed: */
1424 if (unlikely(timekeeping_suspended))
John Stultz70471f22011-11-14 12:48:10 -08001425 goto out;
john stultz85240702007-05-08 00:27:59 -07001426
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001427 clock = real_tk->clock;
John Stultz592913e2010-07-13 17:56:20 -07001428
1429#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001430 offset = real_tk->cycle_interval;
John Stultz592913e2010-07-13 17:56:20 -07001431#else
1432 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
john stultz85240702007-05-08 00:27:59 -07001433#endif
john stultz85240702007-05-08 00:27:59 -07001434
John Stultzbf2ac312012-08-21 20:30:49 -04001435 /* Check if there's really nothing to do */
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001436 if (offset < real_tk->cycle_interval)
John Stultzbf2ac312012-08-21 20:30:49 -04001437 goto out;
1438
john stultza092ff02009-10-02 16:17:53 -07001439 /*
1440 * With NO_HZ we may have to accumulate many cycle_intervals
1441 * (think "ticks") worth of time at once. To do this efficiently,
1442 * we calculate the largest doubling multiple of cycle_intervals
Jim Cromie88b28ad2012-03-14 21:28:56 -06001443 * that is smaller than the offset. We then accumulate that
john stultza092ff02009-10-02 16:17:53 -07001444 * chunk in one go, and then try to consume the next smaller
1445 * doubled multiple.
john stultz85240702007-05-08 00:27:59 -07001446 */
John Stultz4e250fd2012-07-27 14:48:13 -04001447 shift = ilog2(offset) - ilog2(tk->cycle_interval);
john stultza092ff02009-10-02 16:17:53 -07001448 shift = max(0, shift);
Jim Cromie88b28ad2012-03-14 21:28:56 -06001449 /* Bound shift to one less than what overflows tick_length */
John Stultzea7cf492011-11-14 13:18:07 -08001450 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
john stultza092ff02009-10-02 16:17:53 -07001451 shift = min(shift, maxshift);
John Stultz4e250fd2012-07-27 14:48:13 -04001452 while (offset >= tk->cycle_interval) {
John Stultz5258d3f2013-12-11 20:07:49 -08001453 offset = logarithmic_accumulation(tk, offset, shift,
1454 &clock_set);
John Stultz4e250fd2012-07-27 14:48:13 -04001455 if (offset < tk->cycle_interval<<shift)
John Stultz830ec042010-03-18 14:47:30 -07001456 shift--;
john stultz85240702007-05-08 00:27:59 -07001457 }
1458
1459 /* correct the clock when NTP error is too big */
John Stultz4e250fd2012-07-27 14:48:13 -04001460 timekeeping_adjust(tk, offset);
john stultz85240702007-05-08 00:27:59 -07001461
John Stultz6a867a32010-04-06 14:30:51 -07001462 /*
John Stultz92bb1fc2012-09-04 15:38:12 -04001463 * XXX This can be killed once everyone converts
1464 * to the new update_vsyscall.
1465 */
1466 old_vsyscall_fixup(tk);
john stultz85240702007-05-08 00:27:59 -07001467
John Stultz6a867a32010-04-06 14:30:51 -07001468 /*
1469 * Finally, make sure that after the rounding
John Stultz1e75fa82012-07-13 01:21:53 -04001470 * xtime_nsec isn't larger than NSEC_PER_SEC
John Stultz6a867a32010-04-06 14:30:51 -07001471 */
John Stultz5258d3f2013-12-11 20:07:49 -08001472 clock_set |= accumulate_nsecs_to_secs(tk);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001473
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001474 write_seqcount_begin(&tk_core.seq);
Thomas Gleixner7ec98e12013-02-21 22:51:39 +00001475 /* Update clock->cycle_last with the new value */
1476 clock->cycle_last = tk->cycle_last;
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001477 /*
1478 * Update the real timekeeper.
1479 *
1480 * We could avoid this memcpy by switching pointers, but that
1481 * requires changes to all other timekeeper usage sites as
1482 * well, i.e. move the timekeeper pointer getter into the
1483 * spinlocked/seqcount protected sections. And we trade this
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001484 * memcpy under the tk_core.seq against one before we start
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001485 * updating.
1486 */
1487 memcpy(real_tk, tk, sizeof(*tk));
John Stultz5258d3f2013-12-11 20:07:49 -08001488 timekeeping_update(real_tk, clock_set);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001489 write_seqcount_end(&tk_core.seq);
Thomas Gleixnerca4523c2013-02-21 22:51:40 +00001490out:
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001491 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz47a1b7962013-12-12 13:10:55 -08001492 if (clock_set)
John Stultzcab5e122014-03-27 16:30:49 -07001493 /* Have to call _delayed version, since in irq context*/
1494 clock_was_set_delayed();
john stultz85240702007-05-08 00:27:59 -07001495}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001496
1497/**
1498 * getboottime - Return the real time of system boot.
1499 * @ts: pointer to the timespec to be set
1500 *
John Stultzabb3a4e2011-02-14 17:52:09 -08001501 * Returns the wall-time of boot in a timespec.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001502 *
1503 * This is based on the wall_to_monotonic offset and the total suspend
1504 * time. Calls to settimeofday will affect the value returned (which
1505 * basically means that however wrong your real time clock is at boot time,
1506 * you get the right time here).
1507 */
1508void getboottime(struct timespec *ts)
1509{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001510 struct timekeeper *tk = &tk_core.timekeeper;
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001511 struct timespec boottime = {
John Stultz4e250fd2012-07-27 14:48:13 -04001512 .tv_sec = tk->wall_to_monotonic.tv_sec +
1513 tk->total_sleep_time.tv_sec,
1514 .tv_nsec = tk->wall_to_monotonic.tv_nsec +
1515 tk->total_sleep_time.tv_nsec
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001516 };
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001517
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001518 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001519}
Jason Wangc93d89f2010-01-27 19:13:40 +08001520EXPORT_SYMBOL_GPL(getboottime);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001521
John Stultzabb3a4e2011-02-14 17:52:09 -08001522/**
1523 * get_monotonic_boottime - Returns monotonic time since boot
1524 * @ts: pointer to the timespec to be set
1525 *
1526 * Returns the monotonic time since boot in a timespec.
1527 *
1528 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1529 * includes the time spent in suspend.
1530 */
1531void get_monotonic_boottime(struct timespec *ts)
1532{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001533 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001534 struct timespec64 tomono, sleep, ret;
John Stultzec145ba2012-09-11 19:26:03 -04001535 s64 nsec;
John Stultzabb3a4e2011-02-14 17:52:09 -08001536 unsigned int seq;
John Stultzabb3a4e2011-02-14 17:52:09 -08001537
1538 WARN_ON(timekeeping_suspended);
1539
1540 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001541 seq = read_seqcount_begin(&tk_core.seq);
John Stultz7d489d12014-07-16 21:04:01 +00001542 ret.tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -04001543 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -04001544 tomono = tk->wall_to_monotonic;
1545 sleep = tk->total_sleep_time;
John Stultzabb3a4e2011-02-14 17:52:09 -08001546
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001547 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultzabb3a4e2011-02-14 17:52:09 -08001548
John Stultz7d489d12014-07-16 21:04:01 +00001549 ret.tv_sec += tomono.tv_sec + sleep.tv_sec;
1550 ret.tv_nsec = 0;
1551 timespec64_add_ns(&ret, nsec + tomono.tv_nsec + sleep.tv_nsec);
1552 *ts = timespec64_to_timespec(ret);
John Stultzabb3a4e2011-02-14 17:52:09 -08001553}
1554EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1555
1556/**
1557 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1558 *
1559 * Returns the monotonic time since boot in a ktime
1560 *
1561 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1562 * includes the time spent in suspend.
1563 */
1564ktime_t ktime_get_boottime(void)
1565{
1566 struct timespec ts;
1567
1568 get_monotonic_boottime(&ts);
1569 return timespec_to_ktime(ts);
1570}
1571EXPORT_SYMBOL_GPL(ktime_get_boottime);
1572
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001573/**
1574 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1575 * @ts: pointer to the timespec to be converted
1576 */
1577void monotonic_to_bootbased(struct timespec *ts)
1578{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001579 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001580 struct timespec64 ts64;
John Stultz4e250fd2012-07-27 14:48:13 -04001581
John Stultz7d489d12014-07-16 21:04:01 +00001582 ts64 = timespec_to_timespec64(*ts);
1583 ts64 = timespec64_add(ts64, tk->total_sleep_time);
1584 *ts = timespec64_to_timespec(ts64);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001585}
Jason Wangc93d89f2010-01-27 19:13:40 +08001586EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
john stultz2c6b47d2007-07-24 17:47:43 -07001587
john stultz17c38b72007-07-24 18:38:34 -07001588unsigned long get_seconds(void)
1589{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001590 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz4e250fd2012-07-27 14:48:13 -04001591
1592 return tk->xtime_sec;
john stultz17c38b72007-07-24 18:38:34 -07001593}
1594EXPORT_SYMBOL(get_seconds);
1595
john stultzda15cfd2009-08-19 19:13:34 -07001596struct timespec __current_kernel_time(void)
1597{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001598 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz4e250fd2012-07-27 14:48:13 -04001599
John Stultz7d489d12014-07-16 21:04:01 +00001600 return timespec64_to_timespec(tk_xtime(tk));
john stultzda15cfd2009-08-19 19:13:34 -07001601}
john stultz17c38b72007-07-24 18:38:34 -07001602
john stultz2c6b47d2007-07-24 17:47:43 -07001603struct timespec current_kernel_time(void)
1604{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001605 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001606 struct timespec64 now;
john stultz2c6b47d2007-07-24 17:47:43 -07001607 unsigned long seq;
1608
1609 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001610 seq = read_seqcount_begin(&tk_core.seq);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001611
John Stultz4e250fd2012-07-27 14:48:13 -04001612 now = tk_xtime(tk);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001613 } while (read_seqcount_retry(&tk_core.seq, seq));
john stultz2c6b47d2007-07-24 17:47:43 -07001614
John Stultz7d489d12014-07-16 21:04:01 +00001615 return timespec64_to_timespec(now);
john stultz2c6b47d2007-07-24 17:47:43 -07001616}
john stultz2c6b47d2007-07-24 17:47:43 -07001617EXPORT_SYMBOL(current_kernel_time);
john stultzda15cfd2009-08-19 19:13:34 -07001618
1619struct timespec get_monotonic_coarse(void)
1620{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001621 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001622 struct timespec64 now, mono;
john stultzda15cfd2009-08-19 19:13:34 -07001623 unsigned long seq;
1624
1625 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001626 seq = read_seqcount_begin(&tk_core.seq);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001627
John Stultz4e250fd2012-07-27 14:48:13 -04001628 now = tk_xtime(tk);
1629 mono = tk->wall_to_monotonic;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001630 } while (read_seqcount_retry(&tk_core.seq, seq));
john stultzda15cfd2009-08-19 19:13:34 -07001631
John Stultz7d489d12014-07-16 21:04:01 +00001632 set_normalized_timespec64(&now, now.tv_sec + mono.tv_sec,
john stultzda15cfd2009-08-19 19:13:34 -07001633 now.tv_nsec + mono.tv_nsec);
John Stultz7d489d12014-07-16 21:04:01 +00001634
1635 return timespec64_to_timespec(now);
john stultzda15cfd2009-08-19 19:13:34 -07001636}
Torben Hohn871cf1e2011-01-27 15:58:55 +01001637
1638/*
John Stultzd6ad4182012-02-28 16:50:11 -08001639 * Must hold jiffies_lock
Torben Hohn871cf1e2011-01-27 15:58:55 +01001640 */
1641void do_timer(unsigned long ticks)
1642{
1643 jiffies_64 += ticks;
Torben Hohn871cf1e2011-01-27 15:58:55 +01001644 calc_global_load(ticks);
1645}
Torben Hohn48cf76f72011-01-27 15:59:05 +01001646
1647/**
John Stultz76f41082014-07-16 21:03:52 +00001648 * ktime_get_update_offsets_tick - hrtimer helper
1649 * @offs_real: pointer to storage for monotonic -> realtime offset
1650 * @offs_boot: pointer to storage for monotonic -> boottime offset
1651 * @offs_tai: pointer to storage for monotonic -> clock tai offset
1652 *
1653 * Returns monotonic time at last tick and various offsets
Torben Hohn48cf76f72011-01-27 15:59:05 +01001654 */
John Stultz76f41082014-07-16 21:03:52 +00001655ktime_t ktime_get_update_offsets_tick(ktime_t *offs_real, ktime_t *offs_boot,
1656 ktime_t *offs_tai)
Torben Hohn48cf76f72011-01-27 15:59:05 +01001657{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001658 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001659 struct timespec64 ts;
John Stultz76f41082014-07-16 21:03:52 +00001660 ktime_t now;
1661 unsigned int seq;
Torben Hohn48cf76f72011-01-27 15:59:05 +01001662
1663 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001664 seq = read_seqcount_begin(&tk_core.seq);
John Stultz76f41082014-07-16 21:03:52 +00001665
1666 ts = tk_xtime(tk);
John Stultz76f41082014-07-16 21:03:52 +00001667 *offs_real = tk->offs_real;
1668 *offs_boot = tk->offs_boot;
1669 *offs_tai = tk->offs_tai;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001670 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz76f41082014-07-16 21:03:52 +00001671
1672 now = ktime_set(ts.tv_sec, ts.tv_nsec);
1673 now = ktime_sub(now, *offs_real);
1674 return now;
Torben Hohn48cf76f72011-01-27 15:59:05 +01001675}
Torben Hohnf0af911a92011-01-27 15:59:10 +01001676
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001677#ifdef CONFIG_HIGH_RES_TIMERS
1678/**
John Stultz76f41082014-07-16 21:03:52 +00001679 * ktime_get_update_offsets_now - hrtimer helper
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001680 * @offs_real: pointer to storage for monotonic -> realtime offset
1681 * @offs_boot: pointer to storage for monotonic -> boottime offset
Xie XiuQib7bc50e2013-10-18 09:13:30 +08001682 * @offs_tai: pointer to storage for monotonic -> clock tai offset
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001683 *
1684 * Returns current monotonic time and updates the offsets
Xie XiuQib7bc50e2013-10-18 09:13:30 +08001685 * Called from hrtimer_interrupt() or retrigger_next_event()
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001686 */
John Stultz76f41082014-07-16 21:03:52 +00001687ktime_t ktime_get_update_offsets_now(ktime_t *offs_real, ktime_t *offs_boot,
John Stultz90adda92013-01-21 17:00:11 -08001688 ktime_t *offs_tai)
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001689{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001690 struct timekeeper *tk = &tk_core.timekeeper;
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001691 ktime_t now;
1692 unsigned int seq;
1693 u64 secs, nsecs;
1694
1695 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001696 seq = read_seqcount_begin(&tk_core.seq);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001697
John Stultz4e250fd2012-07-27 14:48:13 -04001698 secs = tk->xtime_sec;
1699 nsecs = timekeeping_get_ns(tk);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001700
John Stultz4e250fd2012-07-27 14:48:13 -04001701 *offs_real = tk->offs_real;
1702 *offs_boot = tk->offs_boot;
John Stultz90adda92013-01-21 17:00:11 -08001703 *offs_tai = tk->offs_tai;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001704 } while (read_seqcount_retry(&tk_core.seq, seq));
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001705
1706 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1707 now = ktime_sub(now, *offs_real);
1708 return now;
1709}
1710#endif
1711
Torben Hohnf0af911a92011-01-27 15:59:10 +01001712/**
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001713 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1714 */
1715ktime_t ktime_get_monotonic_offset(void)
1716{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001717 struct timekeeper *tk = &tk_core.timekeeper;
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001718 unsigned long seq;
John Stultz7d489d12014-07-16 21:04:01 +00001719 struct timespec64 wtom;
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001720
1721 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001722 seq = read_seqcount_begin(&tk_core.seq);
John Stultz4e250fd2012-07-27 14:48:13 -04001723 wtom = tk->wall_to_monotonic;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001724 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz70471f22011-11-14 12:48:10 -08001725
John Stultz7d489d12014-07-16 21:04:01 +00001726 return timespec64_to_ktime(wtom);
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001727}
John Stultza80b83b2012-02-03 00:19:07 -08001728EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1729
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001730/**
John Stultzaa6f9c592013-03-22 11:31:29 -07001731 * do_adjtimex() - Accessor function to NTP __do_adjtimex function
1732 */
1733int do_adjtimex(struct timex *txc)
1734{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001735 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz06c017f2013-03-22 11:37:28 -07001736 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +00001737 struct timespec64 ts;
John Stultz4e8f8b32013-04-10 12:41:49 -07001738 s32 orig_tai, tai;
John Stultze4085692013-03-22 12:08:52 -07001739 int ret;
1740
1741 /* Validate the data before disabling interrupts */
1742 ret = ntp_validate_timex(txc);
1743 if (ret)
1744 return ret;
1745
John Stultzcef90372013-03-22 15:04:13 -07001746 if (txc->modes & ADJ_SETOFFSET) {
1747 struct timespec delta;
1748 delta.tv_sec = txc->time.tv_sec;
1749 delta.tv_nsec = txc->time.tv_usec;
1750 if (!(txc->modes & ADJ_NANO))
1751 delta.tv_nsec *= 1000;
1752 ret = timekeeping_inject_offset(&delta);
1753 if (ret)
1754 return ret;
1755 }
1756
Thomas Gleixnerd6d29892014-07-16 21:04:04 +00001757 getnstimeofday64(&ts);
John Stultzaa6f9c592013-03-22 11:31:29 -07001758
John Stultz06c017f2013-03-22 11:37:28 -07001759 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001760 write_seqcount_begin(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -07001761
John Stultz4e8f8b32013-04-10 12:41:49 -07001762 orig_tai = tai = tk->tai_offset;
John Stultz87ace392013-03-22 12:28:15 -07001763 ret = __do_adjtimex(txc, &ts, &tai);
1764
John Stultz4e8f8b32013-04-10 12:41:49 -07001765 if (tai != orig_tai) {
1766 __timekeeping_set_tai_offset(tk, tai);
John Stultzf55c0762013-12-11 18:50:25 -08001767 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultz4e8f8b32013-04-10 12:41:49 -07001768 }
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001769 write_seqcount_end(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -07001770 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
1771
John Stultz6fdda9a2013-12-10 17:18:18 -08001772 if (tai != orig_tai)
1773 clock_was_set();
1774
John Stultz7bd36012013-09-11 16:50:56 -07001775 ntp_notify_cmos_timer();
1776
John Stultz87ace392013-03-22 12:28:15 -07001777 return ret;
1778}
John Stultzaa6f9c592013-03-22 11:31:29 -07001779
1780#ifdef CONFIG_NTP_PPS
1781/**
1782 * hardpps() - Accessor function to NTP __hardpps function
1783 */
1784void hardpps(const struct timespec *phase_ts, const struct timespec *raw_ts)
1785{
John Stultz06c017f2013-03-22 11:37:28 -07001786 unsigned long flags;
1787
1788 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001789 write_seqcount_begin(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -07001790
John Stultzaa6f9c592013-03-22 11:31:29 -07001791 __hardpps(phase_ts, raw_ts);
John Stultz06c017f2013-03-22 11:37:28 -07001792
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001793 write_seqcount_end(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -07001794 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzaa6f9c592013-03-22 11:31:29 -07001795}
1796EXPORT_SYMBOL(hardpps);
1797#endif
1798
1799/**
Torben Hohnf0af911a92011-01-27 15:59:10 +01001800 * xtime_update() - advances the timekeeping infrastructure
1801 * @ticks: number of ticks, that have elapsed since the last call.
1802 *
1803 * Must be called with interrupts disabled.
1804 */
1805void xtime_update(unsigned long ticks)
1806{
John Stultzd6ad4182012-02-28 16:50:11 -08001807 write_seqlock(&jiffies_lock);
Torben Hohnf0af911a92011-01-27 15:59:10 +01001808 do_timer(ticks);
John Stultzd6ad4182012-02-28 16:50:11 -08001809 write_sequnlock(&jiffies_lock);
John Stultz47a1b7962013-12-12 13:10:55 -08001810 update_wall_time();
Torben Hohnf0af911a92011-01-27 15:59:10 +01001811}