time: Move timekeeper structure to timekeeper_internal.h for vsyscall changes
[deliverable/linux.git] / kernel / time / timekeeping.c
CommitLineData
8524070b 1/*
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
d7b4202e 11#include <linux/timekeeper_internal.h>
8524070b 12#include <linux/module.h>
13#include <linux/interrupt.h>
14#include <linux/percpu.h>
15#include <linux/init.h>
16#include <linux/mm.h>
d43c36dc 17#include <linux/sched.h>
e1a85b2c 18#include <linux/syscore_ops.h>
8524070b 19#include <linux/clocksource.h>
20#include <linux/jiffies.h>
21#include <linux/time.h>
22#include <linux/tick.h>
75c5158f 23#include <linux/stop_machine.h>
8524070b 24
155ec602 25
afa14e7c 26static struct timekeeper timekeeper;
155ec602 27
8fcce546
JS
28/*
29 * This read-write spinlock protects us from races in SMP while
30 * playing with xtime.
31 */
32__cacheline_aligned_in_smp DEFINE_SEQLOCK(xtime_lock);
33
8fcce546
JS
34/* flag for if timekeeping is suspended */
35int __read_mostly timekeeping_suspended;
36
1e75fa8b
JS
37static inline void tk_normalize_xtime(struct timekeeper *tk)
38{
39 while (tk->xtime_nsec >= ((u64)NSEC_PER_SEC << tk->shift)) {
40 tk->xtime_nsec -= (u64)NSEC_PER_SEC << tk->shift;
41 tk->xtime_sec++;
42 }
43}
44
45static struct timespec tk_xtime(struct timekeeper *tk)
46{
47 struct timespec ts;
48
49 ts.tv_sec = tk->xtime_sec;
50 ts.tv_nsec = (long)(tk->xtime_nsec >> tk->shift);
51 return ts;
52}
8fcce546 53
1e75fa8b
JS
54static void tk_set_xtime(struct timekeeper *tk, const struct timespec *ts)
55{
56 tk->xtime_sec = ts->tv_sec;
b44d50dc 57 tk->xtime_nsec = (u64)ts->tv_nsec << tk->shift;
1e75fa8b
JS
58}
59
60static void tk_xtime_add(struct timekeeper *tk, const struct timespec *ts)
61{
62 tk->xtime_sec += ts->tv_sec;
b44d50dc 63 tk->xtime_nsec += (u64)ts->tv_nsec << tk->shift;
784ffcbb 64 tk_normalize_xtime(tk);
1e75fa8b 65}
8fcce546 66
6d0ef903
JS
67static void tk_set_wall_to_mono(struct timekeeper *tk, struct timespec wtm)
68{
69 struct timespec tmp;
70
71 /*
72 * Verify consistency of: offset_real = -wall_to_monotonic
73 * before modifying anything
74 */
75 set_normalized_timespec(&tmp, -tk->wall_to_monotonic.tv_sec,
76 -tk->wall_to_monotonic.tv_nsec);
77 WARN_ON_ONCE(tk->offs_real.tv64 != timespec_to_ktime(tmp).tv64);
78 tk->wall_to_monotonic = wtm;
79 set_normalized_timespec(&tmp, -wtm.tv_sec, -wtm.tv_nsec);
80 tk->offs_real = timespec_to_ktime(tmp);
81}
82
83static void tk_set_sleep_time(struct timekeeper *tk, struct timespec t)
84{
85 /* Verify consistency before modifying */
86 WARN_ON_ONCE(tk->offs_boot.tv64 != timespec_to_ktime(tk->total_sleep_time).tv64);
87
88 tk->total_sleep_time = t;
89 tk->offs_boot = timespec_to_ktime(t);
90}
91
155ec602
MS
92/**
93 * timekeeper_setup_internals - Set up internals to use clocksource clock.
94 *
95 * @clock: Pointer to clocksource.
96 *
97 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
98 * pair and interval request.
99 *
100 * Unless you're the timekeeping code, you should not be using this!
101 */
f726a697 102static void tk_setup_internals(struct timekeeper *tk, struct clocksource *clock)
155ec602
MS
103{
104 cycle_t interval;
a386b5af 105 u64 tmp, ntpinterval;
1e75fa8b 106 struct clocksource *old_clock;
155ec602 107
f726a697
JS
108 old_clock = tk->clock;
109 tk->clock = clock;
155ec602
MS
110 clock->cycle_last = clock->read(clock);
111
112 /* Do the ns -> cycle conversion first, using original mult */
113 tmp = NTP_INTERVAL_LENGTH;
114 tmp <<= clock->shift;
a386b5af 115 ntpinterval = tmp;
0a544198
MS
116 tmp += clock->mult/2;
117 do_div(tmp, clock->mult);
155ec602
MS
118 if (tmp == 0)
119 tmp = 1;
120
121 interval = (cycle_t) tmp;
f726a697 122 tk->cycle_interval = interval;
155ec602
MS
123
124 /* Go back from cycles -> shifted ns */
f726a697
JS
125 tk->xtime_interval = (u64) interval * clock->mult;
126 tk->xtime_remainder = ntpinterval - tk->xtime_interval;
127 tk->raw_interval =
0a544198 128 ((u64) interval * clock->mult) >> clock->shift;
155ec602 129
1e75fa8b
JS
130 /* if changing clocks, convert xtime_nsec shift units */
131 if (old_clock) {
132 int shift_change = clock->shift - old_clock->shift;
133 if (shift_change < 0)
f726a697 134 tk->xtime_nsec >>= -shift_change;
1e75fa8b 135 else
f726a697 136 tk->xtime_nsec <<= shift_change;
1e75fa8b 137 }
f726a697 138 tk->shift = clock->shift;
155ec602 139
f726a697
JS
140 tk->ntp_error = 0;
141 tk->ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
0a544198
MS
142
143 /*
144 * The timekeeper keeps its own mult values for the currently
145 * active clocksource. These value will be adjusted via NTP
146 * to counteract clock drifting.
147 */
f726a697 148 tk->mult = clock->mult;
155ec602 149}
8524070b 150
2ba2a305 151/* Timekeeper helper functions. */
f726a697 152static inline s64 timekeeping_get_ns(struct timekeeper *tk)
2ba2a305
MS
153{
154 cycle_t cycle_now, cycle_delta;
155 struct clocksource *clock;
1e75fa8b 156 s64 nsec;
2ba2a305
MS
157
158 /* read clocksource: */
f726a697 159 clock = tk->clock;
2ba2a305
MS
160 cycle_now = clock->read(clock);
161
162 /* calculate the delta since the last update_wall_time: */
163 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
164
f726a697
JS
165 nsec = cycle_delta * tk->mult + tk->xtime_nsec;
166 nsec >>= tk->shift;
f2a5a085
JS
167
168 /* If arch requires, add in gettimeoffset() */
169 return nsec + arch_gettimeoffset();
2ba2a305
MS
170}
171
f726a697 172static inline s64 timekeeping_get_ns_raw(struct timekeeper *tk)
2ba2a305
MS
173{
174 cycle_t cycle_now, cycle_delta;
175 struct clocksource *clock;
f2a5a085 176 s64 nsec;
2ba2a305
MS
177
178 /* read clocksource: */
f726a697 179 clock = tk->clock;
2ba2a305
MS
180 cycle_now = clock->read(clock);
181
182 /* calculate the delta since the last update_wall_time: */
183 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
184
f2a5a085
JS
185 /* convert delta to nanoseconds. */
186 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
187
188 /* If arch requires, add in gettimeoffset() */
189 return nsec + arch_gettimeoffset();
2ba2a305
MS
190}
191
cc06268c 192/* must hold write on timekeeper.lock */
f726a697 193static void timekeeping_update(struct timekeeper *tk, bool clearntp)
cc06268c 194{
1e75fa8b
JS
195 struct timespec xt;
196
cc06268c 197 if (clearntp) {
f726a697 198 tk->ntp_error = 0;
cc06268c
TG
199 ntp_clear();
200 }
f726a697
JS
201 xt = tk_xtime(tk);
202 update_vsyscall(&xt, &tk->wall_to_monotonic, tk->clock, tk->mult);
cc06268c
TG
203}
204
8524070b 205/**
155ec602 206 * timekeeping_forward_now - update clock to the current time
8524070b 207 *
9a055117
RZ
208 * Forward the current clock to update its state since the last call to
209 * update_wall_time(). This is useful before significant clock changes,
210 * as it avoids having to deal with this time offset explicitly.
8524070b 211 */
f726a697 212static void timekeeping_forward_now(struct timekeeper *tk)
8524070b 213{
214 cycle_t cycle_now, cycle_delta;
155ec602 215 struct clocksource *clock;
9a055117 216 s64 nsec;
8524070b 217
f726a697 218 clock = tk->clock;
a0f7d48b 219 cycle_now = clock->read(clock);
8524070b 220 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
9a055117 221 clock->cycle_last = cycle_now;
8524070b 222
f726a697 223 tk->xtime_nsec += cycle_delta * tk->mult;
7d27558c 224
225 /* If arch requires, add in gettimeoffset() */
85dc8f05 226 tk->xtime_nsec += (u64)arch_gettimeoffset() << tk->shift;
7d27558c 227
f726a697 228 tk_normalize_xtime(tk);
2d42244a 229
0a544198 230 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
f726a697 231 timespec_add_ns(&tk->raw_time, nsec);
8524070b 232}
233
234/**
efd9ac86 235 * getnstimeofday - Returns the time of day in a timespec
8524070b 236 * @ts: pointer to the timespec to be set
237 *
efd9ac86 238 * Returns the time of day in a timespec.
8524070b 239 */
efd9ac86 240void getnstimeofday(struct timespec *ts)
8524070b 241{
4e250fdd 242 struct timekeeper *tk = &timekeeper;
8524070b 243 unsigned long seq;
1e75fa8b 244 s64 nsecs = 0;
8524070b 245
1c5745aa
TG
246 WARN_ON(timekeeping_suspended);
247
8524070b 248 do {
4e250fdd 249 seq = read_seqbegin(&tk->lock);
8524070b 250
4e250fdd 251 ts->tv_sec = tk->xtime_sec;
ec145bab 252 nsecs = timekeeping_get_ns(tk);
8524070b 253
4e250fdd 254 } while (read_seqretry(&tk->lock, seq));
8524070b 255
ec145bab 256 ts->tv_nsec = 0;
8524070b 257 timespec_add_ns(ts, nsecs);
258}
8524070b 259EXPORT_SYMBOL(getnstimeofday);
260
951ed4d3
MS
261ktime_t ktime_get(void)
262{
4e250fdd 263 struct timekeeper *tk = &timekeeper;
951ed4d3
MS
264 unsigned int seq;
265 s64 secs, nsecs;
266
267 WARN_ON(timekeeping_suspended);
268
269 do {
4e250fdd
JS
270 seq = read_seqbegin(&tk->lock);
271 secs = tk->xtime_sec + tk->wall_to_monotonic.tv_sec;
272 nsecs = timekeeping_get_ns(tk) + tk->wall_to_monotonic.tv_nsec;
951ed4d3 273
4e250fdd 274 } while (read_seqretry(&tk->lock, seq));
951ed4d3
MS
275 /*
276 * Use ktime_set/ktime_add_ns to create a proper ktime on
277 * 32-bit architectures without CONFIG_KTIME_SCALAR.
278 */
279 return ktime_add_ns(ktime_set(secs, 0), nsecs);
280}
281EXPORT_SYMBOL_GPL(ktime_get);
282
283/**
284 * ktime_get_ts - get the monotonic clock in timespec format
285 * @ts: pointer to timespec variable
286 *
287 * The function calculates the monotonic clock from the realtime
288 * clock and the wall_to_monotonic offset and stores the result
289 * in normalized timespec format in the variable pointed to by @ts.
290 */
291void ktime_get_ts(struct timespec *ts)
292{
4e250fdd 293 struct timekeeper *tk = &timekeeper;
951ed4d3 294 struct timespec tomono;
ec145bab 295 s64 nsec;
951ed4d3 296 unsigned int seq;
951ed4d3
MS
297
298 WARN_ON(timekeeping_suspended);
299
300 do {
4e250fdd
JS
301 seq = read_seqbegin(&tk->lock);
302 ts->tv_sec = tk->xtime_sec;
ec145bab 303 nsec = timekeeping_get_ns(tk);
4e250fdd 304 tomono = tk->wall_to_monotonic;
951ed4d3 305
4e250fdd 306 } while (read_seqretry(&tk->lock, seq));
951ed4d3 307
ec145bab
JS
308 ts->tv_sec += tomono.tv_sec;
309 ts->tv_nsec = 0;
310 timespec_add_ns(ts, nsec + tomono.tv_nsec);
951ed4d3
MS
311}
312EXPORT_SYMBOL_GPL(ktime_get_ts);
313
e2c18e49
AG
314#ifdef CONFIG_NTP_PPS
315
316/**
317 * getnstime_raw_and_real - get day and raw monotonic time in timespec format
318 * @ts_raw: pointer to the timespec to be set to raw monotonic time
319 * @ts_real: pointer to the timespec to be set to the time of day
320 *
321 * This function reads both the time of day and raw monotonic time at the
322 * same time atomically and stores the resulting timestamps in timespec
323 * format.
324 */
325void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
326{
4e250fdd 327 struct timekeeper *tk = &timekeeper;
e2c18e49
AG
328 unsigned long seq;
329 s64 nsecs_raw, nsecs_real;
330
331 WARN_ON_ONCE(timekeeping_suspended);
332
333 do {
4e250fdd 334 seq = read_seqbegin(&tk->lock);
e2c18e49 335
4e250fdd
JS
336 *ts_raw = tk->raw_time;
337 ts_real->tv_sec = tk->xtime_sec;
1e75fa8b 338 ts_real->tv_nsec = 0;
e2c18e49 339
4e250fdd
JS
340 nsecs_raw = timekeeping_get_ns_raw(tk);
341 nsecs_real = timekeeping_get_ns(tk);
e2c18e49 342
4e250fdd 343 } while (read_seqretry(&tk->lock, seq));
e2c18e49
AG
344
345 timespec_add_ns(ts_raw, nsecs_raw);
346 timespec_add_ns(ts_real, nsecs_real);
347}
348EXPORT_SYMBOL(getnstime_raw_and_real);
349
350#endif /* CONFIG_NTP_PPS */
351
8524070b 352/**
353 * do_gettimeofday - Returns the time of day in a timeval
354 * @tv: pointer to the timeval to be set
355 *
efd9ac86 356 * NOTE: Users should be converted to using getnstimeofday()
8524070b 357 */
358void do_gettimeofday(struct timeval *tv)
359{
360 struct timespec now;
361
efd9ac86 362 getnstimeofday(&now);
8524070b 363 tv->tv_sec = now.tv_sec;
364 tv->tv_usec = now.tv_nsec/1000;
365}
8524070b 366EXPORT_SYMBOL(do_gettimeofday);
d239f49d 367
8524070b 368/**
369 * do_settimeofday - Sets the time of day
370 * @tv: pointer to the timespec variable containing the new time
371 *
372 * Sets the time of day to the new time and update NTP and notify hrtimers
373 */
1e6d7679 374int do_settimeofday(const struct timespec *tv)
8524070b 375{
4e250fdd 376 struct timekeeper *tk = &timekeeper;
1e75fa8b 377 struct timespec ts_delta, xt;
92c1d3ed 378 unsigned long flags;
8524070b 379
cee58483 380 if (!timespec_valid_strict(tv))
8524070b 381 return -EINVAL;
382
4e250fdd 383 write_seqlock_irqsave(&tk->lock, flags);
8524070b 384
4e250fdd 385 timekeeping_forward_now(tk);
9a055117 386
4e250fdd 387 xt = tk_xtime(tk);
1e75fa8b
JS
388 ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
389 ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
390
4e250fdd 391 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, ts_delta));
8524070b 392
4e250fdd 393 tk_set_xtime(tk, tv);
1e75fa8b 394
4e250fdd 395 timekeeping_update(tk, true);
8524070b 396
4e250fdd 397 write_sequnlock_irqrestore(&tk->lock, flags);
8524070b 398
399 /* signal hrtimers about time change */
400 clock_was_set();
401
402 return 0;
403}
8524070b 404EXPORT_SYMBOL(do_settimeofday);
405
c528f7c6
JS
406/**
407 * timekeeping_inject_offset - Adds or subtracts from the current time.
408 * @tv: pointer to the timespec variable containing the offset
409 *
410 * Adds or subtracts an offset value from the current time.
411 */
412int timekeeping_inject_offset(struct timespec *ts)
413{
4e250fdd 414 struct timekeeper *tk = &timekeeper;
92c1d3ed 415 unsigned long flags;
4e8b1452
JS
416 struct timespec tmp;
417 int ret = 0;
c528f7c6
JS
418
419 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
420 return -EINVAL;
421
4e250fdd 422 write_seqlock_irqsave(&tk->lock, flags);
c528f7c6 423
4e250fdd 424 timekeeping_forward_now(tk);
c528f7c6 425
4e8b1452
JS
426 /* Make sure the proposed value is valid */
427 tmp = timespec_add(tk_xtime(tk), *ts);
cee58483 428 if (!timespec_valid_strict(&tmp)) {
4e8b1452
JS
429 ret = -EINVAL;
430 goto error;
431 }
1e75fa8b 432
4e250fdd
JS
433 tk_xtime_add(tk, ts);
434 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *ts));
c528f7c6 435
4e8b1452 436error: /* even if we error out, we forwarded the time, so call update */
4e250fdd 437 timekeeping_update(tk, true);
c528f7c6 438
4e250fdd 439 write_sequnlock_irqrestore(&tk->lock, flags);
c528f7c6
JS
440
441 /* signal hrtimers about time change */
442 clock_was_set();
443
4e8b1452 444 return ret;
c528f7c6
JS
445}
446EXPORT_SYMBOL(timekeeping_inject_offset);
447
8524070b 448/**
449 * change_clocksource - Swaps clocksources if a new one is available
450 *
451 * Accumulates current time interval and initializes new clocksource
452 */
75c5158f 453static int change_clocksource(void *data)
8524070b 454{
4e250fdd 455 struct timekeeper *tk = &timekeeper;
4614e6ad 456 struct clocksource *new, *old;
f695cf94 457 unsigned long flags;
8524070b 458
75c5158f 459 new = (struct clocksource *) data;
8524070b 460
4e250fdd 461 write_seqlock_irqsave(&tk->lock, flags);
f695cf94 462
4e250fdd 463 timekeeping_forward_now(tk);
75c5158f 464 if (!new->enable || new->enable(new) == 0) {
4e250fdd
JS
465 old = tk->clock;
466 tk_setup_internals(tk, new);
75c5158f
MS
467 if (old->disable)
468 old->disable(old);
469 }
4e250fdd 470 timekeeping_update(tk, true);
f695cf94 471
4e250fdd 472 write_sequnlock_irqrestore(&tk->lock, flags);
f695cf94 473
75c5158f
MS
474 return 0;
475}
8524070b 476
75c5158f
MS
477/**
478 * timekeeping_notify - Install a new clock source
479 * @clock: pointer to the clock source
480 *
481 * This function is called from clocksource.c after a new, better clock
482 * source has been registered. The caller holds the clocksource_mutex.
483 */
484void timekeeping_notify(struct clocksource *clock)
485{
4e250fdd
JS
486 struct timekeeper *tk = &timekeeper;
487
488 if (tk->clock == clock)
4614e6ad 489 return;
75c5158f 490 stop_machine(change_clocksource, clock, NULL);
8524070b 491 tick_clock_notify();
8524070b 492}
75c5158f 493
a40f262c
TG
494/**
495 * ktime_get_real - get the real (wall-) time in ktime_t format
496 *
497 * returns the time in ktime_t format
498 */
499ktime_t ktime_get_real(void)
500{
501 struct timespec now;
502
503 getnstimeofday(&now);
504
505 return timespec_to_ktime(now);
506}
507EXPORT_SYMBOL_GPL(ktime_get_real);
8524070b 508
2d42244a
JS
509/**
510 * getrawmonotonic - Returns the raw monotonic time in a timespec
511 * @ts: pointer to the timespec to be set
512 *
513 * Returns the raw monotonic time (completely un-modified by ntp)
514 */
515void getrawmonotonic(struct timespec *ts)
516{
4e250fdd 517 struct timekeeper *tk = &timekeeper;
2d42244a
JS
518 unsigned long seq;
519 s64 nsecs;
2d42244a
JS
520
521 do {
4e250fdd
JS
522 seq = read_seqbegin(&tk->lock);
523 nsecs = timekeeping_get_ns_raw(tk);
524 *ts = tk->raw_time;
2d42244a 525
4e250fdd 526 } while (read_seqretry(&tk->lock, seq));
2d42244a
JS
527
528 timespec_add_ns(ts, nsecs);
529}
530EXPORT_SYMBOL(getrawmonotonic);
531
8524070b 532/**
cf4fc6cb 533 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
8524070b 534 */
cf4fc6cb 535int timekeeping_valid_for_hres(void)
8524070b 536{
4e250fdd 537 struct timekeeper *tk = &timekeeper;
8524070b 538 unsigned long seq;
539 int ret;
540
541 do {
4e250fdd 542 seq = read_seqbegin(&tk->lock);
8524070b 543
4e250fdd 544 ret = tk->clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
8524070b 545
4e250fdd 546 } while (read_seqretry(&tk->lock, seq));
8524070b 547
548 return ret;
549}
550
98962465
JH
551/**
552 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
98962465
JH
553 */
554u64 timekeeping_max_deferment(void)
555{
4e250fdd 556 struct timekeeper *tk = &timekeeper;
70471f2f
JS
557 unsigned long seq;
558 u64 ret;
42e71e81 559
70471f2f 560 do {
4e250fdd 561 seq = read_seqbegin(&tk->lock);
70471f2f 562
4e250fdd 563 ret = tk->clock->max_idle_ns;
70471f2f 564
4e250fdd 565 } while (read_seqretry(&tk->lock, seq));
70471f2f
JS
566
567 return ret;
98962465
JH
568}
569
8524070b 570/**
d4f587c6 571 * read_persistent_clock - Return time from the persistent clock.
8524070b 572 *
573 * Weak dummy function for arches that do not yet support it.
d4f587c6
MS
574 * Reads the time from the battery backed persistent clock.
575 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
8524070b 576 *
577 * XXX - Do be sure to remove it once all arches implement it.
578 */
d4f587c6 579void __attribute__((weak)) read_persistent_clock(struct timespec *ts)
8524070b 580{
d4f587c6
MS
581 ts->tv_sec = 0;
582 ts->tv_nsec = 0;
8524070b 583}
584
23970e38
MS
585/**
586 * read_boot_clock - Return time of the system start.
587 *
588 * Weak dummy function for arches that do not yet support it.
589 * Function to read the exact time the system has been started.
590 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
591 *
592 * XXX - Do be sure to remove it once all arches implement it.
593 */
594void __attribute__((weak)) read_boot_clock(struct timespec *ts)
595{
596 ts->tv_sec = 0;
597 ts->tv_nsec = 0;
598}
599
8524070b 600/*
601 * timekeeping_init - Initializes the clocksource and common timekeeping values
602 */
603void __init timekeeping_init(void)
604{
4e250fdd 605 struct timekeeper *tk = &timekeeper;
155ec602 606 struct clocksource *clock;
8524070b 607 unsigned long flags;
6d0ef903 608 struct timespec now, boot, tmp;
d4f587c6
MS
609
610 read_persistent_clock(&now);
cee58483 611 if (!timespec_valid_strict(&now)) {
4e8b1452
JS
612 pr_warn("WARNING: Persistent clock returned invalid value!\n"
613 " Check your CMOS/BIOS settings.\n");
614 now.tv_sec = 0;
615 now.tv_nsec = 0;
616 }
617
23970e38 618 read_boot_clock(&boot);
cee58483 619 if (!timespec_valid_strict(&boot)) {
4e8b1452
JS
620 pr_warn("WARNING: Boot clock returned invalid value!\n"
621 " Check your CMOS/BIOS settings.\n");
622 boot.tv_sec = 0;
623 boot.tv_nsec = 0;
624 }
8524070b 625
4e250fdd 626 seqlock_init(&tk->lock);
8524070b 627
7dffa3c6 628 ntp_init();
8524070b 629
4e250fdd 630 write_seqlock_irqsave(&tk->lock, flags);
f1b82746 631 clock = clocksource_default_clock();
a0f7d48b
MS
632 if (clock->enable)
633 clock->enable(clock);
4e250fdd 634 tk_setup_internals(tk, clock);
8524070b 635
4e250fdd
JS
636 tk_set_xtime(tk, &now);
637 tk->raw_time.tv_sec = 0;
638 tk->raw_time.tv_nsec = 0;
1e75fa8b 639 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
4e250fdd 640 boot = tk_xtime(tk);
1e75fa8b 641
6d0ef903 642 set_normalized_timespec(&tmp, -boot.tv_sec, -boot.tv_nsec);
4e250fdd 643 tk_set_wall_to_mono(tk, tmp);
6d0ef903
JS
644
645 tmp.tv_sec = 0;
646 tmp.tv_nsec = 0;
4e250fdd 647 tk_set_sleep_time(tk, tmp);
6d0ef903 648
4e250fdd 649 write_sequnlock_irqrestore(&tk->lock, flags);
8524070b 650}
651
8524070b 652/* time in seconds when suspend began */
d4f587c6 653static struct timespec timekeeping_suspend_time;
8524070b 654
304529b1
JS
655/**
656 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
657 * @delta: pointer to a timespec delta value
658 *
659 * Takes a timespec offset measuring a suspend interval and properly
660 * adds the sleep offset to the timekeeping variables.
661 */
f726a697
JS
662static void __timekeeping_inject_sleeptime(struct timekeeper *tk,
663 struct timespec *delta)
304529b1 664{
cee58483 665 if (!timespec_valid_strict(delta)) {
cbaa5152 666 printk(KERN_WARNING "__timekeeping_inject_sleeptime: Invalid "
cb5de2f8
JS
667 "sleep delta value!\n");
668 return;
669 }
f726a697 670 tk_xtime_add(tk, delta);
6d0ef903
JS
671 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *delta));
672 tk_set_sleep_time(tk, timespec_add(tk->total_sleep_time, *delta));
304529b1
JS
673}
674
304529b1
JS
675/**
676 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
677 * @delta: pointer to a timespec delta value
678 *
679 * This hook is for architectures that cannot support read_persistent_clock
680 * because their RTC/persistent clock is only accessible when irqs are enabled.
681 *
682 * This function should only be called by rtc_resume(), and allows
683 * a suspend offset to be injected into the timekeeping values.
684 */
685void timekeeping_inject_sleeptime(struct timespec *delta)
686{
4e250fdd 687 struct timekeeper *tk = &timekeeper;
92c1d3ed 688 unsigned long flags;
304529b1
JS
689 struct timespec ts;
690
691 /* Make sure we don't set the clock twice */
692 read_persistent_clock(&ts);
693 if (!(ts.tv_sec == 0 && ts.tv_nsec == 0))
694 return;
695
4e250fdd 696 write_seqlock_irqsave(&tk->lock, flags);
70471f2f 697
4e250fdd 698 timekeeping_forward_now(tk);
304529b1 699
4e250fdd 700 __timekeeping_inject_sleeptime(tk, delta);
304529b1 701
4e250fdd 702 timekeeping_update(tk, true);
304529b1 703
4e250fdd 704 write_sequnlock_irqrestore(&tk->lock, flags);
304529b1
JS
705
706 /* signal hrtimers about time change */
707 clock_was_set();
708}
709
8524070b 710/**
711 * timekeeping_resume - Resumes the generic timekeeping subsystem.
8524070b 712 *
713 * This is for the generic clocksource timekeeping.
714 * xtime/wall_to_monotonic/jiffies/etc are
715 * still managed by arch specific suspend/resume code.
716 */
e1a85b2c 717static void timekeeping_resume(void)
8524070b 718{
4e250fdd 719 struct timekeeper *tk = &timekeeper;
92c1d3ed 720 unsigned long flags;
d4f587c6
MS
721 struct timespec ts;
722
723 read_persistent_clock(&ts);
8524070b 724
d10ff3fb
TG
725 clocksource_resume();
726
4e250fdd 727 write_seqlock_irqsave(&tk->lock, flags);
8524070b 728
d4f587c6
MS
729 if (timespec_compare(&ts, &timekeeping_suspend_time) > 0) {
730 ts = timespec_sub(ts, timekeeping_suspend_time);
4e250fdd 731 __timekeeping_inject_sleeptime(tk, &ts);
8524070b 732 }
733 /* re-base the last cycle value */
4e250fdd
JS
734 tk->clock->cycle_last = tk->clock->read(tk->clock);
735 tk->ntp_error = 0;
8524070b 736 timekeeping_suspended = 0;
4e250fdd
JS
737 timekeeping_update(tk, false);
738 write_sequnlock_irqrestore(&tk->lock, flags);
8524070b 739
740 touch_softlockup_watchdog();
741
742 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
743
744 /* Resume hrtimers */
b12a03ce 745 hrtimers_resume();
8524070b 746}
747
e1a85b2c 748static int timekeeping_suspend(void)
8524070b 749{
4e250fdd 750 struct timekeeper *tk = &timekeeper;
92c1d3ed 751 unsigned long flags;
cb33217b
JS
752 struct timespec delta, delta_delta;
753 static struct timespec old_delta;
8524070b 754
d4f587c6 755 read_persistent_clock(&timekeeping_suspend_time);
3be90950 756
4e250fdd
JS
757 write_seqlock_irqsave(&tk->lock, flags);
758 timekeeping_forward_now(tk);
8524070b 759 timekeeping_suspended = 1;
cb33217b
JS
760
761 /*
762 * To avoid drift caused by repeated suspend/resumes,
763 * which each can add ~1 second drift error,
764 * try to compensate so the difference in system time
765 * and persistent_clock time stays close to constant.
766 */
4e250fdd 767 delta = timespec_sub(tk_xtime(tk), timekeeping_suspend_time);
cb33217b
JS
768 delta_delta = timespec_sub(delta, old_delta);
769 if (abs(delta_delta.tv_sec) >= 2) {
770 /*
771 * if delta_delta is too large, assume time correction
772 * has occured and set old_delta to the current delta.
773 */
774 old_delta = delta;
775 } else {
776 /* Otherwise try to adjust old_system to compensate */
777 timekeeping_suspend_time =
778 timespec_add(timekeeping_suspend_time, delta_delta);
779 }
4e250fdd 780 write_sequnlock_irqrestore(&tk->lock, flags);
8524070b 781
782 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
c54a42b1 783 clocksource_suspend();
8524070b 784
785 return 0;
786}
787
788/* sysfs resume/suspend bits for timekeeping */
e1a85b2c 789static struct syscore_ops timekeeping_syscore_ops = {
8524070b 790 .resume = timekeeping_resume,
791 .suspend = timekeeping_suspend,
8524070b 792};
793
e1a85b2c 794static int __init timekeeping_init_ops(void)
8524070b 795{
e1a85b2c
RW
796 register_syscore_ops(&timekeeping_syscore_ops);
797 return 0;
8524070b 798}
799
e1a85b2c 800device_initcall(timekeeping_init_ops);
8524070b 801
802/*
803 * If the error is already larger, we look ahead even further
804 * to compensate for late or lost adjustments.
805 */
f726a697
JS
806static __always_inline int timekeeping_bigadjust(struct timekeeper *tk,
807 s64 error, s64 *interval,
8524070b 808 s64 *offset)
809{
810 s64 tick_error, i;
811 u32 look_ahead, adj;
812 s32 error2, mult;
813
814 /*
815 * Use the current error value to determine how much to look ahead.
816 * The larger the error the slower we adjust for it to avoid problems
817 * with losing too many ticks, otherwise we would overadjust and
818 * produce an even larger error. The smaller the adjustment the
819 * faster we try to adjust for it, as lost ticks can do less harm
3eb05676 820 * here. This is tuned so that an error of about 1 msec is adjusted
8524070b 821 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
822 */
f726a697 823 error2 = tk->ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
8524070b 824 error2 = abs(error2);
825 for (look_ahead = 0; error2 > 0; look_ahead++)
826 error2 >>= 2;
827
828 /*
829 * Now calculate the error in (1 << look_ahead) ticks, but first
830 * remove the single look ahead already included in the error.
831 */
f726a697
JS
832 tick_error = ntp_tick_length() >> (tk->ntp_error_shift + 1);
833 tick_error -= tk->xtime_interval >> 1;
8524070b 834 error = ((error - tick_error) >> look_ahead) + tick_error;
835
836 /* Finally calculate the adjustment shift value. */
837 i = *interval;
838 mult = 1;
839 if (error < 0) {
840 error = -error;
841 *interval = -*interval;
842 *offset = -*offset;
843 mult = -1;
844 }
845 for (adj = 0; error > i; adj++)
846 error >>= 1;
847
848 *interval <<= adj;
849 *offset <<= adj;
850 return mult << adj;
851}
852
853/*
854 * Adjust the multiplier to reduce the error value,
855 * this is optimized for the most common adjustments of -1,0,1,
856 * for other values we can do a bit more work.
857 */
f726a697 858static void timekeeping_adjust(struct timekeeper *tk, s64 offset)
8524070b 859{
f726a697 860 s64 error, interval = tk->cycle_interval;
8524070b 861 int adj;
862
c2bc1111 863 /*
88b28adf 864 * The point of this is to check if the error is greater than half
c2bc1111
JS
865 * an interval.
866 *
867 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
868 *
869 * Note we subtract one in the shift, so that error is really error*2.
3f86f28f
JS
870 * This "saves" dividing(shifting) interval twice, but keeps the
871 * (error > interval) comparison as still measuring if error is
88b28adf 872 * larger than half an interval.
c2bc1111 873 *
3f86f28f 874 * Note: It does not "save" on aggravation when reading the code.
c2bc1111 875 */
f726a697 876 error = tk->ntp_error >> (tk->ntp_error_shift - 1);
8524070b 877 if (error > interval) {
c2bc1111
JS
878 /*
879 * We now divide error by 4(via shift), which checks if
88b28adf 880 * the error is greater than twice the interval.
c2bc1111
JS
881 * If it is greater, we need a bigadjust, if its smaller,
882 * we can adjust by 1.
883 */
8524070b 884 error >>= 2;
c2bc1111
JS
885 /*
886 * XXX - In update_wall_time, we round up to the next
887 * nanosecond, and store the amount rounded up into
888 * the error. This causes the likely below to be unlikely.
889 *
3f86f28f 890 * The proper fix is to avoid rounding up by using
4e250fdd 891 * the high precision tk->xtime_nsec instead of
c2bc1111
JS
892 * xtime.tv_nsec everywhere. Fixing this will take some
893 * time.
894 */
8524070b 895 if (likely(error <= interval))
896 adj = 1;
897 else
1d17d174
IM
898 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
899 } else {
900 if (error < -interval) {
901 /* See comment above, this is just switched for the negative */
902 error >>= 2;
903 if (likely(error >= -interval)) {
904 adj = -1;
905 interval = -interval;
906 offset = -offset;
907 } else {
908 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
909 }
910 } else {
911 goto out_adjust;
912 }
913 }
8524070b 914
f726a697
JS
915 if (unlikely(tk->clock->maxadj &&
916 (tk->mult + adj > tk->clock->mult + tk->clock->maxadj))) {
e919cfd4
JS
917 printk_once(KERN_WARNING
918 "Adjusting %s more than 11%% (%ld vs %ld)\n",
f726a697
JS
919 tk->clock->name, (long)tk->mult + adj,
920 (long)tk->clock->mult + tk->clock->maxadj);
e919cfd4 921 }
c2bc1111
JS
922 /*
923 * So the following can be confusing.
924 *
925 * To keep things simple, lets assume adj == 1 for now.
926 *
927 * When adj != 1, remember that the interval and offset values
928 * have been appropriately scaled so the math is the same.
929 *
930 * The basic idea here is that we're increasing the multiplier
931 * by one, this causes the xtime_interval to be incremented by
932 * one cycle_interval. This is because:
933 * xtime_interval = cycle_interval * mult
934 * So if mult is being incremented by one:
935 * xtime_interval = cycle_interval * (mult + 1)
936 * Its the same as:
937 * xtime_interval = (cycle_interval * mult) + cycle_interval
938 * Which can be shortened to:
939 * xtime_interval += cycle_interval
940 *
941 * So offset stores the non-accumulated cycles. Thus the current
942 * time (in shifted nanoseconds) is:
943 * now = (offset * adj) + xtime_nsec
944 * Now, even though we're adjusting the clock frequency, we have
945 * to keep time consistent. In other words, we can't jump back
946 * in time, and we also want to avoid jumping forward in time.
947 *
948 * So given the same offset value, we need the time to be the same
949 * both before and after the freq adjustment.
950 * now = (offset * adj_1) + xtime_nsec_1
951 * now = (offset * adj_2) + xtime_nsec_2
952 * So:
953 * (offset * adj_1) + xtime_nsec_1 =
954 * (offset * adj_2) + xtime_nsec_2
955 * And we know:
956 * adj_2 = adj_1 + 1
957 * So:
958 * (offset * adj_1) + xtime_nsec_1 =
959 * (offset * (adj_1+1)) + xtime_nsec_2
960 * (offset * adj_1) + xtime_nsec_1 =
961 * (offset * adj_1) + offset + xtime_nsec_2
962 * Canceling the sides:
963 * xtime_nsec_1 = offset + xtime_nsec_2
964 * Which gives us:
965 * xtime_nsec_2 = xtime_nsec_1 - offset
966 * Which simplfies to:
967 * xtime_nsec -= offset
968 *
969 * XXX - TODO: Doc ntp_error calculation.
970 */
f726a697
JS
971 tk->mult += adj;
972 tk->xtime_interval += interval;
973 tk->xtime_nsec -= offset;
974 tk->ntp_error -= (interval - offset) << tk->ntp_error_shift;
2a8c0883 975
1d17d174 976out_adjust:
2a8c0883
JS
977 /*
978 * It may be possible that when we entered this function, xtime_nsec
979 * was very small. Further, if we're slightly speeding the clocksource
980 * in the code above, its possible the required corrective factor to
981 * xtime_nsec could cause it to underflow.
982 *
983 * Now, since we already accumulated the second, cannot simply roll
984 * the accumulated second back, since the NTP subsystem has been
985 * notified via second_overflow. So instead we push xtime_nsec forward
986 * by the amount we underflowed, and add that amount into the error.
987 *
988 * We'll correct this error next time through this function, when
989 * xtime_nsec is not as small.
990 */
f726a697
JS
991 if (unlikely((s64)tk->xtime_nsec < 0)) {
992 s64 neg = -(s64)tk->xtime_nsec;
993 tk->xtime_nsec = 0;
994 tk->ntp_error += neg << tk->ntp_error_shift;
2a8c0883
JS
995 }
996
8524070b 997}
998
1f4f9487
JS
999/**
1000 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
1001 *
1002 * Helper function that accumulates a the nsecs greater then a second
1003 * from the xtime_nsec field to the xtime_secs field.
1004 * It also calls into the NTP code to handle leapsecond processing.
1005 *
1006 */
1007static inline void accumulate_nsecs_to_secs(struct timekeeper *tk)
1008{
1009 u64 nsecps = (u64)NSEC_PER_SEC << tk->shift;
1010
1011 while (tk->xtime_nsec >= nsecps) {
1012 int leap;
1013
1014 tk->xtime_nsec -= nsecps;
1015 tk->xtime_sec++;
1016
1017 /* Figure out if its a leap sec and apply if needed */
1018 leap = second_overflow(tk->xtime_sec);
6d0ef903
JS
1019 if (unlikely(leap)) {
1020 struct timespec ts;
1021
1022 tk->xtime_sec += leap;
1f4f9487 1023
6d0ef903
JS
1024 ts.tv_sec = leap;
1025 ts.tv_nsec = 0;
1026 tk_set_wall_to_mono(tk,
1027 timespec_sub(tk->wall_to_monotonic, ts));
1028
1029 clock_was_set_delayed();
1030 }
1f4f9487
JS
1031 }
1032}
1033
a092ff0f 1034/**
1035 * logarithmic_accumulation - shifted accumulation of cycles
1036 *
1037 * This functions accumulates a shifted interval of cycles into
1038 * into a shifted interval nanoseconds. Allows for O(log) accumulation
1039 * loop.
1040 *
1041 * Returns the unconsumed cycles.
1042 */
f726a697
JS
1043static cycle_t logarithmic_accumulation(struct timekeeper *tk, cycle_t offset,
1044 u32 shift)
a092ff0f 1045{
deda2e81 1046 u64 raw_nsecs;
a092ff0f 1047
f726a697
JS
1048 /* If the offset is smaller then a shifted interval, do nothing */
1049 if (offset < tk->cycle_interval<<shift)
a092ff0f 1050 return offset;
1051
1052 /* Accumulate one shifted interval */
f726a697
JS
1053 offset -= tk->cycle_interval << shift;
1054 tk->clock->cycle_last += tk->cycle_interval << shift;
a092ff0f 1055
f726a697
JS
1056 tk->xtime_nsec += tk->xtime_interval << shift;
1057 accumulate_nsecs_to_secs(tk);
a092ff0f 1058
deda2e81 1059 /* Accumulate raw time */
f726a697
JS
1060 raw_nsecs = tk->raw_interval << shift;
1061 raw_nsecs += tk->raw_time.tv_nsec;
c7dcf87a
JS
1062 if (raw_nsecs >= NSEC_PER_SEC) {
1063 u64 raw_secs = raw_nsecs;
1064 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
f726a697 1065 tk->raw_time.tv_sec += raw_secs;
a092ff0f 1066 }
f726a697 1067 tk->raw_time.tv_nsec = raw_nsecs;
a092ff0f 1068
1069 /* Accumulate error between NTP and clock interval */
f726a697
JS
1070 tk->ntp_error += ntp_tick_length() << shift;
1071 tk->ntp_error -= (tk->xtime_interval + tk->xtime_remainder) <<
1072 (tk->ntp_error_shift + shift);
a092ff0f 1073
1074 return offset;
1075}
1076
8524070b 1077/**
1078 * update_wall_time - Uses the current clocksource to increment the wall time
1079 *
8524070b 1080 */
871cf1e5 1081static void update_wall_time(void)
8524070b 1082{
155ec602 1083 struct clocksource *clock;
4e250fdd 1084 struct timekeeper *tk = &timekeeper;
8524070b 1085 cycle_t offset;
a092ff0f 1086 int shift = 0, maxshift;
70471f2f 1087 unsigned long flags;
1e75fa8b 1088 s64 remainder;
70471f2f 1089
4e250fdd 1090 write_seqlock_irqsave(&tk->lock, flags);
8524070b 1091
1092 /* Make sure we're fully resumed: */
1093 if (unlikely(timekeeping_suspended))
70471f2f 1094 goto out;
8524070b 1095
4e250fdd 1096 clock = tk->clock;
592913ec
JS
1097
1098#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
4e250fdd 1099 offset = tk->cycle_interval;
592913ec
JS
1100#else
1101 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
8524070b 1102#endif
8524070b 1103
bf2ac312
JS
1104 /* Check if there's really nothing to do */
1105 if (offset < tk->cycle_interval)
1106 goto out;
1107
a092ff0f 1108 /*
1109 * With NO_HZ we may have to accumulate many cycle_intervals
1110 * (think "ticks") worth of time at once. To do this efficiently,
1111 * we calculate the largest doubling multiple of cycle_intervals
88b28adf 1112 * that is smaller than the offset. We then accumulate that
a092ff0f 1113 * chunk in one go, and then try to consume the next smaller
1114 * doubled multiple.
8524070b 1115 */
4e250fdd 1116 shift = ilog2(offset) - ilog2(tk->cycle_interval);
a092ff0f 1117 shift = max(0, shift);
88b28adf 1118 /* Bound shift to one less than what overflows tick_length */
ea7cf49a 1119 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
a092ff0f 1120 shift = min(shift, maxshift);
4e250fdd
JS
1121 while (offset >= tk->cycle_interval) {
1122 offset = logarithmic_accumulation(tk, offset, shift);
1123 if (offset < tk->cycle_interval<<shift)
830ec045 1124 shift--;
8524070b 1125 }
1126
1127 /* correct the clock when NTP error is too big */
4e250fdd 1128 timekeeping_adjust(tk, offset);
8524070b 1129
6c9bacb4 1130
6a867a39 1131 /*
1e75fa8b
JS
1132 * Store only full nanoseconds into xtime_nsec after rounding
1133 * it up and add the remainder to the error difference.
1134 * XXX - This is necessary to avoid small 1ns inconsistnecies caused
1135 * by truncating the remainder in vsyscalls. However, it causes
1136 * additional work to be done in timekeeping_adjust(). Once
1137 * the vsyscall implementations are converted to use xtime_nsec
1138 * (shifted nanoseconds), this can be killed.
1139 */
6ea565a9 1140 remainder = tk->xtime_nsec & ((1ULL << tk->shift) - 1);
4e250fdd 1141 tk->xtime_nsec -= remainder;
6ea565a9 1142 tk->xtime_nsec += 1ULL << tk->shift;
4e250fdd 1143 tk->ntp_error += remainder << tk->ntp_error_shift;
8524070b 1144
6a867a39
JS
1145 /*
1146 * Finally, make sure that after the rounding
1e75fa8b 1147 * xtime_nsec isn't larger than NSEC_PER_SEC
6a867a39 1148 */
4e250fdd 1149 accumulate_nsecs_to_secs(tk);
83f57a11 1150
4e250fdd 1151 timekeeping_update(tk, false);
70471f2f
JS
1152
1153out:
4e250fdd 1154 write_sequnlock_irqrestore(&tk->lock, flags);
70471f2f 1155
8524070b 1156}
7c3f1a57
TJ
1157
1158/**
1159 * getboottime - Return the real time of system boot.
1160 * @ts: pointer to the timespec to be set
1161 *
abb3a4ea 1162 * Returns the wall-time of boot in a timespec.
7c3f1a57
TJ
1163 *
1164 * This is based on the wall_to_monotonic offset and the total suspend
1165 * time. Calls to settimeofday will affect the value returned (which
1166 * basically means that however wrong your real time clock is at boot time,
1167 * you get the right time here).
1168 */
1169void getboottime(struct timespec *ts)
1170{
4e250fdd 1171 struct timekeeper *tk = &timekeeper;
36d47481 1172 struct timespec boottime = {
4e250fdd
JS
1173 .tv_sec = tk->wall_to_monotonic.tv_sec +
1174 tk->total_sleep_time.tv_sec,
1175 .tv_nsec = tk->wall_to_monotonic.tv_nsec +
1176 tk->total_sleep_time.tv_nsec
36d47481 1177 };
d4f587c6 1178
d4f587c6 1179 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
7c3f1a57 1180}
c93d89f3 1181EXPORT_SYMBOL_GPL(getboottime);
7c3f1a57 1182
abb3a4ea
JS
1183/**
1184 * get_monotonic_boottime - Returns monotonic time since boot
1185 * @ts: pointer to the timespec to be set
1186 *
1187 * Returns the monotonic time since boot in a timespec.
1188 *
1189 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1190 * includes the time spent in suspend.
1191 */
1192void get_monotonic_boottime(struct timespec *ts)
1193{
4e250fdd 1194 struct timekeeper *tk = &timekeeper;
abb3a4ea 1195 struct timespec tomono, sleep;
ec145bab 1196 s64 nsec;
abb3a4ea 1197 unsigned int seq;
abb3a4ea
JS
1198
1199 WARN_ON(timekeeping_suspended);
1200
1201 do {
4e250fdd
JS
1202 seq = read_seqbegin(&tk->lock);
1203 ts->tv_sec = tk->xtime_sec;
ec145bab 1204 nsec = timekeeping_get_ns(tk);
4e250fdd
JS
1205 tomono = tk->wall_to_monotonic;
1206 sleep = tk->total_sleep_time;
abb3a4ea 1207
4e250fdd 1208 } while (read_seqretry(&tk->lock, seq));
abb3a4ea 1209
ec145bab
JS
1210 ts->tv_sec += tomono.tv_sec + sleep.tv_sec;
1211 ts->tv_nsec = 0;
1212 timespec_add_ns(ts, nsec + tomono.tv_nsec + sleep.tv_nsec);
abb3a4ea
JS
1213}
1214EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1215
1216/**
1217 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1218 *
1219 * Returns the monotonic time since boot in a ktime
1220 *
1221 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1222 * includes the time spent in suspend.
1223 */
1224ktime_t ktime_get_boottime(void)
1225{
1226 struct timespec ts;
1227
1228 get_monotonic_boottime(&ts);
1229 return timespec_to_ktime(ts);
1230}
1231EXPORT_SYMBOL_GPL(ktime_get_boottime);
1232
7c3f1a57
TJ
1233/**
1234 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1235 * @ts: pointer to the timespec to be converted
1236 */
1237void monotonic_to_bootbased(struct timespec *ts)
1238{
4e250fdd
JS
1239 struct timekeeper *tk = &timekeeper;
1240
1241 *ts = timespec_add(*ts, tk->total_sleep_time);
7c3f1a57 1242}
c93d89f3 1243EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
2c6b47de 1244
17c38b74 1245unsigned long get_seconds(void)
1246{
4e250fdd
JS
1247 struct timekeeper *tk = &timekeeper;
1248
1249 return tk->xtime_sec;
17c38b74 1250}
1251EXPORT_SYMBOL(get_seconds);
1252
da15cfda 1253struct timespec __current_kernel_time(void)
1254{
4e250fdd
JS
1255 struct timekeeper *tk = &timekeeper;
1256
1257 return tk_xtime(tk);
da15cfda 1258}
17c38b74 1259
2c6b47de 1260struct timespec current_kernel_time(void)
1261{
4e250fdd 1262 struct timekeeper *tk = &timekeeper;
2c6b47de 1263 struct timespec now;
1264 unsigned long seq;
1265
1266 do {
4e250fdd 1267 seq = read_seqbegin(&tk->lock);
83f57a11 1268
4e250fdd
JS
1269 now = tk_xtime(tk);
1270 } while (read_seqretry(&tk->lock, seq));
2c6b47de 1271
1272 return now;
1273}
2c6b47de 1274EXPORT_SYMBOL(current_kernel_time);
da15cfda 1275
1276struct timespec get_monotonic_coarse(void)
1277{
4e250fdd 1278 struct timekeeper *tk = &timekeeper;
da15cfda 1279 struct timespec now, mono;
1280 unsigned long seq;
1281
1282 do {
4e250fdd 1283 seq = read_seqbegin(&tk->lock);
83f57a11 1284
4e250fdd
JS
1285 now = tk_xtime(tk);
1286 mono = tk->wall_to_monotonic;
1287 } while (read_seqretry(&tk->lock, seq));
da15cfda 1288
1289 set_normalized_timespec(&now, now.tv_sec + mono.tv_sec,
1290 now.tv_nsec + mono.tv_nsec);
1291 return now;
1292}
871cf1e5
TH
1293
1294/*
1295 * The 64-bit jiffies value is not atomic - you MUST NOT read it
1296 * without sampling the sequence number in xtime_lock.
1297 * jiffies is defined in the linker script...
1298 */
1299void do_timer(unsigned long ticks)
1300{
1301 jiffies_64 += ticks;
1302 update_wall_time();
1303 calc_global_load(ticks);
1304}
48cf76f7
TH
1305
1306/**
314ac371
JS
1307 * get_xtime_and_monotonic_and_sleep_offset() - get xtime, wall_to_monotonic,
1308 * and sleep offsets.
48cf76f7
TH
1309 * @xtim: pointer to timespec to be set with xtime
1310 * @wtom: pointer to timespec to be set with wall_to_monotonic
314ac371 1311 * @sleep: pointer to timespec to be set with time in suspend
48cf76f7 1312 */
314ac371
JS
1313void get_xtime_and_monotonic_and_sleep_offset(struct timespec *xtim,
1314 struct timespec *wtom, struct timespec *sleep)
48cf76f7 1315{
4e250fdd 1316 struct timekeeper *tk = &timekeeper;
48cf76f7
TH
1317 unsigned long seq;
1318
1319 do {
4e250fdd
JS
1320 seq = read_seqbegin(&tk->lock);
1321 *xtim = tk_xtime(tk);
1322 *wtom = tk->wall_to_monotonic;
1323 *sleep = tk->total_sleep_time;
1324 } while (read_seqretry(&tk->lock, seq));
48cf76f7 1325}
f0af911a 1326
f6c06abf
TG
1327#ifdef CONFIG_HIGH_RES_TIMERS
1328/**
1329 * ktime_get_update_offsets - hrtimer helper
1330 * @offs_real: pointer to storage for monotonic -> realtime offset
1331 * @offs_boot: pointer to storage for monotonic -> boottime offset
1332 *
1333 * Returns current monotonic time and updates the offsets
1334 * Called from hrtimer_interupt() or retrigger_next_event()
1335 */
1336ktime_t ktime_get_update_offsets(ktime_t *offs_real, ktime_t *offs_boot)
1337{
4e250fdd 1338 struct timekeeper *tk = &timekeeper;
f6c06abf
TG
1339 ktime_t now;
1340 unsigned int seq;
1341 u64 secs, nsecs;
1342
1343 do {
4e250fdd 1344 seq = read_seqbegin(&tk->lock);
f6c06abf 1345
4e250fdd
JS
1346 secs = tk->xtime_sec;
1347 nsecs = timekeeping_get_ns(tk);
f6c06abf 1348
4e250fdd
JS
1349 *offs_real = tk->offs_real;
1350 *offs_boot = tk->offs_boot;
1351 } while (read_seqretry(&tk->lock, seq));
f6c06abf
TG
1352
1353 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1354 now = ktime_sub(now, *offs_real);
1355 return now;
1356}
1357#endif
1358
99ee5315
TG
1359/**
1360 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1361 */
1362ktime_t ktime_get_monotonic_offset(void)
1363{
4e250fdd 1364 struct timekeeper *tk = &timekeeper;
99ee5315
TG
1365 unsigned long seq;
1366 struct timespec wtom;
1367
1368 do {
4e250fdd
JS
1369 seq = read_seqbegin(&tk->lock);
1370 wtom = tk->wall_to_monotonic;
1371 } while (read_seqretry(&tk->lock, seq));
70471f2f 1372
99ee5315
TG
1373 return timespec_to_ktime(wtom);
1374}
a80b83b7
JS
1375EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1376
f0af911a
TH
1377/**
1378 * xtime_update() - advances the timekeeping infrastructure
1379 * @ticks: number of ticks, that have elapsed since the last call.
1380 *
1381 * Must be called with interrupts disabled.
1382 */
1383void xtime_update(unsigned long ticks)
1384{
1385 write_seqlock(&xtime_lock);
1386 do_timer(ticks);
1387 write_sequnlock(&xtime_lock);
1388}
This page took 0.507772 seconds and 5 git commands to generate.