blob: d831827d7ab0113e74494e6b6f5d0038faa2fd32 [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
Thomas Gleixner4396e052014-07-16 21:05:23 +000047/**
48 * struct tk_fast - NMI safe timekeeper
49 * @seq: Sequence counter for protecting updates. The lowest bit
50 * is the index for the tk_read_base array
51 * @base: tk_read_base array. Access is indexed by the lowest bit of
52 * @seq.
53 *
54 * See @update_fast_timekeeper() below.
55 */
56struct tk_fast {
57 seqcount_t seq;
58 struct tk_read_base base[2];
59};
60
61static struct tk_fast tk_fast_mono ____cacheline_aligned;
Peter Zijlstraf09cb9a2015-03-19 09:39:08 +010062static struct tk_fast tk_fast_raw ____cacheline_aligned;
Thomas Gleixner4396e052014-07-16 21:05:23 +000063
John Stultz8fcce542011-11-14 11:46:39 -080064/* flag for if timekeeping is suspended */
65int __read_mostly timekeeping_suspended;
66
John Stultz1e75fa82012-07-13 01:21:53 -040067static inline void tk_normalize_xtime(struct timekeeper *tk)
68{
Peter Zijlstra876e7882015-03-19 10:09:06 +010069 while (tk->tkr_mono.xtime_nsec >= ((u64)NSEC_PER_SEC << tk->tkr_mono.shift)) {
70 tk->tkr_mono.xtime_nsec -= (u64)NSEC_PER_SEC << tk->tkr_mono.shift;
John Stultz1e75fa82012-07-13 01:21:53 -040071 tk->xtime_sec++;
72 }
73}
John Stultz8fcce542011-11-14 11:46:39 -080074
Thomas Gleixnerc905fae2014-07-16 21:04:05 +000075static inline struct timespec64 tk_xtime(struct timekeeper *tk)
76{
77 struct timespec64 ts;
78
79 ts.tv_sec = tk->xtime_sec;
Peter Zijlstra876e7882015-03-19 10:09:06 +010080 ts.tv_nsec = (long)(tk->tkr_mono.xtime_nsec >> tk->tkr_mono.shift);
Thomas Gleixnerc905fae2014-07-16 21:04:05 +000081 return ts;
82}
83
John Stultz7d489d12014-07-16 21:04:01 +000084static void tk_set_xtime(struct timekeeper *tk, const struct timespec64 *ts)
John Stultz1e75fa82012-07-13 01:21:53 -040085{
86 tk->xtime_sec = ts->tv_sec;
Peter Zijlstra876e7882015-03-19 10:09:06 +010087 tk->tkr_mono.xtime_nsec = (u64)ts->tv_nsec << tk->tkr_mono.shift;
John Stultz1e75fa82012-07-13 01:21:53 -040088}
89
John Stultz7d489d12014-07-16 21:04:01 +000090static void tk_xtime_add(struct timekeeper *tk, const struct timespec64 *ts)
John Stultz1e75fa82012-07-13 01:21:53 -040091{
92 tk->xtime_sec += ts->tv_sec;
Peter Zijlstra876e7882015-03-19 10:09:06 +010093 tk->tkr_mono.xtime_nsec += (u64)ts->tv_nsec << tk->tkr_mono.shift;
John Stultz784ffcb2012-08-21 20:30:46 -040094 tk_normalize_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -040095}
John Stultz8fcce542011-11-14 11:46:39 -080096
John Stultz7d489d12014-07-16 21:04:01 +000097static void tk_set_wall_to_mono(struct timekeeper *tk, struct timespec64 wtm)
John Stultz6d0ef902012-07-27 14:48:12 -040098{
John Stultz7d489d12014-07-16 21:04:01 +000099 struct timespec64 tmp;
John Stultz6d0ef902012-07-27 14:48:12 -0400100
101 /*
102 * Verify consistency of: offset_real = -wall_to_monotonic
103 * before modifying anything
104 */
John Stultz7d489d12014-07-16 21:04:01 +0000105 set_normalized_timespec64(&tmp, -tk->wall_to_monotonic.tv_sec,
John Stultz6d0ef902012-07-27 14:48:12 -0400106 -tk->wall_to_monotonic.tv_nsec);
John Stultz7d489d12014-07-16 21:04:01 +0000107 WARN_ON_ONCE(tk->offs_real.tv64 != timespec64_to_ktime(tmp).tv64);
John Stultz6d0ef902012-07-27 14:48:12 -0400108 tk->wall_to_monotonic = wtm;
John Stultz7d489d12014-07-16 21:04:01 +0000109 set_normalized_timespec64(&tmp, -wtm.tv_sec, -wtm.tv_nsec);
110 tk->offs_real = timespec64_to_ktime(tmp);
John Stultz04005f62013-12-10 17:13:35 -0800111 tk->offs_tai = ktime_add(tk->offs_real, ktime_set(tk->tai_offset, 0));
John Stultz6d0ef902012-07-27 14:48:12 -0400112}
113
Thomas Gleixner47da70d2014-07-16 21:05:00 +0000114static inline void tk_update_sleep_time(struct timekeeper *tk, ktime_t delta)
John Stultz6d0ef902012-07-27 14:48:12 -0400115{
Thomas Gleixner47da70d2014-07-16 21:05:00 +0000116 tk->offs_boot = ktime_add(tk->offs_boot, delta);
John Stultz6d0ef902012-07-27 14:48:12 -0400117}
118
John Stultz02a37cc2017-06-08 16:44:20 -0700119/*
120 * tk_clock_read - atomic clocksource read() helper
121 *
122 * This helper is necessary to use in the read paths because, while the
123 * seqlock ensures we don't return a bad value while structures are updated,
124 * it doesn't protect from potential crashes. There is the possibility that
125 * the tkr's clocksource may change between the read reference, and the
126 * clock reference passed to the read function. This can cause crashes if
127 * the wrong clocksource is passed to the wrong read function.
128 * This isn't necessary to use when holding the timekeeper_lock or doing
129 * a read of the fast-timekeeper tkrs (which is protected by its own locking
130 * and update logic).
131 */
132static inline u64 tk_clock_read(struct tk_read_base *tkr)
133{
134 struct clocksource *clock = READ_ONCE(tkr->clock);
135
136 return clock->read(clock);
137}
138
John Stultz3c17ad12015-03-11 21:16:32 -0700139#ifdef CONFIG_DEBUG_TIMEKEEPING
John Stultz4ca22c22015-03-11 21:16:35 -0700140#define WARNING_FREQ (HZ*300) /* 5 minute rate-limiting */
John Stultz4ca22c22015-03-11 21:16:35 -0700141
John Stultz3c17ad12015-03-11 21:16:32 -0700142static void timekeeping_check_update(struct timekeeper *tk, cycle_t offset)
143{
144
Peter Zijlstra876e7882015-03-19 10:09:06 +0100145 cycle_t max_cycles = tk->tkr_mono.clock->max_cycles;
146 const char *name = tk->tkr_mono.clock->name;
John Stultz3c17ad12015-03-11 21:16:32 -0700147
148 if (offset > max_cycles) {
John Stultza558cd02015-03-11 21:16:33 -0700149 printk_deferred("WARNING: timekeeping: Cycle offset (%lld) is larger than allowed by the '%s' clock's max_cycles value (%lld): time overflow danger\n",
John Stultz3c17ad12015-03-11 21:16:32 -0700150 offset, name, max_cycles);
John Stultza558cd02015-03-11 21:16:33 -0700151 printk_deferred(" timekeeping: Your kernel is sick, but tries to cope by capping time updates\n");
John Stultz3c17ad12015-03-11 21:16:32 -0700152 } else {
153 if (offset > (max_cycles >> 1)) {
Masanari Iidafc4fa6e2015-12-13 15:26:11 +0900154 printk_deferred("INFO: timekeeping: Cycle offset (%lld) is larger than the '%s' clock's 50%% safety margin (%lld)\n",
John Stultz3c17ad12015-03-11 21:16:32 -0700155 offset, name, max_cycles >> 1);
156 printk_deferred(" timekeeping: Your kernel is still fine, but is feeling a bit nervous\n");
157 }
158 }
John Stultz4ca22c22015-03-11 21:16:35 -0700159
John Stultz57d05a92015-05-13 16:04:47 -0700160 if (tk->underflow_seen) {
161 if (jiffies - tk->last_warning > WARNING_FREQ) {
John Stultz4ca22c22015-03-11 21:16:35 -0700162 printk_deferred("WARNING: Underflow in clocksource '%s' observed, time update ignored.\n", name);
163 printk_deferred(" Please report this, consider using a different clocksource, if possible.\n");
164 printk_deferred(" Your kernel is probably still fine.\n");
John Stultz57d05a92015-05-13 16:04:47 -0700165 tk->last_warning = jiffies;
John Stultz4ca22c22015-03-11 21:16:35 -0700166 }
John Stultz57d05a92015-05-13 16:04:47 -0700167 tk->underflow_seen = 0;
John Stultz4ca22c22015-03-11 21:16:35 -0700168 }
169
John Stultz57d05a92015-05-13 16:04:47 -0700170 if (tk->overflow_seen) {
171 if (jiffies - tk->last_warning > WARNING_FREQ) {
John Stultz4ca22c22015-03-11 21:16:35 -0700172 printk_deferred("WARNING: Overflow in clocksource '%s' observed, time update capped.\n", name);
173 printk_deferred(" Please report this, consider using a different clocksource, if possible.\n");
174 printk_deferred(" Your kernel is probably still fine.\n");
John Stultz57d05a92015-05-13 16:04:47 -0700175 tk->last_warning = jiffies;
John Stultz4ca22c22015-03-11 21:16:35 -0700176 }
John Stultz57d05a92015-05-13 16:04:47 -0700177 tk->overflow_seen = 0;
John Stultz4ca22c22015-03-11 21:16:35 -0700178 }
John Stultz3c17ad12015-03-11 21:16:32 -0700179}
John Stultza558cd02015-03-11 21:16:33 -0700180
181static inline cycle_t timekeeping_get_delta(struct tk_read_base *tkr)
182{
John Stultz57d05a92015-05-13 16:04:47 -0700183 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz4ca22c22015-03-11 21:16:35 -0700184 cycle_t now, last, mask, max, delta;
185 unsigned int seq;
John Stultza558cd02015-03-11 21:16:33 -0700186
John Stultz4ca22c22015-03-11 21:16:35 -0700187 /*
188 * Since we're called holding a seqlock, the data may shift
189 * under us while we're doing the calculation. This can cause
190 * false positives, since we'd note a problem but throw the
191 * results away. So nest another seqlock here to atomically
192 * grab the points we are checking with.
193 */
194 do {
195 seq = read_seqcount_begin(&tk_core.seq);
John Stultz02a37cc2017-06-08 16:44:20 -0700196 now = tk_clock_read(tkr);
John Stultz4ca22c22015-03-11 21:16:35 -0700197 last = tkr->cycle_last;
198 mask = tkr->mask;
199 max = tkr->clock->max_cycles;
200 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultza558cd02015-03-11 21:16:33 -0700201
John Stultz4ca22c22015-03-11 21:16:35 -0700202 delta = clocksource_delta(now, last, mask);
John Stultza558cd02015-03-11 21:16:33 -0700203
John Stultz057b87e2015-03-11 21:16:34 -0700204 /*
205 * Try to catch underflows by checking if we are seeing small
206 * mask-relative negative values.
207 */
John Stultz4ca22c22015-03-11 21:16:35 -0700208 if (unlikely((~delta & mask) < (mask >> 3))) {
John Stultz57d05a92015-05-13 16:04:47 -0700209 tk->underflow_seen = 1;
John Stultz057b87e2015-03-11 21:16:34 -0700210 delta = 0;
John Stultz4ca22c22015-03-11 21:16:35 -0700211 }
John Stultz057b87e2015-03-11 21:16:34 -0700212
John Stultza558cd02015-03-11 21:16:33 -0700213 /* Cap delta value to the max_cycles values to avoid mult overflows */
John Stultz4ca22c22015-03-11 21:16:35 -0700214 if (unlikely(delta > max)) {
John Stultz57d05a92015-05-13 16:04:47 -0700215 tk->overflow_seen = 1;
John Stultza558cd02015-03-11 21:16:33 -0700216 delta = tkr->clock->max_cycles;
John Stultz4ca22c22015-03-11 21:16:35 -0700217 }
John Stultza558cd02015-03-11 21:16:33 -0700218
219 return delta;
220}
John Stultz3c17ad12015-03-11 21:16:32 -0700221#else
222static inline void timekeeping_check_update(struct timekeeper *tk, cycle_t offset)
223{
224}
John Stultza558cd02015-03-11 21:16:33 -0700225static inline cycle_t timekeeping_get_delta(struct tk_read_base *tkr)
226{
227 cycle_t cycle_now, delta;
228
229 /* read clocksource */
John Stultz02a37cc2017-06-08 16:44:20 -0700230 cycle_now = tk_clock_read(tkr);
John Stultza558cd02015-03-11 21:16:33 -0700231
232 /* calculate the delta since the last update_wall_time */
233 delta = clocksource_delta(cycle_now, tkr->cycle_last, tkr->mask);
234
235 return delta;
236}
John Stultz3c17ad12015-03-11 21:16:32 -0700237#endif
238
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200239/**
Yijing Wangd26e4fe2013-11-28 16:28:55 +0800240 * tk_setup_internals - Set up internals to use clocksource clock.
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200241 *
Yijing Wangd26e4fe2013-11-28 16:28:55 +0800242 * @tk: The target timekeeper to setup.
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200243 * @clock: Pointer to clocksource.
244 *
245 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
246 * pair and interval request.
247 *
248 * Unless you're the timekeeping code, you should not be using this!
249 */
John Stultzf726a692012-07-13 01:21:57 -0400250static void tk_setup_internals(struct timekeeper *tk, struct clocksource *clock)
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200251{
252 cycle_t interval;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700253 u64 tmp, ntpinterval;
John Stultz1e75fa82012-07-13 01:21:53 -0400254 struct clocksource *old_clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200255
Christopher S. Hall2c756fe2016-02-22 03:15:23 -0800256 ++tk->cs_was_changed_seq;
Peter Zijlstra876e7882015-03-19 10:09:06 +0100257 old_clock = tk->tkr_mono.clock;
258 tk->tkr_mono.clock = clock;
Peter Zijlstra876e7882015-03-19 10:09:06 +0100259 tk->tkr_mono.mask = clock->mask;
John Stultz02a37cc2017-06-08 16:44:20 -0700260 tk->tkr_mono.cycle_last = tk_clock_read(&tk->tkr_mono);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200261
Peter Zijlstra4a4ad802015-03-19 09:28:44 +0100262 tk->tkr_raw.clock = clock;
Peter Zijlstra4a4ad802015-03-19 09:28:44 +0100263 tk->tkr_raw.mask = clock->mask;
264 tk->tkr_raw.cycle_last = tk->tkr_mono.cycle_last;
265
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200266 /* Do the ns -> cycle conversion first, using original mult */
267 tmp = NTP_INTERVAL_LENGTH;
268 tmp <<= clock->shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700269 ntpinterval = tmp;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200270 tmp += clock->mult/2;
271 do_div(tmp, clock->mult);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200272 if (tmp == 0)
273 tmp = 1;
274
275 interval = (cycle_t) tmp;
John Stultzf726a692012-07-13 01:21:57 -0400276 tk->cycle_interval = interval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200277
278 /* Go back from cycles -> shifted ns */
John Stultzf726a692012-07-13 01:21:57 -0400279 tk->xtime_interval = (u64) interval * clock->mult;
280 tk->xtime_remainder = ntpinterval - tk->xtime_interval;
John Stultza53bfdd2017-06-08 16:44:21 -0700281 tk->raw_interval = interval * clock->mult;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200282
John Stultz1e75fa82012-07-13 01:21:53 -0400283 /* if changing clocks, convert xtime_nsec shift units */
284 if (old_clock) {
285 int shift_change = clock->shift - old_clock->shift;
286 if (shift_change < 0)
Peter Zijlstra876e7882015-03-19 10:09:06 +0100287 tk->tkr_mono.xtime_nsec >>= -shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400288 else
Peter Zijlstra876e7882015-03-19 10:09:06 +0100289 tk->tkr_mono.xtime_nsec <<= shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400290 }
Peter Zijlstra4a4ad802015-03-19 09:28:44 +0100291 tk->tkr_raw.xtime_nsec = 0;
292
Peter Zijlstra876e7882015-03-19 10:09:06 +0100293 tk->tkr_mono.shift = clock->shift;
Peter Zijlstra4a4ad802015-03-19 09:28:44 +0100294 tk->tkr_raw.shift = clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200295
John Stultzf726a692012-07-13 01:21:57 -0400296 tk->ntp_error = 0;
297 tk->ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
John Stultz375f45b2014-04-23 20:53:29 -0700298 tk->ntp_tick = ntpinterval << tk->ntp_error_shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200299
300 /*
301 * The timekeeper keeps its own mult values for the currently
302 * active clocksource. These value will be adjusted via NTP
303 * to counteract clock drifting.
304 */
Peter Zijlstra876e7882015-03-19 10:09:06 +0100305 tk->tkr_mono.mult = clock->mult;
Peter Zijlstra4a4ad802015-03-19 09:28:44 +0100306 tk->tkr_raw.mult = clock->mult;
John Stultzdc491592013-12-06 17:25:21 -0800307 tk->ntp_err_mult = 0;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200308}
john stultz85240702007-05-08 00:27:59 -0700309
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200310/* Timekeeper helper functions. */
Stephen Warren7b1f6202012-11-07 17:58:54 -0700311
312#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000313static u32 default_arch_gettimeoffset(void) { return 0; }
314u32 (*arch_gettimeoffset)(void) = default_arch_gettimeoffset;
Stephen Warren7b1f6202012-11-07 17:58:54 -0700315#else
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000316static inline u32 arch_gettimeoffset(void) { return 0; }
Stephen Warren7b1f6202012-11-07 17:58:54 -0700317#endif
318
Thomas Gleixnerca229752016-12-08 20:49:32 +0000319static inline u64 timekeeping_delta_to_ns(struct tk_read_base *tkr,
Christopher S. Hall6bd58f02016-02-22 03:15:19 -0800320 cycle_t delta)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200321{
Thomas Gleixnerca229752016-12-08 20:49:32 +0000322 u64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200323
Christopher S. Hall6bd58f02016-02-22 03:15:19 -0800324 nsec = delta * tkr->mult + tkr->xtime_nsec;
325 nsec >>= tkr->shift;
John Stultzf2a5a082012-07-13 01:21:55 -0400326
Stephen Warren7b1f6202012-11-07 17:58:54 -0700327 /* If arch requires, add in get_arch_timeoffset() */
Thomas Gleixnere06fde32014-07-16 21:03:50 +0000328 return nsec + arch_gettimeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200329}
330
Christopher S. Hall6bd58f02016-02-22 03:15:19 -0800331static inline s64 timekeeping_get_ns(struct tk_read_base *tkr)
332{
333 cycle_t delta;
334
335 delta = timekeeping_get_delta(tkr);
336 return timekeeping_delta_to_ns(tkr, delta);
337}
338
339static inline s64 timekeeping_cycles_to_ns(struct tk_read_base *tkr,
340 cycle_t cycles)
341{
342 cycle_t delta;
343
344 /* calculate the delta since the last update_wall_time */
345 delta = clocksource_delta(cycles, tkr->cycle_last, tkr->mask);
346 return timekeeping_delta_to_ns(tkr, delta);
347}
348
Thomas Gleixner4396e052014-07-16 21:05:23 +0000349/**
350 * update_fast_timekeeper - Update the fast and NMI safe monotonic timekeeper.
Rafael J. Wysockiaffe3e82015-02-11 05:01:52 +0100351 * @tkr: Timekeeping readout base from which we take the update
Thomas Gleixner4396e052014-07-16 21:05:23 +0000352 *
353 * We want to use this from any context including NMI and tracing /
354 * instrumenting the timekeeping code itself.
355 *
Peter Zijlstra6695b922015-05-27 11:09:36 +0930356 * Employ the latch technique; see @raw_write_seqcount_latch.
Thomas Gleixner4396e052014-07-16 21:05:23 +0000357 *
358 * So if a NMI hits the update of base[0] then it will use base[1]
359 * which is still consistent. In the worst case this can result is a
360 * slightly wrong timestamp (a few nanoseconds). See
361 * @ktime_get_mono_fast_ns.
362 */
Peter Zijlstra4498e742015-03-19 09:36:19 +0100363static void update_fast_timekeeper(struct tk_read_base *tkr, struct tk_fast *tkf)
Thomas Gleixner4396e052014-07-16 21:05:23 +0000364{
Peter Zijlstra4498e742015-03-19 09:36:19 +0100365 struct tk_read_base *base = tkf->base;
Thomas Gleixner4396e052014-07-16 21:05:23 +0000366
367 /* Force readers off to base[1] */
Peter Zijlstra4498e742015-03-19 09:36:19 +0100368 raw_write_seqcount_latch(&tkf->seq);
Thomas Gleixner4396e052014-07-16 21:05:23 +0000369
370 /* Update base[0] */
Rafael J. Wysockiaffe3e82015-02-11 05:01:52 +0100371 memcpy(base, tkr, sizeof(*base));
Thomas Gleixner4396e052014-07-16 21:05:23 +0000372
373 /* Force readers back to base[0] */
Peter Zijlstra4498e742015-03-19 09:36:19 +0100374 raw_write_seqcount_latch(&tkf->seq);
Thomas Gleixner4396e052014-07-16 21:05:23 +0000375
376 /* Update base[1] */
377 memcpy(base + 1, base, sizeof(*base));
378}
379
380/**
381 * ktime_get_mono_fast_ns - Fast NMI safe access to clock monotonic
382 *
383 * This timestamp is not guaranteed to be monotonic across an update.
384 * The timestamp is calculated by:
385 *
386 * now = base_mono + clock_delta * slope
387 *
388 * So if the update lowers the slope, readers who are forced to the
389 * not yet updated second array are still using the old steeper slope.
390 *
391 * tmono
392 * ^
393 * | o n
394 * | o n
395 * | u
396 * | o
397 * |o
398 * |12345678---> reader order
399 *
400 * o = old slope
401 * u = update
402 * n = new slope
403 *
404 * So reader 6 will observe time going backwards versus reader 5.
405 *
406 * While other CPUs are likely to be able observe that, the only way
407 * for a CPU local observation is when an NMI hits in the middle of
408 * the update. Timestamps taken from that NMI context might be ahead
409 * of the following timestamps. Callers need to be aware of that and
410 * deal with it.
411 */
Peter Zijlstra4498e742015-03-19 09:36:19 +0100412static __always_inline u64 __ktime_get_fast_ns(struct tk_fast *tkf)
Thomas Gleixner4396e052014-07-16 21:05:23 +0000413{
414 struct tk_read_base *tkr;
415 unsigned int seq;
416 u64 now;
417
418 do {
Peter Zijlstra7fc26322015-05-27 11:09:36 +0930419 seq = raw_read_seqcount_latch(&tkf->seq);
Peter Zijlstra4498e742015-03-19 09:36:19 +0100420 tkr = tkf->base + (seq & 0x01);
John Stultz27727df2016-08-23 16:08:21 -0700421 now = ktime_to_ns(tkr->base);
422
John Stultz58bfea92016-10-04 19:55:48 -0700423 now += timekeeping_delta_to_ns(tkr,
424 clocksource_delta(
John Stultz02a37cc2017-06-08 16:44:20 -0700425 tk_clock_read(tkr),
John Stultz58bfea92016-10-04 19:55:48 -0700426 tkr->cycle_last,
427 tkr->mask));
Peter Zijlstra4498e742015-03-19 09:36:19 +0100428 } while (read_seqcount_retry(&tkf->seq, seq));
Thomas Gleixner4396e052014-07-16 21:05:23 +0000429
Thomas Gleixner4396e052014-07-16 21:05:23 +0000430 return now;
431}
Peter Zijlstra4498e742015-03-19 09:36:19 +0100432
433u64 ktime_get_mono_fast_ns(void)
434{
435 return __ktime_get_fast_ns(&tk_fast_mono);
436}
Thomas Gleixner4396e052014-07-16 21:05:23 +0000437EXPORT_SYMBOL_GPL(ktime_get_mono_fast_ns);
438
Peter Zijlstraf09cb9a2015-03-19 09:39:08 +0100439u64 ktime_get_raw_fast_ns(void)
440{
441 return __ktime_get_fast_ns(&tk_fast_raw);
442}
443EXPORT_SYMBOL_GPL(ktime_get_raw_fast_ns);
444
Rafael J. Wysocki060407a2015-02-13 14:49:02 +0100445/* Suspend-time cycles value for halted fast timekeeper. */
446static cycle_t cycles_at_suspend;
447
448static cycle_t dummy_clock_read(struct clocksource *cs)
449{
450 return cycles_at_suspend;
451}
452
John Stultz02a37cc2017-06-08 16:44:20 -0700453static struct clocksource dummy_clock = {
454 .read = dummy_clock_read,
455};
456
Rafael J. Wysocki060407a2015-02-13 14:49:02 +0100457/**
458 * halt_fast_timekeeper - Prevent fast timekeeper from accessing clocksource.
459 * @tk: Timekeeper to snapshot.
460 *
461 * It generally is unsafe to access the clocksource after timekeeping has been
462 * suspended, so take a snapshot of the readout base of @tk and use it as the
463 * fast timekeeper's readout base while suspended. It will return the same
464 * number of cycles every time until timekeeping is resumed at which time the
465 * proper readout base for the fast timekeeper will be restored automatically.
466 */
467static void halt_fast_timekeeper(struct timekeeper *tk)
468{
469 static struct tk_read_base tkr_dummy;
Peter Zijlstra876e7882015-03-19 10:09:06 +0100470 struct tk_read_base *tkr = &tk->tkr_mono;
Rafael J. Wysocki060407a2015-02-13 14:49:02 +0100471
472 memcpy(&tkr_dummy, tkr, sizeof(tkr_dummy));
John Stultz02a37cc2017-06-08 16:44:20 -0700473 cycles_at_suspend = tk_clock_read(tkr);
474 tkr_dummy.clock = &dummy_clock;
Peter Zijlstra4498e742015-03-19 09:36:19 +0100475 update_fast_timekeeper(&tkr_dummy, &tk_fast_mono);
Peter Zijlstraf09cb9a2015-03-19 09:39:08 +0100476
477 tkr = &tk->tkr_raw;
478 memcpy(&tkr_dummy, tkr, sizeof(tkr_dummy));
John Stultz02a37cc2017-06-08 16:44:20 -0700479 tkr_dummy.clock = &dummy_clock;
Peter Zijlstraf09cb9a2015-03-19 09:39:08 +0100480 update_fast_timekeeper(&tkr_dummy, &tk_fast_raw);
Rafael J. Wysocki060407a2015-02-13 14:49:02 +0100481}
482
Thomas Gleixnerc905fae2014-07-16 21:04:05 +0000483#ifdef CONFIG_GENERIC_TIME_VSYSCALL_OLD
484
485static inline void update_vsyscall(struct timekeeper *tk)
486{
John Stultz0680eb12014-08-13 12:47:14 -0700487 struct timespec xt, wm;
Thomas Gleixnerc905fae2014-07-16 21:04:05 +0000488
John Stultze2dff1e2014-07-23 14:35:39 -0700489 xt = timespec64_to_timespec(tk_xtime(tk));
John Stultz0680eb12014-08-13 12:47:14 -0700490 wm = timespec64_to_timespec(tk->wall_to_monotonic);
Peter Zijlstra876e7882015-03-19 10:09:06 +0100491 update_vsyscall_old(&xt, &wm, tk->tkr_mono.clock, tk->tkr_mono.mult,
492 tk->tkr_mono.cycle_last);
Thomas Gleixnerc905fae2014-07-16 21:04:05 +0000493}
494
495static inline void old_vsyscall_fixup(struct timekeeper *tk)
496{
497 s64 remainder;
498
499 /*
500 * Store only full nanoseconds into xtime_nsec after rounding
501 * it up and add the remainder to the error difference.
502 * XXX - This is necessary to avoid small 1ns inconsistnecies caused
503 * by truncating the remainder in vsyscalls. However, it causes
504 * additional work to be done in timekeeping_adjust(). Once
505 * the vsyscall implementations are converted to use xtime_nsec
506 * (shifted nanoseconds), and CONFIG_GENERIC_TIME_VSYSCALL_OLD
507 * users are removed, this can be killed.
508 */
Peter Zijlstra876e7882015-03-19 10:09:06 +0100509 remainder = tk->tkr_mono.xtime_nsec & ((1ULL << tk->tkr_mono.shift) - 1);
Thomas Graziadei0209b932016-05-31 15:06:06 +0200510 if (remainder != 0) {
511 tk->tkr_mono.xtime_nsec -= remainder;
512 tk->tkr_mono.xtime_nsec += 1ULL << tk->tkr_mono.shift;
513 tk->ntp_error += remainder << tk->ntp_error_shift;
514 tk->ntp_error -= (1ULL << tk->tkr_mono.shift) << tk->ntp_error_shift;
515 }
Thomas Gleixnerc905fae2014-07-16 21:04:05 +0000516}
517#else
518#define old_vsyscall_fixup(tk)
519#endif
520
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200521static RAW_NOTIFIER_HEAD(pvclock_gtod_chain);
522
David Vrabel780427f2013-06-27 11:35:46 +0100523static void update_pvclock_gtod(struct timekeeper *tk, bool was_set)
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200524{
David Vrabel780427f2013-06-27 11:35:46 +0100525 raw_notifier_call_chain(&pvclock_gtod_chain, was_set, tk);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200526}
527
528/**
529 * pvclock_gtod_register_notifier - register a pvclock timedata update listener
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200530 */
531int pvclock_gtod_register_notifier(struct notifier_block *nb)
532{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000533 struct timekeeper *tk = &tk_core.timekeeper;
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200534 unsigned long flags;
535 int ret;
536
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000537 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200538 ret = raw_notifier_chain_register(&pvclock_gtod_chain, nb);
David Vrabel780427f2013-06-27 11:35:46 +0100539 update_pvclock_gtod(tk, true);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000540 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200541
542 return ret;
543}
544EXPORT_SYMBOL_GPL(pvclock_gtod_register_notifier);
545
546/**
547 * pvclock_gtod_unregister_notifier - unregister a pvclock
548 * timedata update listener
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200549 */
550int pvclock_gtod_unregister_notifier(struct notifier_block *nb)
551{
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200552 unsigned long flags;
553 int ret;
554
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000555 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200556 ret = raw_notifier_chain_unregister(&pvclock_gtod_chain, nb);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000557 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200558
559 return ret;
560}
561EXPORT_SYMBOL_GPL(pvclock_gtod_unregister_notifier);
562
Thomas Gleixner7c032df2014-07-16 21:04:10 +0000563/*
John Stultz833f32d2015-06-11 15:54:55 -0700564 * tk_update_leap_state - helper to update the next_leap_ktime
565 */
566static inline void tk_update_leap_state(struct timekeeper *tk)
567{
568 tk->next_leap_ktime = ntp_get_next_leap();
569 if (tk->next_leap_ktime.tv64 != KTIME_MAX)
570 /* Convert to monotonic time */
571 tk->next_leap_ktime = ktime_sub(tk->next_leap_ktime, tk->offs_real);
572}
573
574/*
Thomas Gleixner7c032df2014-07-16 21:04:10 +0000575 * Update the ktime_t based scalar nsec members of the timekeeper
576 */
577static inline void tk_update_ktime_data(struct timekeeper *tk)
578{
Heena Sirwani9e3680b2014-10-29 16:01:16 +0530579 u64 seconds;
580 u32 nsec;
Thomas Gleixner7c032df2014-07-16 21:04:10 +0000581
582 /*
583 * The xtime based monotonic readout is:
584 * nsec = (xtime_sec + wtm_sec) * 1e9 + wtm_nsec + now();
585 * The ktime based monotonic readout is:
586 * nsec = base_mono + now();
587 * ==> base_mono = (xtime_sec + wtm_sec) * 1e9 + wtm_nsec
588 */
Heena Sirwani9e3680b2014-10-29 16:01:16 +0530589 seconds = (u64)(tk->xtime_sec + tk->wall_to_monotonic.tv_sec);
590 nsec = (u32) tk->wall_to_monotonic.tv_nsec;
Peter Zijlstra876e7882015-03-19 10:09:06 +0100591 tk->tkr_mono.base = ns_to_ktime(seconds * NSEC_PER_SEC + nsec);
Thomas Gleixnerf519b1a2014-07-16 21:05:04 +0000592
593 /* Update the monotonic raw base */
Peter Zijlstra4a4ad802015-03-19 09:28:44 +0100594 tk->tkr_raw.base = timespec64_to_ktime(tk->raw_time);
Heena Sirwani9e3680b2014-10-29 16:01:16 +0530595
596 /*
597 * The sum of the nanoseconds portions of xtime and
598 * wall_to_monotonic can be greater/equal one second. Take
599 * this into account before updating tk->ktime_sec.
600 */
Peter Zijlstra876e7882015-03-19 10:09:06 +0100601 nsec += (u32)(tk->tkr_mono.xtime_nsec >> tk->tkr_mono.shift);
Heena Sirwani9e3680b2014-10-29 16:01:16 +0530602 if (nsec >= NSEC_PER_SEC)
603 seconds++;
604 tk->ktime_sec = seconds;
Thomas Gleixner7c032df2014-07-16 21:04:10 +0000605}
606
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000607/* must hold timekeeper_lock */
David Vrabel04397fe92013-06-27 11:35:45 +0100608static void timekeeping_update(struct timekeeper *tk, unsigned int action)
Thomas Gleixnercc062682011-11-13 23:19:49 +0000609{
David Vrabel04397fe92013-06-27 11:35:45 +0100610 if (action & TK_CLEAR_NTP) {
John Stultzf726a692012-07-13 01:21:57 -0400611 tk->ntp_error = 0;
Thomas Gleixnercc062682011-11-13 23:19:49 +0000612 ntp_clear();
613 }
Thomas Gleixner48cdc132013-02-21 22:51:40 +0000614
John Stultz833f32d2015-06-11 15:54:55 -0700615 tk_update_leap_state(tk);
Thomas Gleixner7c032df2014-07-16 21:04:10 +0000616 tk_update_ktime_data(tk);
617
Thomas Gleixner9bf24192014-09-06 12:24:49 +0200618 update_vsyscall(tk);
619 update_pvclock_gtod(tk, action & TK_CLOCK_WAS_SET);
620
Peter Zijlstra4498e742015-03-19 09:36:19 +0100621 update_fast_timekeeper(&tk->tkr_mono, &tk_fast_mono);
Peter Zijlstraf09cb9a2015-03-19 09:39:08 +0100622 update_fast_timekeeper(&tk->tkr_raw, &tk_fast_raw);
Thomas Gleixner868a3e92015-04-14 21:08:37 +0000623
624 if (action & TK_CLOCK_WAS_SET)
625 tk->clock_was_set_seq++;
John Stultzd1518322015-06-11 15:54:53 -0700626 /*
627 * The mirroring of the data to the shadow-timekeeper needs
628 * to happen last here to ensure we don't over-write the
629 * timekeeper structure on the next update with stale data
630 */
631 if (action & TK_MIRROR)
632 memcpy(&shadow_timekeeper, &tk_core.timekeeper,
633 sizeof(tk_core.timekeeper));
Thomas Gleixnercc062682011-11-13 23:19:49 +0000634}
635
john stultz85240702007-05-08 00:27:59 -0700636/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200637 * timekeeping_forward_now - update clock to the current time
john stultz85240702007-05-08 00:27:59 -0700638 *
Roman Zippel9a055112008-08-20 16:37:28 -0700639 * Forward the current clock to update its state since the last call to
640 * update_wall_time(). This is useful before significant clock changes,
641 * as it avoids having to deal with this time offset explicitly.
john stultz85240702007-05-08 00:27:59 -0700642 */
John Stultzf726a692012-07-13 01:21:57 -0400643static void timekeeping_forward_now(struct timekeeper *tk)
john stultz85240702007-05-08 00:27:59 -0700644{
Thomas Gleixner3a978372014-07-16 21:05:10 +0000645 cycle_t cycle_now, delta;
Roman Zippel9a055112008-08-20 16:37:28 -0700646 s64 nsec;
john stultz85240702007-05-08 00:27:59 -0700647
John Stultz02a37cc2017-06-08 16:44:20 -0700648 cycle_now = tk_clock_read(&tk->tkr_mono);
Peter Zijlstra876e7882015-03-19 10:09:06 +0100649 delta = clocksource_delta(cycle_now, tk->tkr_mono.cycle_last, tk->tkr_mono.mask);
650 tk->tkr_mono.cycle_last = cycle_now;
Peter Zijlstra4a4ad802015-03-19 09:28:44 +0100651 tk->tkr_raw.cycle_last = cycle_now;
john stultz85240702007-05-08 00:27:59 -0700652
Peter Zijlstra876e7882015-03-19 10:09:06 +0100653 tk->tkr_mono.xtime_nsec += delta * tk->tkr_mono.mult;
john stultz7d275582009-05-01 13:10:26 -0700654
Stephen Warren7b1f6202012-11-07 17:58:54 -0700655 /* If arch requires, add in get_arch_timeoffset() */
Peter Zijlstra876e7882015-03-19 10:09:06 +0100656 tk->tkr_mono.xtime_nsec += (u64)arch_gettimeoffset() << tk->tkr_mono.shift;
john stultz7d275582009-05-01 13:10:26 -0700657
John Stultzf726a692012-07-13 01:21:57 -0400658 tk_normalize_xtime(tk);
John Stultz2d422442008-08-20 16:37:30 -0700659
Peter Zijlstra4a4ad802015-03-19 09:28:44 +0100660 nsec = clocksource_cyc2ns(delta, tk->tkr_raw.mult, tk->tkr_raw.shift);
John Stultz7d489d12014-07-16 21:04:01 +0000661 timespec64_add_ns(&tk->raw_time, nsec);
john stultz85240702007-05-08 00:27:59 -0700662}
663
664/**
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000665 * __getnstimeofday64 - Returns the time of day in a timespec64.
john stultz85240702007-05-08 00:27:59 -0700666 * @ts: pointer to the timespec to be set
667 *
Kees Cook1e817fb2012-11-19 10:26:16 -0800668 * Updates the time of day in the timespec.
669 * Returns 0 on success, or -ve when suspended (timespec will be undefined).
john stultz85240702007-05-08 00:27:59 -0700670 */
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000671int __getnstimeofday64(struct timespec64 *ts)
john stultz85240702007-05-08 00:27:59 -0700672{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000673 struct timekeeper *tk = &tk_core.timekeeper;
john stultz85240702007-05-08 00:27:59 -0700674 unsigned long seq;
John Stultz1e75fa82012-07-13 01:21:53 -0400675 s64 nsecs = 0;
john stultz85240702007-05-08 00:27:59 -0700676
677 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000678 seq = read_seqcount_begin(&tk_core.seq);
john stultz85240702007-05-08 00:27:59 -0700679
John Stultz4e250fd2012-07-27 14:48:13 -0400680 ts->tv_sec = tk->xtime_sec;
Peter Zijlstra876e7882015-03-19 10:09:06 +0100681 nsecs = timekeeping_get_ns(&tk->tkr_mono);
john stultz85240702007-05-08 00:27:59 -0700682
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000683 } while (read_seqcount_retry(&tk_core.seq, seq));
john stultz85240702007-05-08 00:27:59 -0700684
John Stultzec145ba2012-09-11 19:26:03 -0400685 ts->tv_nsec = 0;
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000686 timespec64_add_ns(ts, nsecs);
Kees Cook1e817fb2012-11-19 10:26:16 -0800687
688 /*
689 * Do not bail out early, in case there were callers still using
690 * the value, even in the face of the WARN_ON.
691 */
692 if (unlikely(timekeeping_suspended))
693 return -EAGAIN;
694 return 0;
695}
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000696EXPORT_SYMBOL(__getnstimeofday64);
Kees Cook1e817fb2012-11-19 10:26:16 -0800697
698/**
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000699 * getnstimeofday64 - Returns the time of day in a timespec64.
John Stultz5322e4c2014-11-07 13:13:04 -0800700 * @ts: pointer to the timespec64 to be set
Kees Cook1e817fb2012-11-19 10:26:16 -0800701 *
John Stultz5322e4c2014-11-07 13:13:04 -0800702 * Returns the time of day in a timespec64 (WARN if suspended).
Kees Cook1e817fb2012-11-19 10:26:16 -0800703 */
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000704void getnstimeofday64(struct timespec64 *ts)
Kees Cook1e817fb2012-11-19 10:26:16 -0800705{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000706 WARN_ON(__getnstimeofday64(ts));
john stultz85240702007-05-08 00:27:59 -0700707}
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000708EXPORT_SYMBOL(getnstimeofday64);
john stultz85240702007-05-08 00:27:59 -0700709
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200710ktime_t ktime_get(void)
711{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000712 struct timekeeper *tk = &tk_core.timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200713 unsigned int seq;
Thomas Gleixnera016a5b2014-07-16 21:04:12 +0000714 ktime_t base;
715 s64 nsecs;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200716
717 WARN_ON(timekeeping_suspended);
718
719 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000720 seq = read_seqcount_begin(&tk_core.seq);
Peter Zijlstra876e7882015-03-19 10:09:06 +0100721 base = tk->tkr_mono.base;
722 nsecs = timekeeping_get_ns(&tk->tkr_mono);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200723
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000724 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz24e4a8c2014-07-16 21:03:53 +0000725
Thomas Gleixnera016a5b2014-07-16 21:04:12 +0000726 return ktime_add_ns(base, nsecs);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200727}
728EXPORT_SYMBOL_GPL(ktime_get);
729
Harald Geyer6374f912015-04-07 11:12:35 +0000730u32 ktime_get_resolution_ns(void)
731{
732 struct timekeeper *tk = &tk_core.timekeeper;
733 unsigned int seq;
734 u32 nsecs;
735
736 WARN_ON(timekeeping_suspended);
737
738 do {
739 seq = read_seqcount_begin(&tk_core.seq);
740 nsecs = tk->tkr_mono.mult >> tk->tkr_mono.shift;
741 } while (read_seqcount_retry(&tk_core.seq, seq));
742
743 return nsecs;
744}
745EXPORT_SYMBOL_GPL(ktime_get_resolution_ns);
746
Thomas Gleixner0077dc62014-07-16 21:04:13 +0000747static ktime_t *offsets[TK_OFFS_MAX] = {
748 [TK_OFFS_REAL] = &tk_core.timekeeper.offs_real,
749 [TK_OFFS_BOOT] = &tk_core.timekeeper.offs_boot,
750 [TK_OFFS_TAI] = &tk_core.timekeeper.offs_tai,
751};
752
753ktime_t ktime_get_with_offset(enum tk_offsets offs)
754{
755 struct timekeeper *tk = &tk_core.timekeeper;
756 unsigned int seq;
757 ktime_t base, *offset = offsets[offs];
758 s64 nsecs;
759
760 WARN_ON(timekeeping_suspended);
761
762 do {
763 seq = read_seqcount_begin(&tk_core.seq);
Peter Zijlstra876e7882015-03-19 10:09:06 +0100764 base = ktime_add(tk->tkr_mono.base, *offset);
765 nsecs = timekeeping_get_ns(&tk->tkr_mono);
Thomas Gleixner0077dc62014-07-16 21:04:13 +0000766
767 } while (read_seqcount_retry(&tk_core.seq, seq));
768
769 return ktime_add_ns(base, nsecs);
770
771}
772EXPORT_SYMBOL_GPL(ktime_get_with_offset);
773
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200774/**
Thomas Gleixner9a6b5192014-07-16 21:04:22 +0000775 * ktime_mono_to_any() - convert mononotic time to any other time
776 * @tmono: time to convert.
777 * @offs: which offset to use
778 */
779ktime_t ktime_mono_to_any(ktime_t tmono, enum tk_offsets offs)
780{
781 ktime_t *offset = offsets[offs];
782 unsigned long seq;
783 ktime_t tconv;
784
785 do {
786 seq = read_seqcount_begin(&tk_core.seq);
787 tconv = ktime_add(tmono, *offset);
788 } while (read_seqcount_retry(&tk_core.seq, seq));
789
790 return tconv;
791}
792EXPORT_SYMBOL_GPL(ktime_mono_to_any);
793
794/**
Thomas Gleixnerf519b1a2014-07-16 21:05:04 +0000795 * ktime_get_raw - Returns the raw monotonic time in ktime_t format
796 */
797ktime_t ktime_get_raw(void)
798{
799 struct timekeeper *tk = &tk_core.timekeeper;
800 unsigned int seq;
801 ktime_t base;
802 s64 nsecs;
803
804 do {
805 seq = read_seqcount_begin(&tk_core.seq);
Peter Zijlstra4a4ad802015-03-19 09:28:44 +0100806 base = tk->tkr_raw.base;
807 nsecs = timekeeping_get_ns(&tk->tkr_raw);
Thomas Gleixnerf519b1a2014-07-16 21:05:04 +0000808
809 } while (read_seqcount_retry(&tk_core.seq, seq));
810
811 return ktime_add_ns(base, nsecs);
812}
813EXPORT_SYMBOL_GPL(ktime_get_raw);
814
815/**
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000816 * ktime_get_ts64 - get the monotonic clock in timespec64 format
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200817 * @ts: pointer to timespec variable
818 *
819 * The function calculates the monotonic clock from the realtime
820 * clock and the wall_to_monotonic offset and stores the result
John Stultz5322e4c2014-11-07 13:13:04 -0800821 * in normalized timespec64 format in the variable pointed to by @ts.
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200822 */
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000823void ktime_get_ts64(struct timespec64 *ts)
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200824{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000825 struct timekeeper *tk = &tk_core.timekeeper;
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000826 struct timespec64 tomono;
John Stultzec145ba2012-09-11 19:26:03 -0400827 s64 nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200828 unsigned int seq;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200829
830 WARN_ON(timekeeping_suspended);
831
832 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000833 seq = read_seqcount_begin(&tk_core.seq);
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000834 ts->tv_sec = tk->xtime_sec;
Peter Zijlstra876e7882015-03-19 10:09:06 +0100835 nsec = timekeeping_get_ns(&tk->tkr_mono);
John Stultz4e250fd2012-07-27 14:48:13 -0400836 tomono = tk->wall_to_monotonic;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200837
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +0000838 } while (read_seqcount_retry(&tk_core.seq, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200839
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000840 ts->tv_sec += tomono.tv_sec;
841 ts->tv_nsec = 0;
842 timespec64_add_ns(ts, nsec + tomono.tv_nsec);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200843}
Thomas Gleixnerd6d29892014-07-16 21:04:04 +0000844EXPORT_SYMBOL_GPL(ktime_get_ts64);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200845
Heena Sirwani9e3680b2014-10-29 16:01:16 +0530846/**
847 * ktime_get_seconds - Get the seconds portion of CLOCK_MONOTONIC
848 *
849 * Returns the seconds portion of CLOCK_MONOTONIC with a single non
850 * serialized read. tk->ktime_sec is of type 'unsigned long' so this
851 * works on both 32 and 64 bit systems. On 32 bit systems the readout
852 * covers ~136 years of uptime which should be enough to prevent
853 * premature wrap arounds.
854 */
855time64_t ktime_get_seconds(void)
856{
857 struct timekeeper *tk = &tk_core.timekeeper;
858
859 WARN_ON(timekeeping_suspended);
860 return tk->ktime_sec;
861}
862EXPORT_SYMBOL_GPL(ktime_get_seconds);
863
Heena Sirwanidbe7aa62014-10-29 16:01:50 +0530864/**
865 * ktime_get_real_seconds - Get the seconds portion of CLOCK_REALTIME
866 *
867 * Returns the wall clock seconds since 1970. This replaces the
868 * get_seconds() interface which is not y2038 safe on 32bit systems.
869 *
870 * For 64bit systems the fast access to tk->xtime_sec is preserved. On
871 * 32bit systems the access must be protected with the sequence
872 * counter to provide "atomic" access to the 64bit tk->xtime_sec
873 * value.
874 */
875time64_t ktime_get_real_seconds(void)
876{
877 struct timekeeper *tk = &tk_core.timekeeper;
878 time64_t seconds;
879 unsigned int seq;
880
881 if (IS_ENABLED(CONFIG_64BIT))
882 return tk->xtime_sec;
883
884 do {
885 seq = read_seqcount_begin(&tk_core.seq);
886 seconds = tk->xtime_sec;
887
888 } while (read_seqcount_retry(&tk_core.seq, seq));
889
890 return seconds;
891}
892EXPORT_SYMBOL_GPL(ktime_get_real_seconds);
893
DengChaodee36652015-12-13 12:24:18 +0800894/**
895 * __ktime_get_real_seconds - The same as ktime_get_real_seconds
896 * but without the sequence counter protect. This internal function
897 * is called just when timekeeping lock is already held.
898 */
899time64_t __ktime_get_real_seconds(void)
900{
901 struct timekeeper *tk = &tk_core.timekeeper;
902
903 return tk->xtime_sec;
904}
905
Christopher S. Hall9da0f492016-02-22 03:15:20 -0800906/**
907 * ktime_get_snapshot - snapshots the realtime/monotonic raw clocks with counter
908 * @systime_snapshot: pointer to struct receiving the system time snapshot
909 */
910void ktime_get_snapshot(struct system_time_snapshot *systime_snapshot)
911{
912 struct timekeeper *tk = &tk_core.timekeeper;
913 unsigned long seq;
914 ktime_t base_raw;
915 ktime_t base_real;
916 s64 nsec_raw;
917 s64 nsec_real;
918 cycle_t now;
919
Christopher S. Hallba266212016-02-22 03:15:21 -0800920 WARN_ON_ONCE(timekeeping_suspended);
921
Christopher S. Hall9da0f492016-02-22 03:15:20 -0800922 do {
923 seq = read_seqcount_begin(&tk_core.seq);
John Stultz02a37cc2017-06-08 16:44:20 -0700924 now = tk_clock_read(&tk->tkr_mono);
Christopher S. Hall2c756fe2016-02-22 03:15:23 -0800925 systime_snapshot->cs_was_changed_seq = tk->cs_was_changed_seq;
926 systime_snapshot->clock_was_set_seq = tk->clock_was_set_seq;
Christopher S. Hall9da0f492016-02-22 03:15:20 -0800927 base_real = ktime_add(tk->tkr_mono.base,
928 tk_core.timekeeper.offs_real);
929 base_raw = tk->tkr_raw.base;
930 nsec_real = timekeeping_cycles_to_ns(&tk->tkr_mono, now);
931 nsec_raw = timekeeping_cycles_to_ns(&tk->tkr_raw, now);
932 } while (read_seqcount_retry(&tk_core.seq, seq));
933
934 systime_snapshot->cycles = now;
935 systime_snapshot->real = ktime_add_ns(base_real, nsec_real);
936 systime_snapshot->raw = ktime_add_ns(base_raw, nsec_raw);
937}
938EXPORT_SYMBOL_GPL(ktime_get_snapshot);
DengChaodee36652015-12-13 12:24:18 +0800939
Christopher S. Hall2c756fe2016-02-22 03:15:23 -0800940/* Scale base by mult/div checking for overflow */
941static int scale64_check_overflow(u64 mult, u64 div, u64 *base)
942{
943 u64 tmp, rem;
944
945 tmp = div64_u64_rem(*base, div, &rem);
946
947 if (((int)sizeof(u64)*8 - fls64(mult) < fls64(tmp)) ||
948 ((int)sizeof(u64)*8 - fls64(mult) < fls64(rem)))
949 return -EOVERFLOW;
950 tmp *= mult;
951 rem *= mult;
952
953 do_div(rem, div);
954 *base = tmp + rem;
955 return 0;
956}
957
958/**
959 * adjust_historical_crosststamp - adjust crosstimestamp previous to current interval
960 * @history: Snapshot representing start of history
961 * @partial_history_cycles: Cycle offset into history (fractional part)
962 * @total_history_cycles: Total history length in cycles
963 * @discontinuity: True indicates clock was set on history period
964 * @ts: Cross timestamp that should be adjusted using
965 * partial/total ratio
966 *
967 * Helper function used by get_device_system_crosststamp() to correct the
968 * crosstimestamp corresponding to the start of the current interval to the
969 * system counter value (timestamp point) provided by the driver. The
970 * total_history_* quantities are the total history starting at the provided
971 * reference point and ending at the start of the current interval. The cycle
972 * count between the driver timestamp point and the start of the current
973 * interval is partial_history_cycles.
974 */
975static int adjust_historical_crosststamp(struct system_time_snapshot *history,
976 cycle_t partial_history_cycles,
977 cycle_t total_history_cycles,
978 bool discontinuity,
979 struct system_device_crosststamp *ts)
980{
981 struct timekeeper *tk = &tk_core.timekeeper;
982 u64 corr_raw, corr_real;
983 bool interp_forward;
984 int ret;
985
986 if (total_history_cycles == 0 || partial_history_cycles == 0)
987 return 0;
988
989 /* Interpolate shortest distance from beginning or end of history */
990 interp_forward = partial_history_cycles > total_history_cycles/2 ?
991 true : false;
992 partial_history_cycles = interp_forward ?
993 total_history_cycles - partial_history_cycles :
994 partial_history_cycles;
995
996 /*
997 * Scale the monotonic raw time delta by:
998 * partial_history_cycles / total_history_cycles
999 */
1000 corr_raw = (u64)ktime_to_ns(
1001 ktime_sub(ts->sys_monoraw, history->raw));
1002 ret = scale64_check_overflow(partial_history_cycles,
1003 total_history_cycles, &corr_raw);
1004 if (ret)
1005 return ret;
1006
1007 /*
1008 * If there is a discontinuity in the history, scale monotonic raw
1009 * correction by:
1010 * mult(real)/mult(raw) yielding the realtime correction
1011 * Otherwise, calculate the realtime correction similar to monotonic
1012 * raw calculation
1013 */
1014 if (discontinuity) {
1015 corr_real = mul_u64_u32_div
1016 (corr_raw, tk->tkr_mono.mult, tk->tkr_raw.mult);
1017 } else {
1018 corr_real = (u64)ktime_to_ns(
1019 ktime_sub(ts->sys_realtime, history->real));
1020 ret = scale64_check_overflow(partial_history_cycles,
1021 total_history_cycles, &corr_real);
1022 if (ret)
1023 return ret;
1024 }
1025
1026 /* Fixup monotonic raw and real time time values */
1027 if (interp_forward) {
1028 ts->sys_monoraw = ktime_add_ns(history->raw, corr_raw);
1029 ts->sys_realtime = ktime_add_ns(history->real, corr_real);
1030 } else {
1031 ts->sys_monoraw = ktime_sub_ns(ts->sys_monoraw, corr_raw);
1032 ts->sys_realtime = ktime_sub_ns(ts->sys_realtime, corr_real);
1033 }
1034
1035 return 0;
1036}
1037
1038/*
1039 * cycle_between - true if test occurs chronologically between before and after
1040 */
1041static bool cycle_between(cycle_t before, cycle_t test, cycle_t after)
1042{
1043 if (test > before && test < after)
1044 return true;
1045 if (test < before && before > after)
1046 return true;
1047 return false;
1048}
1049
john stultz85240702007-05-08 00:27:59 -07001050/**
Christopher S. Hall8006c242016-02-22 03:15:22 -08001051 * get_device_system_crosststamp - Synchronously capture system/device timestamp
Christopher S. Hall2c756fe2016-02-22 03:15:23 -08001052 * @get_time_fn: Callback to get simultaneous device time and
Christopher S. Hall8006c242016-02-22 03:15:22 -08001053 * system counter from the device driver
Christopher S. Hall2c756fe2016-02-22 03:15:23 -08001054 * @ctx: Context passed to get_time_fn()
1055 * @history_begin: Historical reference point used to interpolate system
1056 * time when counter provided by the driver is before the current interval
Christopher S. Hall8006c242016-02-22 03:15:22 -08001057 * @xtstamp: Receives simultaneously captured system and device time
1058 *
1059 * Reads a timestamp from a device and correlates it to system time
1060 */
1061int get_device_system_crosststamp(int (*get_time_fn)
1062 (ktime_t *device_time,
1063 struct system_counterval_t *sys_counterval,
1064 void *ctx),
1065 void *ctx,
Christopher S. Hall2c756fe2016-02-22 03:15:23 -08001066 struct system_time_snapshot *history_begin,
Christopher S. Hall8006c242016-02-22 03:15:22 -08001067 struct system_device_crosststamp *xtstamp)
1068{
1069 struct system_counterval_t system_counterval;
1070 struct timekeeper *tk = &tk_core.timekeeper;
Christopher S. Hall2c756fe2016-02-22 03:15:23 -08001071 cycle_t cycles, now, interval_start;
Ingo Molnar64362572016-03-08 11:09:53 +01001072 unsigned int clock_was_set_seq = 0;
Christopher S. Hall8006c242016-02-22 03:15:22 -08001073 ktime_t base_real, base_raw;
1074 s64 nsec_real, nsec_raw;
Christopher S. Hall2c756fe2016-02-22 03:15:23 -08001075 u8 cs_was_changed_seq;
Christopher S. Hall8006c242016-02-22 03:15:22 -08001076 unsigned long seq;
Christopher S. Hall2c756fe2016-02-22 03:15:23 -08001077 bool do_interp;
Christopher S. Hall8006c242016-02-22 03:15:22 -08001078 int ret;
1079
1080 do {
1081 seq = read_seqcount_begin(&tk_core.seq);
1082 /*
1083 * Try to synchronously capture device time and a system
1084 * counter value calling back into the device driver
1085 */
1086 ret = get_time_fn(&xtstamp->device, &system_counterval, ctx);
1087 if (ret)
1088 return ret;
1089
1090 /*
1091 * Verify that the clocksource associated with the captured
1092 * system counter value is the same as the currently installed
1093 * timekeeper clocksource
1094 */
1095 if (tk->tkr_mono.clock != system_counterval.cs)
1096 return -ENODEV;
Christopher S. Hall2c756fe2016-02-22 03:15:23 -08001097 cycles = system_counterval.cycles;
1098
1099 /*
1100 * Check whether the system counter value provided by the
1101 * device driver is on the current timekeeping interval.
1102 */
John Stultz02a37cc2017-06-08 16:44:20 -07001103 now = tk_clock_read(&tk->tkr_mono);
Christopher S. Hall2c756fe2016-02-22 03:15:23 -08001104 interval_start = tk->tkr_mono.cycle_last;
1105 if (!cycle_between(interval_start, cycles, now)) {
1106 clock_was_set_seq = tk->clock_was_set_seq;
1107 cs_was_changed_seq = tk->cs_was_changed_seq;
1108 cycles = interval_start;
1109 do_interp = true;
1110 } else {
1111 do_interp = false;
1112 }
Christopher S. Hall8006c242016-02-22 03:15:22 -08001113
1114 base_real = ktime_add(tk->tkr_mono.base,
1115 tk_core.timekeeper.offs_real);
1116 base_raw = tk->tkr_raw.base;
1117
1118 nsec_real = timekeeping_cycles_to_ns(&tk->tkr_mono,
1119 system_counterval.cycles);
1120 nsec_raw = timekeeping_cycles_to_ns(&tk->tkr_raw,
1121 system_counterval.cycles);
1122 } while (read_seqcount_retry(&tk_core.seq, seq));
1123
1124 xtstamp->sys_realtime = ktime_add_ns(base_real, nsec_real);
1125 xtstamp->sys_monoraw = ktime_add_ns(base_raw, nsec_raw);
Christopher S. Hall2c756fe2016-02-22 03:15:23 -08001126
1127 /*
1128 * Interpolate if necessary, adjusting back from the start of the
1129 * current interval
1130 */
1131 if (do_interp) {
1132 cycle_t partial_history_cycles, total_history_cycles;
1133 bool discontinuity;
1134
1135 /*
1136 * Check that the counter value occurs after the provided
1137 * history reference and that the history doesn't cross a
1138 * clocksource change
1139 */
1140 if (!history_begin ||
1141 !cycle_between(history_begin->cycles,
1142 system_counterval.cycles, cycles) ||
1143 history_begin->cs_was_changed_seq != cs_was_changed_seq)
1144 return -EINVAL;
1145 partial_history_cycles = cycles - system_counterval.cycles;
1146 total_history_cycles = cycles - history_begin->cycles;
1147 discontinuity =
1148 history_begin->clock_was_set_seq != clock_was_set_seq;
1149
1150 ret = adjust_historical_crosststamp(history_begin,
1151 partial_history_cycles,
1152 total_history_cycles,
1153 discontinuity, xtstamp);
1154 if (ret)
1155 return ret;
1156 }
1157
Christopher S. Hall8006c242016-02-22 03:15:22 -08001158 return 0;
1159}
1160EXPORT_SYMBOL_GPL(get_device_system_crosststamp);
1161
1162/**
john stultz85240702007-05-08 00:27:59 -07001163 * do_gettimeofday - Returns the time of day in a timeval
1164 * @tv: pointer to the timeval to be set
1165 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +01001166 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -07001167 */
1168void do_gettimeofday(struct timeval *tv)
1169{
Thomas Gleixnerd6d29892014-07-16 21:04:04 +00001170 struct timespec64 now;
john stultz85240702007-05-08 00:27:59 -07001171
Thomas Gleixnerd6d29892014-07-16 21:04:04 +00001172 getnstimeofday64(&now);
john stultz85240702007-05-08 00:27:59 -07001173 tv->tv_sec = now.tv_sec;
1174 tv->tv_usec = now.tv_nsec/1000;
1175}
john stultz85240702007-05-08 00:27:59 -07001176EXPORT_SYMBOL(do_gettimeofday);
Richard Cochrand239f492012-04-27 10:12:42 +02001177
john stultz85240702007-05-08 00:27:59 -07001178/**
pang.xunlei21f7eca2014-11-18 19:15:16 +08001179 * do_settimeofday64 - Sets the time of day.
1180 * @ts: pointer to the timespec64 variable containing the new time
john stultz85240702007-05-08 00:27:59 -07001181 *
1182 * Sets the time of day to the new time and update NTP and notify hrtimers
1183 */
pang.xunlei21f7eca2014-11-18 19:15:16 +08001184int do_settimeofday64(const struct timespec64 *ts)
john stultz85240702007-05-08 00:27:59 -07001185{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001186 struct timekeeper *tk = &tk_core.timekeeper;
pang.xunlei21f7eca2014-11-18 19:15:16 +08001187 struct timespec64 ts_delta, xt;
John Stultz92c1d3e2011-11-14 14:05:44 -08001188 unsigned long flags;
Wang YanQinge1d7ba82015-06-23 18:38:54 +08001189 int ret = 0;
john stultz85240702007-05-08 00:27:59 -07001190
pang.xunlei21f7eca2014-11-18 19:15:16 +08001191 if (!timespec64_valid_strict(ts))
john stultz85240702007-05-08 00:27:59 -07001192 return -EINVAL;
1193
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001194 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001195 write_seqcount_begin(&tk_core.seq);
john stultz85240702007-05-08 00:27:59 -07001196
John Stultz4e250fd2012-07-27 14:48:13 -04001197 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -07001198
John Stultz4e250fd2012-07-27 14:48:13 -04001199 xt = tk_xtime(tk);
pang.xunlei21f7eca2014-11-18 19:15:16 +08001200 ts_delta.tv_sec = ts->tv_sec - xt.tv_sec;
1201 ts_delta.tv_nsec = ts->tv_nsec - xt.tv_nsec;
John Stultz1e75fa82012-07-13 01:21:53 -04001202
Wang YanQinge1d7ba82015-06-23 18:38:54 +08001203 if (timespec64_compare(&tk->wall_to_monotonic, &ts_delta) > 0) {
1204 ret = -EINVAL;
1205 goto out;
1206 }
1207
John Stultz7d489d12014-07-16 21:04:01 +00001208 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, ts_delta));
john stultz85240702007-05-08 00:27:59 -07001209
pang.xunlei21f7eca2014-11-18 19:15:16 +08001210 tk_set_xtime(tk, ts);
Wang YanQinge1d7ba82015-06-23 18:38:54 +08001211out:
David Vrabel780427f2013-06-27 11:35:46 +01001212 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
john stultz85240702007-05-08 00:27:59 -07001213
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001214 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001215 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001216
1217 /* signal hrtimers about time change */
1218 clock_was_set();
1219
Wang YanQinge1d7ba82015-06-23 18:38:54 +08001220 return ret;
john stultz85240702007-05-08 00:27:59 -07001221}
pang.xunlei21f7eca2014-11-18 19:15:16 +08001222EXPORT_SYMBOL(do_settimeofday64);
john stultz85240702007-05-08 00:27:59 -07001223
John Stultzc528f7c2011-02-01 13:52:17 +00001224/**
1225 * timekeeping_inject_offset - Adds or subtracts from the current time.
1226 * @tv: pointer to the timespec variable containing the offset
1227 *
1228 * Adds or subtracts an offset value from the current time.
1229 */
1230int timekeeping_inject_offset(struct timespec *ts)
1231{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001232 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -08001233 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +00001234 struct timespec64 ts64, tmp;
John Stultz4e8b1452012-08-08 15:36:20 -04001235 int ret = 0;
John Stultzc528f7c2011-02-01 13:52:17 +00001236
John Stultz37cf4dc2015-12-03 22:09:31 -05001237 if (!timespec_inject_offset_valid(ts))
John Stultzc528f7c2011-02-01 13:52:17 +00001238 return -EINVAL;
1239
John Stultz7d489d12014-07-16 21:04:01 +00001240 ts64 = timespec_to_timespec64(*ts);
1241
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001242 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001243 write_seqcount_begin(&tk_core.seq);
John Stultzc528f7c2011-02-01 13:52:17 +00001244
John Stultz4e250fd2012-07-27 14:48:13 -04001245 timekeeping_forward_now(tk);
John Stultzc528f7c2011-02-01 13:52:17 +00001246
John Stultz4e8b1452012-08-08 15:36:20 -04001247 /* Make sure the proposed value is valid */
John Stultz7d489d12014-07-16 21:04:01 +00001248 tmp = timespec64_add(tk_xtime(tk), ts64);
Wang YanQinge1d7ba82015-06-23 18:38:54 +08001249 if (timespec64_compare(&tk->wall_to_monotonic, &ts64) > 0 ||
1250 !timespec64_valid_strict(&tmp)) {
John Stultz4e8b1452012-08-08 15:36:20 -04001251 ret = -EINVAL;
1252 goto error;
1253 }
John Stultz1e75fa82012-07-13 01:21:53 -04001254
John Stultz7d489d12014-07-16 21:04:01 +00001255 tk_xtime_add(tk, &ts64);
1256 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, ts64));
John Stultzc528f7c2011-02-01 13:52:17 +00001257
John Stultz4e8b1452012-08-08 15:36:20 -04001258error: /* even if we error out, we forwarded the time, so call update */
David Vrabel780427f2013-06-27 11:35:46 +01001259 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultzc528f7c2011-02-01 13:52:17 +00001260
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001261 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001262 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +00001263
1264 /* signal hrtimers about time change */
1265 clock_was_set();
1266
John Stultz4e8b1452012-08-08 15:36:20 -04001267 return ret;
John Stultzc528f7c2011-02-01 13:52:17 +00001268}
1269EXPORT_SYMBOL(timekeeping_inject_offset);
1270
John Stultzcc244dd2012-05-03 12:30:07 -07001271
1272/**
1273 * timekeeping_get_tai_offset - Returns current TAI offset from UTC
1274 *
1275 */
1276s32 timekeeping_get_tai_offset(void)
1277{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001278 struct timekeeper *tk = &tk_core.timekeeper;
John Stultzcc244dd2012-05-03 12:30:07 -07001279 unsigned int seq;
1280 s32 ret;
1281
1282 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001283 seq = read_seqcount_begin(&tk_core.seq);
John Stultzcc244dd2012-05-03 12:30:07 -07001284 ret = tk->tai_offset;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001285 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultzcc244dd2012-05-03 12:30:07 -07001286
1287 return ret;
1288}
1289
1290/**
1291 * __timekeeping_set_tai_offset - Lock free worker function
1292 *
1293 */
Fengguang Wudd5d70e2013-03-25 12:24:24 -07001294static void __timekeeping_set_tai_offset(struct timekeeper *tk, s32 tai_offset)
John Stultzcc244dd2012-05-03 12:30:07 -07001295{
1296 tk->tai_offset = tai_offset;
John Stultz04005f62013-12-10 17:13:35 -08001297 tk->offs_tai = ktime_add(tk->offs_real, ktime_set(tai_offset, 0));
John Stultzcc244dd2012-05-03 12:30:07 -07001298}
1299
1300/**
1301 * timekeeping_set_tai_offset - Sets the current TAI offset from UTC
1302 *
1303 */
1304void timekeeping_set_tai_offset(s32 tai_offset)
1305{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001306 struct timekeeper *tk = &tk_core.timekeeper;
John Stultzcc244dd2012-05-03 12:30:07 -07001307 unsigned long flags;
1308
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001309 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001310 write_seqcount_begin(&tk_core.seq);
John Stultzcc244dd2012-05-03 12:30:07 -07001311 __timekeeping_set_tai_offset(tk, tai_offset);
John Stultzf55c0762013-12-11 18:50:25 -08001312 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001313 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001314 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz4e8f8b32013-04-10 12:41:49 -07001315 clock_was_set();
John Stultzcc244dd2012-05-03 12:30:07 -07001316}
1317
john stultz85240702007-05-08 00:27:59 -07001318/**
1319 * change_clocksource - Swaps clocksources if a new one is available
1320 *
1321 * Accumulates current time interval and initializes new clocksource
1322 */
Martin Schwidefsky75c51582009-08-14 15:47:30 +02001323static int change_clocksource(void *data)
john stultz85240702007-05-08 00:27:59 -07001324{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001325 struct timekeeper *tk = &tk_core.timekeeper;
Magnus Damm4614e6a2009-04-21 12:24:02 -07001326 struct clocksource *new, *old;
John Stultzf695cf92012-03-14 16:38:15 -07001327 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -07001328
Martin Schwidefsky75c51582009-08-14 15:47:30 +02001329 new = (struct clocksource *) data;
john stultz85240702007-05-08 00:27:59 -07001330
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001331 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001332 write_seqcount_begin(&tk_core.seq);
John Stultzf695cf92012-03-14 16:38:15 -07001333
John Stultz4e250fd2012-07-27 14:48:13 -04001334 timekeeping_forward_now(tk);
Thomas Gleixner09ac3692013-04-25 20:31:44 +00001335 /*
1336 * If the cs is in module, get a module reference. Succeeds
1337 * for built-in code (owner == NULL) as well.
1338 */
1339 if (try_module_get(new->owner)) {
1340 if (!new->enable || new->enable(new) == 0) {
Peter Zijlstra876e7882015-03-19 10:09:06 +01001341 old = tk->tkr_mono.clock;
Thomas Gleixner09ac3692013-04-25 20:31:44 +00001342 tk_setup_internals(tk, new);
1343 if (old->disable)
1344 old->disable(old);
1345 module_put(old->owner);
1346 } else {
1347 module_put(new->owner);
1348 }
Martin Schwidefsky75c51582009-08-14 15:47:30 +02001349 }
David Vrabel780427f2013-06-27 11:35:46 +01001350 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultzf695cf92012-03-14 16:38:15 -07001351
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001352 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001353 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -07001354
Martin Schwidefsky75c51582009-08-14 15:47:30 +02001355 return 0;
1356}
john stultz85240702007-05-08 00:27:59 -07001357
Martin Schwidefsky75c51582009-08-14 15:47:30 +02001358/**
1359 * timekeeping_notify - Install a new clock source
1360 * @clock: pointer to the clock source
1361 *
1362 * This function is called from clocksource.c after a new, better clock
1363 * source has been registered. The caller holds the clocksource_mutex.
1364 */
Thomas Gleixnerba919d12013-04-25 20:31:44 +00001365int timekeeping_notify(struct clocksource *clock)
Martin Schwidefsky75c51582009-08-14 15:47:30 +02001366{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001367 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz4e250fd2012-07-27 14:48:13 -04001368
Peter Zijlstra876e7882015-03-19 10:09:06 +01001369 if (tk->tkr_mono.clock == clock)
Thomas Gleixnerba919d12013-04-25 20:31:44 +00001370 return 0;
Martin Schwidefsky75c51582009-08-14 15:47:30 +02001371 stop_machine(change_clocksource, clock, NULL);
john stultz85240702007-05-08 00:27:59 -07001372 tick_clock_notify();
Peter Zijlstra876e7882015-03-19 10:09:06 +01001373 return tk->tkr_mono.clock == clock ? 0 : -1;
john stultz85240702007-05-08 00:27:59 -07001374}
Martin Schwidefsky75c51582009-08-14 15:47:30 +02001375
Thomas Gleixnera40f2622009-07-07 13:00:31 +02001376/**
John Stultzcdba2ec2014-11-07 11:03:20 -08001377 * getrawmonotonic64 - Returns the raw monotonic time in a timespec
1378 * @ts: pointer to the timespec64 to be set
John Stultz2d422442008-08-20 16:37:30 -07001379 *
1380 * Returns the raw monotonic time (completely un-modified by ntp)
1381 */
John Stultzcdba2ec2014-11-07 11:03:20 -08001382void getrawmonotonic64(struct timespec64 *ts)
John Stultz2d422442008-08-20 16:37:30 -07001383{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001384 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00001385 struct timespec64 ts64;
John Stultz2d422442008-08-20 16:37:30 -07001386 unsigned long seq;
1387 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -07001388
1389 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001390 seq = read_seqcount_begin(&tk_core.seq);
Peter Zijlstra4a4ad802015-03-19 09:28:44 +01001391 nsecs = timekeeping_get_ns(&tk->tkr_raw);
John Stultz7d489d12014-07-16 21:04:01 +00001392 ts64 = tk->raw_time;
John Stultz2d422442008-08-20 16:37:30 -07001393
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001394 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz2d422442008-08-20 16:37:30 -07001395
John Stultz7d489d12014-07-16 21:04:01 +00001396 timespec64_add_ns(&ts64, nsecs);
John Stultzcdba2ec2014-11-07 11:03:20 -08001397 *ts = ts64;
John Stultz2d422442008-08-20 16:37:30 -07001398}
John Stultzcdba2ec2014-11-07 11:03:20 -08001399EXPORT_SYMBOL(getrawmonotonic64);
1400
John Stultz2d422442008-08-20 16:37:30 -07001401
John Stultz2d422442008-08-20 16:37:30 -07001402/**
Li Zefancf4fc6c2008-02-08 04:19:24 -08001403 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -07001404 */
Li Zefancf4fc6c2008-02-08 04:19:24 -08001405int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -07001406{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001407 struct timekeeper *tk = &tk_core.timekeeper;
john stultz85240702007-05-08 00:27:59 -07001408 unsigned long seq;
1409 int ret;
1410
1411 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001412 seq = read_seqcount_begin(&tk_core.seq);
john stultz85240702007-05-08 00:27:59 -07001413
Peter Zijlstra876e7882015-03-19 10:09:06 +01001414 ret = tk->tkr_mono.clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -07001415
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001416 } while (read_seqcount_retry(&tk_core.seq, seq));
john stultz85240702007-05-08 00:27:59 -07001417
1418 return ret;
1419}
1420
1421/**
Jon Hunter98962462009-08-18 12:45:10 -05001422 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
Jon Hunter98962462009-08-18 12:45:10 -05001423 */
1424u64 timekeeping_max_deferment(void)
1425{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001426 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz70471f22011-11-14 12:48:10 -08001427 unsigned long seq;
1428 u64 ret;
John Stultz42e71e82012-07-13 01:21:51 -04001429
John Stultz70471f22011-11-14 12:48:10 -08001430 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001431 seq = read_seqcount_begin(&tk_core.seq);
John Stultz70471f22011-11-14 12:48:10 -08001432
Peter Zijlstra876e7882015-03-19 10:09:06 +01001433 ret = tk->tkr_mono.clock->max_idle_ns;
John Stultz70471f22011-11-14 12:48:10 -08001434
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001435 } while (read_seqcount_retry(&tk_core.seq, seq));
John Stultz70471f22011-11-14 12:48:10 -08001436
1437 return ret;
Jon Hunter98962462009-08-18 12:45:10 -05001438}
1439
1440/**
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001441 * read_persistent_clock - Return time from the persistent clock.
john stultz85240702007-05-08 00:27:59 -07001442 *
1443 * Weak dummy function for arches that do not yet support it.
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001444 * Reads the time from the battery backed persistent clock.
1445 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
john stultz85240702007-05-08 00:27:59 -07001446 *
1447 * XXX - Do be sure to remove it once all arches implement it.
1448 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -07001449void __weak read_persistent_clock(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -07001450{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001451 ts->tv_sec = 0;
1452 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -07001453}
1454
Xunlei Pang2ee96632015-04-01 20:34:22 -07001455void __weak read_persistent_clock64(struct timespec64 *ts64)
1456{
1457 struct timespec ts;
1458
1459 read_persistent_clock(&ts);
1460 *ts64 = timespec_to_timespec64(ts);
1461}
1462
Martin Schwidefsky23970e32009-08-14 15:47:32 +02001463/**
Xunlei Pange83d0a42015-04-09 09:04:42 +08001464 * read_boot_clock64 - Return time of the system start.
Martin Schwidefsky23970e32009-08-14 15:47:32 +02001465 *
1466 * Weak dummy function for arches that do not yet support it.
1467 * Function to read the exact time the system has been started.
Xunlei Pange83d0a42015-04-09 09:04:42 +08001468 * Returns a timespec64 with tv_sec=0 and tv_nsec=0 if unsupported.
Martin Schwidefsky23970e32009-08-14 15:47:32 +02001469 *
1470 * XXX - Do be sure to remove it once all arches implement it.
1471 */
Xunlei Pange83d0a42015-04-09 09:04:42 +08001472void __weak read_boot_clock64(struct timespec64 *ts)
Martin Schwidefsky23970e32009-08-14 15:47:32 +02001473{
1474 ts->tv_sec = 0;
1475 ts->tv_nsec = 0;
1476}
1477
Xunlei Pang0fa88cb2015-04-01 20:34:38 -07001478/* Flag for if timekeeping_resume() has injected sleeptime */
1479static bool sleeptime_injected;
1480
1481/* Flag for if there is a persistent clock on this platform */
1482static bool persistent_clock_exists;
1483
john stultz85240702007-05-08 00:27:59 -07001484/*
1485 * timekeeping_init - Initializes the clocksource and common timekeeping values
1486 */
1487void __init timekeeping_init(void)
1488{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001489 struct timekeeper *tk = &tk_core.timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001490 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -07001491 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +00001492 struct timespec64 now, boot, tmp;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001493
Xunlei Pang2ee96632015-04-01 20:34:22 -07001494 read_persistent_clock64(&now);
John Stultz7d489d12014-07-16 21:04:01 +00001495 if (!timespec64_valid_strict(&now)) {
John Stultz4e8b1452012-08-08 15:36:20 -04001496 pr_warn("WARNING: Persistent clock returned invalid value!\n"
1497 " Check your CMOS/BIOS settings.\n");
1498 now.tv_sec = 0;
1499 now.tv_nsec = 0;
Feng Tang31ade302013-01-16 00:09:47 +08001500 } else if (now.tv_sec || now.tv_nsec)
Xunlei Pang0fa88cb2015-04-01 20:34:38 -07001501 persistent_clock_exists = true;
John Stultz4e8b1452012-08-08 15:36:20 -04001502
Xunlei Pang9a806dd2015-04-01 20:34:21 -07001503 read_boot_clock64(&boot);
John Stultz7d489d12014-07-16 21:04:01 +00001504 if (!timespec64_valid_strict(&boot)) {
John Stultz4e8b1452012-08-08 15:36:20 -04001505 pr_warn("WARNING: Boot clock returned invalid value!\n"
1506 " Check your CMOS/BIOS settings.\n");
1507 boot.tv_sec = 0;
1508 boot.tv_nsec = 0;
1509 }
john stultz85240702007-05-08 00:27:59 -07001510
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001511 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001512 write_seqcount_begin(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -07001513 ntp_init();
1514
Martin Schwidefskyf1b82742009-08-14 15:47:21 +02001515 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +02001516 if (clock->enable)
1517 clock->enable(clock);
John Stultz4e250fd2012-07-27 14:48:13 -04001518 tk_setup_internals(tk, clock);
john stultz85240702007-05-08 00:27:59 -07001519
John Stultz4e250fd2012-07-27 14:48:13 -04001520 tk_set_xtime(tk, &now);
1521 tk->raw_time.tv_sec = 0;
1522 tk->raw_time.tv_nsec = 0;
John Stultz1e75fa82012-07-13 01:21:53 -04001523 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
John Stultz4e250fd2012-07-27 14:48:13 -04001524 boot = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -04001525
John Stultz7d489d12014-07-16 21:04:01 +00001526 set_normalized_timespec64(&tmp, -boot.tv_sec, -boot.tv_nsec);
John Stultz4e250fd2012-07-27 14:48:13 -04001527 tk_set_wall_to_mono(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -04001528
Thomas Gleixner56fd16c2015-10-16 15:50:22 +02001529 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001530
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001531 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001532 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001533}
1534
Xunlei Pang264bb3f2015-04-01 20:34:37 -07001535/* time in seconds when suspend began for persistent clock */
John Stultz7d489d12014-07-16 21:04:01 +00001536static struct timespec64 timekeeping_suspend_time;
john stultz85240702007-05-08 00:27:59 -07001537
1538/**
John Stultz304529b2011-04-01 14:32:09 -07001539 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
1540 * @delta: pointer to a timespec delta value
1541 *
1542 * Takes a timespec offset measuring a suspend interval and properly
1543 * adds the sleep offset to the timekeeping variables.
1544 */
John Stultzf726a692012-07-13 01:21:57 -04001545static void __timekeeping_inject_sleeptime(struct timekeeper *tk,
John Stultz7d489d12014-07-16 21:04:01 +00001546 struct timespec64 *delta)
John Stultz304529b2011-04-01 14:32:09 -07001547{
John Stultz7d489d12014-07-16 21:04:01 +00001548 if (!timespec64_valid_strict(delta)) {
John Stultz6d9bcb62014-06-04 16:11:43 -07001549 printk_deferred(KERN_WARNING
1550 "__timekeeping_inject_sleeptime: Invalid "
1551 "sleep delta value!\n");
John Stultzcb5de2f8d2011-06-01 18:18:09 -07001552 return;
1553 }
John Stultzf726a692012-07-13 01:21:57 -04001554 tk_xtime_add(tk, delta);
John Stultz7d489d12014-07-16 21:04:01 +00001555 tk_set_wall_to_mono(tk, timespec64_sub(tk->wall_to_monotonic, *delta));
Thomas Gleixner47da70d2014-07-16 21:05:00 +00001556 tk_update_sleep_time(tk, timespec64_to_ktime(*delta));
Colin Cross5c835452013-05-21 22:32:14 -07001557 tk_debug_account_sleep_time(delta);
John Stultz304529b2011-04-01 14:32:09 -07001558}
1559
Xunlei Pang7f298132015-04-01 20:34:35 -07001560#if defined(CONFIG_PM_SLEEP) && defined(CONFIG_RTC_HCTOSYS_DEVICE)
John Stultz304529b2011-04-01 14:32:09 -07001561/**
Xunlei Pang0fa88cb2015-04-01 20:34:38 -07001562 * We have three kinds of time sources to use for sleep time
1563 * injection, the preference order is:
1564 * 1) non-stop clocksource
1565 * 2) persistent clock (ie: RTC accessible when irqs are off)
1566 * 3) RTC
1567 *
1568 * 1) and 2) are used by timekeeping, 3) by RTC subsystem.
1569 * If system has neither 1) nor 2), 3) will be used finally.
1570 *
1571 *
1572 * If timekeeping has injected sleeptime via either 1) or 2),
1573 * 3) becomes needless, so in this case we don't need to call
1574 * rtc_resume(), and this is what timekeeping_rtc_skipresume()
1575 * means.
1576 */
1577bool timekeeping_rtc_skipresume(void)
1578{
1579 return sleeptime_injected;
1580}
1581
1582/**
1583 * 1) can be determined whether to use or not only when doing
1584 * timekeeping_resume() which is invoked after rtc_suspend(),
1585 * so we can't skip rtc_suspend() surely if system has 1).
1586 *
1587 * But if system has 2), 2) will definitely be used, so in this
1588 * case we don't need to call rtc_suspend(), and this is what
1589 * timekeeping_rtc_skipsuspend() means.
1590 */
1591bool timekeeping_rtc_skipsuspend(void)
1592{
1593 return persistent_clock_exists;
1594}
1595
1596/**
pang.xunlei04d90892014-11-18 19:15:17 +08001597 * timekeeping_inject_sleeptime64 - Adds suspend interval to timeekeeping values
1598 * @delta: pointer to a timespec64 delta value
John Stultz304529b2011-04-01 14:32:09 -07001599 *
Xunlei Pang2ee96632015-04-01 20:34:22 -07001600 * This hook is for architectures that cannot support read_persistent_clock64
John Stultz304529b2011-04-01 14:32:09 -07001601 * because their RTC/persistent clock is only accessible when irqs are enabled.
Xunlei Pang0fa88cb2015-04-01 20:34:38 -07001602 * and also don't have an effective nonstop clocksource.
John Stultz304529b2011-04-01 14:32:09 -07001603 *
1604 * This function should only be called by rtc_resume(), and allows
1605 * a suspend offset to be injected into the timekeeping values.
1606 */
pang.xunlei04d90892014-11-18 19:15:17 +08001607void timekeeping_inject_sleeptime64(struct timespec64 *delta)
John Stultz304529b2011-04-01 14:32:09 -07001608{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001609 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -08001610 unsigned long flags;
John Stultz304529b2011-04-01 14:32:09 -07001611
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001612 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001613 write_seqcount_begin(&tk_core.seq);
John Stultz70471f22011-11-14 12:48:10 -08001614
John Stultz4e250fd2012-07-27 14:48:13 -04001615 timekeeping_forward_now(tk);
John Stultz304529b2011-04-01 14:32:09 -07001616
pang.xunlei04d90892014-11-18 19:15:17 +08001617 __timekeeping_inject_sleeptime(tk, delta);
John Stultz304529b2011-04-01 14:32:09 -07001618
David Vrabel780427f2013-06-27 11:35:46 +01001619 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultz304529b2011-04-01 14:32:09 -07001620
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001621 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001622 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz304529b2011-04-01 14:32:09 -07001623
1624 /* signal hrtimers about time change */
1625 clock_was_set();
1626}
Xunlei Pang7f298132015-04-01 20:34:35 -07001627#endif
John Stultz304529b2011-04-01 14:32:09 -07001628
John Stultz304529b2011-04-01 14:32:09 -07001629/**
john stultz85240702007-05-08 00:27:59 -07001630 * timekeeping_resume - Resumes the generic timekeeping subsystem.
john stultz85240702007-05-08 00:27:59 -07001631 */
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +01001632void timekeeping_resume(void)
john stultz85240702007-05-08 00:27:59 -07001633{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001634 struct timekeeper *tk = &tk_core.timekeeper;
Peter Zijlstra876e7882015-03-19 10:09:06 +01001635 struct clocksource *clock = tk->tkr_mono.clock;
John Stultz92c1d3e2011-11-14 14:05:44 -08001636 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +00001637 struct timespec64 ts_new, ts_delta;
Feng Tange445cf12013-03-12 11:56:48 +08001638 cycle_t cycle_now, cycle_delta;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001639
Xunlei Pang0fa88cb2015-04-01 20:34:38 -07001640 sleeptime_injected = false;
Xunlei Pang2ee96632015-04-01 20:34:22 -07001641 read_persistent_clock64(&ts_new);
john stultz85240702007-05-08 00:27:59 -07001642
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +02001643 clockevents_resume();
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +02001644 clocksource_resume();
1645
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001646 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001647 write_seqcount_begin(&tk_core.seq);
john stultz85240702007-05-08 00:27:59 -07001648
Feng Tange445cf12013-03-12 11:56:48 +08001649 /*
1650 * After system resumes, we need to calculate the suspended time and
1651 * compensate it for the OS time. There are 3 sources that could be
1652 * used: Nonstop clocksource during suspend, persistent clock and rtc
1653 * device.
1654 *
1655 * One specific platform may have 1 or 2 or all of them, and the
1656 * preference will be:
1657 * suspend-nonstop clocksource -> persistent clock -> rtc
1658 * The less preferred source will only be tried if there is no better
1659 * usable source. The rtc part is handled separately in rtc core code.
1660 */
John Stultz02a37cc2017-06-08 16:44:20 -07001661 cycle_now = tk_clock_read(&tk->tkr_mono);
Feng Tange445cf12013-03-12 11:56:48 +08001662 if ((clock->flags & CLOCK_SOURCE_SUSPEND_NONSTOP) &&
Peter Zijlstra876e7882015-03-19 10:09:06 +01001663 cycle_now > tk->tkr_mono.cycle_last) {
Feng Tange445cf12013-03-12 11:56:48 +08001664 u64 num, max = ULLONG_MAX;
1665 u32 mult = clock->mult;
1666 u32 shift = clock->shift;
1667 s64 nsec = 0;
1668
Peter Zijlstra876e7882015-03-19 10:09:06 +01001669 cycle_delta = clocksource_delta(cycle_now, tk->tkr_mono.cycle_last,
1670 tk->tkr_mono.mask);
Feng Tange445cf12013-03-12 11:56:48 +08001671
1672 /*
1673 * "cycle_delta * mutl" may cause 64 bits overflow, if the
1674 * suspended time is too long. In that case we need do the
1675 * 64 bits math carefully
1676 */
1677 do_div(max, mult);
1678 if (cycle_delta > max) {
1679 num = div64_u64(cycle_delta, max);
1680 nsec = (((u64) max * mult) >> shift) * num;
1681 cycle_delta -= num * max;
1682 }
1683 nsec += ((u64) cycle_delta * mult) >> shift;
1684
John Stultz7d489d12014-07-16 21:04:01 +00001685 ts_delta = ns_to_timespec64(nsec);
Xunlei Pang0fa88cb2015-04-01 20:34:38 -07001686 sleeptime_injected = true;
John Stultz7d489d12014-07-16 21:04:01 +00001687 } else if (timespec64_compare(&ts_new, &timekeeping_suspend_time) > 0) {
1688 ts_delta = timespec64_sub(ts_new, timekeeping_suspend_time);
Xunlei Pang0fa88cb2015-04-01 20:34:38 -07001689 sleeptime_injected = true;
john stultz85240702007-05-08 00:27:59 -07001690 }
Feng Tange445cf12013-03-12 11:56:48 +08001691
Xunlei Pang0fa88cb2015-04-01 20:34:38 -07001692 if (sleeptime_injected)
Feng Tange445cf12013-03-12 11:56:48 +08001693 __timekeeping_inject_sleeptime(tk, &ts_delta);
1694
1695 /* Re-base the last cycle value */
Peter Zijlstra876e7882015-03-19 10:09:06 +01001696 tk->tkr_mono.cycle_last = cycle_now;
Peter Zijlstra4a4ad802015-03-19 09:28:44 +01001697 tk->tkr_raw.cycle_last = cycle_now;
1698
John Stultz4e250fd2012-07-27 14:48:13 -04001699 tk->ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -07001700 timekeeping_suspended = 0;
David Vrabel780427f2013-06-27 11:35:46 +01001701 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001702 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001703 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001704
1705 touch_softlockup_watchdog();
1706
Thomas Gleixner4ffee522015-03-25 13:09:16 +01001707 tick_resume();
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +02001708 hrtimers_resume();
john stultz85240702007-05-08 00:27:59 -07001709}
1710
Rafael J. Wysocki124cf9112015-02-13 23:50:43 +01001711int timekeeping_suspend(void)
john stultz85240702007-05-08 00:27:59 -07001712{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001713 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -08001714 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +00001715 struct timespec64 delta, delta_delta;
1716 static struct timespec64 old_delta;
john stultz85240702007-05-08 00:27:59 -07001717
Xunlei Pang2ee96632015-04-01 20:34:22 -07001718 read_persistent_clock64(&timekeeping_suspend_time);
Thomas Gleixner3be90952007-09-16 15:36:43 +02001719
Zoran Markovic0d6bd992013-05-17 11:24:05 -07001720 /*
1721 * On some systems the persistent_clock can not be detected at
1722 * timekeeping_init by its return value, so if we see a valid
1723 * value returned, update the persistent_clock_exists flag.
1724 */
1725 if (timekeeping_suspend_time.tv_sec || timekeeping_suspend_time.tv_nsec)
Xunlei Pang0fa88cb2015-04-01 20:34:38 -07001726 persistent_clock_exists = true;
Zoran Markovic0d6bd992013-05-17 11:24:05 -07001727
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001728 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001729 write_seqcount_begin(&tk_core.seq);
John Stultz4e250fd2012-07-27 14:48:13 -04001730 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -07001731 timekeeping_suspended = 1;
John Stultzcb332172011-05-31 22:53:23 -07001732
Xunlei Pang0fa88cb2015-04-01 20:34:38 -07001733 if (persistent_clock_exists) {
John Stultzcb332172011-05-31 22:53:23 -07001734 /*
Xunlei Pang264bb3f2015-04-01 20:34:37 -07001735 * To avoid drift caused by repeated suspend/resumes,
1736 * which each can add ~1 second drift error,
1737 * try to compensate so the difference in system time
1738 * and persistent_clock time stays close to constant.
John Stultzcb332172011-05-31 22:53:23 -07001739 */
Xunlei Pang264bb3f2015-04-01 20:34:37 -07001740 delta = timespec64_sub(tk_xtime(tk), timekeeping_suspend_time);
1741 delta_delta = timespec64_sub(delta, old_delta);
1742 if (abs(delta_delta.tv_sec) >= 2) {
1743 /*
1744 * if delta_delta is too large, assume time correction
1745 * has occurred and set old_delta to the current delta.
1746 */
1747 old_delta = delta;
1748 } else {
1749 /* Otherwise try to adjust old_system to compensate */
1750 timekeeping_suspend_time =
1751 timespec64_add(timekeeping_suspend_time, delta_delta);
1752 }
John Stultzcb332172011-05-31 22:53:23 -07001753 }
John Stultz330a1612013-12-11 19:10:36 -08001754
1755 timekeeping_update(tk, TK_MIRROR);
Rafael J. Wysocki060407a2015-02-13 14:49:02 +01001756 halt_fast_timekeeper(tk);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00001757 write_seqcount_end(&tk_core.seq);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001758 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001759
Thomas Gleixner4ffee522015-03-25 13:09:16 +01001760 tick_suspend();
Magnus Dammc54a42b2010-02-02 14:41:41 -08001761 clocksource_suspend();
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +02001762 clockevents_suspend();
john stultz85240702007-05-08 00:27:59 -07001763
1764 return 0;
1765}
1766
1767/* sysfs resume/suspend bits for timekeeping */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001768static struct syscore_ops timekeeping_syscore_ops = {
john stultz85240702007-05-08 00:27:59 -07001769 .resume = timekeeping_resume,
1770 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -07001771};
1772
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001773static int __init timekeeping_init_ops(void)
john stultz85240702007-05-08 00:27:59 -07001774{
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001775 register_syscore_ops(&timekeeping_syscore_ops);
1776 return 0;
john stultz85240702007-05-08 00:27:59 -07001777}
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001778device_initcall(timekeeping_init_ops);
john stultz85240702007-05-08 00:27:59 -07001779
1780/*
John Stultzdc491592013-12-06 17:25:21 -08001781 * Apply a multiplier adjustment to the timekeeper
john stultz85240702007-05-08 00:27:59 -07001782 */
John Stultzdc491592013-12-06 17:25:21 -08001783static __always_inline void timekeeping_apply_adjustment(struct timekeeper *tk,
1784 s64 offset,
1785 bool negative,
1786 int adj_scale)
john stultz85240702007-05-08 00:27:59 -07001787{
John Stultzdc491592013-12-06 17:25:21 -08001788 s64 interval = tk->cycle_interval;
1789 s32 mult_adj = 1;
john stultz85240702007-05-08 00:27:59 -07001790
John Stultzdc491592013-12-06 17:25:21 -08001791 if (negative) {
1792 mult_adj = -mult_adj;
1793 interval = -interval;
1794 offset = -offset;
john stultz85240702007-05-08 00:27:59 -07001795 }
John Stultzdc491592013-12-06 17:25:21 -08001796 mult_adj <<= adj_scale;
1797 interval <<= adj_scale;
1798 offset <<= adj_scale;
john stultz85240702007-05-08 00:27:59 -07001799
John Stultzc2bc1112011-10-27 18:12:42 -07001800 /*
1801 * So the following can be confusing.
1802 *
John Stultzdc491592013-12-06 17:25:21 -08001803 * To keep things simple, lets assume mult_adj == 1 for now.
John Stultzc2bc1112011-10-27 18:12:42 -07001804 *
John Stultzdc491592013-12-06 17:25:21 -08001805 * When mult_adj != 1, remember that the interval and offset values
John Stultzc2bc1112011-10-27 18:12:42 -07001806 * have been appropriately scaled so the math is the same.
1807 *
1808 * The basic idea here is that we're increasing the multiplier
1809 * by one, this causes the xtime_interval to be incremented by
1810 * one cycle_interval. This is because:
1811 * xtime_interval = cycle_interval * mult
1812 * So if mult is being incremented by one:
1813 * xtime_interval = cycle_interval * (mult + 1)
1814 * Its the same as:
1815 * xtime_interval = (cycle_interval * mult) + cycle_interval
1816 * Which can be shortened to:
1817 * xtime_interval += cycle_interval
1818 *
1819 * So offset stores the non-accumulated cycles. Thus the current
1820 * time (in shifted nanoseconds) is:
1821 * now = (offset * adj) + xtime_nsec
1822 * Now, even though we're adjusting the clock frequency, we have
1823 * to keep time consistent. In other words, we can't jump back
1824 * in time, and we also want to avoid jumping forward in time.
1825 *
1826 * So given the same offset value, we need the time to be the same
1827 * both before and after the freq adjustment.
1828 * now = (offset * adj_1) + xtime_nsec_1
1829 * now = (offset * adj_2) + xtime_nsec_2
1830 * So:
1831 * (offset * adj_1) + xtime_nsec_1 =
1832 * (offset * adj_2) + xtime_nsec_2
1833 * And we know:
1834 * adj_2 = adj_1 + 1
1835 * So:
1836 * (offset * adj_1) + xtime_nsec_1 =
1837 * (offset * (adj_1+1)) + xtime_nsec_2
1838 * (offset * adj_1) + xtime_nsec_1 =
1839 * (offset * adj_1) + offset + xtime_nsec_2
1840 * Canceling the sides:
1841 * xtime_nsec_1 = offset + xtime_nsec_2
1842 * Which gives us:
1843 * xtime_nsec_2 = xtime_nsec_1 - offset
1844 * Which simplfies to:
1845 * xtime_nsec -= offset
1846 *
1847 * XXX - TODO: Doc ntp_error calculation.
1848 */
Peter Zijlstra876e7882015-03-19 10:09:06 +01001849 if ((mult_adj > 0) && (tk->tkr_mono.mult + mult_adj < mult_adj)) {
pang.xunlei6067dc52014-10-08 15:03:34 +08001850 /* NTP adjustment caused clocksource mult overflow */
1851 WARN_ON_ONCE(1);
1852 return;
1853 }
1854
Peter Zijlstra876e7882015-03-19 10:09:06 +01001855 tk->tkr_mono.mult += mult_adj;
John Stultzf726a692012-07-13 01:21:57 -04001856 tk->xtime_interval += interval;
Peter Zijlstra876e7882015-03-19 10:09:06 +01001857 tk->tkr_mono.xtime_nsec -= offset;
John Stultzf726a692012-07-13 01:21:57 -04001858 tk->ntp_error -= (interval - offset) << tk->ntp_error_shift;
John Stultzdc491592013-12-06 17:25:21 -08001859}
John Stultz2a8c0882012-07-13 01:21:56 -04001860
John Stultzdc491592013-12-06 17:25:21 -08001861/*
1862 * Calculate the multiplier adjustment needed to match the frequency
1863 * specified by NTP
1864 */
1865static __always_inline void timekeeping_freqadjust(struct timekeeper *tk,
1866 s64 offset)
1867{
1868 s64 interval = tk->cycle_interval;
1869 s64 xinterval = tk->xtime_interval;
John Stultzec02b072015-12-03 10:23:30 -08001870 u32 base = tk->tkr_mono.clock->mult;
1871 u32 max = tk->tkr_mono.clock->maxadj;
1872 u32 cur_adj = tk->tkr_mono.mult;
John Stultzdc491592013-12-06 17:25:21 -08001873 s64 tick_error;
1874 bool negative;
John Stultzec02b072015-12-03 10:23:30 -08001875 u32 adj_scale;
John Stultzdc491592013-12-06 17:25:21 -08001876
1877 /* Remove any current error adj from freq calculation */
1878 if (tk->ntp_err_mult)
1879 xinterval -= tk->cycle_interval;
1880
John Stultz375f45b2014-04-23 20:53:29 -07001881 tk->ntp_tick = ntp_tick_length();
1882
John Stultzdc491592013-12-06 17:25:21 -08001883 /* Calculate current error per tick */
1884 tick_error = ntp_tick_length() >> tk->ntp_error_shift;
1885 tick_error -= (xinterval + tk->xtime_remainder);
1886
1887 /* Don't worry about correcting it if its small */
1888 if (likely((tick_error >= 0) && (tick_error <= interval)))
1889 return;
1890
1891 /* preserve the direction of correction */
1892 negative = (tick_error < 0);
1893
John Stultzec02b072015-12-03 10:23:30 -08001894 /* If any adjustment would pass the max, just return */
1895 if (negative && (cur_adj - 1) <= (base - max))
1896 return;
1897 if (!negative && (cur_adj + 1) >= (base + max))
1898 return;
1899 /*
1900 * Sort out the magnitude of the correction, but
1901 * avoid making so large a correction that we go
1902 * over the max adjustment.
1903 */
1904 adj_scale = 0;
Andrew Morton79211c82015-11-09 14:58:13 -08001905 tick_error = abs(tick_error);
John Stultzec02b072015-12-03 10:23:30 -08001906 while (tick_error > interval) {
1907 u32 adj = 1 << (adj_scale + 1);
1908
1909 /* Check if adjustment gets us within 1 unit from the max */
1910 if (negative && (cur_adj - adj) <= (base - max))
1911 break;
1912 if (!negative && (cur_adj + adj) >= (base + max))
1913 break;
1914
1915 adj_scale++;
John Stultzdc491592013-12-06 17:25:21 -08001916 tick_error >>= 1;
John Stultzec02b072015-12-03 10:23:30 -08001917 }
John Stultzdc491592013-12-06 17:25:21 -08001918
1919 /* scale the corrections */
John Stultzec02b072015-12-03 10:23:30 -08001920 timekeeping_apply_adjustment(tk, offset, negative, adj_scale);
John Stultzdc491592013-12-06 17:25:21 -08001921}
1922
1923/*
1924 * Adjust the timekeeper's multiplier to the correct frequency
1925 * and also to reduce the accumulated error value.
1926 */
1927static void timekeeping_adjust(struct timekeeper *tk, s64 offset)
1928{
1929 /* Correct for the current frequency error */
1930 timekeeping_freqadjust(tk, offset);
1931
1932 /* Next make a small adjustment to fix any cumulative error */
1933 if (!tk->ntp_err_mult && (tk->ntp_error > 0)) {
1934 tk->ntp_err_mult = 1;
1935 timekeeping_apply_adjustment(tk, offset, 0, 0);
1936 } else if (tk->ntp_err_mult && (tk->ntp_error <= 0)) {
1937 /* Undo any existing error adjustment */
1938 timekeeping_apply_adjustment(tk, offset, 1, 0);
1939 tk->ntp_err_mult = 0;
1940 }
1941
Peter Zijlstra876e7882015-03-19 10:09:06 +01001942 if (unlikely(tk->tkr_mono.clock->maxadj &&
1943 (abs(tk->tkr_mono.mult - tk->tkr_mono.clock->mult)
1944 > tk->tkr_mono.clock->maxadj))) {
John Stultzdc491592013-12-06 17:25:21 -08001945 printk_once(KERN_WARNING
1946 "Adjusting %s more than 11%% (%ld vs %ld)\n",
Peter Zijlstra876e7882015-03-19 10:09:06 +01001947 tk->tkr_mono.clock->name, (long)tk->tkr_mono.mult,
1948 (long)tk->tkr_mono.clock->mult + tk->tkr_mono.clock->maxadj);
John Stultzdc491592013-12-06 17:25:21 -08001949 }
1950
John Stultz2a8c0882012-07-13 01:21:56 -04001951 /*
1952 * It may be possible that when we entered this function, xtime_nsec
1953 * was very small. Further, if we're slightly speeding the clocksource
1954 * in the code above, its possible the required corrective factor to
1955 * xtime_nsec could cause it to underflow.
1956 *
1957 * Now, since we already accumulated the second, cannot simply roll
1958 * the accumulated second back, since the NTP subsystem has been
1959 * notified via second_overflow. So instead we push xtime_nsec forward
1960 * by the amount we underflowed, and add that amount into the error.
1961 *
1962 * We'll correct this error next time through this function, when
1963 * xtime_nsec is not as small.
1964 */
Peter Zijlstra876e7882015-03-19 10:09:06 +01001965 if (unlikely((s64)tk->tkr_mono.xtime_nsec < 0)) {
1966 s64 neg = -(s64)tk->tkr_mono.xtime_nsec;
1967 tk->tkr_mono.xtime_nsec = 0;
John Stultzf726a692012-07-13 01:21:57 -04001968 tk->ntp_error += neg << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001969 }
john stultz85240702007-05-08 00:27:59 -07001970}
1971
1972/**
John Stultz1f4f9482012-07-13 01:21:54 -04001973 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
1974 *
Zhen Lei571af552015-08-25 14:42:53 +08001975 * Helper function that accumulates the nsecs greater than a second
John Stultz1f4f9482012-07-13 01:21:54 -04001976 * from the xtime_nsec field to the xtime_secs field.
1977 * It also calls into the NTP code to handle leapsecond processing.
1978 *
1979 */
David Vrabel780427f2013-06-27 11:35:46 +01001980static inline unsigned int accumulate_nsecs_to_secs(struct timekeeper *tk)
John Stultz1f4f9482012-07-13 01:21:54 -04001981{
Peter Zijlstra876e7882015-03-19 10:09:06 +01001982 u64 nsecps = (u64)NSEC_PER_SEC << tk->tkr_mono.shift;
John Stultz5258d3f2013-12-11 20:07:49 -08001983 unsigned int clock_set = 0;
John Stultz1f4f9482012-07-13 01:21:54 -04001984
Peter Zijlstra876e7882015-03-19 10:09:06 +01001985 while (tk->tkr_mono.xtime_nsec >= nsecps) {
John Stultz1f4f9482012-07-13 01:21:54 -04001986 int leap;
1987
Peter Zijlstra876e7882015-03-19 10:09:06 +01001988 tk->tkr_mono.xtime_nsec -= nsecps;
John Stultz1f4f9482012-07-13 01:21:54 -04001989 tk->xtime_sec++;
1990
1991 /* Figure out if its a leap sec and apply if needed */
1992 leap = second_overflow(tk->xtime_sec);
John Stultz6d0ef902012-07-27 14:48:12 -04001993 if (unlikely(leap)) {
John Stultz7d489d12014-07-16 21:04:01 +00001994 struct timespec64 ts;
John Stultz1f4f9482012-07-13 01:21:54 -04001995
John Stultz6d0ef902012-07-27 14:48:12 -04001996 tk->xtime_sec += leap;
1997
1998 ts.tv_sec = leap;
1999 ts.tv_nsec = 0;
2000 tk_set_wall_to_mono(tk,
John Stultz7d489d12014-07-16 21:04:01 +00002001 timespec64_sub(tk->wall_to_monotonic, ts));
John Stultz6d0ef902012-07-27 14:48:12 -04002002
John Stultzcc244dd2012-05-03 12:30:07 -07002003 __timekeeping_set_tai_offset(tk, tk->tai_offset - leap);
2004
John Stultz5258d3f2013-12-11 20:07:49 -08002005 clock_set = TK_CLOCK_WAS_SET;
John Stultz6d0ef902012-07-27 14:48:12 -04002006 }
John Stultz1f4f9482012-07-13 01:21:54 -04002007 }
John Stultz5258d3f2013-12-11 20:07:49 -08002008 return clock_set;
John Stultz1f4f9482012-07-13 01:21:54 -04002009}
2010
John Stultz1f4f9482012-07-13 01:21:54 -04002011/**
john stultza092ff02009-10-02 16:17:53 -07002012 * logarithmic_accumulation - shifted accumulation of cycles
2013 *
2014 * This functions accumulates a shifted interval of cycles into
2015 * into a shifted interval nanoseconds. Allows for O(log) accumulation
2016 * loop.
2017 *
2018 * Returns the unconsumed cycles.
2019 */
John Stultzf726a692012-07-13 01:21:57 -04002020static cycle_t logarithmic_accumulation(struct timekeeper *tk, cycle_t offset,
John Stultz5258d3f2013-12-11 20:07:49 -08002021 u32 shift,
2022 unsigned int *clock_set)
john stultza092ff02009-10-02 16:17:53 -07002023{
Thomas Gleixner23a95372013-02-21 22:51:36 +00002024 cycle_t interval = tk->cycle_interval << shift;
John Stultza53bfdd2017-06-08 16:44:21 -07002025 u64 snsec_per_sec;
john stultza092ff02009-10-02 16:17:53 -07002026
Zhen Lei571af552015-08-25 14:42:53 +08002027 /* If the offset is smaller than a shifted interval, do nothing */
Thomas Gleixner23a95372013-02-21 22:51:36 +00002028 if (offset < interval)
john stultza092ff02009-10-02 16:17:53 -07002029 return offset;
2030
2031 /* Accumulate one shifted interval */
Thomas Gleixner23a95372013-02-21 22:51:36 +00002032 offset -= interval;
Peter Zijlstra876e7882015-03-19 10:09:06 +01002033 tk->tkr_mono.cycle_last += interval;
Peter Zijlstra4a4ad802015-03-19 09:28:44 +01002034 tk->tkr_raw.cycle_last += interval;
john stultza092ff02009-10-02 16:17:53 -07002035
Peter Zijlstra876e7882015-03-19 10:09:06 +01002036 tk->tkr_mono.xtime_nsec += tk->xtime_interval << shift;
John Stultz5258d3f2013-12-11 20:07:49 -08002037 *clock_set |= accumulate_nsecs_to_secs(tk);
john stultza092ff02009-10-02 16:17:53 -07002038
Jason Wesseldeda2e82010-08-09 14:20:09 -07002039 /* Accumulate raw time */
John Stultza53bfdd2017-06-08 16:44:21 -07002040 tk->tkr_raw.xtime_nsec += (u64)tk->raw_time.tv_nsec << tk->tkr_raw.shift;
2041 tk->tkr_raw.xtime_nsec += tk->raw_interval << shift;
2042 snsec_per_sec = (u64)NSEC_PER_SEC << tk->tkr_raw.shift;
2043 while (tk->tkr_raw.xtime_nsec >= snsec_per_sec) {
2044 tk->tkr_raw.xtime_nsec -= snsec_per_sec;
2045 tk->raw_time.tv_sec++;
john stultza092ff02009-10-02 16:17:53 -07002046 }
John Stultza53bfdd2017-06-08 16:44:21 -07002047 tk->raw_time.tv_nsec = tk->tkr_raw.xtime_nsec >> tk->tkr_raw.shift;
2048 tk->tkr_raw.xtime_nsec -= (u64)tk->raw_time.tv_nsec << tk->tkr_raw.shift;
john stultza092ff02009-10-02 16:17:53 -07002049
2050 /* Accumulate error between NTP and clock interval */
John Stultz375f45b2014-04-23 20:53:29 -07002051 tk->ntp_error += tk->ntp_tick << shift;
John Stultzf726a692012-07-13 01:21:57 -04002052 tk->ntp_error -= (tk->xtime_interval + tk->xtime_remainder) <<
2053 (tk->ntp_error_shift + shift);
john stultza092ff02009-10-02 16:17:53 -07002054
2055 return offset;
2056}
2057
john stultz85240702007-05-08 00:27:59 -07002058/**
2059 * update_wall_time - Uses the current clocksource to increment the wall time
2060 *
john stultz85240702007-05-08 00:27:59 -07002061 */
John Stultz47a1b7962013-12-12 13:10:55 -08002062void update_wall_time(void)
john stultz85240702007-05-08 00:27:59 -07002063{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002064 struct timekeeper *real_tk = &tk_core.timekeeper;
Thomas Gleixner48cdc132013-02-21 22:51:40 +00002065 struct timekeeper *tk = &shadow_timekeeper;
john stultz85240702007-05-08 00:27:59 -07002066 cycle_t offset;
john stultza092ff02009-10-02 16:17:53 -07002067 int shift = 0, maxshift;
John Stultz5258d3f2013-12-11 20:07:49 -08002068 unsigned int clock_set = 0;
John Stultz70471f22011-11-14 12:48:10 -08002069 unsigned long flags;
2070
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00002071 raw_spin_lock_irqsave(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07002072
2073 /* Make sure we're fully resumed: */
2074 if (unlikely(timekeeping_suspended))
John Stultz70471f22011-11-14 12:48:10 -08002075 goto out;
john stultz85240702007-05-08 00:27:59 -07002076
John Stultz592913e2010-07-13 17:56:20 -07002077#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
Thomas Gleixner48cdc132013-02-21 22:51:40 +00002078 offset = real_tk->cycle_interval;
John Stultz592913e2010-07-13 17:56:20 -07002079#else
John Stultz02a37cc2017-06-08 16:44:20 -07002080 offset = clocksource_delta(tk_clock_read(&tk->tkr_mono),
Peter Zijlstra876e7882015-03-19 10:09:06 +01002081 tk->tkr_mono.cycle_last, tk->tkr_mono.mask);
john stultz85240702007-05-08 00:27:59 -07002082#endif
john stultz85240702007-05-08 00:27:59 -07002083
John Stultzbf2ac312012-08-21 20:30:49 -04002084 /* Check if there's really nothing to do */
Thomas Gleixner48cdc132013-02-21 22:51:40 +00002085 if (offset < real_tk->cycle_interval)
John Stultzbf2ac312012-08-21 20:30:49 -04002086 goto out;
2087
John Stultz3c17ad12015-03-11 21:16:32 -07002088 /* Do some additional sanity checking */
2089 timekeeping_check_update(real_tk, offset);
2090
john stultza092ff02009-10-02 16:17:53 -07002091 /*
2092 * With NO_HZ we may have to accumulate many cycle_intervals
2093 * (think "ticks") worth of time at once. To do this efficiently,
2094 * we calculate the largest doubling multiple of cycle_intervals
Jim Cromie88b28ad2012-03-14 21:28:56 -06002095 * that is smaller than the offset. We then accumulate that
john stultza092ff02009-10-02 16:17:53 -07002096 * chunk in one go, and then try to consume the next smaller
2097 * doubled multiple.
john stultz85240702007-05-08 00:27:59 -07002098 */
John Stultz4e250fd2012-07-27 14:48:13 -04002099 shift = ilog2(offset) - ilog2(tk->cycle_interval);
john stultza092ff02009-10-02 16:17:53 -07002100 shift = max(0, shift);
Jim Cromie88b28ad2012-03-14 21:28:56 -06002101 /* Bound shift to one less than what overflows tick_length */
John Stultzea7cf492011-11-14 13:18:07 -08002102 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
john stultza092ff02009-10-02 16:17:53 -07002103 shift = min(shift, maxshift);
John Stultz4e250fd2012-07-27 14:48:13 -04002104 while (offset >= tk->cycle_interval) {
John Stultz5258d3f2013-12-11 20:07:49 -08002105 offset = logarithmic_accumulation(tk, offset, shift,
2106 &clock_set);
John Stultz4e250fd2012-07-27 14:48:13 -04002107 if (offset < tk->cycle_interval<<shift)
John Stultz830ec042010-03-18 14:47:30 -07002108 shift--;
john stultz85240702007-05-08 00:27:59 -07002109 }
2110
2111 /* correct the clock when NTP error is too big */
John Stultz4e250fd2012-07-27 14:48:13 -04002112 timekeeping_adjust(tk, offset);
john stultz85240702007-05-08 00:27:59 -07002113
John Stultz6a867a32010-04-06 14:30:51 -07002114 /*
John Stultz92bb1fc2012-09-04 15:38:12 -04002115 * XXX This can be killed once everyone converts
2116 * to the new update_vsyscall.
2117 */
2118 old_vsyscall_fixup(tk);
john stultz85240702007-05-08 00:27:59 -07002119
John Stultz6a867a32010-04-06 14:30:51 -07002120 /*
2121 * Finally, make sure that after the rounding
John Stultz1e75fa82012-07-13 01:21:53 -04002122 * xtime_nsec isn't larger than NSEC_PER_SEC
John Stultz6a867a32010-04-06 14:30:51 -07002123 */
John Stultz5258d3f2013-12-11 20:07:49 -08002124 clock_set |= accumulate_nsecs_to_secs(tk);
Linus Torvalds83f57a12009-12-22 14:10:37 -08002125
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002126 write_seqcount_begin(&tk_core.seq);
Thomas Gleixner48cdc132013-02-21 22:51:40 +00002127 /*
2128 * Update the real timekeeper.
2129 *
2130 * We could avoid this memcpy by switching pointers, but that
2131 * requires changes to all other timekeeper usage sites as
2132 * well, i.e. move the timekeeper pointer getter into the
2133 * spinlocked/seqcount protected sections. And we trade this
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002134 * memcpy under the tk_core.seq against one before we start
Thomas Gleixner48cdc132013-02-21 22:51:40 +00002135 * updating.
2136 */
John Stultz906c5552015-06-17 10:05:53 -07002137 timekeeping_update(tk, clock_set);
Thomas Gleixner48cdc132013-02-21 22:51:40 +00002138 memcpy(real_tk, tk, sizeof(*tk));
John Stultz906c5552015-06-17 10:05:53 -07002139 /* The memcpy must come last. Do not put anything here! */
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002140 write_seqcount_end(&tk_core.seq);
Thomas Gleixnerca4523c2013-02-21 22:51:40 +00002141out:
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00002142 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz47a1b7962013-12-12 13:10:55 -08002143 if (clock_set)
John Stultzcab5e122014-03-27 16:30:49 -07002144 /* Have to call _delayed version, since in irq context*/
2145 clock_was_set_delayed();
john stultz85240702007-05-08 00:27:59 -07002146}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07002147
2148/**
John Stultzd08c0cd2014-12-08 12:00:09 -08002149 * getboottime64 - Return the real time of system boot.
2150 * @ts: pointer to the timespec64 to be set
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07002151 *
John Stultzd08c0cd2014-12-08 12:00:09 -08002152 * Returns the wall-time of boot in a timespec64.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07002153 *
2154 * This is based on the wall_to_monotonic offset and the total suspend
2155 * time. Calls to settimeofday will affect the value returned (which
2156 * basically means that however wrong your real time clock is at boot time,
2157 * you get the right time here).
2158 */
John Stultzd08c0cd2014-12-08 12:00:09 -08002159void getboottime64(struct timespec64 *ts)
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07002160{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002161 struct timekeeper *tk = &tk_core.timekeeper;
Thomas Gleixner02cba152014-07-16 21:04:58 +00002162 ktime_t t = ktime_sub(tk->offs_real, tk->offs_boot);
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02002163
John Stultzd08c0cd2014-12-08 12:00:09 -08002164 *ts = ktime_to_timespec64(t);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07002165}
John Stultzd08c0cd2014-12-08 12:00:09 -08002166EXPORT_SYMBOL_GPL(getboottime64);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07002167
john stultz17c38b72007-07-24 18:38:34 -07002168unsigned long get_seconds(void)
2169{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002170 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz4e250fd2012-07-27 14:48:13 -04002171
2172 return tk->xtime_sec;
john stultz17c38b72007-07-24 18:38:34 -07002173}
2174EXPORT_SYMBOL(get_seconds);
2175
john stultzda15cfd2009-08-19 19:13:34 -07002176struct timespec __current_kernel_time(void)
2177{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002178 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz4e250fd2012-07-27 14:48:13 -04002179
John Stultz7d489d12014-07-16 21:04:01 +00002180 return timespec64_to_timespec(tk_xtime(tk));
john stultzda15cfd2009-08-19 19:13:34 -07002181}
john stultz17c38b72007-07-24 18:38:34 -07002182
Baolin Wang8758a242015-07-29 20:09:43 +08002183struct timespec64 current_kernel_time64(void)
john stultz2c6b47d2007-07-24 17:47:43 -07002184{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002185 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00002186 struct timespec64 now;
john stultz2c6b47d2007-07-24 17:47:43 -07002187 unsigned long seq;
2188
2189 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002190 seq = read_seqcount_begin(&tk_core.seq);
Linus Torvalds83f57a12009-12-22 14:10:37 -08002191
John Stultz4e250fd2012-07-27 14:48:13 -04002192 now = tk_xtime(tk);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002193 } while (read_seqcount_retry(&tk_core.seq, seq));
john stultz2c6b47d2007-07-24 17:47:43 -07002194
Baolin Wang8758a242015-07-29 20:09:43 +08002195 return now;
john stultz2c6b47d2007-07-24 17:47:43 -07002196}
Baolin Wang8758a242015-07-29 20:09:43 +08002197EXPORT_SYMBOL(current_kernel_time64);
john stultzda15cfd2009-08-19 19:13:34 -07002198
John Stultz334334b2014-11-07 11:20:40 -08002199struct timespec64 get_monotonic_coarse64(void)
john stultzda15cfd2009-08-19 19:13:34 -07002200{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002201 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz7d489d12014-07-16 21:04:01 +00002202 struct timespec64 now, mono;
john stultzda15cfd2009-08-19 19:13:34 -07002203 unsigned long seq;
2204
2205 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002206 seq = read_seqcount_begin(&tk_core.seq);
Linus Torvalds83f57a12009-12-22 14:10:37 -08002207
John Stultz4e250fd2012-07-27 14:48:13 -04002208 now = tk_xtime(tk);
2209 mono = tk->wall_to_monotonic;
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002210 } while (read_seqcount_retry(&tk_core.seq, seq));
john stultzda15cfd2009-08-19 19:13:34 -07002211
John Stultz7d489d12014-07-16 21:04:01 +00002212 set_normalized_timespec64(&now, now.tv_sec + mono.tv_sec,
john stultzda15cfd2009-08-19 19:13:34 -07002213 now.tv_nsec + mono.tv_nsec);
John Stultz7d489d12014-07-16 21:04:01 +00002214
John Stultz334334b2014-11-07 11:20:40 -08002215 return now;
john stultzda15cfd2009-08-19 19:13:34 -07002216}
Gregor Boirieeaaa7ec2016-03-09 19:05:48 +01002217EXPORT_SYMBOL(get_monotonic_coarse64);
Torben Hohn871cf1e2011-01-27 15:58:55 +01002218
2219/*
John Stultzd6ad4182012-02-28 16:50:11 -08002220 * Must hold jiffies_lock
Torben Hohn871cf1e2011-01-27 15:58:55 +01002221 */
2222void do_timer(unsigned long ticks)
2223{
2224 jiffies_64 += ticks;
Torben Hohn871cf1e2011-01-27 15:58:55 +01002225 calc_global_load(ticks);
2226}
Torben Hohn48cf76f72011-01-27 15:59:05 +01002227
2228/**
John Stultz76f41082014-07-16 21:03:52 +00002229 * ktime_get_update_offsets_now - hrtimer helper
Thomas Gleixner868a3e92015-04-14 21:08:37 +00002230 * @cwsseq: pointer to check and store the clock was set sequence number
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04002231 * @offs_real: pointer to storage for monotonic -> realtime offset
2232 * @offs_boot: pointer to storage for monotonic -> boottime offset
Xie XiuQib7bc50e2013-10-18 09:13:30 +08002233 * @offs_tai: pointer to storage for monotonic -> clock tai offset
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04002234 *
Thomas Gleixner868a3e92015-04-14 21:08:37 +00002235 * Returns current monotonic time and updates the offsets if the
2236 * sequence number in @cwsseq and timekeeper.clock_was_set_seq are
2237 * different.
2238 *
Xie XiuQib7bc50e2013-10-18 09:13:30 +08002239 * Called from hrtimer_interrupt() or retrigger_next_event()
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04002240 */
Thomas Gleixner868a3e92015-04-14 21:08:37 +00002241ktime_t ktime_get_update_offsets_now(unsigned int *cwsseq, ktime_t *offs_real,
2242 ktime_t *offs_boot, ktime_t *offs_tai)
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04002243{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002244 struct timekeeper *tk = &tk_core.timekeeper;
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04002245 unsigned int seq;
Thomas Gleixnera37c0aa2014-07-16 21:04:19 +00002246 ktime_t base;
2247 u64 nsecs;
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04002248
2249 do {
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002250 seq = read_seqcount_begin(&tk_core.seq);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04002251
Peter Zijlstra876e7882015-03-19 10:09:06 +01002252 base = tk->tkr_mono.base;
2253 nsecs = timekeeping_get_ns(&tk->tkr_mono);
John Stultz833f32d2015-06-11 15:54:55 -07002254 base = ktime_add_ns(base, nsecs);
2255
Thomas Gleixner868a3e92015-04-14 21:08:37 +00002256 if (*cwsseq != tk->clock_was_set_seq) {
2257 *cwsseq = tk->clock_was_set_seq;
2258 *offs_real = tk->offs_real;
2259 *offs_boot = tk->offs_boot;
2260 *offs_tai = tk->offs_tai;
2261 }
John Stultz833f32d2015-06-11 15:54:55 -07002262
2263 /* Handle leapsecond insertion adjustments */
2264 if (unlikely(base.tv64 >= tk->next_leap_ktime.tv64))
2265 *offs_real = ktime_sub(tk->offs_real, ktime_set(1, 0));
2266
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002267 } while (read_seqcount_retry(&tk_core.seq, seq));
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04002268
John Stultz833f32d2015-06-11 15:54:55 -07002269 return base;
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04002270}
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04002271
Torben Hohnf0af911a92011-01-27 15:59:10 +01002272/**
John Stultzaa6f9c592013-03-22 11:31:29 -07002273 * do_adjtimex() - Accessor function to NTP __do_adjtimex function
2274 */
2275int do_adjtimex(struct timex *txc)
2276{
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002277 struct timekeeper *tk = &tk_core.timekeeper;
John Stultz06c017f2013-03-22 11:37:28 -07002278 unsigned long flags;
John Stultz7d489d12014-07-16 21:04:01 +00002279 struct timespec64 ts;
John Stultz4e8f8b32013-04-10 12:41:49 -07002280 s32 orig_tai, tai;
John Stultze4085692013-03-22 12:08:52 -07002281 int ret;
2282
2283 /* Validate the data before disabling interrupts */
2284 ret = ntp_validate_timex(txc);
2285 if (ret)
2286 return ret;
2287
John Stultzcef90372013-03-22 15:04:13 -07002288 if (txc->modes & ADJ_SETOFFSET) {
2289 struct timespec delta;
2290 delta.tv_sec = txc->time.tv_sec;
2291 delta.tv_nsec = txc->time.tv_usec;
2292 if (!(txc->modes & ADJ_NANO))
2293 delta.tv_nsec *= 1000;
2294 ret = timekeeping_inject_offset(&delta);
2295 if (ret)
2296 return ret;
2297 }
2298
Thomas Gleixnerd6d29892014-07-16 21:04:04 +00002299 getnstimeofday64(&ts);
John Stultzaa6f9c592013-03-22 11:31:29 -07002300
John Stultz06c017f2013-03-22 11:37:28 -07002301 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002302 write_seqcount_begin(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -07002303
John Stultz4e8f8b32013-04-10 12:41:49 -07002304 orig_tai = tai = tk->tai_offset;
John Stultz87ace392013-03-22 12:28:15 -07002305 ret = __do_adjtimex(txc, &ts, &tai);
2306
John Stultz4e8f8b32013-04-10 12:41:49 -07002307 if (tai != orig_tai) {
2308 __timekeeping_set_tai_offset(tk, tai);
John Stultzf55c0762013-12-11 18:50:25 -08002309 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
John Stultz4e8f8b32013-04-10 12:41:49 -07002310 }
John Stultz833f32d2015-06-11 15:54:55 -07002311 tk_update_leap_state(tk);
2312
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002313 write_seqcount_end(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -07002314 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
2315
John Stultz6fdda9a2013-12-10 17:18:18 -08002316 if (tai != orig_tai)
2317 clock_was_set();
2318
John Stultz7bd36012013-09-11 16:50:56 -07002319 ntp_notify_cmos_timer();
2320
John Stultz87ace392013-03-22 12:28:15 -07002321 return ret;
2322}
John Stultzaa6f9c592013-03-22 11:31:29 -07002323
2324#ifdef CONFIG_NTP_PPS
2325/**
2326 * hardpps() - Accessor function to NTP __hardpps function
2327 */
Arnd Bergmann7ec88e42015-09-28 22:21:28 +02002328void hardpps(const struct timespec64 *phase_ts, const struct timespec64 *raw_ts)
John Stultzaa6f9c592013-03-22 11:31:29 -07002329{
John Stultz06c017f2013-03-22 11:37:28 -07002330 unsigned long flags;
2331
2332 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002333 write_seqcount_begin(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -07002334
John Stultzaa6f9c592013-03-22 11:31:29 -07002335 __hardpps(phase_ts, raw_ts);
John Stultz06c017f2013-03-22 11:37:28 -07002336
Thomas Gleixner3fdb14f2014-07-16 21:04:07 +00002337 write_seqcount_end(&tk_core.seq);
John Stultz06c017f2013-03-22 11:37:28 -07002338 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzaa6f9c592013-03-22 11:31:29 -07002339}
2340EXPORT_SYMBOL(hardpps);
2341#endif
2342
2343/**
Torben Hohnf0af911a92011-01-27 15:59:10 +01002344 * xtime_update() - advances the timekeeping infrastructure
2345 * @ticks: number of ticks, that have elapsed since the last call.
2346 *
2347 * Must be called with interrupts disabled.
2348 */
2349void xtime_update(unsigned long ticks)
2350{
John Stultzd6ad4182012-02-28 16:50:11 -08002351 write_seqlock(&jiffies_lock);
Torben Hohnf0af911a92011-01-27 15:59:10 +01002352 do_timer(ticks);
John Stultzd6ad4182012-02-28 16:50:11 -08002353 write_sequnlock(&jiffies_lock);
John Stultz47a1b7962013-12-12 13:10:55 -08002354 update_wall_time();
Torben Hohnf0af911a92011-01-27 15:59:10 +01002355}