blob: e43289df28c2789a019d81b096e2549dbf89dd05 [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. */
John Stultz42e71e82012-07-13 01:21:51 -040027 struct clocksource *clock;
Thomas Gleixner058892e2011-11-13 23:19:48 +000028 /* NTP adjusted clock multiplier */
John Stultz42e71e82012-07-13 01:21:51 -040029 u32 mult;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +020030 /* The shift value of the current clocksource. */
John Stultzfee84c42012-07-13 01:21:52 -040031 u32 shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020032 /* Number of clock cycles in one NTP interval. */
John Stultz42e71e82012-07-13 01:21:51 -040033 cycle_t cycle_interval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020034 /* Number of clock shifted nano seconds in one NTP interval. */
John Stultz42e71e82012-07-13 01:21:51 -040035 u64 xtime_interval;
Kasper Pedersena386b5a2010-10-20 15:55:15 -070036 /* shifted nano seconds left over when rounding cycle_interval */
John Stultz42e71e82012-07-13 01:21:51 -040037 s64 xtime_remainder;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020038 /* Raw nano seconds accumulated per NTP interval. */
John Stultz42e71e82012-07-13 01:21:51 -040039 u32 raw_interval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020040
John Stultz1e75fa82012-07-13 01:21:53 -040041 /* Current CLOCK_REALTIME time in seconds */
42 u64 xtime_sec;
43 /* Clock shifted nano seconds */
John Stultz42e71e82012-07-13 01:21:51 -040044 u64 xtime_nsec;
John Stultz1e75fa82012-07-13 01:21:53 -040045
Martin Schwidefsky155ec602009-08-14 15:47:26 +020046 /* Difference between accumulated time and NTP time in ntp
47 * shifted nano seconds. */
John Stultz42e71e82012-07-13 01:21:51 -040048 s64 ntp_error;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +020049 /* Shift conversion between clock shifted nano seconds and
50 * ntp shifted nano seconds. */
John Stultzfee84c42012-07-13 01:21:52 -040051 u32 ntp_error_shift;
John Stultz00c5fb72011-11-14 11:23:15 -080052
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 */
John Stultz42e71e82012-07-13 01:21:51 -040067 struct timespec wall_to_monotonic;
John Stultz00c5fb72011-11-14 11:23:15 -080068 /* time spent in suspend */
John Stultz42e71e82012-07-13 01:21:51 -040069 struct timespec total_sleep_time;
John Stultz01f71b42011-11-14 11:43:49 -080070 /* The raw monotonic time for the CLOCK_MONOTONIC_RAW posix clock. */
John Stultz42e71e82012-07-13 01:21:51 -040071 struct timespec raw_time;
Thomas Gleixner5b9fe752012-07-10 18:43:21 -040072 /* Offset clock monotonic -> clock realtime */
John Stultz42e71e82012-07-13 01:21:51 -040073 ktime_t offs_real;
Thomas Gleixner5b9fe752012-07-10 18:43:21 -040074 /* Offset clock monotonic -> clock boottime */
John Stultz42e71e82012-07-13 01:21:51 -040075 ktime_t offs_boot;
John Stultz70471f22011-11-14 12:48:10 -080076 /* Seqlock for all timekeeper values */
John Stultz42e71e82012-07-13 01:21:51 -040077 seqlock_t lock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020078};
79
H Hartley Sweetenafa14e72011-01-11 17:59:38 -060080static struct timekeeper timekeeper;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020081
John Stultz8fcce542011-11-14 11:46:39 -080082/*
83 * This read-write spinlock protects us from races in SMP while
84 * playing with xtime.
85 */
86__cacheline_aligned_in_smp DEFINE_SEQLOCK(xtime_lock);
87
John Stultz8fcce542011-11-14 11:46:39 -080088/* flag for if timekeeping is suspended */
89int __read_mostly timekeeping_suspended;
90
John Stultz1e75fa82012-07-13 01:21:53 -040091static inline void tk_normalize_xtime(struct timekeeper *tk)
92{
93 while (tk->xtime_nsec >= ((u64)NSEC_PER_SEC << tk->shift)) {
94 tk->xtime_nsec -= (u64)NSEC_PER_SEC << tk->shift;
95 tk->xtime_sec++;
96 }
97}
John Stultz8fcce542011-11-14 11:46:39 -080098
John Stultz1e75fa82012-07-13 01:21:53 -040099static struct timespec tk_xtime(struct timekeeper *tk)
100{
101 struct timespec ts;
102
103 ts.tv_sec = tk->xtime_sec;
104 ts.tv_nsec = (long)(tk->xtime_nsec >> tk->shift);
105 return ts;
106}
107
108static void tk_set_xtime(struct timekeeper *tk, const struct timespec *ts)
109{
110 tk->xtime_sec = ts->tv_sec;
111 tk->xtime_nsec = ts->tv_nsec << tk->shift;
112}
113
114static void tk_xtime_add(struct timekeeper *tk, const struct timespec *ts)
115{
116 tk->xtime_sec += ts->tv_sec;
117 tk->xtime_nsec += ts->tv_nsec << tk->shift;
118}
John Stultz8fcce542011-11-14 11:46:39 -0800119
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200120/**
121 * timekeeper_setup_internals - Set up internals to use clocksource clock.
122 *
123 * @clock: Pointer to clocksource.
124 *
125 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
126 * pair and interval request.
127 *
128 * Unless you're the timekeeping code, you should not be using this!
129 */
130static void timekeeper_setup_internals(struct clocksource *clock)
131{
132 cycle_t interval;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700133 u64 tmp, ntpinterval;
John Stultz1e75fa82012-07-13 01:21:53 -0400134 struct clocksource *old_clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200135
John Stultz1e75fa82012-07-13 01:21:53 -0400136 old_clock = timekeeper.clock;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200137 timekeeper.clock = clock;
138 clock->cycle_last = clock->read(clock);
139
140 /* Do the ns -> cycle conversion first, using original mult */
141 tmp = NTP_INTERVAL_LENGTH;
142 tmp <<= clock->shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700143 ntpinterval = tmp;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200144 tmp += clock->mult/2;
145 do_div(tmp, clock->mult);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200146 if (tmp == 0)
147 tmp = 1;
148
149 interval = (cycle_t) tmp;
150 timekeeper.cycle_interval = interval;
151
152 /* Go back from cycles -> shifted ns */
153 timekeeper.xtime_interval = (u64) interval * clock->mult;
Kasper Pedersena386b5a2010-10-20 15:55:15 -0700154 timekeeper.xtime_remainder = ntpinterval - timekeeper.xtime_interval;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200155 timekeeper.raw_interval =
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200156 ((u64) interval * clock->mult) >> clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200157
John Stultz1e75fa82012-07-13 01:21:53 -0400158 /* if changing clocks, convert xtime_nsec shift units */
159 if (old_clock) {
160 int shift_change = clock->shift - old_clock->shift;
161 if (shift_change < 0)
162 timekeeper.xtime_nsec >>= -shift_change;
163 else
164 timekeeper.xtime_nsec <<= shift_change;
165 }
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200166 timekeeper.shift = clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200167
168 timekeeper.ntp_error = 0;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200169 timekeeper.ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200170
171 /*
172 * The timekeeper keeps its own mult values for the currently
173 * active clocksource. These value will be adjusted via NTP
174 * to counteract clock drifting.
175 */
176 timekeeper.mult = clock->mult;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200177}
john stultz85240702007-05-08 00:27:59 -0700178
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200179/* Timekeeper helper functions. */
180static inline s64 timekeeping_get_ns(void)
181{
182 cycle_t cycle_now, cycle_delta;
183 struct clocksource *clock;
John Stultz1e75fa82012-07-13 01:21:53 -0400184 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200185
186 /* read clocksource: */
187 clock = timekeeper.clock;
188 cycle_now = clock->read(clock);
189
190 /* calculate the delta since the last update_wall_time: */
191 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
192
John Stultz1e75fa82012-07-13 01:21:53 -0400193 nsec = cycle_delta * timekeeper.mult + timekeeper.xtime_nsec;
John Stultzf2a5a082012-07-13 01:21:55 -0400194 nsec >>= timekeeper.shift;
195
196 /* If arch requires, add in gettimeoffset() */
197 return nsec + arch_gettimeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200198}
199
200static inline s64 timekeeping_get_ns_raw(void)
201{
202 cycle_t cycle_now, cycle_delta;
203 struct clocksource *clock;
John Stultzf2a5a082012-07-13 01:21:55 -0400204 s64 nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200205
206 /* read clocksource: */
207 clock = timekeeper.clock;
208 cycle_now = clock->read(clock);
209
210 /* calculate the delta since the last update_wall_time: */
211 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
212
John Stultzf2a5a082012-07-13 01:21:55 -0400213 /* convert delta to nanoseconds. */
214 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
215
216 /* If arch requires, add in gettimeoffset() */
217 return nsec + arch_gettimeoffset();
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200218}
219
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400220static void update_rt_offset(void)
221{
222 struct timespec tmp, *wtm = &timekeeper.wall_to_monotonic;
223
224 set_normalized_timespec(&tmp, -wtm->tv_sec, -wtm->tv_nsec);
225 timekeeper.offs_real = timespec_to_ktime(tmp);
226}
227
Thomas Gleixnercc062682011-11-13 23:19:49 +0000228/* must hold write on timekeeper.lock */
229static void timekeeping_update(bool clearntp)
230{
John Stultz1e75fa82012-07-13 01:21:53 -0400231 struct timespec xt;
232
Thomas Gleixnercc062682011-11-13 23:19:49 +0000233 if (clearntp) {
234 timekeeper.ntp_error = 0;
235 ntp_clear();
236 }
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400237 update_rt_offset();
John Stultz1e75fa82012-07-13 01:21:53 -0400238 xt = tk_xtime(&timekeeper);
239 update_vsyscall(&xt, &timekeeper.wall_to_monotonic,
Thomas Gleixnercc062682011-11-13 23:19:49 +0000240 timekeeper.clock, timekeeper.mult);
241}
242
243
john stultz85240702007-05-08 00:27:59 -0700244/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200245 * timekeeping_forward_now - update clock to the current time
john stultz85240702007-05-08 00:27:59 -0700246 *
Roman Zippel9a055112008-08-20 16:37:28 -0700247 * Forward the current clock to update its state since the last call to
248 * update_wall_time(). This is useful before significant clock changes,
249 * as it avoids having to deal with this time offset explicitly.
john stultz85240702007-05-08 00:27:59 -0700250 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200251static void timekeeping_forward_now(void)
john stultz85240702007-05-08 00:27:59 -0700252{
253 cycle_t cycle_now, cycle_delta;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200254 struct clocksource *clock;
Roman Zippel9a055112008-08-20 16:37:28 -0700255 s64 nsec;
john stultz85240702007-05-08 00:27:59 -0700256
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200257 clock = timekeeper.clock;
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200258 cycle_now = clock->read(clock);
john stultz85240702007-05-08 00:27:59 -0700259 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
Roman Zippel9a055112008-08-20 16:37:28 -0700260 clock->cycle_last = cycle_now;
john stultz85240702007-05-08 00:27:59 -0700261
John Stultz1e75fa82012-07-13 01:21:53 -0400262 timekeeper.xtime_nsec += cycle_delta * timekeeper.mult;
john stultz7d275582009-05-01 13:10:26 -0700263
264 /* If arch requires, add in gettimeoffset() */
John Stultz1e75fa82012-07-13 01:21:53 -0400265 timekeeper.xtime_nsec += arch_gettimeoffset() << timekeeper.shift;
john stultz7d275582009-05-01 13:10:26 -0700266
John Stultz1e75fa82012-07-13 01:21:53 -0400267 tk_normalize_xtime(&timekeeper);
John Stultz2d422442008-08-20 16:37:30 -0700268
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200269 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
John Stultz01f71b42011-11-14 11:43:49 -0800270 timespec_add_ns(&timekeeper.raw_time, nsec);
john stultz85240702007-05-08 00:27:59 -0700271}
272
273/**
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100274 * getnstimeofday - Returns the time of day in a timespec
john stultz85240702007-05-08 00:27:59 -0700275 * @ts: pointer to the timespec to be set
276 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100277 * Returns the time of day in a timespec.
john stultz85240702007-05-08 00:27:59 -0700278 */
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100279void getnstimeofday(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700280{
281 unsigned long seq;
John Stultz1e75fa82012-07-13 01:21:53 -0400282 s64 nsecs = 0;
john stultz85240702007-05-08 00:27:59 -0700283
Thomas Gleixner1c5745a2008-12-22 23:05:28 +0100284 WARN_ON(timekeeping_suspended);
285
john stultz85240702007-05-08 00:27:59 -0700286 do {
John Stultz70471f22011-11-14 12:48:10 -0800287 seq = read_seqbegin(&timekeeper.lock);
john stultz85240702007-05-08 00:27:59 -0700288
John Stultz1e75fa82012-07-13 01:21:53 -0400289 ts->tv_sec = timekeeper.xtime_sec;
290 ts->tv_nsec = timekeeping_get_ns();
john stultz85240702007-05-08 00:27:59 -0700291
John Stultz70471f22011-11-14 12:48:10 -0800292 } while (read_seqretry(&timekeeper.lock, seq));
john stultz85240702007-05-08 00:27:59 -0700293
294 timespec_add_ns(ts, nsecs);
295}
john stultz85240702007-05-08 00:27:59 -0700296EXPORT_SYMBOL(getnstimeofday);
297
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200298ktime_t ktime_get(void)
299{
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200300 unsigned int seq;
301 s64 secs, nsecs;
302
303 WARN_ON(timekeeping_suspended);
304
305 do {
John Stultz70471f22011-11-14 12:48:10 -0800306 seq = read_seqbegin(&timekeeper.lock);
John Stultz1e75fa82012-07-13 01:21:53 -0400307 secs = timekeeper.xtime_sec +
John Stultz8ff2cb92011-11-14 11:40:54 -0800308 timekeeper.wall_to_monotonic.tv_sec;
John Stultz1e75fa82012-07-13 01:21:53 -0400309 nsecs = timekeeping_get_ns() +
John Stultz8ff2cb92011-11-14 11:40:54 -0800310 timekeeper.wall_to_monotonic.tv_nsec;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200311
John Stultz70471f22011-11-14 12:48:10 -0800312 } while (read_seqretry(&timekeeper.lock, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200313 /*
314 * Use ktime_set/ktime_add_ns to create a proper ktime on
315 * 32-bit architectures without CONFIG_KTIME_SCALAR.
316 */
317 return ktime_add_ns(ktime_set(secs, 0), nsecs);
318}
319EXPORT_SYMBOL_GPL(ktime_get);
320
321/**
322 * ktime_get_ts - get the monotonic clock in timespec format
323 * @ts: pointer to timespec variable
324 *
325 * The function calculates the monotonic clock from the realtime
326 * clock and the wall_to_monotonic offset and stores the result
327 * in normalized timespec format in the variable pointed to by @ts.
328 */
329void ktime_get_ts(struct timespec *ts)
330{
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200331 struct timespec tomono;
332 unsigned int seq;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200333
334 WARN_ON(timekeeping_suspended);
335
336 do {
John Stultz70471f22011-11-14 12:48:10 -0800337 seq = read_seqbegin(&timekeeper.lock);
John Stultz1e75fa82012-07-13 01:21:53 -0400338 ts->tv_sec = timekeeper.xtime_sec;
339 ts->tv_nsec = timekeeping_get_ns();
John Stultzd9f72172011-11-14 11:29:32 -0800340 tomono = timekeeper.wall_to_monotonic;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200341
John Stultz70471f22011-11-14 12:48:10 -0800342 } while (read_seqretry(&timekeeper.lock, seq));
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200343
344 set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec,
John Stultz1e75fa82012-07-13 01:21:53 -0400345 ts->tv_nsec + tomono.tv_nsec);
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200346}
347EXPORT_SYMBOL_GPL(ktime_get_ts);
348
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800349#ifdef CONFIG_NTP_PPS
350
351/**
352 * getnstime_raw_and_real - get day and raw monotonic time in timespec format
353 * @ts_raw: pointer to the timespec to be set to raw monotonic time
354 * @ts_real: pointer to the timespec to be set to the time of day
355 *
356 * This function reads both the time of day and raw monotonic time at the
357 * same time atomically and stores the resulting timestamps in timespec
358 * format.
359 */
360void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
361{
362 unsigned long seq;
363 s64 nsecs_raw, nsecs_real;
364
365 WARN_ON_ONCE(timekeeping_suspended);
366
367 do {
John Stultz70471f22011-11-14 12:48:10 -0800368 seq = read_seqbegin(&timekeeper.lock);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800369
John Stultz01f71b42011-11-14 11:43:49 -0800370 *ts_raw = timekeeper.raw_time;
John Stultz1e75fa82012-07-13 01:21:53 -0400371 ts_real->tv_sec = timekeeper.xtime_sec;
372 ts_real->tv_nsec = 0;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800373
374 nsecs_raw = timekeeping_get_ns_raw();
375 nsecs_real = timekeeping_get_ns();
376
John Stultz70471f22011-11-14 12:48:10 -0800377 } while (read_seqretry(&timekeeper.lock, seq));
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800378
379 timespec_add_ns(ts_raw, nsecs_raw);
380 timespec_add_ns(ts_real, nsecs_real);
381}
382EXPORT_SYMBOL(getnstime_raw_and_real);
383
384#endif /* CONFIG_NTP_PPS */
385
john stultz85240702007-05-08 00:27:59 -0700386/**
387 * do_gettimeofday - Returns the time of day in a timeval
388 * @tv: pointer to the timeval to be set
389 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100390 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -0700391 */
392void do_gettimeofday(struct timeval *tv)
393{
394 struct timespec now;
395
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100396 getnstimeofday(&now);
john stultz85240702007-05-08 00:27:59 -0700397 tv->tv_sec = now.tv_sec;
398 tv->tv_usec = now.tv_nsec/1000;
399}
john stultz85240702007-05-08 00:27:59 -0700400EXPORT_SYMBOL(do_gettimeofday);
Richard Cochrand239f492012-04-27 10:12:42 +0200401
john stultz85240702007-05-08 00:27:59 -0700402/**
403 * do_settimeofday - Sets the time of day
404 * @tv: pointer to the timespec variable containing the new time
405 *
406 * Sets the time of day to the new time and update NTP and notify hrtimers
407 */
Richard Cochran1e6d7672011-02-01 13:50:58 +0000408int do_settimeofday(const struct timespec *tv)
john stultz85240702007-05-08 00:27:59 -0700409{
John Stultz1e75fa82012-07-13 01:21:53 -0400410 struct timespec ts_delta, xt;
John Stultz92c1d3e2011-11-14 14:05:44 -0800411 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700412
413 if ((unsigned long)tv->tv_nsec >= NSEC_PER_SEC)
414 return -EINVAL;
415
John Stultz92c1d3e2011-11-14 14:05:44 -0800416 write_seqlock_irqsave(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700417
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200418 timekeeping_forward_now();
john stultz85240702007-05-08 00:27:59 -0700419
John Stultz1e75fa82012-07-13 01:21:53 -0400420 xt = tk_xtime(&timekeeper);
421 ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
422 ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
423
John Stultzd9f72172011-11-14 11:29:32 -0800424 timekeeper.wall_to_monotonic =
425 timespec_sub(timekeeper.wall_to_monotonic, ts_delta);
john stultz85240702007-05-08 00:27:59 -0700426
John Stultz1e75fa82012-07-13 01:21:53 -0400427 tk_set_xtime(&timekeeper, tv);
428
Thomas Gleixnercc062682011-11-13 23:19:49 +0000429 timekeeping_update(true);
john stultz85240702007-05-08 00:27:59 -0700430
John Stultz92c1d3e2011-11-14 14:05:44 -0800431 write_sequnlock_irqrestore(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700432
433 /* signal hrtimers about time change */
434 clock_was_set();
435
436 return 0;
437}
john stultz85240702007-05-08 00:27:59 -0700438EXPORT_SYMBOL(do_settimeofday);
439
John Stultzc528f7c2011-02-01 13:52:17 +0000440
441/**
442 * timekeeping_inject_offset - Adds or subtracts from the current time.
443 * @tv: pointer to the timespec variable containing the offset
444 *
445 * Adds or subtracts an offset value from the current time.
446 */
447int timekeeping_inject_offset(struct timespec *ts)
448{
John Stultz92c1d3e2011-11-14 14:05:44 -0800449 unsigned long flags;
John Stultzc528f7c2011-02-01 13:52:17 +0000450
451 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
452 return -EINVAL;
453
John Stultz92c1d3e2011-11-14 14:05:44 -0800454 write_seqlock_irqsave(&timekeeper.lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000455
456 timekeeping_forward_now();
457
John Stultz1e75fa82012-07-13 01:21:53 -0400458
459 tk_xtime_add(&timekeeper, ts);
John Stultzd9f72172011-11-14 11:29:32 -0800460 timekeeper.wall_to_monotonic =
461 timespec_sub(timekeeper.wall_to_monotonic, *ts);
John Stultzc528f7c2011-02-01 13:52:17 +0000462
Thomas Gleixnercc062682011-11-13 23:19:49 +0000463 timekeeping_update(true);
John Stultzc528f7c2011-02-01 13:52:17 +0000464
John Stultz92c1d3e2011-11-14 14:05:44 -0800465 write_sequnlock_irqrestore(&timekeeper.lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000466
467 /* signal hrtimers about time change */
468 clock_was_set();
469
470 return 0;
471}
472EXPORT_SYMBOL(timekeeping_inject_offset);
473
john stultz85240702007-05-08 00:27:59 -0700474/**
475 * change_clocksource - Swaps clocksources if a new one is available
476 *
477 * Accumulates current time interval and initializes new clocksource
478 */
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200479static int change_clocksource(void *data)
john stultz85240702007-05-08 00:27:59 -0700480{
Magnus Damm4614e6a2009-04-21 12:24:02 -0700481 struct clocksource *new, *old;
John Stultzf695cf92012-03-14 16:38:15 -0700482 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700483
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200484 new = (struct clocksource *) data;
john stultz85240702007-05-08 00:27:59 -0700485
John Stultzf695cf92012-03-14 16:38:15 -0700486 write_seqlock_irqsave(&timekeeper.lock, flags);
487
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200488 timekeeping_forward_now();
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200489 if (!new->enable || new->enable(new) == 0) {
490 old = timekeeper.clock;
491 timekeeper_setup_internals(new);
492 if (old->disable)
493 old->disable(old);
494 }
John Stultzf695cf92012-03-14 16:38:15 -0700495 timekeeping_update(true);
496
497 write_sequnlock_irqrestore(&timekeeper.lock, flags);
498
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200499 return 0;
500}
john stultz85240702007-05-08 00:27:59 -0700501
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200502/**
503 * timekeeping_notify - Install a new clock source
504 * @clock: pointer to the clock source
505 *
506 * This function is called from clocksource.c after a new, better clock
507 * source has been registered. The caller holds the clocksource_mutex.
508 */
509void timekeeping_notify(struct clocksource *clock)
510{
511 if (timekeeper.clock == clock)
Magnus Damm4614e6a2009-04-21 12:24:02 -0700512 return;
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200513 stop_machine(change_clocksource, clock, NULL);
john stultz85240702007-05-08 00:27:59 -0700514 tick_clock_notify();
john stultz85240702007-05-08 00:27:59 -0700515}
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200516
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200517/**
518 * ktime_get_real - get the real (wall-) time in ktime_t format
519 *
520 * returns the time in ktime_t format
521 */
522ktime_t ktime_get_real(void)
523{
524 struct timespec now;
525
526 getnstimeofday(&now);
527
528 return timespec_to_ktime(now);
529}
530EXPORT_SYMBOL_GPL(ktime_get_real);
john stultz85240702007-05-08 00:27:59 -0700531
532/**
John Stultz2d422442008-08-20 16:37:30 -0700533 * getrawmonotonic - Returns the raw monotonic time in a timespec
534 * @ts: pointer to the timespec to be set
535 *
536 * Returns the raw monotonic time (completely un-modified by ntp)
537 */
538void getrawmonotonic(struct timespec *ts)
539{
540 unsigned long seq;
541 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -0700542
543 do {
John Stultz70471f22011-11-14 12:48:10 -0800544 seq = read_seqbegin(&timekeeper.lock);
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200545 nsecs = timekeeping_get_ns_raw();
John Stultz01f71b42011-11-14 11:43:49 -0800546 *ts = timekeeper.raw_time;
John Stultz2d422442008-08-20 16:37:30 -0700547
John Stultz70471f22011-11-14 12:48:10 -0800548 } while (read_seqretry(&timekeeper.lock, seq));
John Stultz2d422442008-08-20 16:37:30 -0700549
550 timespec_add_ns(ts, nsecs);
551}
552EXPORT_SYMBOL(getrawmonotonic);
553
554
555/**
Li Zefancf4fc6c2008-02-08 04:19:24 -0800556 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -0700557 */
Li Zefancf4fc6c2008-02-08 04:19:24 -0800558int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -0700559{
560 unsigned long seq;
561 int ret;
562
563 do {
John Stultz70471f22011-11-14 12:48:10 -0800564 seq = read_seqbegin(&timekeeper.lock);
john stultz85240702007-05-08 00:27:59 -0700565
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200566 ret = timekeeper.clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -0700567
John Stultz70471f22011-11-14 12:48:10 -0800568 } while (read_seqretry(&timekeeper.lock, seq));
john stultz85240702007-05-08 00:27:59 -0700569
570 return ret;
571}
572
573/**
Jon Hunter98962462009-08-18 12:45:10 -0500574 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
Jon Hunter98962462009-08-18 12:45:10 -0500575 */
576u64 timekeeping_max_deferment(void)
577{
John Stultz70471f22011-11-14 12:48:10 -0800578 unsigned long seq;
579 u64 ret;
John Stultz42e71e82012-07-13 01:21:51 -0400580
John Stultz70471f22011-11-14 12:48:10 -0800581 do {
582 seq = read_seqbegin(&timekeeper.lock);
583
584 ret = timekeeper.clock->max_idle_ns;
585
586 } while (read_seqretry(&timekeeper.lock, seq));
587
588 return ret;
Jon Hunter98962462009-08-18 12:45:10 -0500589}
590
591/**
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200592 * read_persistent_clock - Return time from the persistent clock.
john stultz85240702007-05-08 00:27:59 -0700593 *
594 * Weak dummy function for arches that do not yet support it.
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200595 * Reads the time from the battery backed persistent clock.
596 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
john stultz85240702007-05-08 00:27:59 -0700597 *
598 * XXX - Do be sure to remove it once all arches implement it.
599 */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200600void __attribute__((weak)) read_persistent_clock(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700601{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200602 ts->tv_sec = 0;
603 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700604}
605
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200606/**
607 * read_boot_clock - Return time of the system start.
608 *
609 * Weak dummy function for arches that do not yet support it.
610 * Function to read the exact time the system has been started.
611 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
612 *
613 * XXX - Do be sure to remove it once all arches implement it.
614 */
615void __attribute__((weak)) read_boot_clock(struct timespec *ts)
616{
617 ts->tv_sec = 0;
618 ts->tv_nsec = 0;
619}
620
john stultz85240702007-05-08 00:27:59 -0700621/*
622 * timekeeping_init - Initializes the clocksource and common timekeeping values
623 */
624void __init timekeeping_init(void)
625{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200626 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700627 unsigned long flags;
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200628 struct timespec now, boot;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200629
630 read_persistent_clock(&now);
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200631 read_boot_clock(&boot);
john stultz85240702007-05-08 00:27:59 -0700632
John Stultz70471f22011-11-14 12:48:10 -0800633 seqlock_init(&timekeeper.lock);
634
Roman Zippel7dffa3c2008-05-01 04:34:41 -0700635 ntp_init();
john stultz85240702007-05-08 00:27:59 -0700636
John Stultz70471f22011-11-14 12:48:10 -0800637 write_seqlock_irqsave(&timekeeper.lock, flags);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200638 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200639 if (clock->enable)
640 clock->enable(clock);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200641 timekeeper_setup_internals(clock);
john stultz85240702007-05-08 00:27:59 -0700642
John Stultz1e75fa82012-07-13 01:21:53 -0400643 tk_set_xtime(&timekeeper, &now);
John Stultz01f71b42011-11-14 11:43:49 -0800644 timekeeper.raw_time.tv_sec = 0;
645 timekeeper.raw_time.tv_nsec = 0;
John Stultz1e75fa82012-07-13 01:21:53 -0400646 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
647 boot = tk_xtime(&timekeeper);
648
John Stultzd9f72172011-11-14 11:29:32 -0800649 set_normalized_timespec(&timekeeper.wall_to_monotonic,
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200650 -boot.tv_sec, -boot.tv_nsec);
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400651 update_rt_offset();
John Stultz00c5fb72011-11-14 11:23:15 -0800652 timekeeper.total_sleep_time.tv_sec = 0;
653 timekeeper.total_sleep_time.tv_nsec = 0;
John Stultz70471f22011-11-14 12:48:10 -0800654 write_sequnlock_irqrestore(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700655}
656
john stultz85240702007-05-08 00:27:59 -0700657/* time in seconds when suspend began */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200658static struct timespec timekeeping_suspend_time;
john stultz85240702007-05-08 00:27:59 -0700659
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400660static void update_sleep_time(struct timespec t)
661{
662 timekeeper.total_sleep_time = t;
663 timekeeper.offs_boot = timespec_to_ktime(t);
664}
665
john stultz85240702007-05-08 00:27:59 -0700666/**
John Stultz304529b2011-04-01 14:32:09 -0700667 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
668 * @delta: pointer to a timespec delta value
669 *
670 * Takes a timespec offset measuring a suspend interval and properly
671 * adds the sleep offset to the timekeeping variables.
672 */
673static void __timekeeping_inject_sleeptime(struct timespec *delta)
674{
John Stultzcb5de2f8d2011-06-01 18:18:09 -0700675 if (!timespec_valid(delta)) {
John Stultzcbaa5152011-07-20 15:42:55 -0700676 printk(KERN_WARNING "__timekeeping_inject_sleeptime: Invalid "
John Stultzcb5de2f8d2011-06-01 18:18:09 -0700677 "sleep delta value!\n");
678 return;
679 }
680
John Stultz1e75fa82012-07-13 01:21:53 -0400681 tk_xtime_add(&timekeeper, delta);
John Stultzd9f72172011-11-14 11:29:32 -0800682 timekeeper.wall_to_monotonic =
683 timespec_sub(timekeeper.wall_to_monotonic, *delta);
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400684 update_sleep_time(timespec_add(timekeeper.total_sleep_time, *delta));
John Stultz304529b2011-04-01 14:32:09 -0700685}
686
687
688/**
689 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
690 * @delta: pointer to a timespec delta value
691 *
692 * This hook is for architectures that cannot support read_persistent_clock
693 * because their RTC/persistent clock is only accessible when irqs are enabled.
694 *
695 * This function should only be called by rtc_resume(), and allows
696 * a suspend offset to be injected into the timekeeping values.
697 */
698void timekeeping_inject_sleeptime(struct timespec *delta)
699{
John Stultz92c1d3e2011-11-14 14:05:44 -0800700 unsigned long flags;
John Stultz304529b2011-04-01 14:32:09 -0700701 struct timespec ts;
702
703 /* Make sure we don't set the clock twice */
704 read_persistent_clock(&ts);
705 if (!(ts.tv_sec == 0 && ts.tv_nsec == 0))
706 return;
707
John Stultz92c1d3e2011-11-14 14:05:44 -0800708 write_seqlock_irqsave(&timekeeper.lock, flags);
John Stultz70471f22011-11-14 12:48:10 -0800709
John Stultz304529b2011-04-01 14:32:09 -0700710 timekeeping_forward_now();
711
712 __timekeeping_inject_sleeptime(delta);
713
Thomas Gleixnercc062682011-11-13 23:19:49 +0000714 timekeeping_update(true);
John Stultz304529b2011-04-01 14:32:09 -0700715
John Stultz92c1d3e2011-11-14 14:05:44 -0800716 write_sequnlock_irqrestore(&timekeeper.lock, flags);
John Stultz304529b2011-04-01 14:32:09 -0700717
718 /* signal hrtimers about time change */
719 clock_was_set();
720}
721
722
723/**
john stultz85240702007-05-08 00:27:59 -0700724 * timekeeping_resume - Resumes the generic timekeeping subsystem.
john stultz85240702007-05-08 00:27:59 -0700725 *
726 * This is for the generic clocksource timekeeping.
727 * xtime/wall_to_monotonic/jiffies/etc are
728 * still managed by arch specific suspend/resume code.
729 */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100730static void timekeeping_resume(void)
john stultz85240702007-05-08 00:27:59 -0700731{
John Stultz92c1d3e2011-11-14 14:05:44 -0800732 unsigned long flags;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200733 struct timespec ts;
734
735 read_persistent_clock(&ts);
john stultz85240702007-05-08 00:27:59 -0700736
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +0200737 clocksource_resume();
738
John Stultz92c1d3e2011-11-14 14:05:44 -0800739 write_seqlock_irqsave(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700740
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200741 if (timespec_compare(&ts, &timekeeping_suspend_time) > 0) {
742 ts = timespec_sub(ts, timekeeping_suspend_time);
John Stultz304529b2011-04-01 14:32:09 -0700743 __timekeeping_inject_sleeptime(&ts);
john stultz85240702007-05-08 00:27:59 -0700744 }
745 /* re-base the last cycle value */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200746 timekeeper.clock->cycle_last = timekeeper.clock->read(timekeeper.clock);
747 timekeeper.ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -0700748 timekeeping_suspended = 0;
John Stultz92c1d3e2011-11-14 14:05:44 -0800749 write_sequnlock_irqrestore(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700750
751 touch_softlockup_watchdog();
752
753 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
754
755 /* Resume hrtimers */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200756 hrtimers_resume();
john stultz85240702007-05-08 00:27:59 -0700757}
758
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100759static int timekeeping_suspend(void)
john stultz85240702007-05-08 00:27:59 -0700760{
John Stultz92c1d3e2011-11-14 14:05:44 -0800761 unsigned long flags;
John Stultzcb332172011-05-31 22:53:23 -0700762 struct timespec delta, delta_delta;
763 static struct timespec old_delta;
john stultz85240702007-05-08 00:27:59 -0700764
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200765 read_persistent_clock(&timekeeping_suspend_time);
Thomas Gleixner3be90952007-09-16 15:36:43 +0200766
John Stultz92c1d3e2011-11-14 14:05:44 -0800767 write_seqlock_irqsave(&timekeeper.lock, flags);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200768 timekeeping_forward_now();
john stultz85240702007-05-08 00:27:59 -0700769 timekeeping_suspended = 1;
John Stultzcb332172011-05-31 22:53:23 -0700770
771 /*
772 * To avoid drift caused by repeated suspend/resumes,
773 * which each can add ~1 second drift error,
774 * try to compensate so the difference in system time
775 * and persistent_clock time stays close to constant.
776 */
John Stultz1e75fa82012-07-13 01:21:53 -0400777 delta = timespec_sub(tk_xtime(&timekeeper), timekeeping_suspend_time);
John Stultzcb332172011-05-31 22:53:23 -0700778 delta_delta = timespec_sub(delta, old_delta);
779 if (abs(delta_delta.tv_sec) >= 2) {
780 /*
781 * if delta_delta is too large, assume time correction
782 * has occured and set old_delta to the current delta.
783 */
784 old_delta = delta;
785 } else {
786 /* Otherwise try to adjust old_system to compensate */
787 timekeeping_suspend_time =
788 timespec_add(timekeeping_suspend_time, delta_delta);
789 }
John Stultz92c1d3e2011-11-14 14:05:44 -0800790 write_sequnlock_irqrestore(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700791
792 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
Magnus Dammc54a42b2010-02-02 14:41:41 -0800793 clocksource_suspend();
john stultz85240702007-05-08 00:27:59 -0700794
795 return 0;
796}
797
798/* sysfs resume/suspend bits for timekeeping */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100799static struct syscore_ops timekeeping_syscore_ops = {
john stultz85240702007-05-08 00:27:59 -0700800 .resume = timekeeping_resume,
801 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -0700802};
803
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100804static int __init timekeeping_init_ops(void)
john stultz85240702007-05-08 00:27:59 -0700805{
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100806 register_syscore_ops(&timekeeping_syscore_ops);
807 return 0;
john stultz85240702007-05-08 00:27:59 -0700808}
809
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100810device_initcall(timekeeping_init_ops);
john stultz85240702007-05-08 00:27:59 -0700811
812/*
813 * If the error is already larger, we look ahead even further
814 * to compensate for late or lost adjustments.
815 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200816static __always_inline int timekeeping_bigadjust(s64 error, s64 *interval,
john stultz85240702007-05-08 00:27:59 -0700817 s64 *offset)
818{
819 s64 tick_error, i;
820 u32 look_ahead, adj;
821 s32 error2, mult;
822
823 /*
824 * Use the current error value to determine how much to look ahead.
825 * The larger the error the slower we adjust for it to avoid problems
826 * with losing too many ticks, otherwise we would overadjust and
827 * produce an even larger error. The smaller the adjustment the
828 * faster we try to adjust for it, as lost ticks can do less harm
Li Zefan3eb05672008-02-08 04:19:25 -0800829 * here. This is tuned so that an error of about 1 msec is adjusted
john stultz85240702007-05-08 00:27:59 -0700830 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
831 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200832 error2 = timekeeper.ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
john stultz85240702007-05-08 00:27:59 -0700833 error2 = abs(error2);
834 for (look_ahead = 0; error2 > 0; look_ahead++)
835 error2 >>= 2;
836
837 /*
838 * Now calculate the error in (1 << look_ahead) ticks, but first
839 * remove the single look ahead already included in the error.
840 */
John Stultzea7cf492011-11-14 13:18:07 -0800841 tick_error = ntp_tick_length() >> (timekeeper.ntp_error_shift + 1);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200842 tick_error -= timekeeper.xtime_interval >> 1;
john stultz85240702007-05-08 00:27:59 -0700843 error = ((error - tick_error) >> look_ahead) + tick_error;
844
845 /* Finally calculate the adjustment shift value. */
846 i = *interval;
847 mult = 1;
848 if (error < 0) {
849 error = -error;
850 *interval = -*interval;
851 *offset = -*offset;
852 mult = -1;
853 }
854 for (adj = 0; error > i; adj++)
855 error >>= 1;
856
857 *interval <<= adj;
858 *offset <<= adj;
859 return mult << adj;
860}
861
862/*
863 * Adjust the multiplier to reduce the error value,
864 * this is optimized for the most common adjustments of -1,0,1,
865 * for other values we can do a bit more work.
866 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200867static void timekeeping_adjust(s64 offset)
john stultz85240702007-05-08 00:27:59 -0700868{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200869 s64 error, interval = timekeeper.cycle_interval;
john stultz85240702007-05-08 00:27:59 -0700870 int adj;
871
John Stultzc2bc1112011-10-27 18:12:42 -0700872 /*
Jim Cromie88b28ad2012-03-14 21:28:56 -0600873 * The point of this is to check if the error is greater than half
John Stultzc2bc1112011-10-27 18:12:42 -0700874 * an interval.
875 *
876 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
877 *
878 * Note we subtract one in the shift, so that error is really error*2.
John Stultz3f86f282011-10-27 17:41:17 -0700879 * This "saves" dividing(shifting) interval twice, but keeps the
880 * (error > interval) comparison as still measuring if error is
Jim Cromie88b28ad2012-03-14 21:28:56 -0600881 * larger than half an interval.
John Stultzc2bc1112011-10-27 18:12:42 -0700882 *
John Stultz3f86f282011-10-27 17:41:17 -0700883 * Note: It does not "save" on aggravation when reading the code.
John Stultzc2bc1112011-10-27 18:12:42 -0700884 */
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200885 error = timekeeper.ntp_error >> (timekeeper.ntp_error_shift - 1);
john stultz85240702007-05-08 00:27:59 -0700886 if (error > interval) {
John Stultzc2bc1112011-10-27 18:12:42 -0700887 /*
888 * We now divide error by 4(via shift), which checks if
Jim Cromie88b28ad2012-03-14 21:28:56 -0600889 * the error is greater than twice the interval.
John Stultzc2bc1112011-10-27 18:12:42 -0700890 * If it is greater, we need a bigadjust, if its smaller,
891 * we can adjust by 1.
892 */
john stultz85240702007-05-08 00:27:59 -0700893 error >>= 2;
John Stultzc2bc1112011-10-27 18:12:42 -0700894 /*
895 * XXX - In update_wall_time, we round up to the next
896 * nanosecond, and store the amount rounded up into
897 * the error. This causes the likely below to be unlikely.
898 *
John Stultz3f86f282011-10-27 17:41:17 -0700899 * The proper fix is to avoid rounding up by using
John Stultzc2bc1112011-10-27 18:12:42 -0700900 * the high precision timekeeper.xtime_nsec instead of
901 * xtime.tv_nsec everywhere. Fixing this will take some
902 * time.
903 */
john stultz85240702007-05-08 00:27:59 -0700904 if (likely(error <= interval))
905 adj = 1;
906 else
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200907 adj = timekeeping_bigadjust(error, &interval, &offset);
john stultz85240702007-05-08 00:27:59 -0700908 } else if (error < -interval) {
John Stultzc2bc1112011-10-27 18:12:42 -0700909 /* See comment above, this is just switched for the negative */
john stultz85240702007-05-08 00:27:59 -0700910 error >>= 2;
911 if (likely(error >= -interval)) {
912 adj = -1;
913 interval = -interval;
914 offset = -offset;
915 } else
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200916 adj = timekeeping_bigadjust(error, &interval, &offset);
John Stultzc2bc1112011-10-27 18:12:42 -0700917 } else /* No adjustment needed */
john stultz85240702007-05-08 00:27:59 -0700918 return;
919
John Stultze919cfd2012-03-22 19:14:46 -0700920 if (unlikely(timekeeper.clock->maxadj &&
921 (timekeeper.mult + adj >
922 timekeeper.clock->mult + timekeeper.clock->maxadj))) {
923 printk_once(KERN_WARNING
924 "Adjusting %s more than 11%% (%ld vs %ld)\n",
John Stultzd65670a2011-10-31 17:06:35 -0400925 timekeeper.clock->name, (long)timekeeper.mult + adj,
926 (long)timekeeper.clock->mult +
927 timekeeper.clock->maxadj);
John Stultze919cfd2012-03-22 19:14:46 -0700928 }
John Stultzc2bc1112011-10-27 18:12:42 -0700929 /*
930 * So the following can be confusing.
931 *
932 * To keep things simple, lets assume adj == 1 for now.
933 *
934 * When adj != 1, remember that the interval and offset values
935 * have been appropriately scaled so the math is the same.
936 *
937 * The basic idea here is that we're increasing the multiplier
938 * by one, this causes the xtime_interval to be incremented by
939 * one cycle_interval. This is because:
940 * xtime_interval = cycle_interval * mult
941 * So if mult is being incremented by one:
942 * xtime_interval = cycle_interval * (mult + 1)
943 * Its the same as:
944 * xtime_interval = (cycle_interval * mult) + cycle_interval
945 * Which can be shortened to:
946 * xtime_interval += cycle_interval
947 *
948 * So offset stores the non-accumulated cycles. Thus the current
949 * time (in shifted nanoseconds) is:
950 * now = (offset * adj) + xtime_nsec
951 * Now, even though we're adjusting the clock frequency, we have
952 * to keep time consistent. In other words, we can't jump back
953 * in time, and we also want to avoid jumping forward in time.
954 *
955 * So given the same offset value, we need the time to be the same
956 * both before and after the freq adjustment.
957 * now = (offset * adj_1) + xtime_nsec_1
958 * now = (offset * adj_2) + xtime_nsec_2
959 * So:
960 * (offset * adj_1) + xtime_nsec_1 =
961 * (offset * adj_2) + xtime_nsec_2
962 * And we know:
963 * adj_2 = adj_1 + 1
964 * So:
965 * (offset * adj_1) + xtime_nsec_1 =
966 * (offset * (adj_1+1)) + xtime_nsec_2
967 * (offset * adj_1) + xtime_nsec_1 =
968 * (offset * adj_1) + offset + xtime_nsec_2
969 * Canceling the sides:
970 * xtime_nsec_1 = offset + xtime_nsec_2
971 * Which gives us:
972 * xtime_nsec_2 = xtime_nsec_1 - offset
973 * Which simplfies to:
974 * xtime_nsec -= offset
975 *
976 * XXX - TODO: Doc ntp_error calculation.
977 */
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200978 timekeeper.mult += adj;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200979 timekeeper.xtime_interval += interval;
980 timekeeper.xtime_nsec -= offset;
981 timekeeper.ntp_error -= (interval - offset) <<
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200982 timekeeper.ntp_error_shift;
john stultz85240702007-05-08 00:27:59 -0700983}
984
Linus Torvalds83f57a12009-12-22 14:10:37 -0800985
john stultz85240702007-05-08 00:27:59 -0700986/**
John Stultz1f4f9482012-07-13 01:21:54 -0400987 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
988 *
989 * Helper function that accumulates a the nsecs greater then a second
990 * from the xtime_nsec field to the xtime_secs field.
991 * It also calls into the NTP code to handle leapsecond processing.
992 *
993 */
994static inline void accumulate_nsecs_to_secs(struct timekeeper *tk)
995{
996 u64 nsecps = (u64)NSEC_PER_SEC << tk->shift;
997
998 while (tk->xtime_nsec >= nsecps) {
999 int leap;
1000
1001 tk->xtime_nsec -= nsecps;
1002 tk->xtime_sec++;
1003
1004 /* Figure out if its a leap sec and apply if needed */
1005 leap = second_overflow(tk->xtime_sec);
1006 tk->xtime_sec += leap;
1007 tk->wall_to_monotonic.tv_sec -= leap;
1008 if (leap)
1009 clock_was_set_delayed();
1010
1011 }
1012}
1013
1014
1015/**
john stultza092ff02009-10-02 16:17:53 -07001016 * logarithmic_accumulation - shifted accumulation of cycles
1017 *
1018 * This functions accumulates a shifted interval of cycles into
1019 * into a shifted interval nanoseconds. Allows for O(log) accumulation
1020 * loop.
1021 *
1022 * Returns the unconsumed cycles.
1023 */
John Stultzfee84c42012-07-13 01:21:52 -04001024static cycle_t logarithmic_accumulation(cycle_t offset, u32 shift)
john stultza092ff02009-10-02 16:17:53 -07001025{
Jason Wesseldeda2e82010-08-09 14:20:09 -07001026 u64 raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001027
Jim Cromie88b28ad2012-03-14 21:28:56 -06001028 /* If the offset is smaller than a shifted interval, do nothing */
john stultza092ff02009-10-02 16:17:53 -07001029 if (offset < timekeeper.cycle_interval<<shift)
1030 return offset;
1031
1032 /* Accumulate one shifted interval */
1033 offset -= timekeeper.cycle_interval << shift;
1034 timekeeper.clock->cycle_last += timekeeper.cycle_interval << shift;
1035
1036 timekeeper.xtime_nsec += timekeeper.xtime_interval << shift;
John Stultz1f4f9482012-07-13 01:21:54 -04001037
1038 accumulate_nsecs_to_secs(&timekeeper);
john stultza092ff02009-10-02 16:17:53 -07001039
Jason Wesseldeda2e82010-08-09 14:20:09 -07001040 /* Accumulate raw time */
1041 raw_nsecs = timekeeper.raw_interval << shift;
John Stultz01f71b42011-11-14 11:43:49 -08001042 raw_nsecs += timekeeper.raw_time.tv_nsec;
John Stultzc7dcf872010-08-13 11:30:58 -07001043 if (raw_nsecs >= NSEC_PER_SEC) {
1044 u64 raw_secs = raw_nsecs;
1045 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
John Stultz01f71b42011-11-14 11:43:49 -08001046 timekeeper.raw_time.tv_sec += raw_secs;
john stultza092ff02009-10-02 16:17:53 -07001047 }
John Stultz01f71b42011-11-14 11:43:49 -08001048 timekeeper.raw_time.tv_nsec = raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001049
1050 /* Accumulate error between NTP and clock interval */
John Stultzea7cf492011-11-14 13:18:07 -08001051 timekeeper.ntp_error += ntp_tick_length() << shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -07001052 timekeeper.ntp_error -=
1053 (timekeeper.xtime_interval + timekeeper.xtime_remainder) <<
john stultza092ff02009-10-02 16:17:53 -07001054 (timekeeper.ntp_error_shift + shift);
1055
1056 return offset;
1057}
1058
Linus Torvalds83f57a12009-12-22 14:10:37 -08001059
john stultz85240702007-05-08 00:27:59 -07001060/**
1061 * update_wall_time - Uses the current clocksource to increment the wall time
1062 *
john stultz85240702007-05-08 00:27:59 -07001063 */
Torben Hohn871cf1e2011-01-27 15:58:55 +01001064static void update_wall_time(void)
john stultz85240702007-05-08 00:27:59 -07001065{
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001066 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -07001067 cycle_t offset;
john stultza092ff02009-10-02 16:17:53 -07001068 int shift = 0, maxshift;
John Stultz70471f22011-11-14 12:48:10 -08001069 unsigned long flags;
John Stultz1e75fa82012-07-13 01:21:53 -04001070 s64 remainder;
John Stultz70471f22011-11-14 12:48:10 -08001071
1072 write_seqlock_irqsave(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -07001073
1074 /* Make sure we're fully resumed: */
1075 if (unlikely(timekeeping_suspended))
John Stultz70471f22011-11-14 12:48:10 -08001076 goto out;
john stultz85240702007-05-08 00:27:59 -07001077
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001078 clock = timekeeper.clock;
John Stultz592913e2010-07-13 17:56:20 -07001079
1080#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001081 offset = timekeeper.cycle_interval;
John Stultz592913e2010-07-13 17:56:20 -07001082#else
1083 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
john stultz85240702007-05-08 00:27:59 -07001084#endif
john stultz85240702007-05-08 00:27:59 -07001085
john stultza092ff02009-10-02 16:17:53 -07001086 /*
1087 * With NO_HZ we may have to accumulate many cycle_intervals
1088 * (think "ticks") worth of time at once. To do this efficiently,
1089 * we calculate the largest doubling multiple of cycle_intervals
Jim Cromie88b28ad2012-03-14 21:28:56 -06001090 * that is smaller than the offset. We then accumulate that
john stultza092ff02009-10-02 16:17:53 -07001091 * chunk in one go, and then try to consume the next smaller
1092 * doubled multiple.
john stultz85240702007-05-08 00:27:59 -07001093 */
john stultza092ff02009-10-02 16:17:53 -07001094 shift = ilog2(offset) - ilog2(timekeeper.cycle_interval);
1095 shift = max(0, shift);
Jim Cromie88b28ad2012-03-14 21:28:56 -06001096 /* Bound shift to one less than what overflows tick_length */
John Stultzea7cf492011-11-14 13:18:07 -08001097 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
john stultza092ff02009-10-02 16:17:53 -07001098 shift = min(shift, maxshift);
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001099 while (offset >= timekeeper.cycle_interval) {
john stultza092ff02009-10-02 16:17:53 -07001100 offset = logarithmic_accumulation(offset, shift);
John Stultz830ec042010-03-18 14:47:30 -07001101 if(offset < timekeeper.cycle_interval<<shift)
1102 shift--;
john stultz85240702007-05-08 00:27:59 -07001103 }
1104
1105 /* correct the clock when NTP error is too big */
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001106 timekeeping_adjust(offset);
john stultz85240702007-05-08 00:27:59 -07001107
john stultz6c9bacb2008-12-01 18:34:41 -08001108 /*
1109 * Since in the loop above, we accumulate any amount of time
1110 * in xtime_nsec over a second into xtime.tv_sec, its possible for
1111 * xtime_nsec to be fairly small after the loop. Further, if we're
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001112 * slightly speeding the clocksource up in timekeeping_adjust(),
john stultz6c9bacb2008-12-01 18:34:41 -08001113 * its possible the required corrective factor to xtime_nsec could
1114 * cause it to underflow.
1115 *
1116 * Now, we cannot simply roll the accumulated second back, since
1117 * the NTP subsystem has been notified via second_overflow. So
1118 * instead we push xtime_nsec forward by the amount we underflowed,
1119 * and add that amount into the error.
1120 *
1121 * We'll correct this error next time through this function, when
1122 * xtime_nsec is not as small.
1123 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001124 if (unlikely((s64)timekeeper.xtime_nsec < 0)) {
1125 s64 neg = -(s64)timekeeper.xtime_nsec;
1126 timekeeper.xtime_nsec = 0;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +02001127 timekeeper.ntp_error += neg << timekeeper.ntp_error_shift;
john stultz6c9bacb2008-12-01 18:34:41 -08001128 }
1129
John Stultz6a867a32010-04-06 14:30:51 -07001130 /*
John Stultz1e75fa82012-07-13 01:21:53 -04001131 * Store only full nanoseconds into xtime_nsec after rounding
1132 * it up and add the remainder to the error difference.
1133 * XXX - This is necessary to avoid small 1ns inconsistnecies caused
1134 * by truncating the remainder in vsyscalls. However, it causes
1135 * additional work to be done in timekeeping_adjust(). Once
1136 * the vsyscall implementations are converted to use xtime_nsec
1137 * (shifted nanoseconds), this can be killed.
1138 */
1139 remainder = timekeeper.xtime_nsec & ((1 << timekeeper.shift) - 1);
1140 timekeeper.xtime_nsec -= remainder;
1141 timekeeper.xtime_nsec += 1 << timekeeper.shift;
1142 timekeeper.ntp_error += remainder << timekeeper.ntp_error_shift;
john stultz85240702007-05-08 00:27:59 -07001143
John Stultz6a867a32010-04-06 14:30:51 -07001144 /*
1145 * Finally, make sure that after the rounding
John Stultz1e75fa82012-07-13 01:21:53 -04001146 * xtime_nsec isn't larger than NSEC_PER_SEC
John Stultz6a867a32010-04-06 14:30:51 -07001147 */
John Stultz1f4f9482012-07-13 01:21:54 -04001148 accumulate_nsecs_to_secs(&timekeeper);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001149
Thomas Gleixnercc062682011-11-13 23:19:49 +00001150 timekeeping_update(false);
John Stultz70471f22011-11-14 12:48:10 -08001151
1152out:
1153 write_sequnlock_irqrestore(&timekeeper.lock, flags);
1154
john stultz85240702007-05-08 00:27:59 -07001155}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001156
1157/**
1158 * getboottime - Return the real time of system boot.
1159 * @ts: pointer to the timespec to be set
1160 *
John Stultzabb3a4e2011-02-14 17:52:09 -08001161 * Returns the wall-time of boot in a timespec.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001162 *
1163 * This is based on the wall_to_monotonic offset and the total suspend
1164 * time. Calls to settimeofday will affect the value returned (which
1165 * basically means that however wrong your real time clock is at boot time,
1166 * you get the right time here).
1167 */
1168void getboottime(struct timespec *ts)
1169{
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001170 struct timespec boottime = {
John Stultzd9f72172011-11-14 11:29:32 -08001171 .tv_sec = timekeeper.wall_to_monotonic.tv_sec +
John Stultz00c5fb72011-11-14 11:23:15 -08001172 timekeeper.total_sleep_time.tv_sec,
John Stultzd9f72172011-11-14 11:29:32 -08001173 .tv_nsec = timekeeper.wall_to_monotonic.tv_nsec +
John Stultz00c5fb72011-11-14 11:23:15 -08001174 timekeeper.total_sleep_time.tv_nsec
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001175 };
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001176
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001177 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001178}
Jason Wangc93d89f2010-01-27 19:13:40 +08001179EXPORT_SYMBOL_GPL(getboottime);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001180
John Stultzabb3a4e2011-02-14 17:52:09 -08001181
1182/**
1183 * get_monotonic_boottime - Returns monotonic time since boot
1184 * @ts: pointer to the timespec to be set
1185 *
1186 * Returns the monotonic time since boot in a timespec.
1187 *
1188 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1189 * includes the time spent in suspend.
1190 */
1191void get_monotonic_boottime(struct timespec *ts)
1192{
1193 struct timespec tomono, sleep;
1194 unsigned int seq;
John Stultzabb3a4e2011-02-14 17:52:09 -08001195
1196 WARN_ON(timekeeping_suspended);
1197
1198 do {
John Stultz70471f22011-11-14 12:48:10 -08001199 seq = read_seqbegin(&timekeeper.lock);
John Stultz1e75fa82012-07-13 01:21:53 -04001200 ts->tv_sec = timekeeper.xtime_sec;
1201 ts->tv_nsec = timekeeping_get_ns();
John Stultzd9f72172011-11-14 11:29:32 -08001202 tomono = timekeeper.wall_to_monotonic;
John Stultz00c5fb72011-11-14 11:23:15 -08001203 sleep = timekeeper.total_sleep_time;
John Stultzabb3a4e2011-02-14 17:52:09 -08001204
John Stultz70471f22011-11-14 12:48:10 -08001205 } while (read_seqretry(&timekeeper.lock, seq));
John Stultzabb3a4e2011-02-14 17:52:09 -08001206
1207 set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec + sleep.tv_sec,
John Stultz1e75fa82012-07-13 01:21:53 -04001208 ts->tv_nsec + tomono.tv_nsec + sleep.tv_nsec);
John Stultzabb3a4e2011-02-14 17:52:09 -08001209}
1210EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1211
1212/**
1213 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1214 *
1215 * Returns the monotonic time since boot in a ktime
1216 *
1217 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1218 * includes the time spent in suspend.
1219 */
1220ktime_t ktime_get_boottime(void)
1221{
1222 struct timespec ts;
1223
1224 get_monotonic_boottime(&ts);
1225 return timespec_to_ktime(ts);
1226}
1227EXPORT_SYMBOL_GPL(ktime_get_boottime);
1228
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001229/**
1230 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1231 * @ts: pointer to the timespec to be converted
1232 */
1233void monotonic_to_bootbased(struct timespec *ts)
1234{
John Stultz00c5fb72011-11-14 11:23:15 -08001235 *ts = timespec_add(*ts, timekeeper.total_sleep_time);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001236}
Jason Wangc93d89f2010-01-27 19:13:40 +08001237EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
john stultz2c6b47d2007-07-24 17:47:43 -07001238
john stultz17c38b72007-07-24 18:38:34 -07001239unsigned long get_seconds(void)
1240{
John Stultz1e75fa82012-07-13 01:21:53 -04001241 return timekeeper.xtime_sec;
john stultz17c38b72007-07-24 18:38:34 -07001242}
1243EXPORT_SYMBOL(get_seconds);
1244
john stultzda15cfd2009-08-19 19:13:34 -07001245struct timespec __current_kernel_time(void)
1246{
John Stultz1e75fa82012-07-13 01:21:53 -04001247 return tk_xtime(&timekeeper);
john stultzda15cfd2009-08-19 19:13:34 -07001248}
john stultz17c38b72007-07-24 18:38:34 -07001249
john stultz2c6b47d2007-07-24 17:47:43 -07001250struct timespec current_kernel_time(void)
1251{
1252 struct timespec now;
1253 unsigned long seq;
1254
1255 do {
John Stultz70471f22011-11-14 12:48:10 -08001256 seq = read_seqbegin(&timekeeper.lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001257
John Stultz1e75fa82012-07-13 01:21:53 -04001258 now = tk_xtime(&timekeeper);
John Stultz70471f22011-11-14 12:48:10 -08001259 } while (read_seqretry(&timekeeper.lock, seq));
john stultz2c6b47d2007-07-24 17:47:43 -07001260
1261 return now;
1262}
john stultz2c6b47d2007-07-24 17:47:43 -07001263EXPORT_SYMBOL(current_kernel_time);
john stultzda15cfd2009-08-19 19:13:34 -07001264
1265struct timespec get_monotonic_coarse(void)
1266{
1267 struct timespec now, mono;
1268 unsigned long seq;
1269
1270 do {
John Stultz70471f22011-11-14 12:48:10 -08001271 seq = read_seqbegin(&timekeeper.lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001272
John Stultz1e75fa82012-07-13 01:21:53 -04001273 now = tk_xtime(&timekeeper);
John Stultzd9f72172011-11-14 11:29:32 -08001274 mono = timekeeper.wall_to_monotonic;
John Stultz70471f22011-11-14 12:48:10 -08001275 } while (read_seqretry(&timekeeper.lock, seq));
john stultzda15cfd2009-08-19 19:13:34 -07001276
1277 set_normalized_timespec(&now, now.tv_sec + mono.tv_sec,
1278 now.tv_nsec + mono.tv_nsec);
1279 return now;
1280}
Torben Hohn871cf1e2011-01-27 15:58:55 +01001281
1282/*
1283 * The 64-bit jiffies value is not atomic - you MUST NOT read it
1284 * without sampling the sequence number in xtime_lock.
1285 * jiffies is defined in the linker script...
1286 */
1287void do_timer(unsigned long ticks)
1288{
1289 jiffies_64 += ticks;
1290 update_wall_time();
1291 calc_global_load(ticks);
1292}
Torben Hohn48cf76f72011-01-27 15:59:05 +01001293
1294/**
John Stultz314ac372011-02-14 18:43:08 -08001295 * get_xtime_and_monotonic_and_sleep_offset() - get xtime, wall_to_monotonic,
1296 * and sleep offsets.
Torben Hohn48cf76f72011-01-27 15:59:05 +01001297 * @xtim: pointer to timespec to be set with xtime
1298 * @wtom: pointer to timespec to be set with wall_to_monotonic
John Stultz314ac372011-02-14 18:43:08 -08001299 * @sleep: pointer to timespec to be set with time in suspend
Torben Hohn48cf76f72011-01-27 15:59:05 +01001300 */
John Stultz314ac372011-02-14 18:43:08 -08001301void get_xtime_and_monotonic_and_sleep_offset(struct timespec *xtim,
1302 struct timespec *wtom, struct timespec *sleep)
Torben Hohn48cf76f72011-01-27 15:59:05 +01001303{
1304 unsigned long seq;
1305
1306 do {
John Stultz70471f22011-11-14 12:48:10 -08001307 seq = read_seqbegin(&timekeeper.lock);
John Stultz1e75fa82012-07-13 01:21:53 -04001308 *xtim = tk_xtime(&timekeeper);
John Stultzd9f72172011-11-14 11:29:32 -08001309 *wtom = timekeeper.wall_to_monotonic;
John Stultz00c5fb72011-11-14 11:23:15 -08001310 *sleep = timekeeper.total_sleep_time;
John Stultz70471f22011-11-14 12:48:10 -08001311 } while (read_seqretry(&timekeeper.lock, seq));
Torben Hohn48cf76f72011-01-27 15:59:05 +01001312}
Torben Hohnf0af911a92011-01-27 15:59:10 +01001313
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001314#ifdef CONFIG_HIGH_RES_TIMERS
1315/**
1316 * ktime_get_update_offsets - hrtimer helper
1317 * @offs_real: pointer to storage for monotonic -> realtime offset
1318 * @offs_boot: pointer to storage for monotonic -> boottime offset
1319 *
1320 * Returns current monotonic time and updates the offsets
1321 * Called from hrtimer_interupt() or retrigger_next_event()
1322 */
1323ktime_t ktime_get_update_offsets(ktime_t *offs_real, ktime_t *offs_boot)
1324{
1325 ktime_t now;
1326 unsigned int seq;
1327 u64 secs, nsecs;
1328
1329 do {
1330 seq = read_seqbegin(&timekeeper.lock);
1331
John Stultz1e75fa82012-07-13 01:21:53 -04001332 secs = timekeeper.xtime_sec;
1333 nsecs = timekeeping_get_ns();
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001334
1335 *offs_real = timekeeper.offs_real;
1336 *offs_boot = timekeeper.offs_boot;
1337 } while (read_seqretry(&timekeeper.lock, seq));
1338
1339 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1340 now = ktime_sub(now, *offs_real);
1341 return now;
1342}
1343#endif
1344
Torben Hohnf0af911a92011-01-27 15:59:10 +01001345/**
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001346 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1347 */
1348ktime_t ktime_get_monotonic_offset(void)
1349{
1350 unsigned long seq;
1351 struct timespec wtom;
1352
1353 do {
John Stultz70471f22011-11-14 12:48:10 -08001354 seq = read_seqbegin(&timekeeper.lock);
John Stultzd9f72172011-11-14 11:29:32 -08001355 wtom = timekeeper.wall_to_monotonic;
John Stultz70471f22011-11-14 12:48:10 -08001356 } while (read_seqretry(&timekeeper.lock, seq));
1357
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001358 return timespec_to_ktime(wtom);
1359}
John Stultza80b83b2012-02-03 00:19:07 -08001360EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1361
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001362
1363/**
Torben Hohnf0af911a92011-01-27 15:59:10 +01001364 * xtime_update() - advances the timekeeping infrastructure
1365 * @ticks: number of ticks, that have elapsed since the last call.
1366 *
1367 * Must be called with interrupts disabled.
1368 */
1369void xtime_update(unsigned long ticks)
1370{
1371 write_seqlock(&xtime_lock);
1372 do_timer(ticks);
1373 write_sequnlock(&xtime_lock);
1374}