blob: c442a4ccccc990752321bfa3b3a04543c80e7b95 [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>
john stultz85240702007-05-08 00:27:59 -070025
Martin Schwidefsky155ec602009-08-14 15:47:26 +020026
H Hartley Sweetenafa14e72011-01-11 17:59:38 -060027static struct timekeeper timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020028
John Stultz8fcce542011-11-14 11:46:39 -080029/* flag for if timekeeping is suspended */
30int __read_mostly timekeeping_suspended;
31
Feng Tang31ade302013-01-16 00:09:47 +080032/* Flag for if there is a persistent clock on this platform */
33bool __read_mostly persistent_clock_exist = false;
34
John Stultz1e75fa82012-07-13 01:21:53 -040035static inline void tk_normalize_xtime(struct timekeeper *tk)
36{
37 while (tk->xtime_nsec >= ((u64)NSEC_PER_SEC << tk->shift)) {
38 tk->xtime_nsec -= (u64)NSEC_PER_SEC << tk->shift;
39 tk->xtime_sec++;
40 }
41}
John Stultz8fcce542011-11-14 11:46:39 -080042
John Stultz1e75fa82012-07-13 01:21:53 -040043static void tk_set_xtime(struct timekeeper *tk, const struct timespec *ts)
44{
45 tk->xtime_sec = ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040046 tk->xtime_nsec = (u64)ts->tv_nsec << tk->shift;
John Stultz1e75fa82012-07-13 01:21:53 -040047}
48
49static void tk_xtime_add(struct timekeeper *tk, const struct timespec *ts)
50{
51 tk->xtime_sec += ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040052 tk->xtime_nsec += (u64)ts->tv_nsec << tk->shift;
John Stultz784ffcb2012-08-21 20:30:46 -040053 tk_normalize_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -040054}
John Stultz8fcce542011-11-14 11:46:39 -080055
John Stultz6d0ef902012-07-27 14:48:12 -040056static void tk_set_wall_to_mono(struct timekeeper *tk, struct timespec wtm)
57{
58 struct timespec tmp;
59
60 /*
61 * Verify consistency of: offset_real = -wall_to_monotonic
62 * before modifying anything
63 */
64 set_normalized_timespec(&tmp, -tk->wall_to_monotonic.tv_sec,
65 -tk->wall_to_monotonic.tv_nsec);
66 WARN_ON_ONCE(tk->offs_real.tv64 != timespec_to_ktime(tmp).tv64);
67 tk->wall_to_monotonic = wtm;
68 set_normalized_timespec(&tmp, -wtm.tv_sec, -wtm.tv_nsec);
69 tk->offs_real = timespec_to_ktime(tmp);
John Stultz90adda92013-01-21 17:00:11 -080070 tk->offs_tai = ktime_sub(tk->offs_real, ktime_set(tk->tai_offset, 0));
John Stultz6d0ef902012-07-27 14:48:12 -040071}
72
73static void tk_set_sleep_time(struct timekeeper *tk, struct timespec t)
74{
75 /* Verify consistency before modifying */
76 WARN_ON_ONCE(tk->offs_boot.tv64 != timespec_to_ktime(tk->total_sleep_time).tv64);
77
78 tk->total_sleep_time = t;
79 tk->offs_boot = timespec_to_ktime(t);
80}
81
Martin Schwidefsky155ec602009-08-14 15:47:26 +020082/**
83 * timekeeper_setup_internals - Set up internals to use clocksource clock.
84 *
85 * @clock: Pointer to clocksource.
86 *
87 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
88 * pair and interval request.
89 *
90 * Unless you're the timekeeping code, you should not be using this!
91 */
John Stultzf726a692012-07-13 01:21:57 -040092static void tk_setup_internals(struct timekeeper *tk, struct clocksource *clock)
Martin Schwidefsky155ec602009-08-14 15:47:26 +020093{
94 cycle_t interval;
Kasper Pedersena386b5a2010-10-20 15:55:15 -070095 u64 tmp, ntpinterval;
John Stultz1e75fa82012-07-13 01:21:53 -040096 struct clocksource *old_clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020097
John Stultzf726a692012-07-13 01:21:57 -040098 old_clock = tk->clock;
99 tk->clock = clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200100 clock->cycle_last = clock->read(clock);
101
102 /* Do the ns -> cycle conversion first, using original mult */
103 tmp = NTP_INTERVAL_LENGTH;
104 tmp <<= clock->shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700105 ntpinterval = tmp;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200106 tmp += clock->mult/2;
107 do_div(tmp, clock->mult);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200108 if (tmp == 0)
109 tmp = 1;
110
111 interval = (cycle_t) tmp;
John Stultzf726a692012-07-13 01:21:57 -0400112 tk->cycle_interval = interval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200113
114 /* Go back from cycles -> shifted ns */
John Stultzf726a692012-07-13 01:21:57 -0400115 tk->xtime_interval = (u64) interval * clock->mult;
116 tk->xtime_remainder = ntpinterval - tk->xtime_interval;
117 tk->raw_interval =
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200118 ((u64) interval * clock->mult) >> clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200119
John Stultz1e75fa82012-07-13 01:21:53 -0400120 /* if changing clocks, convert xtime_nsec shift units */
121 if (old_clock) {
122 int shift_change = clock->shift - old_clock->shift;
123 if (shift_change < 0)
John Stultzf726a692012-07-13 01:21:57 -0400124 tk->xtime_nsec >>= -shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400125 else
John Stultzf726a692012-07-13 01:21:57 -0400126 tk->xtime_nsec <<= shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400127 }
John Stultzf726a692012-07-13 01:21:57 -0400128 tk->shift = clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200129
John Stultzf726a692012-07-13 01:21:57 -0400130 tk->ntp_error = 0;
131 tk->ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200132
133 /*
134 * The timekeeper keeps its own mult values for the currently
135 * active clocksource. These value will be adjusted via NTP
136 * to counteract clock drifting.
137 */
John Stultzf726a692012-07-13 01:21:57 -0400138 tk->mult = clock->mult;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200139}
john stultz85240702007-05-08 00:27:59 -0700140
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200141/* Timekeeper helper functions. */
Stephen Warren7b1f6202012-11-07 17:58:54 -0700142
143#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
144u32 (*arch_gettimeoffset)(void);
145
146u32 get_arch_timeoffset(void)
147{
148 if (likely(arch_gettimeoffset))
149 return arch_gettimeoffset();
150 return 0;
151}
152#else
153static inline u32 get_arch_timeoffset(void) { return 0; }
154#endif
155
John Stultzf726a692012-07-13 01:21:57 -0400156static inline s64 timekeeping_get_ns(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200157{
158 cycle_t cycle_now, cycle_delta;
159 struct clocksource *clock;
John Stultz1e75fa82012-07-13 01:21:53 -0400160 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200161
162 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400163 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200164 cycle_now = clock->read(clock);
165
166 /* calculate the delta since the last update_wall_time: */
167 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
168
John Stultzf726a692012-07-13 01:21:57 -0400169 nsec = cycle_delta * tk->mult + tk->xtime_nsec;
170 nsec >>= tk->shift;
John Stultzf2a5a082012-07-13 01:21:55 -0400171
Stephen Warren7b1f6202012-11-07 17:58:54 -0700172 /* If arch requires, add in get_arch_timeoffset() */
173 return nsec + get_arch_timeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200174}
175
John Stultzf726a692012-07-13 01:21:57 -0400176static inline s64 timekeeping_get_ns_raw(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200177{
178 cycle_t cycle_now, cycle_delta;
179 struct clocksource *clock;
John Stultzf2a5a082012-07-13 01:21:55 -0400180 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200181
182 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400183 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200184 cycle_now = clock->read(clock);
185
186 /* calculate the delta since the last update_wall_time: */
187 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
188
John Stultzf2a5a082012-07-13 01:21:55 -0400189 /* convert delta to nanoseconds. */
190 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
191
Stephen Warren7b1f6202012-11-07 17:58:54 -0700192 /* If arch requires, add in get_arch_timeoffset() */
193 return nsec + get_arch_timeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200194}
195
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200196static RAW_NOTIFIER_HEAD(pvclock_gtod_chain);
197
198static void update_pvclock_gtod(struct timekeeper *tk)
199{
200 raw_notifier_call_chain(&pvclock_gtod_chain, 0, tk);
201}
202
203/**
204 * pvclock_gtod_register_notifier - register a pvclock timedata update listener
205 *
206 * Must hold write on timekeeper.lock
207 */
208int pvclock_gtod_register_notifier(struct notifier_block *nb)
209{
210 struct timekeeper *tk = &timekeeper;
211 unsigned long flags;
212 int ret;
213
214 write_seqlock_irqsave(&tk->lock, flags);
215 ret = raw_notifier_chain_register(&pvclock_gtod_chain, nb);
216 /* update timekeeping data */
217 update_pvclock_gtod(tk);
218 write_sequnlock_irqrestore(&tk->lock, flags);
219
220 return ret;
221}
222EXPORT_SYMBOL_GPL(pvclock_gtod_register_notifier);
223
224/**
225 * pvclock_gtod_unregister_notifier - unregister a pvclock
226 * timedata update listener
227 *
228 * Must hold write on timekeeper.lock
229 */
230int pvclock_gtod_unregister_notifier(struct notifier_block *nb)
231{
232 struct timekeeper *tk = &timekeeper;
233 unsigned long flags;
234 int ret;
235
236 write_seqlock_irqsave(&tk->lock, flags);
237 ret = raw_notifier_chain_unregister(&pvclock_gtod_chain, nb);
238 write_sequnlock_irqrestore(&tk->lock, flags);
239
240 return ret;
241}
242EXPORT_SYMBOL_GPL(pvclock_gtod_unregister_notifier);
243
Thomas Gleixnercc062682011-11-13 23:19:49 +0000244/* must hold write on timekeeper.lock */
John Stultzf726a692012-07-13 01:21:57 -0400245static void timekeeping_update(struct timekeeper *tk, bool clearntp)
Thomas Gleixnercc062682011-11-13 23:19:49 +0000246{
247 if (clearntp) {
John Stultzf726a692012-07-13 01:21:57 -0400248 tk->ntp_error = 0;
Thomas Gleixnercc062682011-11-13 23:19:49 +0000249 ntp_clear();
250 }
John Stultz576094b2012-09-11 19:58:13 -0400251 update_vsyscall(tk);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200252 update_pvclock_gtod(tk);
Thomas Gleixnercc062682011-11-13 23:19:49 +0000253}
254
john stultz85240702007-05-08 00:27:59 -0700255/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200256 * timekeeping_forward_now - update clock to the current time
john stultz85240702007-05-08 00:27:59 -0700257 *
Roman Zippel9a055112008-08-20 16:37:28 -0700258 * Forward the current clock to update its state since the last call to
259 * update_wall_time(). This is useful before significant clock changes,
260 * as it avoids having to deal with this time offset explicitly.
john stultz85240702007-05-08 00:27:59 -0700261 */
John Stultzf726a692012-07-13 01:21:57 -0400262static void timekeeping_forward_now(struct timekeeper *tk)
john stultz85240702007-05-08 00:27:59 -0700263{
264 cycle_t cycle_now, cycle_delta;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200265 struct clocksource *clock;
Roman Zippel9a055112008-08-20 16:37:28 -0700266 s64 nsec;
john stultz85240702007-05-08 00:27:59 -0700267
John Stultzf726a692012-07-13 01:21:57 -0400268 clock = tk->clock;
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200269 cycle_now = clock->read(clock);
john stultz85240702007-05-08 00:27:59 -0700270 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
Roman Zippel9a055112008-08-20 16:37:28 -0700271 clock->cycle_last = cycle_now;
john stultz85240702007-05-08 00:27:59 -0700272
John Stultzf726a692012-07-13 01:21:57 -0400273 tk->xtime_nsec += cycle_delta * tk->mult;
john stultz7d275582009-05-01 13:10:26 -0700274
Stephen Warren7b1f6202012-11-07 17:58:54 -0700275 /* If arch requires, add in get_arch_timeoffset() */
276 tk->xtime_nsec += (u64)get_arch_timeoffset() << tk->shift;
john stultz7d275582009-05-01 13:10:26 -0700277
John Stultzf726a692012-07-13 01:21:57 -0400278 tk_normalize_xtime(tk);
John Stultz2d422442008-08-20 16:37:30 -0700279
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200280 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
John Stultzf726a692012-07-13 01:21:57 -0400281 timespec_add_ns(&tk->raw_time, nsec);
john stultz85240702007-05-08 00:27:59 -0700282}
283
284/**
Kees Cook1e817fb2012-11-19 10:26:16 -0800285 * __getnstimeofday - Returns the time of day in a timespec.
john stultz85240702007-05-08 00:27:59 -0700286 * @ts: pointer to the timespec to be set
287 *
Kees Cook1e817fb2012-11-19 10:26:16 -0800288 * Updates the time of day in the timespec.
289 * Returns 0 on success, or -ve when suspended (timespec will be undefined).
john stultz85240702007-05-08 00:27:59 -0700290 */
Kees Cook1e817fb2012-11-19 10:26:16 -0800291int __getnstimeofday(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700292{
John Stultz4e250fd2012-07-27 14:48:13 -0400293 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700294 unsigned long seq;
John Stultz1e75fa82012-07-13 01:21:53 -0400295 s64 nsecs = 0;
john stultz85240702007-05-08 00:27:59 -0700296
297 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400298 seq = read_seqbegin(&tk->lock);
john stultz85240702007-05-08 00:27:59 -0700299
John Stultz4e250fd2012-07-27 14:48:13 -0400300 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400301 nsecs = timekeeping_get_ns(tk);
john stultz85240702007-05-08 00:27:59 -0700302
John Stultz4e250fd2012-07-27 14:48:13 -0400303 } while (read_seqretry(&tk->lock, seq));
john stultz85240702007-05-08 00:27:59 -0700304
John Stultzec145ba2012-09-11 19:26:03 -0400305 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700306 timespec_add_ns(ts, nsecs);
Kees Cook1e817fb2012-11-19 10:26:16 -0800307
308 /*
309 * Do not bail out early, in case there were callers still using
310 * the value, even in the face of the WARN_ON.
311 */
312 if (unlikely(timekeeping_suspended))
313 return -EAGAIN;
314 return 0;
315}
316EXPORT_SYMBOL(__getnstimeofday);
317
318/**
319 * getnstimeofday - Returns the time of day in a timespec.
320 * @ts: pointer to the timespec to be set
321 *
322 * Returns the time of day in a timespec (WARN if suspended).
323 */
324void getnstimeofday(struct timespec *ts)
325{
326 WARN_ON(__getnstimeofday(ts));
john stultz85240702007-05-08 00:27:59 -0700327}
john stultz85240702007-05-08 00:27:59 -0700328EXPORT_SYMBOL(getnstimeofday);
329
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200330ktime_t ktime_get(void)
331{
John Stultz4e250fd2012-07-27 14:48:13 -0400332 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200333 unsigned int seq;
334 s64 secs, nsecs;
335
336 WARN_ON(timekeeping_suspended);
337
338 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400339 seq = read_seqbegin(&tk->lock);
340 secs = tk->xtime_sec + tk->wall_to_monotonic.tv_sec;
341 nsecs = timekeeping_get_ns(tk) + tk->wall_to_monotonic.tv_nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200342
John Stultz4e250fd2012-07-27 14:48:13 -0400343 } while (read_seqretry(&tk->lock, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200344 /*
345 * Use ktime_set/ktime_add_ns to create a proper ktime on
346 * 32-bit architectures without CONFIG_KTIME_SCALAR.
347 */
348 return ktime_add_ns(ktime_set(secs, 0), nsecs);
349}
350EXPORT_SYMBOL_GPL(ktime_get);
351
352/**
353 * ktime_get_ts - get the monotonic clock in timespec format
354 * @ts: pointer to timespec variable
355 *
356 * The function calculates the monotonic clock from the realtime
357 * clock and the wall_to_monotonic offset and stores the result
358 * in normalized timespec format in the variable pointed to by @ts.
359 */
360void ktime_get_ts(struct timespec *ts)
361{
John Stultz4e250fd2012-07-27 14:48:13 -0400362 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200363 struct timespec tomono;
John Stultzec145ba2012-09-11 19:26:03 -0400364 s64 nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200365 unsigned int seq;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200366
367 WARN_ON(timekeeping_suspended);
368
369 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400370 seq = read_seqbegin(&tk->lock);
371 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400372 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -0400373 tomono = tk->wall_to_monotonic;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200374
John Stultz4e250fd2012-07-27 14:48:13 -0400375 } while (read_seqretry(&tk->lock, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200376
John Stultzec145ba2012-09-11 19:26:03 -0400377 ts->tv_sec += tomono.tv_sec;
378 ts->tv_nsec = 0;
379 timespec_add_ns(ts, nsec + tomono.tv_nsec);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200380}
381EXPORT_SYMBOL_GPL(ktime_get_ts);
382
John Stultz1ff3c962012-05-03 12:43:40 -0700383
384/**
385 * timekeeping_clocktai - Returns the TAI time of day in a timespec
386 * @ts: pointer to the timespec to be set
387 *
388 * Returns the time of day in a timespec.
389 */
390void timekeeping_clocktai(struct timespec *ts)
391{
392 struct timekeeper *tk = &timekeeper;
393 unsigned long seq;
394 u64 nsecs;
395
396 WARN_ON(timekeeping_suspended);
397
398 do {
399 seq = read_seqbegin(&tk->lock);
400
401 ts->tv_sec = tk->xtime_sec + tk->tai_offset;
402 nsecs = timekeeping_get_ns(tk);
403
404 } while (read_seqretry(&tk->lock, seq));
405
406 ts->tv_nsec = 0;
407 timespec_add_ns(ts, nsecs);
408
409}
410EXPORT_SYMBOL(timekeeping_clocktai);
411
412
John Stultz90adda92013-01-21 17:00:11 -0800413/**
414 * ktime_get_clocktai - Returns the TAI time of day in a ktime
415 *
416 * Returns the time of day in a ktime.
417 */
418ktime_t ktime_get_clocktai(void)
419{
420 struct timespec ts;
421
422 timekeeping_clocktai(&ts);
423 return timespec_to_ktime(ts);
424}
425EXPORT_SYMBOL(ktime_get_clocktai);
426
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800427#ifdef CONFIG_NTP_PPS
428
429/**
430 * getnstime_raw_and_real - get day and raw monotonic time in timespec format
431 * @ts_raw: pointer to the timespec to be set to raw monotonic time
432 * @ts_real: pointer to the timespec to be set to the time of day
433 *
434 * This function reads both the time of day and raw monotonic time at the
435 * same time atomically and stores the resulting timestamps in timespec
436 * format.
437 */
438void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
439{
John Stultz4e250fd2012-07-27 14:48:13 -0400440 struct timekeeper *tk = &timekeeper;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800441 unsigned long seq;
442 s64 nsecs_raw, nsecs_real;
443
444 WARN_ON_ONCE(timekeeping_suspended);
445
446 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400447 seq = read_seqbegin(&tk->lock);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800448
John Stultz4e250fd2012-07-27 14:48:13 -0400449 *ts_raw = tk->raw_time;
450 ts_real->tv_sec = tk->xtime_sec;
John Stultz1e75fa82012-07-13 01:21:53 -0400451 ts_real->tv_nsec = 0;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800452
John Stultz4e250fd2012-07-27 14:48:13 -0400453 nsecs_raw = timekeeping_get_ns_raw(tk);
454 nsecs_real = timekeeping_get_ns(tk);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800455
John Stultz4e250fd2012-07-27 14:48:13 -0400456 } while (read_seqretry(&tk->lock, seq));
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800457
458 timespec_add_ns(ts_raw, nsecs_raw);
459 timespec_add_ns(ts_real, nsecs_real);
460}
461EXPORT_SYMBOL(getnstime_raw_and_real);
462
463#endif /* CONFIG_NTP_PPS */
464
john stultz85240702007-05-08 00:27:59 -0700465/**
466 * do_gettimeofday - Returns the time of day in a timeval
467 * @tv: pointer to the timeval to be set
468 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100469 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -0700470 */
471void do_gettimeofday(struct timeval *tv)
472{
473 struct timespec now;
474
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100475 getnstimeofday(&now);
john stultz85240702007-05-08 00:27:59 -0700476 tv->tv_sec = now.tv_sec;
477 tv->tv_usec = now.tv_nsec/1000;
478}
john stultz85240702007-05-08 00:27:59 -0700479EXPORT_SYMBOL(do_gettimeofday);
Richard Cochrand239f492012-04-27 10:12:42 +0200480
john stultz85240702007-05-08 00:27:59 -0700481/**
482 * do_settimeofday - Sets the time of day
483 * @tv: pointer to the timespec variable containing the new time
484 *
485 * Sets the time of day to the new time and update NTP and notify hrtimers
486 */
Richard Cochran1e6d7672011-02-01 13:50:58 +0000487int do_settimeofday(const struct timespec *tv)
john stultz85240702007-05-08 00:27:59 -0700488{
John Stultz4e250fd2012-07-27 14:48:13 -0400489 struct timekeeper *tk = &timekeeper;
John Stultz1e75fa82012-07-13 01:21:53 -0400490 struct timespec ts_delta, xt;
John Stultz92c1d3e2011-11-14 14:05:44 -0800491 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700492
John Stultzcee58482012-08-31 13:30:06 -0400493 if (!timespec_valid_strict(tv))
john stultz85240702007-05-08 00:27:59 -0700494 return -EINVAL;
495
John Stultz4e250fd2012-07-27 14:48:13 -0400496 write_seqlock_irqsave(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700497
John Stultz4e250fd2012-07-27 14:48:13 -0400498 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700499
John Stultz4e250fd2012-07-27 14:48:13 -0400500 xt = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400501 ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
502 ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
503
John Stultz4e250fd2012-07-27 14:48:13 -0400504 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, ts_delta));
john stultz85240702007-05-08 00:27:59 -0700505
John Stultz4e250fd2012-07-27 14:48:13 -0400506 tk_set_xtime(tk, tv);
John Stultz1e75fa82012-07-13 01:21:53 -0400507
John Stultz4e250fd2012-07-27 14:48:13 -0400508 timekeeping_update(tk, true);
john stultz85240702007-05-08 00:27:59 -0700509
John Stultz4e250fd2012-07-27 14:48:13 -0400510 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700511
512 /* signal hrtimers about time change */
513 clock_was_set();
514
515 return 0;
516}
john stultz85240702007-05-08 00:27:59 -0700517EXPORT_SYMBOL(do_settimeofday);
518
John Stultzc528f7c2011-02-01 13:52:17 +0000519/**
520 * timekeeping_inject_offset - Adds or subtracts from the current time.
521 * @tv: pointer to the timespec variable containing the offset
522 *
523 * Adds or subtracts an offset value from the current time.
524 */
525int timekeeping_inject_offset(struct timespec *ts)
526{
John Stultz4e250fd2012-07-27 14:48:13 -0400527 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800528 unsigned long flags;
John Stultz4e8b1452012-08-08 15:36:20 -0400529 struct timespec tmp;
530 int ret = 0;
John Stultzc528f7c2011-02-01 13:52:17 +0000531
532 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
533 return -EINVAL;
534
John Stultz4e250fd2012-07-27 14:48:13 -0400535 write_seqlock_irqsave(&tk->lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000536
John Stultz4e250fd2012-07-27 14:48:13 -0400537 timekeeping_forward_now(tk);
John Stultzc528f7c2011-02-01 13:52:17 +0000538
John Stultz4e8b1452012-08-08 15:36:20 -0400539 /* Make sure the proposed value is valid */
540 tmp = timespec_add(tk_xtime(tk), *ts);
John Stultzcee58482012-08-31 13:30:06 -0400541 if (!timespec_valid_strict(&tmp)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400542 ret = -EINVAL;
543 goto error;
544 }
John Stultz1e75fa82012-07-13 01:21:53 -0400545
John Stultz4e250fd2012-07-27 14:48:13 -0400546 tk_xtime_add(tk, ts);
547 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *ts));
John Stultzc528f7c2011-02-01 13:52:17 +0000548
John Stultz4e8b1452012-08-08 15:36:20 -0400549error: /* even if we error out, we forwarded the time, so call update */
John Stultz4e250fd2012-07-27 14:48:13 -0400550 timekeeping_update(tk, true);
John Stultzc528f7c2011-02-01 13:52:17 +0000551
John Stultz4e250fd2012-07-27 14:48:13 -0400552 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000553
554 /* signal hrtimers about time change */
555 clock_was_set();
556
John Stultz4e8b1452012-08-08 15:36:20 -0400557 return ret;
John Stultzc528f7c2011-02-01 13:52:17 +0000558}
559EXPORT_SYMBOL(timekeeping_inject_offset);
560
John Stultzcc244dd2012-05-03 12:30:07 -0700561
562/**
563 * timekeeping_get_tai_offset - Returns current TAI offset from UTC
564 *
565 */
566s32 timekeeping_get_tai_offset(void)
567{
568 struct timekeeper *tk = &timekeeper;
569 unsigned int seq;
570 s32 ret;
571
572 do {
573 seq = read_seqbegin(&tk->lock);
574 ret = tk->tai_offset;
575 } while (read_seqretry(&tk->lock, seq));
576
577 return ret;
578}
579
580/**
581 * __timekeeping_set_tai_offset - Lock free worker function
582 *
583 */
584void __timekeeping_set_tai_offset(struct timekeeper *tk, s32 tai_offset)
585{
586 tk->tai_offset = tai_offset;
John Stultz90adda92013-01-21 17:00:11 -0800587 tk->offs_tai = ktime_sub(tk->offs_real, ktime_set(tai_offset, 0));
John Stultzcc244dd2012-05-03 12:30:07 -0700588}
589
590/**
591 * timekeeping_set_tai_offset - Sets the current TAI offset from UTC
592 *
593 */
594void timekeeping_set_tai_offset(s32 tai_offset)
595{
596 struct timekeeper *tk = &timekeeper;
597 unsigned long flags;
598
599 write_seqlock_irqsave(&tk->lock, flags);
600 __timekeeping_set_tai_offset(tk, tai_offset);
601 write_sequnlock_irqrestore(&tk->lock, flags);
602}
603
john stultz85240702007-05-08 00:27:59 -0700604/**
605 * change_clocksource - Swaps clocksources if a new one is available
606 *
607 * Accumulates current time interval and initializes new clocksource
608 */
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200609static int change_clocksource(void *data)
john stultz85240702007-05-08 00:27:59 -0700610{
John Stultz4e250fd2012-07-27 14:48:13 -0400611 struct timekeeper *tk = &timekeeper;
Magnus Damm4614e6a2009-04-21 12:24:02 -0700612 struct clocksource *new, *old;
John Stultzf695cf92012-03-14 16:38:15 -0700613 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700614
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200615 new = (struct clocksource *) data;
john stultz85240702007-05-08 00:27:59 -0700616
John Stultz4e250fd2012-07-27 14:48:13 -0400617 write_seqlock_irqsave(&tk->lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -0700618
John Stultz4e250fd2012-07-27 14:48:13 -0400619 timekeeping_forward_now(tk);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200620 if (!new->enable || new->enable(new) == 0) {
John Stultz4e250fd2012-07-27 14:48:13 -0400621 old = tk->clock;
622 tk_setup_internals(tk, new);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200623 if (old->disable)
624 old->disable(old);
625 }
John Stultz4e250fd2012-07-27 14:48:13 -0400626 timekeeping_update(tk, true);
John Stultzf695cf92012-03-14 16:38:15 -0700627
John Stultz4e250fd2012-07-27 14:48:13 -0400628 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -0700629
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200630 return 0;
631}
john stultz85240702007-05-08 00:27:59 -0700632
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200633/**
634 * timekeeping_notify - Install a new clock source
635 * @clock: pointer to the clock source
636 *
637 * This function is called from clocksource.c after a new, better clock
638 * source has been registered. The caller holds the clocksource_mutex.
639 */
640void timekeeping_notify(struct clocksource *clock)
641{
John Stultz4e250fd2012-07-27 14:48:13 -0400642 struct timekeeper *tk = &timekeeper;
643
644 if (tk->clock == clock)
Magnus Damm4614e6a2009-04-21 12:24:02 -0700645 return;
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200646 stop_machine(change_clocksource, clock, NULL);
john stultz85240702007-05-08 00:27:59 -0700647 tick_clock_notify();
john stultz85240702007-05-08 00:27:59 -0700648}
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200649
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200650/**
651 * ktime_get_real - get the real (wall-) time in ktime_t format
652 *
653 * returns the time in ktime_t format
654 */
655ktime_t ktime_get_real(void)
656{
657 struct timespec now;
658
659 getnstimeofday(&now);
660
661 return timespec_to_ktime(now);
662}
663EXPORT_SYMBOL_GPL(ktime_get_real);
john stultz85240702007-05-08 00:27:59 -0700664
665/**
John Stultz2d422442008-08-20 16:37:30 -0700666 * getrawmonotonic - Returns the raw monotonic time in a timespec
667 * @ts: pointer to the timespec to be set
668 *
669 * Returns the raw monotonic time (completely un-modified by ntp)
670 */
671void getrawmonotonic(struct timespec *ts)
672{
John Stultz4e250fd2012-07-27 14:48:13 -0400673 struct timekeeper *tk = &timekeeper;
John Stultz2d422442008-08-20 16:37:30 -0700674 unsigned long seq;
675 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -0700676
677 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400678 seq = read_seqbegin(&tk->lock);
679 nsecs = timekeeping_get_ns_raw(tk);
680 *ts = tk->raw_time;
John Stultz2d422442008-08-20 16:37:30 -0700681
John Stultz4e250fd2012-07-27 14:48:13 -0400682 } while (read_seqretry(&tk->lock, seq));
John Stultz2d422442008-08-20 16:37:30 -0700683
684 timespec_add_ns(ts, nsecs);
685}
686EXPORT_SYMBOL(getrawmonotonic);
687
John Stultz2d422442008-08-20 16:37:30 -0700688/**
Li Zefancf4fc6c2008-02-08 04:19:24 -0800689 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -0700690 */
Li Zefancf4fc6c2008-02-08 04:19:24 -0800691int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -0700692{
John Stultz4e250fd2012-07-27 14:48:13 -0400693 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700694 unsigned long seq;
695 int ret;
696
697 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400698 seq = read_seqbegin(&tk->lock);
john stultz85240702007-05-08 00:27:59 -0700699
John Stultz4e250fd2012-07-27 14:48:13 -0400700 ret = tk->clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -0700701
John Stultz4e250fd2012-07-27 14:48:13 -0400702 } while (read_seqretry(&tk->lock, seq));
john stultz85240702007-05-08 00:27:59 -0700703
704 return ret;
705}
706
707/**
Jon Hunter98962462009-08-18 12:45:10 -0500708 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
Jon Hunter98962462009-08-18 12:45:10 -0500709 */
710u64 timekeeping_max_deferment(void)
711{
John Stultz4e250fd2012-07-27 14:48:13 -0400712 struct timekeeper *tk = &timekeeper;
John Stultz70471f22011-11-14 12:48:10 -0800713 unsigned long seq;
714 u64 ret;
John Stultz42e71e82012-07-13 01:21:51 -0400715
John Stultz70471f22011-11-14 12:48:10 -0800716 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400717 seq = read_seqbegin(&tk->lock);
John Stultz70471f22011-11-14 12:48:10 -0800718
John Stultz4e250fd2012-07-27 14:48:13 -0400719 ret = tk->clock->max_idle_ns;
John Stultz70471f22011-11-14 12:48:10 -0800720
John Stultz4e250fd2012-07-27 14:48:13 -0400721 } while (read_seqretry(&tk->lock, seq));
John Stultz70471f22011-11-14 12:48:10 -0800722
723 return ret;
Jon Hunter98962462009-08-18 12:45:10 -0500724}
725
726/**
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200727 * read_persistent_clock - Return time from the persistent clock.
john stultz85240702007-05-08 00:27:59 -0700728 *
729 * Weak dummy function for arches that do not yet support it.
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200730 * Reads the time from the battery backed persistent clock.
731 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
john stultz85240702007-05-08 00:27:59 -0700732 *
733 * XXX - Do be sure to remove it once all arches implement it.
734 */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200735void __attribute__((weak)) read_persistent_clock(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700736{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200737 ts->tv_sec = 0;
738 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700739}
740
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200741/**
742 * read_boot_clock - Return time of the system start.
743 *
744 * Weak dummy function for arches that do not yet support it.
745 * Function to read the exact time the system has been started.
746 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
747 *
748 * XXX - Do be sure to remove it once all arches implement it.
749 */
750void __attribute__((weak)) read_boot_clock(struct timespec *ts)
751{
752 ts->tv_sec = 0;
753 ts->tv_nsec = 0;
754}
755
john stultz85240702007-05-08 00:27:59 -0700756/*
757 * timekeeping_init - Initializes the clocksource and common timekeeping values
758 */
759void __init timekeeping_init(void)
760{
John Stultz4e250fd2012-07-27 14:48:13 -0400761 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200762 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700763 unsigned long flags;
John Stultz6d0ef902012-07-27 14:48:12 -0400764 struct timespec now, boot, tmp;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200765
766 read_persistent_clock(&now);
Feng Tang31ade302013-01-16 00:09:47 +0800767
John Stultzcee58482012-08-31 13:30:06 -0400768 if (!timespec_valid_strict(&now)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400769 pr_warn("WARNING: Persistent clock returned invalid value!\n"
770 " Check your CMOS/BIOS settings.\n");
771 now.tv_sec = 0;
772 now.tv_nsec = 0;
Feng Tang31ade302013-01-16 00:09:47 +0800773 } else if (now.tv_sec || now.tv_nsec)
774 persistent_clock_exist = true;
John Stultz4e8b1452012-08-08 15:36:20 -0400775
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200776 read_boot_clock(&boot);
John Stultzcee58482012-08-31 13:30:06 -0400777 if (!timespec_valid_strict(&boot)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400778 pr_warn("WARNING: Boot clock returned invalid value!\n"
779 " Check your CMOS/BIOS settings.\n");
780 boot.tv_sec = 0;
781 boot.tv_nsec = 0;
782 }
john stultz85240702007-05-08 00:27:59 -0700783
John Stultz4e250fd2012-07-27 14:48:13 -0400784 seqlock_init(&tk->lock);
John Stultz70471f22011-11-14 12:48:10 -0800785
Roman Zippel7dffa3c2008-05-01 04:34:41 -0700786 ntp_init();
john stultz85240702007-05-08 00:27:59 -0700787
John Stultz4e250fd2012-07-27 14:48:13 -0400788 write_seqlock_irqsave(&tk->lock, flags);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200789 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200790 if (clock->enable)
791 clock->enable(clock);
John Stultz4e250fd2012-07-27 14:48:13 -0400792 tk_setup_internals(tk, clock);
john stultz85240702007-05-08 00:27:59 -0700793
John Stultz4e250fd2012-07-27 14:48:13 -0400794 tk_set_xtime(tk, &now);
795 tk->raw_time.tv_sec = 0;
796 tk->raw_time.tv_nsec = 0;
John Stultz1e75fa82012-07-13 01:21:53 -0400797 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
John Stultz4e250fd2012-07-27 14:48:13 -0400798 boot = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400799
John Stultz6d0ef902012-07-27 14:48:12 -0400800 set_normalized_timespec(&tmp, -boot.tv_sec, -boot.tv_nsec);
John Stultz4e250fd2012-07-27 14:48:13 -0400801 tk_set_wall_to_mono(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400802
803 tmp.tv_sec = 0;
804 tmp.tv_nsec = 0;
John Stultz4e250fd2012-07-27 14:48:13 -0400805 tk_set_sleep_time(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400806
John Stultz4e250fd2012-07-27 14:48:13 -0400807 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700808}
809
john stultz85240702007-05-08 00:27:59 -0700810/* time in seconds when suspend began */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200811static struct timespec timekeeping_suspend_time;
john stultz85240702007-05-08 00:27:59 -0700812
813/**
John Stultz304529b2011-04-01 14:32:09 -0700814 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
815 * @delta: pointer to a timespec delta value
816 *
817 * Takes a timespec offset measuring a suspend interval and properly
818 * adds the sleep offset to the timekeeping variables.
819 */
John Stultzf726a692012-07-13 01:21:57 -0400820static void __timekeeping_inject_sleeptime(struct timekeeper *tk,
821 struct timespec *delta)
John Stultz304529b2011-04-01 14:32:09 -0700822{
John Stultzcee58482012-08-31 13:30:06 -0400823 if (!timespec_valid_strict(delta)) {
John Stultzcbaa5152011-07-20 15:42:55 -0700824 printk(KERN_WARNING "__timekeeping_inject_sleeptime: Invalid "
John Stultzcb5de2f2011-06-01 18:18:09 -0700825 "sleep delta value!\n");
826 return;
827 }
John Stultzf726a692012-07-13 01:21:57 -0400828 tk_xtime_add(tk, delta);
John Stultz6d0ef902012-07-27 14:48:12 -0400829 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *delta));
830 tk_set_sleep_time(tk, timespec_add(tk->total_sleep_time, *delta));
John Stultz304529b2011-04-01 14:32:09 -0700831}
832
John Stultz304529b2011-04-01 14:32:09 -0700833/**
834 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
835 * @delta: pointer to a timespec delta value
836 *
837 * This hook is for architectures that cannot support read_persistent_clock
838 * because their RTC/persistent clock is only accessible when irqs are enabled.
839 *
840 * This function should only be called by rtc_resume(), and allows
841 * a suspend offset to be injected into the timekeeping values.
842 */
843void timekeeping_inject_sleeptime(struct timespec *delta)
844{
John Stultz4e250fd2012-07-27 14:48:13 -0400845 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800846 unsigned long flags;
John Stultz304529b2011-04-01 14:32:09 -0700847
Feng Tang31ade302013-01-16 00:09:47 +0800848 /*
849 * Make sure we don't set the clock twice, as timekeeping_resume()
850 * already did it
851 */
852 if (has_persistent_clock())
John Stultz304529b2011-04-01 14:32:09 -0700853 return;
854
John Stultz4e250fd2012-07-27 14:48:13 -0400855 write_seqlock_irqsave(&tk->lock, flags);
John Stultz70471f22011-11-14 12:48:10 -0800856
John Stultz4e250fd2012-07-27 14:48:13 -0400857 timekeeping_forward_now(tk);
John Stultz304529b2011-04-01 14:32:09 -0700858
John Stultz4e250fd2012-07-27 14:48:13 -0400859 __timekeeping_inject_sleeptime(tk, delta);
John Stultz304529b2011-04-01 14:32:09 -0700860
John Stultz4e250fd2012-07-27 14:48:13 -0400861 timekeeping_update(tk, true);
John Stultz304529b2011-04-01 14:32:09 -0700862
John Stultz4e250fd2012-07-27 14:48:13 -0400863 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultz304529b2011-04-01 14:32:09 -0700864
865 /* signal hrtimers about time change */
866 clock_was_set();
867}
868
John Stultz304529b2011-04-01 14:32:09 -0700869/**
john stultz85240702007-05-08 00:27:59 -0700870 * timekeeping_resume - Resumes the generic timekeeping subsystem.
john stultz85240702007-05-08 00:27:59 -0700871 *
872 * This is for the generic clocksource timekeeping.
873 * xtime/wall_to_monotonic/jiffies/etc are
874 * still managed by arch specific suspend/resume code.
875 */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100876static void timekeeping_resume(void)
john stultz85240702007-05-08 00:27:59 -0700877{
John Stultz4e250fd2012-07-27 14:48:13 -0400878 struct timekeeper *tk = &timekeeper;
Feng Tange445cf12013-03-12 11:56:48 +0800879 struct clocksource *clock = tk->clock;
John Stultz92c1d3e2011-11-14 14:05:44 -0800880 unsigned long flags;
Feng Tange445cf12013-03-12 11:56:48 +0800881 struct timespec ts_new, ts_delta;
882 cycle_t cycle_now, cycle_delta;
883 bool suspendtime_found = false;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200884
Feng Tange445cf12013-03-12 11:56:48 +0800885 read_persistent_clock(&ts_new);
john stultz85240702007-05-08 00:27:59 -0700886
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +0200887 clockevents_resume();
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +0200888 clocksource_resume();
889
John Stultz4e250fd2012-07-27 14:48:13 -0400890 write_seqlock_irqsave(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700891
Feng Tange445cf12013-03-12 11:56:48 +0800892 /*
893 * After system resumes, we need to calculate the suspended time and
894 * compensate it for the OS time. There are 3 sources that could be
895 * used: Nonstop clocksource during suspend, persistent clock and rtc
896 * device.
897 *
898 * One specific platform may have 1 or 2 or all of them, and the
899 * preference will be:
900 * suspend-nonstop clocksource -> persistent clock -> rtc
901 * The less preferred source will only be tried if there is no better
902 * usable source. The rtc part is handled separately in rtc core code.
903 */
904 cycle_now = clock->read(clock);
905 if ((clock->flags & CLOCK_SOURCE_SUSPEND_NONSTOP) &&
906 cycle_now > clock->cycle_last) {
907 u64 num, max = ULLONG_MAX;
908 u32 mult = clock->mult;
909 u32 shift = clock->shift;
910 s64 nsec = 0;
911
912 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
913
914 /*
915 * "cycle_delta * mutl" may cause 64 bits overflow, if the
916 * suspended time is too long. In that case we need do the
917 * 64 bits math carefully
918 */
919 do_div(max, mult);
920 if (cycle_delta > max) {
921 num = div64_u64(cycle_delta, max);
922 nsec = (((u64) max * mult) >> shift) * num;
923 cycle_delta -= num * max;
924 }
925 nsec += ((u64) cycle_delta * mult) >> shift;
926
927 ts_delta = ns_to_timespec(nsec);
928 suspendtime_found = true;
929 } else if (timespec_compare(&ts_new, &timekeeping_suspend_time) > 0) {
930 ts_delta = timespec_sub(ts_new, timekeeping_suspend_time);
931 suspendtime_found = true;
john stultz85240702007-05-08 00:27:59 -0700932 }
Feng Tange445cf12013-03-12 11:56:48 +0800933
934 if (suspendtime_found)
935 __timekeeping_inject_sleeptime(tk, &ts_delta);
936
937 /* Re-base the last cycle value */
938 clock->cycle_last = cycle_now;
John Stultz4e250fd2012-07-27 14:48:13 -0400939 tk->ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -0700940 timekeeping_suspended = 0;
John Stultz4e250fd2012-07-27 14:48:13 -0400941 timekeeping_update(tk, false);
942 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700943
944 touch_softlockup_watchdog();
945
946 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
947
948 /* Resume hrtimers */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200949 hrtimers_resume();
john stultz85240702007-05-08 00:27:59 -0700950}
951
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100952static int timekeeping_suspend(void)
john stultz85240702007-05-08 00:27:59 -0700953{
John Stultz4e250fd2012-07-27 14:48:13 -0400954 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800955 unsigned long flags;
John Stultzcb332172011-05-31 22:53:23 -0700956 struct timespec delta, delta_delta;
957 static struct timespec old_delta;
john stultz85240702007-05-08 00:27:59 -0700958
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200959 read_persistent_clock(&timekeeping_suspend_time);
Thomas Gleixner3be90952007-09-16 15:36:43 +0200960
John Stultz4e250fd2012-07-27 14:48:13 -0400961 write_seqlock_irqsave(&tk->lock, flags);
962 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700963 timekeeping_suspended = 1;
John Stultzcb332172011-05-31 22:53:23 -0700964
965 /*
966 * To avoid drift caused by repeated suspend/resumes,
967 * which each can add ~1 second drift error,
968 * try to compensate so the difference in system time
969 * and persistent_clock time stays close to constant.
970 */
John Stultz4e250fd2012-07-27 14:48:13 -0400971 delta = timespec_sub(tk_xtime(tk), timekeeping_suspend_time);
John Stultzcb332172011-05-31 22:53:23 -0700972 delta_delta = timespec_sub(delta, old_delta);
973 if (abs(delta_delta.tv_sec) >= 2) {
974 /*
975 * if delta_delta is too large, assume time correction
976 * has occured and set old_delta to the current delta.
977 */
978 old_delta = delta;
979 } else {
980 /* Otherwise try to adjust old_system to compensate */
981 timekeeping_suspend_time =
982 timespec_add(timekeeping_suspend_time, delta_delta);
983 }
John Stultz4e250fd2012-07-27 14:48:13 -0400984 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700985
986 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
Magnus Dammc54a42b2010-02-02 14:41:41 -0800987 clocksource_suspend();
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +0200988 clockevents_suspend();
john stultz85240702007-05-08 00:27:59 -0700989
990 return 0;
991}
992
993/* sysfs resume/suspend bits for timekeeping */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100994static struct syscore_ops timekeeping_syscore_ops = {
john stultz85240702007-05-08 00:27:59 -0700995 .resume = timekeeping_resume,
996 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -0700997};
998
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100999static int __init timekeeping_init_ops(void)
john stultz85240702007-05-08 00:27:59 -07001000{
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001001 register_syscore_ops(&timekeeping_syscore_ops);
1002 return 0;
john stultz85240702007-05-08 00:27:59 -07001003}
1004
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001005device_initcall(timekeeping_init_ops);
john stultz85240702007-05-08 00:27:59 -07001006
1007/*
1008 * If the error is already larger, we look ahead even further
1009 * to compensate for late or lost adjustments.
1010 */
John Stultzf726a692012-07-13 01:21:57 -04001011static __always_inline int timekeeping_bigadjust(struct timekeeper *tk,
1012 s64 error, s64 *interval,
john stultz85240702007-05-08 00:27:59 -07001013 s64 *offset)
1014{
1015 s64 tick_error, i;
1016 u32 look_ahead, adj;
1017 s32 error2, mult;
1018
1019 /*
1020 * Use the current error value to determine how much to look ahead.
1021 * The larger the error the slower we adjust for it to avoid problems
1022 * with losing too many ticks, otherwise we would overadjust and
1023 * produce an even larger error. The smaller the adjustment the
1024 * faster we try to adjust for it, as lost ticks can do less harm
Li Zefan3eb05672008-02-08 04:19:25 -08001025 * here. This is tuned so that an error of about 1 msec is adjusted
john stultz85240702007-05-08 00:27:59 -07001026 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
1027 */
John Stultzf726a692012-07-13 01:21:57 -04001028 error2 = tk->ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
john stultz85240702007-05-08 00:27:59 -07001029 error2 = abs(error2);
1030 for (look_ahead = 0; error2 > 0; look_ahead++)
1031 error2 >>= 2;
1032
1033 /*
1034 * Now calculate the error in (1 << look_ahead) ticks, but first
1035 * remove the single look ahead already included in the error.
1036 */
John Stultzf726a692012-07-13 01:21:57 -04001037 tick_error = ntp_tick_length() >> (tk->ntp_error_shift + 1);
1038 tick_error -= tk->xtime_interval >> 1;
john stultz85240702007-05-08 00:27:59 -07001039 error = ((error - tick_error) >> look_ahead) + tick_error;
1040
1041 /* Finally calculate the adjustment shift value. */
1042 i = *interval;
1043 mult = 1;
1044 if (error < 0) {
1045 error = -error;
1046 *interval = -*interval;
1047 *offset = -*offset;
1048 mult = -1;
1049 }
1050 for (adj = 0; error > i; adj++)
1051 error >>= 1;
1052
1053 *interval <<= adj;
1054 *offset <<= adj;
1055 return mult << adj;
1056}
1057
1058/*
1059 * Adjust the multiplier to reduce the error value,
1060 * this is optimized for the most common adjustments of -1,0,1,
1061 * for other values we can do a bit more work.
1062 */
John Stultzf726a692012-07-13 01:21:57 -04001063static void timekeeping_adjust(struct timekeeper *tk, s64 offset)
john stultz85240702007-05-08 00:27:59 -07001064{
John Stultzf726a692012-07-13 01:21:57 -04001065 s64 error, interval = tk->cycle_interval;
john stultz85240702007-05-08 00:27:59 -07001066 int adj;
1067
John Stultzc2bc1112011-10-27 18:12:42 -07001068 /*
Jim Cromie88b28ad2012-03-14 21:28:56 -06001069 * The point of this is to check if the error is greater than half
John Stultzc2bc1112011-10-27 18:12:42 -07001070 * an interval.
1071 *
1072 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
1073 *
1074 * Note we subtract one in the shift, so that error is really error*2.
John Stultz3f86f282011-10-27 17:41:17 -07001075 * This "saves" dividing(shifting) interval twice, but keeps the
1076 * (error > interval) comparison as still measuring if error is
Jim Cromie88b28ad2012-03-14 21:28:56 -06001077 * larger than half an interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001078 *
John Stultz3f86f282011-10-27 17:41:17 -07001079 * Note: It does not "save" on aggravation when reading the code.
John Stultzc2bc1112011-10-27 18:12:42 -07001080 */
John Stultzf726a692012-07-13 01:21:57 -04001081 error = tk->ntp_error >> (tk->ntp_error_shift - 1);
john stultz85240702007-05-08 00:27:59 -07001082 if (error > interval) {
John Stultzc2bc1112011-10-27 18:12:42 -07001083 /*
1084 * We now divide error by 4(via shift), which checks if
Jim Cromie88b28ad2012-03-14 21:28:56 -06001085 * the error is greater than twice the interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001086 * If it is greater, we need a bigadjust, if its smaller,
1087 * we can adjust by 1.
1088 */
john stultz85240702007-05-08 00:27:59 -07001089 error >>= 2;
John Stultzc2bc1112011-10-27 18:12:42 -07001090 /*
1091 * XXX - In update_wall_time, we round up to the next
1092 * nanosecond, and store the amount rounded up into
1093 * the error. This causes the likely below to be unlikely.
1094 *
John Stultz3f86f282011-10-27 17:41:17 -07001095 * The proper fix is to avoid rounding up by using
John Stultz4e250fd2012-07-27 14:48:13 -04001096 * the high precision tk->xtime_nsec instead of
John Stultzc2bc1112011-10-27 18:12:42 -07001097 * xtime.tv_nsec everywhere. Fixing this will take some
1098 * time.
1099 */
john stultz85240702007-05-08 00:27:59 -07001100 if (likely(error <= interval))
1101 adj = 1;
1102 else
Ingo Molnar1d17d172012-08-04 21:21:14 +02001103 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1104 } else {
1105 if (error < -interval) {
1106 /* See comment above, this is just switched for the negative */
1107 error >>= 2;
1108 if (likely(error >= -interval)) {
1109 adj = -1;
1110 interval = -interval;
1111 offset = -offset;
1112 } else {
1113 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1114 }
1115 } else {
1116 goto out_adjust;
1117 }
1118 }
john stultz85240702007-05-08 00:27:59 -07001119
John Stultzf726a692012-07-13 01:21:57 -04001120 if (unlikely(tk->clock->maxadj &&
1121 (tk->mult + adj > tk->clock->mult + tk->clock->maxadj))) {
John Stultze919cfd2012-03-22 19:14:46 -07001122 printk_once(KERN_WARNING
1123 "Adjusting %s more than 11%% (%ld vs %ld)\n",
John Stultzf726a692012-07-13 01:21:57 -04001124 tk->clock->name, (long)tk->mult + adj,
1125 (long)tk->clock->mult + tk->clock->maxadj);
John Stultze919cfd2012-03-22 19:14:46 -07001126 }
John Stultzc2bc1112011-10-27 18:12:42 -07001127 /*
1128 * So the following can be confusing.
1129 *
1130 * To keep things simple, lets assume adj == 1 for now.
1131 *
1132 * When adj != 1, remember that the interval and offset values
1133 * have been appropriately scaled so the math is the same.
1134 *
1135 * The basic idea here is that we're increasing the multiplier
1136 * by one, this causes the xtime_interval to be incremented by
1137 * one cycle_interval. This is because:
1138 * xtime_interval = cycle_interval * mult
1139 * So if mult is being incremented by one:
1140 * xtime_interval = cycle_interval * (mult + 1)
1141 * Its the same as:
1142 * xtime_interval = (cycle_interval * mult) + cycle_interval
1143 * Which can be shortened to:
1144 * xtime_interval += cycle_interval
1145 *
1146 * So offset stores the non-accumulated cycles. Thus the current
1147 * time (in shifted nanoseconds) is:
1148 * now = (offset * adj) + xtime_nsec
1149 * Now, even though we're adjusting the clock frequency, we have
1150 * to keep time consistent. In other words, we can't jump back
1151 * in time, and we also want to avoid jumping forward in time.
1152 *
1153 * So given the same offset value, we need the time to be the same
1154 * both before and after the freq adjustment.
1155 * now = (offset * adj_1) + xtime_nsec_1
1156 * now = (offset * adj_2) + xtime_nsec_2
1157 * So:
1158 * (offset * adj_1) + xtime_nsec_1 =
1159 * (offset * adj_2) + xtime_nsec_2
1160 * And we know:
1161 * adj_2 = adj_1 + 1
1162 * So:
1163 * (offset * adj_1) + xtime_nsec_1 =
1164 * (offset * (adj_1+1)) + xtime_nsec_2
1165 * (offset * adj_1) + xtime_nsec_1 =
1166 * (offset * adj_1) + offset + xtime_nsec_2
1167 * Canceling the sides:
1168 * xtime_nsec_1 = offset + xtime_nsec_2
1169 * Which gives us:
1170 * xtime_nsec_2 = xtime_nsec_1 - offset
1171 * Which simplfies to:
1172 * xtime_nsec -= offset
1173 *
1174 * XXX - TODO: Doc ntp_error calculation.
1175 */
John Stultzf726a692012-07-13 01:21:57 -04001176 tk->mult += adj;
1177 tk->xtime_interval += interval;
1178 tk->xtime_nsec -= offset;
1179 tk->ntp_error -= (interval - offset) << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001180
Ingo Molnar1d17d172012-08-04 21:21:14 +02001181out_adjust:
John Stultz2a8c0882012-07-13 01:21:56 -04001182 /*
1183 * It may be possible that when we entered this function, xtime_nsec
1184 * was very small. Further, if we're slightly speeding the clocksource
1185 * in the code above, its possible the required corrective factor to
1186 * xtime_nsec could cause it to underflow.
1187 *
1188 * Now, since we already accumulated the second, cannot simply roll
1189 * the accumulated second back, since the NTP subsystem has been
1190 * notified via second_overflow. So instead we push xtime_nsec forward
1191 * by the amount we underflowed, and add that amount into the error.
1192 *
1193 * We'll correct this error next time through this function, when
1194 * xtime_nsec is not as small.
1195 */
John Stultzf726a692012-07-13 01:21:57 -04001196 if (unlikely((s64)tk->xtime_nsec < 0)) {
1197 s64 neg = -(s64)tk->xtime_nsec;
1198 tk->xtime_nsec = 0;
1199 tk->ntp_error += neg << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001200 }
1201
john stultz85240702007-05-08 00:27:59 -07001202}
1203
1204/**
John Stultz1f4f9482012-07-13 01:21:54 -04001205 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
1206 *
1207 * Helper function that accumulates a the nsecs greater then a second
1208 * from the xtime_nsec field to the xtime_secs field.
1209 * It also calls into the NTP code to handle leapsecond processing.
1210 *
1211 */
1212static inline void accumulate_nsecs_to_secs(struct timekeeper *tk)
1213{
1214 u64 nsecps = (u64)NSEC_PER_SEC << tk->shift;
1215
1216 while (tk->xtime_nsec >= nsecps) {
1217 int leap;
1218
1219 tk->xtime_nsec -= nsecps;
1220 tk->xtime_sec++;
1221
1222 /* Figure out if its a leap sec and apply if needed */
1223 leap = second_overflow(tk->xtime_sec);
John Stultz6d0ef902012-07-27 14:48:12 -04001224 if (unlikely(leap)) {
1225 struct timespec ts;
John Stultz1f4f9482012-07-13 01:21:54 -04001226
John Stultz6d0ef902012-07-27 14:48:12 -04001227 tk->xtime_sec += leap;
1228
1229 ts.tv_sec = leap;
1230 ts.tv_nsec = 0;
1231 tk_set_wall_to_mono(tk,
1232 timespec_sub(tk->wall_to_monotonic, ts));
1233
John Stultzcc244dd2012-05-03 12:30:07 -07001234 __timekeeping_set_tai_offset(tk, tk->tai_offset - leap);
1235
John Stultz6d0ef902012-07-27 14:48:12 -04001236 clock_was_set_delayed();
1237 }
John Stultz1f4f9482012-07-13 01:21:54 -04001238 }
1239}
1240
John Stultz1f4f9482012-07-13 01:21:54 -04001241/**
john stultza092ff02009-10-02 16:17:53 -07001242 * logarithmic_accumulation - shifted accumulation of cycles
1243 *
1244 * This functions accumulates a shifted interval of cycles into
1245 * into a shifted interval nanoseconds. Allows for O(log) accumulation
1246 * loop.
1247 *
1248 * Returns the unconsumed cycles.
1249 */
John Stultzf726a692012-07-13 01:21:57 -04001250static cycle_t logarithmic_accumulation(struct timekeeper *tk, cycle_t offset,
1251 u32 shift)
john stultza092ff02009-10-02 16:17:53 -07001252{
Thomas Gleixner23a95372013-02-21 22:51:36 +00001253 cycle_t interval = tk->cycle_interval << shift;
Jason Wesseldeda2e82010-08-09 14:20:09 -07001254 u64 raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001255
John Stultzf726a692012-07-13 01:21:57 -04001256 /* If the offset is smaller then a shifted interval, do nothing */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001257 if (offset < interval)
john stultza092ff02009-10-02 16:17:53 -07001258 return offset;
1259
1260 /* Accumulate one shifted interval */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001261 offset -= interval;
1262 tk->clock->cycle_last += interval;
john stultza092ff02009-10-02 16:17:53 -07001263
John Stultzf726a692012-07-13 01:21:57 -04001264 tk->xtime_nsec += tk->xtime_interval << shift;
1265 accumulate_nsecs_to_secs(tk);
john stultza092ff02009-10-02 16:17:53 -07001266
Jason Wesseldeda2e82010-08-09 14:20:09 -07001267 /* Accumulate raw time */
Dan Carpenter5b3900c2012-10-09 10:18:23 +03001268 raw_nsecs = (u64)tk->raw_interval << shift;
John Stultzf726a692012-07-13 01:21:57 -04001269 raw_nsecs += tk->raw_time.tv_nsec;
John Stultzc7dcf872010-08-13 11:30:58 -07001270 if (raw_nsecs >= NSEC_PER_SEC) {
1271 u64 raw_secs = raw_nsecs;
1272 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
John Stultzf726a692012-07-13 01:21:57 -04001273 tk->raw_time.tv_sec += raw_secs;
john stultza092ff02009-10-02 16:17:53 -07001274 }
John Stultzf726a692012-07-13 01:21:57 -04001275 tk->raw_time.tv_nsec = raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001276
1277 /* Accumulate error between NTP and clock interval */
John Stultzf726a692012-07-13 01:21:57 -04001278 tk->ntp_error += ntp_tick_length() << shift;
1279 tk->ntp_error -= (tk->xtime_interval + tk->xtime_remainder) <<
1280 (tk->ntp_error_shift + shift);
john stultza092ff02009-10-02 16:17:53 -07001281
1282 return offset;
1283}
1284
John Stultz92bb1fc2012-09-04 15:38:12 -04001285#ifdef CONFIG_GENERIC_TIME_VSYSCALL_OLD
1286static inline void old_vsyscall_fixup(struct timekeeper *tk)
1287{
1288 s64 remainder;
1289
1290 /*
1291 * Store only full nanoseconds into xtime_nsec after rounding
1292 * it up and add the remainder to the error difference.
1293 * XXX - This is necessary to avoid small 1ns inconsistnecies caused
1294 * by truncating the remainder in vsyscalls. However, it causes
1295 * additional work to be done in timekeeping_adjust(). Once
1296 * the vsyscall implementations are converted to use xtime_nsec
1297 * (shifted nanoseconds), and CONFIG_GENERIC_TIME_VSYSCALL_OLD
1298 * users are removed, this can be killed.
1299 */
1300 remainder = tk->xtime_nsec & ((1ULL << tk->shift) - 1);
1301 tk->xtime_nsec -= remainder;
1302 tk->xtime_nsec += 1ULL << tk->shift;
1303 tk->ntp_error += remainder << tk->ntp_error_shift;
1304
1305}
1306#else
1307#define old_vsyscall_fixup(tk)
1308#endif
1309
1310
1311
john stultz85240702007-05-08 00:27:59 -07001312/**
1313 * update_wall_time - Uses the current clocksource to increment the wall time
1314 *
john stultz85240702007-05-08 00:27:59 -07001315 */
Torben Hohn871cf1e2011-01-27 15:58:55 +01001316static void update_wall_time(void)
john stultz85240702007-05-08 00:27:59 -07001317{
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001318 struct clocksource *clock;
John Stultz4e250fd2012-07-27 14:48:13 -04001319 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -07001320 cycle_t offset;
john stultza092ff02009-10-02 16:17:53 -07001321 int shift = 0, maxshift;
John Stultz70471f22011-11-14 12:48:10 -08001322 unsigned long flags;
1323
John Stultz4e250fd2012-07-27 14:48:13 -04001324 write_seqlock_irqsave(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -07001325
1326 /* Make sure we're fully resumed: */
1327 if (unlikely(timekeeping_suspended))
John Stultz70471f22011-11-14 12:48:10 -08001328 goto out;
john stultz85240702007-05-08 00:27:59 -07001329
John Stultz4e250fd2012-07-27 14:48:13 -04001330 clock = tk->clock;
John Stultz592913e2010-07-13 17:56:20 -07001331
1332#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
John Stultz4e250fd2012-07-27 14:48:13 -04001333 offset = tk->cycle_interval;
John Stultz592913e2010-07-13 17:56:20 -07001334#else
1335 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
john stultz85240702007-05-08 00:27:59 -07001336#endif
john stultz85240702007-05-08 00:27:59 -07001337
John Stultzbf2ac312012-08-21 20:30:49 -04001338 /* Check if there's really nothing to do */
1339 if (offset < tk->cycle_interval)
1340 goto out;
1341
john stultza092ff02009-10-02 16:17:53 -07001342 /*
1343 * With NO_HZ we may have to accumulate many cycle_intervals
1344 * (think "ticks") worth of time at once. To do this efficiently,
1345 * we calculate the largest doubling multiple of cycle_intervals
Jim Cromie88b28ad2012-03-14 21:28:56 -06001346 * that is smaller than the offset. We then accumulate that
john stultza092ff02009-10-02 16:17:53 -07001347 * chunk in one go, and then try to consume the next smaller
1348 * doubled multiple.
john stultz85240702007-05-08 00:27:59 -07001349 */
John Stultz4e250fd2012-07-27 14:48:13 -04001350 shift = ilog2(offset) - ilog2(tk->cycle_interval);
john stultza092ff02009-10-02 16:17:53 -07001351 shift = max(0, shift);
Jim Cromie88b28ad2012-03-14 21:28:56 -06001352 /* Bound shift to one less than what overflows tick_length */
John Stultzea7cf492011-11-14 13:18:07 -08001353 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
john stultza092ff02009-10-02 16:17:53 -07001354 shift = min(shift, maxshift);
John Stultz4e250fd2012-07-27 14:48:13 -04001355 while (offset >= tk->cycle_interval) {
1356 offset = logarithmic_accumulation(tk, offset, shift);
1357 if (offset < tk->cycle_interval<<shift)
John Stultz830ec042010-03-18 14:47:30 -07001358 shift--;
john stultz85240702007-05-08 00:27:59 -07001359 }
1360
1361 /* correct the clock when NTP error is too big */
John Stultz4e250fd2012-07-27 14:48:13 -04001362 timekeeping_adjust(tk, offset);
john stultz85240702007-05-08 00:27:59 -07001363
John Stultz6a867a32010-04-06 14:30:51 -07001364 /*
John Stultz92bb1fc2012-09-04 15:38:12 -04001365 * XXX This can be killed once everyone converts
1366 * to the new update_vsyscall.
1367 */
1368 old_vsyscall_fixup(tk);
john stultz85240702007-05-08 00:27:59 -07001369
John Stultz6a867a32010-04-06 14:30:51 -07001370 /*
1371 * Finally, make sure that after the rounding
John Stultz1e75fa82012-07-13 01:21:53 -04001372 * xtime_nsec isn't larger than NSEC_PER_SEC
John Stultz6a867a32010-04-06 14:30:51 -07001373 */
John Stultz4e250fd2012-07-27 14:48:13 -04001374 accumulate_nsecs_to_secs(tk);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001375
John Stultz4e250fd2012-07-27 14:48:13 -04001376 timekeeping_update(tk, false);
John Stultz70471f22011-11-14 12:48:10 -08001377
1378out:
John Stultz4e250fd2012-07-27 14:48:13 -04001379 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultz70471f22011-11-14 12:48:10 -08001380
john stultz85240702007-05-08 00:27:59 -07001381}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001382
1383/**
1384 * getboottime - Return the real time of system boot.
1385 * @ts: pointer to the timespec to be set
1386 *
John Stultzabb3a4e2011-02-14 17:52:09 -08001387 * Returns the wall-time of boot in a timespec.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001388 *
1389 * This is based on the wall_to_monotonic offset and the total suspend
1390 * time. Calls to settimeofday will affect the value returned (which
1391 * basically means that however wrong your real time clock is at boot time,
1392 * you get the right time here).
1393 */
1394void getboottime(struct timespec *ts)
1395{
John Stultz4e250fd2012-07-27 14:48:13 -04001396 struct timekeeper *tk = &timekeeper;
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001397 struct timespec boottime = {
John Stultz4e250fd2012-07-27 14:48:13 -04001398 .tv_sec = tk->wall_to_monotonic.tv_sec +
1399 tk->total_sleep_time.tv_sec,
1400 .tv_nsec = tk->wall_to_monotonic.tv_nsec +
1401 tk->total_sleep_time.tv_nsec
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001402 };
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001403
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001404 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001405}
Jason Wangc93d89f2010-01-27 19:13:40 +08001406EXPORT_SYMBOL_GPL(getboottime);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001407
John Stultzabb3a4e2011-02-14 17:52:09 -08001408/**
1409 * get_monotonic_boottime - Returns monotonic time since boot
1410 * @ts: pointer to the timespec to be set
1411 *
1412 * Returns the monotonic time since boot in a timespec.
1413 *
1414 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1415 * includes the time spent in suspend.
1416 */
1417void get_monotonic_boottime(struct timespec *ts)
1418{
John Stultz4e250fd2012-07-27 14:48:13 -04001419 struct timekeeper *tk = &timekeeper;
John Stultzabb3a4e2011-02-14 17:52:09 -08001420 struct timespec tomono, sleep;
John Stultzec145ba2012-09-11 19:26:03 -04001421 s64 nsec;
John Stultzabb3a4e2011-02-14 17:52:09 -08001422 unsigned int seq;
John Stultzabb3a4e2011-02-14 17:52:09 -08001423
1424 WARN_ON(timekeeping_suspended);
1425
1426 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001427 seq = read_seqbegin(&tk->lock);
1428 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -04001429 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -04001430 tomono = tk->wall_to_monotonic;
1431 sleep = tk->total_sleep_time;
John Stultzabb3a4e2011-02-14 17:52:09 -08001432
John Stultz4e250fd2012-07-27 14:48:13 -04001433 } while (read_seqretry(&tk->lock, seq));
John Stultzabb3a4e2011-02-14 17:52:09 -08001434
John Stultzec145ba2012-09-11 19:26:03 -04001435 ts->tv_sec += tomono.tv_sec + sleep.tv_sec;
1436 ts->tv_nsec = 0;
1437 timespec_add_ns(ts, nsec + tomono.tv_nsec + sleep.tv_nsec);
John Stultzabb3a4e2011-02-14 17:52:09 -08001438}
1439EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1440
1441/**
1442 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1443 *
1444 * Returns the monotonic time since boot in a ktime
1445 *
1446 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1447 * includes the time spent in suspend.
1448 */
1449ktime_t ktime_get_boottime(void)
1450{
1451 struct timespec ts;
1452
1453 get_monotonic_boottime(&ts);
1454 return timespec_to_ktime(ts);
1455}
1456EXPORT_SYMBOL_GPL(ktime_get_boottime);
1457
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001458/**
1459 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1460 * @ts: pointer to the timespec to be converted
1461 */
1462void monotonic_to_bootbased(struct timespec *ts)
1463{
John Stultz4e250fd2012-07-27 14:48:13 -04001464 struct timekeeper *tk = &timekeeper;
1465
1466 *ts = timespec_add(*ts, tk->total_sleep_time);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001467}
Jason Wangc93d89f2010-01-27 19:13:40 +08001468EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
john stultz2c6b47d2007-07-24 17:47:43 -07001469
john stultz17c38b72007-07-24 18:38:34 -07001470unsigned long get_seconds(void)
1471{
John Stultz4e250fd2012-07-27 14:48:13 -04001472 struct timekeeper *tk = &timekeeper;
1473
1474 return tk->xtime_sec;
john stultz17c38b72007-07-24 18:38:34 -07001475}
1476EXPORT_SYMBOL(get_seconds);
1477
john stultzda15cfd2009-08-19 19:13:34 -07001478struct timespec __current_kernel_time(void)
1479{
John Stultz4e250fd2012-07-27 14:48:13 -04001480 struct timekeeper *tk = &timekeeper;
1481
1482 return tk_xtime(tk);
john stultzda15cfd2009-08-19 19:13:34 -07001483}
john stultz17c38b72007-07-24 18:38:34 -07001484
john stultz2c6b47d2007-07-24 17:47:43 -07001485struct timespec current_kernel_time(void)
1486{
John Stultz4e250fd2012-07-27 14:48:13 -04001487 struct timekeeper *tk = &timekeeper;
john stultz2c6b47d2007-07-24 17:47:43 -07001488 struct timespec now;
1489 unsigned long seq;
1490
1491 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001492 seq = read_seqbegin(&tk->lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001493
John Stultz4e250fd2012-07-27 14:48:13 -04001494 now = tk_xtime(tk);
1495 } while (read_seqretry(&tk->lock, seq));
john stultz2c6b47d2007-07-24 17:47:43 -07001496
1497 return now;
1498}
john stultz2c6b47d2007-07-24 17:47:43 -07001499EXPORT_SYMBOL(current_kernel_time);
john stultzda15cfd2009-08-19 19:13:34 -07001500
1501struct timespec get_monotonic_coarse(void)
1502{
John Stultz4e250fd2012-07-27 14:48:13 -04001503 struct timekeeper *tk = &timekeeper;
john stultzda15cfd2009-08-19 19:13:34 -07001504 struct timespec now, mono;
1505 unsigned long seq;
1506
1507 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001508 seq = read_seqbegin(&tk->lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001509
John Stultz4e250fd2012-07-27 14:48:13 -04001510 now = tk_xtime(tk);
1511 mono = tk->wall_to_monotonic;
1512 } while (read_seqretry(&tk->lock, seq));
john stultzda15cfd2009-08-19 19:13:34 -07001513
1514 set_normalized_timespec(&now, now.tv_sec + mono.tv_sec,
1515 now.tv_nsec + mono.tv_nsec);
1516 return now;
1517}
Torben Hohn871cf1e2011-01-27 15:58:55 +01001518
1519/*
John Stultzd6ad4182012-02-28 16:50:11 -08001520 * Must hold jiffies_lock
Torben Hohn871cf1e2011-01-27 15:58:55 +01001521 */
1522void do_timer(unsigned long ticks)
1523{
1524 jiffies_64 += ticks;
1525 update_wall_time();
1526 calc_global_load(ticks);
1527}
Torben Hohn48cf76f72011-01-27 15:59:05 +01001528
1529/**
John Stultz314ac372011-02-14 18:43:08 -08001530 * get_xtime_and_monotonic_and_sleep_offset() - get xtime, wall_to_monotonic,
1531 * and sleep offsets.
Torben Hohn48cf76f72011-01-27 15:59:05 +01001532 * @xtim: pointer to timespec to be set with xtime
1533 * @wtom: pointer to timespec to be set with wall_to_monotonic
John Stultz314ac372011-02-14 18:43:08 -08001534 * @sleep: pointer to timespec to be set with time in suspend
Torben Hohn48cf76f72011-01-27 15:59:05 +01001535 */
John Stultz314ac372011-02-14 18:43:08 -08001536void get_xtime_and_monotonic_and_sleep_offset(struct timespec *xtim,
1537 struct timespec *wtom, struct timespec *sleep)
Torben Hohn48cf76f72011-01-27 15:59:05 +01001538{
John Stultz4e250fd2012-07-27 14:48:13 -04001539 struct timekeeper *tk = &timekeeper;
Torben Hohn48cf76f72011-01-27 15:59:05 +01001540 unsigned long seq;
1541
1542 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001543 seq = read_seqbegin(&tk->lock);
1544 *xtim = tk_xtime(tk);
1545 *wtom = tk->wall_to_monotonic;
1546 *sleep = tk->total_sleep_time;
1547 } while (read_seqretry(&tk->lock, seq));
Torben Hohn48cf76f72011-01-27 15:59:05 +01001548}
Torben Hohnf0af911a92011-01-27 15:59:10 +01001549
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001550#ifdef CONFIG_HIGH_RES_TIMERS
1551/**
1552 * ktime_get_update_offsets - hrtimer helper
1553 * @offs_real: pointer to storage for monotonic -> realtime offset
1554 * @offs_boot: pointer to storage for monotonic -> boottime offset
1555 *
1556 * Returns current monotonic time and updates the offsets
1557 * Called from hrtimer_interupt() or retrigger_next_event()
1558 */
John Stultz90adda92013-01-21 17:00:11 -08001559ktime_t ktime_get_update_offsets(ktime_t *offs_real, ktime_t *offs_boot,
1560 ktime_t *offs_tai)
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001561{
John Stultz4e250fd2012-07-27 14:48:13 -04001562 struct timekeeper *tk = &timekeeper;
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001563 ktime_t now;
1564 unsigned int seq;
1565 u64 secs, nsecs;
1566
1567 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001568 seq = read_seqbegin(&tk->lock);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001569
John Stultz4e250fd2012-07-27 14:48:13 -04001570 secs = tk->xtime_sec;
1571 nsecs = timekeeping_get_ns(tk);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001572
John Stultz4e250fd2012-07-27 14:48:13 -04001573 *offs_real = tk->offs_real;
1574 *offs_boot = tk->offs_boot;
John Stultz90adda92013-01-21 17:00:11 -08001575 *offs_tai = tk->offs_tai;
John Stultz4e250fd2012-07-27 14:48:13 -04001576 } while (read_seqretry(&tk->lock, seq));
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001577
1578 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1579 now = ktime_sub(now, *offs_real);
1580 return now;
1581}
1582#endif
1583
Torben Hohnf0af911a92011-01-27 15:59:10 +01001584/**
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001585 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1586 */
1587ktime_t ktime_get_monotonic_offset(void)
1588{
John Stultz4e250fd2012-07-27 14:48:13 -04001589 struct timekeeper *tk = &timekeeper;
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001590 unsigned long seq;
1591 struct timespec wtom;
1592
1593 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001594 seq = read_seqbegin(&tk->lock);
1595 wtom = tk->wall_to_monotonic;
1596 } while (read_seqretry(&tk->lock, seq));
John Stultz70471f22011-11-14 12:48:10 -08001597
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001598 return timespec_to_ktime(wtom);
1599}
John Stultza80b83b2012-02-03 00:19:07 -08001600EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1601
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001602/**
Torben Hohnf0af911a92011-01-27 15:59:10 +01001603 * xtime_update() - advances the timekeeping infrastructure
1604 * @ticks: number of ticks, that have elapsed since the last call.
1605 *
1606 * Must be called with interrupts disabled.
1607 */
1608void xtime_update(unsigned long ticks)
1609{
John Stultzd6ad4182012-02-28 16:50:11 -08001610 write_seqlock(&jiffies_lock);
Torben Hohnf0af911a92011-01-27 15:59:10 +01001611 do_timer(ticks);
John Stultzd6ad4182012-02-28 16:50:11 -08001612 write_sequnlock(&jiffies_lock);
Torben Hohnf0af911a92011-01-27 15:59:10 +01001613}