blob: 269b1fe5f2ae2f7e6c0bb0fac8ce9a54e2d4d278 [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
11#include <linux/module.h>
12#include <linux/interrupt.h>
13#include <linux/percpu.h>
14#include <linux/init.h>
15#include <linux/mm.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040016#include <linux/sched.h>
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +010017#include <linux/syscore_ops.h>
john stultz85240702007-05-08 00:27:59 -070018#include <linux/clocksource.h>
19#include <linux/jiffies.h>
20#include <linux/time.h>
21#include <linux/tick.h>
Martin Schwidefsky75c51582009-08-14 15:47:30 +020022#include <linux/stop_machine.h>
john stultz85240702007-05-08 00:27:59 -070023
Martin Schwidefsky155ec602009-08-14 15:47:26 +020024/* Structure holding internal timekeeping values. */
25struct timekeeper {
26 /* Current clocksource used for timekeeping. */
27 struct clocksource *clock;
Thomas Gleixner058892e2011-11-13 23:19:48 +000028 /* NTP adjusted clock multiplier */
29 u32 mult;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +020030 /* The shift value of the current clocksource. */
31 int shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020032
33 /* Number of clock cycles in one NTP interval. */
34 cycle_t cycle_interval;
35 /* Number of clock shifted nano seconds in one NTP interval. */
36 u64 xtime_interval;
Kasper Pedersena386b5a2010-10-20 15:55:15 -070037 /* shifted nano seconds left over when rounding cycle_interval */
38 s64 xtime_remainder;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020039 /* Raw nano seconds accumulated per NTP interval. */
40 u32 raw_interval;
41
42 /* Clock shifted nano seconds remainder not stored in xtime.tv_nsec. */
43 u64 xtime_nsec;
44 /* Difference between accumulated time and NTP time in ntp
45 * shifted nano seconds. */
46 s64 ntp_error;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +020047 /* Shift conversion between clock shifted nano seconds and
48 * ntp shifted nano seconds. */
49 int ntp_error_shift;
John Stultz00c5fb72011-11-14 11:23:15 -080050
John Stultz8ff2cb92011-11-14 11:40:54 -080051 /* The current time */
52 struct timespec xtime;
John Stultzd9f72172011-11-14 11:29:32 -080053 /*
54 * wall_to_monotonic is what we need to add to xtime (or xtime corrected
55 * for sub jiffie times) to get to monotonic time. Monotonic is pegged
56 * at zero at system boot time, so wall_to_monotonic will be negative,
57 * however, we will ALWAYS keep the tv_nsec part positive so we can use
58 * the usual normalization.
59 *
60 * wall_to_monotonic is moved after resume from suspend for the
61 * monotonic time not to jump. We need to add total_sleep_time to
62 * wall_to_monotonic to get the real boot based time offset.
63 *
64 * - wall_to_monotonic is no longer the boot time, getboottime must be
65 * used instead.
66 */
67 struct timespec wall_to_monotonic;
John Stultz00c5fb72011-11-14 11:23:15 -080068 /* time spent in suspend */
69 struct timespec total_sleep_time;
John Stultz01f71b42011-11-14 11:43:49 -080070 /* The raw monotonic time for the CLOCK_MONOTONIC_RAW posix clock. */
71 struct timespec raw_time;
John Stultz70471f22011-11-14 12:48:10 -080072
Thomas Gleixner5b9fe752012-07-10 18:43:21 -040073 /* Offset clock monotonic -> clock realtime */
74 ktime_t offs_real;
75
76 /* Offset clock monotonic -> clock boottime */
77 ktime_t offs_boot;
78
John Stultz70471f22011-11-14 12:48:10 -080079 /* Seqlock for all timekeeper values */
80 seqlock_t lock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020081};
82
H Hartley Sweetenafa14e72011-01-11 17:59:38 -060083static struct timekeeper timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020084
John Stultz8fcce542011-11-14 11:46:39 -080085/*
86 * This read-write spinlock protects us from races in SMP while
87 * playing with xtime.
88 */
89__cacheline_aligned_in_smp DEFINE_SEQLOCK(xtime_lock);
90
91
92/* flag for if timekeeping is suspended */
93int __read_mostly timekeeping_suspended;
94
95
96
Martin Schwidefsky155ec602009-08-14 15:47:26 +020097/**
98 * timekeeper_setup_internals - Set up internals to use clocksource clock.
99 *
100 * @clock: Pointer to clocksource.
101 *
102 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
103 * pair and interval request.
104 *
105 * Unless you're the timekeeping code, you should not be using this!
106 */
107static void timekeeper_setup_internals(struct clocksource *clock)
108{
109 cycle_t interval;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700110 u64 tmp, ntpinterval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200111
112 timekeeper.clock = clock;
113 clock->cycle_last = clock->read(clock);
114
115 /* Do the ns -> cycle conversion first, using original mult */
116 tmp = NTP_INTERVAL_LENGTH;
117 tmp <<= clock->shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700118 ntpinterval = tmp;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200119 tmp += clock->mult/2;
120 do_div(tmp, clock->mult);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200121 if (tmp == 0)
122 tmp = 1;
123
124 interval = (cycle_t) tmp;
125 timekeeper.cycle_interval = interval;
126
127 /* Go back from cycles -> shifted ns */
128 timekeeper.xtime_interval = (u64) interval * clock->mult;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700129 timekeeper.xtime_remainder = ntpinterval - timekeeper.xtime_interval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200130 timekeeper.raw_interval =
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200131 ((u64) interval * clock->mult) >> clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200132
133 timekeeper.xtime_nsec = 0;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200134 timekeeper.shift = clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200135
136 timekeeper.ntp_error = 0;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200137 timekeeper.ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200138
139 /*
140 * The timekeeper keeps its own mult values for the currently
141 * active clocksource. These value will be adjusted via NTP
142 * to counteract clock drifting.
143 */
144 timekeeper.mult = clock->mult;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200145}
john stultz85240702007-05-08 00:27:59 -0700146
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200147/* Timekeeper helper functions. */
148static inline s64 timekeeping_get_ns(void)
149{
150 cycle_t cycle_now, cycle_delta;
151 struct clocksource *clock;
152
153 /* read clocksource: */
154 clock = timekeeper.clock;
155 cycle_now = clock->read(clock);
156
157 /* calculate the delta since the last update_wall_time: */
158 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
159
160 /* return delta convert to nanoseconds using ntp adjusted mult. */
161 return clocksource_cyc2ns(cycle_delta, timekeeper.mult,
162 timekeeper.shift);
163}
164
165static inline s64 timekeeping_get_ns_raw(void)
166{
167 cycle_t cycle_now, cycle_delta;
168 struct clocksource *clock;
169
170 /* read clocksource: */
171 clock = timekeeper.clock;
172 cycle_now = clock->read(clock);
173
174 /* calculate the delta since the last update_wall_time: */
175 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
176
Dan McGeec9fad422011-10-17 13:58:43 -0500177 /* return delta convert to nanoseconds. */
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200178 return clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
179}
180
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400181static void update_rt_offset(void)
182{
183 struct timespec tmp, *wtm = &timekeeper.wall_to_monotonic;
184
185 set_normalized_timespec(&tmp, -wtm->tv_sec, -wtm->tv_nsec);
186 timekeeper.offs_real = timespec_to_ktime(tmp);
187}
188
Thomas Gleixnercc062682011-11-13 23:19:49 +0000189/* must hold write on timekeeper.lock */
190static void timekeeping_update(bool clearntp)
191{
192 if (clearntp) {
193 timekeeper.ntp_error = 0;
194 ntp_clear();
195 }
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400196 update_rt_offset();
Thomas Gleixnercc062682011-11-13 23:19:49 +0000197 update_vsyscall(&timekeeper.xtime, &timekeeper.wall_to_monotonic,
198 timekeeper.clock, timekeeper.mult);
199}
200
201
john stultz85240702007-05-08 00:27:59 -0700202/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200203 * timekeeping_forward_now - update clock to the current time
john stultz85240702007-05-08 00:27:59 -0700204 *
Roman Zippel9a055112008-08-20 16:37:28 -0700205 * Forward the current clock to update its state since the last call to
206 * update_wall_time(). This is useful before significant clock changes,
207 * as it avoids having to deal with this time offset explicitly.
john stultz85240702007-05-08 00:27:59 -0700208 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200209static void timekeeping_forward_now(void)
john stultz85240702007-05-08 00:27:59 -0700210{
211 cycle_t cycle_now, cycle_delta;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200212 struct clocksource *clock;
Roman Zippel9a055112008-08-20 16:37:28 -0700213 s64 nsec;
john stultz85240702007-05-08 00:27:59 -0700214
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200215 clock = timekeeper.clock;
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200216 cycle_now = clock->read(clock);
john stultz85240702007-05-08 00:27:59 -0700217 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
Roman Zippel9a055112008-08-20 16:37:28 -0700218 clock->cycle_last = cycle_now;
john stultz85240702007-05-08 00:27:59 -0700219
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200220 nsec = clocksource_cyc2ns(cycle_delta, timekeeper.mult,
221 timekeeper.shift);
john stultz7d275582009-05-01 13:10:26 -0700222
223 /* If arch requires, add in gettimeoffset() */
224 nsec += arch_gettimeoffset();
225
John Stultz8ff2cb92011-11-14 11:40:54 -0800226 timespec_add_ns(&timekeeper.xtime, nsec);
John Stultz2d422442008-08-20 16:37:30 -0700227
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200228 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
John Stultz01f71b42011-11-14 11:43:49 -0800229 timespec_add_ns(&timekeeper.raw_time, nsec);
john stultz85240702007-05-08 00:27:59 -0700230}
231
232/**
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100233 * getnstimeofday - Returns the time of day in a timespec
john stultz85240702007-05-08 00:27:59 -0700234 * @ts: pointer to the timespec to be set
235 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100236 * Returns the time of day in a timespec.
john stultz85240702007-05-08 00:27:59 -0700237 */
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100238void getnstimeofday(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700239{
240 unsigned long seq;
241 s64 nsecs;
242
Thomas Gleixner1c5745a2008-12-22 23:05:28 +0100243 WARN_ON(timekeeping_suspended);
244
john stultz85240702007-05-08 00:27:59 -0700245 do {
John Stultz70471f22011-11-14 12:48:10 -0800246 seq = read_seqbegin(&timekeeper.lock);
john stultz85240702007-05-08 00:27:59 -0700247
John Stultz8ff2cb92011-11-14 11:40:54 -0800248 *ts = timekeeper.xtime;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200249 nsecs = timekeeping_get_ns();
john stultz85240702007-05-08 00:27:59 -0700250
john stultz7d275582009-05-01 13:10:26 -0700251 /* If arch requires, add in gettimeoffset() */
252 nsecs += arch_gettimeoffset();
253
John Stultz70471f22011-11-14 12:48:10 -0800254 } while (read_seqretry(&timekeeper.lock, seq));
john stultz85240702007-05-08 00:27:59 -0700255
256 timespec_add_ns(ts, nsecs);
257}
john stultz85240702007-05-08 00:27:59 -0700258EXPORT_SYMBOL(getnstimeofday);
259
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200260ktime_t ktime_get(void)
261{
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200262 unsigned int seq;
263 s64 secs, nsecs;
264
265 WARN_ON(timekeeping_suspended);
266
267 do {
John Stultz70471f22011-11-14 12:48:10 -0800268 seq = read_seqbegin(&timekeeper.lock);
John Stultz8ff2cb92011-11-14 11:40:54 -0800269 secs = timekeeper.xtime.tv_sec +
270 timekeeper.wall_to_monotonic.tv_sec;
271 nsecs = timekeeper.xtime.tv_nsec +
272 timekeeper.wall_to_monotonic.tv_nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200273 nsecs += timekeeping_get_ns();
Hector Palaciosd004e022011-11-14 11:15:25 +0100274 /* If arch requires, add in gettimeoffset() */
275 nsecs += arch_gettimeoffset();
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200276
John Stultz70471f22011-11-14 12:48:10 -0800277 } while (read_seqretry(&timekeeper.lock, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200278 /*
279 * Use ktime_set/ktime_add_ns to create a proper ktime on
280 * 32-bit architectures without CONFIG_KTIME_SCALAR.
281 */
282 return ktime_add_ns(ktime_set(secs, 0), nsecs);
283}
284EXPORT_SYMBOL_GPL(ktime_get);
285
286/**
287 * ktime_get_ts - get the monotonic clock in timespec format
288 * @ts: pointer to timespec variable
289 *
290 * The function calculates the monotonic clock from the realtime
291 * clock and the wall_to_monotonic offset and stores the result
292 * in normalized timespec format in the variable pointed to by @ts.
293 */
294void ktime_get_ts(struct timespec *ts)
295{
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200296 struct timespec tomono;
297 unsigned int seq;
298 s64 nsecs;
299
300 WARN_ON(timekeeping_suspended);
301
302 do {
John Stultz70471f22011-11-14 12:48:10 -0800303 seq = read_seqbegin(&timekeeper.lock);
John Stultz8ff2cb92011-11-14 11:40:54 -0800304 *ts = timekeeper.xtime;
John Stultzd9f72172011-11-14 11:29:32 -0800305 tomono = timekeeper.wall_to_monotonic;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200306 nsecs = timekeeping_get_ns();
Hector Palaciosd004e022011-11-14 11:15:25 +0100307 /* If arch requires, add in gettimeoffset() */
308 nsecs += arch_gettimeoffset();
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200309
John Stultz70471f22011-11-14 12:48:10 -0800310 } while (read_seqretry(&timekeeper.lock, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200311
312 set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec,
313 ts->tv_nsec + tomono.tv_nsec + nsecs);
314}
315EXPORT_SYMBOL_GPL(ktime_get_ts);
316
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800317#ifdef CONFIG_NTP_PPS
318
319/**
320 * getnstime_raw_and_real - get day and raw monotonic time in timespec format
321 * @ts_raw: pointer to the timespec to be set to raw monotonic time
322 * @ts_real: pointer to the timespec to be set to the time of day
323 *
324 * This function reads both the time of day and raw monotonic time at the
325 * same time atomically and stores the resulting timestamps in timespec
326 * format.
327 */
328void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
329{
330 unsigned long seq;
331 s64 nsecs_raw, nsecs_real;
332
333 WARN_ON_ONCE(timekeeping_suspended);
334
335 do {
336 u32 arch_offset;
337
John Stultz70471f22011-11-14 12:48:10 -0800338 seq = read_seqbegin(&timekeeper.lock);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800339
John Stultz01f71b42011-11-14 11:43:49 -0800340 *ts_raw = timekeeper.raw_time;
John Stultz8ff2cb92011-11-14 11:40:54 -0800341 *ts_real = timekeeper.xtime;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800342
343 nsecs_raw = timekeeping_get_ns_raw();
344 nsecs_real = timekeeping_get_ns();
345
346 /* If arch requires, add in gettimeoffset() */
347 arch_offset = arch_gettimeoffset();
348 nsecs_raw += arch_offset;
349 nsecs_real += arch_offset;
350
John Stultz70471f22011-11-14 12:48:10 -0800351 } while (read_seqretry(&timekeeper.lock, seq));
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800352
353 timespec_add_ns(ts_raw, nsecs_raw);
354 timespec_add_ns(ts_real, nsecs_real);
355}
356EXPORT_SYMBOL(getnstime_raw_and_real);
357
358#endif /* CONFIG_NTP_PPS */
359
john stultz85240702007-05-08 00:27:59 -0700360/**
361 * do_gettimeofday - Returns the time of day in a timeval
362 * @tv: pointer to the timeval to be set
363 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100364 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -0700365 */
366void do_gettimeofday(struct timeval *tv)
367{
368 struct timespec now;
369
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100370 getnstimeofday(&now);
john stultz85240702007-05-08 00:27:59 -0700371 tv->tv_sec = now.tv_sec;
372 tv->tv_usec = now.tv_nsec/1000;
373}
john stultz85240702007-05-08 00:27:59 -0700374EXPORT_SYMBOL(do_gettimeofday);
Richard Cochrand239f492012-04-27 10:12:42 +0200375
john stultz85240702007-05-08 00:27:59 -0700376/**
377 * do_settimeofday - Sets the time of day
378 * @tv: pointer to the timespec variable containing the new time
379 *
380 * Sets the time of day to the new time and update NTP and notify hrtimers
381 */
Richard Cochran1e6d7672011-02-01 13:50:58 +0000382int do_settimeofday(const struct timespec *tv)
john stultz85240702007-05-08 00:27:59 -0700383{
Roman Zippel9a055112008-08-20 16:37:28 -0700384 struct timespec ts_delta;
John Stultz92c1d3e2011-11-14 14:05:44 -0800385 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700386
387 if ((unsigned long)tv->tv_nsec >= NSEC_PER_SEC)
388 return -EINVAL;
389
John Stultz92c1d3e2011-11-14 14:05:44 -0800390 write_seqlock_irqsave(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700391
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200392 timekeeping_forward_now();
john stultz85240702007-05-08 00:27:59 -0700393
John Stultz8ff2cb92011-11-14 11:40:54 -0800394 ts_delta.tv_sec = tv->tv_sec - timekeeper.xtime.tv_sec;
395 ts_delta.tv_nsec = tv->tv_nsec - timekeeper.xtime.tv_nsec;
John Stultzd9f72172011-11-14 11:29:32 -0800396 timekeeper.wall_to_monotonic =
397 timespec_sub(timekeeper.wall_to_monotonic, ts_delta);
john stultz85240702007-05-08 00:27:59 -0700398
John Stultz8ff2cb92011-11-14 11:40:54 -0800399 timekeeper.xtime = *tv;
Thomas Gleixnercc062682011-11-13 23:19:49 +0000400 timekeeping_update(true);
john stultz85240702007-05-08 00:27:59 -0700401
John Stultz92c1d3e2011-11-14 14:05:44 -0800402 write_sequnlock_irqrestore(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700403
404 /* signal hrtimers about time change */
405 clock_was_set();
406
407 return 0;
408}
john stultz85240702007-05-08 00:27:59 -0700409EXPORT_SYMBOL(do_settimeofday);
410
John Stultzc528f7c2011-02-01 13:52:17 +0000411
412/**
413 * timekeeping_inject_offset - Adds or subtracts from the current time.
414 * @tv: pointer to the timespec variable containing the offset
415 *
416 * Adds or subtracts an offset value from the current time.
417 */
418int timekeeping_inject_offset(struct timespec *ts)
419{
John Stultz92c1d3e2011-11-14 14:05:44 -0800420 unsigned long flags;
John Stultzc528f7c2011-02-01 13:52:17 +0000421
422 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
423 return -EINVAL;
424
John Stultz92c1d3e2011-11-14 14:05:44 -0800425 write_seqlock_irqsave(&timekeeper.lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000426
427 timekeeping_forward_now();
428
John Stultz8ff2cb92011-11-14 11:40:54 -0800429 timekeeper.xtime = timespec_add(timekeeper.xtime, *ts);
John Stultzd9f72172011-11-14 11:29:32 -0800430 timekeeper.wall_to_monotonic =
431 timespec_sub(timekeeper.wall_to_monotonic, *ts);
John Stultzc528f7c2011-02-01 13:52:17 +0000432
Thomas Gleixnercc062682011-11-13 23:19:49 +0000433 timekeeping_update(true);
John Stultzc528f7c2011-02-01 13:52:17 +0000434
John Stultz92c1d3e2011-11-14 14:05:44 -0800435 write_sequnlock_irqrestore(&timekeeper.lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000436
437 /* signal hrtimers about time change */
438 clock_was_set();
439
440 return 0;
441}
442EXPORT_SYMBOL(timekeeping_inject_offset);
443
john stultz85240702007-05-08 00:27:59 -0700444/**
445 * change_clocksource - Swaps clocksources if a new one is available
446 *
447 * Accumulates current time interval and initializes new clocksource
448 */
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200449static int change_clocksource(void *data)
john stultz85240702007-05-08 00:27:59 -0700450{
Magnus Damm4614e6a2009-04-21 12:24:02 -0700451 struct clocksource *new, *old;
John Stultzf695cf92012-03-14 16:38:15 -0700452 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700453
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200454 new = (struct clocksource *) data;
john stultz85240702007-05-08 00:27:59 -0700455
John Stultzf695cf92012-03-14 16:38:15 -0700456 write_seqlock_irqsave(&timekeeper.lock, flags);
457
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200458 timekeeping_forward_now();
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200459 if (!new->enable || new->enable(new) == 0) {
460 old = timekeeper.clock;
461 timekeeper_setup_internals(new);
462 if (old->disable)
463 old->disable(old);
464 }
John Stultzf695cf92012-03-14 16:38:15 -0700465 timekeeping_update(true);
466
467 write_sequnlock_irqrestore(&timekeeper.lock, flags);
468
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200469 return 0;
470}
john stultz85240702007-05-08 00:27:59 -0700471
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200472/**
473 * timekeeping_notify - Install a new clock source
474 * @clock: pointer to the clock source
475 *
476 * This function is called from clocksource.c after a new, better clock
477 * source has been registered. The caller holds the clocksource_mutex.
478 */
479void timekeeping_notify(struct clocksource *clock)
480{
481 if (timekeeper.clock == clock)
Magnus Damm4614e6a2009-04-21 12:24:02 -0700482 return;
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200483 stop_machine(change_clocksource, clock, NULL);
john stultz85240702007-05-08 00:27:59 -0700484 tick_clock_notify();
john stultz85240702007-05-08 00:27:59 -0700485}
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200486
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200487/**
488 * ktime_get_real - get the real (wall-) time in ktime_t format
489 *
490 * returns the time in ktime_t format
491 */
492ktime_t ktime_get_real(void)
493{
494 struct timespec now;
495
496 getnstimeofday(&now);
497
498 return timespec_to_ktime(now);
499}
500EXPORT_SYMBOL_GPL(ktime_get_real);
john stultz85240702007-05-08 00:27:59 -0700501
502/**
John Stultz2d422442008-08-20 16:37:30 -0700503 * getrawmonotonic - Returns the raw monotonic time in a timespec
504 * @ts: pointer to the timespec to be set
505 *
506 * Returns the raw monotonic time (completely un-modified by ntp)
507 */
508void getrawmonotonic(struct timespec *ts)
509{
510 unsigned long seq;
511 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -0700512
513 do {
John Stultz70471f22011-11-14 12:48:10 -0800514 seq = read_seqbegin(&timekeeper.lock);
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200515 nsecs = timekeeping_get_ns_raw();
John Stultz01f71b42011-11-14 11:43:49 -0800516 *ts = timekeeper.raw_time;
John Stultz2d422442008-08-20 16:37:30 -0700517
John Stultz70471f22011-11-14 12:48:10 -0800518 } while (read_seqretry(&timekeeper.lock, seq));
John Stultz2d422442008-08-20 16:37:30 -0700519
520 timespec_add_ns(ts, nsecs);
521}
522EXPORT_SYMBOL(getrawmonotonic);
523
524
525/**
Li Zefancf4fc6c2008-02-08 04:19:24 -0800526 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -0700527 */
Li Zefancf4fc6c2008-02-08 04:19:24 -0800528int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -0700529{
530 unsigned long seq;
531 int ret;
532
533 do {
John Stultz70471f22011-11-14 12:48:10 -0800534 seq = read_seqbegin(&timekeeper.lock);
john stultz85240702007-05-08 00:27:59 -0700535
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200536 ret = timekeeper.clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -0700537
John Stultz70471f22011-11-14 12:48:10 -0800538 } while (read_seqretry(&timekeeper.lock, seq));
john stultz85240702007-05-08 00:27:59 -0700539
540 return ret;
541}
542
543/**
Jon Hunter98962462009-08-18 12:45:10 -0500544 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
Jon Hunter98962462009-08-18 12:45:10 -0500545 */
546u64 timekeeping_max_deferment(void)
547{
John Stultz70471f22011-11-14 12:48:10 -0800548 unsigned long seq;
549 u64 ret;
550 do {
551 seq = read_seqbegin(&timekeeper.lock);
552
553 ret = timekeeper.clock->max_idle_ns;
554
555 } while (read_seqretry(&timekeeper.lock, seq));
556
557 return ret;
Jon Hunter98962462009-08-18 12:45:10 -0500558}
559
560/**
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200561 * read_persistent_clock - Return time from the persistent clock.
john stultz85240702007-05-08 00:27:59 -0700562 *
563 * Weak dummy function for arches that do not yet support it.
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200564 * Reads the time from the battery backed persistent clock.
565 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
john stultz85240702007-05-08 00:27:59 -0700566 *
567 * XXX - Do be sure to remove it once all arches implement it.
568 */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200569void __attribute__((weak)) read_persistent_clock(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700570{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200571 ts->tv_sec = 0;
572 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700573}
574
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200575/**
576 * read_boot_clock - Return time of the system start.
577 *
578 * Weak dummy function for arches that do not yet support it.
579 * Function to read the exact time the system has been started.
580 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
581 *
582 * XXX - Do be sure to remove it once all arches implement it.
583 */
584void __attribute__((weak)) read_boot_clock(struct timespec *ts)
585{
586 ts->tv_sec = 0;
587 ts->tv_nsec = 0;
588}
589
john stultz85240702007-05-08 00:27:59 -0700590/*
591 * timekeeping_init - Initializes the clocksource and common timekeeping values
592 */
593void __init timekeeping_init(void)
594{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200595 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700596 unsigned long flags;
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200597 struct timespec now, boot;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200598
599 read_persistent_clock(&now);
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200600 read_boot_clock(&boot);
john stultz85240702007-05-08 00:27:59 -0700601
John Stultz70471f22011-11-14 12:48:10 -0800602 seqlock_init(&timekeeper.lock);
603
Roman Zippel7dffa3c2008-05-01 04:34:41 -0700604 ntp_init();
john stultz85240702007-05-08 00:27:59 -0700605
John Stultz70471f22011-11-14 12:48:10 -0800606 write_seqlock_irqsave(&timekeeper.lock, flags);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200607 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200608 if (clock->enable)
609 clock->enable(clock);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200610 timekeeper_setup_internals(clock);
john stultz85240702007-05-08 00:27:59 -0700611
John Stultz8ff2cb92011-11-14 11:40:54 -0800612 timekeeper.xtime.tv_sec = now.tv_sec;
613 timekeeper.xtime.tv_nsec = now.tv_nsec;
John Stultz01f71b42011-11-14 11:43:49 -0800614 timekeeper.raw_time.tv_sec = 0;
615 timekeeper.raw_time.tv_nsec = 0;
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200616 if (boot.tv_sec == 0 && boot.tv_nsec == 0) {
John Stultz8ff2cb92011-11-14 11:40:54 -0800617 boot.tv_sec = timekeeper.xtime.tv_sec;
618 boot.tv_nsec = timekeeper.xtime.tv_nsec;
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200619 }
John Stultzd9f72172011-11-14 11:29:32 -0800620 set_normalized_timespec(&timekeeper.wall_to_monotonic,
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200621 -boot.tv_sec, -boot.tv_nsec);
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400622 update_rt_offset();
John Stultz00c5fb72011-11-14 11:23:15 -0800623 timekeeper.total_sleep_time.tv_sec = 0;
624 timekeeper.total_sleep_time.tv_nsec = 0;
John Stultz70471f22011-11-14 12:48:10 -0800625 write_sequnlock_irqrestore(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700626}
627
john stultz85240702007-05-08 00:27:59 -0700628/* time in seconds when suspend began */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200629static struct timespec timekeeping_suspend_time;
john stultz85240702007-05-08 00:27:59 -0700630
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400631static void update_sleep_time(struct timespec t)
632{
633 timekeeper.total_sleep_time = t;
634 timekeeper.offs_boot = timespec_to_ktime(t);
635}
636
john stultz85240702007-05-08 00:27:59 -0700637/**
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 */
644static void __timekeeping_inject_sleeptime(struct timespec *delta)
645{
John Stultzcb5de2f8d2011-06-01 18:18:09 -0700646 if (!timespec_valid(delta)) {
John Stultzcbaa5152011-07-20 15:42:55 -0700647 printk(KERN_WARNING "__timekeeping_inject_sleeptime: Invalid "
John Stultzcb5de2f8d2011-06-01 18:18:09 -0700648 "sleep delta value!\n");
649 return;
650 }
651
John Stultz8ff2cb92011-11-14 11:40:54 -0800652 timekeeper.xtime = timespec_add(timekeeper.xtime, *delta);
John Stultzd9f72172011-11-14 11:29:32 -0800653 timekeeper.wall_to_monotonic =
654 timespec_sub(timekeeper.wall_to_monotonic, *delta);
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400655 update_sleep_time(timespec_add(timekeeper.total_sleep_time, *delta));
John Stultz304529b2011-04-01 14:32:09 -0700656}
657
658
659/**
660 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
661 * @delta: pointer to a timespec delta value
662 *
663 * This hook is for architectures that cannot support read_persistent_clock
664 * because their RTC/persistent clock is only accessible when irqs are enabled.
665 *
666 * This function should only be called by rtc_resume(), and allows
667 * a suspend offset to be injected into the timekeeping values.
668 */
669void timekeeping_inject_sleeptime(struct timespec *delta)
670{
John Stultz92c1d3e2011-11-14 14:05:44 -0800671 unsigned long flags;
John Stultz304529b2011-04-01 14:32:09 -0700672 struct timespec ts;
673
674 /* Make sure we don't set the clock twice */
675 read_persistent_clock(&ts);
676 if (!(ts.tv_sec == 0 && ts.tv_nsec == 0))
677 return;
678
John Stultz92c1d3e2011-11-14 14:05:44 -0800679 write_seqlock_irqsave(&timekeeper.lock, flags);
John Stultz70471f22011-11-14 12:48:10 -0800680
John Stultz304529b2011-04-01 14:32:09 -0700681 timekeeping_forward_now();
682
683 __timekeeping_inject_sleeptime(delta);
684
Thomas Gleixnercc062682011-11-13 23:19:49 +0000685 timekeeping_update(true);
John Stultz304529b2011-04-01 14:32:09 -0700686
John Stultz92c1d3e2011-11-14 14:05:44 -0800687 write_sequnlock_irqrestore(&timekeeper.lock, flags);
John Stultz304529b2011-04-01 14:32:09 -0700688
689 /* signal hrtimers about time change */
690 clock_was_set();
691}
692
693
694/**
john stultz85240702007-05-08 00:27:59 -0700695 * timekeeping_resume - Resumes the generic timekeeping subsystem.
john stultz85240702007-05-08 00:27:59 -0700696 *
697 * This is for the generic clocksource timekeeping.
698 * xtime/wall_to_monotonic/jiffies/etc are
699 * still managed by arch specific suspend/resume code.
700 */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100701static void timekeeping_resume(void)
john stultz85240702007-05-08 00:27:59 -0700702{
John Stultz92c1d3e2011-11-14 14:05:44 -0800703 unsigned long flags;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200704 struct timespec ts;
705
706 read_persistent_clock(&ts);
john stultz85240702007-05-08 00:27:59 -0700707
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +0200708 clocksource_resume();
709
John Stultz92c1d3e2011-11-14 14:05:44 -0800710 write_seqlock_irqsave(&timekeeper.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 Stultz304529b2011-04-01 14:32:09 -0700714 __timekeeping_inject_sleeptime(&ts);
john stultz85240702007-05-08 00:27:59 -0700715 }
716 /* re-base the last cycle value */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200717 timekeeper.clock->cycle_last = timekeeper.clock->read(timekeeper.clock);
718 timekeeper.ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -0700719 timekeeping_suspended = 0;
John Stultz92c1d3e2011-11-14 14:05:44 -0800720 write_sequnlock_irqrestore(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700721
722 touch_softlockup_watchdog();
723
724 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
725
726 /* Resume hrtimers */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200727 hrtimers_resume();
john stultz85240702007-05-08 00:27:59 -0700728}
729
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100730static int timekeeping_suspend(void)
john stultz85240702007-05-08 00:27:59 -0700731{
John Stultz92c1d3e2011-11-14 14:05:44 -0800732 unsigned long flags;
John Stultzcb332172011-05-31 22:53:23 -0700733 struct timespec delta, delta_delta;
734 static struct timespec old_delta;
john stultz85240702007-05-08 00:27:59 -0700735
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200736 read_persistent_clock(&timekeeping_suspend_time);
Thomas Gleixner3be90952007-09-16 15:36:43 +0200737
John Stultz92c1d3e2011-11-14 14:05:44 -0800738 write_seqlock_irqsave(&timekeeper.lock, flags);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200739 timekeeping_forward_now();
john stultz85240702007-05-08 00:27:59 -0700740 timekeeping_suspended = 1;
John Stultzcb332172011-05-31 22:53:23 -0700741
742 /*
743 * To avoid drift caused by repeated suspend/resumes,
744 * which each can add ~1 second drift error,
745 * try to compensate so the difference in system time
746 * and persistent_clock time stays close to constant.
747 */
John Stultz8ff2cb92011-11-14 11:40:54 -0800748 delta = timespec_sub(timekeeper.xtime, timekeeping_suspend_time);
John Stultzcb332172011-05-31 22:53:23 -0700749 delta_delta = timespec_sub(delta, old_delta);
750 if (abs(delta_delta.tv_sec) >= 2) {
751 /*
752 * if delta_delta is too large, assume time correction
753 * has occured and set old_delta to the current delta.
754 */
755 old_delta = delta;
756 } else {
757 /* Otherwise try to adjust old_system to compensate */
758 timekeeping_suspend_time =
759 timespec_add(timekeeping_suspend_time, delta_delta);
760 }
John Stultz92c1d3e2011-11-14 14:05:44 -0800761 write_sequnlock_irqrestore(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700762
763 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
Magnus Dammc54a42b2010-02-02 14:41:41 -0800764 clocksource_suspend();
john stultz85240702007-05-08 00:27:59 -0700765
766 return 0;
767}
768
769/* sysfs resume/suspend bits for timekeeping */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100770static struct syscore_ops timekeeping_syscore_ops = {
john stultz85240702007-05-08 00:27:59 -0700771 .resume = timekeeping_resume,
772 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -0700773};
774
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100775static int __init timekeeping_init_ops(void)
john stultz85240702007-05-08 00:27:59 -0700776{
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100777 register_syscore_ops(&timekeeping_syscore_ops);
778 return 0;
john stultz85240702007-05-08 00:27:59 -0700779}
780
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100781device_initcall(timekeeping_init_ops);
john stultz85240702007-05-08 00:27:59 -0700782
783/*
784 * If the error is already larger, we look ahead even further
785 * to compensate for late or lost adjustments.
786 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200787static __always_inline int timekeeping_bigadjust(s64 error, s64 *interval,
john stultz85240702007-05-08 00:27:59 -0700788 s64 *offset)
789{
790 s64 tick_error, i;
791 u32 look_ahead, adj;
792 s32 error2, mult;
793
794 /*
795 * Use the current error value to determine how much to look ahead.
796 * The larger the error the slower we adjust for it to avoid problems
797 * with losing too many ticks, otherwise we would overadjust and
798 * produce an even larger error. The smaller the adjustment the
799 * faster we try to adjust for it, as lost ticks can do less harm
Li Zefan3eb05672008-02-08 04:19:25 -0800800 * here. This is tuned so that an error of about 1 msec is adjusted
john stultz85240702007-05-08 00:27:59 -0700801 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
802 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200803 error2 = timekeeper.ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
john stultz85240702007-05-08 00:27:59 -0700804 error2 = abs(error2);
805 for (look_ahead = 0; error2 > 0; look_ahead++)
806 error2 >>= 2;
807
808 /*
809 * Now calculate the error in (1 << look_ahead) ticks, but first
810 * remove the single look ahead already included in the error.
811 */
John Stultzea7cf492011-11-14 13:18:07 -0800812 tick_error = ntp_tick_length() >> (timekeeper.ntp_error_shift + 1);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200813 tick_error -= timekeeper.xtime_interval >> 1;
john stultz85240702007-05-08 00:27:59 -0700814 error = ((error - tick_error) >> look_ahead) + tick_error;
815
816 /* Finally calculate the adjustment shift value. */
817 i = *interval;
818 mult = 1;
819 if (error < 0) {
820 error = -error;
821 *interval = -*interval;
822 *offset = -*offset;
823 mult = -1;
824 }
825 for (adj = 0; error > i; adj++)
826 error >>= 1;
827
828 *interval <<= adj;
829 *offset <<= adj;
830 return mult << adj;
831}
832
833/*
834 * Adjust the multiplier to reduce the error value,
835 * this is optimized for the most common adjustments of -1,0,1,
836 * for other values we can do a bit more work.
837 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200838static void timekeeping_adjust(s64 offset)
john stultz85240702007-05-08 00:27:59 -0700839{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200840 s64 error, interval = timekeeper.cycle_interval;
john stultz85240702007-05-08 00:27:59 -0700841 int adj;
842
John Stultzc2bc1112011-10-27 18:12:42 -0700843 /*
Jim Cromie88b28ad2012-03-14 21:28:56 -0600844 * The point of this is to check if the error is greater than half
John Stultzc2bc1112011-10-27 18:12:42 -0700845 * an interval.
846 *
847 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
848 *
849 * Note we subtract one in the shift, so that error is really error*2.
John Stultz3f86f282011-10-27 17:41:17 -0700850 * This "saves" dividing(shifting) interval twice, but keeps the
851 * (error > interval) comparison as still measuring if error is
Jim Cromie88b28ad2012-03-14 21:28:56 -0600852 * larger than half an interval.
John Stultzc2bc1112011-10-27 18:12:42 -0700853 *
John Stultz3f86f282011-10-27 17:41:17 -0700854 * Note: It does not "save" on aggravation when reading the code.
John Stultzc2bc1112011-10-27 18:12:42 -0700855 */
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200856 error = timekeeper.ntp_error >> (timekeeper.ntp_error_shift - 1);
john stultz85240702007-05-08 00:27:59 -0700857 if (error > interval) {
John Stultzc2bc1112011-10-27 18:12:42 -0700858 /*
859 * We now divide error by 4(via shift), which checks if
Jim Cromie88b28ad2012-03-14 21:28:56 -0600860 * the error is greater than twice the interval.
John Stultzc2bc1112011-10-27 18:12:42 -0700861 * If it is greater, we need a bigadjust, if its smaller,
862 * we can adjust by 1.
863 */
john stultz85240702007-05-08 00:27:59 -0700864 error >>= 2;
John Stultzc2bc1112011-10-27 18:12:42 -0700865 /*
866 * XXX - In update_wall_time, we round up to the next
867 * nanosecond, and store the amount rounded up into
868 * the error. This causes the likely below to be unlikely.
869 *
John Stultz3f86f282011-10-27 17:41:17 -0700870 * The proper fix is to avoid rounding up by using
John Stultzc2bc1112011-10-27 18:12:42 -0700871 * the high precision timekeeper.xtime_nsec instead of
872 * xtime.tv_nsec everywhere. Fixing this will take some
873 * time.
874 */
john stultz85240702007-05-08 00:27:59 -0700875 if (likely(error <= interval))
876 adj = 1;
877 else
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200878 adj = timekeeping_bigadjust(error, &interval, &offset);
john stultz85240702007-05-08 00:27:59 -0700879 } else if (error < -interval) {
John Stultzc2bc1112011-10-27 18:12:42 -0700880 /* See comment above, this is just switched for the negative */
john stultz85240702007-05-08 00:27:59 -0700881 error >>= 2;
882 if (likely(error >= -interval)) {
883 adj = -1;
884 interval = -interval;
885 offset = -offset;
886 } else
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200887 adj = timekeeping_bigadjust(error, &interval, &offset);
John Stultzc2bc1112011-10-27 18:12:42 -0700888 } else /* No adjustment needed */
john stultz85240702007-05-08 00:27:59 -0700889 return;
890
John Stultze919cfd2012-03-22 19:14:46 -0700891 if (unlikely(timekeeper.clock->maxadj &&
892 (timekeeper.mult + adj >
893 timekeeper.clock->mult + timekeeper.clock->maxadj))) {
894 printk_once(KERN_WARNING
895 "Adjusting %s more than 11%% (%ld vs %ld)\n",
John Stultzd65670a2011-10-31 17:06:35 -0400896 timekeeper.clock->name, (long)timekeeper.mult + adj,
897 (long)timekeeper.clock->mult +
898 timekeeper.clock->maxadj);
John Stultze919cfd2012-03-22 19:14:46 -0700899 }
John Stultzc2bc1112011-10-27 18:12:42 -0700900 /*
901 * So the following can be confusing.
902 *
903 * To keep things simple, lets assume adj == 1 for now.
904 *
905 * When adj != 1, remember that the interval and offset values
906 * have been appropriately scaled so the math is the same.
907 *
908 * The basic idea here is that we're increasing the multiplier
909 * by one, this causes the xtime_interval to be incremented by
910 * one cycle_interval. This is because:
911 * xtime_interval = cycle_interval * mult
912 * So if mult is being incremented by one:
913 * xtime_interval = cycle_interval * (mult + 1)
914 * Its the same as:
915 * xtime_interval = (cycle_interval * mult) + cycle_interval
916 * Which can be shortened to:
917 * xtime_interval += cycle_interval
918 *
919 * So offset stores the non-accumulated cycles. Thus the current
920 * time (in shifted nanoseconds) is:
921 * now = (offset * adj) + xtime_nsec
922 * Now, even though we're adjusting the clock frequency, we have
923 * to keep time consistent. In other words, we can't jump back
924 * in time, and we also want to avoid jumping forward in time.
925 *
926 * So given the same offset value, we need the time to be the same
927 * both before and after the freq adjustment.
928 * now = (offset * adj_1) + xtime_nsec_1
929 * now = (offset * adj_2) + xtime_nsec_2
930 * So:
931 * (offset * adj_1) + xtime_nsec_1 =
932 * (offset * adj_2) + xtime_nsec_2
933 * And we know:
934 * adj_2 = adj_1 + 1
935 * So:
936 * (offset * adj_1) + xtime_nsec_1 =
937 * (offset * (adj_1+1)) + xtime_nsec_2
938 * (offset * adj_1) + xtime_nsec_1 =
939 * (offset * adj_1) + offset + xtime_nsec_2
940 * Canceling the sides:
941 * xtime_nsec_1 = offset + xtime_nsec_2
942 * Which gives us:
943 * xtime_nsec_2 = xtime_nsec_1 - offset
944 * Which simplfies to:
945 * xtime_nsec -= offset
946 *
947 * XXX - TODO: Doc ntp_error calculation.
948 */
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200949 timekeeper.mult += adj;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200950 timekeeper.xtime_interval += interval;
951 timekeeper.xtime_nsec -= offset;
952 timekeeper.ntp_error -= (interval - offset) <<
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200953 timekeeper.ntp_error_shift;
john stultz85240702007-05-08 00:27:59 -0700954}
955
Linus Torvalds83f57a12009-12-22 14:10:37 -0800956
john stultz85240702007-05-08 00:27:59 -0700957/**
john stultza092ff02009-10-02 16:17:53 -0700958 * logarithmic_accumulation - shifted accumulation of cycles
959 *
960 * This functions accumulates a shifted interval of cycles into
961 * into a shifted interval nanoseconds. Allows for O(log) accumulation
962 * loop.
963 *
964 * Returns the unconsumed cycles.
965 */
966static cycle_t logarithmic_accumulation(cycle_t offset, int shift)
967{
968 u64 nsecps = (u64)NSEC_PER_SEC << timekeeper.shift;
Jason Wesseldeda2e82010-08-09 14:20:09 -0700969 u64 raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -0700970
Jim Cromie88b28ad2012-03-14 21:28:56 -0600971 /* If the offset is smaller than a shifted interval, do nothing */
john stultza092ff02009-10-02 16:17:53 -0700972 if (offset < timekeeper.cycle_interval<<shift)
973 return offset;
974
975 /* Accumulate one shifted interval */
976 offset -= timekeeper.cycle_interval << shift;
977 timekeeper.clock->cycle_last += timekeeper.cycle_interval << shift;
978
979 timekeeper.xtime_nsec += timekeeper.xtime_interval << shift;
980 while (timekeeper.xtime_nsec >= nsecps) {
John Stultz6b43ae82012-03-15 13:04:03 -0700981 int leap;
john stultza092ff02009-10-02 16:17:53 -0700982 timekeeper.xtime_nsec -= nsecps;
John Stultz8ff2cb92011-11-14 11:40:54 -0800983 timekeeper.xtime.tv_sec++;
John Stultz6b43ae82012-03-15 13:04:03 -0700984 leap = second_overflow(timekeeper.xtime.tv_sec);
985 timekeeper.xtime.tv_sec += leap;
John Stultzfad0c662012-05-30 10:54:57 -0700986 timekeeper.wall_to_monotonic.tv_sec -= leap;
John Stultz4873fa02012-07-10 18:43:20 -0400987 if (leap)
988 clock_was_set_delayed();
john stultza092ff02009-10-02 16:17:53 -0700989 }
990
Jason Wesseldeda2e82010-08-09 14:20:09 -0700991 /* Accumulate raw time */
992 raw_nsecs = timekeeper.raw_interval << shift;
John Stultz01f71b42011-11-14 11:43:49 -0800993 raw_nsecs += timekeeper.raw_time.tv_nsec;
John Stultzc7dcf872010-08-13 11:30:58 -0700994 if (raw_nsecs >= NSEC_PER_SEC) {
995 u64 raw_secs = raw_nsecs;
996 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
John Stultz01f71b42011-11-14 11:43:49 -0800997 timekeeper.raw_time.tv_sec += raw_secs;
john stultza092ff02009-10-02 16:17:53 -0700998 }
John Stultz01f71b42011-11-14 11:43:49 -0800999 timekeeper.raw_time.tv_nsec = raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001000
1001 /* Accumulate error between NTP and clock interval */
John Stultzea7cf492011-11-14 13:18:07 -08001002 timekeeper.ntp_error += ntp_tick_length() << shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -07001003 timekeeper.ntp_error -=
1004 (timekeeper.xtime_interval + timekeeper.xtime_remainder) <<
john stultza092ff02009-10-02 16:17:53 -07001005 (timekeeper.ntp_error_shift + shift);
1006
1007 return offset;
1008}
1009
Linus Torvalds83f57a12009-12-22 14:10:37 -08001010
john stultz85240702007-05-08 00:27:59 -07001011/**
1012 * update_wall_time - Uses the current clocksource to increment the wall time
1013 *
john stultz85240702007-05-08 00:27:59 -07001014 */
Torben Hohn871cf1e2011-01-27 15:58:55 +01001015static void update_wall_time(void)
john stultz85240702007-05-08 00:27:59 -07001016{
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001017 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -07001018 cycle_t offset;
john stultza092ff02009-10-02 16:17:53 -07001019 int shift = 0, maxshift;
John Stultz70471f22011-11-14 12:48:10 -08001020 unsigned long flags;
1021
1022 write_seqlock_irqsave(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -07001023
1024 /* Make sure we're fully resumed: */
1025 if (unlikely(timekeeping_suspended))
John Stultz70471f22011-11-14 12:48:10 -08001026 goto out;
john stultz85240702007-05-08 00:27:59 -07001027
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001028 clock = timekeeper.clock;
John Stultz592913e2010-07-13 17:56:20 -07001029
1030#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001031 offset = timekeeper.cycle_interval;
John Stultz592913e2010-07-13 17:56:20 -07001032#else
1033 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
john stultz85240702007-05-08 00:27:59 -07001034#endif
John Stultz8ff2cb92011-11-14 11:40:54 -08001035 timekeeper.xtime_nsec = (s64)timekeeper.xtime.tv_nsec <<
1036 timekeeper.shift;
john stultz85240702007-05-08 00:27:59 -07001037
john stultza092ff02009-10-02 16:17:53 -07001038 /*
1039 * With NO_HZ we may have to accumulate many cycle_intervals
1040 * (think "ticks") worth of time at once. To do this efficiently,
1041 * we calculate the largest doubling multiple of cycle_intervals
Jim Cromie88b28ad2012-03-14 21:28:56 -06001042 * that is smaller than the offset. We then accumulate that
john stultza092ff02009-10-02 16:17:53 -07001043 * chunk in one go, and then try to consume the next smaller
1044 * doubled multiple.
john stultz85240702007-05-08 00:27:59 -07001045 */
john stultza092ff02009-10-02 16:17:53 -07001046 shift = ilog2(offset) - ilog2(timekeeper.cycle_interval);
1047 shift = max(0, shift);
Jim Cromie88b28ad2012-03-14 21:28:56 -06001048 /* Bound shift to one less than what overflows tick_length */
John Stultzea7cf492011-11-14 13:18:07 -08001049 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
john stultza092ff02009-10-02 16:17:53 -07001050 shift = min(shift, maxshift);
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001051 while (offset >= timekeeper.cycle_interval) {
john stultza092ff02009-10-02 16:17:53 -07001052 offset = logarithmic_accumulation(offset, shift);
John Stultz830ec042010-03-18 14:47:30 -07001053 if(offset < timekeeper.cycle_interval<<shift)
1054 shift--;
john stultz85240702007-05-08 00:27:59 -07001055 }
1056
1057 /* correct the clock when NTP error is too big */
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001058 timekeeping_adjust(offset);
john stultz85240702007-05-08 00:27:59 -07001059
john stultz6c9bacb2008-12-01 18:34:41 -08001060 /*
1061 * Since in the loop above, we accumulate any amount of time
1062 * in xtime_nsec over a second into xtime.tv_sec, its possible for
1063 * xtime_nsec to be fairly small after the loop. Further, if we're
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001064 * slightly speeding the clocksource up in timekeeping_adjust(),
john stultz6c9bacb2008-12-01 18:34:41 -08001065 * its possible the required corrective factor to xtime_nsec could
1066 * cause it to underflow.
1067 *
1068 * Now, we cannot simply roll the accumulated second back, since
1069 * the NTP subsystem has been notified via second_overflow. So
1070 * instead we push xtime_nsec forward by the amount we underflowed,
1071 * and add that amount into the error.
1072 *
1073 * We'll correct this error next time through this function, when
1074 * xtime_nsec is not as small.
1075 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001076 if (unlikely((s64)timekeeper.xtime_nsec < 0)) {
1077 s64 neg = -(s64)timekeeper.xtime_nsec;
1078 timekeeper.xtime_nsec = 0;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +02001079 timekeeper.ntp_error += neg << timekeeper.ntp_error_shift;
john stultz6c9bacb2008-12-01 18:34:41 -08001080 }
1081
John Stultz6a867a32010-04-06 14:30:51 -07001082
1083 /*
1084 * Store full nanoseconds into xtime after rounding it up and
Roman Zippel5cd1c9c2008-09-22 14:42:43 -07001085 * add the remainder to the error difference.
1086 */
John Stultz8ff2cb92011-11-14 11:40:54 -08001087 timekeeper.xtime.tv_nsec = ((s64)timekeeper.xtime_nsec >>
1088 timekeeper.shift) + 1;
1089 timekeeper.xtime_nsec -= (s64)timekeeper.xtime.tv_nsec <<
1090 timekeeper.shift;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +02001091 timekeeper.ntp_error += timekeeper.xtime_nsec <<
1092 timekeeper.ntp_error_shift;
john stultz85240702007-05-08 00:27:59 -07001093
John Stultz6a867a32010-04-06 14:30:51 -07001094 /*
1095 * Finally, make sure that after the rounding
Jim Cromie88b28ad2012-03-14 21:28:56 -06001096 * xtime.tv_nsec isn't larger than NSEC_PER_SEC
John Stultz6a867a32010-04-06 14:30:51 -07001097 */
John Stultz8ff2cb92011-11-14 11:40:54 -08001098 if (unlikely(timekeeper.xtime.tv_nsec >= NSEC_PER_SEC)) {
John Stultz6b43ae82012-03-15 13:04:03 -07001099 int leap;
John Stultz8ff2cb92011-11-14 11:40:54 -08001100 timekeeper.xtime.tv_nsec -= NSEC_PER_SEC;
1101 timekeeper.xtime.tv_sec++;
John Stultz6b43ae82012-03-15 13:04:03 -07001102 leap = second_overflow(timekeeper.xtime.tv_sec);
1103 timekeeper.xtime.tv_sec += leap;
John Stultzfad0c662012-05-30 10:54:57 -07001104 timekeeper.wall_to_monotonic.tv_sec -= leap;
John Stultz4873fa02012-07-10 18:43:20 -04001105 if (leap)
1106 clock_was_set_delayed();
John Stultz6a867a32010-04-06 14:30:51 -07001107 }
Linus Torvalds83f57a12009-12-22 14:10:37 -08001108
Thomas Gleixnercc062682011-11-13 23:19:49 +00001109 timekeeping_update(false);
John Stultz70471f22011-11-14 12:48:10 -08001110
1111out:
1112 write_sequnlock_irqrestore(&timekeeper.lock, flags);
1113
john stultz85240702007-05-08 00:27:59 -07001114}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001115
1116/**
1117 * getboottime - Return the real time of system boot.
1118 * @ts: pointer to the timespec to be set
1119 *
John Stultzabb3a4e2011-02-14 17:52:09 -08001120 * Returns the wall-time of boot in a timespec.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001121 *
1122 * This is based on the wall_to_monotonic offset and the total suspend
1123 * time. Calls to settimeofday will affect the value returned (which
1124 * basically means that however wrong your real time clock is at boot time,
1125 * you get the right time here).
1126 */
1127void getboottime(struct timespec *ts)
1128{
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001129 struct timespec boottime = {
John Stultzd9f72172011-11-14 11:29:32 -08001130 .tv_sec = timekeeper.wall_to_monotonic.tv_sec +
John Stultz00c5fb72011-11-14 11:23:15 -08001131 timekeeper.total_sleep_time.tv_sec,
John Stultzd9f72172011-11-14 11:29:32 -08001132 .tv_nsec = timekeeper.wall_to_monotonic.tv_nsec +
John Stultz00c5fb72011-11-14 11:23:15 -08001133 timekeeper.total_sleep_time.tv_nsec
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001134 };
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001135
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001136 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001137}
Jason Wangc93d89f2010-01-27 19:13:40 +08001138EXPORT_SYMBOL_GPL(getboottime);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001139
John Stultzabb3a4e2011-02-14 17:52:09 -08001140
1141/**
1142 * get_monotonic_boottime - Returns monotonic time since boot
1143 * @ts: pointer to the timespec to be set
1144 *
1145 * Returns the monotonic time since boot in a timespec.
1146 *
1147 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1148 * includes the time spent in suspend.
1149 */
1150void get_monotonic_boottime(struct timespec *ts)
1151{
1152 struct timespec tomono, sleep;
1153 unsigned int seq;
1154 s64 nsecs;
1155
1156 WARN_ON(timekeeping_suspended);
1157
1158 do {
John Stultz70471f22011-11-14 12:48:10 -08001159 seq = read_seqbegin(&timekeeper.lock);
John Stultz8ff2cb92011-11-14 11:40:54 -08001160 *ts = timekeeper.xtime;
John Stultzd9f72172011-11-14 11:29:32 -08001161 tomono = timekeeper.wall_to_monotonic;
John Stultz00c5fb72011-11-14 11:23:15 -08001162 sleep = timekeeper.total_sleep_time;
John Stultzabb3a4e2011-02-14 17:52:09 -08001163 nsecs = timekeeping_get_ns();
1164
John Stultz70471f22011-11-14 12:48:10 -08001165 } while (read_seqretry(&timekeeper.lock, seq));
John Stultzabb3a4e2011-02-14 17:52:09 -08001166
1167 set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec + sleep.tv_sec,
1168 ts->tv_nsec + tomono.tv_nsec + sleep.tv_nsec + nsecs);
1169}
1170EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1171
1172/**
1173 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1174 *
1175 * Returns the monotonic time since boot in a ktime
1176 *
1177 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1178 * includes the time spent in suspend.
1179 */
1180ktime_t ktime_get_boottime(void)
1181{
1182 struct timespec ts;
1183
1184 get_monotonic_boottime(&ts);
1185 return timespec_to_ktime(ts);
1186}
1187EXPORT_SYMBOL_GPL(ktime_get_boottime);
1188
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001189/**
1190 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1191 * @ts: pointer to the timespec to be converted
1192 */
1193void monotonic_to_bootbased(struct timespec *ts)
1194{
John Stultz00c5fb72011-11-14 11:23:15 -08001195 *ts = timespec_add(*ts, timekeeper.total_sleep_time);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001196}
Jason Wangc93d89f2010-01-27 19:13:40 +08001197EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
john stultz2c6b47d2007-07-24 17:47:43 -07001198
john stultz17c38b72007-07-24 18:38:34 -07001199unsigned long get_seconds(void)
1200{
John Stultz8ff2cb92011-11-14 11:40:54 -08001201 return timekeeper.xtime.tv_sec;
john stultz17c38b72007-07-24 18:38:34 -07001202}
1203EXPORT_SYMBOL(get_seconds);
1204
john stultzda15cfd2009-08-19 19:13:34 -07001205struct timespec __current_kernel_time(void)
1206{
John Stultz8ff2cb92011-11-14 11:40:54 -08001207 return timekeeper.xtime;
john stultzda15cfd2009-08-19 19:13:34 -07001208}
john stultz17c38b72007-07-24 18:38:34 -07001209
john stultz2c6b47d2007-07-24 17:47:43 -07001210struct timespec current_kernel_time(void)
1211{
1212 struct timespec now;
1213 unsigned long seq;
1214
1215 do {
John Stultz70471f22011-11-14 12:48:10 -08001216 seq = read_seqbegin(&timekeeper.lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001217
John Stultz8ff2cb92011-11-14 11:40:54 -08001218 now = timekeeper.xtime;
John Stultz70471f22011-11-14 12:48:10 -08001219 } while (read_seqretry(&timekeeper.lock, seq));
john stultz2c6b47d2007-07-24 17:47:43 -07001220
1221 return now;
1222}
john stultz2c6b47d2007-07-24 17:47:43 -07001223EXPORT_SYMBOL(current_kernel_time);
john stultzda15cfd2009-08-19 19:13:34 -07001224
1225struct timespec get_monotonic_coarse(void)
1226{
1227 struct timespec now, mono;
1228 unsigned long seq;
1229
1230 do {
John Stultz70471f22011-11-14 12:48:10 -08001231 seq = read_seqbegin(&timekeeper.lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001232
John Stultz8ff2cb92011-11-14 11:40:54 -08001233 now = timekeeper.xtime;
John Stultzd9f72172011-11-14 11:29:32 -08001234 mono = timekeeper.wall_to_monotonic;
John Stultz70471f22011-11-14 12:48:10 -08001235 } while (read_seqretry(&timekeeper.lock, seq));
john stultzda15cfd2009-08-19 19:13:34 -07001236
1237 set_normalized_timespec(&now, now.tv_sec + mono.tv_sec,
1238 now.tv_nsec + mono.tv_nsec);
1239 return now;
1240}
Torben Hohn871cf1e2011-01-27 15:58:55 +01001241
1242/*
1243 * The 64-bit jiffies value is not atomic - you MUST NOT read it
1244 * without sampling the sequence number in xtime_lock.
1245 * jiffies is defined in the linker script...
1246 */
1247void do_timer(unsigned long ticks)
1248{
1249 jiffies_64 += ticks;
1250 update_wall_time();
1251 calc_global_load(ticks);
1252}
Torben Hohn48cf76f72011-01-27 15:59:05 +01001253
1254/**
John Stultz314ac372011-02-14 18:43:08 -08001255 * get_xtime_and_monotonic_and_sleep_offset() - get xtime, wall_to_monotonic,
1256 * and sleep offsets.
Torben Hohn48cf76f72011-01-27 15:59:05 +01001257 * @xtim: pointer to timespec to be set with xtime
1258 * @wtom: pointer to timespec to be set with wall_to_monotonic
John Stultz314ac372011-02-14 18:43:08 -08001259 * @sleep: pointer to timespec to be set with time in suspend
Torben Hohn48cf76f72011-01-27 15:59:05 +01001260 */
John Stultz314ac372011-02-14 18:43:08 -08001261void get_xtime_and_monotonic_and_sleep_offset(struct timespec *xtim,
1262 struct timespec *wtom, struct timespec *sleep)
Torben Hohn48cf76f72011-01-27 15:59:05 +01001263{
1264 unsigned long seq;
1265
1266 do {
John Stultz70471f22011-11-14 12:48:10 -08001267 seq = read_seqbegin(&timekeeper.lock);
John Stultz8ff2cb92011-11-14 11:40:54 -08001268 *xtim = timekeeper.xtime;
John Stultzd9f72172011-11-14 11:29:32 -08001269 *wtom = timekeeper.wall_to_monotonic;
John Stultz00c5fb72011-11-14 11:23:15 -08001270 *sleep = timekeeper.total_sleep_time;
John Stultz70471f22011-11-14 12:48:10 -08001271 } while (read_seqretry(&timekeeper.lock, seq));
Torben Hohn48cf76f72011-01-27 15:59:05 +01001272}
Torben Hohnf0af911a92011-01-27 15:59:10 +01001273
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001274#ifdef CONFIG_HIGH_RES_TIMERS
1275/**
1276 * ktime_get_update_offsets - hrtimer helper
1277 * @offs_real: pointer to storage for monotonic -> realtime offset
1278 * @offs_boot: pointer to storage for monotonic -> boottime offset
1279 *
1280 * Returns current monotonic time and updates the offsets
1281 * Called from hrtimer_interupt() or retrigger_next_event()
1282 */
1283ktime_t ktime_get_update_offsets(ktime_t *offs_real, ktime_t *offs_boot)
1284{
1285 ktime_t now;
1286 unsigned int seq;
1287 u64 secs, nsecs;
1288
1289 do {
1290 seq = read_seqbegin(&timekeeper.lock);
1291
1292 secs = timekeeper.xtime.tv_sec;
1293 nsecs = timekeeper.xtime.tv_nsec;
1294 nsecs += timekeeping_get_ns();
1295 /* If arch requires, add in gettimeoffset() */
1296 nsecs += arch_gettimeoffset();
1297
1298 *offs_real = timekeeper.offs_real;
1299 *offs_boot = timekeeper.offs_boot;
1300 } while (read_seqretry(&timekeeper.lock, seq));
1301
1302 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1303 now = ktime_sub(now, *offs_real);
1304 return now;
1305}
1306#endif
1307
Torben Hohnf0af911a92011-01-27 15:59:10 +01001308/**
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001309 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1310 */
1311ktime_t ktime_get_monotonic_offset(void)
1312{
1313 unsigned long seq;
1314 struct timespec wtom;
1315
1316 do {
John Stultz70471f22011-11-14 12:48:10 -08001317 seq = read_seqbegin(&timekeeper.lock);
John Stultzd9f72172011-11-14 11:29:32 -08001318 wtom = timekeeper.wall_to_monotonic;
John Stultz70471f22011-11-14 12:48:10 -08001319 } while (read_seqretry(&timekeeper.lock, seq));
1320
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001321 return timespec_to_ktime(wtom);
1322}
John Stultza80b83b2012-02-03 00:19:07 -08001323EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1324
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001325
1326/**
Torben Hohnf0af911a92011-01-27 15:59:10 +01001327 * xtime_update() - advances the timekeeping infrastructure
1328 * @ticks: number of ticks, that have elapsed since the last call.
1329 *
1330 * Must be called with interrupts disabled.
1331 */
1332void xtime_update(unsigned long ticks)
1333{
1334 write_seqlock(&xtime_lock);
1335 do_timer(ticks);
1336 write_sequnlock(&xtime_lock);
1337}