blob: d8b23a929e6607bcab9f91dd4ad1dfa149cd18af [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"
John Stultzaa6f9c592013-03-22 11:31:29 -070027#include "ntp_internal.h"
Colin Cross5c835452013-05-21 22:32:14 -070028#include "timekeeping_internal.h"
Martin Schwidefsky155ec602009-08-14 15:47:26 +020029
David Vrabel04397fe92013-06-27 11:35:45 +010030#define TK_CLEAR_NTP (1 << 0)
31#define TK_MIRROR (1 << 1)
32
H Hartley Sweetenafa14e72011-01-11 17:59:38 -060033static struct timekeeper timekeeper;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +000034static DEFINE_RAW_SPINLOCK(timekeeper_lock);
35static seqcount_t timekeeper_seq;
Thomas Gleixner48cdc132013-02-21 22:51:40 +000036static struct timekeeper shadow_timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020037
John Stultz8fcce542011-11-14 11:46:39 -080038/* flag for if timekeeping is suspended */
39int __read_mostly timekeeping_suspended;
40
Feng Tang31ade302013-01-16 00:09:47 +080041/* Flag for if there is a persistent clock on this platform */
42bool __read_mostly persistent_clock_exist = false;
43
John Stultz1e75fa82012-07-13 01:21:53 -040044static inline void tk_normalize_xtime(struct timekeeper *tk)
45{
46 while (tk->xtime_nsec >= ((u64)NSEC_PER_SEC << tk->shift)) {
47 tk->xtime_nsec -= (u64)NSEC_PER_SEC << tk->shift;
48 tk->xtime_sec++;
49 }
50}
John Stultz8fcce542011-11-14 11:46:39 -080051
John Stultz1e75fa82012-07-13 01:21:53 -040052static void tk_set_xtime(struct timekeeper *tk, const struct timespec *ts)
53{
54 tk->xtime_sec = ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040055 tk->xtime_nsec = (u64)ts->tv_nsec << tk->shift;
John Stultz1e75fa82012-07-13 01:21:53 -040056}
57
58static void tk_xtime_add(struct timekeeper *tk, const struct timespec *ts)
59{
60 tk->xtime_sec += ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040061 tk->xtime_nsec += (u64)ts->tv_nsec << tk->shift;
John Stultz784ffcb2012-08-21 20:30:46 -040062 tk_normalize_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -040063}
John Stultz8fcce542011-11-14 11:46:39 -080064
John Stultz6d0ef902012-07-27 14:48:12 -040065static void tk_set_wall_to_mono(struct timekeeper *tk, struct timespec wtm)
66{
67 struct timespec tmp;
68
69 /*
70 * Verify consistency of: offset_real = -wall_to_monotonic
71 * before modifying anything
72 */
73 set_normalized_timespec(&tmp, -tk->wall_to_monotonic.tv_sec,
74 -tk->wall_to_monotonic.tv_nsec);
75 WARN_ON_ONCE(tk->offs_real.tv64 != timespec_to_ktime(tmp).tv64);
76 tk->wall_to_monotonic = wtm;
77 set_normalized_timespec(&tmp, -wtm.tv_sec, -wtm.tv_nsec);
78 tk->offs_real = timespec_to_ktime(tmp);
John Stultz90adda92013-01-21 17:00:11 -080079 tk->offs_tai = ktime_sub(tk->offs_real, ktime_set(tk->tai_offset, 0));
John Stultz6d0ef902012-07-27 14:48:12 -040080}
81
82static void tk_set_sleep_time(struct timekeeper *tk, struct timespec t)
83{
84 /* Verify consistency before modifying */
85 WARN_ON_ONCE(tk->offs_boot.tv64 != timespec_to_ktime(tk->total_sleep_time).tv64);
86
87 tk->total_sleep_time = t;
88 tk->offs_boot = timespec_to_ktime(t);
89}
90
Martin Schwidefsky155ec602009-08-14 15:47:26 +020091/**
92 * timekeeper_setup_internals - Set up internals to use clocksource clock.
93 *
94 * @clock: Pointer to clocksource.
95 *
96 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
97 * pair and interval request.
98 *
99 * Unless you're the timekeeping code, you should not be using this!
100 */
John Stultzf726a692012-07-13 01:21:57 -0400101static void tk_setup_internals(struct timekeeper *tk, struct clocksource *clock)
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200102{
103 cycle_t interval;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700104 u64 tmp, ntpinterval;
John Stultz1e75fa82012-07-13 01:21:53 -0400105 struct clocksource *old_clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200106
John Stultzf726a692012-07-13 01:21:57 -0400107 old_clock = tk->clock;
108 tk->clock = clock;
Thomas Gleixner14a3b6a2013-02-21 22:51:38 +0000109 tk->cycle_last = clock->cycle_last = clock->read(clock);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200110
111 /* Do the ns -> cycle conversion first, using original mult */
112 tmp = NTP_INTERVAL_LENGTH;
113 tmp <<= clock->shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700114 ntpinterval = tmp;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200115 tmp += clock->mult/2;
116 do_div(tmp, clock->mult);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200117 if (tmp == 0)
118 tmp = 1;
119
120 interval = (cycle_t) tmp;
John Stultzf726a692012-07-13 01:21:57 -0400121 tk->cycle_interval = interval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200122
123 /* Go back from cycles -> shifted ns */
John Stultzf726a692012-07-13 01:21:57 -0400124 tk->xtime_interval = (u64) interval * clock->mult;
125 tk->xtime_remainder = ntpinterval - tk->xtime_interval;
126 tk->raw_interval =
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200127 ((u64) interval * clock->mult) >> clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200128
John Stultz1e75fa82012-07-13 01:21:53 -0400129 /* if changing clocks, convert xtime_nsec shift units */
130 if (old_clock) {
131 int shift_change = clock->shift - old_clock->shift;
132 if (shift_change < 0)
John Stultzf726a692012-07-13 01:21:57 -0400133 tk->xtime_nsec >>= -shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400134 else
John Stultzf726a692012-07-13 01:21:57 -0400135 tk->xtime_nsec <<= shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400136 }
John Stultzf726a692012-07-13 01:21:57 -0400137 tk->shift = clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200138
John Stultzf726a692012-07-13 01:21:57 -0400139 tk->ntp_error = 0;
140 tk->ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200141
142 /*
143 * The timekeeper keeps its own mult values for the currently
144 * active clocksource. These value will be adjusted via NTP
145 * to counteract clock drifting.
146 */
John Stultzf726a692012-07-13 01:21:57 -0400147 tk->mult = clock->mult;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200148}
john stultz85240702007-05-08 00:27:59 -0700149
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200150/* Timekeeper helper functions. */
Stephen Warren7b1f6202012-11-07 17:58:54 -0700151
152#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
153u32 (*arch_gettimeoffset)(void);
154
155u32 get_arch_timeoffset(void)
156{
157 if (likely(arch_gettimeoffset))
158 return arch_gettimeoffset();
159 return 0;
160}
161#else
162static inline u32 get_arch_timeoffset(void) { return 0; }
163#endif
164
John Stultzf726a692012-07-13 01:21:57 -0400165static inline s64 timekeeping_get_ns(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200166{
167 cycle_t cycle_now, cycle_delta;
168 struct clocksource *clock;
John Stultz1e75fa82012-07-13 01:21:53 -0400169 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200170
171 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400172 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200173 cycle_now = clock->read(clock);
174
175 /* calculate the delta since the last update_wall_time: */
176 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
177
John Stultzf726a692012-07-13 01:21:57 -0400178 nsec = cycle_delta * tk->mult + tk->xtime_nsec;
179 nsec >>= tk->shift;
John Stultzf2a5a082012-07-13 01:21:55 -0400180
Stephen Warren7b1f6202012-11-07 17:58:54 -0700181 /* If arch requires, add in get_arch_timeoffset() */
182 return nsec + get_arch_timeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200183}
184
John Stultzf726a692012-07-13 01:21:57 -0400185static inline s64 timekeeping_get_ns_raw(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200186{
187 cycle_t cycle_now, cycle_delta;
188 struct clocksource *clock;
John Stultzf2a5a082012-07-13 01:21:55 -0400189 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200190
191 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400192 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200193 cycle_now = clock->read(clock);
194
195 /* calculate the delta since the last update_wall_time: */
196 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
197
John Stultzf2a5a082012-07-13 01:21:55 -0400198 /* convert delta to nanoseconds. */
199 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
200
Stephen Warren7b1f6202012-11-07 17:58:54 -0700201 /* If arch requires, add in get_arch_timeoffset() */
202 return nsec + get_arch_timeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200203}
204
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200205static RAW_NOTIFIER_HEAD(pvclock_gtod_chain);
206
207static void update_pvclock_gtod(struct timekeeper *tk)
208{
209 raw_notifier_call_chain(&pvclock_gtod_chain, 0, tk);
210}
211
212/**
213 * pvclock_gtod_register_notifier - register a pvclock timedata update listener
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200214 */
215int pvclock_gtod_register_notifier(struct notifier_block *nb)
216{
217 struct timekeeper *tk = &timekeeper;
218 unsigned long flags;
219 int ret;
220
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000221 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200222 ret = raw_notifier_chain_register(&pvclock_gtod_chain, nb);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200223 update_pvclock_gtod(tk);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000224 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200225
226 return ret;
227}
228EXPORT_SYMBOL_GPL(pvclock_gtod_register_notifier);
229
230/**
231 * pvclock_gtod_unregister_notifier - unregister a pvclock
232 * timedata update listener
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200233 */
234int pvclock_gtod_unregister_notifier(struct notifier_block *nb)
235{
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200236 unsigned long flags;
237 int ret;
238
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000239 raw_spin_lock_irqsave(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200240 ret = raw_notifier_chain_unregister(&pvclock_gtod_chain, nb);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000241 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200242
243 return ret;
244}
245EXPORT_SYMBOL_GPL(pvclock_gtod_unregister_notifier);
246
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000247/* must hold timekeeper_lock */
David Vrabel04397fe92013-06-27 11:35:45 +0100248static void timekeeping_update(struct timekeeper *tk, unsigned int action)
Thomas Gleixnercc062682011-11-13 23:19:49 +0000249{
David Vrabel04397fe92013-06-27 11:35:45 +0100250 if (action & TK_CLEAR_NTP) {
John Stultzf726a692012-07-13 01:21:57 -0400251 tk->ntp_error = 0;
Thomas Gleixnercc062682011-11-13 23:19:49 +0000252 ntp_clear();
253 }
John Stultz576094b2012-09-11 19:58:13 -0400254 update_vsyscall(tk);
Marcelo Tosattie0b306f2012-11-27 23:28:59 -0200255 update_pvclock_gtod(tk);
Thomas Gleixner48cdc132013-02-21 22:51:40 +0000256
David Vrabel04397fe92013-06-27 11:35:45 +0100257 if (action & TK_MIRROR)
Thomas Gleixner48cdc132013-02-21 22:51:40 +0000258 memcpy(&shadow_timekeeper, &timekeeper, sizeof(timekeeper));
Thomas Gleixnercc062682011-11-13 23:19:49 +0000259}
260
john stultz85240702007-05-08 00:27:59 -0700261/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200262 * timekeeping_forward_now - update clock to the current time
john stultz85240702007-05-08 00:27:59 -0700263 *
Roman Zippel9a055112008-08-20 16:37:28 -0700264 * Forward the current clock to update its state since the last call to
265 * update_wall_time(). This is useful before significant clock changes,
266 * as it avoids having to deal with this time offset explicitly.
john stultz85240702007-05-08 00:27:59 -0700267 */
John Stultzf726a692012-07-13 01:21:57 -0400268static void timekeeping_forward_now(struct timekeeper *tk)
john stultz85240702007-05-08 00:27:59 -0700269{
270 cycle_t cycle_now, cycle_delta;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200271 struct clocksource *clock;
Roman Zippel9a055112008-08-20 16:37:28 -0700272 s64 nsec;
john stultz85240702007-05-08 00:27:59 -0700273
John Stultzf726a692012-07-13 01:21:57 -0400274 clock = tk->clock;
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200275 cycle_now = clock->read(clock);
john stultz85240702007-05-08 00:27:59 -0700276 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
Thomas Gleixner14a3b6a2013-02-21 22:51:38 +0000277 tk->cycle_last = clock->cycle_last = cycle_now;
john stultz85240702007-05-08 00:27:59 -0700278
John Stultzf726a692012-07-13 01:21:57 -0400279 tk->xtime_nsec += cycle_delta * tk->mult;
john stultz7d275582009-05-01 13:10:26 -0700280
Stephen Warren7b1f6202012-11-07 17:58:54 -0700281 /* If arch requires, add in get_arch_timeoffset() */
282 tk->xtime_nsec += (u64)get_arch_timeoffset() << tk->shift;
john stultz7d275582009-05-01 13:10:26 -0700283
John Stultzf726a692012-07-13 01:21:57 -0400284 tk_normalize_xtime(tk);
John Stultz2d422442008-08-20 16:37:30 -0700285
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200286 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
John Stultzf726a692012-07-13 01:21:57 -0400287 timespec_add_ns(&tk->raw_time, nsec);
john stultz85240702007-05-08 00:27:59 -0700288}
289
290/**
Kees Cook1e817fb2012-11-19 10:26:16 -0800291 * __getnstimeofday - Returns the time of day in a timespec.
john stultz85240702007-05-08 00:27:59 -0700292 * @ts: pointer to the timespec to be set
293 *
Kees Cook1e817fb2012-11-19 10:26:16 -0800294 * Updates the time of day in the timespec.
295 * Returns 0 on success, or -ve when suspended (timespec will be undefined).
john stultz85240702007-05-08 00:27:59 -0700296 */
Kees Cook1e817fb2012-11-19 10:26:16 -0800297int __getnstimeofday(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700298{
John Stultz4e250fd2012-07-27 14:48:13 -0400299 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700300 unsigned long seq;
John Stultz1e75fa82012-07-13 01:21:53 -0400301 s64 nsecs = 0;
john stultz85240702007-05-08 00:27:59 -0700302
303 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000304 seq = read_seqcount_begin(&timekeeper_seq);
john stultz85240702007-05-08 00:27:59 -0700305
John Stultz4e250fd2012-07-27 14:48:13 -0400306 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400307 nsecs = timekeeping_get_ns(tk);
john stultz85240702007-05-08 00:27:59 -0700308
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000309 } while (read_seqcount_retry(&timekeeper_seq, seq));
john stultz85240702007-05-08 00:27:59 -0700310
John Stultzec145ba2012-09-11 19:26:03 -0400311 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700312 timespec_add_ns(ts, nsecs);
Kees Cook1e817fb2012-11-19 10:26:16 -0800313
314 /*
315 * Do not bail out early, in case there were callers still using
316 * the value, even in the face of the WARN_ON.
317 */
318 if (unlikely(timekeeping_suspended))
319 return -EAGAIN;
320 return 0;
321}
322EXPORT_SYMBOL(__getnstimeofday);
323
324/**
325 * getnstimeofday - Returns the time of day in a timespec.
326 * @ts: pointer to the timespec to be set
327 *
328 * Returns the time of day in a timespec (WARN if suspended).
329 */
330void getnstimeofday(struct timespec *ts)
331{
332 WARN_ON(__getnstimeofday(ts));
john stultz85240702007-05-08 00:27:59 -0700333}
john stultz85240702007-05-08 00:27:59 -0700334EXPORT_SYMBOL(getnstimeofday);
335
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200336ktime_t ktime_get(void)
337{
John Stultz4e250fd2012-07-27 14:48:13 -0400338 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200339 unsigned int seq;
340 s64 secs, nsecs;
341
342 WARN_ON(timekeeping_suspended);
343
344 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000345 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -0400346 secs = tk->xtime_sec + tk->wall_to_monotonic.tv_sec;
347 nsecs = timekeeping_get_ns(tk) + tk->wall_to_monotonic.tv_nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200348
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000349 } while (read_seqcount_retry(&timekeeper_seq, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200350 /*
351 * Use ktime_set/ktime_add_ns to create a proper ktime on
352 * 32-bit architectures without CONFIG_KTIME_SCALAR.
353 */
354 return ktime_add_ns(ktime_set(secs, 0), nsecs);
355}
356EXPORT_SYMBOL_GPL(ktime_get);
357
358/**
359 * ktime_get_ts - get the monotonic clock in timespec format
360 * @ts: pointer to timespec variable
361 *
362 * The function calculates the monotonic clock from the realtime
363 * clock and the wall_to_monotonic offset and stores the result
364 * in normalized timespec format in the variable pointed to by @ts.
365 */
366void ktime_get_ts(struct timespec *ts)
367{
John Stultz4e250fd2012-07-27 14:48:13 -0400368 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200369 struct timespec tomono;
John Stultzec145ba2012-09-11 19:26:03 -0400370 s64 nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200371 unsigned int seq;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200372
373 WARN_ON(timekeeping_suspended);
374
375 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000376 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -0400377 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400378 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -0400379 tomono = tk->wall_to_monotonic;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200380
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000381 } while (read_seqcount_retry(&timekeeper_seq, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200382
John Stultzec145ba2012-09-11 19:26:03 -0400383 ts->tv_sec += tomono.tv_sec;
384 ts->tv_nsec = 0;
385 timespec_add_ns(ts, nsec + tomono.tv_nsec);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200386}
387EXPORT_SYMBOL_GPL(ktime_get_ts);
388
John Stultz1ff3c962012-05-03 12:43:40 -0700389
390/**
391 * timekeeping_clocktai - Returns the TAI time of day in a timespec
392 * @ts: pointer to the timespec to be set
393 *
394 * Returns the time of day in a timespec.
395 */
396void timekeeping_clocktai(struct timespec *ts)
397{
398 struct timekeeper *tk = &timekeeper;
399 unsigned long seq;
400 u64 nsecs;
401
402 WARN_ON(timekeeping_suspended);
403
404 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000405 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz1ff3c962012-05-03 12:43:40 -0700406
407 ts->tv_sec = tk->xtime_sec + tk->tai_offset;
408 nsecs = timekeeping_get_ns(tk);
409
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000410 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz1ff3c962012-05-03 12:43:40 -0700411
412 ts->tv_nsec = 0;
413 timespec_add_ns(ts, nsecs);
414
415}
416EXPORT_SYMBOL(timekeeping_clocktai);
417
418
John Stultz90adda92013-01-21 17:00:11 -0800419/**
420 * ktime_get_clocktai - Returns the TAI time of day in a ktime
421 *
422 * Returns the time of day in a ktime.
423 */
424ktime_t ktime_get_clocktai(void)
425{
426 struct timespec ts;
427
428 timekeeping_clocktai(&ts);
429 return timespec_to_ktime(ts);
430}
431EXPORT_SYMBOL(ktime_get_clocktai);
432
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800433#ifdef CONFIG_NTP_PPS
434
435/**
436 * getnstime_raw_and_real - get day and raw monotonic time in timespec format
437 * @ts_raw: pointer to the timespec to be set to raw monotonic time
438 * @ts_real: pointer to the timespec to be set to the time of day
439 *
440 * This function reads both the time of day and raw monotonic time at the
441 * same time atomically and stores the resulting timestamps in timespec
442 * format.
443 */
444void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
445{
John Stultz4e250fd2012-07-27 14:48:13 -0400446 struct timekeeper *tk = &timekeeper;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800447 unsigned long seq;
448 s64 nsecs_raw, nsecs_real;
449
450 WARN_ON_ONCE(timekeeping_suspended);
451
452 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000453 seq = read_seqcount_begin(&timekeeper_seq);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800454
John Stultz4e250fd2012-07-27 14:48:13 -0400455 *ts_raw = tk->raw_time;
456 ts_real->tv_sec = tk->xtime_sec;
John Stultz1e75fa82012-07-13 01:21:53 -0400457 ts_real->tv_nsec = 0;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800458
John Stultz4e250fd2012-07-27 14:48:13 -0400459 nsecs_raw = timekeeping_get_ns_raw(tk);
460 nsecs_real = timekeeping_get_ns(tk);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800461
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000462 } while (read_seqcount_retry(&timekeeper_seq, seq));
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800463
464 timespec_add_ns(ts_raw, nsecs_raw);
465 timespec_add_ns(ts_real, nsecs_real);
466}
467EXPORT_SYMBOL(getnstime_raw_and_real);
468
469#endif /* CONFIG_NTP_PPS */
470
john stultz85240702007-05-08 00:27:59 -0700471/**
472 * do_gettimeofday - Returns the time of day in a timeval
473 * @tv: pointer to the timeval to be set
474 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100475 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -0700476 */
477void do_gettimeofday(struct timeval *tv)
478{
479 struct timespec now;
480
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100481 getnstimeofday(&now);
john stultz85240702007-05-08 00:27:59 -0700482 tv->tv_sec = now.tv_sec;
483 tv->tv_usec = now.tv_nsec/1000;
484}
john stultz85240702007-05-08 00:27:59 -0700485EXPORT_SYMBOL(do_gettimeofday);
Richard Cochrand239f492012-04-27 10:12:42 +0200486
john stultz85240702007-05-08 00:27:59 -0700487/**
488 * do_settimeofday - Sets the time of day
489 * @tv: pointer to the timespec variable containing the new time
490 *
491 * Sets the time of day to the new time and update NTP and notify hrtimers
492 */
Richard Cochran1e6d7672011-02-01 13:50:58 +0000493int do_settimeofday(const struct timespec *tv)
john stultz85240702007-05-08 00:27:59 -0700494{
John Stultz4e250fd2012-07-27 14:48:13 -0400495 struct timekeeper *tk = &timekeeper;
John Stultz1e75fa82012-07-13 01:21:53 -0400496 struct timespec ts_delta, xt;
John Stultz92c1d3e2011-11-14 14:05:44 -0800497 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700498
John Stultzcee58482012-08-31 13:30:06 -0400499 if (!timespec_valid_strict(tv))
john stultz85240702007-05-08 00:27:59 -0700500 return -EINVAL;
501
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000502 raw_spin_lock_irqsave(&timekeeper_lock, flags);
503 write_seqcount_begin(&timekeeper_seq);
john stultz85240702007-05-08 00:27:59 -0700504
John Stultz4e250fd2012-07-27 14:48:13 -0400505 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700506
John Stultz4e250fd2012-07-27 14:48:13 -0400507 xt = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400508 ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
509 ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
510
John Stultz4e250fd2012-07-27 14:48:13 -0400511 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, ts_delta));
john stultz85240702007-05-08 00:27:59 -0700512
John Stultz4e250fd2012-07-27 14:48:13 -0400513 tk_set_xtime(tk, tv);
John Stultz1e75fa82012-07-13 01:21:53 -0400514
David Vrabel04397fe92013-06-27 11:35:45 +0100515 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR);
john stultz85240702007-05-08 00:27:59 -0700516
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000517 write_seqcount_end(&timekeeper_seq);
518 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -0700519
520 /* signal hrtimers about time change */
521 clock_was_set();
522
523 return 0;
524}
john stultz85240702007-05-08 00:27:59 -0700525EXPORT_SYMBOL(do_settimeofday);
526
John Stultzc528f7c2011-02-01 13:52:17 +0000527/**
528 * timekeeping_inject_offset - Adds or subtracts from the current time.
529 * @tv: pointer to the timespec variable containing the offset
530 *
531 * Adds or subtracts an offset value from the current time.
532 */
533int timekeeping_inject_offset(struct timespec *ts)
534{
John Stultz4e250fd2012-07-27 14:48:13 -0400535 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800536 unsigned long flags;
John Stultz4e8b1452012-08-08 15:36:20 -0400537 struct timespec tmp;
538 int ret = 0;
John Stultzc528f7c2011-02-01 13:52:17 +0000539
540 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
541 return -EINVAL;
542
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000543 raw_spin_lock_irqsave(&timekeeper_lock, flags);
544 write_seqcount_begin(&timekeeper_seq);
John Stultzc528f7c2011-02-01 13:52:17 +0000545
John Stultz4e250fd2012-07-27 14:48:13 -0400546 timekeeping_forward_now(tk);
John Stultzc528f7c2011-02-01 13:52:17 +0000547
John Stultz4e8b1452012-08-08 15:36:20 -0400548 /* Make sure the proposed value is valid */
549 tmp = timespec_add(tk_xtime(tk), *ts);
John Stultzcee58482012-08-31 13:30:06 -0400550 if (!timespec_valid_strict(&tmp)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400551 ret = -EINVAL;
552 goto error;
553 }
John Stultz1e75fa82012-07-13 01:21:53 -0400554
John Stultz4e250fd2012-07-27 14:48:13 -0400555 tk_xtime_add(tk, ts);
556 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *ts));
John Stultzc528f7c2011-02-01 13:52:17 +0000557
John Stultz4e8b1452012-08-08 15:36:20 -0400558error: /* even if we error out, we forwarded the time, so call update */
David Vrabel04397fe92013-06-27 11:35:45 +0100559 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR);
John Stultzc528f7c2011-02-01 13:52:17 +0000560
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000561 write_seqcount_end(&timekeeper_seq);
562 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000563
564 /* signal hrtimers about time change */
565 clock_was_set();
566
John Stultz4e8b1452012-08-08 15:36:20 -0400567 return ret;
John Stultzc528f7c2011-02-01 13:52:17 +0000568}
569EXPORT_SYMBOL(timekeeping_inject_offset);
570
John Stultzcc244dd2012-05-03 12:30:07 -0700571
572/**
573 * timekeeping_get_tai_offset - Returns current TAI offset from UTC
574 *
575 */
576s32 timekeeping_get_tai_offset(void)
577{
578 struct timekeeper *tk = &timekeeper;
579 unsigned int seq;
580 s32 ret;
581
582 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000583 seq = read_seqcount_begin(&timekeeper_seq);
John Stultzcc244dd2012-05-03 12:30:07 -0700584 ret = tk->tai_offset;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000585 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultzcc244dd2012-05-03 12:30:07 -0700586
587 return ret;
588}
589
590/**
591 * __timekeeping_set_tai_offset - Lock free worker function
592 *
593 */
Fengguang Wudd5d70e2013-03-25 12:24:24 -0700594static void __timekeeping_set_tai_offset(struct timekeeper *tk, s32 tai_offset)
John Stultzcc244dd2012-05-03 12:30:07 -0700595{
596 tk->tai_offset = tai_offset;
John Stultz90adda92013-01-21 17:00:11 -0800597 tk->offs_tai = ktime_sub(tk->offs_real, ktime_set(tai_offset, 0));
John Stultzcc244dd2012-05-03 12:30:07 -0700598}
599
600/**
601 * timekeeping_set_tai_offset - Sets the current TAI offset from UTC
602 *
603 */
604void timekeeping_set_tai_offset(s32 tai_offset)
605{
606 struct timekeeper *tk = &timekeeper;
607 unsigned long flags;
608
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000609 raw_spin_lock_irqsave(&timekeeper_lock, flags);
610 write_seqcount_begin(&timekeeper_seq);
John Stultzcc244dd2012-05-03 12:30:07 -0700611 __timekeeping_set_tai_offset(tk, tai_offset);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000612 write_seqcount_end(&timekeeper_seq);
613 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz4e8f8b32013-04-10 12:41:49 -0700614 clock_was_set();
John Stultzcc244dd2012-05-03 12:30:07 -0700615}
616
john stultz85240702007-05-08 00:27:59 -0700617/**
618 * change_clocksource - Swaps clocksources if a new one is available
619 *
620 * Accumulates current time interval and initializes new clocksource
621 */
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200622static int change_clocksource(void *data)
john stultz85240702007-05-08 00:27:59 -0700623{
John Stultz4e250fd2012-07-27 14:48:13 -0400624 struct timekeeper *tk = &timekeeper;
Magnus Damm4614e6a2009-04-21 12:24:02 -0700625 struct clocksource *new, *old;
John Stultzf695cf92012-03-14 16:38:15 -0700626 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700627
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200628 new = (struct clocksource *) data;
john stultz85240702007-05-08 00:27:59 -0700629
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000630 raw_spin_lock_irqsave(&timekeeper_lock, flags);
631 write_seqcount_begin(&timekeeper_seq);
John Stultzf695cf92012-03-14 16:38:15 -0700632
John Stultz4e250fd2012-07-27 14:48:13 -0400633 timekeeping_forward_now(tk);
Thomas Gleixner09ac3692013-04-25 20:31:44 +0000634 /*
635 * If the cs is in module, get a module reference. Succeeds
636 * for built-in code (owner == NULL) as well.
637 */
638 if (try_module_get(new->owner)) {
639 if (!new->enable || new->enable(new) == 0) {
640 old = tk->clock;
641 tk_setup_internals(tk, new);
642 if (old->disable)
643 old->disable(old);
644 module_put(old->owner);
645 } else {
646 module_put(new->owner);
647 }
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200648 }
David Vrabel04397fe92013-06-27 11:35:45 +0100649 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR);
John Stultzf695cf92012-03-14 16:38:15 -0700650
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000651 write_seqcount_end(&timekeeper_seq);
652 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -0700653
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200654 return 0;
655}
john stultz85240702007-05-08 00:27:59 -0700656
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200657/**
658 * timekeeping_notify - Install a new clock source
659 * @clock: pointer to the clock source
660 *
661 * This function is called from clocksource.c after a new, better clock
662 * source has been registered. The caller holds the clocksource_mutex.
663 */
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000664int timekeeping_notify(struct clocksource *clock)
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200665{
John Stultz4e250fd2012-07-27 14:48:13 -0400666 struct timekeeper *tk = &timekeeper;
667
668 if (tk->clock == clock)
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000669 return 0;
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200670 stop_machine(change_clocksource, clock, NULL);
john stultz85240702007-05-08 00:27:59 -0700671 tick_clock_notify();
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000672 return tk->clock == clock ? 0 : -1;
john stultz85240702007-05-08 00:27:59 -0700673}
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200674
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200675/**
676 * ktime_get_real - get the real (wall-) time in ktime_t format
677 *
678 * returns the time in ktime_t format
679 */
680ktime_t ktime_get_real(void)
681{
682 struct timespec now;
683
684 getnstimeofday(&now);
685
686 return timespec_to_ktime(now);
687}
688EXPORT_SYMBOL_GPL(ktime_get_real);
john stultz85240702007-05-08 00:27:59 -0700689
690/**
John Stultz2d422442008-08-20 16:37:30 -0700691 * getrawmonotonic - Returns the raw monotonic time in a timespec
692 * @ts: pointer to the timespec to be set
693 *
694 * Returns the raw monotonic time (completely un-modified by ntp)
695 */
696void getrawmonotonic(struct timespec *ts)
697{
John Stultz4e250fd2012-07-27 14:48:13 -0400698 struct timekeeper *tk = &timekeeper;
John Stultz2d422442008-08-20 16:37:30 -0700699 unsigned long seq;
700 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -0700701
702 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000703 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -0400704 nsecs = timekeeping_get_ns_raw(tk);
705 *ts = tk->raw_time;
John Stultz2d422442008-08-20 16:37:30 -0700706
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000707 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz2d422442008-08-20 16:37:30 -0700708
709 timespec_add_ns(ts, nsecs);
710}
711EXPORT_SYMBOL(getrawmonotonic);
712
John Stultz2d422442008-08-20 16:37:30 -0700713/**
Li Zefancf4fc6c2008-02-08 04:19:24 -0800714 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -0700715 */
Li Zefancf4fc6c2008-02-08 04:19:24 -0800716int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -0700717{
John Stultz4e250fd2012-07-27 14:48:13 -0400718 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700719 unsigned long seq;
720 int ret;
721
722 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000723 seq = read_seqcount_begin(&timekeeper_seq);
john stultz85240702007-05-08 00:27:59 -0700724
John Stultz4e250fd2012-07-27 14:48:13 -0400725 ret = tk->clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -0700726
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000727 } while (read_seqcount_retry(&timekeeper_seq, seq));
john stultz85240702007-05-08 00:27:59 -0700728
729 return ret;
730}
731
732/**
Jon Hunter98962462009-08-18 12:45:10 -0500733 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
Jon Hunter98962462009-08-18 12:45:10 -0500734 */
735u64 timekeeping_max_deferment(void)
736{
John Stultz4e250fd2012-07-27 14:48:13 -0400737 struct timekeeper *tk = &timekeeper;
John Stultz70471f22011-11-14 12:48:10 -0800738 unsigned long seq;
739 u64 ret;
John Stultz42e71e82012-07-13 01:21:51 -0400740
John Stultz70471f22011-11-14 12:48:10 -0800741 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000742 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz70471f22011-11-14 12:48:10 -0800743
John Stultz4e250fd2012-07-27 14:48:13 -0400744 ret = tk->clock->max_idle_ns;
John Stultz70471f22011-11-14 12:48:10 -0800745
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000746 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz70471f22011-11-14 12:48:10 -0800747
748 return ret;
Jon Hunter98962462009-08-18 12:45:10 -0500749}
750
751/**
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200752 * read_persistent_clock - Return time from the persistent clock.
john stultz85240702007-05-08 00:27:59 -0700753 *
754 * Weak dummy function for arches that do not yet support it.
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200755 * Reads the time from the battery backed persistent clock.
756 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
john stultz85240702007-05-08 00:27:59 -0700757 *
758 * XXX - Do be sure to remove it once all arches implement it.
759 */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200760void __attribute__((weak)) read_persistent_clock(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700761{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200762 ts->tv_sec = 0;
763 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700764}
765
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200766/**
767 * read_boot_clock - Return time of the system start.
768 *
769 * Weak dummy function for arches that do not yet support it.
770 * Function to read the exact time the system has been started.
771 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
772 *
773 * XXX - Do be sure to remove it once all arches implement it.
774 */
775void __attribute__((weak)) read_boot_clock(struct timespec *ts)
776{
777 ts->tv_sec = 0;
778 ts->tv_nsec = 0;
779}
780
john stultz85240702007-05-08 00:27:59 -0700781/*
782 * timekeeping_init - Initializes the clocksource and common timekeeping values
783 */
784void __init timekeeping_init(void)
785{
John Stultz4e250fd2012-07-27 14:48:13 -0400786 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200787 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700788 unsigned long flags;
John Stultz6d0ef902012-07-27 14:48:12 -0400789 struct timespec now, boot, tmp;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200790
791 read_persistent_clock(&now);
Feng Tang31ade302013-01-16 00:09:47 +0800792
John Stultzcee58482012-08-31 13:30:06 -0400793 if (!timespec_valid_strict(&now)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400794 pr_warn("WARNING: Persistent clock returned invalid value!\n"
795 " Check your CMOS/BIOS settings.\n");
796 now.tv_sec = 0;
797 now.tv_nsec = 0;
Feng Tang31ade302013-01-16 00:09:47 +0800798 } else if (now.tv_sec || now.tv_nsec)
799 persistent_clock_exist = true;
John Stultz4e8b1452012-08-08 15:36:20 -0400800
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200801 read_boot_clock(&boot);
John Stultzcee58482012-08-31 13:30:06 -0400802 if (!timespec_valid_strict(&boot)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400803 pr_warn("WARNING: Boot clock returned invalid value!\n"
804 " Check your CMOS/BIOS settings.\n");
805 boot.tv_sec = 0;
806 boot.tv_nsec = 0;
807 }
john stultz85240702007-05-08 00:27:59 -0700808
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000809 raw_spin_lock_irqsave(&timekeeper_lock, flags);
810 write_seqcount_begin(&timekeeper_seq);
John Stultz06c017f2013-03-22 11:37:28 -0700811 ntp_init();
812
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200813 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200814 if (clock->enable)
815 clock->enable(clock);
John Stultz4e250fd2012-07-27 14:48:13 -0400816 tk_setup_internals(tk, clock);
john stultz85240702007-05-08 00:27:59 -0700817
John Stultz4e250fd2012-07-27 14:48:13 -0400818 tk_set_xtime(tk, &now);
819 tk->raw_time.tv_sec = 0;
820 tk->raw_time.tv_nsec = 0;
John Stultz1e75fa82012-07-13 01:21:53 -0400821 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
John Stultz4e250fd2012-07-27 14:48:13 -0400822 boot = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400823
John Stultz6d0ef902012-07-27 14:48:12 -0400824 set_normalized_timespec(&tmp, -boot.tv_sec, -boot.tv_nsec);
John Stultz4e250fd2012-07-27 14:48:13 -0400825 tk_set_wall_to_mono(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400826
827 tmp.tv_sec = 0;
828 tmp.tv_nsec = 0;
John Stultz4e250fd2012-07-27 14:48:13 -0400829 tk_set_sleep_time(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400830
Thomas Gleixner48cdc132013-02-21 22:51:40 +0000831 memcpy(&shadow_timekeeper, &timekeeper, sizeof(timekeeper));
832
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000833 write_seqcount_end(&timekeeper_seq);
834 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -0700835}
836
john stultz85240702007-05-08 00:27:59 -0700837/* time in seconds when suspend began */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200838static struct timespec timekeeping_suspend_time;
john stultz85240702007-05-08 00:27:59 -0700839
840/**
John Stultz304529b2011-04-01 14:32:09 -0700841 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
842 * @delta: pointer to a timespec delta value
843 *
844 * Takes a timespec offset measuring a suspend interval and properly
845 * adds the sleep offset to the timekeeping variables.
846 */
John Stultzf726a692012-07-13 01:21:57 -0400847static void __timekeeping_inject_sleeptime(struct timekeeper *tk,
848 struct timespec *delta)
John Stultz304529b2011-04-01 14:32:09 -0700849{
John Stultzcee58482012-08-31 13:30:06 -0400850 if (!timespec_valid_strict(delta)) {
John Stultzcbaa5152011-07-20 15:42:55 -0700851 printk(KERN_WARNING "__timekeeping_inject_sleeptime: Invalid "
John Stultzcb5de2f2011-06-01 18:18:09 -0700852 "sleep delta value!\n");
853 return;
854 }
John Stultzf726a692012-07-13 01:21:57 -0400855 tk_xtime_add(tk, delta);
John Stultz6d0ef902012-07-27 14:48:12 -0400856 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *delta));
857 tk_set_sleep_time(tk, timespec_add(tk->total_sleep_time, *delta));
Colin Cross5c835452013-05-21 22:32:14 -0700858 tk_debug_account_sleep_time(delta);
John Stultz304529b2011-04-01 14:32:09 -0700859}
860
John Stultz304529b2011-04-01 14:32:09 -0700861/**
862 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
863 * @delta: pointer to a timespec delta value
864 *
865 * This hook is for architectures that cannot support read_persistent_clock
866 * because their RTC/persistent clock is only accessible when irqs are enabled.
867 *
868 * This function should only be called by rtc_resume(), and allows
869 * a suspend offset to be injected into the timekeeping values.
870 */
871void timekeeping_inject_sleeptime(struct timespec *delta)
872{
John Stultz4e250fd2012-07-27 14:48:13 -0400873 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800874 unsigned long flags;
John Stultz304529b2011-04-01 14:32:09 -0700875
Feng Tang31ade302013-01-16 00:09:47 +0800876 /*
877 * Make sure we don't set the clock twice, as timekeeping_resume()
878 * already did it
879 */
880 if (has_persistent_clock())
John Stultz304529b2011-04-01 14:32:09 -0700881 return;
882
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000883 raw_spin_lock_irqsave(&timekeeper_lock, flags);
884 write_seqcount_begin(&timekeeper_seq);
John Stultz70471f22011-11-14 12:48:10 -0800885
John Stultz4e250fd2012-07-27 14:48:13 -0400886 timekeeping_forward_now(tk);
John Stultz304529b2011-04-01 14:32:09 -0700887
John Stultz4e250fd2012-07-27 14:48:13 -0400888 __timekeeping_inject_sleeptime(tk, delta);
John Stultz304529b2011-04-01 14:32:09 -0700889
David Vrabel04397fe92013-06-27 11:35:45 +0100890 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR);
John Stultz304529b2011-04-01 14:32:09 -0700891
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000892 write_seqcount_end(&timekeeper_seq);
893 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultz304529b2011-04-01 14:32:09 -0700894
895 /* signal hrtimers about time change */
896 clock_was_set();
897}
898
John Stultz304529b2011-04-01 14:32:09 -0700899/**
john stultz85240702007-05-08 00:27:59 -0700900 * timekeeping_resume - Resumes the generic timekeeping subsystem.
john stultz85240702007-05-08 00:27:59 -0700901 *
902 * This is for the generic clocksource timekeeping.
903 * xtime/wall_to_monotonic/jiffies/etc are
904 * still managed by arch specific suspend/resume code.
905 */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100906static void timekeeping_resume(void)
john stultz85240702007-05-08 00:27:59 -0700907{
John Stultz4e250fd2012-07-27 14:48:13 -0400908 struct timekeeper *tk = &timekeeper;
Feng Tange445cf12013-03-12 11:56:48 +0800909 struct clocksource *clock = tk->clock;
John Stultz92c1d3e2011-11-14 14:05:44 -0800910 unsigned long flags;
Feng Tange445cf12013-03-12 11:56:48 +0800911 struct timespec ts_new, ts_delta;
912 cycle_t cycle_now, cycle_delta;
913 bool suspendtime_found = false;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200914
Feng Tange445cf12013-03-12 11:56:48 +0800915 read_persistent_clock(&ts_new);
john stultz85240702007-05-08 00:27:59 -0700916
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +0200917 clockevents_resume();
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +0200918 clocksource_resume();
919
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000920 raw_spin_lock_irqsave(&timekeeper_lock, flags);
921 write_seqcount_begin(&timekeeper_seq);
john stultz85240702007-05-08 00:27:59 -0700922
Feng Tange445cf12013-03-12 11:56:48 +0800923 /*
924 * After system resumes, we need to calculate the suspended time and
925 * compensate it for the OS time. There are 3 sources that could be
926 * used: Nonstop clocksource during suspend, persistent clock and rtc
927 * device.
928 *
929 * One specific platform may have 1 or 2 or all of them, and the
930 * preference will be:
931 * suspend-nonstop clocksource -> persistent clock -> rtc
932 * The less preferred source will only be tried if there is no better
933 * usable source. The rtc part is handled separately in rtc core code.
934 */
935 cycle_now = clock->read(clock);
936 if ((clock->flags & CLOCK_SOURCE_SUSPEND_NONSTOP) &&
937 cycle_now > clock->cycle_last) {
938 u64 num, max = ULLONG_MAX;
939 u32 mult = clock->mult;
940 u32 shift = clock->shift;
941 s64 nsec = 0;
942
943 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
944
945 /*
946 * "cycle_delta * mutl" may cause 64 bits overflow, if the
947 * suspended time is too long. In that case we need do the
948 * 64 bits math carefully
949 */
950 do_div(max, mult);
951 if (cycle_delta > max) {
952 num = div64_u64(cycle_delta, max);
953 nsec = (((u64) max * mult) >> shift) * num;
954 cycle_delta -= num * max;
955 }
956 nsec += ((u64) cycle_delta * mult) >> shift;
957
958 ts_delta = ns_to_timespec(nsec);
959 suspendtime_found = true;
960 } else if (timespec_compare(&ts_new, &timekeeping_suspend_time) > 0) {
961 ts_delta = timespec_sub(ts_new, timekeeping_suspend_time);
962 suspendtime_found = true;
john stultz85240702007-05-08 00:27:59 -0700963 }
Feng Tange445cf12013-03-12 11:56:48 +0800964
965 if (suspendtime_found)
966 __timekeeping_inject_sleeptime(tk, &ts_delta);
967
968 /* Re-base the last cycle value */
Thomas Gleixner77c675b2013-04-22 09:37:04 +0200969 tk->cycle_last = clock->cycle_last = cycle_now;
John Stultz4e250fd2012-07-27 14:48:13 -0400970 tk->ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -0700971 timekeeping_suspended = 0;
David Vrabel04397fe92013-06-27 11:35:45 +0100972 timekeeping_update(tk, TK_MIRROR);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000973 write_seqcount_end(&timekeeper_seq);
974 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -0700975
976 touch_softlockup_watchdog();
977
978 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
979
980 /* Resume hrtimers */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200981 hrtimers_resume();
john stultz85240702007-05-08 00:27:59 -0700982}
983
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100984static int timekeeping_suspend(void)
john stultz85240702007-05-08 00:27:59 -0700985{
John Stultz4e250fd2012-07-27 14:48:13 -0400986 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800987 unsigned long flags;
John Stultzcb332172011-05-31 22:53:23 -0700988 struct timespec delta, delta_delta;
989 static struct timespec old_delta;
john stultz85240702007-05-08 00:27:59 -0700990
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200991 read_persistent_clock(&timekeeping_suspend_time);
Thomas Gleixner3be90952007-09-16 15:36:43 +0200992
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +0000993 raw_spin_lock_irqsave(&timekeeper_lock, flags);
994 write_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -0400995 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700996 timekeeping_suspended = 1;
John Stultzcb332172011-05-31 22:53:23 -0700997
998 /*
999 * To avoid drift caused by repeated suspend/resumes,
1000 * which each can add ~1 second drift error,
1001 * try to compensate so the difference in system time
1002 * and persistent_clock time stays close to constant.
1003 */
John Stultz4e250fd2012-07-27 14:48:13 -04001004 delta = timespec_sub(tk_xtime(tk), timekeeping_suspend_time);
John Stultzcb332172011-05-31 22:53:23 -07001005 delta_delta = timespec_sub(delta, old_delta);
1006 if (abs(delta_delta.tv_sec) >= 2) {
1007 /*
1008 * if delta_delta is too large, assume time correction
1009 * has occured and set old_delta to the current delta.
1010 */
1011 old_delta = delta;
1012 } else {
1013 /* Otherwise try to adjust old_system to compensate */
1014 timekeeping_suspend_time =
1015 timespec_add(timekeeping_suspend_time, delta_delta);
1016 }
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001017 write_seqcount_end(&timekeeper_seq);
1018 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001019
1020 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
Magnus Dammc54a42b2010-02-02 14:41:41 -08001021 clocksource_suspend();
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +02001022 clockevents_suspend();
john stultz85240702007-05-08 00:27:59 -07001023
1024 return 0;
1025}
1026
1027/* sysfs resume/suspend bits for timekeeping */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001028static struct syscore_ops timekeeping_syscore_ops = {
john stultz85240702007-05-08 00:27:59 -07001029 .resume = timekeeping_resume,
1030 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -07001031};
1032
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001033static int __init timekeeping_init_ops(void)
john stultz85240702007-05-08 00:27:59 -07001034{
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001035 register_syscore_ops(&timekeeping_syscore_ops);
1036 return 0;
john stultz85240702007-05-08 00:27:59 -07001037}
1038
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +01001039device_initcall(timekeeping_init_ops);
john stultz85240702007-05-08 00:27:59 -07001040
1041/*
1042 * If the error is already larger, we look ahead even further
1043 * to compensate for late or lost adjustments.
1044 */
John Stultzf726a692012-07-13 01:21:57 -04001045static __always_inline int timekeeping_bigadjust(struct timekeeper *tk,
1046 s64 error, s64 *interval,
john stultz85240702007-05-08 00:27:59 -07001047 s64 *offset)
1048{
1049 s64 tick_error, i;
1050 u32 look_ahead, adj;
1051 s32 error2, mult;
1052
1053 /*
1054 * Use the current error value to determine how much to look ahead.
1055 * The larger the error the slower we adjust for it to avoid problems
1056 * with losing too many ticks, otherwise we would overadjust and
1057 * produce an even larger error. The smaller the adjustment the
1058 * faster we try to adjust for it, as lost ticks can do less harm
Li Zefan3eb05672008-02-08 04:19:25 -08001059 * here. This is tuned so that an error of about 1 msec is adjusted
john stultz85240702007-05-08 00:27:59 -07001060 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
1061 */
John Stultzf726a692012-07-13 01:21:57 -04001062 error2 = tk->ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
john stultz85240702007-05-08 00:27:59 -07001063 error2 = abs(error2);
1064 for (look_ahead = 0; error2 > 0; look_ahead++)
1065 error2 >>= 2;
1066
1067 /*
1068 * Now calculate the error in (1 << look_ahead) ticks, but first
1069 * remove the single look ahead already included in the error.
1070 */
John Stultzf726a692012-07-13 01:21:57 -04001071 tick_error = ntp_tick_length() >> (tk->ntp_error_shift + 1);
1072 tick_error -= tk->xtime_interval >> 1;
john stultz85240702007-05-08 00:27:59 -07001073 error = ((error - tick_error) >> look_ahead) + tick_error;
1074
1075 /* Finally calculate the adjustment shift value. */
1076 i = *interval;
1077 mult = 1;
1078 if (error < 0) {
1079 error = -error;
1080 *interval = -*interval;
1081 *offset = -*offset;
1082 mult = -1;
1083 }
1084 for (adj = 0; error > i; adj++)
1085 error >>= 1;
1086
1087 *interval <<= adj;
1088 *offset <<= adj;
1089 return mult << adj;
1090}
1091
1092/*
1093 * Adjust the multiplier to reduce the error value,
1094 * this is optimized for the most common adjustments of -1,0,1,
1095 * for other values we can do a bit more work.
1096 */
John Stultzf726a692012-07-13 01:21:57 -04001097static void timekeeping_adjust(struct timekeeper *tk, s64 offset)
john stultz85240702007-05-08 00:27:59 -07001098{
John Stultzf726a692012-07-13 01:21:57 -04001099 s64 error, interval = tk->cycle_interval;
john stultz85240702007-05-08 00:27:59 -07001100 int adj;
1101
John Stultzc2bc1112011-10-27 18:12:42 -07001102 /*
Jim Cromie88b28ad2012-03-14 21:28:56 -06001103 * The point of this is to check if the error is greater than half
John Stultzc2bc1112011-10-27 18:12:42 -07001104 * an interval.
1105 *
1106 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
1107 *
1108 * Note we subtract one in the shift, so that error is really error*2.
John Stultz3f86f282011-10-27 17:41:17 -07001109 * This "saves" dividing(shifting) interval twice, but keeps the
1110 * (error > interval) comparison as still measuring if error is
Jim Cromie88b28ad2012-03-14 21:28:56 -06001111 * larger than half an interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001112 *
John Stultz3f86f282011-10-27 17:41:17 -07001113 * Note: It does not "save" on aggravation when reading the code.
John Stultzc2bc1112011-10-27 18:12:42 -07001114 */
John Stultzf726a692012-07-13 01:21:57 -04001115 error = tk->ntp_error >> (tk->ntp_error_shift - 1);
john stultz85240702007-05-08 00:27:59 -07001116 if (error > interval) {
John Stultzc2bc1112011-10-27 18:12:42 -07001117 /*
1118 * We now divide error by 4(via shift), which checks if
Jim Cromie88b28ad2012-03-14 21:28:56 -06001119 * the error is greater than twice the interval.
John Stultzc2bc1112011-10-27 18:12:42 -07001120 * If it is greater, we need a bigadjust, if its smaller,
1121 * we can adjust by 1.
1122 */
john stultz85240702007-05-08 00:27:59 -07001123 error >>= 2;
John Stultzc2bc1112011-10-27 18:12:42 -07001124 /*
1125 * XXX - In update_wall_time, we round up to the next
1126 * nanosecond, and store the amount rounded up into
1127 * the error. This causes the likely below to be unlikely.
1128 *
John Stultz3f86f282011-10-27 17:41:17 -07001129 * The proper fix is to avoid rounding up by using
John Stultz4e250fd2012-07-27 14:48:13 -04001130 * the high precision tk->xtime_nsec instead of
John Stultzc2bc1112011-10-27 18:12:42 -07001131 * xtime.tv_nsec everywhere. Fixing this will take some
1132 * time.
1133 */
john stultz85240702007-05-08 00:27:59 -07001134 if (likely(error <= interval))
1135 adj = 1;
1136 else
Ingo Molnar1d17d172012-08-04 21:21:14 +02001137 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1138 } else {
1139 if (error < -interval) {
1140 /* See comment above, this is just switched for the negative */
1141 error >>= 2;
1142 if (likely(error >= -interval)) {
1143 adj = -1;
1144 interval = -interval;
1145 offset = -offset;
1146 } else {
1147 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1148 }
1149 } else {
1150 goto out_adjust;
1151 }
1152 }
john stultz85240702007-05-08 00:27:59 -07001153
John Stultzf726a692012-07-13 01:21:57 -04001154 if (unlikely(tk->clock->maxadj &&
1155 (tk->mult + adj > tk->clock->mult + tk->clock->maxadj))) {
John Stultze919cfd2012-03-22 19:14:46 -07001156 printk_once(KERN_WARNING
1157 "Adjusting %s more than 11%% (%ld vs %ld)\n",
John Stultzf726a692012-07-13 01:21:57 -04001158 tk->clock->name, (long)tk->mult + adj,
1159 (long)tk->clock->mult + tk->clock->maxadj);
John Stultze919cfd2012-03-22 19:14:46 -07001160 }
John Stultzc2bc1112011-10-27 18:12:42 -07001161 /*
1162 * So the following can be confusing.
1163 *
1164 * To keep things simple, lets assume adj == 1 for now.
1165 *
1166 * When adj != 1, remember that the interval and offset values
1167 * have been appropriately scaled so the math is the same.
1168 *
1169 * The basic idea here is that we're increasing the multiplier
1170 * by one, this causes the xtime_interval to be incremented by
1171 * one cycle_interval. This is because:
1172 * xtime_interval = cycle_interval * mult
1173 * So if mult is being incremented by one:
1174 * xtime_interval = cycle_interval * (mult + 1)
1175 * Its the same as:
1176 * xtime_interval = (cycle_interval * mult) + cycle_interval
1177 * Which can be shortened to:
1178 * xtime_interval += cycle_interval
1179 *
1180 * So offset stores the non-accumulated cycles. Thus the current
1181 * time (in shifted nanoseconds) is:
1182 * now = (offset * adj) + xtime_nsec
1183 * Now, even though we're adjusting the clock frequency, we have
1184 * to keep time consistent. In other words, we can't jump back
1185 * in time, and we also want to avoid jumping forward in time.
1186 *
1187 * So given the same offset value, we need the time to be the same
1188 * both before and after the freq adjustment.
1189 * now = (offset * adj_1) + xtime_nsec_1
1190 * now = (offset * adj_2) + xtime_nsec_2
1191 * So:
1192 * (offset * adj_1) + xtime_nsec_1 =
1193 * (offset * adj_2) + xtime_nsec_2
1194 * And we know:
1195 * adj_2 = adj_1 + 1
1196 * So:
1197 * (offset * adj_1) + xtime_nsec_1 =
1198 * (offset * (adj_1+1)) + xtime_nsec_2
1199 * (offset * adj_1) + xtime_nsec_1 =
1200 * (offset * adj_1) + offset + xtime_nsec_2
1201 * Canceling the sides:
1202 * xtime_nsec_1 = offset + xtime_nsec_2
1203 * Which gives us:
1204 * xtime_nsec_2 = xtime_nsec_1 - offset
1205 * Which simplfies to:
1206 * xtime_nsec -= offset
1207 *
1208 * XXX - TODO: Doc ntp_error calculation.
1209 */
John Stultzf726a692012-07-13 01:21:57 -04001210 tk->mult += adj;
1211 tk->xtime_interval += interval;
1212 tk->xtime_nsec -= offset;
1213 tk->ntp_error -= (interval - offset) << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001214
Ingo Molnar1d17d172012-08-04 21:21:14 +02001215out_adjust:
John Stultz2a8c0882012-07-13 01:21:56 -04001216 /*
1217 * It may be possible that when we entered this function, xtime_nsec
1218 * was very small. Further, if we're slightly speeding the clocksource
1219 * in the code above, its possible the required corrective factor to
1220 * xtime_nsec could cause it to underflow.
1221 *
1222 * Now, since we already accumulated the second, cannot simply roll
1223 * the accumulated second back, since the NTP subsystem has been
1224 * notified via second_overflow. So instead we push xtime_nsec forward
1225 * by the amount we underflowed, and add that amount into the error.
1226 *
1227 * We'll correct this error next time through this function, when
1228 * xtime_nsec is not as small.
1229 */
John Stultzf726a692012-07-13 01:21:57 -04001230 if (unlikely((s64)tk->xtime_nsec < 0)) {
1231 s64 neg = -(s64)tk->xtime_nsec;
1232 tk->xtime_nsec = 0;
1233 tk->ntp_error += neg << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -04001234 }
1235
john stultz85240702007-05-08 00:27:59 -07001236}
1237
1238/**
John Stultz1f4f9482012-07-13 01:21:54 -04001239 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
1240 *
1241 * Helper function that accumulates a the nsecs greater then a second
1242 * from the xtime_nsec field to the xtime_secs field.
1243 * It also calls into the NTP code to handle leapsecond processing.
1244 *
1245 */
1246static inline void accumulate_nsecs_to_secs(struct timekeeper *tk)
1247{
1248 u64 nsecps = (u64)NSEC_PER_SEC << tk->shift;
1249
1250 while (tk->xtime_nsec >= nsecps) {
1251 int leap;
1252
1253 tk->xtime_nsec -= nsecps;
1254 tk->xtime_sec++;
1255
1256 /* Figure out if its a leap sec and apply if needed */
1257 leap = second_overflow(tk->xtime_sec);
John Stultz6d0ef902012-07-27 14:48:12 -04001258 if (unlikely(leap)) {
1259 struct timespec ts;
John Stultz1f4f9482012-07-13 01:21:54 -04001260
John Stultz6d0ef902012-07-27 14:48:12 -04001261 tk->xtime_sec += leap;
1262
1263 ts.tv_sec = leap;
1264 ts.tv_nsec = 0;
1265 tk_set_wall_to_mono(tk,
1266 timespec_sub(tk->wall_to_monotonic, ts));
1267
John Stultzcc244dd2012-05-03 12:30:07 -07001268 __timekeeping_set_tai_offset(tk, tk->tai_offset - leap);
1269
John Stultz6d0ef902012-07-27 14:48:12 -04001270 clock_was_set_delayed();
1271 }
John Stultz1f4f9482012-07-13 01:21:54 -04001272 }
1273}
1274
John Stultz1f4f9482012-07-13 01:21:54 -04001275/**
john stultza092ff02009-10-02 16:17:53 -07001276 * logarithmic_accumulation - shifted accumulation of cycles
1277 *
1278 * This functions accumulates a shifted interval of cycles into
1279 * into a shifted interval nanoseconds. Allows for O(log) accumulation
1280 * loop.
1281 *
1282 * Returns the unconsumed cycles.
1283 */
John Stultzf726a692012-07-13 01:21:57 -04001284static cycle_t logarithmic_accumulation(struct timekeeper *tk, cycle_t offset,
1285 u32 shift)
john stultza092ff02009-10-02 16:17:53 -07001286{
Thomas Gleixner23a95372013-02-21 22:51:36 +00001287 cycle_t interval = tk->cycle_interval << shift;
Jason Wesseldeda2e82010-08-09 14:20:09 -07001288 u64 raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001289
John Stultzf726a692012-07-13 01:21:57 -04001290 /* If the offset is smaller then a shifted interval, do nothing */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001291 if (offset < interval)
john stultza092ff02009-10-02 16:17:53 -07001292 return offset;
1293
1294 /* Accumulate one shifted interval */
Thomas Gleixner23a95372013-02-21 22:51:36 +00001295 offset -= interval;
Thomas Gleixner7ec98e12013-02-21 22:51:39 +00001296 tk->cycle_last += interval;
john stultza092ff02009-10-02 16:17:53 -07001297
John Stultzf726a692012-07-13 01:21:57 -04001298 tk->xtime_nsec += tk->xtime_interval << shift;
1299 accumulate_nsecs_to_secs(tk);
john stultza092ff02009-10-02 16:17:53 -07001300
Jason Wesseldeda2e82010-08-09 14:20:09 -07001301 /* Accumulate raw time */
Dan Carpenter5b3900c2012-10-09 10:18:23 +03001302 raw_nsecs = (u64)tk->raw_interval << shift;
John Stultzf726a692012-07-13 01:21:57 -04001303 raw_nsecs += tk->raw_time.tv_nsec;
John Stultzc7dcf872010-08-13 11:30:58 -07001304 if (raw_nsecs >= NSEC_PER_SEC) {
1305 u64 raw_secs = raw_nsecs;
1306 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
John Stultzf726a692012-07-13 01:21:57 -04001307 tk->raw_time.tv_sec += raw_secs;
john stultza092ff02009-10-02 16:17:53 -07001308 }
John Stultzf726a692012-07-13 01:21:57 -04001309 tk->raw_time.tv_nsec = raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001310
1311 /* Accumulate error between NTP and clock interval */
John Stultzf726a692012-07-13 01:21:57 -04001312 tk->ntp_error += ntp_tick_length() << shift;
1313 tk->ntp_error -= (tk->xtime_interval + tk->xtime_remainder) <<
1314 (tk->ntp_error_shift + shift);
john stultza092ff02009-10-02 16:17:53 -07001315
1316 return offset;
1317}
1318
John Stultz92bb1fc2012-09-04 15:38:12 -04001319#ifdef CONFIG_GENERIC_TIME_VSYSCALL_OLD
1320static inline void old_vsyscall_fixup(struct timekeeper *tk)
1321{
1322 s64 remainder;
1323
1324 /*
1325 * Store only full nanoseconds into xtime_nsec after rounding
1326 * it up and add the remainder to the error difference.
1327 * XXX - This is necessary to avoid small 1ns inconsistnecies caused
1328 * by truncating the remainder in vsyscalls. However, it causes
1329 * additional work to be done in timekeeping_adjust(). Once
1330 * the vsyscall implementations are converted to use xtime_nsec
1331 * (shifted nanoseconds), and CONFIG_GENERIC_TIME_VSYSCALL_OLD
1332 * users are removed, this can be killed.
1333 */
1334 remainder = tk->xtime_nsec & ((1ULL << tk->shift) - 1);
1335 tk->xtime_nsec -= remainder;
1336 tk->xtime_nsec += 1ULL << tk->shift;
1337 tk->ntp_error += remainder << tk->ntp_error_shift;
1338
1339}
1340#else
1341#define old_vsyscall_fixup(tk)
1342#endif
1343
1344
1345
john stultz85240702007-05-08 00:27:59 -07001346/**
1347 * update_wall_time - Uses the current clocksource to increment the wall time
1348 *
john stultz85240702007-05-08 00:27:59 -07001349 */
Torben Hohn871cf1e2011-01-27 15:58:55 +01001350static void update_wall_time(void)
john stultz85240702007-05-08 00:27:59 -07001351{
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001352 struct clocksource *clock;
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001353 struct timekeeper *real_tk = &timekeeper;
1354 struct timekeeper *tk = &shadow_timekeeper;
john stultz85240702007-05-08 00:27:59 -07001355 cycle_t offset;
john stultza092ff02009-10-02 16:17:53 -07001356 int shift = 0, maxshift;
John Stultz70471f22011-11-14 12:48:10 -08001357 unsigned long flags;
1358
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001359 raw_spin_lock_irqsave(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001360
1361 /* Make sure we're fully resumed: */
1362 if (unlikely(timekeeping_suspended))
John Stultz70471f22011-11-14 12:48:10 -08001363 goto out;
john stultz85240702007-05-08 00:27:59 -07001364
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001365 clock = real_tk->clock;
John Stultz592913e2010-07-13 17:56:20 -07001366
1367#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001368 offset = real_tk->cycle_interval;
John Stultz592913e2010-07-13 17:56:20 -07001369#else
1370 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
john stultz85240702007-05-08 00:27:59 -07001371#endif
john stultz85240702007-05-08 00:27:59 -07001372
John Stultzbf2ac312012-08-21 20:30:49 -04001373 /* Check if there's really nothing to do */
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001374 if (offset < real_tk->cycle_interval)
John Stultzbf2ac312012-08-21 20:30:49 -04001375 goto out;
1376
john stultza092ff02009-10-02 16:17:53 -07001377 /*
1378 * With NO_HZ we may have to accumulate many cycle_intervals
1379 * (think "ticks") worth of time at once. To do this efficiently,
1380 * we calculate the largest doubling multiple of cycle_intervals
Jim Cromie88b28ad2012-03-14 21:28:56 -06001381 * that is smaller than the offset. We then accumulate that
john stultza092ff02009-10-02 16:17:53 -07001382 * chunk in one go, and then try to consume the next smaller
1383 * doubled multiple.
john stultz85240702007-05-08 00:27:59 -07001384 */
John Stultz4e250fd2012-07-27 14:48:13 -04001385 shift = ilog2(offset) - ilog2(tk->cycle_interval);
john stultza092ff02009-10-02 16:17:53 -07001386 shift = max(0, shift);
Jim Cromie88b28ad2012-03-14 21:28:56 -06001387 /* Bound shift to one less than what overflows tick_length */
John Stultzea7cf492011-11-14 13:18:07 -08001388 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
john stultza092ff02009-10-02 16:17:53 -07001389 shift = min(shift, maxshift);
John Stultz4e250fd2012-07-27 14:48:13 -04001390 while (offset >= tk->cycle_interval) {
1391 offset = logarithmic_accumulation(tk, offset, shift);
1392 if (offset < tk->cycle_interval<<shift)
John Stultz830ec042010-03-18 14:47:30 -07001393 shift--;
john stultz85240702007-05-08 00:27:59 -07001394 }
1395
1396 /* correct the clock when NTP error is too big */
John Stultz4e250fd2012-07-27 14:48:13 -04001397 timekeeping_adjust(tk, offset);
john stultz85240702007-05-08 00:27:59 -07001398
John Stultz6a867a32010-04-06 14:30:51 -07001399 /*
John Stultz92bb1fc2012-09-04 15:38:12 -04001400 * XXX This can be killed once everyone converts
1401 * to the new update_vsyscall.
1402 */
1403 old_vsyscall_fixup(tk);
john stultz85240702007-05-08 00:27:59 -07001404
John Stultz6a867a32010-04-06 14:30:51 -07001405 /*
1406 * Finally, make sure that after the rounding
John Stultz1e75fa82012-07-13 01:21:53 -04001407 * xtime_nsec isn't larger than NSEC_PER_SEC
John Stultz6a867a32010-04-06 14:30:51 -07001408 */
John Stultz4e250fd2012-07-27 14:48:13 -04001409 accumulate_nsecs_to_secs(tk);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001410
Thomas Gleixnerca4523c2013-02-21 22:51:40 +00001411 write_seqcount_begin(&timekeeper_seq);
Thomas Gleixner7ec98e12013-02-21 22:51:39 +00001412 /* Update clock->cycle_last with the new value */
1413 clock->cycle_last = tk->cycle_last;
Thomas Gleixner48cdc132013-02-21 22:51:40 +00001414 /*
1415 * Update the real timekeeper.
1416 *
1417 * We could avoid this memcpy by switching pointers, but that
1418 * requires changes to all other timekeeper usage sites as
1419 * well, i.e. move the timekeeper pointer getter into the
1420 * spinlocked/seqcount protected sections. And we trade this
1421 * memcpy under the timekeeper_seq against one before we start
1422 * updating.
1423 */
1424 memcpy(real_tk, tk, sizeof(*tk));
David Vrabel04397fe92013-06-27 11:35:45 +01001425 timekeeping_update(real_tk, 0);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001426 write_seqcount_end(&timekeeper_seq);
Thomas Gleixnerca4523c2013-02-21 22:51:40 +00001427out:
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001428 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
john stultz85240702007-05-08 00:27:59 -07001429}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001430
1431/**
1432 * getboottime - Return the real time of system boot.
1433 * @ts: pointer to the timespec to be set
1434 *
John Stultzabb3a4e2011-02-14 17:52:09 -08001435 * Returns the wall-time of boot in a timespec.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001436 *
1437 * This is based on the wall_to_monotonic offset and the total suspend
1438 * time. Calls to settimeofday will affect the value returned (which
1439 * basically means that however wrong your real time clock is at boot time,
1440 * you get the right time here).
1441 */
1442void getboottime(struct timespec *ts)
1443{
John Stultz4e250fd2012-07-27 14:48:13 -04001444 struct timekeeper *tk = &timekeeper;
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001445 struct timespec boottime = {
John Stultz4e250fd2012-07-27 14:48:13 -04001446 .tv_sec = tk->wall_to_monotonic.tv_sec +
1447 tk->total_sleep_time.tv_sec,
1448 .tv_nsec = tk->wall_to_monotonic.tv_nsec +
1449 tk->total_sleep_time.tv_nsec
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001450 };
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001451
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001452 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001453}
Jason Wangc93d89f2010-01-27 19:13:40 +08001454EXPORT_SYMBOL_GPL(getboottime);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001455
John Stultzabb3a4e2011-02-14 17:52:09 -08001456/**
1457 * get_monotonic_boottime - Returns monotonic time since boot
1458 * @ts: pointer to the timespec to be set
1459 *
1460 * Returns the monotonic time since boot in a timespec.
1461 *
1462 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1463 * includes the time spent in suspend.
1464 */
1465void get_monotonic_boottime(struct timespec *ts)
1466{
John Stultz4e250fd2012-07-27 14:48:13 -04001467 struct timekeeper *tk = &timekeeper;
John Stultzabb3a4e2011-02-14 17:52:09 -08001468 struct timespec tomono, sleep;
John Stultzec145ba2012-09-11 19:26:03 -04001469 s64 nsec;
John Stultzabb3a4e2011-02-14 17:52:09 -08001470 unsigned int seq;
John Stultzabb3a4e2011-02-14 17:52:09 -08001471
1472 WARN_ON(timekeeping_suspended);
1473
1474 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001475 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -04001476 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -04001477 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -04001478 tomono = tk->wall_to_monotonic;
1479 sleep = tk->total_sleep_time;
John Stultzabb3a4e2011-02-14 17:52:09 -08001480
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001481 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultzabb3a4e2011-02-14 17:52:09 -08001482
John Stultzec145ba2012-09-11 19:26:03 -04001483 ts->tv_sec += tomono.tv_sec + sleep.tv_sec;
1484 ts->tv_nsec = 0;
1485 timespec_add_ns(ts, nsec + tomono.tv_nsec + sleep.tv_nsec);
John Stultzabb3a4e2011-02-14 17:52:09 -08001486}
1487EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1488
1489/**
1490 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1491 *
1492 * Returns the monotonic time since boot in a ktime
1493 *
1494 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1495 * includes the time spent in suspend.
1496 */
1497ktime_t ktime_get_boottime(void)
1498{
1499 struct timespec ts;
1500
1501 get_monotonic_boottime(&ts);
1502 return timespec_to_ktime(ts);
1503}
1504EXPORT_SYMBOL_GPL(ktime_get_boottime);
1505
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001506/**
1507 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1508 * @ts: pointer to the timespec to be converted
1509 */
1510void monotonic_to_bootbased(struct timespec *ts)
1511{
John Stultz4e250fd2012-07-27 14:48:13 -04001512 struct timekeeper *tk = &timekeeper;
1513
1514 *ts = timespec_add(*ts, tk->total_sleep_time);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001515}
Jason Wangc93d89f2010-01-27 19:13:40 +08001516EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
john stultz2c6b47d2007-07-24 17:47:43 -07001517
john stultz17c38b72007-07-24 18:38:34 -07001518unsigned long get_seconds(void)
1519{
John Stultz4e250fd2012-07-27 14:48:13 -04001520 struct timekeeper *tk = &timekeeper;
1521
1522 return tk->xtime_sec;
john stultz17c38b72007-07-24 18:38:34 -07001523}
1524EXPORT_SYMBOL(get_seconds);
1525
john stultzda15cfd2009-08-19 19:13:34 -07001526struct timespec __current_kernel_time(void)
1527{
John Stultz4e250fd2012-07-27 14:48:13 -04001528 struct timekeeper *tk = &timekeeper;
1529
1530 return tk_xtime(tk);
john stultzda15cfd2009-08-19 19:13:34 -07001531}
john stultz17c38b72007-07-24 18:38:34 -07001532
john stultz2c6b47d2007-07-24 17:47:43 -07001533struct timespec current_kernel_time(void)
1534{
John Stultz4e250fd2012-07-27 14:48:13 -04001535 struct timekeeper *tk = &timekeeper;
john stultz2c6b47d2007-07-24 17:47:43 -07001536 struct timespec now;
1537 unsigned long seq;
1538
1539 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001540 seq = read_seqcount_begin(&timekeeper_seq);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001541
John Stultz4e250fd2012-07-27 14:48:13 -04001542 now = tk_xtime(tk);
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001543 } while (read_seqcount_retry(&timekeeper_seq, seq));
john stultz2c6b47d2007-07-24 17:47:43 -07001544
1545 return now;
1546}
john stultz2c6b47d2007-07-24 17:47:43 -07001547EXPORT_SYMBOL(current_kernel_time);
john stultzda15cfd2009-08-19 19:13:34 -07001548
1549struct timespec get_monotonic_coarse(void)
1550{
John Stultz4e250fd2012-07-27 14:48:13 -04001551 struct timekeeper *tk = &timekeeper;
john stultzda15cfd2009-08-19 19:13:34 -07001552 struct timespec now, mono;
1553 unsigned long seq;
1554
1555 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001556 seq = read_seqcount_begin(&timekeeper_seq);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001557
John Stultz4e250fd2012-07-27 14:48:13 -04001558 now = tk_xtime(tk);
1559 mono = tk->wall_to_monotonic;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001560 } while (read_seqcount_retry(&timekeeper_seq, seq));
john stultzda15cfd2009-08-19 19:13:34 -07001561
1562 set_normalized_timespec(&now, now.tv_sec + mono.tv_sec,
1563 now.tv_nsec + mono.tv_nsec);
1564 return now;
1565}
Torben Hohn871cf1e2011-01-27 15:58:55 +01001566
1567/*
John Stultzd6ad4182012-02-28 16:50:11 -08001568 * Must hold jiffies_lock
Torben Hohn871cf1e2011-01-27 15:58:55 +01001569 */
1570void do_timer(unsigned long ticks)
1571{
1572 jiffies_64 += ticks;
1573 update_wall_time();
1574 calc_global_load(ticks);
1575}
Torben Hohn48cf76f72011-01-27 15:59:05 +01001576
1577/**
John Stultz314ac372011-02-14 18:43:08 -08001578 * get_xtime_and_monotonic_and_sleep_offset() - get xtime, wall_to_monotonic,
1579 * and sleep offsets.
Torben Hohn48cf76f72011-01-27 15:59:05 +01001580 * @xtim: pointer to timespec to be set with xtime
1581 * @wtom: pointer to timespec to be set with wall_to_monotonic
John Stultz314ac372011-02-14 18:43:08 -08001582 * @sleep: pointer to timespec to be set with time in suspend
Torben Hohn48cf76f72011-01-27 15:59:05 +01001583 */
John Stultz314ac372011-02-14 18:43:08 -08001584void get_xtime_and_monotonic_and_sleep_offset(struct timespec *xtim,
1585 struct timespec *wtom, struct timespec *sleep)
Torben Hohn48cf76f72011-01-27 15:59:05 +01001586{
John Stultz4e250fd2012-07-27 14:48:13 -04001587 struct timekeeper *tk = &timekeeper;
Torben Hohn48cf76f72011-01-27 15:59:05 +01001588 unsigned long seq;
1589
1590 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001591 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -04001592 *xtim = tk_xtime(tk);
1593 *wtom = tk->wall_to_monotonic;
1594 *sleep = tk->total_sleep_time;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001595 } while (read_seqcount_retry(&timekeeper_seq, seq));
Torben Hohn48cf76f72011-01-27 15:59:05 +01001596}
Torben Hohnf0af911a92011-01-27 15:59:10 +01001597
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001598#ifdef CONFIG_HIGH_RES_TIMERS
1599/**
1600 * ktime_get_update_offsets - hrtimer helper
1601 * @offs_real: pointer to storage for monotonic -> realtime offset
1602 * @offs_boot: pointer to storage for monotonic -> boottime offset
1603 *
1604 * Returns current monotonic time and updates the offsets
1605 * Called from hrtimer_interupt() or retrigger_next_event()
1606 */
John Stultz90adda92013-01-21 17:00:11 -08001607ktime_t ktime_get_update_offsets(ktime_t *offs_real, ktime_t *offs_boot,
1608 ktime_t *offs_tai)
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001609{
John Stultz4e250fd2012-07-27 14:48:13 -04001610 struct timekeeper *tk = &timekeeper;
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001611 ktime_t now;
1612 unsigned int seq;
1613 u64 secs, nsecs;
1614
1615 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001616 seq = read_seqcount_begin(&timekeeper_seq);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001617
John Stultz4e250fd2012-07-27 14:48:13 -04001618 secs = tk->xtime_sec;
1619 nsecs = timekeeping_get_ns(tk);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001620
John Stultz4e250fd2012-07-27 14:48:13 -04001621 *offs_real = tk->offs_real;
1622 *offs_boot = tk->offs_boot;
John Stultz90adda92013-01-21 17:00:11 -08001623 *offs_tai = tk->offs_tai;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001624 } while (read_seqcount_retry(&timekeeper_seq, seq));
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001625
1626 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1627 now = ktime_sub(now, *offs_real);
1628 return now;
1629}
1630#endif
1631
Torben Hohnf0af911a92011-01-27 15:59:10 +01001632/**
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001633 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1634 */
1635ktime_t ktime_get_monotonic_offset(void)
1636{
John Stultz4e250fd2012-07-27 14:48:13 -04001637 struct timekeeper *tk = &timekeeper;
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001638 unsigned long seq;
1639 struct timespec wtom;
1640
1641 do {
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001642 seq = read_seqcount_begin(&timekeeper_seq);
John Stultz4e250fd2012-07-27 14:48:13 -04001643 wtom = tk->wall_to_monotonic;
Thomas Gleixner9a7a71b2013-02-21 22:51:38 +00001644 } while (read_seqcount_retry(&timekeeper_seq, seq));
John Stultz70471f22011-11-14 12:48:10 -08001645
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001646 return timespec_to_ktime(wtom);
1647}
John Stultza80b83b2012-02-03 00:19:07 -08001648EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1649
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001650/**
John Stultzaa6f9c592013-03-22 11:31:29 -07001651 * do_adjtimex() - Accessor function to NTP __do_adjtimex function
1652 */
1653int do_adjtimex(struct timex *txc)
1654{
John Stultz0b5154f2013-03-22 14:20:03 -07001655 struct timekeeper *tk = &timekeeper;
John Stultz06c017f2013-03-22 11:37:28 -07001656 unsigned long flags;
John Stultz87ace392013-03-22 12:28:15 -07001657 struct timespec ts;
John Stultz4e8f8b32013-04-10 12:41:49 -07001658 s32 orig_tai, tai;
John Stultze4085692013-03-22 12:08:52 -07001659 int ret;
1660
1661 /* Validate the data before disabling interrupts */
1662 ret = ntp_validate_timex(txc);
1663 if (ret)
1664 return ret;
1665
John Stultzcef90372013-03-22 15:04:13 -07001666 if (txc->modes & ADJ_SETOFFSET) {
1667 struct timespec delta;
1668 delta.tv_sec = txc->time.tv_sec;
1669 delta.tv_nsec = txc->time.tv_usec;
1670 if (!(txc->modes & ADJ_NANO))
1671 delta.tv_nsec *= 1000;
1672 ret = timekeeping_inject_offset(&delta);
1673 if (ret)
1674 return ret;
1675 }
1676
John Stultz87ace392013-03-22 12:28:15 -07001677 getnstimeofday(&ts);
John Stultzaa6f9c592013-03-22 11:31:29 -07001678
John Stultz06c017f2013-03-22 11:37:28 -07001679 raw_spin_lock_irqsave(&timekeeper_lock, flags);
1680 write_seqcount_begin(&timekeeper_seq);
1681
John Stultz4e8f8b32013-04-10 12:41:49 -07001682 orig_tai = tai = tk->tai_offset;
John Stultz87ace392013-03-22 12:28:15 -07001683 ret = __do_adjtimex(txc, &ts, &tai);
1684
John Stultz4e8f8b32013-04-10 12:41:49 -07001685 if (tai != orig_tai) {
1686 __timekeeping_set_tai_offset(tk, tai);
1687 clock_was_set_delayed();
1688 }
John Stultz06c017f2013-03-22 11:37:28 -07001689 write_seqcount_end(&timekeeper_seq);
1690 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
1691
John Stultz87ace392013-03-22 12:28:15 -07001692 return ret;
1693}
John Stultzaa6f9c592013-03-22 11:31:29 -07001694
1695#ifdef CONFIG_NTP_PPS
1696/**
1697 * hardpps() - Accessor function to NTP __hardpps function
1698 */
1699void hardpps(const struct timespec *phase_ts, const struct timespec *raw_ts)
1700{
John Stultz06c017f2013-03-22 11:37:28 -07001701 unsigned long flags;
1702
1703 raw_spin_lock_irqsave(&timekeeper_lock, flags);
1704 write_seqcount_begin(&timekeeper_seq);
1705
John Stultzaa6f9c592013-03-22 11:31:29 -07001706 __hardpps(phase_ts, raw_ts);
John Stultz06c017f2013-03-22 11:37:28 -07001707
1708 write_seqcount_end(&timekeeper_seq);
1709 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
John Stultzaa6f9c592013-03-22 11:31:29 -07001710}
1711EXPORT_SYMBOL(hardpps);
1712#endif
1713
1714/**
Torben Hohnf0af911a92011-01-27 15:59:10 +01001715 * xtime_update() - advances the timekeeping infrastructure
1716 * @ticks: number of ticks, that have elapsed since the last call.
1717 *
1718 * Must be called with interrupts disabled.
1719 */
1720void xtime_update(unsigned long ticks)
1721{
John Stultzd6ad4182012-02-28 16:50:11 -08001722 write_seqlock(&jiffies_lock);
Torben Hohnf0af911a92011-01-27 15:59:10 +01001723 do_timer(ticks);
John Stultzd6ad4182012-02-28 16:50:11 -08001724 write_sequnlock(&jiffies_lock);
Torben Hohnf0af911a92011-01-27 15:59:10 +01001725}