blob: 4c7de02eacdce9875cefb7598d5047b95f235770 [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/* flag for if timekeeping is suspended */
29int __read_mostly timekeeping_suspended;
30
John Stultz1e75fa82012-07-13 01:21:53 -040031static inline void tk_normalize_xtime(struct timekeeper *tk)
32{
33 while (tk->xtime_nsec >= ((u64)NSEC_PER_SEC << tk->shift)) {
34 tk->xtime_nsec -= (u64)NSEC_PER_SEC << tk->shift;
35 tk->xtime_sec++;
36 }
37}
John Stultz8fcce542011-11-14 11:46:39 -080038
John Stultz1e75fa82012-07-13 01:21:53 -040039static void tk_set_xtime(struct timekeeper *tk, const struct timespec *ts)
40{
41 tk->xtime_sec = ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040042 tk->xtime_nsec = (u64)ts->tv_nsec << tk->shift;
John Stultz1e75fa82012-07-13 01:21:53 -040043}
44
45static void tk_xtime_add(struct timekeeper *tk, const struct timespec *ts)
46{
47 tk->xtime_sec += ts->tv_sec;
John Stultzb44d50d2012-07-23 16:22:37 -040048 tk->xtime_nsec += (u64)ts->tv_nsec << tk->shift;
John Stultz784ffcb2012-08-21 20:30:46 -040049 tk_normalize_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -040050}
John Stultz8fcce542011-11-14 11:46:39 -080051
John Stultz6d0ef902012-07-27 14:48:12 -040052static void tk_set_wall_to_mono(struct timekeeper *tk, struct timespec wtm)
53{
54 struct timespec tmp;
55
56 /*
57 * Verify consistency of: offset_real = -wall_to_monotonic
58 * before modifying anything
59 */
60 set_normalized_timespec(&tmp, -tk->wall_to_monotonic.tv_sec,
61 -tk->wall_to_monotonic.tv_nsec);
62 WARN_ON_ONCE(tk->offs_real.tv64 != timespec_to_ktime(tmp).tv64);
63 tk->wall_to_monotonic = wtm;
64 set_normalized_timespec(&tmp, -wtm.tv_sec, -wtm.tv_nsec);
65 tk->offs_real = timespec_to_ktime(tmp);
66}
67
68static void tk_set_sleep_time(struct timekeeper *tk, struct timespec t)
69{
70 /* Verify consistency before modifying */
71 WARN_ON_ONCE(tk->offs_boot.tv64 != timespec_to_ktime(tk->total_sleep_time).tv64);
72
73 tk->total_sleep_time = t;
74 tk->offs_boot = timespec_to_ktime(t);
75}
76
Martin Schwidefsky155ec602009-08-14 15:47:26 +020077/**
78 * timekeeper_setup_internals - Set up internals to use clocksource clock.
79 *
80 * @clock: Pointer to clocksource.
81 *
82 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
83 * pair and interval request.
84 *
85 * Unless you're the timekeeping code, you should not be using this!
86 */
John Stultzf726a692012-07-13 01:21:57 -040087static void tk_setup_internals(struct timekeeper *tk, struct clocksource *clock)
Martin Schwidefsky155ec602009-08-14 15:47:26 +020088{
89 cycle_t interval;
Kasper Pedersena386b5a2010-10-20 15:55:15 -070090 u64 tmp, ntpinterval;
John Stultz1e75fa82012-07-13 01:21:53 -040091 struct clocksource *old_clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020092
John Stultzf726a692012-07-13 01:21:57 -040093 old_clock = tk->clock;
94 tk->clock = clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020095 clock->cycle_last = clock->read(clock);
96
97 /* Do the ns -> cycle conversion first, using original mult */
98 tmp = NTP_INTERVAL_LENGTH;
99 tmp <<= clock->shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700100 ntpinterval = tmp;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200101 tmp += clock->mult/2;
102 do_div(tmp, clock->mult);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200103 if (tmp == 0)
104 tmp = 1;
105
106 interval = (cycle_t) tmp;
John Stultzf726a692012-07-13 01:21:57 -0400107 tk->cycle_interval = interval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200108
109 /* Go back from cycles -> shifted ns */
John Stultzf726a692012-07-13 01:21:57 -0400110 tk->xtime_interval = (u64) interval * clock->mult;
111 tk->xtime_remainder = ntpinterval - tk->xtime_interval;
112 tk->raw_interval =
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200113 ((u64) interval * clock->mult) >> clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200114
John Stultz1e75fa82012-07-13 01:21:53 -0400115 /* if changing clocks, convert xtime_nsec shift units */
116 if (old_clock) {
117 int shift_change = clock->shift - old_clock->shift;
118 if (shift_change < 0)
John Stultzf726a692012-07-13 01:21:57 -0400119 tk->xtime_nsec >>= -shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400120 else
John Stultzf726a692012-07-13 01:21:57 -0400121 tk->xtime_nsec <<= shift_change;
John Stultz1e75fa82012-07-13 01:21:53 -0400122 }
John Stultzf726a692012-07-13 01:21:57 -0400123 tk->shift = clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200124
John Stultzf726a692012-07-13 01:21:57 -0400125 tk->ntp_error = 0;
126 tk->ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200127
128 /*
129 * The timekeeper keeps its own mult values for the currently
130 * active clocksource. These value will be adjusted via NTP
131 * to counteract clock drifting.
132 */
John Stultzf726a692012-07-13 01:21:57 -0400133 tk->mult = clock->mult;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200134}
john stultz85240702007-05-08 00:27:59 -0700135
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200136/* Timekeeper helper functions. */
John Stultzf726a692012-07-13 01:21:57 -0400137static inline s64 timekeeping_get_ns(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200138{
139 cycle_t cycle_now, cycle_delta;
140 struct clocksource *clock;
John Stultz1e75fa82012-07-13 01:21:53 -0400141 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200142
143 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400144 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200145 cycle_now = clock->read(clock);
146
147 /* calculate the delta since the last update_wall_time: */
148 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
149
John Stultzf726a692012-07-13 01:21:57 -0400150 nsec = cycle_delta * tk->mult + tk->xtime_nsec;
151 nsec >>= tk->shift;
John Stultzf2a5a082012-07-13 01:21:55 -0400152
153 /* If arch requires, add in gettimeoffset() */
154 return nsec + arch_gettimeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200155}
156
John Stultzf726a692012-07-13 01:21:57 -0400157static inline s64 timekeeping_get_ns_raw(struct timekeeper *tk)
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200158{
159 cycle_t cycle_now, cycle_delta;
160 struct clocksource *clock;
John Stultzf2a5a082012-07-13 01:21:55 -0400161 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200162
163 /* read clocksource: */
John Stultzf726a692012-07-13 01:21:57 -0400164 clock = tk->clock;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200165 cycle_now = clock->read(clock);
166
167 /* calculate the delta since the last update_wall_time: */
168 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
169
John Stultzf2a5a082012-07-13 01:21:55 -0400170 /* convert delta to nanoseconds. */
171 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
172
173 /* If arch requires, add in gettimeoffset() */
174 return nsec + arch_gettimeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200175}
176
Thomas Gleixnercc062682011-11-13 23:19:49 +0000177/* must hold write on timekeeper.lock */
John Stultzf726a692012-07-13 01:21:57 -0400178static void timekeeping_update(struct timekeeper *tk, bool clearntp)
Thomas Gleixnercc062682011-11-13 23:19:49 +0000179{
180 if (clearntp) {
John Stultzf726a692012-07-13 01:21:57 -0400181 tk->ntp_error = 0;
Thomas Gleixnercc062682011-11-13 23:19:49 +0000182 ntp_clear();
183 }
John Stultz576094b2012-09-11 19:58:13 -0400184 update_vsyscall(tk);
Thomas Gleixnercc062682011-11-13 23:19:49 +0000185}
186
john stultz85240702007-05-08 00:27:59 -0700187/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200188 * timekeeping_forward_now - update clock to the current time
john stultz85240702007-05-08 00:27:59 -0700189 *
Roman Zippel9a055112008-08-20 16:37:28 -0700190 * Forward the current clock to update its state since the last call to
191 * update_wall_time(). This is useful before significant clock changes,
192 * as it avoids having to deal with this time offset explicitly.
john stultz85240702007-05-08 00:27:59 -0700193 */
John Stultzf726a692012-07-13 01:21:57 -0400194static void timekeeping_forward_now(struct timekeeper *tk)
john stultz85240702007-05-08 00:27:59 -0700195{
196 cycle_t cycle_now, cycle_delta;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200197 struct clocksource *clock;
Roman Zippel9a055112008-08-20 16:37:28 -0700198 s64 nsec;
john stultz85240702007-05-08 00:27:59 -0700199
John Stultzf726a692012-07-13 01:21:57 -0400200 clock = tk->clock;
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200201 cycle_now = clock->read(clock);
john stultz85240702007-05-08 00:27:59 -0700202 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
Roman Zippel9a055112008-08-20 16:37:28 -0700203 clock->cycle_last = cycle_now;
john stultz85240702007-05-08 00:27:59 -0700204
John Stultzf726a692012-07-13 01:21:57 -0400205 tk->xtime_nsec += cycle_delta * tk->mult;
john stultz7d275582009-05-01 13:10:26 -0700206
207 /* If arch requires, add in gettimeoffset() */
Andreas Schwab85dc8f02012-08-21 20:30:47 -0400208 tk->xtime_nsec += (u64)arch_gettimeoffset() << tk->shift;
john stultz7d275582009-05-01 13:10:26 -0700209
John Stultzf726a692012-07-13 01:21:57 -0400210 tk_normalize_xtime(tk);
John Stultz2d422442008-08-20 16:37:30 -0700211
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200212 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
John Stultzf726a692012-07-13 01:21:57 -0400213 timespec_add_ns(&tk->raw_time, nsec);
john stultz85240702007-05-08 00:27:59 -0700214}
215
216/**
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100217 * getnstimeofday - Returns the time of day in a timespec
john stultz85240702007-05-08 00:27:59 -0700218 * @ts: pointer to the timespec to be set
219 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100220 * Returns the time of day in a timespec.
john stultz85240702007-05-08 00:27:59 -0700221 */
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100222void getnstimeofday(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700223{
John Stultz4e250fd2012-07-27 14:48:13 -0400224 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700225 unsigned long seq;
John Stultz1e75fa82012-07-13 01:21:53 -0400226 s64 nsecs = 0;
john stultz85240702007-05-08 00:27:59 -0700227
Thomas Gleixner1c5745a2008-12-22 23:05:28 +0100228 WARN_ON(timekeeping_suspended);
229
john stultz85240702007-05-08 00:27:59 -0700230 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400231 seq = read_seqbegin(&tk->lock);
john stultz85240702007-05-08 00:27:59 -0700232
John Stultz4e250fd2012-07-27 14:48:13 -0400233 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400234 nsecs = timekeeping_get_ns(tk);
john stultz85240702007-05-08 00:27:59 -0700235
John Stultz4e250fd2012-07-27 14:48:13 -0400236 } while (read_seqretry(&tk->lock, seq));
john stultz85240702007-05-08 00:27:59 -0700237
John Stultzec145ba2012-09-11 19:26:03 -0400238 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700239 timespec_add_ns(ts, nsecs);
240}
john stultz85240702007-05-08 00:27:59 -0700241EXPORT_SYMBOL(getnstimeofday);
242
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200243ktime_t ktime_get(void)
244{
John Stultz4e250fd2012-07-27 14:48:13 -0400245 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200246 unsigned int seq;
247 s64 secs, nsecs;
248
249 WARN_ON(timekeeping_suspended);
250
251 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400252 seq = read_seqbegin(&tk->lock);
253 secs = tk->xtime_sec + tk->wall_to_monotonic.tv_sec;
254 nsecs = timekeeping_get_ns(tk) + tk->wall_to_monotonic.tv_nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200255
John Stultz4e250fd2012-07-27 14:48:13 -0400256 } while (read_seqretry(&tk->lock, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200257 /*
258 * Use ktime_set/ktime_add_ns to create a proper ktime on
259 * 32-bit architectures without CONFIG_KTIME_SCALAR.
260 */
261 return ktime_add_ns(ktime_set(secs, 0), nsecs);
262}
263EXPORT_SYMBOL_GPL(ktime_get);
264
265/**
266 * ktime_get_ts - get the monotonic clock in timespec format
267 * @ts: pointer to timespec variable
268 *
269 * The function calculates the monotonic clock from the realtime
270 * clock and the wall_to_monotonic offset and stores the result
271 * in normalized timespec format in the variable pointed to by @ts.
272 */
273void ktime_get_ts(struct timespec *ts)
274{
John Stultz4e250fd2012-07-27 14:48:13 -0400275 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200276 struct timespec tomono;
John Stultzec145ba2012-09-11 19:26:03 -0400277 s64 nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200278 unsigned int seq;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200279
280 WARN_ON(timekeeping_suspended);
281
282 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400283 seq = read_seqbegin(&tk->lock);
284 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -0400285 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -0400286 tomono = tk->wall_to_monotonic;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200287
John Stultz4e250fd2012-07-27 14:48:13 -0400288 } while (read_seqretry(&tk->lock, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200289
John Stultzec145ba2012-09-11 19:26:03 -0400290 ts->tv_sec += tomono.tv_sec;
291 ts->tv_nsec = 0;
292 timespec_add_ns(ts, nsec + tomono.tv_nsec);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200293}
294EXPORT_SYMBOL_GPL(ktime_get_ts);
295
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800296#ifdef CONFIG_NTP_PPS
297
298/**
299 * getnstime_raw_and_real - get day and raw monotonic time in timespec format
300 * @ts_raw: pointer to the timespec to be set to raw monotonic time
301 * @ts_real: pointer to the timespec to be set to the time of day
302 *
303 * This function reads both the time of day and raw monotonic time at the
304 * same time atomically and stores the resulting timestamps in timespec
305 * format.
306 */
307void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
308{
John Stultz4e250fd2012-07-27 14:48:13 -0400309 struct timekeeper *tk = &timekeeper;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800310 unsigned long seq;
311 s64 nsecs_raw, nsecs_real;
312
313 WARN_ON_ONCE(timekeeping_suspended);
314
315 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400316 seq = read_seqbegin(&tk->lock);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800317
John Stultz4e250fd2012-07-27 14:48:13 -0400318 *ts_raw = tk->raw_time;
319 ts_real->tv_sec = tk->xtime_sec;
John Stultz1e75fa82012-07-13 01:21:53 -0400320 ts_real->tv_nsec = 0;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800321
John Stultz4e250fd2012-07-27 14:48:13 -0400322 nsecs_raw = timekeeping_get_ns_raw(tk);
323 nsecs_real = timekeeping_get_ns(tk);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800324
John Stultz4e250fd2012-07-27 14:48:13 -0400325 } while (read_seqretry(&tk->lock, seq));
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800326
327 timespec_add_ns(ts_raw, nsecs_raw);
328 timespec_add_ns(ts_real, nsecs_real);
329}
330EXPORT_SYMBOL(getnstime_raw_and_real);
331
332#endif /* CONFIG_NTP_PPS */
333
john stultz85240702007-05-08 00:27:59 -0700334/**
335 * do_gettimeofday - Returns the time of day in a timeval
336 * @tv: pointer to the timeval to be set
337 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100338 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -0700339 */
340void do_gettimeofday(struct timeval *tv)
341{
342 struct timespec now;
343
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100344 getnstimeofday(&now);
john stultz85240702007-05-08 00:27:59 -0700345 tv->tv_sec = now.tv_sec;
346 tv->tv_usec = now.tv_nsec/1000;
347}
john stultz85240702007-05-08 00:27:59 -0700348EXPORT_SYMBOL(do_gettimeofday);
Richard Cochrand239f492012-04-27 10:12:42 +0200349
john stultz85240702007-05-08 00:27:59 -0700350/**
351 * do_settimeofday - Sets the time of day
352 * @tv: pointer to the timespec variable containing the new time
353 *
354 * Sets the time of day to the new time and update NTP and notify hrtimers
355 */
Richard Cochran1e6d7672011-02-01 13:50:58 +0000356int do_settimeofday(const struct timespec *tv)
john stultz85240702007-05-08 00:27:59 -0700357{
John Stultz4e250fd2012-07-27 14:48:13 -0400358 struct timekeeper *tk = &timekeeper;
John Stultz1e75fa82012-07-13 01:21:53 -0400359 struct timespec ts_delta, xt;
John Stultz92c1d3e2011-11-14 14:05:44 -0800360 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700361
John Stultzcee58482012-08-31 13:30:06 -0400362 if (!timespec_valid_strict(tv))
john stultz85240702007-05-08 00:27:59 -0700363 return -EINVAL;
364
John Stultz4e250fd2012-07-27 14:48:13 -0400365 write_seqlock_irqsave(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700366
John Stultz4e250fd2012-07-27 14:48:13 -0400367 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700368
John Stultz4e250fd2012-07-27 14:48:13 -0400369 xt = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400370 ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
371 ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
372
John Stultz4e250fd2012-07-27 14:48:13 -0400373 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, ts_delta));
john stultz85240702007-05-08 00:27:59 -0700374
John Stultz4e250fd2012-07-27 14:48:13 -0400375 tk_set_xtime(tk, tv);
John Stultz1e75fa82012-07-13 01:21:53 -0400376
John Stultz4e250fd2012-07-27 14:48:13 -0400377 timekeeping_update(tk, true);
john stultz85240702007-05-08 00:27:59 -0700378
John Stultz4e250fd2012-07-27 14:48:13 -0400379 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700380
381 /* signal hrtimers about time change */
382 clock_was_set();
383
384 return 0;
385}
john stultz85240702007-05-08 00:27:59 -0700386EXPORT_SYMBOL(do_settimeofday);
387
John Stultzc528f7c2011-02-01 13:52:17 +0000388/**
389 * timekeeping_inject_offset - Adds or subtracts from the current time.
390 * @tv: pointer to the timespec variable containing the offset
391 *
392 * Adds or subtracts an offset value from the current time.
393 */
394int timekeeping_inject_offset(struct timespec *ts)
395{
John Stultz4e250fd2012-07-27 14:48:13 -0400396 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800397 unsigned long flags;
John Stultz4e8b1452012-08-08 15:36:20 -0400398 struct timespec tmp;
399 int ret = 0;
John Stultzc528f7c2011-02-01 13:52:17 +0000400
401 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
402 return -EINVAL;
403
John Stultz4e250fd2012-07-27 14:48:13 -0400404 write_seqlock_irqsave(&tk->lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000405
John Stultz4e250fd2012-07-27 14:48:13 -0400406 timekeeping_forward_now(tk);
John Stultzc528f7c2011-02-01 13:52:17 +0000407
John Stultz4e8b1452012-08-08 15:36:20 -0400408 /* Make sure the proposed value is valid */
409 tmp = timespec_add(tk_xtime(tk), *ts);
John Stultzcee58482012-08-31 13:30:06 -0400410 if (!timespec_valid_strict(&tmp)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400411 ret = -EINVAL;
412 goto error;
413 }
John Stultz1e75fa82012-07-13 01:21:53 -0400414
John Stultz4e250fd2012-07-27 14:48:13 -0400415 tk_xtime_add(tk, ts);
416 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *ts));
John Stultzc528f7c2011-02-01 13:52:17 +0000417
John Stultz4e8b1452012-08-08 15:36:20 -0400418error: /* even if we error out, we forwarded the time, so call update */
John Stultz4e250fd2012-07-27 14:48:13 -0400419 timekeeping_update(tk, true);
John Stultzc528f7c2011-02-01 13:52:17 +0000420
John Stultz4e250fd2012-07-27 14:48:13 -0400421 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000422
423 /* signal hrtimers about time change */
424 clock_was_set();
425
John Stultz4e8b1452012-08-08 15:36:20 -0400426 return ret;
John Stultzc528f7c2011-02-01 13:52:17 +0000427}
428EXPORT_SYMBOL(timekeeping_inject_offset);
429
john stultz85240702007-05-08 00:27:59 -0700430/**
431 * change_clocksource - Swaps clocksources if a new one is available
432 *
433 * Accumulates current time interval and initializes new clocksource
434 */
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200435static int change_clocksource(void *data)
john stultz85240702007-05-08 00:27:59 -0700436{
John Stultz4e250fd2012-07-27 14:48:13 -0400437 struct timekeeper *tk = &timekeeper;
Magnus Damm4614e6a2009-04-21 12:24:02 -0700438 struct clocksource *new, *old;
John Stultzf695cf92012-03-14 16:38:15 -0700439 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700440
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200441 new = (struct clocksource *) data;
john stultz85240702007-05-08 00:27:59 -0700442
John Stultz4e250fd2012-07-27 14:48:13 -0400443 write_seqlock_irqsave(&tk->lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -0700444
John Stultz4e250fd2012-07-27 14:48:13 -0400445 timekeeping_forward_now(tk);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200446 if (!new->enable || new->enable(new) == 0) {
John Stultz4e250fd2012-07-27 14:48:13 -0400447 old = tk->clock;
448 tk_setup_internals(tk, new);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200449 if (old->disable)
450 old->disable(old);
451 }
John Stultz4e250fd2012-07-27 14:48:13 -0400452 timekeeping_update(tk, true);
John Stultzf695cf92012-03-14 16:38:15 -0700453
John Stultz4e250fd2012-07-27 14:48:13 -0400454 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultzf695cf92012-03-14 16:38:15 -0700455
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200456 return 0;
457}
john stultz85240702007-05-08 00:27:59 -0700458
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200459/**
460 * timekeeping_notify - Install a new clock source
461 * @clock: pointer to the clock source
462 *
463 * This function is called from clocksource.c after a new, better clock
464 * source has been registered. The caller holds the clocksource_mutex.
465 */
466void timekeeping_notify(struct clocksource *clock)
467{
John Stultz4e250fd2012-07-27 14:48:13 -0400468 struct timekeeper *tk = &timekeeper;
469
470 if (tk->clock == clock)
Magnus Damm4614e6a2009-04-21 12:24:02 -0700471 return;
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200472 stop_machine(change_clocksource, clock, NULL);
john stultz85240702007-05-08 00:27:59 -0700473 tick_clock_notify();
john stultz85240702007-05-08 00:27:59 -0700474}
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200475
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200476/**
477 * ktime_get_real - get the real (wall-) time in ktime_t format
478 *
479 * returns the time in ktime_t format
480 */
481ktime_t ktime_get_real(void)
482{
483 struct timespec now;
484
485 getnstimeofday(&now);
486
487 return timespec_to_ktime(now);
488}
489EXPORT_SYMBOL_GPL(ktime_get_real);
john stultz85240702007-05-08 00:27:59 -0700490
491/**
John Stultz2d422442008-08-20 16:37:30 -0700492 * getrawmonotonic - Returns the raw monotonic time in a timespec
493 * @ts: pointer to the timespec to be set
494 *
495 * Returns the raw monotonic time (completely un-modified by ntp)
496 */
497void getrawmonotonic(struct timespec *ts)
498{
John Stultz4e250fd2012-07-27 14:48:13 -0400499 struct timekeeper *tk = &timekeeper;
John Stultz2d422442008-08-20 16:37:30 -0700500 unsigned long seq;
501 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -0700502
503 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400504 seq = read_seqbegin(&tk->lock);
505 nsecs = timekeeping_get_ns_raw(tk);
506 *ts = tk->raw_time;
John Stultz2d422442008-08-20 16:37:30 -0700507
John Stultz4e250fd2012-07-27 14:48:13 -0400508 } while (read_seqretry(&tk->lock, seq));
John Stultz2d422442008-08-20 16:37:30 -0700509
510 timespec_add_ns(ts, nsecs);
511}
512EXPORT_SYMBOL(getrawmonotonic);
513
John Stultz2d422442008-08-20 16:37:30 -0700514/**
Li Zefancf4fc6c2008-02-08 04:19:24 -0800515 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -0700516 */
Li Zefancf4fc6c2008-02-08 04:19:24 -0800517int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -0700518{
John Stultz4e250fd2012-07-27 14:48:13 -0400519 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -0700520 unsigned long seq;
521 int ret;
522
523 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400524 seq = read_seqbegin(&tk->lock);
john stultz85240702007-05-08 00:27:59 -0700525
John Stultz4e250fd2012-07-27 14:48:13 -0400526 ret = tk->clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -0700527
John Stultz4e250fd2012-07-27 14:48:13 -0400528 } while (read_seqretry(&tk->lock, seq));
john stultz85240702007-05-08 00:27:59 -0700529
530 return ret;
531}
532
533/**
Jon Hunter98962462009-08-18 12:45:10 -0500534 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
Jon Hunter98962462009-08-18 12:45:10 -0500535 */
536u64 timekeeping_max_deferment(void)
537{
John Stultz4e250fd2012-07-27 14:48:13 -0400538 struct timekeeper *tk = &timekeeper;
John Stultz70471f22011-11-14 12:48:10 -0800539 unsigned long seq;
540 u64 ret;
John Stultz42e71e82012-07-13 01:21:51 -0400541
John Stultz70471f22011-11-14 12:48:10 -0800542 do {
John Stultz4e250fd2012-07-27 14:48:13 -0400543 seq = read_seqbegin(&tk->lock);
John Stultz70471f22011-11-14 12:48:10 -0800544
John Stultz4e250fd2012-07-27 14:48:13 -0400545 ret = tk->clock->max_idle_ns;
John Stultz70471f22011-11-14 12:48:10 -0800546
John Stultz4e250fd2012-07-27 14:48:13 -0400547 } while (read_seqretry(&tk->lock, seq));
John Stultz70471f22011-11-14 12:48:10 -0800548
549 return ret;
Jon Hunter98962462009-08-18 12:45:10 -0500550}
551
552/**
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200553 * read_persistent_clock - Return time from the persistent clock.
john stultz85240702007-05-08 00:27:59 -0700554 *
555 * Weak dummy function for arches that do not yet support it.
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200556 * Reads the time from the battery backed persistent clock.
557 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
john stultz85240702007-05-08 00:27:59 -0700558 *
559 * XXX - Do be sure to remove it once all arches implement it.
560 */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200561void __attribute__((weak)) read_persistent_clock(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700562{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200563 ts->tv_sec = 0;
564 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700565}
566
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200567/**
568 * read_boot_clock - Return time of the system start.
569 *
570 * Weak dummy function for arches that do not yet support it.
571 * Function to read the exact time the system has been started.
572 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
573 *
574 * XXX - Do be sure to remove it once all arches implement it.
575 */
576void __attribute__((weak)) read_boot_clock(struct timespec *ts)
577{
578 ts->tv_sec = 0;
579 ts->tv_nsec = 0;
580}
581
john stultz85240702007-05-08 00:27:59 -0700582/*
583 * timekeeping_init - Initializes the clocksource and common timekeeping values
584 */
585void __init timekeeping_init(void)
586{
John Stultz4e250fd2012-07-27 14:48:13 -0400587 struct timekeeper *tk = &timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200588 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700589 unsigned long flags;
John Stultz6d0ef902012-07-27 14:48:12 -0400590 struct timespec now, boot, tmp;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200591
592 read_persistent_clock(&now);
John Stultzcee58482012-08-31 13:30:06 -0400593 if (!timespec_valid_strict(&now)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400594 pr_warn("WARNING: Persistent clock returned invalid value!\n"
595 " Check your CMOS/BIOS settings.\n");
596 now.tv_sec = 0;
597 now.tv_nsec = 0;
598 }
599
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200600 read_boot_clock(&boot);
John Stultzcee58482012-08-31 13:30:06 -0400601 if (!timespec_valid_strict(&boot)) {
John Stultz4e8b1452012-08-08 15:36:20 -0400602 pr_warn("WARNING: Boot clock returned invalid value!\n"
603 " Check your CMOS/BIOS settings.\n");
604 boot.tv_sec = 0;
605 boot.tv_nsec = 0;
606 }
john stultz85240702007-05-08 00:27:59 -0700607
John Stultz4e250fd2012-07-27 14:48:13 -0400608 seqlock_init(&tk->lock);
John Stultz70471f22011-11-14 12:48:10 -0800609
Roman Zippel7dffa3c2008-05-01 04:34:41 -0700610 ntp_init();
john stultz85240702007-05-08 00:27:59 -0700611
John Stultz4e250fd2012-07-27 14:48:13 -0400612 write_seqlock_irqsave(&tk->lock, flags);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200613 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200614 if (clock->enable)
615 clock->enable(clock);
John Stultz4e250fd2012-07-27 14:48:13 -0400616 tk_setup_internals(tk, clock);
john stultz85240702007-05-08 00:27:59 -0700617
John Stultz4e250fd2012-07-27 14:48:13 -0400618 tk_set_xtime(tk, &now);
619 tk->raw_time.tv_sec = 0;
620 tk->raw_time.tv_nsec = 0;
John Stultz1e75fa82012-07-13 01:21:53 -0400621 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
John Stultz4e250fd2012-07-27 14:48:13 -0400622 boot = tk_xtime(tk);
John Stultz1e75fa82012-07-13 01:21:53 -0400623
John Stultz6d0ef902012-07-27 14:48:12 -0400624 set_normalized_timespec(&tmp, -boot.tv_sec, -boot.tv_nsec);
John Stultz4e250fd2012-07-27 14:48:13 -0400625 tk_set_wall_to_mono(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400626
627 tmp.tv_sec = 0;
628 tmp.tv_nsec = 0;
John Stultz4e250fd2012-07-27 14:48:13 -0400629 tk_set_sleep_time(tk, tmp);
John Stultz6d0ef902012-07-27 14:48:12 -0400630
John Stultz4e250fd2012-07-27 14:48:13 -0400631 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700632}
633
john stultz85240702007-05-08 00:27:59 -0700634/* time in seconds when suspend began */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200635static struct timespec timekeeping_suspend_time;
john stultz85240702007-05-08 00:27:59 -0700636
637/**
John Stultz304529b2011-04-01 14:32:09 -0700638 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
639 * @delta: pointer to a timespec delta value
640 *
641 * Takes a timespec offset measuring a suspend interval and properly
642 * adds the sleep offset to the timekeeping variables.
643 */
John Stultzf726a692012-07-13 01:21:57 -0400644static void __timekeeping_inject_sleeptime(struct timekeeper *tk,
645 struct timespec *delta)
John Stultz304529b2011-04-01 14:32:09 -0700646{
John Stultzcee58482012-08-31 13:30:06 -0400647 if (!timespec_valid_strict(delta)) {
John Stultzcbaa5152011-07-20 15:42:55 -0700648 printk(KERN_WARNING "__timekeeping_inject_sleeptime: Invalid "
John Stultzcb5de2f8d2011-06-01 18:18:09 -0700649 "sleep delta value!\n");
650 return;
651 }
John Stultzf726a692012-07-13 01:21:57 -0400652 tk_xtime_add(tk, delta);
John Stultz6d0ef902012-07-27 14:48:12 -0400653 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *delta));
654 tk_set_sleep_time(tk, timespec_add(tk->total_sleep_time, *delta));
John Stultz304529b2011-04-01 14:32:09 -0700655}
656
John Stultz304529b2011-04-01 14:32:09 -0700657/**
658 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
659 * @delta: pointer to a timespec delta value
660 *
661 * This hook is for architectures that cannot support read_persistent_clock
662 * because their RTC/persistent clock is only accessible when irqs are enabled.
663 *
664 * This function should only be called by rtc_resume(), and allows
665 * a suspend offset to be injected into the timekeeping values.
666 */
667void timekeeping_inject_sleeptime(struct timespec *delta)
668{
John Stultz4e250fd2012-07-27 14:48:13 -0400669 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800670 unsigned long flags;
John Stultz304529b2011-04-01 14:32:09 -0700671 struct timespec ts;
672
673 /* Make sure we don't set the clock twice */
674 read_persistent_clock(&ts);
675 if (!(ts.tv_sec == 0 && ts.tv_nsec == 0))
676 return;
677
John Stultz4e250fd2012-07-27 14:48:13 -0400678 write_seqlock_irqsave(&tk->lock, flags);
John Stultz70471f22011-11-14 12:48:10 -0800679
John Stultz4e250fd2012-07-27 14:48:13 -0400680 timekeeping_forward_now(tk);
John Stultz304529b2011-04-01 14:32:09 -0700681
John Stultz4e250fd2012-07-27 14:48:13 -0400682 __timekeeping_inject_sleeptime(tk, delta);
John Stultz304529b2011-04-01 14:32:09 -0700683
John Stultz4e250fd2012-07-27 14:48:13 -0400684 timekeeping_update(tk, true);
John Stultz304529b2011-04-01 14:32:09 -0700685
John Stultz4e250fd2012-07-27 14:48:13 -0400686 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultz304529b2011-04-01 14:32:09 -0700687
688 /* signal hrtimers about time change */
689 clock_was_set();
690}
691
John Stultz304529b2011-04-01 14:32:09 -0700692/**
john stultz85240702007-05-08 00:27:59 -0700693 * timekeeping_resume - Resumes the generic timekeeping subsystem.
john stultz85240702007-05-08 00:27:59 -0700694 *
695 * This is for the generic clocksource timekeeping.
696 * xtime/wall_to_monotonic/jiffies/etc are
697 * still managed by arch specific suspend/resume code.
698 */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100699static void timekeeping_resume(void)
john stultz85240702007-05-08 00:27:59 -0700700{
John Stultz4e250fd2012-07-27 14:48:13 -0400701 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800702 unsigned long flags;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200703 struct timespec ts;
704
705 read_persistent_clock(&ts);
john stultz85240702007-05-08 00:27:59 -0700706
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +0200707 clockevents_resume();
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +0200708 clocksource_resume();
709
John Stultz4e250fd2012-07-27 14:48:13 -0400710 write_seqlock_irqsave(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700711
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200712 if (timespec_compare(&ts, &timekeeping_suspend_time) > 0) {
713 ts = timespec_sub(ts, timekeeping_suspend_time);
John Stultz4e250fd2012-07-27 14:48:13 -0400714 __timekeeping_inject_sleeptime(tk, &ts);
john stultz85240702007-05-08 00:27:59 -0700715 }
716 /* re-base the last cycle value */
John Stultz4e250fd2012-07-27 14:48:13 -0400717 tk->clock->cycle_last = tk->clock->read(tk->clock);
718 tk->ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -0700719 timekeeping_suspended = 0;
John Stultz4e250fd2012-07-27 14:48:13 -0400720 timekeeping_update(tk, false);
721 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700722
723 touch_softlockup_watchdog();
724
725 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
726
727 /* Resume hrtimers */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200728 hrtimers_resume();
john stultz85240702007-05-08 00:27:59 -0700729}
730
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100731static int timekeeping_suspend(void)
john stultz85240702007-05-08 00:27:59 -0700732{
John Stultz4e250fd2012-07-27 14:48:13 -0400733 struct timekeeper *tk = &timekeeper;
John Stultz92c1d3e2011-11-14 14:05:44 -0800734 unsigned long flags;
John Stultzcb332172011-05-31 22:53:23 -0700735 struct timespec delta, delta_delta;
736 static struct timespec old_delta;
john stultz85240702007-05-08 00:27:59 -0700737
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200738 read_persistent_clock(&timekeeping_suspend_time);
Thomas Gleixner3be90952007-09-16 15:36:43 +0200739
John Stultz4e250fd2012-07-27 14:48:13 -0400740 write_seqlock_irqsave(&tk->lock, flags);
741 timekeeping_forward_now(tk);
john stultz85240702007-05-08 00:27:59 -0700742 timekeeping_suspended = 1;
John Stultzcb332172011-05-31 22:53:23 -0700743
744 /*
745 * To avoid drift caused by repeated suspend/resumes,
746 * which each can add ~1 second drift error,
747 * try to compensate so the difference in system time
748 * and persistent_clock time stays close to constant.
749 */
John Stultz4e250fd2012-07-27 14:48:13 -0400750 delta = timespec_sub(tk_xtime(tk), timekeeping_suspend_time);
John Stultzcb332172011-05-31 22:53:23 -0700751 delta_delta = timespec_sub(delta, old_delta);
752 if (abs(delta_delta.tv_sec) >= 2) {
753 /*
754 * if delta_delta is too large, assume time correction
755 * has occured and set old_delta to the current delta.
756 */
757 old_delta = delta;
758 } else {
759 /* Otherwise try to adjust old_system to compensate */
760 timekeeping_suspend_time =
761 timespec_add(timekeeping_suspend_time, delta_delta);
762 }
John Stultz4e250fd2012-07-27 14:48:13 -0400763 write_sequnlock_irqrestore(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -0700764
765 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
Magnus Dammc54a42b2010-02-02 14:41:41 -0800766 clocksource_suspend();
Rafael J. Wysockiadc78e62012-08-06 01:40:41 +0200767 clockevents_suspend();
john stultz85240702007-05-08 00:27:59 -0700768
769 return 0;
770}
771
772/* sysfs resume/suspend bits for timekeeping */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100773static struct syscore_ops timekeeping_syscore_ops = {
john stultz85240702007-05-08 00:27:59 -0700774 .resume = timekeeping_resume,
775 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -0700776};
777
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100778static int __init timekeeping_init_ops(void)
john stultz85240702007-05-08 00:27:59 -0700779{
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100780 register_syscore_ops(&timekeeping_syscore_ops);
781 return 0;
john stultz85240702007-05-08 00:27:59 -0700782}
783
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100784device_initcall(timekeeping_init_ops);
john stultz85240702007-05-08 00:27:59 -0700785
786/*
787 * If the error is already larger, we look ahead even further
788 * to compensate for late or lost adjustments.
789 */
John Stultzf726a692012-07-13 01:21:57 -0400790static __always_inline int timekeeping_bigadjust(struct timekeeper *tk,
791 s64 error, s64 *interval,
john stultz85240702007-05-08 00:27:59 -0700792 s64 *offset)
793{
794 s64 tick_error, i;
795 u32 look_ahead, adj;
796 s32 error2, mult;
797
798 /*
799 * Use the current error value to determine how much to look ahead.
800 * The larger the error the slower we adjust for it to avoid problems
801 * with losing too many ticks, otherwise we would overadjust and
802 * produce an even larger error. The smaller the adjustment the
803 * faster we try to adjust for it, as lost ticks can do less harm
Li Zefan3eb05672008-02-08 04:19:25 -0800804 * here. This is tuned so that an error of about 1 msec is adjusted
john stultz85240702007-05-08 00:27:59 -0700805 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
806 */
John Stultzf726a692012-07-13 01:21:57 -0400807 error2 = tk->ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
john stultz85240702007-05-08 00:27:59 -0700808 error2 = abs(error2);
809 for (look_ahead = 0; error2 > 0; look_ahead++)
810 error2 >>= 2;
811
812 /*
813 * Now calculate the error in (1 << look_ahead) ticks, but first
814 * remove the single look ahead already included in the error.
815 */
John Stultzf726a692012-07-13 01:21:57 -0400816 tick_error = ntp_tick_length() >> (tk->ntp_error_shift + 1);
817 tick_error -= tk->xtime_interval >> 1;
john stultz85240702007-05-08 00:27:59 -0700818 error = ((error - tick_error) >> look_ahead) + tick_error;
819
820 /* Finally calculate the adjustment shift value. */
821 i = *interval;
822 mult = 1;
823 if (error < 0) {
824 error = -error;
825 *interval = -*interval;
826 *offset = -*offset;
827 mult = -1;
828 }
829 for (adj = 0; error > i; adj++)
830 error >>= 1;
831
832 *interval <<= adj;
833 *offset <<= adj;
834 return mult << adj;
835}
836
837/*
838 * Adjust the multiplier to reduce the error value,
839 * this is optimized for the most common adjustments of -1,0,1,
840 * for other values we can do a bit more work.
841 */
John Stultzf726a692012-07-13 01:21:57 -0400842static void timekeeping_adjust(struct timekeeper *tk, s64 offset)
john stultz85240702007-05-08 00:27:59 -0700843{
John Stultzf726a692012-07-13 01:21:57 -0400844 s64 error, interval = tk->cycle_interval;
john stultz85240702007-05-08 00:27:59 -0700845 int adj;
846
John Stultzc2bc1112011-10-27 18:12:42 -0700847 /*
Jim Cromie88b28ad2012-03-14 21:28:56 -0600848 * The point of this is to check if the error is greater than half
John Stultzc2bc1112011-10-27 18:12:42 -0700849 * an interval.
850 *
851 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
852 *
853 * Note we subtract one in the shift, so that error is really error*2.
John Stultz3f86f282011-10-27 17:41:17 -0700854 * This "saves" dividing(shifting) interval twice, but keeps the
855 * (error > interval) comparison as still measuring if error is
Jim Cromie88b28ad2012-03-14 21:28:56 -0600856 * larger than half an interval.
John Stultzc2bc1112011-10-27 18:12:42 -0700857 *
John Stultz3f86f282011-10-27 17:41:17 -0700858 * Note: It does not "save" on aggravation when reading the code.
John Stultzc2bc1112011-10-27 18:12:42 -0700859 */
John Stultzf726a692012-07-13 01:21:57 -0400860 error = tk->ntp_error >> (tk->ntp_error_shift - 1);
john stultz85240702007-05-08 00:27:59 -0700861 if (error > interval) {
John Stultzc2bc1112011-10-27 18:12:42 -0700862 /*
863 * We now divide error by 4(via shift), which checks if
Jim Cromie88b28ad2012-03-14 21:28:56 -0600864 * the error is greater than twice the interval.
John Stultzc2bc1112011-10-27 18:12:42 -0700865 * If it is greater, we need a bigadjust, if its smaller,
866 * we can adjust by 1.
867 */
john stultz85240702007-05-08 00:27:59 -0700868 error >>= 2;
John Stultzc2bc1112011-10-27 18:12:42 -0700869 /*
870 * XXX - In update_wall_time, we round up to the next
871 * nanosecond, and store the amount rounded up into
872 * the error. This causes the likely below to be unlikely.
873 *
John Stultz3f86f282011-10-27 17:41:17 -0700874 * The proper fix is to avoid rounding up by using
John Stultz4e250fd2012-07-27 14:48:13 -0400875 * the high precision tk->xtime_nsec instead of
John Stultzc2bc1112011-10-27 18:12:42 -0700876 * xtime.tv_nsec everywhere. Fixing this will take some
877 * time.
878 */
john stultz85240702007-05-08 00:27:59 -0700879 if (likely(error <= interval))
880 adj = 1;
881 else
Ingo Molnar1d17d172012-08-04 21:21:14 +0200882 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
883 } else {
884 if (error < -interval) {
885 /* See comment above, this is just switched for the negative */
886 error >>= 2;
887 if (likely(error >= -interval)) {
888 adj = -1;
889 interval = -interval;
890 offset = -offset;
891 } else {
892 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
893 }
894 } else {
895 goto out_adjust;
896 }
897 }
john stultz85240702007-05-08 00:27:59 -0700898
John Stultzf726a692012-07-13 01:21:57 -0400899 if (unlikely(tk->clock->maxadj &&
900 (tk->mult + adj > tk->clock->mult + tk->clock->maxadj))) {
John Stultze919cfd2012-03-22 19:14:46 -0700901 printk_once(KERN_WARNING
902 "Adjusting %s more than 11%% (%ld vs %ld)\n",
John Stultzf726a692012-07-13 01:21:57 -0400903 tk->clock->name, (long)tk->mult + adj,
904 (long)tk->clock->mult + tk->clock->maxadj);
John Stultze919cfd2012-03-22 19:14:46 -0700905 }
John Stultzc2bc1112011-10-27 18:12:42 -0700906 /*
907 * So the following can be confusing.
908 *
909 * To keep things simple, lets assume adj == 1 for now.
910 *
911 * When adj != 1, remember that the interval and offset values
912 * have been appropriately scaled so the math is the same.
913 *
914 * The basic idea here is that we're increasing the multiplier
915 * by one, this causes the xtime_interval to be incremented by
916 * one cycle_interval. This is because:
917 * xtime_interval = cycle_interval * mult
918 * So if mult is being incremented by one:
919 * xtime_interval = cycle_interval * (mult + 1)
920 * Its the same as:
921 * xtime_interval = (cycle_interval * mult) + cycle_interval
922 * Which can be shortened to:
923 * xtime_interval += cycle_interval
924 *
925 * So offset stores the non-accumulated cycles. Thus the current
926 * time (in shifted nanoseconds) is:
927 * now = (offset * adj) + xtime_nsec
928 * Now, even though we're adjusting the clock frequency, we have
929 * to keep time consistent. In other words, we can't jump back
930 * in time, and we also want to avoid jumping forward in time.
931 *
932 * So given the same offset value, we need the time to be the same
933 * both before and after the freq adjustment.
934 * now = (offset * adj_1) + xtime_nsec_1
935 * now = (offset * adj_2) + xtime_nsec_2
936 * So:
937 * (offset * adj_1) + xtime_nsec_1 =
938 * (offset * adj_2) + xtime_nsec_2
939 * And we know:
940 * adj_2 = adj_1 + 1
941 * So:
942 * (offset * adj_1) + xtime_nsec_1 =
943 * (offset * (adj_1+1)) + xtime_nsec_2
944 * (offset * adj_1) + xtime_nsec_1 =
945 * (offset * adj_1) + offset + xtime_nsec_2
946 * Canceling the sides:
947 * xtime_nsec_1 = offset + xtime_nsec_2
948 * Which gives us:
949 * xtime_nsec_2 = xtime_nsec_1 - offset
950 * Which simplfies to:
951 * xtime_nsec -= offset
952 *
953 * XXX - TODO: Doc ntp_error calculation.
954 */
John Stultzf726a692012-07-13 01:21:57 -0400955 tk->mult += adj;
956 tk->xtime_interval += interval;
957 tk->xtime_nsec -= offset;
958 tk->ntp_error -= (interval - offset) << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -0400959
Ingo Molnar1d17d172012-08-04 21:21:14 +0200960out_adjust:
John Stultz2a8c0882012-07-13 01:21:56 -0400961 /*
962 * It may be possible that when we entered this function, xtime_nsec
963 * was very small. Further, if we're slightly speeding the clocksource
964 * in the code above, its possible the required corrective factor to
965 * xtime_nsec could cause it to underflow.
966 *
967 * Now, since we already accumulated the second, cannot simply roll
968 * the accumulated second back, since the NTP subsystem has been
969 * notified via second_overflow. So instead we push xtime_nsec forward
970 * by the amount we underflowed, and add that amount into the error.
971 *
972 * We'll correct this error next time through this function, when
973 * xtime_nsec is not as small.
974 */
John Stultzf726a692012-07-13 01:21:57 -0400975 if (unlikely((s64)tk->xtime_nsec < 0)) {
976 s64 neg = -(s64)tk->xtime_nsec;
977 tk->xtime_nsec = 0;
978 tk->ntp_error += neg << tk->ntp_error_shift;
John Stultz2a8c0882012-07-13 01:21:56 -0400979 }
980
john stultz85240702007-05-08 00:27:59 -0700981}
982
983/**
John Stultz1f4f9482012-07-13 01:21:54 -0400984 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
985 *
986 * Helper function that accumulates a the nsecs greater then a second
987 * from the xtime_nsec field to the xtime_secs field.
988 * It also calls into the NTP code to handle leapsecond processing.
989 *
990 */
991static inline void accumulate_nsecs_to_secs(struct timekeeper *tk)
992{
993 u64 nsecps = (u64)NSEC_PER_SEC << tk->shift;
994
995 while (tk->xtime_nsec >= nsecps) {
996 int leap;
997
998 tk->xtime_nsec -= nsecps;
999 tk->xtime_sec++;
1000
1001 /* Figure out if its a leap sec and apply if needed */
1002 leap = second_overflow(tk->xtime_sec);
John Stultz6d0ef902012-07-27 14:48:12 -04001003 if (unlikely(leap)) {
1004 struct timespec ts;
John Stultz1f4f9482012-07-13 01:21:54 -04001005
John Stultz6d0ef902012-07-27 14:48:12 -04001006 tk->xtime_sec += leap;
1007
1008 ts.tv_sec = leap;
1009 ts.tv_nsec = 0;
1010 tk_set_wall_to_mono(tk,
1011 timespec_sub(tk->wall_to_monotonic, ts));
1012
1013 clock_was_set_delayed();
1014 }
John Stultz1f4f9482012-07-13 01:21:54 -04001015 }
1016}
1017
John Stultz1f4f9482012-07-13 01:21:54 -04001018/**
john stultza092ff02009-10-02 16:17:53 -07001019 * logarithmic_accumulation - shifted accumulation of cycles
1020 *
1021 * This functions accumulates a shifted interval of cycles into
1022 * into a shifted interval nanoseconds. Allows for O(log) accumulation
1023 * loop.
1024 *
1025 * Returns the unconsumed cycles.
1026 */
John Stultzf726a692012-07-13 01:21:57 -04001027static cycle_t logarithmic_accumulation(struct timekeeper *tk, cycle_t offset,
1028 u32 shift)
john stultza092ff02009-10-02 16:17:53 -07001029{
Jason Wesseldeda2e82010-08-09 14:20:09 -07001030 u64 raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001031
John Stultzf726a692012-07-13 01:21:57 -04001032 /* If the offset is smaller then a shifted interval, do nothing */
1033 if (offset < tk->cycle_interval<<shift)
john stultza092ff02009-10-02 16:17:53 -07001034 return offset;
1035
1036 /* Accumulate one shifted interval */
John Stultzf726a692012-07-13 01:21:57 -04001037 offset -= tk->cycle_interval << shift;
1038 tk->clock->cycle_last += tk->cycle_interval << shift;
john stultza092ff02009-10-02 16:17:53 -07001039
John Stultzf726a692012-07-13 01:21:57 -04001040 tk->xtime_nsec += tk->xtime_interval << shift;
1041 accumulate_nsecs_to_secs(tk);
john stultza092ff02009-10-02 16:17:53 -07001042
Jason Wesseldeda2e82010-08-09 14:20:09 -07001043 /* Accumulate raw time */
Dan Carpenter5b3900c2012-10-09 10:18:23 +03001044 raw_nsecs = (u64)tk->raw_interval << shift;
John Stultzf726a692012-07-13 01:21:57 -04001045 raw_nsecs += tk->raw_time.tv_nsec;
John Stultzc7dcf872010-08-13 11:30:58 -07001046 if (raw_nsecs >= NSEC_PER_SEC) {
1047 u64 raw_secs = raw_nsecs;
1048 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
John Stultzf726a692012-07-13 01:21:57 -04001049 tk->raw_time.tv_sec += raw_secs;
john stultza092ff02009-10-02 16:17:53 -07001050 }
John Stultzf726a692012-07-13 01:21:57 -04001051 tk->raw_time.tv_nsec = raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001052
1053 /* Accumulate error between NTP and clock interval */
John Stultzf726a692012-07-13 01:21:57 -04001054 tk->ntp_error += ntp_tick_length() << shift;
1055 tk->ntp_error -= (tk->xtime_interval + tk->xtime_remainder) <<
1056 (tk->ntp_error_shift + shift);
john stultza092ff02009-10-02 16:17:53 -07001057
1058 return offset;
1059}
1060
John Stultz92bb1fc2012-09-04 15:38:12 -04001061#ifdef CONFIG_GENERIC_TIME_VSYSCALL_OLD
1062static inline void old_vsyscall_fixup(struct timekeeper *tk)
1063{
1064 s64 remainder;
1065
1066 /*
1067 * Store only full nanoseconds into xtime_nsec after rounding
1068 * it up and add the remainder to the error difference.
1069 * XXX - This is necessary to avoid small 1ns inconsistnecies caused
1070 * by truncating the remainder in vsyscalls. However, it causes
1071 * additional work to be done in timekeeping_adjust(). Once
1072 * the vsyscall implementations are converted to use xtime_nsec
1073 * (shifted nanoseconds), and CONFIG_GENERIC_TIME_VSYSCALL_OLD
1074 * users are removed, this can be killed.
1075 */
1076 remainder = tk->xtime_nsec & ((1ULL << tk->shift) - 1);
1077 tk->xtime_nsec -= remainder;
1078 tk->xtime_nsec += 1ULL << tk->shift;
1079 tk->ntp_error += remainder << tk->ntp_error_shift;
1080
1081}
1082#else
1083#define old_vsyscall_fixup(tk)
1084#endif
1085
1086
1087
john stultz85240702007-05-08 00:27:59 -07001088/**
1089 * update_wall_time - Uses the current clocksource to increment the wall time
1090 *
john stultz85240702007-05-08 00:27:59 -07001091 */
Torben Hohn871cf1e2011-01-27 15:58:55 +01001092static void update_wall_time(void)
john stultz85240702007-05-08 00:27:59 -07001093{
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001094 struct clocksource *clock;
John Stultz4e250fd2012-07-27 14:48:13 -04001095 struct timekeeper *tk = &timekeeper;
john stultz85240702007-05-08 00:27:59 -07001096 cycle_t offset;
john stultza092ff02009-10-02 16:17:53 -07001097 int shift = 0, maxshift;
John Stultz70471f22011-11-14 12:48:10 -08001098 unsigned long flags;
1099
John Stultz4e250fd2012-07-27 14:48:13 -04001100 write_seqlock_irqsave(&tk->lock, flags);
john stultz85240702007-05-08 00:27:59 -07001101
1102 /* Make sure we're fully resumed: */
1103 if (unlikely(timekeeping_suspended))
John Stultz70471f22011-11-14 12:48:10 -08001104 goto out;
john stultz85240702007-05-08 00:27:59 -07001105
John Stultz4e250fd2012-07-27 14:48:13 -04001106 clock = tk->clock;
John Stultz592913e2010-07-13 17:56:20 -07001107
1108#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
John Stultz4e250fd2012-07-27 14:48:13 -04001109 offset = tk->cycle_interval;
John Stultz592913e2010-07-13 17:56:20 -07001110#else
1111 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
john stultz85240702007-05-08 00:27:59 -07001112#endif
john stultz85240702007-05-08 00:27:59 -07001113
John Stultzbf2ac312012-08-21 20:30:49 -04001114 /* Check if there's really nothing to do */
1115 if (offset < tk->cycle_interval)
1116 goto out;
1117
john stultza092ff02009-10-02 16:17:53 -07001118 /*
1119 * With NO_HZ we may have to accumulate many cycle_intervals
1120 * (think "ticks") worth of time at once. To do this efficiently,
1121 * we calculate the largest doubling multiple of cycle_intervals
Jim Cromie88b28ad2012-03-14 21:28:56 -06001122 * that is smaller than the offset. We then accumulate that
john stultza092ff02009-10-02 16:17:53 -07001123 * chunk in one go, and then try to consume the next smaller
1124 * doubled multiple.
john stultz85240702007-05-08 00:27:59 -07001125 */
John Stultz4e250fd2012-07-27 14:48:13 -04001126 shift = ilog2(offset) - ilog2(tk->cycle_interval);
john stultza092ff02009-10-02 16:17:53 -07001127 shift = max(0, shift);
Jim Cromie88b28ad2012-03-14 21:28:56 -06001128 /* Bound shift to one less than what overflows tick_length */
John Stultzea7cf492011-11-14 13:18:07 -08001129 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
john stultza092ff02009-10-02 16:17:53 -07001130 shift = min(shift, maxshift);
John Stultz4e250fd2012-07-27 14:48:13 -04001131 while (offset >= tk->cycle_interval) {
1132 offset = logarithmic_accumulation(tk, offset, shift);
1133 if (offset < tk->cycle_interval<<shift)
John Stultz830ec042010-03-18 14:47:30 -07001134 shift--;
john stultz85240702007-05-08 00:27:59 -07001135 }
1136
1137 /* correct the clock when NTP error is too big */
John Stultz4e250fd2012-07-27 14:48:13 -04001138 timekeeping_adjust(tk, offset);
john stultz85240702007-05-08 00:27:59 -07001139
John Stultz6a867a32010-04-06 14:30:51 -07001140 /*
John Stultz92bb1fc2012-09-04 15:38:12 -04001141 * XXX This can be killed once everyone converts
1142 * to the new update_vsyscall.
1143 */
1144 old_vsyscall_fixup(tk);
john stultz85240702007-05-08 00:27:59 -07001145
John Stultz6a867a32010-04-06 14:30:51 -07001146 /*
1147 * Finally, make sure that after the rounding
John Stultz1e75fa82012-07-13 01:21:53 -04001148 * xtime_nsec isn't larger than NSEC_PER_SEC
John Stultz6a867a32010-04-06 14:30:51 -07001149 */
John Stultz4e250fd2012-07-27 14:48:13 -04001150 accumulate_nsecs_to_secs(tk);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001151
John Stultz4e250fd2012-07-27 14:48:13 -04001152 timekeeping_update(tk, false);
John Stultz70471f22011-11-14 12:48:10 -08001153
1154out:
John Stultz4e250fd2012-07-27 14:48:13 -04001155 write_sequnlock_irqrestore(&tk->lock, flags);
John Stultz70471f22011-11-14 12:48:10 -08001156
john stultz85240702007-05-08 00:27:59 -07001157}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001158
1159/**
1160 * getboottime - Return the real time of system boot.
1161 * @ts: pointer to the timespec to be set
1162 *
John Stultzabb3a4e2011-02-14 17:52:09 -08001163 * Returns the wall-time of boot in a timespec.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001164 *
1165 * This is based on the wall_to_monotonic offset and the total suspend
1166 * time. Calls to settimeofday will affect the value returned (which
1167 * basically means that however wrong your real time clock is at boot time,
1168 * you get the right time here).
1169 */
1170void getboottime(struct timespec *ts)
1171{
John Stultz4e250fd2012-07-27 14:48:13 -04001172 struct timekeeper *tk = &timekeeper;
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001173 struct timespec boottime = {
John Stultz4e250fd2012-07-27 14:48:13 -04001174 .tv_sec = tk->wall_to_monotonic.tv_sec +
1175 tk->total_sleep_time.tv_sec,
1176 .tv_nsec = tk->wall_to_monotonic.tv_nsec +
1177 tk->total_sleep_time.tv_nsec
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001178 };
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001179
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001180 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001181}
Jason Wangc93d89f2010-01-27 19:13:40 +08001182EXPORT_SYMBOL_GPL(getboottime);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001183
John Stultzabb3a4e2011-02-14 17:52:09 -08001184/**
1185 * get_monotonic_boottime - Returns monotonic time since boot
1186 * @ts: pointer to the timespec to be set
1187 *
1188 * Returns the monotonic time since boot in a timespec.
1189 *
1190 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1191 * includes the time spent in suspend.
1192 */
1193void get_monotonic_boottime(struct timespec *ts)
1194{
John Stultz4e250fd2012-07-27 14:48:13 -04001195 struct timekeeper *tk = &timekeeper;
John Stultzabb3a4e2011-02-14 17:52:09 -08001196 struct timespec tomono, sleep;
John Stultzec145ba2012-09-11 19:26:03 -04001197 s64 nsec;
John Stultzabb3a4e2011-02-14 17:52:09 -08001198 unsigned int seq;
John Stultzabb3a4e2011-02-14 17:52:09 -08001199
1200 WARN_ON(timekeeping_suspended);
1201
1202 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001203 seq = read_seqbegin(&tk->lock);
1204 ts->tv_sec = tk->xtime_sec;
John Stultzec145ba2012-09-11 19:26:03 -04001205 nsec = timekeeping_get_ns(tk);
John Stultz4e250fd2012-07-27 14:48:13 -04001206 tomono = tk->wall_to_monotonic;
1207 sleep = tk->total_sleep_time;
John Stultzabb3a4e2011-02-14 17:52:09 -08001208
John Stultz4e250fd2012-07-27 14:48:13 -04001209 } while (read_seqretry(&tk->lock, seq));
John Stultzabb3a4e2011-02-14 17:52:09 -08001210
John Stultzec145ba2012-09-11 19:26:03 -04001211 ts->tv_sec += tomono.tv_sec + sleep.tv_sec;
1212 ts->tv_nsec = 0;
1213 timespec_add_ns(ts, nsec + tomono.tv_nsec + sleep.tv_nsec);
John Stultzabb3a4e2011-02-14 17:52:09 -08001214}
1215EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1216
1217/**
1218 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1219 *
1220 * Returns the monotonic time since boot in a ktime
1221 *
1222 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1223 * includes the time spent in suspend.
1224 */
1225ktime_t ktime_get_boottime(void)
1226{
1227 struct timespec ts;
1228
1229 get_monotonic_boottime(&ts);
1230 return timespec_to_ktime(ts);
1231}
1232EXPORT_SYMBOL_GPL(ktime_get_boottime);
1233
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001234/**
1235 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1236 * @ts: pointer to the timespec to be converted
1237 */
1238void monotonic_to_bootbased(struct timespec *ts)
1239{
John Stultz4e250fd2012-07-27 14:48:13 -04001240 struct timekeeper *tk = &timekeeper;
1241
1242 *ts = timespec_add(*ts, tk->total_sleep_time);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001243}
Jason Wangc93d89f2010-01-27 19:13:40 +08001244EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
john stultz2c6b47d2007-07-24 17:47:43 -07001245
john stultz17c38b72007-07-24 18:38:34 -07001246unsigned long get_seconds(void)
1247{
John Stultz4e250fd2012-07-27 14:48:13 -04001248 struct timekeeper *tk = &timekeeper;
1249
1250 return tk->xtime_sec;
john stultz17c38b72007-07-24 18:38:34 -07001251}
1252EXPORT_SYMBOL(get_seconds);
1253
john stultzda15cfd2009-08-19 19:13:34 -07001254struct timespec __current_kernel_time(void)
1255{
John Stultz4e250fd2012-07-27 14:48:13 -04001256 struct timekeeper *tk = &timekeeper;
1257
1258 return tk_xtime(tk);
john stultzda15cfd2009-08-19 19:13:34 -07001259}
john stultz17c38b72007-07-24 18:38:34 -07001260
john stultz2c6b47d2007-07-24 17:47:43 -07001261struct timespec current_kernel_time(void)
1262{
John Stultz4e250fd2012-07-27 14:48:13 -04001263 struct timekeeper *tk = &timekeeper;
john stultz2c6b47d2007-07-24 17:47:43 -07001264 struct timespec now;
1265 unsigned long seq;
1266
1267 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001268 seq = read_seqbegin(&tk->lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001269
John Stultz4e250fd2012-07-27 14:48:13 -04001270 now = tk_xtime(tk);
1271 } while (read_seqretry(&tk->lock, seq));
john stultz2c6b47d2007-07-24 17:47:43 -07001272
1273 return now;
1274}
john stultz2c6b47d2007-07-24 17:47:43 -07001275EXPORT_SYMBOL(current_kernel_time);
john stultzda15cfd2009-08-19 19:13:34 -07001276
1277struct timespec get_monotonic_coarse(void)
1278{
John Stultz4e250fd2012-07-27 14:48:13 -04001279 struct timekeeper *tk = &timekeeper;
john stultzda15cfd2009-08-19 19:13:34 -07001280 struct timespec now, mono;
1281 unsigned long seq;
1282
1283 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001284 seq = read_seqbegin(&tk->lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001285
John Stultz4e250fd2012-07-27 14:48:13 -04001286 now = tk_xtime(tk);
1287 mono = tk->wall_to_monotonic;
1288 } while (read_seqretry(&tk->lock, seq));
john stultzda15cfd2009-08-19 19:13:34 -07001289
1290 set_normalized_timespec(&now, now.tv_sec + mono.tv_sec,
1291 now.tv_nsec + mono.tv_nsec);
1292 return now;
1293}
Torben Hohn871cf1e2011-01-27 15:58:55 +01001294
1295/*
John Stultzd6ad4182012-02-28 16:50:11 -08001296 * Must hold jiffies_lock
Torben Hohn871cf1e2011-01-27 15:58:55 +01001297 */
1298void do_timer(unsigned long ticks)
1299{
1300 jiffies_64 += ticks;
1301 update_wall_time();
1302 calc_global_load(ticks);
1303}
Torben Hohn48cf76f72011-01-27 15:59:05 +01001304
1305/**
John Stultz314ac372011-02-14 18:43:08 -08001306 * get_xtime_and_monotonic_and_sleep_offset() - get xtime, wall_to_monotonic,
1307 * and sleep offsets.
Torben Hohn48cf76f72011-01-27 15:59:05 +01001308 * @xtim: pointer to timespec to be set with xtime
1309 * @wtom: pointer to timespec to be set with wall_to_monotonic
John Stultz314ac372011-02-14 18:43:08 -08001310 * @sleep: pointer to timespec to be set with time in suspend
Torben Hohn48cf76f72011-01-27 15:59:05 +01001311 */
John Stultz314ac372011-02-14 18:43:08 -08001312void get_xtime_and_monotonic_and_sleep_offset(struct timespec *xtim,
1313 struct timespec *wtom, struct timespec *sleep)
Torben Hohn48cf76f72011-01-27 15:59:05 +01001314{
John Stultz4e250fd2012-07-27 14:48:13 -04001315 struct timekeeper *tk = &timekeeper;
Torben Hohn48cf76f72011-01-27 15:59:05 +01001316 unsigned long seq;
1317
1318 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001319 seq = read_seqbegin(&tk->lock);
1320 *xtim = tk_xtime(tk);
1321 *wtom = tk->wall_to_monotonic;
1322 *sleep = tk->total_sleep_time;
1323 } while (read_seqretry(&tk->lock, seq));
Torben Hohn48cf76f72011-01-27 15:59:05 +01001324}
Torben Hohnf0af911a92011-01-27 15:59:10 +01001325
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001326#ifdef CONFIG_HIGH_RES_TIMERS
1327/**
1328 * ktime_get_update_offsets - hrtimer helper
1329 * @offs_real: pointer to storage for monotonic -> realtime offset
1330 * @offs_boot: pointer to storage for monotonic -> boottime offset
1331 *
1332 * Returns current monotonic time and updates the offsets
1333 * Called from hrtimer_interupt() or retrigger_next_event()
1334 */
1335ktime_t ktime_get_update_offsets(ktime_t *offs_real, ktime_t *offs_boot)
1336{
John Stultz4e250fd2012-07-27 14:48:13 -04001337 struct timekeeper *tk = &timekeeper;
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001338 ktime_t now;
1339 unsigned int seq;
1340 u64 secs, nsecs;
1341
1342 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001343 seq = read_seqbegin(&tk->lock);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001344
John Stultz4e250fd2012-07-27 14:48:13 -04001345 secs = tk->xtime_sec;
1346 nsecs = timekeeping_get_ns(tk);
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001347
John Stultz4e250fd2012-07-27 14:48:13 -04001348 *offs_real = tk->offs_real;
1349 *offs_boot = tk->offs_boot;
1350 } while (read_seqretry(&tk->lock, seq));
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001351
1352 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1353 now = ktime_sub(now, *offs_real);
1354 return now;
1355}
1356#endif
1357
Torben Hohnf0af911a92011-01-27 15:59:10 +01001358/**
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001359 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1360 */
1361ktime_t ktime_get_monotonic_offset(void)
1362{
John Stultz4e250fd2012-07-27 14:48:13 -04001363 struct timekeeper *tk = &timekeeper;
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001364 unsigned long seq;
1365 struct timespec wtom;
1366
1367 do {
John Stultz4e250fd2012-07-27 14:48:13 -04001368 seq = read_seqbegin(&tk->lock);
1369 wtom = tk->wall_to_monotonic;
1370 } while (read_seqretry(&tk->lock, seq));
John Stultz70471f22011-11-14 12:48:10 -08001371
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001372 return timespec_to_ktime(wtom);
1373}
John Stultza80b83b2012-02-03 00:19:07 -08001374EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1375
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001376/**
Torben Hohnf0af911a92011-01-27 15:59:10 +01001377 * xtime_update() - advances the timekeeping infrastructure
1378 * @ticks: number of ticks, that have elapsed since the last call.
1379 *
1380 * Must be called with interrupts disabled.
1381 */
1382void xtime_update(unsigned long ticks)
1383{
John Stultzd6ad4182012-02-28 16:50:11 -08001384 write_seqlock(&jiffies_lock);
Torben Hohnf0af911a92011-01-27 15:59:10 +01001385 do_timer(ticks);
John Stultzd6ad4182012-02-28 16:50:11 -08001386 write_sequnlock(&jiffies_lock);
Torben Hohnf0af911a92011-01-27 15:59:10 +01001387}