blob: 02c19d3d8e0dd38fa76b0ccce2594449eca490db [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>
john stultz85240702007-05-08 00:27:59 -070024
Martin Schwidefsky155ec602009-08-14 15:47:26 +020025
H Hartley Sweetenafa14e72011-01-11 17:59:38 -060026static struct timekeeper timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020027
John Stultz8fcce542011-11-14 11:46:39 -080028/*
29 * This read-write spinlock protects us from races in SMP while
30 * playing with xtime.
31 */
32__cacheline_aligned_in_smp DEFINE_SEQLOCK(xtime_lock);
33
John Stultz8fcce542011-11-14 11:46:39 -080034/* flag for if timekeeping is suspended */
35int __read_mostly timekeeping_suspended;
36
John Stultz1e75fa82012-07-13 01:21:53 -040037static inline void tk_normalize_xtime(struct timekeeper *tk)
38{
39 while (tk->xtime_nsec >= ((u64)NSEC_PER_SEC << tk->shift)) {
40 tk->xtime_nsec -= (u64)NSEC_PER_SEC << tk->shift;
41 tk->xtime_sec++;
42 }
43}
John Stultz8fcce542011-11-14 11:46:39 -080044
John Stultz1e75fa82012-07-13 01:21:53 -040045static struct timespec tk_xtime(struct timekeeper *tk)
46{
47 struct timespec ts;
48
49 ts.tv_sec = tk->xtime_sec;
50 ts.tv_nsec = (long)(tk->xtime_nsec >> tk->shift);
51 return ts;
52}
53
54static void tk_set_xtime(struct timekeeper *tk, const struct timespec *ts)
55{
56 tk->xtime_sec = ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040057 tk->xtime_nsec = (u64)ts->tv_nsec << tk->shift;
John Stultz1e75fa82012-07-13 01:21:53 -040058}
59
60static void tk_xtime_add(struct timekeeper *tk, const struct timespec *ts)
61{
62 tk->xtime_sec += ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040063 tk->xtime_nsec += (u64)ts->tv_nsec << tk->shift;
John Stultz784ffcb2012-08-21 20:30:46 -040064 tk_normalize_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -040065}
John Stultz8fcce542011-11-14 11:46:39 -080066
John Stultz6d0ef902012-07-27 14:48:12 -040067static void tk_set_wall_to_mono(struct timekeeper *tk, struct timespec wtm)
68{
69 struct timespec tmp;
70
71 /*
72 * Verify consistency of: offset_real = -wall_to_monotonic
73 * before modifying anything
74 */
75 set_normalized_timespec(&tmp, -tk->wall_to_monotonic.tv_sec,
76 -tk->wall_to_monotonic.tv_nsec);
77 WARN_ON_ONCE(tk->offs_real.tv64 != timespec_to_ktime(tmp).tv64);
78 tk->wall_to_monotonic = wtm;
79 set_normalized_timespec(&tmp, -wtm.tv_sec, -wtm.tv_nsec);
80 tk->offs_real = timespec_to_ktime(tmp);
81}
82
83static void tk_set_sleep_time(struct timekeeper *tk, struct timespec t)
84{
85 /* Verify consistency before modifying */
86 WARN_ON_ONCE(tk->offs_boot.tv64 != timespec_to_ktime(tk->total_sleep_time).tv64);
87
88 tk->total_sleep_time = t;
89 tk->offs_boot = timespec_to_ktime(t);
90}
91
Martin Schwidefsky155ec602009-08-14 15:47:26 +020092/**
93 * timekeeper_setup_internals - Set up internals to use clocksource clock.
94 *
95 * @clock: Pointer to clocksource.
96 *
97 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
98 * pair and interval request.
99 *
100 * Unless you're the timekeeping code, you should not be using this!
101 */
John Stultzf726a692012-07-13 01:21:57 -0400102static void tk_setup_internals(struct timekeeper *tk, struct clocksource *clock)
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200103{
104 cycle_t interval;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700105 u64 tmp, ntpinterval;
John Stultz1e75fa82012-07-13 01:21:53 -0400106 struct clocksource *old_clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200107
John Stultzf726a692012-07-13 01:21:57 -0400108 old_clock = tk->clock;
109 tk->clock = clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200110 clock->cycle_last = clock->read(clock);
111
112 /* Do the ns -> cycle conversion first, using original mult */
113 tmp = NTP_INTERVAL_LENGTH;
114 tmp <<= clock->shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700115 ntpinterval = tmp;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200116 tmp += clock->mult/2;
117 do_div(tmp, clock->mult);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200118 if (tmp == 0)
119 tmp = 1;
120
121 interval = (cycle_t) tmp;
John Stultzf726a692012-07-13 01:21:57 -0400122 tk->cycle_interval = interval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200123
124 /* Go back from cycles -> shifted ns */
John Stultzf726a692012-07-13 01:21:57 -0400125 tk->xtime_interval = (u64) interval * clock->mult;
126 tk->xtime_remainder = ntpinterval - tk->xtime_interval;
127 tk->raw_interval =
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200128 ((u64) interval * clock->mult) >> clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200129
John Stultz1e75fa82012-07-13 01:21:53 -0400130 /* if changing clocks, convert xtime_nsec shift units */
131 if (old_clock) {
132 int shift_change = clock->shift - old_clock->shift;
133 if (shift_change < 0)
John Stultzf726a692012-07-13 01:21:57 -0400134 tk->xtime_nsec >>= -shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400135 else
John Stultzf726a692012-07-13 01:21:57 -0400136 tk->xtime_nsec <<= shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400137 }
John Stultzf726a692012-07-13 01:21:57 -0400138 tk->shift = clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200139
John Stultzf726a692012-07-13 01:21:57 -0400140 tk->ntp_error = 0;
141 tk->ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200142
143 /*
144 * The timekeeper keeps its own mult values for the currently
145 * active clocksource. These value will be adjusted via NTP
146 * to counteract clock drifting.
147 */
John Stultzf726a692012-07-13 01:21:57 -0400148 tk->mult = clock->mult;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200149}
john stultz85240702007-05-08 00:27:59 -0700150
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200151/* Timekeeper helper functions. */
John Stultzf726a692012-07-13 01:21:57 -0400152static inline s64 timekeeping_get_ns(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200153{
154 cycle_t cycle_now, cycle_delta;
155 struct clocksource *clock;
John Stultz1e75fa82012-07-13 01:21:53 -0400156 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200157
158 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400159 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200160 cycle_now = clock->read(clock);
161
162 /* calculate the delta since the last update_wall_time: */
163 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
164
John Stultzf726a692012-07-13 01:21:57 -0400165 nsec = cycle_delta * tk->mult + tk->xtime_nsec;
166 nsec >>= tk->shift;
John Stultzf2a5a082012-07-13 01:21:55 -0400167
168 /* If arch requires, add in gettimeoffset() */
169 return nsec + arch_gettimeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200170}
171
John Stultzf726a692012-07-13 01:21:57 -0400172static inline s64 timekeeping_get_ns_raw(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200173{
174 cycle_t cycle_now, cycle_delta;
175 struct clocksource *clock;
John Stultzf2a5a082012-07-13 01:21:55 -0400176 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200177
178 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400179 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200180 cycle_now = clock->read(clock);
181
182 /* calculate the delta since the last update_wall_time: */
183 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
184
John Stultzf2a5a082012-07-13 01:21:55 -0400185 /* convert delta to nanoseconds. */
186 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
187
188 /* If arch requires, add in gettimeoffset() */
189 return nsec + arch_gettimeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200190}
191
Thomas Gleixnercc062682011-11-13 23:19:49 +0000192/* must hold write on timekeeper.lock */
John Stultzf726a692012-07-13 01:21:57 -0400193static void timekeeping_update(struct timekeeper *tk, bool clearntp)
Thomas Gleixnercc062682011-11-13 23:19:49 +0000194{
John Stultz1e75fa82012-07-13 01:21:53 -0400195 struct timespec xt;
196
Thomas Gleixnercc062682011-11-13 23:19:49 +0000197 if (clearntp) {
John Stultzf726a692012-07-13 01:21:57 -0400198 tk->ntp_error = 0;
Thomas Gleixnercc062682011-11-13 23:19:49 +0000199 ntp_clear();
200 }
John Stultzf726a692012-07-13 01:21:57 -0400201 xt = tk_xtime(tk);
202 update_vsyscall(&xt, &tk->wall_to_monotonic, tk->clock, tk->mult);
Thomas Gleixnercc062682011-11-13 23:19:49 +0000203}
204
john stultz85240702007-05-08 00:27:59 -0700205/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200206 * timekeeping_forward_now - update clock to the current time
john stultz85240702007-05-08 00:27:59 -0700207 *
Roman Zippel9a055112008-08-20 16:37:28 -0700208 * Forward the current clock to update its state since the last call to
209 * update_wall_time(). This is useful before significant clock changes,
210 * as it avoids having to deal with this time offset explicitly.
john stultz85240702007-05-08 00:27:59 -0700211 */
John Stultzf726a692012-07-13 01:21:57 -0400212static void timekeeping_forward_now(struct timekeeper *tk)
john stultz85240702007-05-08 00:27:59 -0700213{
214 cycle_t cycle_now, cycle_delta;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200215 struct clocksource *clock;
Roman Zippel9a055112008-08-20 16:37:28 -0700216 s64 nsec;
john stultz85240702007-05-08 00:27:59 -0700217
John Stultzf726a692012-07-13 01:21:57 -0400218 clock = tk->clock;
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200219 cycle_now = clock->read(clock);
john stultz85240702007-05-08 00:27:59 -0700220 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
Roman Zippel9a055112008-08-20 16:37:28 -0700221 clock->cycle_last = cycle_now;
john stultz85240702007-05-08 00:27:59 -0700222
John Stultzf726a692012-07-13 01:21:57 -0400223 tk->xtime_nsec += cycle_delta * tk->mult;
john stultz7d275582009-05-01 13:10:26 -0700224
225 /* If arch requires, add in gettimeoffset() */
Andreas Schwab85dc8f02012-08-21 20:30:47 -0400226 tk->xtime_nsec += (u64)arch_gettimeoffset() << tk->shift;
john stultz7d275582009-05-01 13:10:26 -0700227
John Stultzf726a692012-07-13 01:21:57 -0400228 tk_normalize_xtime(tk);
John Stultz2d422442008-08-20 16:37:30 -0700229
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200230 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
John Stultzf726a692012-07-13 01:21:57 -0400231 timespec_add_ns(&tk->raw_time, nsec);
john stultz85240702007-05-08 00:27:59 -0700232}
233
234/**
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100235 * getnstimeofday - Returns the time of day in a timespec
john stultz85240702007-05-08 00:27:59 -0700236 * @ts: pointer to the timespec to be set
237 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100238 * Returns the time of day in a timespec.
john stultz85240702007-05-08 00:27:59 -0700239 */
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100240void getnstimeofday(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700241{
John Stultz4e250fd2012-07-27 14:48:13 -0400242 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700243 unsigned long seq;
John Stultz1e75fa82012-07-13 01:21:53 -0400244 s64 nsecs = 0;
john stultz85240702007-05-08 00:27:59 -0700245
Thomas Gleixner1c5745a2008-12-22 23:05:28 +0100246 WARN_ON(timekeeping_suspended);
247
john stultz85240702007-05-08 00:27:59 -0700248 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400249 seq = read_seqbegin(&tk->lock);
john stultz85240702007-05-08 00:27:59 -0700250
John Stultz4e250fd2012-07-27 14:48:13 -0400251 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400252 nsecs = timekeeping_get_ns(tk);
john stultz85240702007-05-08 00:27:59 -0700253
John Stultz4e250fd2012-07-27 14:48:13 -0400254 } while (read_seqretry(&tk->lock, seq));
john stultz85240702007-05-08 00:27:59 -0700255
John Stultzec145ba2012-09-11 19:26:03 -0400256 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700257 timespec_add_ns(ts, nsecs);
258}
john stultz85240702007-05-08 00:27:59 -0700259EXPORT_SYMBOL(getnstimeofday);
260
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200261ktime_t ktime_get(void)
262{
John Stultz4e250fd2012-07-27 14:48:13 -0400263 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200264 unsigned int seq;
265 s64 secs, nsecs;
266
267 WARN_ON(timekeeping_suspended);
268
269 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400270 seq = read_seqbegin(&tk->lock);
271 secs = tk->xtime_sec + tk->wall_to_monotonic.tv_sec;
272 nsecs = timekeeping_get_ns(tk) + tk->wall_to_monotonic.tv_nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200273
John Stultz4e250fd2012-07-27 14:48:13 -0400274 } while (read_seqretry(&tk->lock, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200275 /*
276 * Use ktime_set/ktime_add_ns to create a proper ktime on
277 * 32-bit architectures without CONFIG_KTIME_SCALAR.
278 */
279 return ktime_add_ns(ktime_set(secs, 0), nsecs);
280}
281EXPORT_SYMBOL_GPL(ktime_get);
282
283/**
284 * ktime_get_ts - get the monotonic clock in timespec format
285 * @ts: pointer to timespec variable
286 *
287 * The function calculates the monotonic clock from the realtime
288 * clock and the wall_to_monotonic offset and stores the result
289 * in normalized timespec format in the variable pointed to by @ts.
290 */
291void ktime_get_ts(struct timespec *ts)
292{
John Stultz4e250fd2012-07-27 14:48:13 -0400293 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200294 struct timespec tomono;
John Stultzec145ba2012-09-11 19:26:03 -0400295 s64 nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200296 unsigned int seq;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200297
298 WARN_ON(timekeeping_suspended);
299
300 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400301 seq = read_seqbegin(&tk->lock);
302 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400303 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -0400304 tomono = tk->wall_to_monotonic;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200305
John Stultz4e250fd2012-07-27 14:48:13 -0400306 } while (read_seqretry(&tk->lock, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200307
John Stultzec145ba2012-09-11 19:26:03 -0400308 ts->tv_sec += tomono.tv_sec;
309 ts->tv_nsec = 0;
310 timespec_add_ns(ts, nsec + tomono.tv_nsec);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200311}
312EXPORT_SYMBOL_GPL(ktime_get_ts);
313
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800314#ifdef CONFIG_NTP_PPS
315
316/**
317 * getnstime_raw_and_real - get day and raw monotonic time in timespec format
318 * @ts_raw: pointer to the timespec to be set to raw monotonic time
319 * @ts_real: pointer to the timespec to be set to the time of day
320 *
321 * This function reads both the time of day and raw monotonic time at the
322 * same time atomically and stores the resulting timestamps in timespec
323 * format.
324 */
325void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
326{
John Stultz4e250fd2012-07-27 14:48:13 -0400327 struct timekeeper *tk = &timekeeper;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800328 unsigned long seq;
329 s64 nsecs_raw, nsecs_real;
330
331 WARN_ON_ONCE(timekeeping_suspended);
332
333 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400334 seq = read_seqbegin(&tk->lock);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800335
John Stultz4e250fd2012-07-27 14:48:13 -0400336 *ts_raw = tk->raw_time;
337 ts_real->tv_sec = tk->xtime_sec;
John Stultz1e75fa82012-07-13 01:21:53 -0400338 ts_real->tv_nsec = 0;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800339
John Stultz4e250fd2012-07-27 14:48:13 -0400340 nsecs_raw = timekeeping_get_ns_raw(tk);
341 nsecs_real = timekeeping_get_ns(tk);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800342
John Stultz4e250fd2012-07-27 14:48:13 -0400343 } while (read_seqretry(&tk->lock, seq));
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800344
345 timespec_add_ns(ts_raw, nsecs_raw);
346 timespec_add_ns(ts_real, nsecs_real);
347}
348EXPORT_SYMBOL(getnstime_raw_and_real);
349
350#endif /* CONFIG_NTP_PPS */
351
john stultz85240702007-05-08 00:27:59 -0700352/**
353 * do_gettimeofday - Returns the time of day in a timeval
354 * @tv: pointer to the timeval to be set
355 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100356 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -0700357 */
358void do_gettimeofday(struct timeval *tv)
359{
360 struct timespec now;
361
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100362 getnstimeofday(&now);
john stultz85240702007-05-08 00:27:59 -0700363 tv->tv_sec = now.tv_sec;
364 tv->tv_usec = now.tv_nsec/1000;
365}
john stultz85240702007-05-08 00:27:59 -0700366EXPORT_SYMBOL(do_gettimeofday);
Richard Cochrand239f492012-04-27 10:12:42 +0200367
john stultz85240702007-05-08 00:27:59 -0700368/**
369 * do_settimeofday - Sets the time of day
370 * @tv: pointer to the timespec variable containing the new time
371 *
372 * Sets the time of day to the new time and update NTP and notify hrtimers
373 */
Richard Cochran1e6d7672011-02-01 13:50:58 +0000374int do_settimeofday(const struct timespec *tv)
john stultz85240702007-05-08 00:27:59 -0700375{
John Stultz4e250fd2012-07-27 14:48:13 -0400376 struct timekeeper *tk = &timekeeper;
John Stultz1e75fa82012-07-13 01:21:53 -0400377 struct timespec ts_delta, xt;
John Stultz92c1d3e2011-11-14 14:05:44 -0800378 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700379
John Stultzcee58482012-08-31 13:30:06 -0400380 if (!timespec_valid_strict(tv))
john stultz85240702007-05-08 00:27:59 -0700381 return -EINVAL;
382
John Stultz4e250fd2012-07-27 14:48:13 -0400383 write_seqlock_irqsave(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700384
John Stultz4e250fd2012-07-27 14:48:13 -0400385 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700386
John Stultz4e250fd2012-07-27 14:48:13 -0400387 xt = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400388 ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
389 ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
390
John Stultz4e250fd2012-07-27 14:48:13 -0400391 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, ts_delta));
john stultz85240702007-05-08 00:27:59 -0700392
John Stultz4e250fd2012-07-27 14:48:13 -0400393 tk_set_xtime(tk, tv);
John Stultz1e75fa82012-07-13 01:21:53 -0400394
John Stultz4e250fd2012-07-27 14:48:13 -0400395 timekeeping_update(tk, true);
john stultz85240702007-05-08 00:27:59 -0700396
John Stultz4e250fd2012-07-27 14:48:13 -0400397 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700398
399 /* signal hrtimers about time change */
400 clock_was_set();
401
402 return 0;
403}
john stultz85240702007-05-08 00:27:59 -0700404EXPORT_SYMBOL(do_settimeofday);
405
John Stultzc528f7c2011-02-01 13:52:17 +0000406/**
407 * timekeeping_inject_offset - Adds or subtracts from the current time.
408 * @tv: pointer to the timespec variable containing the offset
409 *
410 * Adds or subtracts an offset value from the current time.
411 */
412int timekeeping_inject_offset(struct timespec *ts)
413{
John Stultz4e250fd2012-07-27 14:48:13 -0400414 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800415 unsigned long flags;
John Stultz4e8b1452012-08-08 15:36:20 -0400416 struct timespec tmp;
417 int ret = 0;
John Stultzc528f7c2011-02-01 13:52:17 +0000418
419 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
420 return -EINVAL;
421
John Stultz4e250fd2012-07-27 14:48:13 -0400422 write_seqlock_irqsave(&tk->lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000423
John Stultz4e250fd2012-07-27 14:48:13 -0400424 timekeeping_forward_now(tk);
John Stultzc528f7c2011-02-01 13:52:17 +0000425
John Stultz4e8b1452012-08-08 15:36:20 -0400426 /* Make sure the proposed value is valid */
427 tmp = timespec_add(tk_xtime(tk), *ts);
John Stultzcee58482012-08-31 13:30:06 -0400428 if (!timespec_valid_strict(&tmp)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400429 ret = -EINVAL;
430 goto error;
431 }
John Stultz1e75fa82012-07-13 01:21:53 -0400432
John Stultz4e250fd2012-07-27 14:48:13 -0400433 tk_xtime_add(tk, ts);
434 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *ts));
John Stultzc528f7c2011-02-01 13:52:17 +0000435
John Stultz4e8b1452012-08-08 15:36:20 -0400436error: /* even if we error out, we forwarded the time, so call update */
John Stultz4e250fd2012-07-27 14:48:13 -0400437 timekeeping_update(tk, true);
John Stultzc528f7c2011-02-01 13:52:17 +0000438
John Stultz4e250fd2012-07-27 14:48:13 -0400439 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000440
441 /* signal hrtimers about time change */
442 clock_was_set();
443
John Stultz4e8b1452012-08-08 15:36:20 -0400444 return ret;
John Stultzc528f7c2011-02-01 13:52:17 +0000445}
446EXPORT_SYMBOL(timekeeping_inject_offset);
447
john stultz85240702007-05-08 00:27:59 -0700448/**
449 * change_clocksource - Swaps clocksources if a new one is available
450 *
451 * Accumulates current time interval and initializes new clocksource
452 */
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200453static int change_clocksource(void *data)
john stultz85240702007-05-08 00:27:59 -0700454{
John Stultz4e250fd2012-07-27 14:48:13 -0400455 struct timekeeper *tk = &timekeeper;
Magnus Damm4614e6a2009-04-21 12:24:02 -0700456 struct clocksource *new, *old;
John Stultzf695cf92012-03-14 16:38:15 -0700457 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700458
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200459 new = (struct clocksource *) data;
john stultz85240702007-05-08 00:27:59 -0700460
John Stultz4e250fd2012-07-27 14:48:13 -0400461 write_seqlock_irqsave(&tk->lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -0700462
John Stultz4e250fd2012-07-27 14:48:13 -0400463 timekeeping_forward_now(tk);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200464 if (!new->enable || new->enable(new) == 0) {
John Stultz4e250fd2012-07-27 14:48:13 -0400465 old = tk->clock;
466 tk_setup_internals(tk, new);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200467 if (old->disable)
468 old->disable(old);
469 }
John Stultz4e250fd2012-07-27 14:48:13 -0400470 timekeeping_update(tk, true);
John Stultzf695cf92012-03-14 16:38:15 -0700471
John Stultz4e250fd2012-07-27 14:48:13 -0400472 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -0700473
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200474 return 0;
475}
john stultz85240702007-05-08 00:27:59 -0700476
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200477/**
478 * timekeeping_notify - Install a new clock source
479 * @clock: pointer to the clock source
480 *
481 * This function is called from clocksource.c after a new, better clock
482 * source has been registered. The caller holds the clocksource_mutex.
483 */
484void timekeeping_notify(struct clocksource *clock)
485{
John Stultz4e250fd2012-07-27 14:48:13 -0400486 struct timekeeper *tk = &timekeeper;
487
488 if (tk->clock == clock)
Magnus Damm4614e6a2009-04-21 12:24:02 -0700489 return;
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200490 stop_machine(change_clocksource, clock, NULL);
john stultz85240702007-05-08 00:27:59 -0700491 tick_clock_notify();
john stultz85240702007-05-08 00:27:59 -0700492}
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200493
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200494/**
495 * ktime_get_real - get the real (wall-) time in ktime_t format
496 *
497 * returns the time in ktime_t format
498 */
499ktime_t ktime_get_real(void)
500{
501 struct timespec now;
502
503 getnstimeofday(&now);
504
505 return timespec_to_ktime(now);
506}
507EXPORT_SYMBOL_GPL(ktime_get_real);
john stultz85240702007-05-08 00:27:59 -0700508
509/**
John Stultz2d422442008-08-20 16:37:30 -0700510 * getrawmonotonic - Returns the raw monotonic time in a timespec
511 * @ts: pointer to the timespec to be set
512 *
513 * Returns the raw monotonic time (completely un-modified by ntp)
514 */
515void getrawmonotonic(struct timespec *ts)
516{
John Stultz4e250fd2012-07-27 14:48:13 -0400517 struct timekeeper *tk = &timekeeper;
John Stultz2d422442008-08-20 16:37:30 -0700518 unsigned long seq;
519 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -0700520
521 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400522 seq = read_seqbegin(&tk->lock);
523 nsecs = timekeeping_get_ns_raw(tk);
524 *ts = tk->raw_time;
John Stultz2d422442008-08-20 16:37:30 -0700525
John Stultz4e250fd2012-07-27 14:48:13 -0400526 } while (read_seqretry(&tk->lock, seq));
John Stultz2d422442008-08-20 16:37:30 -0700527
528 timespec_add_ns(ts, nsecs);
529}
530EXPORT_SYMBOL(getrawmonotonic);
531
John Stultz2d422442008-08-20 16:37:30 -0700532/**
Li Zefancf4fc6c2008-02-08 04:19:24 -0800533 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -0700534 */
Li Zefancf4fc6c2008-02-08 04:19:24 -0800535int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -0700536{
John Stultz4e250fd2012-07-27 14:48:13 -0400537 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700538 unsigned long seq;
539 int ret;
540
541 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400542 seq = read_seqbegin(&tk->lock);
john stultz85240702007-05-08 00:27:59 -0700543
John Stultz4e250fd2012-07-27 14:48:13 -0400544 ret = tk->clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -0700545
John Stultz4e250fd2012-07-27 14:48:13 -0400546 } while (read_seqretry(&tk->lock, seq));
john stultz85240702007-05-08 00:27:59 -0700547
548 return ret;
549}
550
551/**
Jon Hunter98962462009-08-18 12:45:10 -0500552 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
Jon Hunter98962462009-08-18 12:45:10 -0500553 */
554u64 timekeeping_max_deferment(void)
555{
John Stultz4e250fd2012-07-27 14:48:13 -0400556 struct timekeeper *tk = &timekeeper;
John Stultz70471f22011-11-14 12:48:10 -0800557 unsigned long seq;
558 u64 ret;
John Stultz42e71e82012-07-13 01:21:51 -0400559
John Stultz70471f22011-11-14 12:48:10 -0800560 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400561 seq = read_seqbegin(&tk->lock);
John Stultz70471f22011-11-14 12:48:10 -0800562
John Stultz4e250fd2012-07-27 14:48:13 -0400563 ret = tk->clock->max_idle_ns;
John Stultz70471f22011-11-14 12:48:10 -0800564
John Stultz4e250fd2012-07-27 14:48:13 -0400565 } while (read_seqretry(&tk->lock, seq));
John Stultz70471f22011-11-14 12:48:10 -0800566
567 return ret;
Jon Hunter98962462009-08-18 12:45:10 -0500568}
569
570/**
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200571 * read_persistent_clock - Return time from the persistent clock.
john stultz85240702007-05-08 00:27:59 -0700572 *
573 * Weak dummy function for arches that do not yet support it.
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200574 * Reads the time from the battery backed persistent clock.
575 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
john stultz85240702007-05-08 00:27:59 -0700576 *
577 * XXX - Do be sure to remove it once all arches implement it.
578 */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200579void __attribute__((weak)) read_persistent_clock(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700580{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200581 ts->tv_sec = 0;
582 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700583}
584
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200585/**
586 * read_boot_clock - Return time of the system start.
587 *
588 * Weak dummy function for arches that do not yet support it.
589 * Function to read the exact time the system has been started.
590 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
591 *
592 * XXX - Do be sure to remove it once all arches implement it.
593 */
594void __attribute__((weak)) read_boot_clock(struct timespec *ts)
595{
596 ts->tv_sec = 0;
597 ts->tv_nsec = 0;
598}
599
john stultz85240702007-05-08 00:27:59 -0700600/*
601 * timekeeping_init - Initializes the clocksource and common timekeeping values
602 */
603void __init timekeeping_init(void)
604{
John Stultz4e250fd2012-07-27 14:48:13 -0400605 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200606 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700607 unsigned long flags;
John Stultz6d0ef902012-07-27 14:48:12 -0400608 struct timespec now, boot, tmp;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200609
610 read_persistent_clock(&now);
John Stultzcee58482012-08-31 13:30:06 -0400611 if (!timespec_valid_strict(&now)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400612 pr_warn("WARNING: Persistent clock returned invalid value!\n"
613 " Check your CMOS/BIOS settings.\n");
614 now.tv_sec = 0;
615 now.tv_nsec = 0;
616 }
617
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200618 read_boot_clock(&boot);
John Stultzcee58482012-08-31 13:30:06 -0400619 if (!timespec_valid_strict(&boot)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400620 pr_warn("WARNING: Boot clock returned invalid value!\n"
621 " Check your CMOS/BIOS settings.\n");
622 boot.tv_sec = 0;
623 boot.tv_nsec = 0;
624 }
john stultz85240702007-05-08 00:27:59 -0700625
John Stultz4e250fd2012-07-27 14:48:13 -0400626 seqlock_init(&tk->lock);
John Stultz70471f22011-11-14 12:48:10 -0800627
Roman Zippel7dffa3c2008-05-01 04:34:41 -0700628 ntp_init();
john stultz85240702007-05-08 00:27:59 -0700629
John Stultz4e250fd2012-07-27 14:48:13 -0400630 write_seqlock_irqsave(&tk->lock, flags);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200631 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200632 if (clock->enable)
633 clock->enable(clock);
John Stultz4e250fd2012-07-27 14:48:13 -0400634 tk_setup_internals(tk, clock);
john stultz85240702007-05-08 00:27:59 -0700635
John Stultz4e250fd2012-07-27 14:48:13 -0400636 tk_set_xtime(tk, &now);
637 tk->raw_time.tv_sec = 0;
638 tk->raw_time.tv_nsec = 0;
John Stultz1e75fa82012-07-13 01:21:53 -0400639 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
John Stultz4e250fd2012-07-27 14:48:13 -0400640 boot = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400641
John Stultz6d0ef902012-07-27 14:48:12 -0400642 set_normalized_timespec(&tmp, -boot.tv_sec, -boot.tv_nsec);
John Stultz4e250fd2012-07-27 14:48:13 -0400643 tk_set_wall_to_mono(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400644
645 tmp.tv_sec = 0;
646 tmp.tv_nsec = 0;
John Stultz4e250fd2012-07-27 14:48:13 -0400647 tk_set_sleep_time(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400648
John Stultz4e250fd2012-07-27 14:48:13 -0400649 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700650}
651
john stultz85240702007-05-08 00:27:59 -0700652/* time in seconds when suspend began */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200653static struct timespec timekeeping_suspend_time;
john stultz85240702007-05-08 00:27:59 -0700654
655/**
John Stultz304529b2011-04-01 14:32:09 -0700656 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
657 * @delta: pointer to a timespec delta value
658 *
659 * Takes a timespec offset measuring a suspend interval and properly
660 * adds the sleep offset to the timekeeping variables.
661 */
John Stultzf726a692012-07-13 01:21:57 -0400662static void __timekeeping_inject_sleeptime(struct timekeeper *tk,
663 struct timespec *delta)
John Stultz304529b2011-04-01 14:32:09 -0700664{
John Stultzcee58482012-08-31 13:30:06 -0400665 if (!timespec_valid_strict(delta)) {
John Stultzcbaa5152011-07-20 15:42:55 -0700666 printk(KERN_WARNING "__timekeeping_inject_sleeptime: Invalid "
John Stultzcb5de2f8d2011-06-01 18:18:09 -0700667 "sleep delta value!\n");
668 return;
669 }
John Stultzf726a692012-07-13 01:21:57 -0400670 tk_xtime_add(tk, delta);
John Stultz6d0ef902012-07-27 14:48:12 -0400671 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *delta));
672 tk_set_sleep_time(tk, timespec_add(tk->total_sleep_time, *delta));
John Stultz304529b2011-04-01 14:32:09 -0700673}
674
John Stultz304529b2011-04-01 14:32:09 -0700675/**
676 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
677 * @delta: pointer to a timespec delta value
678 *
679 * This hook is for architectures that cannot support read_persistent_clock
680 * because their RTC/persistent clock is only accessible when irqs are enabled.
681 *
682 * This function should only be called by rtc_resume(), and allows
683 * a suspend offset to be injected into the timekeeping values.
684 */
685void timekeeping_inject_sleeptime(struct timespec *delta)
686{
John Stultz4e250fd2012-07-27 14:48:13 -0400687 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800688 unsigned long flags;
John Stultz304529b2011-04-01 14:32:09 -0700689 struct timespec ts;
690
691 /* Make sure we don't set the clock twice */
692 read_persistent_clock(&ts);
693 if (!(ts.tv_sec == 0 && ts.tv_nsec == 0))
694 return;
695
John Stultz4e250fd2012-07-27 14:48:13 -0400696 write_seqlock_irqsave(&tk->lock, flags);
John Stultz70471f22011-11-14 12:48:10 -0800697
John Stultz4e250fd2012-07-27 14:48:13 -0400698 timekeeping_forward_now(tk);
John Stultz304529b2011-04-01 14:32:09 -0700699
John Stultz4e250fd2012-07-27 14:48:13 -0400700 __timekeeping_inject_sleeptime(tk, delta);
John Stultz304529b2011-04-01 14:32:09 -0700701
John Stultz4e250fd2012-07-27 14:48:13 -0400702 timekeeping_update(tk, true);
John Stultz304529b2011-04-01 14:32:09 -0700703
John Stultz4e250fd2012-07-27 14:48:13 -0400704 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultz304529b2011-04-01 14:32:09 -0700705
706 /* signal hrtimers about time change */
707 clock_was_set();
708}
709
John Stultz304529b2011-04-01 14:32:09 -0700710/**
john stultz85240702007-05-08 00:27:59 -0700711 * timekeeping_resume - Resumes the generic timekeeping subsystem.
john stultz85240702007-05-08 00:27:59 -0700712 *
713 * This is for the generic clocksource timekeeping.
714 * xtime/wall_to_monotonic/jiffies/etc are
715 * still managed by arch specific suspend/resume code.
716 */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100717static void timekeeping_resume(void)
john stultz85240702007-05-08 00:27:59 -0700718{
John Stultz4e250fd2012-07-27 14:48:13 -0400719 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800720 unsigned long flags;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200721 struct timespec ts;
722
723 read_persistent_clock(&ts);
john stultz85240702007-05-08 00:27:59 -0700724
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +0200725 clocksource_resume();
726
John Stultz4e250fd2012-07-27 14:48:13 -0400727 write_seqlock_irqsave(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700728
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200729 if (timespec_compare(&ts, &timekeeping_suspend_time) > 0) {
730 ts = timespec_sub(ts, timekeeping_suspend_time);
John Stultz4e250fd2012-07-27 14:48:13 -0400731 __timekeeping_inject_sleeptime(tk, &ts);
john stultz85240702007-05-08 00:27:59 -0700732 }
733 /* re-base the last cycle value */
John Stultz4e250fd2012-07-27 14:48:13 -0400734 tk->clock->cycle_last = tk->clock->read(tk->clock);
735 tk->ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -0700736 timekeeping_suspended = 0;
John Stultz4e250fd2012-07-27 14:48:13 -0400737 timekeeping_update(tk, false);
738 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700739
740 touch_softlockup_watchdog();
741
742 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
743
744 /* Resume hrtimers */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200745 hrtimers_resume();
john stultz85240702007-05-08 00:27:59 -0700746}
747
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100748static int timekeeping_suspend(void)
john stultz85240702007-05-08 00:27:59 -0700749{
John Stultz4e250fd2012-07-27 14:48:13 -0400750 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800751 unsigned long flags;
John Stultzcb332172011-05-31 22:53:23 -0700752 struct timespec delta, delta_delta;
753 static struct timespec old_delta;
john stultz85240702007-05-08 00:27:59 -0700754
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200755 read_persistent_clock(&timekeeping_suspend_time);
Thomas Gleixner3be90952007-09-16 15:36:43 +0200756
John Stultz4e250fd2012-07-27 14:48:13 -0400757 write_seqlock_irqsave(&tk->lock, flags);
758 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700759 timekeeping_suspended = 1;
John Stultzcb332172011-05-31 22:53:23 -0700760
761 /*
762 * To avoid drift caused by repeated suspend/resumes,
763 * which each can add ~1 second drift error,
764 * try to compensate so the difference in system time
765 * and persistent_clock time stays close to constant.
766 */
John Stultz4e250fd2012-07-27 14:48:13 -0400767 delta = timespec_sub(tk_xtime(tk), timekeeping_suspend_time);
John Stultzcb332172011-05-31 22:53:23 -0700768 delta_delta = timespec_sub(delta, old_delta);
769 if (abs(delta_delta.tv_sec) >= 2) {
770 /*
771 * if delta_delta is too large, assume time correction
772 * has occured and set old_delta to the current delta.
773 */
774 old_delta = delta;
775 } else {
776 /* Otherwise try to adjust old_system to compensate */
777 timekeeping_suspend_time =
778 timespec_add(timekeeping_suspend_time, delta_delta);
779 }
John Stultz4e250fd2012-07-27 14:48:13 -0400780 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700781
782 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
Magnus Dammc54a42b2010-02-02 14:41:41 -0800783 clocksource_suspend();
john stultz85240702007-05-08 00:27:59 -0700784
785 return 0;
786}
787
788/* sysfs resume/suspend bits for timekeeping */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100789static struct syscore_ops timekeeping_syscore_ops = {
john stultz85240702007-05-08 00:27:59 -0700790 .resume = timekeeping_resume,
791 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -0700792};
793
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100794static int __init timekeeping_init_ops(void)
john stultz85240702007-05-08 00:27:59 -0700795{
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100796 register_syscore_ops(&timekeeping_syscore_ops);
797 return 0;
john stultz85240702007-05-08 00:27:59 -0700798}
799
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100800device_initcall(timekeeping_init_ops);
john stultz85240702007-05-08 00:27:59 -0700801
802/*
803 * If the error is already larger, we look ahead even further
804 * to compensate for late or lost adjustments.
805 */
John Stultzf726a692012-07-13 01:21:57 -0400806static __always_inline int timekeeping_bigadjust(struct timekeeper *tk,
807 s64 error, s64 *interval,
john stultz85240702007-05-08 00:27:59 -0700808 s64 *offset)
809{
810 s64 tick_error, i;
811 u32 look_ahead, adj;
812 s32 error2, mult;
813
814 /*
815 * Use the current error value to determine how much to look ahead.
816 * The larger the error the slower we adjust for it to avoid problems
817 * with losing too many ticks, otherwise we would overadjust and
818 * produce an even larger error. The smaller the adjustment the
819 * faster we try to adjust for it, as lost ticks can do less harm
Li Zefan3eb05672008-02-08 04:19:25 -0800820 * here. This is tuned so that an error of about 1 msec is adjusted
john stultz85240702007-05-08 00:27:59 -0700821 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
822 */
John Stultzf726a692012-07-13 01:21:57 -0400823 error2 = tk->ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
john stultz85240702007-05-08 00:27:59 -0700824 error2 = abs(error2);
825 for (look_ahead = 0; error2 > 0; look_ahead++)
826 error2 >>= 2;
827
828 /*
829 * Now calculate the error in (1 << look_ahead) ticks, but first
830 * remove the single look ahead already included in the error.
831 */
John Stultzf726a692012-07-13 01:21:57 -0400832 tick_error = ntp_tick_length() >> (tk->ntp_error_shift + 1);
833 tick_error -= tk->xtime_interval >> 1;
john stultz85240702007-05-08 00:27:59 -0700834 error = ((error - tick_error) >> look_ahead) + tick_error;
835
836 /* Finally calculate the adjustment shift value. */
837 i = *interval;
838 mult = 1;
839 if (error < 0) {
840 error = -error;
841 *interval = -*interval;
842 *offset = -*offset;
843 mult = -1;
844 }
845 for (adj = 0; error > i; adj++)
846 error >>= 1;
847
848 *interval <<= adj;
849 *offset <<= adj;
850 return mult << adj;
851}
852
853/*
854 * Adjust the multiplier to reduce the error value,
855 * this is optimized for the most common adjustments of -1,0,1,
856 * for other values we can do a bit more work.
857 */
John Stultzf726a692012-07-13 01:21:57 -0400858static void timekeeping_adjust(struct timekeeper *tk, s64 offset)
john stultz85240702007-05-08 00:27:59 -0700859{
John Stultzf726a692012-07-13 01:21:57 -0400860 s64 error, interval = tk->cycle_interval;
john stultz85240702007-05-08 00:27:59 -0700861 int adj;
862
John Stultzc2bc1112011-10-27 18:12:42 -0700863 /*
Jim Cromie88b28ad2012-03-14 21:28:56 -0600864 * The point of this is to check if the error is greater than half
John Stultzc2bc1112011-10-27 18:12:42 -0700865 * an interval.
866 *
867 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
868 *
869 * Note we subtract one in the shift, so that error is really error*2.
John Stultz3f86f282011-10-27 17:41:17 -0700870 * This "saves" dividing(shifting) interval twice, but keeps the
871 * (error > interval) comparison as still measuring if error is
Jim Cromie88b28ad2012-03-14 21:28:56 -0600872 * larger than half an interval.
John Stultzc2bc1112011-10-27 18:12:42 -0700873 *
John Stultz3f86f282011-10-27 17:41:17 -0700874 * Note: It does not "save" on aggravation when reading the code.
John Stultzc2bc1112011-10-27 18:12:42 -0700875 */
John Stultzf726a692012-07-13 01:21:57 -0400876 error = tk->ntp_error >> (tk->ntp_error_shift - 1);
john stultz85240702007-05-08 00:27:59 -0700877 if (error > interval) {
John Stultzc2bc1112011-10-27 18:12:42 -0700878 /*
879 * We now divide error by 4(via shift), which checks if
Jim Cromie88b28ad2012-03-14 21:28:56 -0600880 * the error is greater than twice the interval.
John Stultzc2bc1112011-10-27 18:12:42 -0700881 * If it is greater, we need a bigadjust, if its smaller,
882 * we can adjust by 1.
883 */
john stultz85240702007-05-08 00:27:59 -0700884 error >>= 2;
John Stultzc2bc1112011-10-27 18:12:42 -0700885 /*
886 * XXX - In update_wall_time, we round up to the next
887 * nanosecond, and store the amount rounded up into
888 * the error. This causes the likely below to be unlikely.
889 *
John Stultz3f86f282011-10-27 17:41:17 -0700890 * The proper fix is to avoid rounding up by using
John Stultz4e250fd2012-07-27 14:48:13 -0400891 * the high precision tk->xtime_nsec instead of
John Stultzc2bc1112011-10-27 18:12:42 -0700892 * xtime.tv_nsec everywhere. Fixing this will take some
893 * time.
894 */
john stultz85240702007-05-08 00:27:59 -0700895 if (likely(error <= interval))
896 adj = 1;
897 else
Ingo Molnar1d17d172012-08-04 21:21:14 +0200898 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
899 } else {
900 if (error < -interval) {
901 /* See comment above, this is just switched for the negative */
902 error >>= 2;
903 if (likely(error >= -interval)) {
904 adj = -1;
905 interval = -interval;
906 offset = -offset;
907 } else {
908 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
909 }
910 } else {
911 goto out_adjust;
912 }
913 }
john stultz85240702007-05-08 00:27:59 -0700914
John Stultzf726a692012-07-13 01:21:57 -0400915 if (unlikely(tk->clock->maxadj &&
916 (tk->mult + adj > tk->clock->mult + tk->clock->maxadj))) {
John Stultze919cfd2012-03-22 19:14:46 -0700917 printk_once(KERN_WARNING
918 "Adjusting %s more than 11%% (%ld vs %ld)\n",
John Stultzf726a692012-07-13 01:21:57 -0400919 tk->clock->name, (long)tk->mult + adj,
920 (long)tk->clock->mult + tk->clock->maxadj);
John Stultze919cfd2012-03-22 19:14:46 -0700921 }
John Stultzc2bc1112011-10-27 18:12:42 -0700922 /*
923 * So the following can be confusing.
924 *
925 * To keep things simple, lets assume adj == 1 for now.
926 *
927 * When adj != 1, remember that the interval and offset values
928 * have been appropriately scaled so the math is the same.
929 *
930 * The basic idea here is that we're increasing the multiplier
931 * by one, this causes the xtime_interval to be incremented by
932 * one cycle_interval. This is because:
933 * xtime_interval = cycle_interval * mult
934 * So if mult is being incremented by one:
935 * xtime_interval = cycle_interval * (mult + 1)
936 * Its the same as:
937 * xtime_interval = (cycle_interval * mult) + cycle_interval
938 * Which can be shortened to:
939 * xtime_interval += cycle_interval
940 *
941 * So offset stores the non-accumulated cycles. Thus the current
942 * time (in shifted nanoseconds) is:
943 * now = (offset * adj) + xtime_nsec
944 * Now, even though we're adjusting the clock frequency, we have
945 * to keep time consistent. In other words, we can't jump back
946 * in time, and we also want to avoid jumping forward in time.
947 *
948 * So given the same offset value, we need the time to be the same
949 * both before and after the freq adjustment.
950 * now = (offset * adj_1) + xtime_nsec_1
951 * now = (offset * adj_2) + xtime_nsec_2
952 * So:
953 * (offset * adj_1) + xtime_nsec_1 =
954 * (offset * adj_2) + xtime_nsec_2
955 * And we know:
956 * adj_2 = adj_1 + 1
957 * So:
958 * (offset * adj_1) + xtime_nsec_1 =
959 * (offset * (adj_1+1)) + xtime_nsec_2
960 * (offset * adj_1) + xtime_nsec_1 =
961 * (offset * adj_1) + offset + xtime_nsec_2
962 * Canceling the sides:
963 * xtime_nsec_1 = offset + xtime_nsec_2
964 * Which gives us:
965 * xtime_nsec_2 = xtime_nsec_1 - offset
966 * Which simplfies to:
967 * xtime_nsec -= offset
968 *
969 * XXX - TODO: Doc ntp_error calculation.
970 */
John Stultzf726a692012-07-13 01:21:57 -0400971 tk->mult += adj;
972 tk->xtime_interval += interval;
973 tk->xtime_nsec -= offset;
974 tk->ntp_error -= (interval - offset) << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -0400975
Ingo Molnar1d17d172012-08-04 21:21:14 +0200976out_adjust:
John Stultz2a8c0882012-07-13 01:21:56 -0400977 /*
978 * It may be possible that when we entered this function, xtime_nsec
979 * was very small. Further, if we're slightly speeding the clocksource
980 * in the code above, its possible the required corrective factor to
981 * xtime_nsec could cause it to underflow.
982 *
983 * Now, since we already accumulated the second, cannot simply roll
984 * the accumulated second back, since the NTP subsystem has been
985 * notified via second_overflow. So instead we push xtime_nsec forward
986 * by the amount we underflowed, and add that amount into the error.
987 *
988 * We'll correct this error next time through this function, when
989 * xtime_nsec is not as small.
990 */
John Stultzf726a692012-07-13 01:21:57 -0400991 if (unlikely((s64)tk->xtime_nsec < 0)) {
992 s64 neg = -(s64)tk->xtime_nsec;
993 tk->xtime_nsec = 0;
994 tk->ntp_error += neg << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -0400995 }
996
john stultz85240702007-05-08 00:27:59 -0700997}
998
999/**
John Stultz1f4f9482012-07-13 01:21:54 -04001000 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
1001 *
1002 * Helper function that accumulates a the nsecs greater then a second
1003 * from the xtime_nsec field to the xtime_secs field.
1004 * It also calls into the NTP code to handle leapsecond processing.
1005 *
1006 */
1007static inline void accumulate_nsecs_to_secs(struct timekeeper *tk)
1008{
1009 u64 nsecps = (u64)NSEC_PER_SEC << tk->shift;
1010
1011 while (tk->xtime_nsec >= nsecps) {
1012 int leap;
1013
1014 tk->xtime_nsec -= nsecps;
1015 tk->xtime_sec++;
1016
1017 /* Figure out if its a leap sec and apply if needed */
1018 leap = second_overflow(tk->xtime_sec);
John Stultz6d0ef902012-07-27 14:48:12 -04001019 if (unlikely(leap)) {
1020 struct timespec ts;
John Stultz1f4f9482012-07-13 01:21:54 -04001021
John Stultz6d0ef902012-07-27 14:48:12 -04001022 tk->xtime_sec += leap;
1023
1024 ts.tv_sec = leap;
1025 ts.tv_nsec = 0;
1026 tk_set_wall_to_mono(tk,
1027 timespec_sub(tk->wall_to_monotonic, ts));
1028
1029 clock_was_set_delayed();
1030 }
John Stultz1f4f9482012-07-13 01:21:54 -04001031 }
1032}
1033
John Stultz1f4f9482012-07-13 01:21:54 -04001034/**
john stultza092ff02009-10-02 16:17:53 -07001035 * logarithmic_accumulation - shifted accumulation of cycles
1036 *
1037 * This functions accumulates a shifted interval of cycles into
1038 * into a shifted interval nanoseconds. Allows for O(log) accumulation
1039 * loop.
1040 *
1041 * Returns the unconsumed cycles.
1042 */
John Stultzf726a692012-07-13 01:21:57 -04001043static cycle_t logarithmic_accumulation(struct timekeeper *tk, cycle_t offset,
1044 u32 shift)
john stultza092ff02009-10-02 16:17:53 -07001045{
Jason Wesseldeda2e82010-08-09 14:20:09 -07001046 u64 raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001047
John Stultzf726a692012-07-13 01:21:57 -04001048 /* If the offset is smaller then a shifted interval, do nothing */
1049 if (offset < tk->cycle_interval<<shift)
john stultza092ff02009-10-02 16:17:53 -07001050 return offset;
1051
1052 /* Accumulate one shifted interval */
John Stultzf726a692012-07-13 01:21:57 -04001053 offset -= tk->cycle_interval << shift;
1054 tk->clock->cycle_last += tk->cycle_interval << shift;
john stultza092ff02009-10-02 16:17:53 -07001055
John Stultzf726a692012-07-13 01:21:57 -04001056 tk->xtime_nsec += tk->xtime_interval << shift;
1057 accumulate_nsecs_to_secs(tk);
john stultza092ff02009-10-02 16:17:53 -07001058
Jason Wesseldeda2e82010-08-09 14:20:09 -07001059 /* Accumulate raw time */
John Stultzf726a692012-07-13 01:21:57 -04001060 raw_nsecs = tk->raw_interval << shift;
1061 raw_nsecs += tk->raw_time.tv_nsec;
John Stultzc7dcf872010-08-13 11:30:58 -07001062 if (raw_nsecs >= NSEC_PER_SEC) {
1063 u64 raw_secs = raw_nsecs;
1064 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
John Stultzf726a692012-07-13 01:21:57 -04001065 tk->raw_time.tv_sec += raw_secs;
john stultza092ff02009-10-02 16:17:53 -07001066 }
John Stultzf726a692012-07-13 01:21:57 -04001067 tk->raw_time.tv_nsec = raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001068
1069 /* Accumulate error between NTP and clock interval */
John Stultzf726a692012-07-13 01:21:57 -04001070 tk->ntp_error += ntp_tick_length() << shift;
1071 tk->ntp_error -= (tk->xtime_interval + tk->xtime_remainder) <<
1072 (tk->ntp_error_shift + shift);
john stultza092ff02009-10-02 16:17:53 -07001073
1074 return offset;
1075}
1076
john stultz85240702007-05-08 00:27:59 -07001077/**
1078 * update_wall_time - Uses the current clocksource to increment the wall time
1079 *
john stultz85240702007-05-08 00:27:59 -07001080 */
Torben Hohn871cf1e2011-01-27 15:58:55 +01001081static void update_wall_time(void)
john stultz85240702007-05-08 00:27:59 -07001082{
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001083 struct clocksource *clock;
John Stultz4e250fd2012-07-27 14:48:13 -04001084 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -07001085 cycle_t offset;
john stultza092ff02009-10-02 16:17:53 -07001086 int shift = 0, maxshift;
John Stultz70471f22011-11-14 12:48:10 -08001087 unsigned long flags;
John Stultz1e75fa82012-07-13 01:21:53 -04001088 s64 remainder;
John Stultz70471f22011-11-14 12:48:10 -08001089
John Stultz4e250fd2012-07-27 14:48:13 -04001090 write_seqlock_irqsave(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -07001091
1092 /* Make sure we're fully resumed: */
1093 if (unlikely(timekeeping_suspended))
John Stultz70471f22011-11-14 12:48:10 -08001094 goto out;
john stultz85240702007-05-08 00:27:59 -07001095
John Stultz4e250fd2012-07-27 14:48:13 -04001096 clock = tk->clock;
John Stultz592913e2010-07-13 17:56:20 -07001097
1098#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
John Stultz4e250fd2012-07-27 14:48:13 -04001099 offset = tk->cycle_interval;
John Stultz592913e2010-07-13 17:56:20 -07001100#else
1101 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
john stultz85240702007-05-08 00:27:59 -07001102#endif
john stultz85240702007-05-08 00:27:59 -07001103
John Stultzbf2ac312012-08-21 20:30:49 -04001104 /* Check if there's really nothing to do */
1105 if (offset < tk->cycle_interval)
1106 goto out;
1107
john stultza092ff02009-10-02 16:17:53 -07001108 /*
1109 * With NO_HZ we may have to accumulate many cycle_intervals
1110 * (think "ticks") worth of time at once. To do this efficiently,
1111 * we calculate the largest doubling multiple of cycle_intervals
Jim Cromie88b28ad2012-03-14 21:28:56 -06001112 * that is smaller than the offset. We then accumulate that
john stultza092ff02009-10-02 16:17:53 -07001113 * chunk in one go, and then try to consume the next smaller
1114 * doubled multiple.
john stultz85240702007-05-08 00:27:59 -07001115 */
John Stultz4e250fd2012-07-27 14:48:13 -04001116 shift = ilog2(offset) - ilog2(tk->cycle_interval);
john stultza092ff02009-10-02 16:17:53 -07001117 shift = max(0, shift);
Jim Cromie88b28ad2012-03-14 21:28:56 -06001118 /* Bound shift to one less than what overflows tick_length */
John Stultzea7cf492011-11-14 13:18:07 -08001119 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
john stultza092ff02009-10-02 16:17:53 -07001120 shift = min(shift, maxshift);
John Stultz4e250fd2012-07-27 14:48:13 -04001121 while (offset >= tk->cycle_interval) {
1122 offset = logarithmic_accumulation(tk, offset, shift);
1123 if (offset < tk->cycle_interval<<shift)
John Stultz830ec042010-03-18 14:47:30 -07001124 shift--;
john stultz85240702007-05-08 00:27:59 -07001125 }
1126
1127 /* correct the clock when NTP error is too big */
John Stultz4e250fd2012-07-27 14:48:13 -04001128 timekeeping_adjust(tk, offset);
john stultz85240702007-05-08 00:27:59 -07001129
john stultz6c9bacb2008-12-01 18:34:41 -08001130
John Stultz6a867a32010-04-06 14:30:51 -07001131 /*
John Stultz1e75fa82012-07-13 01:21:53 -04001132 * Store only full nanoseconds into xtime_nsec after rounding
1133 * it up and add the remainder to the error difference.
1134 * XXX - This is necessary to avoid small 1ns inconsistnecies caused
1135 * by truncating the remainder in vsyscalls. However, it causes
1136 * additional work to be done in timekeeping_adjust(). Once
1137 * the vsyscall implementations are converted to use xtime_nsec
1138 * (shifted nanoseconds), this can be killed.
1139 */
John Stultz6ea565a2012-08-21 20:30:48 -04001140 remainder = tk->xtime_nsec & ((1ULL << tk->shift) - 1);
John Stultz4e250fd2012-07-27 14:48:13 -04001141 tk->xtime_nsec -= remainder;
John Stultz6ea565a2012-08-21 20:30:48 -04001142 tk->xtime_nsec += 1ULL << tk->shift;
John Stultz4e250fd2012-07-27 14:48:13 -04001143 tk->ntp_error += remainder << tk->ntp_error_shift;
john stultz85240702007-05-08 00:27:59 -07001144
John Stultz6a867a32010-04-06 14:30:51 -07001145 /*
1146 * Finally, make sure that after the rounding
John Stultz1e75fa82012-07-13 01:21:53 -04001147 * xtime_nsec isn't larger than NSEC_PER_SEC
John Stultz6a867a32010-04-06 14:30:51 -07001148 */
John Stultz4e250fd2012-07-27 14:48:13 -04001149 accumulate_nsecs_to_secs(tk);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001150
John Stultz4e250fd2012-07-27 14:48:13 -04001151 timekeeping_update(tk, false);
John Stultz70471f22011-11-14 12:48:10 -08001152
1153out:
John Stultz4e250fd2012-07-27 14:48:13 -04001154 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultz70471f22011-11-14 12:48:10 -08001155
john stultz85240702007-05-08 00:27:59 -07001156}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001157
1158/**
1159 * getboottime - Return the real time of system boot.
1160 * @ts: pointer to the timespec to be set
1161 *
John Stultzabb3a4e2011-02-14 17:52:09 -08001162 * Returns the wall-time of boot in a timespec.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001163 *
1164 * This is based on the wall_to_monotonic offset and the total suspend
1165 * time. Calls to settimeofday will affect the value returned (which
1166 * basically means that however wrong your real time clock is at boot time,
1167 * you get the right time here).
1168 */
1169void getboottime(struct timespec *ts)
1170{
John Stultz4e250fd2012-07-27 14:48:13 -04001171 struct timekeeper *tk = &timekeeper;
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001172 struct timespec boottime = {
John Stultz4e250fd2012-07-27 14:48:13 -04001173 .tv_sec = tk->wall_to_monotonic.tv_sec +
1174 tk->total_sleep_time.tv_sec,
1175 .tv_nsec = tk->wall_to_monotonic.tv_nsec +
1176 tk->total_sleep_time.tv_nsec
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001177 };
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001178
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001179 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001180}
Jason Wangc93d89f2010-01-27 19:13:40 +08001181EXPORT_SYMBOL_GPL(getboottime);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001182
John Stultzabb3a4e2011-02-14 17:52:09 -08001183/**
1184 * get_monotonic_boottime - Returns monotonic time since boot
1185 * @ts: pointer to the timespec to be set
1186 *
1187 * Returns the monotonic time since boot in a timespec.
1188 *
1189 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1190 * includes the time spent in suspend.
1191 */
1192void get_monotonic_boottime(struct timespec *ts)
1193{
John Stultz4e250fd2012-07-27 14:48:13 -04001194 struct timekeeper *tk = &timekeeper;
John Stultzabb3a4e2011-02-14 17:52:09 -08001195 struct timespec tomono, sleep;
John Stultzec145ba2012-09-11 19:26:03 -04001196 s64 nsec;
John Stultzabb3a4e2011-02-14 17:52:09 -08001197 unsigned int seq;
John Stultzabb3a4e2011-02-14 17:52:09 -08001198
1199 WARN_ON(timekeeping_suspended);
1200
1201 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001202 seq = read_seqbegin(&tk->lock);
1203 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -04001204 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -04001205 tomono = tk->wall_to_monotonic;
1206 sleep = tk->total_sleep_time;
John Stultzabb3a4e2011-02-14 17:52:09 -08001207
John Stultz4e250fd2012-07-27 14:48:13 -04001208 } while (read_seqretry(&tk->lock, seq));
John Stultzabb3a4e2011-02-14 17:52:09 -08001209
John Stultzec145ba2012-09-11 19:26:03 -04001210 ts->tv_sec += tomono.tv_sec + sleep.tv_sec;
1211 ts->tv_nsec = 0;
1212 timespec_add_ns(ts, nsec + tomono.tv_nsec + sleep.tv_nsec);
John Stultzabb3a4e2011-02-14 17:52:09 -08001213}
1214EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1215
1216/**
1217 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1218 *
1219 * Returns the monotonic time since boot in a ktime
1220 *
1221 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1222 * includes the time spent in suspend.
1223 */
1224ktime_t ktime_get_boottime(void)
1225{
1226 struct timespec ts;
1227
1228 get_monotonic_boottime(&ts);
1229 return timespec_to_ktime(ts);
1230}
1231EXPORT_SYMBOL_GPL(ktime_get_boottime);
1232
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001233/**
1234 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1235 * @ts: pointer to the timespec to be converted
1236 */
1237void monotonic_to_bootbased(struct timespec *ts)
1238{
John Stultz4e250fd2012-07-27 14:48:13 -04001239 struct timekeeper *tk = &timekeeper;
1240
1241 *ts = timespec_add(*ts, tk->total_sleep_time);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001242}
Jason Wangc93d89f2010-01-27 19:13:40 +08001243EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
john stultz2c6b47d2007-07-24 17:47:43 -07001244
john stultz17c38b72007-07-24 18:38:34 -07001245unsigned long get_seconds(void)
1246{
John Stultz4e250fd2012-07-27 14:48:13 -04001247 struct timekeeper *tk = &timekeeper;
1248
1249 return tk->xtime_sec;
john stultz17c38b72007-07-24 18:38:34 -07001250}
1251EXPORT_SYMBOL(get_seconds);
1252
john stultzda15cfd2009-08-19 19:13:34 -07001253struct timespec __current_kernel_time(void)
1254{
John Stultz4e250fd2012-07-27 14:48:13 -04001255 struct timekeeper *tk = &timekeeper;
1256
1257 return tk_xtime(tk);
john stultzda15cfd2009-08-19 19:13:34 -07001258}
john stultz17c38b72007-07-24 18:38:34 -07001259
john stultz2c6b47d2007-07-24 17:47:43 -07001260struct timespec current_kernel_time(void)
1261{
John Stultz4e250fd2012-07-27 14:48:13 -04001262 struct timekeeper *tk = &timekeeper;
john stultz2c6b47d2007-07-24 17:47:43 -07001263 struct timespec now;
1264 unsigned long seq;
1265
1266 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001267 seq = read_seqbegin(&tk->lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001268
John Stultz4e250fd2012-07-27 14:48:13 -04001269 now = tk_xtime(tk);
1270 } while (read_seqretry(&tk->lock, seq));
john stultz2c6b47d2007-07-24 17:47:43 -07001271
1272 return now;
1273}
john stultz2c6b47d2007-07-24 17:47:43 -07001274EXPORT_SYMBOL(current_kernel_time);
john stultzda15cfd2009-08-19 19:13:34 -07001275
1276struct timespec get_monotonic_coarse(void)
1277{
John Stultz4e250fd2012-07-27 14:48:13 -04001278 struct timekeeper *tk = &timekeeper;
john stultzda15cfd2009-08-19 19:13:34 -07001279 struct timespec now, mono;
1280 unsigned long seq;
1281
1282 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001283 seq = read_seqbegin(&tk->lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001284
John Stultz4e250fd2012-07-27 14:48:13 -04001285 now = tk_xtime(tk);
1286 mono = tk->wall_to_monotonic;
1287 } while (read_seqretry(&tk->lock, seq));
john stultzda15cfd2009-08-19 19:13:34 -07001288
1289 set_normalized_timespec(&now, now.tv_sec + mono.tv_sec,
1290 now.tv_nsec + mono.tv_nsec);
1291 return now;
1292}
Torben Hohn871cf1e2011-01-27 15:58:55 +01001293
1294/*
1295 * The 64-bit jiffies value is not atomic - you MUST NOT read it
1296 * without sampling the sequence number in xtime_lock.
1297 * jiffies is defined in the linker script...
1298 */
1299void do_timer(unsigned long ticks)
1300{
1301 jiffies_64 += ticks;
1302 update_wall_time();
1303 calc_global_load(ticks);
1304}
Torben Hohn48cf76f72011-01-27 15:59:05 +01001305
1306/**
John Stultz314ac372011-02-14 18:43:08 -08001307 * get_xtime_and_monotonic_and_sleep_offset() - get xtime, wall_to_monotonic,
1308 * and sleep offsets.
Torben Hohn48cf76f72011-01-27 15:59:05 +01001309 * @xtim: pointer to timespec to be set with xtime
1310 * @wtom: pointer to timespec to be set with wall_to_monotonic
John Stultz314ac372011-02-14 18:43:08 -08001311 * @sleep: pointer to timespec to be set with time in suspend
Torben Hohn48cf76f72011-01-27 15:59:05 +01001312 */
John Stultz314ac372011-02-14 18:43:08 -08001313void get_xtime_and_monotonic_and_sleep_offset(struct timespec *xtim,
1314 struct timespec *wtom, struct timespec *sleep)
Torben Hohn48cf76f72011-01-27 15:59:05 +01001315{
John Stultz4e250fd2012-07-27 14:48:13 -04001316 struct timekeeper *tk = &timekeeper;
Torben Hohn48cf76f72011-01-27 15:59:05 +01001317 unsigned long seq;
1318
1319 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001320 seq = read_seqbegin(&tk->lock);
1321 *xtim = tk_xtime(tk);
1322 *wtom = tk->wall_to_monotonic;
1323 *sleep = tk->total_sleep_time;
1324 } while (read_seqretry(&tk->lock, seq));
Torben Hohn48cf76f72011-01-27 15:59:05 +01001325}
Torben Hohnf0af911a92011-01-27 15:59:10 +01001326
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001327#ifdef CONFIG_HIGH_RES_TIMERS
1328/**
1329 * ktime_get_update_offsets - hrtimer helper
1330 * @offs_real: pointer to storage for monotonic -> realtime offset
1331 * @offs_boot: pointer to storage for monotonic -> boottime offset
1332 *
1333 * Returns current monotonic time and updates the offsets
1334 * Called from hrtimer_interupt() or retrigger_next_event()
1335 */
1336ktime_t ktime_get_update_offsets(ktime_t *offs_real, ktime_t *offs_boot)
1337{
John Stultz4e250fd2012-07-27 14:48:13 -04001338 struct timekeeper *tk = &timekeeper;
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001339 ktime_t now;
1340 unsigned int seq;
1341 u64 secs, nsecs;
1342
1343 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001344 seq = read_seqbegin(&tk->lock);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001345
John Stultz4e250fd2012-07-27 14:48:13 -04001346 secs = tk->xtime_sec;
1347 nsecs = timekeeping_get_ns(tk);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001348
John Stultz4e250fd2012-07-27 14:48:13 -04001349 *offs_real = tk->offs_real;
1350 *offs_boot = tk->offs_boot;
1351 } while (read_seqretry(&tk->lock, seq));
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001352
1353 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1354 now = ktime_sub(now, *offs_real);
1355 return now;
1356}
1357#endif
1358
Torben Hohnf0af911a92011-01-27 15:59:10 +01001359/**
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001360 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1361 */
1362ktime_t ktime_get_monotonic_offset(void)
1363{
John Stultz4e250fd2012-07-27 14:48:13 -04001364 struct timekeeper *tk = &timekeeper;
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001365 unsigned long seq;
1366 struct timespec wtom;
1367
1368 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001369 seq = read_seqbegin(&tk->lock);
1370 wtom = tk->wall_to_monotonic;
1371 } while (read_seqretry(&tk->lock, seq));
John Stultz70471f22011-11-14 12:48:10 -08001372
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001373 return timespec_to_ktime(wtom);
1374}
John Stultza80b83b2012-02-03 00:19:07 -08001375EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1376
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001377/**
Torben Hohnf0af911a92011-01-27 15:59:10 +01001378 * xtime_update() - advances the timekeeping infrastructure
1379 * @ticks: number of ticks, that have elapsed since the last call.
1380 *
1381 * Must be called with interrupts disabled.
1382 */
1383void xtime_update(unsigned long ticks)
1384{
1385 write_seqlock(&xtime_lock);
1386 do_timer(ticks);
1387 write_sequnlock(&xtime_lock);
1388}