blob: cb4a433bab976dbf205e3209566ddd67da914019 [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;
194 return nsec >> timekeeper.shift;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200195}
196
197static inline s64 timekeeping_get_ns_raw(void)
198{
199 cycle_t cycle_now, cycle_delta;
200 struct clocksource *clock;
201
202 /* read clocksource: */
203 clock = timekeeper.clock;
204 cycle_now = clock->read(clock);
205
206 /* calculate the delta since the last update_wall_time: */
207 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
208
Dan McGeec9fad422011-10-17 13:58:43 -0500209 /* return delta convert to nanoseconds. */
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200210 return clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
211}
212
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400213static void update_rt_offset(void)
214{
215 struct timespec tmp, *wtm = &timekeeper.wall_to_monotonic;
216
217 set_normalized_timespec(&tmp, -wtm->tv_sec, -wtm->tv_nsec);
218 timekeeper.offs_real = timespec_to_ktime(tmp);
219}
220
Thomas Gleixnercc062682011-11-13 23:19:49 +0000221/* must hold write on timekeeper.lock */
222static void timekeeping_update(bool clearntp)
223{
John Stultz1e75fa82012-07-13 01:21:53 -0400224 struct timespec xt;
225
Thomas Gleixnercc062682011-11-13 23:19:49 +0000226 if (clearntp) {
227 timekeeper.ntp_error = 0;
228 ntp_clear();
229 }
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400230 update_rt_offset();
John Stultz1e75fa82012-07-13 01:21:53 -0400231 xt = tk_xtime(&timekeeper);
232 update_vsyscall(&xt, &timekeeper.wall_to_monotonic,
Thomas Gleixnercc062682011-11-13 23:19:49 +0000233 timekeeper.clock, timekeeper.mult);
234}
235
236
john stultz85240702007-05-08 00:27:59 -0700237/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200238 * timekeeping_forward_now - update clock to the current time
john stultz85240702007-05-08 00:27:59 -0700239 *
Roman Zippel9a055112008-08-20 16:37:28 -0700240 * Forward the current clock to update its state since the last call to
241 * update_wall_time(). This is useful before significant clock changes,
242 * as it avoids having to deal with this time offset explicitly.
john stultz85240702007-05-08 00:27:59 -0700243 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200244static void timekeeping_forward_now(void)
john stultz85240702007-05-08 00:27:59 -0700245{
246 cycle_t cycle_now, cycle_delta;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200247 struct clocksource *clock;
Roman Zippel9a055112008-08-20 16:37:28 -0700248 s64 nsec;
john stultz85240702007-05-08 00:27:59 -0700249
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200250 clock = timekeeper.clock;
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200251 cycle_now = clock->read(clock);
john stultz85240702007-05-08 00:27:59 -0700252 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
Roman Zippel9a055112008-08-20 16:37:28 -0700253 clock->cycle_last = cycle_now;
john stultz85240702007-05-08 00:27:59 -0700254
John Stultz1e75fa82012-07-13 01:21:53 -0400255 timekeeper.xtime_nsec += cycle_delta * timekeeper.mult;
john stultz7d275582009-05-01 13:10:26 -0700256
257 /* If arch requires, add in gettimeoffset() */
John Stultz1e75fa82012-07-13 01:21:53 -0400258 timekeeper.xtime_nsec += arch_gettimeoffset() << timekeeper.shift;
john stultz7d275582009-05-01 13:10:26 -0700259
John Stultz1e75fa82012-07-13 01:21:53 -0400260 tk_normalize_xtime(&timekeeper);
John Stultz2d422442008-08-20 16:37:30 -0700261
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200262 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
John Stultz01f71b42011-11-14 11:43:49 -0800263 timespec_add_ns(&timekeeper.raw_time, nsec);
john stultz85240702007-05-08 00:27:59 -0700264}
265
266/**
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100267 * getnstimeofday - Returns the time of day in a timespec
john stultz85240702007-05-08 00:27:59 -0700268 * @ts: pointer to the timespec to be set
269 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100270 * Returns the time of day in a timespec.
john stultz85240702007-05-08 00:27:59 -0700271 */
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100272void getnstimeofday(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700273{
274 unsigned long seq;
John Stultz1e75fa82012-07-13 01:21:53 -0400275 s64 nsecs = 0;
john stultz85240702007-05-08 00:27:59 -0700276
Thomas Gleixner1c5745a2008-12-22 23:05:28 +0100277 WARN_ON(timekeeping_suspended);
278
john stultz85240702007-05-08 00:27:59 -0700279 do {
John Stultz70471f22011-11-14 12:48:10 -0800280 seq = read_seqbegin(&timekeeper.lock);
john stultz85240702007-05-08 00:27:59 -0700281
John Stultz1e75fa82012-07-13 01:21:53 -0400282 ts->tv_sec = timekeeper.xtime_sec;
283 ts->tv_nsec = timekeeping_get_ns();
john stultz85240702007-05-08 00:27:59 -0700284
john stultz7d275582009-05-01 13:10:26 -0700285 /* If arch requires, add in gettimeoffset() */
286 nsecs += arch_gettimeoffset();
287
John Stultz70471f22011-11-14 12:48:10 -0800288 } while (read_seqretry(&timekeeper.lock, seq));
john stultz85240702007-05-08 00:27:59 -0700289
290 timespec_add_ns(ts, nsecs);
291}
john stultz85240702007-05-08 00:27:59 -0700292EXPORT_SYMBOL(getnstimeofday);
293
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200294ktime_t ktime_get(void)
295{
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200296 unsigned int seq;
297 s64 secs, nsecs;
298
299 WARN_ON(timekeeping_suspended);
300
301 do {
John Stultz70471f22011-11-14 12:48:10 -0800302 seq = read_seqbegin(&timekeeper.lock);
John Stultz1e75fa82012-07-13 01:21:53 -0400303 secs = timekeeper.xtime_sec +
John Stultz8ff2cb92011-11-14 11:40:54 -0800304 timekeeper.wall_to_monotonic.tv_sec;
John Stultz1e75fa82012-07-13 01:21:53 -0400305 nsecs = timekeeping_get_ns() +
John Stultz8ff2cb92011-11-14 11:40:54 -0800306 timekeeper.wall_to_monotonic.tv_nsec;
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 * Use ktime_set/ktime_add_ns to create a proper ktime on
313 * 32-bit architectures without CONFIG_KTIME_SCALAR.
314 */
315 return ktime_add_ns(ktime_set(secs, 0), nsecs);
316}
317EXPORT_SYMBOL_GPL(ktime_get);
318
319/**
320 * ktime_get_ts - get the monotonic clock in timespec format
321 * @ts: pointer to timespec variable
322 *
323 * The function calculates the monotonic clock from the realtime
324 * clock and the wall_to_monotonic offset and stores the result
325 * in normalized timespec format in the variable pointed to by @ts.
326 */
327void ktime_get_ts(struct timespec *ts)
328{
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200329 struct timespec tomono;
330 unsigned int seq;
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200331
332 WARN_ON(timekeeping_suspended);
333
334 do {
John Stultz70471f22011-11-14 12:48:10 -0800335 seq = read_seqbegin(&timekeeper.lock);
John Stultz1e75fa82012-07-13 01:21:53 -0400336 ts->tv_sec = timekeeper.xtime_sec;
337 ts->tv_nsec = timekeeping_get_ns();
John Stultzd9f72172011-11-14 11:29:32 -0800338 tomono = timekeeper.wall_to_monotonic;
Hector Palaciosd004e022011-11-14 11:15:25 +0100339 /* If arch requires, add in gettimeoffset() */
John Stultz1e75fa82012-07-13 01:21:53 -0400340 ts->tv_nsec += arch_gettimeoffset();
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 {
368 u32 arch_offset;
369
John Stultz70471f22011-11-14 12:48:10 -0800370 seq = read_seqbegin(&timekeeper.lock);
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800371
John Stultz01f71b42011-11-14 11:43:49 -0800372 *ts_raw = timekeeper.raw_time;
John Stultz1e75fa82012-07-13 01:21:53 -0400373 ts_real->tv_sec = timekeeper.xtime_sec;
374 ts_real->tv_nsec = 0;
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800375
376 nsecs_raw = timekeeping_get_ns_raw();
377 nsecs_real = timekeeping_get_ns();
378
379 /* If arch requires, add in gettimeoffset() */
380 arch_offset = arch_gettimeoffset();
381 nsecs_raw += arch_offset;
382 nsecs_real += arch_offset;
383
John Stultz70471f22011-11-14 12:48:10 -0800384 } while (read_seqretry(&timekeeper.lock, seq));
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800385
386 timespec_add_ns(ts_raw, nsecs_raw);
387 timespec_add_ns(ts_real, nsecs_real);
388}
389EXPORT_SYMBOL(getnstime_raw_and_real);
390
391#endif /* CONFIG_NTP_PPS */
392
john stultz85240702007-05-08 00:27:59 -0700393/**
394 * do_gettimeofday - Returns the time of day in a timeval
395 * @tv: pointer to the timeval to be set
396 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100397 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -0700398 */
399void do_gettimeofday(struct timeval *tv)
400{
401 struct timespec now;
402
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100403 getnstimeofday(&now);
john stultz85240702007-05-08 00:27:59 -0700404 tv->tv_sec = now.tv_sec;
405 tv->tv_usec = now.tv_nsec/1000;
406}
john stultz85240702007-05-08 00:27:59 -0700407EXPORT_SYMBOL(do_gettimeofday);
Richard Cochrand239f492012-04-27 10:12:42 +0200408
john stultz85240702007-05-08 00:27:59 -0700409/**
410 * do_settimeofday - Sets the time of day
411 * @tv: pointer to the timespec variable containing the new time
412 *
413 * Sets the time of day to the new time and update NTP and notify hrtimers
414 */
Richard Cochran1e6d7672011-02-01 13:50:58 +0000415int do_settimeofday(const struct timespec *tv)
john stultz85240702007-05-08 00:27:59 -0700416{
John Stultz1e75fa82012-07-13 01:21:53 -0400417 struct timespec ts_delta, xt;
John Stultz92c1d3e2011-11-14 14:05:44 -0800418 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700419
420 if ((unsigned long)tv->tv_nsec >= NSEC_PER_SEC)
421 return -EINVAL;
422
John Stultz92c1d3e2011-11-14 14:05:44 -0800423 write_seqlock_irqsave(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700424
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200425 timekeeping_forward_now();
john stultz85240702007-05-08 00:27:59 -0700426
John Stultz1e75fa82012-07-13 01:21:53 -0400427 xt = tk_xtime(&timekeeper);
428 ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
429 ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
430
John Stultzd9f72172011-11-14 11:29:32 -0800431 timekeeper.wall_to_monotonic =
432 timespec_sub(timekeeper.wall_to_monotonic, ts_delta);
john stultz85240702007-05-08 00:27:59 -0700433
John Stultz1e75fa82012-07-13 01:21:53 -0400434 tk_set_xtime(&timekeeper, tv);
435
Thomas Gleixnercc062682011-11-13 23:19:49 +0000436 timekeeping_update(true);
john stultz85240702007-05-08 00:27:59 -0700437
John Stultz92c1d3e2011-11-14 14:05:44 -0800438 write_sequnlock_irqrestore(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700439
440 /* signal hrtimers about time change */
441 clock_was_set();
442
443 return 0;
444}
john stultz85240702007-05-08 00:27:59 -0700445EXPORT_SYMBOL(do_settimeofday);
446
John Stultzc528f7c2011-02-01 13:52:17 +0000447
448/**
449 * timekeeping_inject_offset - Adds or subtracts from the current time.
450 * @tv: pointer to the timespec variable containing the offset
451 *
452 * Adds or subtracts an offset value from the current time.
453 */
454int timekeeping_inject_offset(struct timespec *ts)
455{
John Stultz92c1d3e2011-11-14 14:05:44 -0800456 unsigned long flags;
John Stultzc528f7c2011-02-01 13:52:17 +0000457
458 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
459 return -EINVAL;
460
John Stultz92c1d3e2011-11-14 14:05:44 -0800461 write_seqlock_irqsave(&timekeeper.lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000462
463 timekeeping_forward_now();
464
John Stultz1e75fa82012-07-13 01:21:53 -0400465
466 tk_xtime_add(&timekeeper, ts);
John Stultzd9f72172011-11-14 11:29:32 -0800467 timekeeper.wall_to_monotonic =
468 timespec_sub(timekeeper.wall_to_monotonic, *ts);
John Stultzc528f7c2011-02-01 13:52:17 +0000469
Thomas Gleixnercc062682011-11-13 23:19:49 +0000470 timekeeping_update(true);
John Stultzc528f7c2011-02-01 13:52:17 +0000471
John Stultz92c1d3e2011-11-14 14:05:44 -0800472 write_sequnlock_irqrestore(&timekeeper.lock, flags);
John Stultzc528f7c2011-02-01 13:52:17 +0000473
474 /* signal hrtimers about time change */
475 clock_was_set();
476
477 return 0;
478}
479EXPORT_SYMBOL(timekeeping_inject_offset);
480
john stultz85240702007-05-08 00:27:59 -0700481/**
482 * change_clocksource - Swaps clocksources if a new one is available
483 *
484 * Accumulates current time interval and initializes new clocksource
485 */
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200486static int change_clocksource(void *data)
john stultz85240702007-05-08 00:27:59 -0700487{
Magnus Damm4614e6a2009-04-21 12:24:02 -0700488 struct clocksource *new, *old;
John Stultzf695cf92012-03-14 16:38:15 -0700489 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700490
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200491 new = (struct clocksource *) data;
john stultz85240702007-05-08 00:27:59 -0700492
John Stultzf695cf92012-03-14 16:38:15 -0700493 write_seqlock_irqsave(&timekeeper.lock, flags);
494
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200495 timekeeping_forward_now();
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200496 if (!new->enable || new->enable(new) == 0) {
497 old = timekeeper.clock;
498 timekeeper_setup_internals(new);
499 if (old->disable)
500 old->disable(old);
501 }
John Stultzf695cf92012-03-14 16:38:15 -0700502 timekeeping_update(true);
503
504 write_sequnlock_irqrestore(&timekeeper.lock, flags);
505
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200506 return 0;
507}
john stultz85240702007-05-08 00:27:59 -0700508
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200509/**
510 * timekeeping_notify - Install a new clock source
511 * @clock: pointer to the clock source
512 *
513 * This function is called from clocksource.c after a new, better clock
514 * source has been registered. The caller holds the clocksource_mutex.
515 */
516void timekeeping_notify(struct clocksource *clock)
517{
518 if (timekeeper.clock == clock)
Magnus Damm4614e6a2009-04-21 12:24:02 -0700519 return;
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200520 stop_machine(change_clocksource, clock, NULL);
john stultz85240702007-05-08 00:27:59 -0700521 tick_clock_notify();
john stultz85240702007-05-08 00:27:59 -0700522}
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200523
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200524/**
525 * ktime_get_real - get the real (wall-) time in ktime_t format
526 *
527 * returns the time in ktime_t format
528 */
529ktime_t ktime_get_real(void)
530{
531 struct timespec now;
532
533 getnstimeofday(&now);
534
535 return timespec_to_ktime(now);
536}
537EXPORT_SYMBOL_GPL(ktime_get_real);
john stultz85240702007-05-08 00:27:59 -0700538
539/**
John Stultz2d422442008-08-20 16:37:30 -0700540 * getrawmonotonic - Returns the raw monotonic time in a timespec
541 * @ts: pointer to the timespec to be set
542 *
543 * Returns the raw monotonic time (completely un-modified by ntp)
544 */
545void getrawmonotonic(struct timespec *ts)
546{
547 unsigned long seq;
548 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -0700549
550 do {
John Stultz70471f22011-11-14 12:48:10 -0800551 seq = read_seqbegin(&timekeeper.lock);
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200552 nsecs = timekeeping_get_ns_raw();
John Stultz01f71b42011-11-14 11:43:49 -0800553 *ts = timekeeper.raw_time;
John Stultz2d422442008-08-20 16:37:30 -0700554
John Stultz70471f22011-11-14 12:48:10 -0800555 } while (read_seqretry(&timekeeper.lock, seq));
John Stultz2d422442008-08-20 16:37:30 -0700556
557 timespec_add_ns(ts, nsecs);
558}
559EXPORT_SYMBOL(getrawmonotonic);
560
561
562/**
Li Zefancf4fc6c2008-02-08 04:19:24 -0800563 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -0700564 */
Li Zefancf4fc6c2008-02-08 04:19:24 -0800565int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -0700566{
567 unsigned long seq;
568 int ret;
569
570 do {
John Stultz70471f22011-11-14 12:48:10 -0800571 seq = read_seqbegin(&timekeeper.lock);
john stultz85240702007-05-08 00:27:59 -0700572
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200573 ret = timekeeper.clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -0700574
John Stultz70471f22011-11-14 12:48:10 -0800575 } while (read_seqretry(&timekeeper.lock, seq));
john stultz85240702007-05-08 00:27:59 -0700576
577 return ret;
578}
579
580/**
Jon Hunter98962462009-08-18 12:45:10 -0500581 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
Jon Hunter98962462009-08-18 12:45:10 -0500582 */
583u64 timekeeping_max_deferment(void)
584{
John Stultz70471f22011-11-14 12:48:10 -0800585 unsigned long seq;
586 u64 ret;
John Stultz42e71e82012-07-13 01:21:51 -0400587
John Stultz70471f22011-11-14 12:48:10 -0800588 do {
589 seq = read_seqbegin(&timekeeper.lock);
590
591 ret = timekeeper.clock->max_idle_ns;
592
593 } while (read_seqretry(&timekeeper.lock, seq));
594
595 return ret;
Jon Hunter98962462009-08-18 12:45:10 -0500596}
597
598/**
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200599 * read_persistent_clock - Return time from the persistent clock.
john stultz85240702007-05-08 00:27:59 -0700600 *
601 * Weak dummy function for arches that do not yet support it.
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200602 * Reads the time from the battery backed persistent clock.
603 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
john stultz85240702007-05-08 00:27:59 -0700604 *
605 * XXX - Do be sure to remove it once all arches implement it.
606 */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200607void __attribute__((weak)) read_persistent_clock(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700608{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200609 ts->tv_sec = 0;
610 ts->tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700611}
612
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200613/**
614 * read_boot_clock - Return time of the system start.
615 *
616 * Weak dummy function for arches that do not yet support it.
617 * Function to read the exact time the system has been started.
618 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
619 *
620 * XXX - Do be sure to remove it once all arches implement it.
621 */
622void __attribute__((weak)) read_boot_clock(struct timespec *ts)
623{
624 ts->tv_sec = 0;
625 ts->tv_nsec = 0;
626}
627
john stultz85240702007-05-08 00:27:59 -0700628/*
629 * timekeeping_init - Initializes the clocksource and common timekeeping values
630 */
631void __init timekeeping_init(void)
632{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200633 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700634 unsigned long flags;
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200635 struct timespec now, boot;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200636
637 read_persistent_clock(&now);
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200638 read_boot_clock(&boot);
john stultz85240702007-05-08 00:27:59 -0700639
John Stultz70471f22011-11-14 12:48:10 -0800640 seqlock_init(&timekeeper.lock);
641
Roman Zippel7dffa3c2008-05-01 04:34:41 -0700642 ntp_init();
john stultz85240702007-05-08 00:27:59 -0700643
John Stultz70471f22011-11-14 12:48:10 -0800644 write_seqlock_irqsave(&timekeeper.lock, flags);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200645 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200646 if (clock->enable)
647 clock->enable(clock);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200648 timekeeper_setup_internals(clock);
john stultz85240702007-05-08 00:27:59 -0700649
John Stultz1e75fa82012-07-13 01:21:53 -0400650 tk_set_xtime(&timekeeper, &now);
John Stultz01f71b42011-11-14 11:43:49 -0800651 timekeeper.raw_time.tv_sec = 0;
652 timekeeper.raw_time.tv_nsec = 0;
John Stultz1e75fa82012-07-13 01:21:53 -0400653 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
654 boot = tk_xtime(&timekeeper);
655
John Stultzd9f72172011-11-14 11:29:32 -0800656 set_normalized_timespec(&timekeeper.wall_to_monotonic,
Martin Schwidefsky23970e32009-08-14 15:47:32 +0200657 -boot.tv_sec, -boot.tv_nsec);
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400658 update_rt_offset();
John Stultz00c5fb72011-11-14 11:23:15 -0800659 timekeeper.total_sleep_time.tv_sec = 0;
660 timekeeper.total_sleep_time.tv_nsec = 0;
John Stultz70471f22011-11-14 12:48:10 -0800661 write_sequnlock_irqrestore(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700662}
663
john stultz85240702007-05-08 00:27:59 -0700664/* time in seconds when suspend began */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200665static struct timespec timekeeping_suspend_time;
john stultz85240702007-05-08 00:27:59 -0700666
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400667static void update_sleep_time(struct timespec t)
668{
669 timekeeper.total_sleep_time = t;
670 timekeeper.offs_boot = timespec_to_ktime(t);
671}
672
john stultz85240702007-05-08 00:27:59 -0700673/**
John Stultz304529b2011-04-01 14:32:09 -0700674 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
675 * @delta: pointer to a timespec delta value
676 *
677 * Takes a timespec offset measuring a suspend interval and properly
678 * adds the sleep offset to the timekeeping variables.
679 */
680static void __timekeeping_inject_sleeptime(struct timespec *delta)
681{
John Stultzcb5de2f2011-06-01 18:18:09 -0700682 if (!timespec_valid(delta)) {
John Stultzcbaa5152011-07-20 15:42:55 -0700683 printk(KERN_WARNING "__timekeeping_inject_sleeptime: Invalid "
John Stultzcb5de2f2011-06-01 18:18:09 -0700684 "sleep delta value!\n");
685 return;
686 }
687
John Stultz1e75fa82012-07-13 01:21:53 -0400688 tk_xtime_add(&timekeeper, delta);
John Stultzd9f72172011-11-14 11:29:32 -0800689 timekeeper.wall_to_monotonic =
690 timespec_sub(timekeeper.wall_to_monotonic, *delta);
Thomas Gleixner5b9fe752012-07-10 18:43:21 -0400691 update_sleep_time(timespec_add(timekeeper.total_sleep_time, *delta));
John Stultz304529b2011-04-01 14:32:09 -0700692}
693
694
695/**
696 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
697 * @delta: pointer to a timespec delta value
698 *
699 * This hook is for architectures that cannot support read_persistent_clock
700 * because their RTC/persistent clock is only accessible when irqs are enabled.
701 *
702 * This function should only be called by rtc_resume(), and allows
703 * a suspend offset to be injected into the timekeeping values.
704 */
705void timekeeping_inject_sleeptime(struct timespec *delta)
706{
John Stultz92c1d3e2011-11-14 14:05:44 -0800707 unsigned long flags;
John Stultz304529b2011-04-01 14:32:09 -0700708 struct timespec ts;
709
710 /* Make sure we don't set the clock twice */
711 read_persistent_clock(&ts);
712 if (!(ts.tv_sec == 0 && ts.tv_nsec == 0))
713 return;
714
John Stultz92c1d3e2011-11-14 14:05:44 -0800715 write_seqlock_irqsave(&timekeeper.lock, flags);
John Stultz70471f22011-11-14 12:48:10 -0800716
John Stultz304529b2011-04-01 14:32:09 -0700717 timekeeping_forward_now();
718
719 __timekeeping_inject_sleeptime(delta);
720
Thomas Gleixnercc062682011-11-13 23:19:49 +0000721 timekeeping_update(true);
John Stultz304529b2011-04-01 14:32:09 -0700722
John Stultz92c1d3e2011-11-14 14:05:44 -0800723 write_sequnlock_irqrestore(&timekeeper.lock, flags);
John Stultz304529b2011-04-01 14:32:09 -0700724
725 /* signal hrtimers about time change */
726 clock_was_set();
727}
728
729
730/**
john stultz85240702007-05-08 00:27:59 -0700731 * timekeeping_resume - Resumes the generic timekeeping subsystem.
john stultz85240702007-05-08 00:27:59 -0700732 *
733 * This is for the generic clocksource timekeeping.
734 * xtime/wall_to_monotonic/jiffies/etc are
735 * still managed by arch specific suspend/resume code.
736 */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100737static void timekeeping_resume(void)
john stultz85240702007-05-08 00:27:59 -0700738{
John Stultz92c1d3e2011-11-14 14:05:44 -0800739 unsigned long flags;
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200740 struct timespec ts;
741
742 read_persistent_clock(&ts);
john stultz85240702007-05-08 00:27:59 -0700743
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +0200744 clocksource_resume();
745
John Stultz92c1d3e2011-11-14 14:05:44 -0800746 write_seqlock_irqsave(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700747
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200748 if (timespec_compare(&ts, &timekeeping_suspend_time) > 0) {
749 ts = timespec_sub(ts, timekeeping_suspend_time);
John Stultz304529b2011-04-01 14:32:09 -0700750 __timekeeping_inject_sleeptime(&ts);
john stultz85240702007-05-08 00:27:59 -0700751 }
752 /* re-base the last cycle value */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200753 timekeeper.clock->cycle_last = timekeeper.clock->read(timekeeper.clock);
754 timekeeper.ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -0700755 timekeeping_suspended = 0;
John Stultz92c1d3e2011-11-14 14:05:44 -0800756 write_sequnlock_irqrestore(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700757
758 touch_softlockup_watchdog();
759
760 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
761
762 /* Resume hrtimers */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200763 hrtimers_resume();
john stultz85240702007-05-08 00:27:59 -0700764}
765
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100766static int timekeeping_suspend(void)
john stultz85240702007-05-08 00:27:59 -0700767{
John Stultz92c1d3e2011-11-14 14:05:44 -0800768 unsigned long flags;
John Stultzcb332172011-05-31 22:53:23 -0700769 struct timespec delta, delta_delta;
770 static struct timespec old_delta;
john stultz85240702007-05-08 00:27:59 -0700771
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200772 read_persistent_clock(&timekeeping_suspend_time);
Thomas Gleixner3be90952007-09-16 15:36:43 +0200773
John Stultz92c1d3e2011-11-14 14:05:44 -0800774 write_seqlock_irqsave(&timekeeper.lock, flags);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200775 timekeeping_forward_now();
john stultz85240702007-05-08 00:27:59 -0700776 timekeeping_suspended = 1;
John Stultzcb332172011-05-31 22:53:23 -0700777
778 /*
779 * To avoid drift caused by repeated suspend/resumes,
780 * which each can add ~1 second drift error,
781 * try to compensate so the difference in system time
782 * and persistent_clock time stays close to constant.
783 */
John Stultz1e75fa82012-07-13 01:21:53 -0400784 delta = timespec_sub(tk_xtime(&timekeeper), timekeeping_suspend_time);
John Stultzcb332172011-05-31 22:53:23 -0700785 delta_delta = timespec_sub(delta, old_delta);
786 if (abs(delta_delta.tv_sec) >= 2) {
787 /*
788 * if delta_delta is too large, assume time correction
789 * has occured and set old_delta to the current delta.
790 */
791 old_delta = delta;
792 } else {
793 /* Otherwise try to adjust old_system to compensate */
794 timekeeping_suspend_time =
795 timespec_add(timekeeping_suspend_time, delta_delta);
796 }
John Stultz92c1d3e2011-11-14 14:05:44 -0800797 write_sequnlock_irqrestore(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -0700798
799 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
Magnus Dammc54a42b2010-02-02 14:41:41 -0800800 clocksource_suspend();
john stultz85240702007-05-08 00:27:59 -0700801
802 return 0;
803}
804
805/* sysfs resume/suspend bits for timekeeping */
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100806static struct syscore_ops timekeeping_syscore_ops = {
john stultz85240702007-05-08 00:27:59 -0700807 .resume = timekeeping_resume,
808 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -0700809};
810
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100811static int __init timekeeping_init_ops(void)
john stultz85240702007-05-08 00:27:59 -0700812{
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100813 register_syscore_ops(&timekeeping_syscore_ops);
814 return 0;
john stultz85240702007-05-08 00:27:59 -0700815}
816
Rafael J. Wysockie1a85b22011-03-23 22:16:04 +0100817device_initcall(timekeeping_init_ops);
john stultz85240702007-05-08 00:27:59 -0700818
819/*
820 * If the error is already larger, we look ahead even further
821 * to compensate for late or lost adjustments.
822 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200823static __always_inline int timekeeping_bigadjust(s64 error, s64 *interval,
john stultz85240702007-05-08 00:27:59 -0700824 s64 *offset)
825{
826 s64 tick_error, i;
827 u32 look_ahead, adj;
828 s32 error2, mult;
829
830 /*
831 * Use the current error value to determine how much to look ahead.
832 * The larger the error the slower we adjust for it to avoid problems
833 * with losing too many ticks, otherwise we would overadjust and
834 * produce an even larger error. The smaller the adjustment the
835 * faster we try to adjust for it, as lost ticks can do less harm
Li Zefan3eb05672008-02-08 04:19:25 -0800836 * here. This is tuned so that an error of about 1 msec is adjusted
john stultz85240702007-05-08 00:27:59 -0700837 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
838 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200839 error2 = timekeeper.ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
john stultz85240702007-05-08 00:27:59 -0700840 error2 = abs(error2);
841 for (look_ahead = 0; error2 > 0; look_ahead++)
842 error2 >>= 2;
843
844 /*
845 * Now calculate the error in (1 << look_ahead) ticks, but first
846 * remove the single look ahead already included in the error.
847 */
John Stultzea7cf492011-11-14 13:18:07 -0800848 tick_error = ntp_tick_length() >> (timekeeper.ntp_error_shift + 1);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200849 tick_error -= timekeeper.xtime_interval >> 1;
john stultz85240702007-05-08 00:27:59 -0700850 error = ((error - tick_error) >> look_ahead) + tick_error;
851
852 /* Finally calculate the adjustment shift value. */
853 i = *interval;
854 mult = 1;
855 if (error < 0) {
856 error = -error;
857 *interval = -*interval;
858 *offset = -*offset;
859 mult = -1;
860 }
861 for (adj = 0; error > i; adj++)
862 error >>= 1;
863
864 *interval <<= adj;
865 *offset <<= adj;
866 return mult << adj;
867}
868
869/*
870 * Adjust the multiplier to reduce the error value,
871 * this is optimized for the most common adjustments of -1,0,1,
872 * for other values we can do a bit more work.
873 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200874static void timekeeping_adjust(s64 offset)
john stultz85240702007-05-08 00:27:59 -0700875{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200876 s64 error, interval = timekeeper.cycle_interval;
john stultz85240702007-05-08 00:27:59 -0700877 int adj;
878
John Stultzc2bc1112011-10-27 18:12:42 -0700879 /*
Jim Cromie88b28ad2012-03-14 21:28:56 -0600880 * The point of this is to check if the error is greater than half
John Stultzc2bc1112011-10-27 18:12:42 -0700881 * an interval.
882 *
883 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
884 *
885 * Note we subtract one in the shift, so that error is really error*2.
John Stultz3f86f282011-10-27 17:41:17 -0700886 * This "saves" dividing(shifting) interval twice, but keeps the
887 * (error > interval) comparison as still measuring if error is
Jim Cromie88b28ad2012-03-14 21:28:56 -0600888 * larger than half an interval.
John Stultzc2bc1112011-10-27 18:12:42 -0700889 *
John Stultz3f86f282011-10-27 17:41:17 -0700890 * Note: It does not "save" on aggravation when reading the code.
John Stultzc2bc1112011-10-27 18:12:42 -0700891 */
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200892 error = timekeeper.ntp_error >> (timekeeper.ntp_error_shift - 1);
john stultz85240702007-05-08 00:27:59 -0700893 if (error > interval) {
John Stultzc2bc1112011-10-27 18:12:42 -0700894 /*
895 * We now divide error by 4(via shift), which checks if
Jim Cromie88b28ad2012-03-14 21:28:56 -0600896 * the error is greater than twice the interval.
John Stultzc2bc1112011-10-27 18:12:42 -0700897 * If it is greater, we need a bigadjust, if its smaller,
898 * we can adjust by 1.
899 */
john stultz85240702007-05-08 00:27:59 -0700900 error >>= 2;
John Stultzc2bc1112011-10-27 18:12:42 -0700901 /*
902 * XXX - In update_wall_time, we round up to the next
903 * nanosecond, and store the amount rounded up into
904 * the error. This causes the likely below to be unlikely.
905 *
John Stultz3f86f282011-10-27 17:41:17 -0700906 * The proper fix is to avoid rounding up by using
John Stultzc2bc1112011-10-27 18:12:42 -0700907 * the high precision timekeeper.xtime_nsec instead of
908 * xtime.tv_nsec everywhere. Fixing this will take some
909 * time.
910 */
john stultz85240702007-05-08 00:27:59 -0700911 if (likely(error <= interval))
912 adj = 1;
913 else
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200914 adj = timekeeping_bigadjust(error, &interval, &offset);
john stultz85240702007-05-08 00:27:59 -0700915 } else if (error < -interval) {
John Stultzc2bc1112011-10-27 18:12:42 -0700916 /* See comment above, this is just switched for the negative */
john stultz85240702007-05-08 00:27:59 -0700917 error >>= 2;
918 if (likely(error >= -interval)) {
919 adj = -1;
920 interval = -interval;
921 offset = -offset;
922 } else
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200923 adj = timekeeping_bigadjust(error, &interval, &offset);
John Stultzc2bc1112011-10-27 18:12:42 -0700924 } else /* No adjustment needed */
john stultz85240702007-05-08 00:27:59 -0700925 return;
926
John Stultze919cfd2012-03-22 19:14:46 -0700927 if (unlikely(timekeeper.clock->maxadj &&
928 (timekeeper.mult + adj >
929 timekeeper.clock->mult + timekeeper.clock->maxadj))) {
930 printk_once(KERN_WARNING
931 "Adjusting %s more than 11%% (%ld vs %ld)\n",
John Stultzd65670a2011-10-31 17:06:35 -0400932 timekeeper.clock->name, (long)timekeeper.mult + adj,
933 (long)timekeeper.clock->mult +
934 timekeeper.clock->maxadj);
John Stultze919cfd2012-03-22 19:14:46 -0700935 }
John Stultzc2bc1112011-10-27 18:12:42 -0700936 /*
937 * So the following can be confusing.
938 *
939 * To keep things simple, lets assume adj == 1 for now.
940 *
941 * When adj != 1, remember that the interval and offset values
942 * have been appropriately scaled so the math is the same.
943 *
944 * The basic idea here is that we're increasing the multiplier
945 * by one, this causes the xtime_interval to be incremented by
946 * one cycle_interval. This is because:
947 * xtime_interval = cycle_interval * mult
948 * So if mult is being incremented by one:
949 * xtime_interval = cycle_interval * (mult + 1)
950 * Its the same as:
951 * xtime_interval = (cycle_interval * mult) + cycle_interval
952 * Which can be shortened to:
953 * xtime_interval += cycle_interval
954 *
955 * So offset stores the non-accumulated cycles. Thus the current
956 * time (in shifted nanoseconds) is:
957 * now = (offset * adj) + xtime_nsec
958 * Now, even though we're adjusting the clock frequency, we have
959 * to keep time consistent. In other words, we can't jump back
960 * in time, and we also want to avoid jumping forward in time.
961 *
962 * So given the same offset value, we need the time to be the same
963 * both before and after the freq adjustment.
964 * now = (offset * adj_1) + xtime_nsec_1
965 * now = (offset * adj_2) + xtime_nsec_2
966 * So:
967 * (offset * adj_1) + xtime_nsec_1 =
968 * (offset * adj_2) + xtime_nsec_2
969 * And we know:
970 * adj_2 = adj_1 + 1
971 * So:
972 * (offset * adj_1) + xtime_nsec_1 =
973 * (offset * (adj_1+1)) + xtime_nsec_2
974 * (offset * adj_1) + xtime_nsec_1 =
975 * (offset * adj_1) + offset + xtime_nsec_2
976 * Canceling the sides:
977 * xtime_nsec_1 = offset + xtime_nsec_2
978 * Which gives us:
979 * xtime_nsec_2 = xtime_nsec_1 - offset
980 * Which simplfies to:
981 * xtime_nsec -= offset
982 *
983 * XXX - TODO: Doc ntp_error calculation.
984 */
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200985 timekeeper.mult += adj;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200986 timekeeper.xtime_interval += interval;
987 timekeeper.xtime_nsec -= offset;
988 timekeeper.ntp_error -= (interval - offset) <<
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200989 timekeeper.ntp_error_shift;
john stultz85240702007-05-08 00:27:59 -0700990}
991
Linus Torvalds83f57a12009-12-22 14:10:37 -0800992
john stultz85240702007-05-08 00:27:59 -0700993/**
John Stultz1f4f9482012-07-13 01:21:54 -0400994 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
995 *
996 * Helper function that accumulates a the nsecs greater then a second
997 * from the xtime_nsec field to the xtime_secs field.
998 * It also calls into the NTP code to handle leapsecond processing.
999 *
1000 */
1001static inline void accumulate_nsecs_to_secs(struct timekeeper *tk)
1002{
1003 u64 nsecps = (u64)NSEC_PER_SEC << tk->shift;
1004
1005 while (tk->xtime_nsec >= nsecps) {
1006 int leap;
1007
1008 tk->xtime_nsec -= nsecps;
1009 tk->xtime_sec++;
1010
1011 /* Figure out if its a leap sec and apply if needed */
1012 leap = second_overflow(tk->xtime_sec);
1013 tk->xtime_sec += leap;
1014 tk->wall_to_monotonic.tv_sec -= leap;
1015 if (leap)
1016 clock_was_set_delayed();
1017
1018 }
1019}
1020
1021
1022/**
john stultza092ff02009-10-02 16:17:53 -07001023 * logarithmic_accumulation - shifted accumulation of cycles
1024 *
1025 * This functions accumulates a shifted interval of cycles into
1026 * into a shifted interval nanoseconds. Allows for O(log) accumulation
1027 * loop.
1028 *
1029 * Returns the unconsumed cycles.
1030 */
John Stultzfee84c42012-07-13 01:21:52 -04001031static cycle_t logarithmic_accumulation(cycle_t offset, u32 shift)
john stultza092ff02009-10-02 16:17:53 -07001032{
Jason Wesseldeda2e82010-08-09 14:20:09 -07001033 u64 raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001034
Jim Cromie88b28ad2012-03-14 21:28:56 -06001035 /* If the offset is smaller than a shifted interval, do nothing */
john stultza092ff02009-10-02 16:17:53 -07001036 if (offset < timekeeper.cycle_interval<<shift)
1037 return offset;
1038
1039 /* Accumulate one shifted interval */
1040 offset -= timekeeper.cycle_interval << shift;
1041 timekeeper.clock->cycle_last += timekeeper.cycle_interval << shift;
1042
1043 timekeeper.xtime_nsec += timekeeper.xtime_interval << shift;
John Stultz1f4f9482012-07-13 01:21:54 -04001044
1045 accumulate_nsecs_to_secs(&timekeeper);
john stultza092ff02009-10-02 16:17:53 -07001046
Jason Wesseldeda2e82010-08-09 14:20:09 -07001047 /* Accumulate raw time */
1048 raw_nsecs = timekeeper.raw_interval << shift;
John Stultz01f71b42011-11-14 11:43:49 -08001049 raw_nsecs += timekeeper.raw_time.tv_nsec;
John Stultzc7dcf872010-08-13 11:30:58 -07001050 if (raw_nsecs >= NSEC_PER_SEC) {
1051 u64 raw_secs = raw_nsecs;
1052 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
John Stultz01f71b42011-11-14 11:43:49 -08001053 timekeeper.raw_time.tv_sec += raw_secs;
john stultza092ff02009-10-02 16:17:53 -07001054 }
John Stultz01f71b42011-11-14 11:43:49 -08001055 timekeeper.raw_time.tv_nsec = raw_nsecs;
john stultza092ff02009-10-02 16:17:53 -07001056
1057 /* Accumulate error between NTP and clock interval */
John Stultzea7cf492011-11-14 13:18:07 -08001058 timekeeper.ntp_error += ntp_tick_length() << shift;
Kasper Pedersena386b5a2010-10-20 15:55:15 -07001059 timekeeper.ntp_error -=
1060 (timekeeper.xtime_interval + timekeeper.xtime_remainder) <<
john stultza092ff02009-10-02 16:17:53 -07001061 (timekeeper.ntp_error_shift + shift);
1062
1063 return offset;
1064}
1065
Linus Torvalds83f57a12009-12-22 14:10:37 -08001066
john stultz85240702007-05-08 00:27:59 -07001067/**
1068 * update_wall_time - Uses the current clocksource to increment the wall time
1069 *
john stultz85240702007-05-08 00:27:59 -07001070 */
Torben Hohn871cf1e2011-01-27 15:58:55 +01001071static void update_wall_time(void)
john stultz85240702007-05-08 00:27:59 -07001072{
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001073 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -07001074 cycle_t offset;
john stultza092ff02009-10-02 16:17:53 -07001075 int shift = 0, maxshift;
John Stultz70471f22011-11-14 12:48:10 -08001076 unsigned long flags;
John Stultz1e75fa82012-07-13 01:21:53 -04001077 s64 remainder;
John Stultz70471f22011-11-14 12:48:10 -08001078
1079 write_seqlock_irqsave(&timekeeper.lock, flags);
john stultz85240702007-05-08 00:27:59 -07001080
1081 /* Make sure we're fully resumed: */
1082 if (unlikely(timekeeping_suspended))
John Stultz70471f22011-11-14 12:48:10 -08001083 goto out;
john stultz85240702007-05-08 00:27:59 -07001084
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001085 clock = timekeeper.clock;
John Stultz592913e2010-07-13 17:56:20 -07001086
1087#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001088 offset = timekeeper.cycle_interval;
John Stultz592913e2010-07-13 17:56:20 -07001089#else
1090 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
john stultz85240702007-05-08 00:27:59 -07001091#endif
john stultz85240702007-05-08 00:27:59 -07001092
john stultza092ff02009-10-02 16:17:53 -07001093 /*
1094 * With NO_HZ we may have to accumulate many cycle_intervals
1095 * (think "ticks") worth of time at once. To do this efficiently,
1096 * we calculate the largest doubling multiple of cycle_intervals
Jim Cromie88b28ad2012-03-14 21:28:56 -06001097 * that is smaller than the offset. We then accumulate that
john stultza092ff02009-10-02 16:17:53 -07001098 * chunk in one go, and then try to consume the next smaller
1099 * doubled multiple.
john stultz85240702007-05-08 00:27:59 -07001100 */
john stultza092ff02009-10-02 16:17:53 -07001101 shift = ilog2(offset) - ilog2(timekeeper.cycle_interval);
1102 shift = max(0, shift);
Jim Cromie88b28ad2012-03-14 21:28:56 -06001103 /* Bound shift to one less than what overflows tick_length */
John Stultzea7cf492011-11-14 13:18:07 -08001104 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
john stultza092ff02009-10-02 16:17:53 -07001105 shift = min(shift, maxshift);
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001106 while (offset >= timekeeper.cycle_interval) {
john stultza092ff02009-10-02 16:17:53 -07001107 offset = logarithmic_accumulation(offset, shift);
John Stultz830ec042010-03-18 14:47:30 -07001108 if(offset < timekeeper.cycle_interval<<shift)
1109 shift--;
john stultz85240702007-05-08 00:27:59 -07001110 }
1111
1112 /* correct the clock when NTP error is too big */
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001113 timekeeping_adjust(offset);
john stultz85240702007-05-08 00:27:59 -07001114
john stultz6c9bacb2008-12-01 18:34:41 -08001115 /*
1116 * Since in the loop above, we accumulate any amount of time
1117 * in xtime_nsec over a second into xtime.tv_sec, its possible for
1118 * xtime_nsec to be fairly small after the loop. Further, if we're
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001119 * slightly speeding the clocksource up in timekeeping_adjust(),
john stultz6c9bacb2008-12-01 18:34:41 -08001120 * its possible the required corrective factor to xtime_nsec could
1121 * cause it to underflow.
1122 *
1123 * Now, we cannot simply roll the accumulated second back, since
1124 * the NTP subsystem has been notified via second_overflow. So
1125 * instead we push xtime_nsec forward by the amount we underflowed,
1126 * and add that amount into the error.
1127 *
1128 * We'll correct this error next time through this function, when
1129 * xtime_nsec is not as small.
1130 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +02001131 if (unlikely((s64)timekeeper.xtime_nsec < 0)) {
1132 s64 neg = -(s64)timekeeper.xtime_nsec;
1133 timekeeper.xtime_nsec = 0;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +02001134 timekeeper.ntp_error += neg << timekeeper.ntp_error_shift;
john stultz6c9bacb2008-12-01 18:34:41 -08001135 }
1136
John Stultz6a867a32010-04-06 14:30:51 -07001137 /*
John Stultz1e75fa82012-07-13 01:21:53 -04001138 * Store only full nanoseconds into xtime_nsec after rounding
1139 * it up and add the remainder to the error difference.
1140 * XXX - This is necessary to avoid small 1ns inconsistnecies caused
1141 * by truncating the remainder in vsyscalls. However, it causes
1142 * additional work to be done in timekeeping_adjust(). Once
1143 * the vsyscall implementations are converted to use xtime_nsec
1144 * (shifted nanoseconds), this can be killed.
1145 */
1146 remainder = timekeeper.xtime_nsec & ((1 << timekeeper.shift) - 1);
1147 timekeeper.xtime_nsec -= remainder;
1148 timekeeper.xtime_nsec += 1 << timekeeper.shift;
1149 timekeeper.ntp_error += remainder << timekeeper.ntp_error_shift;
john stultz85240702007-05-08 00:27:59 -07001150
John Stultz6a867a32010-04-06 14:30:51 -07001151 /*
1152 * Finally, make sure that after the rounding
John Stultz1e75fa82012-07-13 01:21:53 -04001153 * xtime_nsec isn't larger than NSEC_PER_SEC
John Stultz6a867a32010-04-06 14:30:51 -07001154 */
John Stultz1f4f9482012-07-13 01:21:54 -04001155 accumulate_nsecs_to_secs(&timekeeper);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001156
Thomas Gleixnercc062682011-11-13 23:19:49 +00001157 timekeeping_update(false);
John Stultz70471f22011-11-14 12:48:10 -08001158
1159out:
1160 write_sequnlock_irqrestore(&timekeeper.lock, flags);
1161
john stultz85240702007-05-08 00:27:59 -07001162}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001163
1164/**
1165 * getboottime - Return the real time of system boot.
1166 * @ts: pointer to the timespec to be set
1167 *
John Stultzabb3a4e2011-02-14 17:52:09 -08001168 * Returns the wall-time of boot in a timespec.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001169 *
1170 * This is based on the wall_to_monotonic offset and the total suspend
1171 * time. Calls to settimeofday will affect the value returned (which
1172 * basically means that however wrong your real time clock is at boot time,
1173 * you get the right time here).
1174 */
1175void getboottime(struct timespec *ts)
1176{
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001177 struct timespec boottime = {
John Stultzd9f72172011-11-14 11:29:32 -08001178 .tv_sec = timekeeper.wall_to_monotonic.tv_sec +
John Stultz00c5fb72011-11-14 11:23:15 -08001179 timekeeper.total_sleep_time.tv_sec,
John Stultzd9f72172011-11-14 11:29:32 -08001180 .tv_nsec = timekeeper.wall_to_monotonic.tv_nsec +
John Stultz00c5fb72011-11-14 11:23:15 -08001181 timekeeper.total_sleep_time.tv_nsec
Hiroshi Shimamoto36d47482009-08-25 15:08:30 +09001182 };
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001183
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +02001184 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001185}
Jason Wangc93d89f2010-01-27 19:13:40 +08001186EXPORT_SYMBOL_GPL(getboottime);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001187
John Stultzabb3a4e2011-02-14 17:52:09 -08001188
1189/**
1190 * get_monotonic_boottime - Returns monotonic time since boot
1191 * @ts: pointer to the timespec to be set
1192 *
1193 * Returns the monotonic time since boot in a timespec.
1194 *
1195 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1196 * includes the time spent in suspend.
1197 */
1198void get_monotonic_boottime(struct timespec *ts)
1199{
1200 struct timespec tomono, sleep;
1201 unsigned int seq;
John Stultzabb3a4e2011-02-14 17:52:09 -08001202
1203 WARN_ON(timekeeping_suspended);
1204
1205 do {
John Stultz70471f22011-11-14 12:48:10 -08001206 seq = read_seqbegin(&timekeeper.lock);
John Stultz1e75fa82012-07-13 01:21:53 -04001207 ts->tv_sec = timekeeper.xtime_sec;
1208 ts->tv_nsec = timekeeping_get_ns();
John Stultzd9f72172011-11-14 11:29:32 -08001209 tomono = timekeeper.wall_to_monotonic;
John Stultz00c5fb72011-11-14 11:23:15 -08001210 sleep = timekeeper.total_sleep_time;
John Stultzabb3a4e2011-02-14 17:52:09 -08001211
John Stultz70471f22011-11-14 12:48:10 -08001212 } while (read_seqretry(&timekeeper.lock, seq));
John Stultzabb3a4e2011-02-14 17:52:09 -08001213
1214 set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec + sleep.tv_sec,
John Stultz1e75fa82012-07-13 01:21:53 -04001215 ts->tv_nsec + tomono.tv_nsec + sleep.tv_nsec);
John Stultzabb3a4e2011-02-14 17:52:09 -08001216}
1217EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1218
1219/**
1220 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1221 *
1222 * Returns the monotonic time since boot in a ktime
1223 *
1224 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1225 * includes the time spent in suspend.
1226 */
1227ktime_t ktime_get_boottime(void)
1228{
1229 struct timespec ts;
1230
1231 get_monotonic_boottime(&ts);
1232 return timespec_to_ktime(ts);
1233}
1234EXPORT_SYMBOL_GPL(ktime_get_boottime);
1235
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001236/**
1237 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1238 * @ts: pointer to the timespec to be converted
1239 */
1240void monotonic_to_bootbased(struct timespec *ts)
1241{
John Stultz00c5fb72011-11-14 11:23:15 -08001242 *ts = timespec_add(*ts, timekeeper.total_sleep_time);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -07001243}
Jason Wangc93d89f2010-01-27 19:13:40 +08001244EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
john stultz2c6b47d2007-07-24 17:47:43 -07001245
john stultz17c38b72007-07-24 18:38:34 -07001246unsigned long get_seconds(void)
1247{
John Stultz1e75fa82012-07-13 01:21:53 -04001248 return timekeeper.xtime_sec;
john stultz17c38b72007-07-24 18:38:34 -07001249}
1250EXPORT_SYMBOL(get_seconds);
1251
john stultzda15cfd2009-08-19 19:13:34 -07001252struct timespec __current_kernel_time(void)
1253{
John Stultz1e75fa82012-07-13 01:21:53 -04001254 return tk_xtime(&timekeeper);
john stultzda15cfd2009-08-19 19:13:34 -07001255}
john stultz17c38b72007-07-24 18:38:34 -07001256
john stultz2c6b47d2007-07-24 17:47:43 -07001257struct timespec current_kernel_time(void)
1258{
1259 struct timespec now;
1260 unsigned long seq;
1261
1262 do {
John Stultz70471f22011-11-14 12:48:10 -08001263 seq = read_seqbegin(&timekeeper.lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001264
John Stultz1e75fa82012-07-13 01:21:53 -04001265 now = tk_xtime(&timekeeper);
John Stultz70471f22011-11-14 12:48:10 -08001266 } while (read_seqretry(&timekeeper.lock, seq));
john stultz2c6b47d2007-07-24 17:47:43 -07001267
1268 return now;
1269}
john stultz2c6b47d2007-07-24 17:47:43 -07001270EXPORT_SYMBOL(current_kernel_time);
john stultzda15cfd2009-08-19 19:13:34 -07001271
1272struct timespec get_monotonic_coarse(void)
1273{
1274 struct timespec now, mono;
1275 unsigned long seq;
1276
1277 do {
John Stultz70471f22011-11-14 12:48:10 -08001278 seq = read_seqbegin(&timekeeper.lock);
Linus Torvalds83f57a12009-12-22 14:10:37 -08001279
John Stultz1e75fa82012-07-13 01:21:53 -04001280 now = tk_xtime(&timekeeper);
John Stultzd9f72172011-11-14 11:29:32 -08001281 mono = timekeeper.wall_to_monotonic;
John Stultz70471f22011-11-14 12:48:10 -08001282 } while (read_seqretry(&timekeeper.lock, seq));
john stultzda15cfd2009-08-19 19:13:34 -07001283
1284 set_normalized_timespec(&now, now.tv_sec + mono.tv_sec,
1285 now.tv_nsec + mono.tv_nsec);
1286 return now;
1287}
Torben Hohn871cf1e2011-01-27 15:58:55 +01001288
1289/*
1290 * The 64-bit jiffies value is not atomic - you MUST NOT read it
1291 * without sampling the sequence number in xtime_lock.
1292 * jiffies is defined in the linker script...
1293 */
1294void do_timer(unsigned long ticks)
1295{
1296 jiffies_64 += ticks;
1297 update_wall_time();
1298 calc_global_load(ticks);
1299}
Torben Hohn48cf76f72011-01-27 15:59:05 +01001300
1301/**
John Stultz314ac372011-02-14 18:43:08 -08001302 * get_xtime_and_monotonic_and_sleep_offset() - get xtime, wall_to_monotonic,
1303 * and sleep offsets.
Torben Hohn48cf76f72011-01-27 15:59:05 +01001304 * @xtim: pointer to timespec to be set with xtime
1305 * @wtom: pointer to timespec to be set with wall_to_monotonic
John Stultz314ac372011-02-14 18:43:08 -08001306 * @sleep: pointer to timespec to be set with time in suspend
Torben Hohn48cf76f72011-01-27 15:59:05 +01001307 */
John Stultz314ac372011-02-14 18:43:08 -08001308void get_xtime_and_monotonic_and_sleep_offset(struct timespec *xtim,
1309 struct timespec *wtom, struct timespec *sleep)
Torben Hohn48cf76f72011-01-27 15:59:05 +01001310{
1311 unsigned long seq;
1312
1313 do {
John Stultz70471f22011-11-14 12:48:10 -08001314 seq = read_seqbegin(&timekeeper.lock);
John Stultz1e75fa82012-07-13 01:21:53 -04001315 *xtim = tk_xtime(&timekeeper);
John Stultzd9f72172011-11-14 11:29:32 -08001316 *wtom = timekeeper.wall_to_monotonic;
John Stultz00c5fb72011-11-14 11:23:15 -08001317 *sleep = timekeeper.total_sleep_time;
John Stultz70471f22011-11-14 12:48:10 -08001318 } while (read_seqretry(&timekeeper.lock, seq));
Torben Hohn48cf76f72011-01-27 15:59:05 +01001319}
Torben Hohnf0af911a92011-01-27 15:59:10 +01001320
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001321#ifdef CONFIG_HIGH_RES_TIMERS
1322/**
1323 * ktime_get_update_offsets - hrtimer helper
1324 * @offs_real: pointer to storage for monotonic -> realtime offset
1325 * @offs_boot: pointer to storage for monotonic -> boottime offset
1326 *
1327 * Returns current monotonic time and updates the offsets
1328 * Called from hrtimer_interupt() or retrigger_next_event()
1329 */
1330ktime_t ktime_get_update_offsets(ktime_t *offs_real, ktime_t *offs_boot)
1331{
1332 ktime_t now;
1333 unsigned int seq;
1334 u64 secs, nsecs;
1335
1336 do {
1337 seq = read_seqbegin(&timekeeper.lock);
1338
John Stultz1e75fa82012-07-13 01:21:53 -04001339 secs = timekeeper.xtime_sec;
1340 nsecs = timekeeping_get_ns();
Thomas Gleixnerf6c06ab2012-07-10 18:43:24 -04001341 /* If arch requires, add in gettimeoffset() */
1342 nsecs += arch_gettimeoffset();
1343
1344 *offs_real = timekeeper.offs_real;
1345 *offs_boot = timekeeper.offs_boot;
1346 } while (read_seqretry(&timekeeper.lock, seq));
1347
1348 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1349 now = ktime_sub(now, *offs_real);
1350 return now;
1351}
1352#endif
1353
Torben Hohnf0af911a92011-01-27 15:59:10 +01001354/**
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001355 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1356 */
1357ktime_t ktime_get_monotonic_offset(void)
1358{
1359 unsigned long seq;
1360 struct timespec wtom;
1361
1362 do {
John Stultz70471f22011-11-14 12:48:10 -08001363 seq = read_seqbegin(&timekeeper.lock);
John Stultzd9f72172011-11-14 11:29:32 -08001364 wtom = timekeeper.wall_to_monotonic;
John Stultz70471f22011-11-14 12:48:10 -08001365 } while (read_seqretry(&timekeeper.lock, seq));
1366
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001367 return timespec_to_ktime(wtom);
1368}
John Stultza80b83b2012-02-03 00:19:07 -08001369EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1370
Thomas Gleixner99ee5312011-04-27 14:16:42 +02001371
1372/**
Torben Hohnf0af911a92011-01-27 15:59:10 +01001373 * xtime_update() - advances the timekeeping infrastructure
1374 * @ticks: number of ticks, that have elapsed since the last call.
1375 *
1376 * Must be called with interrupts disabled.
1377 */
1378void xtime_update(unsigned long ticks)
1379{
1380 write_seqlock(&xtime_lock);
1381 do_timer(ticks);
1382 write_sequnlock(&xtime_lock);
1383}