blob: b0c648fc959f6de9a192747ce82f7d43933661bf [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
Thomas Gleixnereb93e4d2013-02-21 22:51:36 +000026#include "tick-internal.h"
Martin Schwidefsky155ec602009-08-14 15:47:26 +020027
H Hartley Sweetenafa14e72011-01-11 17:59:38 -060028static struct timekeeper timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020029
John Stultz8fcce542011-11-14 11:46:39 -080030/* flag for if timekeeping is suspended */
31int __read_mostly timekeeping_suspended;
32
Feng Tang31ade302013-01-16 00:09:47 +080033/* Flag for if there is a persistent clock on this platform */
34bool __read_mostly persistent_clock_exist = false;
35
John Stultz1e75fa82012-07-13 01:21:53 -040036static inline void tk_normalize_xtime(struct timekeeper *tk)
37{
38 while (tk->xtime_nsec >= ((u64)NSEC_PER_SEC << tk->shift)) {
39 tk->xtime_nsec -= (u64)NSEC_PER_SEC << tk->shift;
40 tk->xtime_sec++;
41 }
42}
John Stultz8fcce542011-11-14 11:46:39 -080043
John Stultz1e75fa82012-07-13 01:21:53 -040044static void tk_set_xtime(struct timekeeper *tk, const struct timespec *ts)
45{
46 tk->xtime_sec = ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040047 tk->xtime_nsec = (u64)ts->tv_nsec << tk->shift;
John Stultz1e75fa82012-07-13 01:21:53 -040048}
49
50static void tk_xtime_add(struct timekeeper *tk, const struct timespec *ts)
51{
52 tk->xtime_sec += ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040053 tk->xtime_nsec += (u64)ts->tv_nsec << tk->shift;
John Stultz784ffcb2012-08-21 20:30:46 -040054 tk_normalize_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -040055}
John Stultz8fcce542011-11-14 11:46:39 -080056
John Stultz6d0ef902012-07-27 14:48:12 -040057static void tk_set_wall_to_mono(struct timekeeper *tk, struct timespec wtm)
58{
59 struct timespec tmp;
60
61 /*
62 * Verify consistency of: offset_real = -wall_to_monotonic
63 * before modifying anything
64 */
65 set_normalized_timespec(&tmp, -tk->wall_to_monotonic.tv_sec,
66 -tk->wall_to_monotonic.tv_nsec);
67 WARN_ON_ONCE(tk->offs_real.tv64 != timespec_to_ktime(tmp).tv64);
68 tk->wall_to_monotonic = wtm;
69 set_normalized_timespec(&tmp, -wtm.tv_sec, -wtm.tv_nsec);
70 tk->offs_real = timespec_to_ktime(tmp);
John Stultz90adda92013-01-21 17:00:11 -080071 tk->offs_tai = ktime_sub(tk->offs_real, ktime_set(tk->tai_offset, 0));
John Stultz6d0ef902012-07-27 14:48:12 -040072}
73
74static void tk_set_sleep_time(struct timekeeper *tk, struct timespec t)
75{
76 /* Verify consistency before modifying */
77 WARN_ON_ONCE(tk->offs_boot.tv64 != timespec_to_ktime(tk->total_sleep_time).tv64);
78
79 tk->total_sleep_time = t;
80 tk->offs_boot = timespec_to_ktime(t);
81}
82
Martin Schwidefsky155ec602009-08-14 15:47:26 +020083/**
84 * timekeeper_setup_internals - Set up internals to use clocksource clock.
85 *
86 * @clock: Pointer to clocksource.
87 *
88 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
89 * pair and interval request.
90 *
91 * Unless you're the timekeeping code, you should not be using this!
92 */
John Stultzf726a692012-07-13 01:21:57 -040093static void tk_setup_internals(struct timekeeper *tk, struct clocksource *clock)
Martin Schwidefsky155ec602009-08-14 15:47:26 +020094{
95 cycle_t interval;
Kasper Pedersena386b5a2010-10-20 15:55:15 -070096 u64 tmp, ntpinterval;
John Stultz1e75fa82012-07-13 01:21:53 -040097 struct clocksource *old_clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020098
John Stultzf726a692012-07-13 01:21:57 -040099 old_clock = tk->clock;
100 tk->clock = clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200101 clock->cycle_last = clock->read(clock);
102
103 /* Do the ns -> cycle conversion first, using original mult */
104 tmp = NTP_INTERVAL_LENGTH;
105 tmp <<= clock->shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700106 ntpinterval = tmp;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200107 tmp += clock->mult/2;
108 do_div(tmp, clock->mult);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200109 if (tmp == 0)
110 tmp = 1;
111
112 interval = (cycle_t) tmp;
John Stultzf726a692012-07-13 01:21:57 -0400113 tk->cycle_interval = interval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200114
115 /* Go back from cycles -> shifted ns */
John Stultzf726a692012-07-13 01:21:57 -0400116 tk->xtime_interval = (u64) interval * clock->mult;
117 tk->xtime_remainder = ntpinterval - tk->xtime_interval;
118 tk->raw_interval =
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200119 ((u64) interval * clock->mult) >> clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200120
John Stultz1e75fa82012-07-13 01:21:53 -0400121 /* if changing clocks, convert xtime_nsec shift units */
122 if (old_clock) {
123 int shift_change = clock->shift - old_clock->shift;
124 if (shift_change < 0)
John Stultzf726a692012-07-13 01:21:57 -0400125 tk->xtime_nsec >>= -shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400126 else
John Stultzf726a692012-07-13 01:21:57 -0400127 tk->xtime_nsec <<= shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400128 }
John Stultzf726a692012-07-13 01:21:57 -0400129 tk->shift = clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200130
John Stultzf726a692012-07-13 01:21:57 -0400131 tk->ntp_error = 0;
132 tk->ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200133
134 /*
135 * The timekeeper keeps its own mult values for the currently
136 * active clocksource. These value will be adjusted via NTP
137 * to counteract clock drifting.
138 */
John Stultzf726a692012-07-13 01:21:57 -0400139 tk->mult = clock->mult;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200140}
john stultz85240702007-05-08 00:27:59 -0700141
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200142/* Timekeeper helper functions. */
Stephen Warren7b1f6202012-11-07 17:58:54 -0700143
144#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
145u32 (*arch_gettimeoffset)(void);
146
147u32 get_arch_timeoffset(void)
148{
149 if (likely(arch_gettimeoffset))
150 return arch_gettimeoffset();
151 return 0;
152}
153#else
154static inline u32 get_arch_timeoffset(void) { return 0; }
155#endif
156
John Stultzf726a692012-07-13 01:21:57 -0400157static inline s64 timekeeping_get_ns(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200158{
159 cycle_t cycle_now, cycle_delta;
160 struct clocksource *clock;
John Stultz1e75fa82012-07-13 01:21:53 -0400161 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200162
163 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400164 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200165 cycle_now = clock->read(clock);
166
167 /* calculate the delta since the last update_wall_time: */
168 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
169
John Stultzf726a692012-07-13 01:21:57 -0400170 nsec = cycle_delta * tk->mult + tk->xtime_nsec;
171 nsec >>= tk->shift;
John Stultzf2a5a082012-07-13 01:21:55 -0400172
Stephen Warren7b1f6202012-11-07 17:58:54 -0700173 /* If arch requires, add in get_arch_timeoffset() */
174 return nsec + get_arch_timeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200175}
176
John Stultzf726a692012-07-13 01:21:57 -0400177static inline s64 timekeeping_get_ns_raw(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200178{
179 cycle_t cycle_now, cycle_delta;
180 struct clocksource *clock;
John Stultzf2a5a082012-07-13 01:21:55 -0400181 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200182
183 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400184 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200185 cycle_now = clock->read(clock);
186
187 /* calculate the delta since the last update_wall_time: */
188 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
189
John Stultzf2a5a082012-07-13 01:21:55 -0400190 /* convert delta to nanoseconds. */
191 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
192
Stephen Warren7b1f6202012-11-07 17:58:54 -0700193 /* If arch requires, add in get_arch_timeoffset() */
194 return nsec + get_arch_timeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200195}
196
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200197static RAW_NOTIFIER_HEAD(pvclock_gtod_chain);
198
199static void update_pvclock_gtod(struct timekeeper *tk)
200{
201 raw_notifier_call_chain(&pvclock_gtod_chain, 0, tk);
202}
203
204/**
205 * pvclock_gtod_register_notifier - register a pvclock timedata update listener
206 *
207 * Must hold write on timekeeper.lock
208 */
209int pvclock_gtod_register_notifier(struct notifier_block *nb)
210{
211 struct timekeeper *tk = &timekeeper;
212 unsigned long flags;
213 int ret;
214
215 write_seqlock_irqsave(&tk->lock, flags);
216 ret = raw_notifier_chain_register(&pvclock_gtod_chain, nb);
217 /* update timekeeping data */
218 update_pvclock_gtod(tk);
219 write_sequnlock_irqrestore(&tk->lock, flags);
220
221 return ret;
222}
223EXPORT_SYMBOL_GPL(pvclock_gtod_register_notifier);
224
225/**
226 * pvclock_gtod_unregister_notifier - unregister a pvclock
227 * timedata update listener
228 *
229 * Must hold write on timekeeper.lock
230 */
231int pvclock_gtod_unregister_notifier(struct notifier_block *nb)
232{
233 struct timekeeper *tk = &timekeeper;
234 unsigned long flags;
235 int ret;
236
237 write_seqlock_irqsave(&tk->lock, flags);
238 ret = raw_notifier_chain_unregister(&pvclock_gtod_chain, nb);
239 write_sequnlock_irqrestore(&tk->lock, flags);
240
241 return ret;
242}
243EXPORT_SYMBOL_GPL(pvclock_gtod_unregister_notifier);
244
Thomas Gleixnercc062682011-11-13 23:19:49 +0000245/* must hold write on timekeeper.lock */
John Stultzf726a692012-07-13 01:21:57 -0400246static void timekeeping_update(struct timekeeper *tk, bool clearntp)
Thomas Gleixnercc062682011-11-13 23:19:49 +0000247{
248 if (clearntp) {
John Stultzf726a692012-07-13 01:21:57 -0400249 tk->ntp_error = 0;
Thomas Gleixnercc062682011-11-13 23:19:49 +0000250 ntp_clear();
251 }
John Stultz576094b2012-09-11 19:58:13 -0400252 update_vsyscall(tk);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200253 update_pvclock_gtod(tk);
Thomas Gleixnercc062682011-11-13 23:19:49 +0000254}
255
john stultz85240702007-05-08 00:27:59 -0700256/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200257 * timekeeping_forward_now - update clock to the current time
john stultz85240702007-05-08 00:27:59 -0700258 *
Roman Zippel9a055112008-08-20 16:37:28 -0700259 * Forward the current clock to update its state since the last call to
260 * update_wall_time(). This is useful before significant clock changes,
261 * as it avoids having to deal with this time offset explicitly.
john stultz85240702007-05-08 00:27:59 -0700262 */
John Stultzf726a692012-07-13 01:21:57 -0400263static void timekeeping_forward_now(struct timekeeper *tk)
john stultz85240702007-05-08 00:27:59 -0700264{
265 cycle_t cycle_now, cycle_delta;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200266 struct clocksource *clock;
Roman Zippel9a055112008-08-20 16:37:28 -0700267 s64 nsec;
john stultz85240702007-05-08 00:27:59 -0700268
John Stultzf726a692012-07-13 01:21:57 -0400269 clock = tk->clock;
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200270 cycle_now = clock->read(clock);
john stultz85240702007-05-08 00:27:59 -0700271 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
Roman Zippel9a055112008-08-20 16:37:28 -0700272 clock->cycle_last = cycle_now;
john stultz85240702007-05-08 00:27:59 -0700273
John Stultzf726a692012-07-13 01:21:57 -0400274 tk->xtime_nsec += cycle_delta * tk->mult;
john stultz7d275582009-05-01 13:10:26 -0700275
Stephen Warren7b1f6202012-11-07 17:58:54 -0700276 /* If arch requires, add in get_arch_timeoffset() */
277 tk->xtime_nsec += (u64)get_arch_timeoffset() << tk->shift;
john stultz7d275582009-05-01 13:10:26 -0700278
John Stultzf726a692012-07-13 01:21:57 -0400279 tk_normalize_xtime(tk);
John Stultz2d422442008-08-20 16:37:30 -0700280
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200281 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
John Stultzf726a692012-07-13 01:21:57 -0400282 timespec_add_ns(&tk->raw_time, nsec);
john stultz85240702007-05-08 00:27:59 -0700283}
284
285/**
Kees Cook1e817fb2012-11-19 10:26:16 -0800286 * __getnstimeofday - Returns the time of day in a timespec.
john stultz85240702007-05-08 00:27:59 -0700287 * @ts: pointer to the timespec to be set
288 *
Kees Cook1e817fb2012-11-19 10:26:16 -0800289 * Updates the time of day in the timespec.
290 * Returns 0 on success, or -ve when suspended (timespec will be undefined).
john stultz85240702007-05-08 00:27:59 -0700291 */
Kees Cook1e817fb2012-11-19 10:26:16 -0800292int __getnstimeofday(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700293{
John Stultz4e250fd2012-07-27 14:48:13 -0400294 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700295 unsigned long seq;
John Stultz1e75fa82012-07-13 01:21:53 -0400296 s64 nsecs = 0;
john stultz85240702007-05-08 00:27:59 -0700297
298 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400299 seq = read_seqbegin(&tk->lock);
john stultz85240702007-05-08 00:27:59 -0700300
John Stultz4e250fd2012-07-27 14:48:13 -0400301 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400302 nsecs = timekeeping_get_ns(tk);
john stultz85240702007-05-08 00:27:59 -0700303
John Stultz4e250fd2012-07-27 14:48:13 -0400304 } while (read_seqretry(&tk->lock, seq));
john stultz85240702007-05-08 00:27:59 -0700305
John Stultzec145ba2012-09-11 19:26:03 -0400306 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700307 timespec_add_ns(ts, nsecs);
Kees Cook1e817fb2012-11-19 10:26:16 -0800308
309 /*
310 * Do not bail out early, in case there were callers still using
311 * the value, even in the face of the WARN_ON.
312 */
313 if (unlikely(timekeeping_suspended))
314 return -EAGAIN;
315 return 0;
316}
317EXPORT_SYMBOL(__getnstimeofday);
318
319/**
320 * getnstimeofday - Returns the time of day in a timespec.
321 * @ts: pointer to the timespec to be set
322 *
323 * Returns the time of day in a timespec (WARN if suspended).
324 */
325void getnstimeofday(struct timespec *ts)
326{
327 WARN_ON(__getnstimeofday(ts));
john stultz85240702007-05-08 00:27:59 -0700328}
john stultz85240702007-05-08 00:27:59 -0700329EXPORT_SYMBOL(getnstimeofday);
330
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200331ktime_t ktime_get(void)
332{
John Stultz4e250fd2012-07-27 14:48:13 -0400333 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200334 unsigned int seq;
335 s64 secs, nsecs;
336
337 WARN_ON(timekeeping_suspended);
338
339 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400340 seq = read_seqbegin(&tk->lock);
341 secs = tk->xtime_sec + tk->wall_to_monotonic.tv_sec;
342 nsecs = timekeeping_get_ns(tk) + tk->wall_to_monotonic.tv_nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200343
John Stultz4e250fd2012-07-27 14:48:13 -0400344 } while (read_seqretry(&tk->lock, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200345 /*
346 * Use ktime_set/ktime_add_ns to create a proper ktime on
347 * 32-bit architectures without CONFIG_KTIME_SCALAR.
348 */
349 return ktime_add_ns(ktime_set(secs, 0), nsecs);
350}
351EXPORT_SYMBOL_GPL(ktime_get);
352
353/**
354 * ktime_get_ts - get the monotonic clock in timespec format
355 * @ts: pointer to timespec variable
356 *
357 * The function calculates the monotonic clock from the realtime
358 * clock and the wall_to_monotonic offset and stores the result
359 * in normalized timespec format in the variable pointed to by @ts.
360 */
361void ktime_get_ts(struct timespec *ts)
362{
John Stultz4e250fd2012-07-27 14:48:13 -0400363 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200364 struct timespec tomono;
John Stultzec145ba2012-09-11 19:26:03 -0400365 s64 nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200366 unsigned int seq;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200367
368 WARN_ON(timekeeping_suspended);
369
370 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400371 seq = read_seqbegin(&tk->lock);
372 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400373 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -0400374 tomono = tk->wall_to_monotonic;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200375
John Stultz4e250fd2012-07-27 14:48:13 -0400376 } while (read_seqretry(&tk->lock, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200377
John Stultzec145ba2012-09-11 19:26:03 -0400378 ts->tv_sec += tomono.tv_sec;
379 ts->tv_nsec = 0;
380 timespec_add_ns(ts, nsec + tomono.tv_nsec);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200381}
382EXPORT_SYMBOL_GPL(ktime_get_ts);
383
John Stultz1ff3c962012-05-03 12:43:40 -0700384
385/**
386 * timekeeping_clocktai - Returns the TAI time of day in a timespec
387 * @ts: pointer to the timespec to be set
388 *
389 * Returns the time of day in a timespec.
390 */
391void timekeeping_clocktai(struct timespec *ts)
392{
393 struct timekeeper *tk = &timekeeper;
394 unsigned long seq;
395 u64 nsecs;
396
397 WARN_ON(timekeeping_suspended);
398
399 do {
400 seq = read_seqbegin(&tk->lock);
401
402 ts->tv_sec = tk->xtime_sec + tk->tai_offset;
403 nsecs = timekeeping_get_ns(tk);
404
405 } while (read_seqretry(&tk->lock, seq));
406
407 ts->tv_nsec = 0;
408 timespec_add_ns(ts, nsecs);
409
410}
411EXPORT_SYMBOL(timekeeping_clocktai);
412
413
John Stultz90adda92013-01-21 17:00:11 -0800414/**
415 * ktime_get_clocktai - Returns the TAI time of day in a ktime
416 *
417 * Returns the time of day in a ktime.
418 */
419ktime_t ktime_get_clocktai(void)
420{
421 struct timespec ts;
422
423 timekeeping_clocktai(&ts);
424 return timespec_to_ktime(ts);
425}
426EXPORT_SYMBOL(ktime_get_clocktai);
427
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800428#ifdef CONFIG_NTP_PPS
429
430/**
431 * getnstime_raw_and_real - get day and raw monotonic time in timespec format
432 * @ts_raw: pointer to the timespec to be set to raw monotonic time
433 * @ts_real: pointer to the timespec to be set to the time of day
434 *
435 * This function reads both the time of day and raw monotonic time at the
436 * same time atomically and stores the resulting timestamps in timespec
437 * format.
438 */
439void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
440{
John Stultz4e250fd2012-07-27 14:48:13 -0400441 struct timekeeper *tk = &timekeeper;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800442 unsigned long seq;
443 s64 nsecs_raw, nsecs_real;
444
445 WARN_ON_ONCE(timekeeping_suspended);
446
447 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400448 seq = read_seqbegin(&tk->lock);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800449
John Stultz4e250fd2012-07-27 14:48:13 -0400450 *ts_raw = tk->raw_time;
451 ts_real->tv_sec = tk->xtime_sec;
John Stultz1e75fa82012-07-13 01:21:53 -0400452 ts_real->tv_nsec = 0;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800453
John Stultz4e250fd2012-07-27 14:48:13 -0400454 nsecs_raw = timekeeping_get_ns_raw(tk);
455 nsecs_real = timekeeping_get_ns(tk);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800456
John Stultz4e250fd2012-07-27 14:48:13 -0400457 } while (read_seqretry(&tk->lock, seq));
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800458
459 timespec_add_ns(ts_raw, nsecs_raw);
460 timespec_add_ns(ts_real, nsecs_real);
461}
462EXPORT_SYMBOL(getnstime_raw_and_real);
463
464#endif /* CONFIG_NTP_PPS */
465
john stultz85240702007-05-08 00:27:59 -0700466/**
467 * do_gettimeofday - Returns the time of day in a timeval
468 * @tv: pointer to the timeval to be set
469 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100470 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -0700471 */
472void do_gettimeofday(struct timeval *tv)
473{
474 struct timespec now;
475
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100476 getnstimeofday(&now);
john stultz85240702007-05-08 00:27:59 -0700477 tv->tv_sec = now.tv_sec;
478 tv->tv_usec = now.tv_nsec/1000;
479}
john stultz85240702007-05-08 00:27:59 -0700480EXPORT_SYMBOL(do_gettimeofday);
Richard Cochrand239f492012-04-27 10:12:42 +0200481
john stultz85240702007-05-08 00:27:59 -0700482/**
483 * do_settimeofday - Sets the time of day
484 * @tv: pointer to the timespec variable containing the new time
485 *
486 * Sets the time of day to the new time and update NTP and notify hrtimers
487 */
Richard Cochran1e6d7672011-02-01 13:50:58 +0000488int do_settimeofday(const struct timespec *tv)
john stultz85240702007-05-08 00:27:59 -0700489{
John Stultz4e250fd2012-07-27 14:48:13 -0400490 struct timekeeper *tk = &timekeeper;
John Stultz1e75fa82012-07-13 01:21:53 -0400491 struct timespec ts_delta, xt;
John Stultz92c1d3e2011-11-14 14:05:44 -0800492 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700493
John Stultzcee58482012-08-31 13:30:06 -0400494 if (!timespec_valid_strict(tv))
john stultz85240702007-05-08 00:27:59 -0700495 return -EINVAL;
496
John Stultz4e250fd2012-07-27 14:48:13 -0400497 write_seqlock_irqsave(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700498
John Stultz4e250fd2012-07-27 14:48:13 -0400499 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700500
John Stultz4e250fd2012-07-27 14:48:13 -0400501 xt = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400502 ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
503 ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
504
John Stultz4e250fd2012-07-27 14:48:13 -0400505 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, ts_delta));
john stultz85240702007-05-08 00:27:59 -0700506
John Stultz4e250fd2012-07-27 14:48:13 -0400507 tk_set_xtime(tk, tv);
John Stultz1e75fa82012-07-13 01:21:53 -0400508
John Stultz4e250fd2012-07-27 14:48:13 -0400509 timekeeping_update(tk, true);
john stultz85240702007-05-08 00:27:59 -0700510
John Stultz4e250fd2012-07-27 14:48:13 -0400511 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700512
513 /* signal hrtimers about time change */
514 clock_was_set();
515
516 return 0;
517}
john stultz85240702007-05-08 00:27:59 -0700518EXPORT_SYMBOL(do_settimeofday);
519
John Stultzc528f7c2011-02-01 13:52:17 +0000520/**
521 * timekeeping_inject_offset - Adds or subtracts from the current time.
522 * @tv: pointer to the timespec variable containing the offset
523 *
524 * Adds or subtracts an offset value from the current time.
525 */
526int timekeeping_inject_offset(struct timespec *ts)
527{
John Stultz4e250fd2012-07-27 14:48:13 -0400528 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800529 unsigned long flags;
John Stultz4e8b1452012-08-08 15:36:20 -0400530 struct timespec tmp;
531 int ret = 0;
John Stultzc528f7c2011-02-01 13:52:17 +0000532
533 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
534 return -EINVAL;
535
John Stultz4e250fd2012-07-27 14:48:13 -0400536 write_seqlock_irqsave(&tk->lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000537
John Stultz4e250fd2012-07-27 14:48:13 -0400538 timekeeping_forward_now(tk);
John Stultzc528f7c2011-02-01 13:52:17 +0000539
John Stultz4e8b1452012-08-08 15:36:20 -0400540 /* Make sure the proposed value is valid */
541 tmp = timespec_add(tk_xtime(tk), *ts);
John Stultzcee58482012-08-31 13:30:06 -0400542 if (!timespec_valid_strict(&tmp)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400543 ret = -EINVAL;
544 goto error;
545 }
John Stultz1e75fa82012-07-13 01:21:53 -0400546
John Stultz4e250fd2012-07-27 14:48:13 -0400547 tk_xtime_add(tk, ts);
548 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *ts));
John Stultzc528f7c2011-02-01 13:52:17 +0000549
John Stultz4e8b1452012-08-08 15:36:20 -0400550error: /* even if we error out, we forwarded the time, so call update */
John Stultz4e250fd2012-07-27 14:48:13 -0400551 timekeeping_update(tk, true);
John Stultzc528f7c2011-02-01 13:52:17 +0000552
John Stultz4e250fd2012-07-27 14:48:13 -0400553 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000554
555 /* signal hrtimers about time change */
556 clock_was_set();
557
John Stultz4e8b1452012-08-08 15:36:20 -0400558 return ret;
John Stultzc528f7c2011-02-01 13:52:17 +0000559}
560EXPORT_SYMBOL(timekeeping_inject_offset);
561
John Stultzcc244dd2012-05-03 12:30:07 -0700562
563/**
564 * timekeeping_get_tai_offset - Returns current TAI offset from UTC
565 *
566 */
567s32 timekeeping_get_tai_offset(void)
568{
569 struct timekeeper *tk = &timekeeper;
570 unsigned int seq;
571 s32 ret;
572
573 do {
574 seq = read_seqbegin(&tk->lock);
575 ret = tk->tai_offset;
576 } while (read_seqretry(&tk->lock, seq));
577
578 return ret;
579}
580
581/**
582 * __timekeeping_set_tai_offset - Lock free worker function
583 *
584 */
585void __timekeeping_set_tai_offset(struct timekeeper *tk, s32 tai_offset)
586{
587 tk->tai_offset = tai_offset;
John Stultz90adda92013-01-21 17:00:11 -0800588 tk->offs_tai = ktime_sub(tk->offs_real, ktime_set(tai_offset, 0));
John Stultzcc244dd2012-05-03 12:30:07 -0700589}
590
591/**
592 * timekeeping_set_tai_offset - Sets the current TAI offset from UTC
593 *
594 */
595void timekeeping_set_tai_offset(s32 tai_offset)
596{
597 struct timekeeper *tk = &timekeeper;
598 unsigned long flags;
599
600 write_seqlock_irqsave(&tk->lock, flags);
601 __timekeeping_set_tai_offset(tk, tai_offset);
602 write_sequnlock_irqrestore(&tk->lock, flags);
603}
604
john stultz85240702007-05-08 00:27:59 -0700605/**
606 * change_clocksource - Swaps clocksources if a new one is available
607 *
608 * Accumulates current time interval and initializes new clocksource
609 */
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200610static int change_clocksource(void *data)
john stultz85240702007-05-08 00:27:59 -0700611{
John Stultz4e250fd2012-07-27 14:48:13 -0400612 struct timekeeper *tk = &timekeeper;
Magnus Damm4614e6a2009-04-21 12:24:02 -0700613 struct clocksource *new, *old;
John Stultzf695cf92012-03-14 16:38:15 -0700614 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700615
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200616 new = (struct clocksource *) data;
john stultz85240702007-05-08 00:27:59 -0700617
John Stultz4e250fd2012-07-27 14:48:13 -0400618 write_seqlock_irqsave(&tk->lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -0700619
John Stultz4e250fd2012-07-27 14:48:13 -0400620 timekeeping_forward_now(tk);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200621 if (!new->enable || new->enable(new) == 0) {
John Stultz4e250fd2012-07-27 14:48:13 -0400622 old = tk->clock;
623 tk_setup_internals(tk, new);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200624 if (old->disable)
625 old->disable(old);
626 }
John Stultz4e250fd2012-07-27 14:48:13 -0400627 timekeeping_update(tk, true);
John Stultzf695cf92012-03-14 16:38:15 -0700628
John Stultz4e250fd2012-07-27 14:48:13 -0400629 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -0700630
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200631 return 0;
632}
john stultz85240702007-05-08 00:27:59 -0700633
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200634/**
635 * timekeeping_notify - Install a new clock source
636 * @clock: pointer to the clock source
637 *
638 * This function is called from clocksource.c after a new, better clock
639 * source has been registered. The caller holds the clocksource_mutex.
640 */
641void timekeeping_notify(struct clocksource *clock)
642{
John Stultz4e250fd2012-07-27 14:48:13 -0400643 struct timekeeper *tk = &timekeeper;
644
645 if (tk->clock == clock)
Magnus Damm4614e6a2009-04-21 12:24:02 -0700646 return;
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200647 stop_machine(change_clocksource, clock, NULL);
john stultz85240702007-05-08 00:27:59 -0700648 tick_clock_notify();
john stultz85240702007-05-08 00:27:59 -0700649}
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200650
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200651/**
652 * ktime_get_real - get the real (wall-) time in ktime_t format
653 *
654 * returns the time in ktime_t format
655 */
656ktime_t ktime_get_real(void)
657{
658 struct timespec now;
659
660 getnstimeofday(&now);
661
662 return timespec_to_ktime(now);
663}
664EXPORT_SYMBOL_GPL(ktime_get_real);
john stultz85240702007-05-08 00:27:59 -0700665
666/**
John Stultz2d422442008-08-20 16:37:30 -0700667 * getrawmonotonic - Returns the raw monotonic time in a timespec
668 * @ts: pointer to the timespec to be set
669 *
670 * Returns the raw monotonic time (completely un-modified by ntp)
671 */
672void getrawmonotonic(struct timespec *ts)
673{
John Stultz4e250fd2012-07-27 14:48:13 -0400674 struct timekeeper *tk = &timekeeper;
John Stultz2d422442008-08-20 16:37:30 -0700675 unsigned long seq;
676 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -0700677
678 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400679 seq = read_seqbegin(&tk->lock);
680 nsecs = timekeeping_get_ns_raw(tk);
681 *ts = tk->raw_time;
John Stultz2d422442008-08-20 16:37:30 -0700682
John Stultz4e250fd2012-07-27 14:48:13 -0400683 } while (read_seqretry(&tk->lock, seq));
John Stultz2d422442008-08-20 16:37:30 -0700684
685 timespec_add_ns(ts, nsecs);
686}
687EXPORT_SYMBOL(getrawmonotonic);
688
John Stultz2d422442008-08-20 16:37:30 -0700689/**
Li Zefancf4fc6c2008-02-08 04:19:24 -0800690 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -0700691 */
Li Zefancf4fc6c2008-02-08 04:19:24 -0800692int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -0700693{
John Stultz4e250fd2012-07-27 14:48:13 -0400694 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700695 unsigned long seq;
696 int ret;
697
698 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400699 seq = read_seqbegin(&tk->lock);
john stultz85240702007-05-08 00:27:59 -0700700
John Stultz4e250fd2012-07-27 14:48:13 -0400701 ret = tk->clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -0700702
John Stultz4e250fd2012-07-27 14:48:13 -0400703 } while (read_seqretry(&tk->lock, seq));
john stultz85240702007-05-08 00:27:59 -0700704
705 return ret;
706}
707
708/**
Jon Hunter98962462009-08-18 12:45:10 -0500709 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
Jon Hunter98962462009-08-18 12:45:10 -0500710 */
711u64 timekeeping_max_deferment(void)
712{
John Stultz4e250fd2012-07-27 14:48:13 -0400713 struct timekeeper *tk = &timekeeper;
John Stultz70471f22011-11-14 12:48:10 -0800714 unsigned long seq;
715 u64 ret;
John Stultz42e71e82012-07-13 01:21:51 -0400716
John Stultz70471f22011-11-14 12:48:10 -0800717 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400718 seq = read_seqbegin(&tk->lock);
John Stultz70471f22011-11-14 12:48:10 -0800719
John Stultz4e250fd2012-07-27 14:48:13 -0400720 ret = tk->clock->max_idle_ns;
John Stultz70471f22011-11-14 12:48:10 -0800721
John Stultz4e250fd2012-07-27 14:48:13 -0400722 } while (read_seqretry(&tk->lock, seq));
John Stultz70471f22011-11-14 12:48:10 -0800723
724 return ret;
Jon Hunter98962462009-08-18 12:45:10 -0500725}
726
727/**
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200728 * read_persistent_clock - Return time from the persistent clock.
john stultz85240702007-05-08 00:27:59 -0700729 *
730 * Weak dummy function for arches that do not yet support it.
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200731 * Reads the time from the battery backed persistent clock.
732 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
john stultz85240702007-05-08 00:27:59 -0700733 *
734 * XXX - Do be sure to remove it once all arches implement it.
735 */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200736void __attribute__((weak)) read_persistent_clock(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700737{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200738 ts->tv_sec = 0;
739 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700740}
741
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200742/**
743 * read_boot_clock - Return time of the system start.
744 *
745 * Weak dummy function for arches that do not yet support it.
746 * Function to read the exact time the system has been started.
747 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
748 *
749 * XXX - Do be sure to remove it once all arches implement it.
750 */
751void __attribute__((weak)) read_boot_clock(struct timespec *ts)
752{
753 ts->tv_sec = 0;
754 ts->tv_nsec = 0;
755}
756
john stultz85240702007-05-08 00:27:59 -0700757/*
758 * timekeeping_init - Initializes the clocksource and common timekeeping values
759 */
760void __init timekeeping_init(void)
761{
John Stultz4e250fd2012-07-27 14:48:13 -0400762 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200763 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700764 unsigned long flags;
John Stultz6d0ef902012-07-27 14:48:12 -0400765 struct timespec now, boot, tmp;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200766
767 read_persistent_clock(&now);
Feng Tang31ade302013-01-16 00:09:47 +0800768
John Stultzcee58482012-08-31 13:30:06 -0400769 if (!timespec_valid_strict(&now)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400770 pr_warn("WARNING: Persistent clock returned invalid value!\n"
771 " Check your CMOS/BIOS settings.\n");
772 now.tv_sec = 0;
773 now.tv_nsec = 0;
Feng Tang31ade302013-01-16 00:09:47 +0800774 } else if (now.tv_sec || now.tv_nsec)
775 persistent_clock_exist = true;
John Stultz4e8b1452012-08-08 15:36:20 -0400776
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200777 read_boot_clock(&boot);
John Stultzcee58482012-08-31 13:30:06 -0400778 if (!timespec_valid_strict(&boot)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400779 pr_warn("WARNING: Boot clock returned invalid value!\n"
780 " Check your CMOS/BIOS settings.\n");
781 boot.tv_sec = 0;
782 boot.tv_nsec = 0;
783 }
john stultz85240702007-05-08 00:27:59 -0700784
John Stultz4e250fd2012-07-27 14:48:13 -0400785 seqlock_init(&tk->lock);
John Stultz70471f22011-11-14 12:48:10 -0800786
Roman Zippel7dffa3c2008-05-01 04:34:41 -0700787 ntp_init();
john stultz85240702007-05-08 00:27:59 -0700788
John Stultz4e250fd2012-07-27 14:48:13 -0400789 write_seqlock_irqsave(&tk->lock, flags);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200790 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200791 if (clock->enable)
792 clock->enable(clock);
John Stultz4e250fd2012-07-27 14:48:13 -0400793 tk_setup_internals(tk, clock);
john stultz85240702007-05-08 00:27:59 -0700794
John Stultz4e250fd2012-07-27 14:48:13 -0400795 tk_set_xtime(tk, &now);
796 tk->raw_time.tv_sec = 0;
797 tk->raw_time.tv_nsec = 0;
John Stultz1e75fa82012-07-13 01:21:53 -0400798 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
John Stultz4e250fd2012-07-27 14:48:13 -0400799 boot = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400800
John Stultz6d0ef902012-07-27 14:48:12 -0400801 set_normalized_timespec(&tmp, -boot.tv_sec, -boot.tv_nsec);
John Stultz4e250fd2012-07-27 14:48:13 -0400802 tk_set_wall_to_mono(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400803
804 tmp.tv_sec = 0;
805 tmp.tv_nsec = 0;
John Stultz4e250fd2012-07-27 14:48:13 -0400806 tk_set_sleep_time(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400807
John Stultz4e250fd2012-07-27 14:48:13 -0400808 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700809}
810
john stultz85240702007-05-08 00:27:59 -0700811/* time in seconds when suspend began */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200812static struct timespec timekeeping_suspend_time;
john stultz85240702007-05-08 00:27:59 -0700813
814/**
John Stultz304529b2011-04-01 14:32:09 -0700815 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
816 * @delta: pointer to a timespec delta value
817 *
818 * Takes a timespec offset measuring a suspend interval and properly
819 * adds the sleep offset to the timekeeping variables.
820 */
John Stultzf726a692012-07-13 01:21:57 -0400821static void __timekeeping_inject_sleeptime(struct timekeeper *tk,
822 struct timespec *delta)
John Stultz304529b2011-04-01 14:32:09 -0700823{
John Stultzcee58482012-08-31 13:30:06 -0400824 if (!timespec_valid_strict(delta)) {
John Stultzcbaa5152011-07-20 15:42:55 -0700825 printk(KERN_WARNING "__timekeeping_inject_sleeptime: Invalid "
John Stultzcb5de2f2011-06-01 18:18:09 -0700826 "sleep delta value!\n");
827 return;
828 }
John Stultzf726a692012-07-13 01:21:57 -0400829 tk_xtime_add(tk, delta);
John Stultz6d0ef902012-07-27 14:48:12 -0400830 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *delta));
831 tk_set_sleep_time(tk, timespec_add(tk->total_sleep_time, *delta));
John Stultz304529b2011-04-01 14:32:09 -0700832}
833
John Stultz304529b2011-04-01 14:32:09 -0700834/**
835 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
836 * @delta: pointer to a timespec delta value
837 *
838 * This hook is for architectures that cannot support read_persistent_clock
839 * because their RTC/persistent clock is only accessible when irqs are enabled.
840 *
841 * This function should only be called by rtc_resume(), and allows
842 * a suspend offset to be injected into the timekeeping values.
843 */
844void timekeeping_inject_sleeptime(struct timespec *delta)
845{
John Stultz4e250fd2012-07-27 14:48:13 -0400846 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800847 unsigned long flags;
John Stultz304529b2011-04-01 14:32:09 -0700848
Feng Tang31ade302013-01-16 00:09:47 +0800849 /*
850 * Make sure we don't set the clock twice, as timekeeping_resume()
851 * already did it
852 */
853 if (has_persistent_clock())
John Stultz304529b2011-04-01 14:32:09 -0700854 return;
855
John Stultz4e250fd2012-07-27 14:48:13 -0400856 write_seqlock_irqsave(&tk->lock, flags);
John Stultz70471f22011-11-14 12:48:10 -0800857
John Stultz4e250fd2012-07-27 14:48:13 -0400858 timekeeping_forward_now(tk);
John Stultz304529b2011-04-01 14:32:09 -0700859
John Stultz4e250fd2012-07-27 14:48:13 -0400860 __timekeeping_inject_sleeptime(tk, delta);
John Stultz304529b2011-04-01 14:32:09 -0700861
John Stultz4e250fd2012-07-27 14:48:13 -0400862 timekeeping_update(tk, true);
John Stultz304529b2011-04-01 14:32:09 -0700863
John Stultz4e250fd2012-07-27 14:48:13 -0400864 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultz304529b2011-04-01 14:32:09 -0700865
866 /* signal hrtimers about time change */
867 clock_was_set();
868}
869
John Stultz304529b2011-04-01 14:32:09 -0700870/**
john stultz85240702007-05-08 00:27:59 -0700871 * timekeeping_resume - Resumes the generic timekeeping subsystem.
john stultz85240702007-05-08 00:27:59 -0700872 *
873 * This is for the generic clocksource timekeeping.
874 * xtime/wall_to_monotonic/jiffies/etc are
875 * still managed by arch specific suspend/resume code.
876 */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100877static void timekeeping_resume(void)
john stultz85240702007-05-08 00:27:59 -0700878{
John Stultz4e250fd2012-07-27 14:48:13 -0400879 struct timekeeper *tk = &timekeeper;
Feng Tange445cf12013-03-12 11:56:48 +0800880 struct clocksource *clock = tk->clock;
John Stultz92c1d3e2011-11-14 14:05:44 -0800881 unsigned long flags;
Feng Tange445cf12013-03-12 11:56:48 +0800882 struct timespec ts_new, ts_delta;
883 cycle_t cycle_now, cycle_delta;
884 bool suspendtime_found = false;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200885
Feng Tange445cf12013-03-12 11:56:48 +0800886 read_persistent_clock(&ts_new);
john stultz85240702007-05-08 00:27:59 -0700887
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +0200888 clockevents_resume();
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +0200889 clocksource_resume();
890
John Stultz4e250fd2012-07-27 14:48:13 -0400891 write_seqlock_irqsave(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700892
Feng Tange445cf12013-03-12 11:56:48 +0800893 /*
894 * After system resumes, we need to calculate the suspended time and
895 * compensate it for the OS time. There are 3 sources that could be
896 * used: Nonstop clocksource during suspend, persistent clock and rtc
897 * device.
898 *
899 * One specific platform may have 1 or 2 or all of them, and the
900 * preference will be:
901 * suspend-nonstop clocksource -> persistent clock -> rtc
902 * The less preferred source will only be tried if there is no better
903 * usable source. The rtc part is handled separately in rtc core code.
904 */
905 cycle_now = clock->read(clock);
906 if ((clock->flags & CLOCK_SOURCE_SUSPEND_NONSTOP) &&
907 cycle_now > clock->cycle_last) {
908 u64 num, max = ULLONG_MAX;
909 u32 mult = clock->mult;
910 u32 shift = clock->shift;
911 s64 nsec = 0;
912
913 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
914
915 /*
916 * "cycle_delta * mutl" may cause 64 bits overflow, if the
917 * suspended time is too long. In that case we need do the
918 * 64 bits math carefully
919 */
920 do_div(max, mult);
921 if (cycle_delta > max) {
922 num = div64_u64(cycle_delta, max);
923 nsec = (((u64) max * mult) >> shift) * num;
924 cycle_delta -= num * max;
925 }
926 nsec += ((u64) cycle_delta * mult) >> shift;
927
928 ts_delta = ns_to_timespec(nsec);
929 suspendtime_found = true;
930 } else if (timespec_compare(&ts_new, &timekeeping_suspend_time) > 0) {
931 ts_delta = timespec_sub(ts_new, timekeeping_suspend_time);
932 suspendtime_found = true;
john stultz85240702007-05-08 00:27:59 -0700933 }
Feng Tange445cf12013-03-12 11:56:48 +0800934
935 if (suspendtime_found)
936 __timekeeping_inject_sleeptime(tk, &ts_delta);
937
938 /* Re-base the last cycle value */
939 clock->cycle_last = cycle_now;
John Stultz4e250fd2012-07-27 14:48:13 -0400940 tk->ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -0700941 timekeeping_suspended = 0;
John Stultz4e250fd2012-07-27 14:48:13 -0400942 timekeeping_update(tk, false);
943 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700944
945 touch_softlockup_watchdog();
946
947 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
948
949 /* Resume hrtimers */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200950 hrtimers_resume();
john stultz85240702007-05-08 00:27:59 -0700951}
952
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100953static int timekeeping_suspend(void)
john stultz85240702007-05-08 00:27:59 -0700954{
John Stultz4e250fd2012-07-27 14:48:13 -0400955 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800956 unsigned long flags;
John Stultzcb332172011-05-31 22:53:23 -0700957 struct timespec delta, delta_delta;
958 static struct timespec old_delta;
john stultz85240702007-05-08 00:27:59 -0700959
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200960 read_persistent_clock(&timekeeping_suspend_time);
Thomas Gleixner3be90952007-09-16 15:36:43 +0200961
John Stultz4e250fd2012-07-27 14:48:13 -0400962 write_seqlock_irqsave(&tk->lock, flags);
963 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700964 timekeeping_suspended = 1;
John Stultzcb332172011-05-31 22:53:23 -0700965
966 /*
967 * To avoid drift caused by repeated suspend/resumes,
968 * which each can add ~1 second drift error,
969 * try to compensate so the difference in system time
970 * and persistent_clock time stays close to constant.
971 */
John Stultz4e250fd2012-07-27 14:48:13 -0400972 delta = timespec_sub(tk_xtime(tk), timekeeping_suspend_time);
John Stultzcb332172011-05-31 22:53:23 -0700973 delta_delta = timespec_sub(delta, old_delta);
974 if (abs(delta_delta.tv_sec) >= 2) {
975 /*
976 * if delta_delta is too large, assume time correction
977 * has occured and set old_delta to the current delta.
978 */
979 old_delta = delta;
980 } else {
981 /* Otherwise try to adjust old_system to compensate */
982 timekeeping_suspend_time =
983 timespec_add(timekeeping_suspend_time, delta_delta);
984 }
John Stultz4e250fd2012-07-27 14:48:13 -0400985 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700986
987 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
Magnus Dammc54a42b2010-02-02 14:41:41 -0800988 clocksource_suspend();
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +0200989 clockevents_suspend();
john stultz85240702007-05-08 00:27:59 -0700990
991 return 0;
992}
993
994/* sysfs resume/suspend bits for timekeeping */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100995static struct syscore_ops timekeeping_syscore_ops = {
john stultz85240702007-05-08 00:27:59 -0700996 .resume = timekeeping_resume,
997 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -0700998};
999
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001000static int __init timekeeping_init_ops(void)
john stultz85240702007-05-08 00:27:59 -07001001{
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001002 register_syscore_ops(&timekeeping_syscore_ops);
1003 return 0;
john stultz85240702007-05-08 00:27:59 -07001004}
1005
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001006device_initcall(timekeeping_init_ops);
john stultz85240702007-05-08 00:27:59 -07001007
1008/*
1009 * If the error is already larger, we look ahead even further
1010 * to compensate for late or lost adjustments.
1011 */
John Stultzf726a692012-07-13 01:21:57 -04001012static __always_inline int timekeeping_bigadjust(struct timekeeper *tk,
1013 s64 error, s64 *interval,
john stultz85240702007-05-08 00:27:59 -07001014 s64 *offset)
1015{
1016 s64 tick_error, i;
1017 u32 look_ahead, adj;
1018 s32 error2, mult;
1019
1020 /*
1021 * Use the current error value to determine how much to look ahead.
1022 * The larger the error the slower we adjust for it to avoid problems
1023 * with losing too many ticks, otherwise we would overadjust and
1024 * produce an even larger error. The smaller the adjustment the
1025 * faster we try to adjust for it, as lost ticks can do less harm
Li Zefan3eb05672008-02-08 04:19:25 -08001026 * here. This is tuned so that an error of about 1 msec is adjusted
john stultz85240702007-05-08 00:27:59 -07001027 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
1028 */
John Stultzf726a692012-07-13 01:21:57 -04001029 error2 = tk->ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
john stultz85240702007-05-08 00:27:59 -07001030 error2 = abs(error2);
1031 for (look_ahead = 0; error2 > 0; look_ahead++)
1032 error2 >>= 2;
1033
1034 /*
1035 * Now calculate the error in (1 << look_ahead) ticks, but first
1036 * remove the single look ahead already included in the error.
1037 */
John Stultzf726a692012-07-13 01:21:57 -04001038 tick_error = ntp_tick_length() >> (tk->ntp_error_shift + 1);
1039 tick_error -= tk->xtime_interval >> 1;
john stultz85240702007-05-08 00:27:59 -07001040 error = ((error - tick_error) >> look_ahead) + tick_error;
1041
1042 /* Finally calculate the adjustment shift value. */
1043 i = *interval;
1044 mult = 1;
1045 if (error < 0) {
1046 error = -error;
1047 *interval = -*interval;
1048 *offset = -*offset;
1049 mult = -1;
1050 }
1051 for (adj = 0; error > i; adj++)
1052 error >>= 1;
1053
1054 *interval <<= adj;
1055 *offset <<= adj;
1056 return mult << adj;
1057}
1058
1059/*
1060 * Adjust the multiplier to reduce the error value,
1061 * this is optimized for the most common adjustments of -1,0,1,
1062 * for other values we can do a bit more work.
1063 */
John Stultzf726a692012-07-13 01:21:57 -04001064static void timekeeping_adjust(struct timekeeper *tk, s64 offset)
john stultz85240702007-05-08 00:27:59 -07001065{
John Stultzf726a692012-07-13 01:21:57 -04001066 s64 error, interval = tk->cycle_interval;
john stultz85240702007-05-08 00:27:59 -07001067 int adj;
1068
John Stultzc2bc1112011-10-27 18:12:42 -07001069 /*
Jim Cromie88b28ad2012-03-14 21:28:56 -06001070 * The point of this is to check if the error is greater than half
John Stultzc2bc1112011-10-27 18:12:42 -07001071 * an interval.
1072 *
1073 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
1074 *
1075 * Note we subtract one in the shift, so that error is really error*2.
John Stultz3f86f282011-10-27 17:41:17 -07001076 * This "saves" dividing(shifting) interval twice, but keeps the
1077 * (error > interval) comparison as still measuring if error is
Jim Cromie88b28ad2012-03-14 21:28:56 -06001078 * larger than half an interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001079 *
John Stultz3f86f282011-10-27 17:41:17 -07001080 * Note: It does not "save" on aggravation when reading the code.
John Stultzc2bc1112011-10-27 18:12:42 -07001081 */
John Stultzf726a692012-07-13 01:21:57 -04001082 error = tk->ntp_error >> (tk->ntp_error_shift - 1);
john stultz85240702007-05-08 00:27:59 -07001083 if (error > interval) {
John Stultzc2bc1112011-10-27 18:12:42 -07001084 /*
1085 * We now divide error by 4(via shift), which checks if
Jim Cromie88b28ad2012-03-14 21:28:56 -06001086 * the error is greater than twice the interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001087 * If it is greater, we need a bigadjust, if its smaller,
1088 * we can adjust by 1.
1089 */
john stultz85240702007-05-08 00:27:59 -07001090 error >>= 2;
John Stultzc2bc1112011-10-27 18:12:42 -07001091 /*
1092 * XXX - In update_wall_time, we round up to the next
1093 * nanosecond, and store the amount rounded up into
1094 * the error. This causes the likely below to be unlikely.
1095 *
John Stultz3f86f282011-10-27 17:41:17 -07001096 * The proper fix is to avoid rounding up by using
John Stultz4e250fd2012-07-27 14:48:13 -04001097 * the high precision tk->xtime_nsec instead of
John Stultzc2bc1112011-10-27 18:12:42 -07001098 * xtime.tv_nsec everywhere. Fixing this will take some
1099 * time.
1100 */
john stultz85240702007-05-08 00:27:59 -07001101 if (likely(error <= interval))
1102 adj = 1;
1103 else
Ingo Molnar1d17d172012-08-04 21:21:14 +02001104 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1105 } else {
1106 if (error < -interval) {
1107 /* See comment above, this is just switched for the negative */
1108 error >>= 2;
1109 if (likely(error >= -interval)) {
1110 adj = -1;
1111 interval = -interval;
1112 offset = -offset;
1113 } else {
1114 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1115 }
1116 } else {
1117 goto out_adjust;
1118 }
1119 }
john stultz85240702007-05-08 00:27:59 -07001120
John Stultzf726a692012-07-13 01:21:57 -04001121 if (unlikely(tk->clock->maxadj &&
1122 (tk->mult + adj > tk->clock->mult + tk->clock->maxadj))) {
John Stultze919cfd2012-03-22 19:14:46 -07001123 printk_once(KERN_WARNING
1124 "Adjusting %s more than 11%% (%ld vs %ld)\n",
John Stultzf726a692012-07-13 01:21:57 -04001125 tk->clock->name, (long)tk->mult + adj,
1126 (long)tk->clock->mult + tk->clock->maxadj);
John Stultze919cfd2012-03-22 19:14:46 -07001127 }
John Stultzc2bc1112011-10-27 18:12:42 -07001128 /*
1129 * So the following can be confusing.
1130 *
1131 * To keep things simple, lets assume adj == 1 for now.
1132 *
1133 * When adj != 1, remember that the interval and offset values
1134 * have been appropriately scaled so the math is the same.
1135 *
1136 * The basic idea here is that we're increasing the multiplier
1137 * by one, this causes the xtime_interval to be incremented by
1138 * one cycle_interval. This is because:
1139 * xtime_interval = cycle_interval * mult
1140 * So if mult is being incremented by one:
1141 * xtime_interval = cycle_interval * (mult + 1)
1142 * Its the same as:
1143 * xtime_interval = (cycle_interval * mult) + cycle_interval
1144 * Which can be shortened to:
1145 * xtime_interval += cycle_interval
1146 *
1147 * So offset stores the non-accumulated cycles. Thus the current
1148 * time (in shifted nanoseconds) is:
1149 * now = (offset * adj) + xtime_nsec
1150 * Now, even though we're adjusting the clock frequency, we have
1151 * to keep time consistent. In other words, we can't jump back
1152 * in time, and we also want to avoid jumping forward in time.
1153 *
1154 * So given the same offset value, we need the time to be the same
1155 * both before and after the freq adjustment.
1156 * now = (offset * adj_1) + xtime_nsec_1
1157 * now = (offset * adj_2) + xtime_nsec_2
1158 * So:
1159 * (offset * adj_1) + xtime_nsec_1 =
1160 * (offset * adj_2) + xtime_nsec_2
1161 * And we know:
1162 * adj_2 = adj_1 + 1
1163 * So:
1164 * (offset * adj_1) + xtime_nsec_1 =
1165 * (offset * (adj_1+1)) + xtime_nsec_2
1166 * (offset * adj_1) + xtime_nsec_1 =
1167 * (offset * adj_1) + offset + xtime_nsec_2
1168 * Canceling the sides:
1169 * xtime_nsec_1 = offset + xtime_nsec_2
1170 * Which gives us:
1171 * xtime_nsec_2 = xtime_nsec_1 - offset
1172 * Which simplfies to:
1173 * xtime_nsec -= offset
1174 *
1175 * XXX - TODO: Doc ntp_error calculation.
1176 */
John Stultzf726a692012-07-13 01:21:57 -04001177 tk->mult += adj;
1178 tk->xtime_interval += interval;
1179 tk->xtime_nsec -= offset;
1180 tk->ntp_error -= (interval - offset) << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001181
Ingo Molnar1d17d172012-08-04 21:21:14 +02001182out_adjust:
John Stultz2a8c0882012-07-13 01:21:56 -04001183 /*
1184 * It may be possible that when we entered this function, xtime_nsec
1185 * was very small. Further, if we're slightly speeding the clocksource
1186 * in the code above, its possible the required corrective factor to
1187 * xtime_nsec could cause it to underflow.
1188 *
1189 * Now, since we already accumulated the second, cannot simply roll
1190 * the accumulated second back, since the NTP subsystem has been
1191 * notified via second_overflow. So instead we push xtime_nsec forward
1192 * by the amount we underflowed, and add that amount into the error.
1193 *
1194 * We'll correct this error next time through this function, when
1195 * xtime_nsec is not as small.
1196 */
John Stultzf726a692012-07-13 01:21:57 -04001197 if (unlikely((s64)tk->xtime_nsec < 0)) {
1198 s64 neg = -(s64)tk->xtime_nsec;
1199 tk->xtime_nsec = 0;
1200 tk->ntp_error += neg << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001201 }
1202
john stultz85240702007-05-08 00:27:59 -07001203}
1204
1205/**
John Stultz1f4f9482012-07-13 01:21:54 -04001206 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
1207 *
1208 * Helper function that accumulates a the nsecs greater then a second
1209 * from the xtime_nsec field to the xtime_secs field.
1210 * It also calls into the NTP code to handle leapsecond processing.
1211 *
1212 */
1213static inline void accumulate_nsecs_to_secs(struct timekeeper *tk)
1214{
1215 u64 nsecps = (u64)NSEC_PER_SEC << tk->shift;
1216
1217 while (tk->xtime_nsec >= nsecps) {
1218 int leap;
1219
1220 tk->xtime_nsec -= nsecps;
1221 tk->xtime_sec++;
1222
1223 /* Figure out if its a leap sec and apply if needed */
1224 leap = second_overflow(tk->xtime_sec);
John Stultz6d0ef902012-07-27 14:48:12 -04001225 if (unlikely(leap)) {
1226 struct timespec ts;
John Stultz1f4f9482012-07-13 01:21:54 -04001227
John Stultz6d0ef902012-07-27 14:48:12 -04001228 tk->xtime_sec += leap;
1229
1230 ts.tv_sec = leap;
1231 ts.tv_nsec = 0;
1232 tk_set_wall_to_mono(tk,
1233 timespec_sub(tk->wall_to_monotonic, ts));
1234
John Stultzcc244dd2012-05-03 12:30:07 -07001235 __timekeeping_set_tai_offset(tk, tk->tai_offset - leap);
1236
John Stultz6d0ef902012-07-27 14:48:12 -04001237 clock_was_set_delayed();
1238 }
John Stultz1f4f9482012-07-13 01:21:54 -04001239 }
1240}
1241
John Stultz1f4f9482012-07-13 01:21:54 -04001242/**
john stultza092ff02009-10-02 16:17:53 -07001243 * logarithmic_accumulation - shifted accumulation of cycles
1244 *
1245 * This functions accumulates a shifted interval of cycles into
1246 * into a shifted interval nanoseconds. Allows for O(log) accumulation
1247 * loop.
1248 *
1249 * Returns the unconsumed cycles.
1250 */
John Stultzf726a692012-07-13 01:21:57 -04001251static cycle_t logarithmic_accumulation(struct timekeeper *tk, cycle_t offset,
1252 u32 shift)
john stultza092ff02009-10-02 16:17:53 -07001253{
Thomas Gleixner23a95372013-02-21 22:51:36 +00001254 cycle_t interval = tk->cycle_interval << shift;
Jason Wesseldeda2e82010-08-09 14:20:09 -07001255 u64 raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001256
John Stultzf726a692012-07-13 01:21:57 -04001257 /* If the offset is smaller then a shifted interval, do nothing */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001258 if (offset < interval)
john stultza092ff02009-10-02 16:17:53 -07001259 return offset;
1260
1261 /* Accumulate one shifted interval */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001262 offset -= interval;
1263 tk->clock->cycle_last += interval;
john stultza092ff02009-10-02 16:17:53 -07001264
John Stultzf726a692012-07-13 01:21:57 -04001265 tk->xtime_nsec += tk->xtime_interval << shift;
1266 accumulate_nsecs_to_secs(tk);
john stultza092ff02009-10-02 16:17:53 -07001267
Jason Wesseldeda2e82010-08-09 14:20:09 -07001268 /* Accumulate raw time */
Dan Carpenter5b3900c2012-10-09 10:18:23 +03001269 raw_nsecs = (u64)tk->raw_interval << shift;
John Stultzf726a692012-07-13 01:21:57 -04001270 raw_nsecs += tk->raw_time.tv_nsec;
John Stultzc7dcf872010-08-13 11:30:58 -07001271 if (raw_nsecs >= NSEC_PER_SEC) {
1272 u64 raw_secs = raw_nsecs;
1273 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
John Stultzf726a692012-07-13 01:21:57 -04001274 tk->raw_time.tv_sec += raw_secs;
john stultza092ff02009-10-02 16:17:53 -07001275 }
John Stultzf726a692012-07-13 01:21:57 -04001276 tk->raw_time.tv_nsec = raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001277
1278 /* Accumulate error between NTP and clock interval */
John Stultzf726a692012-07-13 01:21:57 -04001279 tk->ntp_error += ntp_tick_length() << shift;
1280 tk->ntp_error -= (tk->xtime_interval + tk->xtime_remainder) <<
1281 (tk->ntp_error_shift + shift);
john stultza092ff02009-10-02 16:17:53 -07001282
1283 return offset;
1284}
1285
John Stultz92bb1fc2012-09-04 15:38:12 -04001286#ifdef CONFIG_GENERIC_TIME_VSYSCALL_OLD
1287static inline void old_vsyscall_fixup(struct timekeeper *tk)
1288{
1289 s64 remainder;
1290
1291 /*
1292 * Store only full nanoseconds into xtime_nsec after rounding
1293 * it up and add the remainder to the error difference.
1294 * XXX - This is necessary to avoid small 1ns inconsistnecies caused
1295 * by truncating the remainder in vsyscalls. However, it causes
1296 * additional work to be done in timekeeping_adjust(). Once
1297 * the vsyscall implementations are converted to use xtime_nsec
1298 * (shifted nanoseconds), and CONFIG_GENERIC_TIME_VSYSCALL_OLD
1299 * users are removed, this can be killed.
1300 */
1301 remainder = tk->xtime_nsec & ((1ULL << tk->shift) - 1);
1302 tk->xtime_nsec -= remainder;
1303 tk->xtime_nsec += 1ULL << tk->shift;
1304 tk->ntp_error += remainder << tk->ntp_error_shift;
1305
1306}
1307#else
1308#define old_vsyscall_fixup(tk)
1309#endif
1310
1311
1312
john stultz85240702007-05-08 00:27:59 -07001313/**
1314 * update_wall_time - Uses the current clocksource to increment the wall time
1315 *
john stultz85240702007-05-08 00:27:59 -07001316 */
Torben Hohn871cf1e2011-01-27 15:58:55 +01001317static void update_wall_time(void)
john stultz85240702007-05-08 00:27:59 -07001318{
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001319 struct clocksource *clock;
John Stultz4e250fd2012-07-27 14:48:13 -04001320 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -07001321 cycle_t offset;
john stultza092ff02009-10-02 16:17:53 -07001322 int shift = 0, maxshift;
John Stultz70471f22011-11-14 12:48:10 -08001323 unsigned long flags;
1324
John Stultz4e250fd2012-07-27 14:48:13 -04001325 write_seqlock_irqsave(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -07001326
1327 /* Make sure we're fully resumed: */
1328 if (unlikely(timekeeping_suspended))
John Stultz70471f22011-11-14 12:48:10 -08001329 goto out;
john stultz85240702007-05-08 00:27:59 -07001330
John Stultz4e250fd2012-07-27 14:48:13 -04001331 clock = tk->clock;
John Stultz592913e2010-07-13 17:56:20 -07001332
1333#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
John Stultz4e250fd2012-07-27 14:48:13 -04001334 offset = tk->cycle_interval;
John Stultz592913e2010-07-13 17:56:20 -07001335#else
1336 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
john stultz85240702007-05-08 00:27:59 -07001337#endif
john stultz85240702007-05-08 00:27:59 -07001338
John Stultzbf2ac312012-08-21 20:30:49 -04001339 /* Check if there's really nothing to do */
1340 if (offset < tk->cycle_interval)
1341 goto out;
1342
john stultza092ff02009-10-02 16:17:53 -07001343 /*
1344 * With NO_HZ we may have to accumulate many cycle_intervals
1345 * (think "ticks") worth of time at once. To do this efficiently,
1346 * we calculate the largest doubling multiple of cycle_intervals
Jim Cromie88b28ad2012-03-14 21:28:56 -06001347 * that is smaller than the offset. We then accumulate that
john stultza092ff02009-10-02 16:17:53 -07001348 * chunk in one go, and then try to consume the next smaller
1349 * doubled multiple.
john stultz85240702007-05-08 00:27:59 -07001350 */
John Stultz4e250fd2012-07-27 14:48:13 -04001351 shift = ilog2(offset) - ilog2(tk->cycle_interval);
john stultza092ff02009-10-02 16:17:53 -07001352 shift = max(0, shift);
Jim Cromie88b28ad2012-03-14 21:28:56 -06001353 /* Bound shift to one less than what overflows tick_length */
John Stultzea7cf492011-11-14 13:18:07 -08001354 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
john stultza092ff02009-10-02 16:17:53 -07001355 shift = min(shift, maxshift);
John Stultz4e250fd2012-07-27 14:48:13 -04001356 while (offset >= tk->cycle_interval) {
1357 offset = logarithmic_accumulation(tk, offset, shift);
1358 if (offset < tk->cycle_interval<<shift)
John Stultz830ec042010-03-18 14:47:30 -07001359 shift--;
john stultz85240702007-05-08 00:27:59 -07001360 }
1361
1362 /* correct the clock when NTP error is too big */
John Stultz4e250fd2012-07-27 14:48:13 -04001363 timekeeping_adjust(tk, offset);
john stultz85240702007-05-08 00:27:59 -07001364
John Stultz6a867a32010-04-06 14:30:51 -07001365 /*
John Stultz92bb1fc2012-09-04 15:38:12 -04001366 * XXX This can be killed once everyone converts
1367 * to the new update_vsyscall.
1368 */
1369 old_vsyscall_fixup(tk);
john stultz85240702007-05-08 00:27:59 -07001370
John Stultz6a867a32010-04-06 14:30:51 -07001371 /*
1372 * Finally, make sure that after the rounding
John Stultz1e75fa82012-07-13 01:21:53 -04001373 * xtime_nsec isn't larger than NSEC_PER_SEC
John Stultz6a867a32010-04-06 14:30:51 -07001374 */
John Stultz4e250fd2012-07-27 14:48:13 -04001375 accumulate_nsecs_to_secs(tk);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001376
John Stultz4e250fd2012-07-27 14:48:13 -04001377 timekeeping_update(tk, false);
John Stultz70471f22011-11-14 12:48:10 -08001378
1379out:
John Stultz4e250fd2012-07-27 14:48:13 -04001380 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultz70471f22011-11-14 12:48:10 -08001381
john stultz85240702007-05-08 00:27:59 -07001382}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001383
1384/**
1385 * getboottime - Return the real time of system boot.
1386 * @ts: pointer to the timespec to be set
1387 *
John Stultzabb3a4e2011-02-14 17:52:09 -08001388 * Returns the wall-time of boot in a timespec.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001389 *
1390 * This is based on the wall_to_monotonic offset and the total suspend
1391 * time. Calls to settimeofday will affect the value returned (which
1392 * basically means that however wrong your real time clock is at boot time,
1393 * you get the right time here).
1394 */
1395void getboottime(struct timespec *ts)
1396{
John Stultz4e250fd2012-07-27 14:48:13 -04001397 struct timekeeper *tk = &timekeeper;
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001398 struct timespec boottime = {
John Stultz4e250fd2012-07-27 14:48:13 -04001399 .tv_sec = tk->wall_to_monotonic.tv_sec +
1400 tk->total_sleep_time.tv_sec,
1401 .tv_nsec = tk->wall_to_monotonic.tv_nsec +
1402 tk->total_sleep_time.tv_nsec
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001403 };
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001404
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001405 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001406}
Jason Wangc93d89f2010-01-27 19:13:40 +08001407EXPORT_SYMBOL_GPL(getboottime);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001408
John Stultzabb3a4e2011-02-14 17:52:09 -08001409/**
1410 * get_monotonic_boottime - Returns monotonic time since boot
1411 * @ts: pointer to the timespec to be set
1412 *
1413 * Returns the monotonic time since boot in a timespec.
1414 *
1415 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1416 * includes the time spent in suspend.
1417 */
1418void get_monotonic_boottime(struct timespec *ts)
1419{
John Stultz4e250fd2012-07-27 14:48:13 -04001420 struct timekeeper *tk = &timekeeper;
John Stultzabb3a4e2011-02-14 17:52:09 -08001421 struct timespec tomono, sleep;
John Stultzec145ba2012-09-11 19:26:03 -04001422 s64 nsec;
John Stultzabb3a4e2011-02-14 17:52:09 -08001423 unsigned int seq;
John Stultzabb3a4e2011-02-14 17:52:09 -08001424
1425 WARN_ON(timekeeping_suspended);
1426
1427 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001428 seq = read_seqbegin(&tk->lock);
1429 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -04001430 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -04001431 tomono = tk->wall_to_monotonic;
1432 sleep = tk->total_sleep_time;
John Stultzabb3a4e2011-02-14 17:52:09 -08001433
John Stultz4e250fd2012-07-27 14:48:13 -04001434 } while (read_seqretry(&tk->lock, seq));
John Stultzabb3a4e2011-02-14 17:52:09 -08001435
John Stultzec145ba2012-09-11 19:26:03 -04001436 ts->tv_sec += tomono.tv_sec + sleep.tv_sec;
1437 ts->tv_nsec = 0;
1438 timespec_add_ns(ts, nsec + tomono.tv_nsec + sleep.tv_nsec);
John Stultzabb3a4e2011-02-14 17:52:09 -08001439}
1440EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1441
1442/**
1443 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1444 *
1445 * Returns the monotonic time since boot in a ktime
1446 *
1447 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1448 * includes the time spent in suspend.
1449 */
1450ktime_t ktime_get_boottime(void)
1451{
1452 struct timespec ts;
1453
1454 get_monotonic_boottime(&ts);
1455 return timespec_to_ktime(ts);
1456}
1457EXPORT_SYMBOL_GPL(ktime_get_boottime);
1458
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001459/**
1460 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1461 * @ts: pointer to the timespec to be converted
1462 */
1463void monotonic_to_bootbased(struct timespec *ts)
1464{
John Stultz4e250fd2012-07-27 14:48:13 -04001465 struct timekeeper *tk = &timekeeper;
1466
1467 *ts = timespec_add(*ts, tk->total_sleep_time);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001468}
Jason Wangc93d89f2010-01-27 19:13:40 +08001469EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
john stultz2c6b47d2007-07-24 17:47:43 -07001470
john stultz17c38b72007-07-24 18:38:34 -07001471unsigned long get_seconds(void)
1472{
John Stultz4e250fd2012-07-27 14:48:13 -04001473 struct timekeeper *tk = &timekeeper;
1474
1475 return tk->xtime_sec;
john stultz17c38b72007-07-24 18:38:34 -07001476}
1477EXPORT_SYMBOL(get_seconds);
1478
john stultzda15cfd2009-08-19 19:13:34 -07001479struct timespec __current_kernel_time(void)
1480{
John Stultz4e250fd2012-07-27 14:48:13 -04001481 struct timekeeper *tk = &timekeeper;
1482
1483 return tk_xtime(tk);
john stultzda15cfd2009-08-19 19:13:34 -07001484}
john stultz17c38b72007-07-24 18:38:34 -07001485
john stultz2c6b47d2007-07-24 17:47:43 -07001486struct timespec current_kernel_time(void)
1487{
John Stultz4e250fd2012-07-27 14:48:13 -04001488 struct timekeeper *tk = &timekeeper;
john stultz2c6b47d2007-07-24 17:47:43 -07001489 struct timespec now;
1490 unsigned long seq;
1491
1492 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001493 seq = read_seqbegin(&tk->lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001494
John Stultz4e250fd2012-07-27 14:48:13 -04001495 now = tk_xtime(tk);
1496 } while (read_seqretry(&tk->lock, seq));
john stultz2c6b47d2007-07-24 17:47:43 -07001497
1498 return now;
1499}
john stultz2c6b47d2007-07-24 17:47:43 -07001500EXPORT_SYMBOL(current_kernel_time);
john stultzda15cfd2009-08-19 19:13:34 -07001501
1502struct timespec get_monotonic_coarse(void)
1503{
John Stultz4e250fd2012-07-27 14:48:13 -04001504 struct timekeeper *tk = &timekeeper;
john stultzda15cfd2009-08-19 19:13:34 -07001505 struct timespec now, mono;
1506 unsigned long seq;
1507
1508 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001509 seq = read_seqbegin(&tk->lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001510
John Stultz4e250fd2012-07-27 14:48:13 -04001511 now = tk_xtime(tk);
1512 mono = tk->wall_to_monotonic;
1513 } while (read_seqretry(&tk->lock, seq));
john stultzda15cfd2009-08-19 19:13:34 -07001514
1515 set_normalized_timespec(&now, now.tv_sec + mono.tv_sec,
1516 now.tv_nsec + mono.tv_nsec);
1517 return now;
1518}
Torben Hohn871cf1e2011-01-27 15:58:55 +01001519
1520/*
John Stultzd6ad4182012-02-28 16:50:11 -08001521 * Must hold jiffies_lock
Torben Hohn871cf1e2011-01-27 15:58:55 +01001522 */
1523void do_timer(unsigned long ticks)
1524{
1525 jiffies_64 += ticks;
1526 update_wall_time();
1527 calc_global_load(ticks);
1528}
Torben Hohn48cf76f72011-01-27 15:59:05 +01001529
1530/**
John Stultz314ac372011-02-14 18:43:08 -08001531 * get_xtime_and_monotonic_and_sleep_offset() - get xtime, wall_to_monotonic,
1532 * and sleep offsets.
Torben Hohn48cf76f72011-01-27 15:59:05 +01001533 * @xtim: pointer to timespec to be set with xtime
1534 * @wtom: pointer to timespec to be set with wall_to_monotonic
John Stultz314ac372011-02-14 18:43:08 -08001535 * @sleep: pointer to timespec to be set with time in suspend
Torben Hohn48cf76f72011-01-27 15:59:05 +01001536 */
John Stultz314ac372011-02-14 18:43:08 -08001537void get_xtime_and_monotonic_and_sleep_offset(struct timespec *xtim,
1538 struct timespec *wtom, struct timespec *sleep)
Torben Hohn48cf76f72011-01-27 15:59:05 +01001539{
John Stultz4e250fd2012-07-27 14:48:13 -04001540 struct timekeeper *tk = &timekeeper;
Torben Hohn48cf76f72011-01-27 15:59:05 +01001541 unsigned long seq;
1542
1543 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001544 seq = read_seqbegin(&tk->lock);
1545 *xtim = tk_xtime(tk);
1546 *wtom = tk->wall_to_monotonic;
1547 *sleep = tk->total_sleep_time;
1548 } while (read_seqretry(&tk->lock, seq));
Torben Hohn48cf76f72011-01-27 15:59:05 +01001549}
Torben Hohnf0af911a92011-01-27 15:59:10 +01001550
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001551#ifdef CONFIG_HIGH_RES_TIMERS
1552/**
1553 * ktime_get_update_offsets - hrtimer helper
1554 * @offs_real: pointer to storage for monotonic -> realtime offset
1555 * @offs_boot: pointer to storage for monotonic -> boottime offset
1556 *
1557 * Returns current monotonic time and updates the offsets
1558 * Called from hrtimer_interupt() or retrigger_next_event()
1559 */
John Stultz90adda92013-01-21 17:00:11 -08001560ktime_t ktime_get_update_offsets(ktime_t *offs_real, ktime_t *offs_boot,
1561 ktime_t *offs_tai)
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001562{
John Stultz4e250fd2012-07-27 14:48:13 -04001563 struct timekeeper *tk = &timekeeper;
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001564 ktime_t now;
1565 unsigned int seq;
1566 u64 secs, nsecs;
1567
1568 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001569 seq = read_seqbegin(&tk->lock);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001570
John Stultz4e250fd2012-07-27 14:48:13 -04001571 secs = tk->xtime_sec;
1572 nsecs = timekeeping_get_ns(tk);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001573
John Stultz4e250fd2012-07-27 14:48:13 -04001574 *offs_real = tk->offs_real;
1575 *offs_boot = tk->offs_boot;
John Stultz90adda92013-01-21 17:00:11 -08001576 *offs_tai = tk->offs_tai;
John Stultz4e250fd2012-07-27 14:48:13 -04001577 } while (read_seqretry(&tk->lock, seq));
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001578
1579 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1580 now = ktime_sub(now, *offs_real);
1581 return now;
1582}
1583#endif
1584
Torben Hohnf0af911a92011-01-27 15:59:10 +01001585/**
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001586 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1587 */
1588ktime_t ktime_get_monotonic_offset(void)
1589{
John Stultz4e250fd2012-07-27 14:48:13 -04001590 struct timekeeper *tk = &timekeeper;
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001591 unsigned long seq;
1592 struct timespec wtom;
1593
1594 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001595 seq = read_seqbegin(&tk->lock);
1596 wtom = tk->wall_to_monotonic;
1597 } while (read_seqretry(&tk->lock, seq));
John Stultz70471f22011-11-14 12:48:10 -08001598
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001599 return timespec_to_ktime(wtom);
1600}
John Stultza80b83b2012-02-03 00:19:07 -08001601EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1602
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001603/**
Torben Hohnf0af911a92011-01-27 15:59:10 +01001604 * xtime_update() - advances the timekeeping infrastructure
1605 * @ticks: number of ticks, that have elapsed since the last call.
1606 *
1607 * Must be called with interrupts disabled.
1608 */
1609void xtime_update(unsigned long ticks)
1610{
John Stultzd6ad4182012-02-28 16:50:11 -08001611 write_seqlock(&jiffies_lock);
Torben Hohnf0af911a92011-01-27 15:59:10 +01001612 do_timer(ticks);
John Stultzd6ad4182012-02-28 16:50:11 -08001613 write_sequnlock(&jiffies_lock);
Torben Hohnf0af911a92011-01-27 15:59:10 +01001614}