blob: 27ae01b596b77790d1dbe7226cf7cb4c7144d804 [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>
16#include <linux/sysdev.h>
17#include <linux/clocksource.h>
18#include <linux/jiffies.h>
19#include <linux/time.h>
20#include <linux/tick.h>
21
Martin Schwidefsky155ec602009-08-14 15:47:26 +020022/* Structure holding internal timekeeping values. */
23struct timekeeper {
24 /* Current clocksource used for timekeeping. */
25 struct clocksource *clock;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +020026 /* The shift value of the current clocksource. */
27 int shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020028
29 /* Number of clock cycles in one NTP interval. */
30 cycle_t cycle_interval;
31 /* Number of clock shifted nano seconds in one NTP interval. */
32 u64 xtime_interval;
33 /* Raw nano seconds accumulated per NTP interval. */
34 u32 raw_interval;
35
36 /* Clock shifted nano seconds remainder not stored in xtime.tv_nsec. */
37 u64 xtime_nsec;
38 /* Difference between accumulated time and NTP time in ntp
39 * shifted nano seconds. */
40 s64 ntp_error;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +020041 /* Shift conversion between clock shifted nano seconds and
42 * ntp shifted nano seconds. */
43 int ntp_error_shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +020044 /* NTP adjusted clock multiplier */
45 u32 mult;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020046};
47
48struct timekeeper timekeeper;
49
50/**
51 * timekeeper_setup_internals - Set up internals to use clocksource clock.
52 *
53 * @clock: Pointer to clocksource.
54 *
55 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
56 * pair and interval request.
57 *
58 * Unless you're the timekeeping code, you should not be using this!
59 */
60static void timekeeper_setup_internals(struct clocksource *clock)
61{
62 cycle_t interval;
63 u64 tmp;
64
65 timekeeper.clock = clock;
66 clock->cycle_last = clock->read(clock);
67
68 /* Do the ns -> cycle conversion first, using original mult */
69 tmp = NTP_INTERVAL_LENGTH;
70 tmp <<= clock->shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +020071 tmp += clock->mult/2;
72 do_div(tmp, clock->mult);
Martin Schwidefsky155ec602009-08-14 15:47:26 +020073 if (tmp == 0)
74 tmp = 1;
75
76 interval = (cycle_t) tmp;
77 timekeeper.cycle_interval = interval;
78
79 /* Go back from cycles -> shifted ns */
80 timekeeper.xtime_interval = (u64) interval * clock->mult;
81 timekeeper.raw_interval =
Martin Schwidefsky0a544192009-08-14 15:47:28 +020082 ((u64) interval * clock->mult) >> clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020083
84 timekeeper.xtime_nsec = 0;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +020085 timekeeper.shift = clock->shift;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020086
87 timekeeper.ntp_error = 0;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +020088 timekeeper.ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
Martin Schwidefsky0a544192009-08-14 15:47:28 +020089
90 /*
91 * The timekeeper keeps its own mult values for the currently
92 * active clocksource. These value will be adjusted via NTP
93 * to counteract clock drifting.
94 */
95 timekeeper.mult = clock->mult;
Martin Schwidefsky155ec602009-08-14 15:47:26 +020096}
john stultz85240702007-05-08 00:27:59 -070097
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +020098/* Timekeeper helper functions. */
99static inline s64 timekeeping_get_ns(void)
100{
101 cycle_t cycle_now, cycle_delta;
102 struct clocksource *clock;
103
104 /* read clocksource: */
105 clock = timekeeper.clock;
106 cycle_now = clock->read(clock);
107
108 /* calculate the delta since the last update_wall_time: */
109 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
110
111 /* return delta convert to nanoseconds using ntp adjusted mult. */
112 return clocksource_cyc2ns(cycle_delta, timekeeper.mult,
113 timekeeper.shift);
114}
115
116static inline s64 timekeeping_get_ns_raw(void)
117{
118 cycle_t cycle_now, cycle_delta;
119 struct clocksource *clock;
120
121 /* read clocksource: */
122 clock = timekeeper.clock;
123 cycle_now = clock->read(clock);
124
125 /* calculate the delta since the last update_wall_time: */
126 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
127
128 /* return delta convert to nanoseconds using ntp adjusted mult. */
129 return clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
130}
131
john stultz85240702007-05-08 00:27:59 -0700132/*
133 * This read-write spinlock protects us from races in SMP while
Thomas Gleixnerdce48a82009-04-11 10:43:41 +0200134 * playing with xtime.
john stultz85240702007-05-08 00:27:59 -0700135 */
Adrian Bunkba2a6312007-10-16 23:27:16 -0700136__cacheline_aligned_in_smp DEFINE_SEQLOCK(xtime_lock);
john stultz85240702007-05-08 00:27:59 -0700137
138
139/*
140 * The current time
141 * wall_to_monotonic is what we need to add to xtime (or xtime corrected
142 * for sub jiffie times) to get to monotonic time. Monotonic is pegged
143 * at zero at system boot time, so wall_to_monotonic will be negative,
144 * however, we will ALWAYS keep the tv_nsec part positive so we can use
145 * the usual normalization.
Tomas Janousek7c3f1a52007-07-15 23:39:41 -0700146 *
147 * wall_to_monotonic is moved after resume from suspend for the monotonic
148 * time not to jump. We need to add total_sleep_time to wall_to_monotonic
149 * to get the real boot based time offset.
150 *
151 * - wall_to_monotonic is no longer the boot time, getboottime must be
152 * used instead.
john stultz85240702007-05-08 00:27:59 -0700153 */
154struct timespec xtime __attribute__ ((aligned (16)));
155struct timespec wall_to_monotonic __attribute__ ((aligned (16)));
Tomas Janousek7c3f1a52007-07-15 23:39:41 -0700156static unsigned long total_sleep_time; /* seconds */
john stultz85240702007-05-08 00:27:59 -0700157
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200158/*
159 * The raw monotonic time for the CLOCK_MONOTONIC_RAW posix clock.
160 */
161struct timespec raw_time;
162
Thomas Gleixner1c5745a2008-12-22 23:05:28 +0100163/* flag for if timekeeping is suspended */
164int __read_mostly timekeeping_suspended;
165
john stultz17c38b72007-07-24 18:38:34 -0700166static struct timespec xtime_cache __attribute__ ((aligned (16)));
Thomas Gleixner1001d0a2008-02-01 17:45:13 +0100167void update_xtime_cache(u64 nsec)
john stultz17c38b72007-07-24 18:38:34 -0700168{
169 xtime_cache = xtime;
170 timespec_add_ns(&xtime_cache, nsec);
171}
john stultz17c38b72007-07-24 18:38:34 -0700172
John Stultz31089c12009-08-14 15:47:18 +0200173/* must hold xtime_lock */
174void timekeeping_leap_insert(int leapsecond)
175{
176 xtime.tv_sec += leapsecond;
177 wall_to_monotonic.tv_sec -= leapsecond;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200178 update_vsyscall(&xtime, timekeeper.clock);
John Stultz31089c12009-08-14 15:47:18 +0200179}
john stultz85240702007-05-08 00:27:59 -0700180
181#ifdef CONFIG_GENERIC_TIME
182/**
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200183 * timekeeping_forward_now - update clock to the current time
john stultz85240702007-05-08 00:27:59 -0700184 *
Roman Zippel9a055112008-08-20 16:37:28 -0700185 * Forward the current clock to update its state since the last call to
186 * update_wall_time(). This is useful before significant clock changes,
187 * as it avoids having to deal with this time offset explicitly.
john stultz85240702007-05-08 00:27:59 -0700188 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200189static void timekeeping_forward_now(void)
john stultz85240702007-05-08 00:27:59 -0700190{
191 cycle_t cycle_now, cycle_delta;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200192 struct clocksource *clock;
Roman Zippel9a055112008-08-20 16:37:28 -0700193 s64 nsec;
john stultz85240702007-05-08 00:27:59 -0700194
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200195 clock = timekeeper.clock;
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200196 cycle_now = clock->read(clock);
john stultz85240702007-05-08 00:27:59 -0700197 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
Roman Zippel9a055112008-08-20 16:37:28 -0700198 clock->cycle_last = cycle_now;
john stultz85240702007-05-08 00:27:59 -0700199
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200200 nsec = clocksource_cyc2ns(cycle_delta, timekeeper.mult,
201 timekeeper.shift);
john stultz7d275582009-05-01 13:10:26 -0700202
203 /* If arch requires, add in gettimeoffset() */
204 nsec += arch_gettimeoffset();
205
Roman Zippel9a055112008-08-20 16:37:28 -0700206 timespec_add_ns(&xtime, nsec);
John Stultz2d422442008-08-20 16:37:30 -0700207
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200208 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200209 timespec_add_ns(&raw_time, nsec);
john stultz85240702007-05-08 00:27:59 -0700210}
211
212/**
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100213 * getnstimeofday - Returns the time of day in a timespec
john stultz85240702007-05-08 00:27:59 -0700214 * @ts: pointer to the timespec to be set
215 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100216 * Returns the time of day in a timespec.
john stultz85240702007-05-08 00:27:59 -0700217 */
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100218void getnstimeofday(struct timespec *ts)
john stultz85240702007-05-08 00:27:59 -0700219{
220 unsigned long seq;
221 s64 nsecs;
222
Thomas Gleixner1c5745a2008-12-22 23:05:28 +0100223 WARN_ON(timekeeping_suspended);
224
john stultz85240702007-05-08 00:27:59 -0700225 do {
226 seq = read_seqbegin(&xtime_lock);
227
228 *ts = xtime;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200229 nsecs = timekeeping_get_ns();
john stultz85240702007-05-08 00:27:59 -0700230
john stultz7d275582009-05-01 13:10:26 -0700231 /* If arch requires, add in gettimeoffset() */
232 nsecs += arch_gettimeoffset();
233
john stultz85240702007-05-08 00:27:59 -0700234 } while (read_seqretry(&xtime_lock, seq));
235
236 timespec_add_ns(ts, nsecs);
237}
238
john stultz85240702007-05-08 00:27:59 -0700239EXPORT_SYMBOL(getnstimeofday);
240
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200241ktime_t ktime_get(void)
242{
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200243 unsigned int seq;
244 s64 secs, nsecs;
245
246 WARN_ON(timekeeping_suspended);
247
248 do {
249 seq = read_seqbegin(&xtime_lock);
250 secs = xtime.tv_sec + wall_to_monotonic.tv_sec;
251 nsecs = xtime.tv_nsec + wall_to_monotonic.tv_nsec;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200252 nsecs += timekeeping_get_ns();
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200253
254 } while (read_seqretry(&xtime_lock, seq));
255 /*
256 * Use ktime_set/ktime_add_ns to create a proper ktime on
257 * 32-bit architectures without CONFIG_KTIME_SCALAR.
258 */
259 return ktime_add_ns(ktime_set(secs, 0), nsecs);
260}
261EXPORT_SYMBOL_GPL(ktime_get);
262
263/**
264 * ktime_get_ts - get the monotonic clock in timespec format
265 * @ts: pointer to timespec variable
266 *
267 * The function calculates the monotonic clock from the realtime
268 * clock and the wall_to_monotonic offset and stores the result
269 * in normalized timespec format in the variable pointed to by @ts.
270 */
271void ktime_get_ts(struct timespec *ts)
272{
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200273 struct timespec tomono;
274 unsigned int seq;
275 s64 nsecs;
276
277 WARN_ON(timekeeping_suspended);
278
279 do {
280 seq = read_seqbegin(&xtime_lock);
281 *ts = xtime;
282 tomono = wall_to_monotonic;
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200283 nsecs = timekeeping_get_ns();
Martin Schwidefsky951ed4d2009-07-07 11:27:28 +0200284
285 } while (read_seqretry(&xtime_lock, seq));
286
287 set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec,
288 ts->tv_nsec + tomono.tv_nsec + nsecs);
289}
290EXPORT_SYMBOL_GPL(ktime_get_ts);
291
john stultz85240702007-05-08 00:27:59 -0700292/**
293 * do_gettimeofday - Returns the time of day in a timeval
294 * @tv: pointer to the timeval to be set
295 *
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100296 * NOTE: Users should be converted to using getnstimeofday()
john stultz85240702007-05-08 00:27:59 -0700297 */
298void do_gettimeofday(struct timeval *tv)
299{
300 struct timespec now;
301
Geert Uytterhoevenefd9ac82008-01-30 13:30:01 +0100302 getnstimeofday(&now);
john stultz85240702007-05-08 00:27:59 -0700303 tv->tv_sec = now.tv_sec;
304 tv->tv_usec = now.tv_nsec/1000;
305}
306
307EXPORT_SYMBOL(do_gettimeofday);
308/**
309 * do_settimeofday - Sets the time of day
310 * @tv: pointer to the timespec variable containing the new time
311 *
312 * Sets the time of day to the new time and update NTP and notify hrtimers
313 */
314int do_settimeofday(struct timespec *tv)
315{
Roman Zippel9a055112008-08-20 16:37:28 -0700316 struct timespec ts_delta;
john stultz85240702007-05-08 00:27:59 -0700317 unsigned long flags;
john stultz85240702007-05-08 00:27:59 -0700318
319 if ((unsigned long)tv->tv_nsec >= NSEC_PER_SEC)
320 return -EINVAL;
321
322 write_seqlock_irqsave(&xtime_lock, flags);
323
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200324 timekeeping_forward_now();
john stultz85240702007-05-08 00:27:59 -0700325
Roman Zippel9a055112008-08-20 16:37:28 -0700326 ts_delta.tv_sec = tv->tv_sec - xtime.tv_sec;
327 ts_delta.tv_nsec = tv->tv_nsec - xtime.tv_nsec;
328 wall_to_monotonic = timespec_sub(wall_to_monotonic, ts_delta);
john stultz85240702007-05-08 00:27:59 -0700329
Roman Zippel9a055112008-08-20 16:37:28 -0700330 xtime = *tv;
331
Thomas Gleixner1001d0a2008-02-01 17:45:13 +0100332 update_xtime_cache(0);
john stultz85240702007-05-08 00:27:59 -0700333
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200334 timekeeper.ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -0700335 ntp_clear();
336
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200337 update_vsyscall(&xtime, timekeeper.clock);
john stultz85240702007-05-08 00:27:59 -0700338
339 write_sequnlock_irqrestore(&xtime_lock, flags);
340
341 /* signal hrtimers about time change */
342 clock_was_set();
343
344 return 0;
345}
346
347EXPORT_SYMBOL(do_settimeofday);
348
349/**
350 * change_clocksource - Swaps clocksources if a new one is available
351 *
352 * Accumulates current time interval and initializes new clocksource
353 */
354static void change_clocksource(void)
355{
Magnus Damm4614e6a2009-04-21 12:24:02 -0700356 struct clocksource *new, *old;
john stultz85240702007-05-08 00:27:59 -0700357
358 new = clocksource_get_next();
359
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200360 if (!new || timekeeper.clock == new)
john stultz85240702007-05-08 00:27:59 -0700361 return;
362
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200363 timekeeping_forward_now();
john stultz85240702007-05-08 00:27:59 -0700364
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200365 if (new->enable && !new->enable(new))
Magnus Damm4614e6a2009-04-21 12:24:02 -0700366 return;
John Stultz2d422442008-08-20 16:37:30 -0700367
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200368 old = timekeeper.clock;
369 timekeeper_setup_internals(new);
370
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200371 if (old->disable)
372 old->disable(old);
Magnus Damm4614e6a2009-04-21 12:24:02 -0700373
john stultz85240702007-05-08 00:27:59 -0700374 tick_clock_notify();
john stultz85240702007-05-08 00:27:59 -0700375}
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200376#else /* GENERIC_TIME */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200377static inline void timekeeping_forward_now(void) { }
john stultz85240702007-05-08 00:27:59 -0700378static inline void change_clocksource(void) { }
Thomas Gleixnera40f2622009-07-07 13:00:31 +0200379
380/**
381 * ktime_get - get the monotonic time in ktime_t format
382 *
383 * returns the time in ktime_t format
384 */
385ktime_t ktime_get(void)
386{
387 struct timespec now;
388
389 ktime_get_ts(&now);
390
391 return timespec_to_ktime(now);
392}
393EXPORT_SYMBOL_GPL(ktime_get);
394
395/**
396 * ktime_get_ts - get the monotonic clock in timespec format
397 * @ts: pointer to timespec variable
398 *
399 * The function calculates the monotonic clock from the realtime
400 * clock and the wall_to_monotonic offset and stores the result
401 * in normalized timespec format in the variable pointed to by @ts.
402 */
403void ktime_get_ts(struct timespec *ts)
404{
405 struct timespec tomono;
406 unsigned long seq;
407
408 do {
409 seq = read_seqbegin(&xtime_lock);
410 getnstimeofday(ts);
411 tomono = wall_to_monotonic;
412
413 } while (read_seqretry(&xtime_lock, seq));
414
415 set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec,
416 ts->tv_nsec + tomono.tv_nsec);
417}
418EXPORT_SYMBOL_GPL(ktime_get_ts);
419#endif /* !GENERIC_TIME */
420
421/**
422 * ktime_get_real - get the real (wall-) time in ktime_t format
423 *
424 * returns the time in ktime_t format
425 */
426ktime_t ktime_get_real(void)
427{
428 struct timespec now;
429
430 getnstimeofday(&now);
431
432 return timespec_to_ktime(now);
433}
434EXPORT_SYMBOL_GPL(ktime_get_real);
john stultz85240702007-05-08 00:27:59 -0700435
436/**
John Stultz2d422442008-08-20 16:37:30 -0700437 * getrawmonotonic - Returns the raw monotonic time in a timespec
438 * @ts: pointer to the timespec to be set
439 *
440 * Returns the raw monotonic time (completely un-modified by ntp)
441 */
442void getrawmonotonic(struct timespec *ts)
443{
444 unsigned long seq;
445 s64 nsecs;
John Stultz2d422442008-08-20 16:37:30 -0700446
447 do {
448 seq = read_seqbegin(&xtime_lock);
Martin Schwidefsky2ba2a302009-08-14 15:47:29 +0200449 nsecs = timekeeping_get_ns_raw();
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200450 *ts = raw_time;
John Stultz2d422442008-08-20 16:37:30 -0700451
452 } while (read_seqretry(&xtime_lock, seq));
453
454 timespec_add_ns(ts, nsecs);
455}
456EXPORT_SYMBOL(getrawmonotonic);
457
458
459/**
Li Zefancf4fc6c2008-02-08 04:19:24 -0800460 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
john stultz85240702007-05-08 00:27:59 -0700461 */
Li Zefancf4fc6c2008-02-08 04:19:24 -0800462int timekeeping_valid_for_hres(void)
john stultz85240702007-05-08 00:27:59 -0700463{
464 unsigned long seq;
465 int ret;
466
467 do {
468 seq = read_seqbegin(&xtime_lock);
469
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200470 ret = timekeeper.clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
john stultz85240702007-05-08 00:27:59 -0700471
472 } while (read_seqretry(&xtime_lock, seq));
473
474 return ret;
475}
476
477/**
478 * read_persistent_clock - Return time in seconds from the persistent clock.
479 *
480 * Weak dummy function for arches that do not yet support it.
481 * Returns seconds from epoch using the battery backed persistent clock.
482 * Returns zero if unsupported.
483 *
484 * XXX - Do be sure to remove it once all arches implement it.
485 */
486unsigned long __attribute__((weak)) read_persistent_clock(void)
487{
488 return 0;
489}
490
491/*
492 * timekeeping_init - Initializes the clocksource and common timekeeping values
493 */
494void __init timekeeping_init(void)
495{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200496 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700497 unsigned long flags;
498 unsigned long sec = read_persistent_clock();
499
500 write_seqlock_irqsave(&xtime_lock, flags);
501
Roman Zippel7dffa3c2008-05-01 04:34:41 -0700502 ntp_init();
john stultz85240702007-05-08 00:27:59 -0700503
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200504 clock = clocksource_default_clock();
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200505 if (clock->enable)
506 clock->enable(clock);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200507 timekeeper_setup_internals(clock);
john stultz85240702007-05-08 00:27:59 -0700508
509 xtime.tv_sec = sec;
510 xtime.tv_nsec = 0;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200511 raw_time.tv_sec = 0;
512 raw_time.tv_nsec = 0;
john stultz85240702007-05-08 00:27:59 -0700513 set_normalized_timespec(&wall_to_monotonic,
514 -xtime.tv_sec, -xtime.tv_nsec);
Thomas Gleixner1001d0a2008-02-01 17:45:13 +0100515 update_xtime_cache(0);
Tomas Janousek7c3f1a52007-07-15 23:39:41 -0700516 total_sleep_time = 0;
john stultz85240702007-05-08 00:27:59 -0700517 write_sequnlock_irqrestore(&xtime_lock, flags);
518}
519
john stultz85240702007-05-08 00:27:59 -0700520/* time in seconds when suspend began */
521static unsigned long timekeeping_suspend_time;
522
523/**
524 * timekeeping_resume - Resumes the generic timekeeping subsystem.
525 * @dev: unused
526 *
527 * This is for the generic clocksource timekeeping.
528 * xtime/wall_to_monotonic/jiffies/etc are
529 * still managed by arch specific suspend/resume code.
530 */
531static int timekeeping_resume(struct sys_device *dev)
532{
533 unsigned long flags;
534 unsigned long now = read_persistent_clock();
535
Thomas Gleixnerd10ff3f2007-05-14 11:10:02 +0200536 clocksource_resume();
537
john stultz85240702007-05-08 00:27:59 -0700538 write_seqlock_irqsave(&xtime_lock, flags);
539
540 if (now && (now > timekeeping_suspend_time)) {
541 unsigned long sleep_length = now - timekeeping_suspend_time;
542
543 xtime.tv_sec += sleep_length;
544 wall_to_monotonic.tv_sec -= sleep_length;
Tomas Janousek7c3f1a52007-07-15 23:39:41 -0700545 total_sleep_time += sleep_length;
john stultz85240702007-05-08 00:27:59 -0700546 }
Thomas Gleixner1001d0a2008-02-01 17:45:13 +0100547 update_xtime_cache(0);
john stultz85240702007-05-08 00:27:59 -0700548 /* re-base the last cycle value */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200549 timekeeper.clock->cycle_last = timekeeper.clock->read(timekeeper.clock);
550 timekeeper.ntp_error = 0;
john stultz85240702007-05-08 00:27:59 -0700551 timekeeping_suspended = 0;
552 write_sequnlock_irqrestore(&xtime_lock, flags);
553
554 touch_softlockup_watchdog();
555
556 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
557
558 /* Resume hrtimers */
559 hres_timers_resume();
560
561 return 0;
562}
563
564static int timekeeping_suspend(struct sys_device *dev, pm_message_t state)
565{
566 unsigned long flags;
567
Thomas Gleixner3be90952007-09-16 15:36:43 +0200568 timekeeping_suspend_time = read_persistent_clock();
569
john stultz85240702007-05-08 00:27:59 -0700570 write_seqlock_irqsave(&xtime_lock, flags);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200571 timekeeping_forward_now();
john stultz85240702007-05-08 00:27:59 -0700572 timekeeping_suspended = 1;
john stultz85240702007-05-08 00:27:59 -0700573 write_sequnlock_irqrestore(&xtime_lock, flags);
574
575 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
576
577 return 0;
578}
579
580/* sysfs resume/suspend bits for timekeeping */
581static struct sysdev_class timekeeping_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100582 .name = "timekeeping",
john stultz85240702007-05-08 00:27:59 -0700583 .resume = timekeeping_resume,
584 .suspend = timekeeping_suspend,
john stultz85240702007-05-08 00:27:59 -0700585};
586
587static struct sys_device device_timer = {
588 .id = 0,
589 .cls = &timekeeping_sysclass,
590};
591
592static int __init timekeeping_init_device(void)
593{
594 int error = sysdev_class_register(&timekeeping_sysclass);
595 if (!error)
596 error = sysdev_register(&device_timer);
597 return error;
598}
599
600device_initcall(timekeeping_init_device);
601
602/*
603 * If the error is already larger, we look ahead even further
604 * to compensate for late or lost adjustments.
605 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200606static __always_inline int timekeeping_bigadjust(s64 error, s64 *interval,
john stultz85240702007-05-08 00:27:59 -0700607 s64 *offset)
608{
609 s64 tick_error, i;
610 u32 look_ahead, adj;
611 s32 error2, mult;
612
613 /*
614 * Use the current error value to determine how much to look ahead.
615 * The larger the error the slower we adjust for it to avoid problems
616 * with losing too many ticks, otherwise we would overadjust and
617 * produce an even larger error. The smaller the adjustment the
618 * faster we try to adjust for it, as lost ticks can do less harm
Li Zefan3eb05672008-02-08 04:19:25 -0800619 * here. This is tuned so that an error of about 1 msec is adjusted
john stultz85240702007-05-08 00:27:59 -0700620 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
621 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200622 error2 = timekeeper.ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
john stultz85240702007-05-08 00:27:59 -0700623 error2 = abs(error2);
624 for (look_ahead = 0; error2 > 0; look_ahead++)
625 error2 >>= 2;
626
627 /*
628 * Now calculate the error in (1 << look_ahead) ticks, but first
629 * remove the single look ahead already included in the error.
630 */
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200631 tick_error = tick_length >> (timekeeper.ntp_error_shift + 1);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200632 tick_error -= timekeeper.xtime_interval >> 1;
john stultz85240702007-05-08 00:27:59 -0700633 error = ((error - tick_error) >> look_ahead) + tick_error;
634
635 /* Finally calculate the adjustment shift value. */
636 i = *interval;
637 mult = 1;
638 if (error < 0) {
639 error = -error;
640 *interval = -*interval;
641 *offset = -*offset;
642 mult = -1;
643 }
644 for (adj = 0; error > i; adj++)
645 error >>= 1;
646
647 *interval <<= adj;
648 *offset <<= adj;
649 return mult << adj;
650}
651
652/*
653 * Adjust the multiplier to reduce the error value,
654 * this is optimized for the most common adjustments of -1,0,1,
655 * for other values we can do a bit more work.
656 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200657static void timekeeping_adjust(s64 offset)
john stultz85240702007-05-08 00:27:59 -0700658{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200659 s64 error, interval = timekeeper.cycle_interval;
john stultz85240702007-05-08 00:27:59 -0700660 int adj;
661
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200662 error = timekeeper.ntp_error >> (timekeeper.ntp_error_shift - 1);
john stultz85240702007-05-08 00:27:59 -0700663 if (error > interval) {
664 error >>= 2;
665 if (likely(error <= interval))
666 adj = 1;
667 else
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200668 adj = timekeeping_bigadjust(error, &interval, &offset);
john stultz85240702007-05-08 00:27:59 -0700669 } else if (error < -interval) {
670 error >>= 2;
671 if (likely(error >= -interval)) {
672 adj = -1;
673 interval = -interval;
674 offset = -offset;
675 } else
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200676 adj = timekeeping_bigadjust(error, &interval, &offset);
john stultz85240702007-05-08 00:27:59 -0700677 } else
678 return;
679
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200680 timekeeper.mult += adj;
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200681 timekeeper.xtime_interval += interval;
682 timekeeper.xtime_nsec -= offset;
683 timekeeper.ntp_error -= (interval - offset) <<
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200684 timekeeper.ntp_error_shift;
john stultz85240702007-05-08 00:27:59 -0700685}
686
687/**
688 * update_wall_time - Uses the current clocksource to increment the wall time
689 *
690 * Called from the timer interrupt, must hold a write on xtime_lock.
691 */
692void update_wall_time(void)
693{
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200694 struct clocksource *clock;
john stultz85240702007-05-08 00:27:59 -0700695 cycle_t offset;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200696 u64 nsecs;
john stultz85240702007-05-08 00:27:59 -0700697
698 /* Make sure we're fully resumed: */
699 if (unlikely(timekeeping_suspended))
700 return;
701
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200702 clock = timekeeper.clock;
john stultz85240702007-05-08 00:27:59 -0700703#ifdef CONFIG_GENERIC_TIME
Martin Schwidefskya0f7d482009-08-14 15:47:19 +0200704 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
john stultz85240702007-05-08 00:27:59 -0700705#else
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200706 offset = timekeeper.cycle_interval;
john stultz85240702007-05-08 00:27:59 -0700707#endif
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200708 timekeeper.xtime_nsec = (s64)xtime.tv_nsec << timekeeper.shift;
john stultz85240702007-05-08 00:27:59 -0700709
710 /* normally this loop will run just once, however in the
711 * case of lost or late ticks, it will accumulate correctly.
712 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200713 while (offset >= timekeeper.cycle_interval) {
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200714 u64 nsecps = (u64)NSEC_PER_SEC << timekeeper.shift;
john stultz85240702007-05-08 00:27:59 -0700715
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200716 /* accumulate one interval */
717 offset -= timekeeper.cycle_interval;
718 clock->cycle_last += timekeeper.cycle_interval;
719
720 timekeeper.xtime_nsec += timekeeper.xtime_interval;
721 if (timekeeper.xtime_nsec >= nsecps) {
722 timekeeper.xtime_nsec -= nsecps;
john stultz85240702007-05-08 00:27:59 -0700723 xtime.tv_sec++;
724 second_overflow();
725 }
726
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200727 raw_time.tv_nsec += timekeeper.raw_interval;
728 if (raw_time.tv_nsec >= NSEC_PER_SEC) {
729 raw_time.tv_nsec -= NSEC_PER_SEC;
730 raw_time.tv_sec++;
John Stultz2d422442008-08-20 16:37:30 -0700731 }
732
john stultz85240702007-05-08 00:27:59 -0700733 /* accumulate error between NTP and clock interval */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200734 timekeeper.ntp_error += tick_length;
735 timekeeper.ntp_error -= timekeeper.xtime_interval <<
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200736 timekeeper.ntp_error_shift;
john stultz85240702007-05-08 00:27:59 -0700737 }
738
739 /* correct the clock when NTP error is too big */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200740 timekeeping_adjust(offset);
john stultz85240702007-05-08 00:27:59 -0700741
john stultz6c9bacb2008-12-01 18:34:41 -0800742 /*
743 * Since in the loop above, we accumulate any amount of time
744 * in xtime_nsec over a second into xtime.tv_sec, its possible for
745 * xtime_nsec to be fairly small after the loop. Further, if we're
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200746 * slightly speeding the clocksource up in timekeeping_adjust(),
john stultz6c9bacb2008-12-01 18:34:41 -0800747 * its possible the required corrective factor to xtime_nsec could
748 * cause it to underflow.
749 *
750 * Now, we cannot simply roll the accumulated second back, since
751 * the NTP subsystem has been notified via second_overflow. So
752 * instead we push xtime_nsec forward by the amount we underflowed,
753 * and add that amount into the error.
754 *
755 * We'll correct this error next time through this function, when
756 * xtime_nsec is not as small.
757 */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200758 if (unlikely((s64)timekeeper.xtime_nsec < 0)) {
759 s64 neg = -(s64)timekeeper.xtime_nsec;
760 timekeeper.xtime_nsec = 0;
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200761 timekeeper.ntp_error += neg << timekeeper.ntp_error_shift;
john stultz6c9bacb2008-12-01 18:34:41 -0800762 }
763
Roman Zippel5cd1c9c2008-09-22 14:42:43 -0700764 /* store full nanoseconds into xtime after rounding it up and
765 * add the remainder to the error difference.
766 */
Martin Schwidefsky23ce7212009-08-14 15:47:27 +0200767 xtime.tv_nsec = ((s64) timekeeper.xtime_nsec >> timekeeper.shift) + 1;
768 timekeeper.xtime_nsec -= (s64) xtime.tv_nsec << timekeeper.shift;
769 timekeeper.ntp_error += timekeeper.xtime_nsec <<
770 timekeeper.ntp_error_shift;
john stultz85240702007-05-08 00:27:59 -0700771
Martin Schwidefsky0a544192009-08-14 15:47:28 +0200772 nsecs = clocksource_cyc2ns(offset, timekeeper.mult, timekeeper.shift);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200773 update_xtime_cache(nsecs);
john stultz17c38b72007-07-24 18:38:34 -0700774
john stultz85240702007-05-08 00:27:59 -0700775 /* check to see if there is a new clocksource to use */
776 change_clocksource();
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200777 update_vsyscall(&xtime, timekeeper.clock);
john stultz85240702007-05-08 00:27:59 -0700778}
Tomas Janousek7c3f1a52007-07-15 23:39:41 -0700779
780/**
781 * getboottime - Return the real time of system boot.
782 * @ts: pointer to the timespec to be set
783 *
784 * Returns the time of day in a timespec.
785 *
786 * This is based on the wall_to_monotonic offset and the total suspend
787 * time. Calls to settimeofday will affect the value returned (which
788 * basically means that however wrong your real time clock is at boot time,
789 * you get the right time here).
790 */
791void getboottime(struct timespec *ts)
792{
793 set_normalized_timespec(ts,
794 - (wall_to_monotonic.tv_sec + total_sleep_time),
795 - wall_to_monotonic.tv_nsec);
796}
797
798/**
799 * monotonic_to_bootbased - Convert the monotonic time to boot based.
800 * @ts: pointer to the timespec to be converted
801 */
802void monotonic_to_bootbased(struct timespec *ts)
803{
804 ts->tv_sec += total_sleep_time;
805}
john stultz2c6b47d2007-07-24 17:47:43 -0700806
john stultz17c38b72007-07-24 18:38:34 -0700807unsigned long get_seconds(void)
808{
809 return xtime_cache.tv_sec;
810}
811EXPORT_SYMBOL(get_seconds);
812
813
john stultz2c6b47d2007-07-24 17:47:43 -0700814struct timespec current_kernel_time(void)
815{
816 struct timespec now;
817 unsigned long seq;
818
819 do {
820 seq = read_seqbegin(&xtime_lock);
821
john stultz17c38b72007-07-24 18:38:34 -0700822 now = xtime_cache;
john stultz2c6b47d2007-07-24 17:47:43 -0700823 } while (read_seqretry(&xtime_lock, seq));
824
825 return now;
826}
john stultz2c6b47d2007-07-24 17:47:43 -0700827EXPORT_SYMBOL(current_kernel_time);