x86/efi: Enforce CONFIG_RELOCATABLE for EFI boot stub
[linux/fpc-iii.git] / kernel / time / timekeeping.c
blobbfca770a64e0f130266d29b9018998d97fb9785e
1 /*
2 * linux/kernel/time/timekeeping.c
4 * Kernel timekeeping code and accessor functions
6 * This code was moved from linux/kernel/timer.c.
7 * Please see that file for copyright and history logs.
9 */
11 #include <linux/timekeeper_internal.h>
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>
17 #include <linux/sched.h>
18 #include <linux/syscore_ops.h>
19 #include <linux/clocksource.h>
20 #include <linux/jiffies.h>
21 #include <linux/time.h>
22 #include <linux/tick.h>
23 #include <linux/stop_machine.h>
24 #include <linux/pvclock_gtod.h>
26 #include "tick-internal.h"
27 #include "ntp_internal.h"
28 #include "timekeeping_internal.h"
30 #define TK_CLEAR_NTP (1 << 0)
31 #define TK_MIRROR (1 << 1)
32 #define TK_CLOCK_WAS_SET (1 << 2)
34 static struct timekeeper timekeeper;
35 static DEFINE_RAW_SPINLOCK(timekeeper_lock);
36 static seqcount_t timekeeper_seq;
37 static struct timekeeper shadow_timekeeper;
39 /* flag for if timekeeping is suspended */
40 int __read_mostly timekeeping_suspended;
42 /* Flag for if there is a persistent clock on this platform */
43 bool __read_mostly persistent_clock_exist = false;
45 static inline void tk_normalize_xtime(struct timekeeper *tk)
47 while (tk->xtime_nsec >= ((u64)NSEC_PER_SEC << tk->shift)) {
48 tk->xtime_nsec -= (u64)NSEC_PER_SEC << tk->shift;
49 tk->xtime_sec++;
53 static void tk_set_xtime(struct timekeeper *tk, const struct timespec *ts)
55 tk->xtime_sec = ts->tv_sec;
56 tk->xtime_nsec = (u64)ts->tv_nsec << tk->shift;
59 static void tk_xtime_add(struct timekeeper *tk, const struct timespec *ts)
61 tk->xtime_sec += ts->tv_sec;
62 tk->xtime_nsec += (u64)ts->tv_nsec << tk->shift;
63 tk_normalize_xtime(tk);
66 static void tk_set_wall_to_mono(struct timekeeper *tk, struct timespec wtm)
68 struct timespec tmp;
71 * Verify consistency of: offset_real = -wall_to_monotonic
72 * before modifying anything
74 set_normalized_timespec(&tmp, -tk->wall_to_monotonic.tv_sec,
75 -tk->wall_to_monotonic.tv_nsec);
76 WARN_ON_ONCE(tk->offs_real.tv64 != timespec_to_ktime(tmp).tv64);
77 tk->wall_to_monotonic = wtm;
78 set_normalized_timespec(&tmp, -wtm.tv_sec, -wtm.tv_nsec);
79 tk->offs_real = timespec_to_ktime(tmp);
80 tk->offs_tai = ktime_add(tk->offs_real, ktime_set(tk->tai_offset, 0));
83 static void tk_set_sleep_time(struct timekeeper *tk, struct timespec t)
85 /* Verify consistency before modifying */
86 WARN_ON_ONCE(tk->offs_boot.tv64 != timespec_to_ktime(tk->total_sleep_time).tv64);
88 tk->total_sleep_time = t;
89 tk->offs_boot = timespec_to_ktime(t);
92 /**
93 * timekeeper_setup_internals - Set up internals to use clocksource clock.
95 * @clock: Pointer to clocksource.
97 * Calculates a fixed cycle/nsec interval for a given clocksource/adjustment
98 * pair and interval request.
100 * Unless you're the timekeeping code, you should not be using this!
102 static void tk_setup_internals(struct timekeeper *tk, struct clocksource *clock)
104 cycle_t interval;
105 u64 tmp, ntpinterval;
106 struct clocksource *old_clock;
108 old_clock = tk->clock;
109 tk->clock = clock;
110 tk->cycle_last = clock->cycle_last = clock->read(clock);
112 /* Do the ns -> cycle conversion first, using original mult */
113 tmp = NTP_INTERVAL_LENGTH;
114 tmp <<= clock->shift;
115 ntpinterval = tmp;
116 tmp += clock->mult/2;
117 do_div(tmp, clock->mult);
118 if (tmp == 0)
119 tmp = 1;
121 interval = (cycle_t) tmp;
122 tk->cycle_interval = interval;
124 /* Go back from cycles -> shifted ns */
125 tk->xtime_interval = (u64) interval * clock->mult;
126 tk->xtime_remainder = ntpinterval - tk->xtime_interval;
127 tk->raw_interval =
128 ((u64) interval * clock->mult) >> clock->shift;
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)
134 tk->xtime_nsec >>= -shift_change;
135 else
136 tk->xtime_nsec <<= shift_change;
138 tk->shift = clock->shift;
140 tk->ntp_error = 0;
141 tk->ntp_error_shift = NTP_SCALE_SHIFT - clock->shift;
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.
148 tk->mult = clock->mult;
151 /* Timekeeper helper functions. */
153 #ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
154 u32 (*arch_gettimeoffset)(void);
156 u32 get_arch_timeoffset(void)
158 if (likely(arch_gettimeoffset))
159 return arch_gettimeoffset();
160 return 0;
162 #else
163 static inline u32 get_arch_timeoffset(void) { return 0; }
164 #endif
166 static inline s64 timekeeping_get_ns(struct timekeeper *tk)
168 cycle_t cycle_now, cycle_delta;
169 struct clocksource *clock;
170 s64 nsec;
172 /* read clocksource: */
173 clock = tk->clock;
174 cycle_now = clock->read(clock);
176 /* calculate the delta since the last update_wall_time: */
177 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
179 nsec = cycle_delta * tk->mult + tk->xtime_nsec;
180 nsec >>= tk->shift;
182 /* If arch requires, add in get_arch_timeoffset() */
183 return nsec + get_arch_timeoffset();
186 static inline s64 timekeeping_get_ns_raw(struct timekeeper *tk)
188 cycle_t cycle_now, cycle_delta;
189 struct clocksource *clock;
190 s64 nsec;
192 /* read clocksource: */
193 clock = tk->clock;
194 cycle_now = clock->read(clock);
196 /* calculate the delta since the last update_wall_time: */
197 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
199 /* convert delta to nanoseconds. */
200 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
202 /* If arch requires, add in get_arch_timeoffset() */
203 return nsec + get_arch_timeoffset();
206 static RAW_NOTIFIER_HEAD(pvclock_gtod_chain);
208 static void update_pvclock_gtod(struct timekeeper *tk, bool was_set)
210 raw_notifier_call_chain(&pvclock_gtod_chain, was_set, tk);
214 * pvclock_gtod_register_notifier - register a pvclock timedata update listener
216 int pvclock_gtod_register_notifier(struct notifier_block *nb)
218 struct timekeeper *tk = &timekeeper;
219 unsigned long flags;
220 int ret;
222 raw_spin_lock_irqsave(&timekeeper_lock, flags);
223 ret = raw_notifier_chain_register(&pvclock_gtod_chain, nb);
224 update_pvclock_gtod(tk, true);
225 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
227 return ret;
229 EXPORT_SYMBOL_GPL(pvclock_gtod_register_notifier);
232 * pvclock_gtod_unregister_notifier - unregister a pvclock
233 * timedata update listener
235 int pvclock_gtod_unregister_notifier(struct notifier_block *nb)
237 unsigned long flags;
238 int ret;
240 raw_spin_lock_irqsave(&timekeeper_lock, flags);
241 ret = raw_notifier_chain_unregister(&pvclock_gtod_chain, nb);
242 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
244 return ret;
246 EXPORT_SYMBOL_GPL(pvclock_gtod_unregister_notifier);
248 /* must hold timekeeper_lock */
249 static void timekeeping_update(struct timekeeper *tk, unsigned int action)
251 if (action & TK_CLEAR_NTP) {
252 tk->ntp_error = 0;
253 ntp_clear();
255 update_vsyscall(tk);
256 update_pvclock_gtod(tk, action & TK_CLOCK_WAS_SET);
258 if (action & TK_MIRROR)
259 memcpy(&shadow_timekeeper, &timekeeper, sizeof(timekeeper));
263 * timekeeping_forward_now - update clock to the current time
265 * Forward the current clock to update its state since the last call to
266 * update_wall_time(). This is useful before significant clock changes,
267 * as it avoids having to deal with this time offset explicitly.
269 static void timekeeping_forward_now(struct timekeeper *tk)
271 cycle_t cycle_now, cycle_delta;
272 struct clocksource *clock;
273 s64 nsec;
275 clock = tk->clock;
276 cycle_now = clock->read(clock);
277 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
278 tk->cycle_last = clock->cycle_last = cycle_now;
280 tk->xtime_nsec += cycle_delta * tk->mult;
282 /* If arch requires, add in get_arch_timeoffset() */
283 tk->xtime_nsec += (u64)get_arch_timeoffset() << tk->shift;
285 tk_normalize_xtime(tk);
287 nsec = clocksource_cyc2ns(cycle_delta, clock->mult, clock->shift);
288 timespec_add_ns(&tk->raw_time, nsec);
292 * __getnstimeofday - Returns the time of day in a timespec.
293 * @ts: pointer to the timespec to be set
295 * Updates the time of day in the timespec.
296 * Returns 0 on success, or -ve when suspended (timespec will be undefined).
298 int __getnstimeofday(struct timespec *ts)
300 struct timekeeper *tk = &timekeeper;
301 unsigned long seq;
302 s64 nsecs = 0;
304 do {
305 seq = read_seqcount_begin(&timekeeper_seq);
307 ts->tv_sec = tk->xtime_sec;
308 nsecs = timekeeping_get_ns(tk);
310 } while (read_seqcount_retry(&timekeeper_seq, seq));
312 ts->tv_nsec = 0;
313 timespec_add_ns(ts, nsecs);
316 * Do not bail out early, in case there were callers still using
317 * the value, even in the face of the WARN_ON.
319 if (unlikely(timekeeping_suspended))
320 return -EAGAIN;
321 return 0;
323 EXPORT_SYMBOL(__getnstimeofday);
326 * getnstimeofday - Returns the time of day in a timespec.
327 * @ts: pointer to the timespec to be set
329 * Returns the time of day in a timespec (WARN if suspended).
331 void getnstimeofday(struct timespec *ts)
333 WARN_ON(__getnstimeofday(ts));
335 EXPORT_SYMBOL(getnstimeofday);
337 ktime_t ktime_get(void)
339 struct timekeeper *tk = &timekeeper;
340 unsigned int seq;
341 s64 secs, nsecs;
343 WARN_ON(timekeeping_suspended);
345 do {
346 seq = read_seqcount_begin(&timekeeper_seq);
347 secs = tk->xtime_sec + tk->wall_to_monotonic.tv_sec;
348 nsecs = timekeeping_get_ns(tk) + tk->wall_to_monotonic.tv_nsec;
350 } while (read_seqcount_retry(&timekeeper_seq, seq));
352 * Use ktime_set/ktime_add_ns to create a proper ktime on
353 * 32-bit architectures without CONFIG_KTIME_SCALAR.
355 return ktime_add_ns(ktime_set(secs, 0), nsecs);
357 EXPORT_SYMBOL_GPL(ktime_get);
360 * ktime_get_ts - get the monotonic clock in timespec format
361 * @ts: pointer to timespec variable
363 * The function calculates the monotonic clock from the realtime
364 * clock and the wall_to_monotonic offset and stores the result
365 * in normalized timespec format in the variable pointed to by @ts.
367 void ktime_get_ts(struct timespec *ts)
369 struct timekeeper *tk = &timekeeper;
370 struct timespec tomono;
371 s64 nsec;
372 unsigned int seq;
374 WARN_ON(timekeeping_suspended);
376 do {
377 seq = read_seqcount_begin(&timekeeper_seq);
378 ts->tv_sec = tk->xtime_sec;
379 nsec = timekeeping_get_ns(tk);
380 tomono = tk->wall_to_monotonic;
382 } while (read_seqcount_retry(&timekeeper_seq, seq));
384 ts->tv_sec += tomono.tv_sec;
385 ts->tv_nsec = 0;
386 timespec_add_ns(ts, nsec + tomono.tv_nsec);
388 EXPORT_SYMBOL_GPL(ktime_get_ts);
392 * timekeeping_clocktai - Returns the TAI time of day in a timespec
393 * @ts: pointer to the timespec to be set
395 * Returns the time of day in a timespec.
397 void timekeeping_clocktai(struct timespec *ts)
399 struct timekeeper *tk = &timekeeper;
400 unsigned long seq;
401 u64 nsecs;
403 WARN_ON(timekeeping_suspended);
405 do {
406 seq = read_seqcount_begin(&timekeeper_seq);
408 ts->tv_sec = tk->xtime_sec + tk->tai_offset;
409 nsecs = timekeeping_get_ns(tk);
411 } while (read_seqcount_retry(&timekeeper_seq, seq));
413 ts->tv_nsec = 0;
414 timespec_add_ns(ts, nsecs);
417 EXPORT_SYMBOL(timekeeping_clocktai);
421 * ktime_get_clocktai - Returns the TAI time of day in a ktime
423 * Returns the time of day in a ktime.
425 ktime_t ktime_get_clocktai(void)
427 struct timespec ts;
429 timekeeping_clocktai(&ts);
430 return timespec_to_ktime(ts);
432 EXPORT_SYMBOL(ktime_get_clocktai);
434 #ifdef CONFIG_NTP_PPS
437 * getnstime_raw_and_real - get day and raw monotonic time in timespec format
438 * @ts_raw: pointer to the timespec to be set to raw monotonic time
439 * @ts_real: pointer to the timespec to be set to the time of day
441 * This function reads both the time of day and raw monotonic time at the
442 * same time atomically and stores the resulting timestamps in timespec
443 * format.
445 void getnstime_raw_and_real(struct timespec *ts_raw, struct timespec *ts_real)
447 struct timekeeper *tk = &timekeeper;
448 unsigned long seq;
449 s64 nsecs_raw, nsecs_real;
451 WARN_ON_ONCE(timekeeping_suspended);
453 do {
454 seq = read_seqcount_begin(&timekeeper_seq);
456 *ts_raw = tk->raw_time;
457 ts_real->tv_sec = tk->xtime_sec;
458 ts_real->tv_nsec = 0;
460 nsecs_raw = timekeeping_get_ns_raw(tk);
461 nsecs_real = timekeeping_get_ns(tk);
463 } while (read_seqcount_retry(&timekeeper_seq, seq));
465 timespec_add_ns(ts_raw, nsecs_raw);
466 timespec_add_ns(ts_real, nsecs_real);
468 EXPORT_SYMBOL(getnstime_raw_and_real);
470 #endif /* CONFIG_NTP_PPS */
473 * do_gettimeofday - Returns the time of day in a timeval
474 * @tv: pointer to the timeval to be set
476 * NOTE: Users should be converted to using getnstimeofday()
478 void do_gettimeofday(struct timeval *tv)
480 struct timespec now;
482 getnstimeofday(&now);
483 tv->tv_sec = now.tv_sec;
484 tv->tv_usec = now.tv_nsec/1000;
486 EXPORT_SYMBOL(do_gettimeofday);
489 * do_settimeofday - Sets the time of day
490 * @tv: pointer to the timespec variable containing the new time
492 * Sets the time of day to the new time and update NTP and notify hrtimers
494 int do_settimeofday(const struct timespec *tv)
496 struct timekeeper *tk = &timekeeper;
497 struct timespec ts_delta, xt;
498 unsigned long flags;
500 if (!timespec_valid_strict(tv))
501 return -EINVAL;
503 raw_spin_lock_irqsave(&timekeeper_lock, flags);
504 write_seqcount_begin(&timekeeper_seq);
506 timekeeping_forward_now(tk);
508 xt = tk_xtime(tk);
509 ts_delta.tv_sec = tv->tv_sec - xt.tv_sec;
510 ts_delta.tv_nsec = tv->tv_nsec - xt.tv_nsec;
512 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, ts_delta));
514 tk_set_xtime(tk, tv);
516 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
518 write_seqcount_end(&timekeeper_seq);
519 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
521 /* signal hrtimers about time change */
522 clock_was_set();
524 return 0;
526 EXPORT_SYMBOL(do_settimeofday);
529 * timekeeping_inject_offset - Adds or subtracts from the current time.
530 * @tv: pointer to the timespec variable containing the offset
532 * Adds or subtracts an offset value from the current time.
534 int timekeeping_inject_offset(struct timespec *ts)
536 struct timekeeper *tk = &timekeeper;
537 unsigned long flags;
538 struct timespec tmp;
539 int ret = 0;
541 if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC)
542 return -EINVAL;
544 raw_spin_lock_irqsave(&timekeeper_lock, flags);
545 write_seqcount_begin(&timekeeper_seq);
547 timekeeping_forward_now(tk);
549 /* Make sure the proposed value is valid */
550 tmp = timespec_add(tk_xtime(tk), *ts);
551 if (!timespec_valid_strict(&tmp)) {
552 ret = -EINVAL;
553 goto error;
556 tk_xtime_add(tk, ts);
557 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *ts));
559 error: /* even if we error out, we forwarded the time, so call update */
560 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
562 write_seqcount_end(&timekeeper_seq);
563 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
565 /* signal hrtimers about time change */
566 clock_was_set();
568 return ret;
570 EXPORT_SYMBOL(timekeeping_inject_offset);
574 * timekeeping_get_tai_offset - Returns current TAI offset from UTC
577 s32 timekeeping_get_tai_offset(void)
579 struct timekeeper *tk = &timekeeper;
580 unsigned int seq;
581 s32 ret;
583 do {
584 seq = read_seqcount_begin(&timekeeper_seq);
585 ret = tk->tai_offset;
586 } while (read_seqcount_retry(&timekeeper_seq, seq));
588 return ret;
592 * __timekeeping_set_tai_offset - Lock free worker function
595 static void __timekeeping_set_tai_offset(struct timekeeper *tk, s32 tai_offset)
597 tk->tai_offset = tai_offset;
598 tk->offs_tai = ktime_add(tk->offs_real, ktime_set(tai_offset, 0));
602 * timekeeping_set_tai_offset - Sets the current TAI offset from UTC
605 void timekeeping_set_tai_offset(s32 tai_offset)
607 struct timekeeper *tk = &timekeeper;
608 unsigned long flags;
610 raw_spin_lock_irqsave(&timekeeper_lock, flags);
611 write_seqcount_begin(&timekeeper_seq);
612 __timekeeping_set_tai_offset(tk, tai_offset);
613 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
614 write_seqcount_end(&timekeeper_seq);
615 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
616 clock_was_set();
620 * change_clocksource - Swaps clocksources if a new one is available
622 * Accumulates current time interval and initializes new clocksource
624 static int change_clocksource(void *data)
626 struct timekeeper *tk = &timekeeper;
627 struct clocksource *new, *old;
628 unsigned long flags;
630 new = (struct clocksource *) data;
632 raw_spin_lock_irqsave(&timekeeper_lock, flags);
633 write_seqcount_begin(&timekeeper_seq);
635 timekeeping_forward_now(tk);
637 * If the cs is in module, get a module reference. Succeeds
638 * for built-in code (owner == NULL) as well.
640 if (try_module_get(new->owner)) {
641 if (!new->enable || new->enable(new) == 0) {
642 old = tk->clock;
643 tk_setup_internals(tk, new);
644 if (old->disable)
645 old->disable(old);
646 module_put(old->owner);
647 } else {
648 module_put(new->owner);
651 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
653 write_seqcount_end(&timekeeper_seq);
654 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
656 return 0;
660 * timekeeping_notify - Install a new clock source
661 * @clock: pointer to the clock source
663 * This function is called from clocksource.c after a new, better clock
664 * source has been registered. The caller holds the clocksource_mutex.
666 int timekeeping_notify(struct clocksource *clock)
668 struct timekeeper *tk = &timekeeper;
670 if (tk->clock == clock)
671 return 0;
672 stop_machine(change_clocksource, clock, NULL);
673 tick_clock_notify();
674 return tk->clock == clock ? 0 : -1;
678 * ktime_get_real - get the real (wall-) time in ktime_t format
680 * returns the time in ktime_t format
682 ktime_t ktime_get_real(void)
684 struct timespec now;
686 getnstimeofday(&now);
688 return timespec_to_ktime(now);
690 EXPORT_SYMBOL_GPL(ktime_get_real);
693 * getrawmonotonic - Returns the raw monotonic time in a timespec
694 * @ts: pointer to the timespec to be set
696 * Returns the raw monotonic time (completely un-modified by ntp)
698 void getrawmonotonic(struct timespec *ts)
700 struct timekeeper *tk = &timekeeper;
701 unsigned long seq;
702 s64 nsecs;
704 do {
705 seq = read_seqcount_begin(&timekeeper_seq);
706 nsecs = timekeeping_get_ns_raw(tk);
707 *ts = tk->raw_time;
709 } while (read_seqcount_retry(&timekeeper_seq, seq));
711 timespec_add_ns(ts, nsecs);
713 EXPORT_SYMBOL(getrawmonotonic);
716 * timekeeping_valid_for_hres - Check if timekeeping is suitable for hres
718 int timekeeping_valid_for_hres(void)
720 struct timekeeper *tk = &timekeeper;
721 unsigned long seq;
722 int ret;
724 do {
725 seq = read_seqcount_begin(&timekeeper_seq);
727 ret = tk->clock->flags & CLOCK_SOURCE_VALID_FOR_HRES;
729 } while (read_seqcount_retry(&timekeeper_seq, seq));
731 return ret;
735 * timekeeping_max_deferment - Returns max time the clocksource can be deferred
737 u64 timekeeping_max_deferment(void)
739 struct timekeeper *tk = &timekeeper;
740 unsigned long seq;
741 u64 ret;
743 do {
744 seq = read_seqcount_begin(&timekeeper_seq);
746 ret = tk->clock->max_idle_ns;
748 } while (read_seqcount_retry(&timekeeper_seq, seq));
750 return ret;
754 * read_persistent_clock - Return time from the persistent clock.
756 * Weak dummy function for arches that do not yet support it.
757 * Reads the time from the battery backed persistent clock.
758 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
760 * XXX - Do be sure to remove it once all arches implement it.
762 void __attribute__((weak)) read_persistent_clock(struct timespec *ts)
764 ts->tv_sec = 0;
765 ts->tv_nsec = 0;
769 * read_boot_clock - Return time of the system start.
771 * Weak dummy function for arches that do not yet support it.
772 * Function to read the exact time the system has been started.
773 * Returns a timespec with tv_sec=0 and tv_nsec=0 if unsupported.
775 * XXX - Do be sure to remove it once all arches implement it.
777 void __attribute__((weak)) read_boot_clock(struct timespec *ts)
779 ts->tv_sec = 0;
780 ts->tv_nsec = 0;
784 * timekeeping_init - Initializes the clocksource and common timekeeping values
786 void __init timekeeping_init(void)
788 struct timekeeper *tk = &timekeeper;
789 struct clocksource *clock;
790 unsigned long flags;
791 struct timespec now, boot, tmp;
793 read_persistent_clock(&now);
795 if (!timespec_valid_strict(&now)) {
796 pr_warn("WARNING: Persistent clock returned invalid value!\n"
797 " Check your CMOS/BIOS settings.\n");
798 now.tv_sec = 0;
799 now.tv_nsec = 0;
800 } else if (now.tv_sec || now.tv_nsec)
801 persistent_clock_exist = true;
803 read_boot_clock(&boot);
804 if (!timespec_valid_strict(&boot)) {
805 pr_warn("WARNING: Boot clock returned invalid value!\n"
806 " Check your CMOS/BIOS settings.\n");
807 boot.tv_sec = 0;
808 boot.tv_nsec = 0;
811 raw_spin_lock_irqsave(&timekeeper_lock, flags);
812 write_seqcount_begin(&timekeeper_seq);
813 ntp_init();
815 clock = clocksource_default_clock();
816 if (clock->enable)
817 clock->enable(clock);
818 tk_setup_internals(tk, clock);
820 tk_set_xtime(tk, &now);
821 tk->raw_time.tv_sec = 0;
822 tk->raw_time.tv_nsec = 0;
823 if (boot.tv_sec == 0 && boot.tv_nsec == 0)
824 boot = tk_xtime(tk);
826 set_normalized_timespec(&tmp, -boot.tv_sec, -boot.tv_nsec);
827 tk_set_wall_to_mono(tk, tmp);
829 tmp.tv_sec = 0;
830 tmp.tv_nsec = 0;
831 tk_set_sleep_time(tk, tmp);
833 memcpy(&shadow_timekeeper, &timekeeper, sizeof(timekeeper));
835 write_seqcount_end(&timekeeper_seq);
836 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
839 /* time in seconds when suspend began */
840 static struct timespec timekeeping_suspend_time;
843 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
844 * @delta: pointer to a timespec delta value
846 * Takes a timespec offset measuring a suspend interval and properly
847 * adds the sleep offset to the timekeeping variables.
849 static void __timekeeping_inject_sleeptime(struct timekeeper *tk,
850 struct timespec *delta)
852 if (!timespec_valid_strict(delta)) {
853 printk(KERN_WARNING "__timekeeping_inject_sleeptime: Invalid "
854 "sleep delta value!\n");
855 return;
857 tk_xtime_add(tk, delta);
858 tk_set_wall_to_mono(tk, timespec_sub(tk->wall_to_monotonic, *delta));
859 tk_set_sleep_time(tk, timespec_add(tk->total_sleep_time, *delta));
860 tk_debug_account_sleep_time(delta);
864 * timekeeping_inject_sleeptime - Adds suspend interval to timeekeeping values
865 * @delta: pointer to a timespec delta value
867 * This hook is for architectures that cannot support read_persistent_clock
868 * because their RTC/persistent clock is only accessible when irqs are enabled.
870 * This function should only be called by rtc_resume(), and allows
871 * a suspend offset to be injected into the timekeeping values.
873 void timekeeping_inject_sleeptime(struct timespec *delta)
875 struct timekeeper *tk = &timekeeper;
876 unsigned long flags;
879 * Make sure we don't set the clock twice, as timekeeping_resume()
880 * already did it
882 if (has_persistent_clock())
883 return;
885 raw_spin_lock_irqsave(&timekeeper_lock, flags);
886 write_seqcount_begin(&timekeeper_seq);
888 timekeeping_forward_now(tk);
890 __timekeeping_inject_sleeptime(tk, delta);
892 timekeeping_update(tk, TK_CLEAR_NTP | TK_MIRROR | TK_CLOCK_WAS_SET);
894 write_seqcount_end(&timekeeper_seq);
895 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
897 /* signal hrtimers about time change */
898 clock_was_set();
902 * timekeeping_resume - Resumes the generic timekeeping subsystem.
904 * This is for the generic clocksource timekeeping.
905 * xtime/wall_to_monotonic/jiffies/etc are
906 * still managed by arch specific suspend/resume code.
908 static void timekeeping_resume(void)
910 struct timekeeper *tk = &timekeeper;
911 struct clocksource *clock = tk->clock;
912 unsigned long flags;
913 struct timespec ts_new, ts_delta;
914 cycle_t cycle_now, cycle_delta;
915 bool suspendtime_found = false;
917 read_persistent_clock(&ts_new);
919 clockevents_resume();
920 clocksource_resume();
922 raw_spin_lock_irqsave(&timekeeper_lock, flags);
923 write_seqcount_begin(&timekeeper_seq);
926 * After system resumes, we need to calculate the suspended time and
927 * compensate it for the OS time. There are 3 sources that could be
928 * used: Nonstop clocksource during suspend, persistent clock and rtc
929 * device.
931 * One specific platform may have 1 or 2 or all of them, and the
932 * preference will be:
933 * suspend-nonstop clocksource -> persistent clock -> rtc
934 * The less preferred source will only be tried if there is no better
935 * usable source. The rtc part is handled separately in rtc core code.
937 cycle_now = clock->read(clock);
938 if ((clock->flags & CLOCK_SOURCE_SUSPEND_NONSTOP) &&
939 cycle_now > clock->cycle_last) {
940 u64 num, max = ULLONG_MAX;
941 u32 mult = clock->mult;
942 u32 shift = clock->shift;
943 s64 nsec = 0;
945 cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
948 * "cycle_delta * mutl" may cause 64 bits overflow, if the
949 * suspended time is too long. In that case we need do the
950 * 64 bits math carefully
952 do_div(max, mult);
953 if (cycle_delta > max) {
954 num = div64_u64(cycle_delta, max);
955 nsec = (((u64) max * mult) >> shift) * num;
956 cycle_delta -= num * max;
958 nsec += ((u64) cycle_delta * mult) >> shift;
960 ts_delta = ns_to_timespec(nsec);
961 suspendtime_found = true;
962 } else if (timespec_compare(&ts_new, &timekeeping_suspend_time) > 0) {
963 ts_delta = timespec_sub(ts_new, timekeeping_suspend_time);
964 suspendtime_found = true;
967 if (suspendtime_found)
968 __timekeeping_inject_sleeptime(tk, &ts_delta);
970 /* Re-base the last cycle value */
971 tk->cycle_last = clock->cycle_last = cycle_now;
972 tk->ntp_error = 0;
973 timekeeping_suspended = 0;
974 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
975 write_seqcount_end(&timekeeper_seq);
976 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
978 touch_softlockup_watchdog();
980 clockevents_notify(CLOCK_EVT_NOTIFY_RESUME, NULL);
982 /* Resume hrtimers */
983 hrtimers_resume();
986 static int timekeeping_suspend(void)
988 struct timekeeper *tk = &timekeeper;
989 unsigned long flags;
990 struct timespec delta, delta_delta;
991 static struct timespec old_delta;
993 read_persistent_clock(&timekeeping_suspend_time);
996 * On some systems the persistent_clock can not be detected at
997 * timekeeping_init by its return value, so if we see a valid
998 * value returned, update the persistent_clock_exists flag.
1000 if (timekeeping_suspend_time.tv_sec || timekeeping_suspend_time.tv_nsec)
1001 persistent_clock_exist = true;
1003 raw_spin_lock_irqsave(&timekeeper_lock, flags);
1004 write_seqcount_begin(&timekeeper_seq);
1005 timekeeping_forward_now(tk);
1006 timekeeping_suspended = 1;
1009 * To avoid drift caused by repeated suspend/resumes,
1010 * which each can add ~1 second drift error,
1011 * try to compensate so the difference in system time
1012 * and persistent_clock time stays close to constant.
1014 delta = timespec_sub(tk_xtime(tk), timekeeping_suspend_time);
1015 delta_delta = timespec_sub(delta, old_delta);
1016 if (abs(delta_delta.tv_sec) >= 2) {
1018 * if delta_delta is too large, assume time correction
1019 * has occured and set old_delta to the current delta.
1021 old_delta = delta;
1022 } else {
1023 /* Otherwise try to adjust old_system to compensate */
1024 timekeeping_suspend_time =
1025 timespec_add(timekeeping_suspend_time, delta_delta);
1028 timekeeping_update(tk, TK_MIRROR);
1029 write_seqcount_end(&timekeeper_seq);
1030 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
1032 clockevents_notify(CLOCK_EVT_NOTIFY_SUSPEND, NULL);
1033 clocksource_suspend();
1034 clockevents_suspend();
1036 return 0;
1039 /* sysfs resume/suspend bits for timekeeping */
1040 static struct syscore_ops timekeeping_syscore_ops = {
1041 .resume = timekeeping_resume,
1042 .suspend = timekeeping_suspend,
1045 static int __init timekeeping_init_ops(void)
1047 register_syscore_ops(&timekeeping_syscore_ops);
1048 return 0;
1051 device_initcall(timekeeping_init_ops);
1054 * If the error is already larger, we look ahead even further
1055 * to compensate for late or lost adjustments.
1057 static __always_inline int timekeeping_bigadjust(struct timekeeper *tk,
1058 s64 error, s64 *interval,
1059 s64 *offset)
1061 s64 tick_error, i;
1062 u32 look_ahead, adj;
1063 s32 error2, mult;
1066 * Use the current error value to determine how much to look ahead.
1067 * The larger the error the slower we adjust for it to avoid problems
1068 * with losing too many ticks, otherwise we would overadjust and
1069 * produce an even larger error. The smaller the adjustment the
1070 * faster we try to adjust for it, as lost ticks can do less harm
1071 * here. This is tuned so that an error of about 1 msec is adjusted
1072 * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
1074 error2 = tk->ntp_error >> (NTP_SCALE_SHIFT + 22 - 2 * SHIFT_HZ);
1075 error2 = abs(error2);
1076 for (look_ahead = 0; error2 > 0; look_ahead++)
1077 error2 >>= 2;
1080 * Now calculate the error in (1 << look_ahead) ticks, but first
1081 * remove the single look ahead already included in the error.
1083 tick_error = ntp_tick_length() >> (tk->ntp_error_shift + 1);
1084 tick_error -= tk->xtime_interval >> 1;
1085 error = ((error - tick_error) >> look_ahead) + tick_error;
1087 /* Finally calculate the adjustment shift value. */
1088 i = *interval;
1089 mult = 1;
1090 if (error < 0) {
1091 error = -error;
1092 *interval = -*interval;
1093 *offset = -*offset;
1094 mult = -1;
1096 for (adj = 0; error > i; adj++)
1097 error >>= 1;
1099 *interval <<= adj;
1100 *offset <<= adj;
1101 return mult << adj;
1105 * Adjust the multiplier to reduce the error value,
1106 * this is optimized for the most common adjustments of -1,0,1,
1107 * for other values we can do a bit more work.
1109 static void timekeeping_adjust(struct timekeeper *tk, s64 offset)
1111 s64 error, interval = tk->cycle_interval;
1112 int adj;
1115 * The point of this is to check if the error is greater than half
1116 * an interval.
1118 * First we shift it down from NTP_SHIFT to clocksource->shifted nsecs.
1120 * Note we subtract one in the shift, so that error is really error*2.
1121 * This "saves" dividing(shifting) interval twice, but keeps the
1122 * (error > interval) comparison as still measuring if error is
1123 * larger than half an interval.
1125 * Note: It does not "save" on aggravation when reading the code.
1127 error = tk->ntp_error >> (tk->ntp_error_shift - 1);
1128 if (error > interval) {
1130 * We now divide error by 4(via shift), which checks if
1131 * the error is greater than twice the interval.
1132 * If it is greater, we need a bigadjust, if its smaller,
1133 * we can adjust by 1.
1135 error >>= 2;
1137 * XXX - In update_wall_time, we round up to the next
1138 * nanosecond, and store the amount rounded up into
1139 * the error. This causes the likely below to be unlikely.
1141 * The proper fix is to avoid rounding up by using
1142 * the high precision tk->xtime_nsec instead of
1143 * xtime.tv_nsec everywhere. Fixing this will take some
1144 * time.
1146 if (likely(error <= interval))
1147 adj = 1;
1148 else
1149 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1150 } else {
1151 if (error < -interval) {
1152 /* See comment above, this is just switched for the negative */
1153 error >>= 2;
1154 if (likely(error >= -interval)) {
1155 adj = -1;
1156 interval = -interval;
1157 offset = -offset;
1158 } else {
1159 adj = timekeeping_bigadjust(tk, error, &interval, &offset);
1161 } else {
1162 goto out_adjust;
1166 if (unlikely(tk->clock->maxadj &&
1167 (tk->mult + adj > tk->clock->mult + tk->clock->maxadj))) {
1168 printk_once(KERN_WARNING
1169 "Adjusting %s more than 11%% (%ld vs %ld)\n",
1170 tk->clock->name, (long)tk->mult + adj,
1171 (long)tk->clock->mult + tk->clock->maxadj);
1174 * So the following can be confusing.
1176 * To keep things simple, lets assume adj == 1 for now.
1178 * When adj != 1, remember that the interval and offset values
1179 * have been appropriately scaled so the math is the same.
1181 * The basic idea here is that we're increasing the multiplier
1182 * by one, this causes the xtime_interval to be incremented by
1183 * one cycle_interval. This is because:
1184 * xtime_interval = cycle_interval * mult
1185 * So if mult is being incremented by one:
1186 * xtime_interval = cycle_interval * (mult + 1)
1187 * Its the same as:
1188 * xtime_interval = (cycle_interval * mult) + cycle_interval
1189 * Which can be shortened to:
1190 * xtime_interval += cycle_interval
1192 * So offset stores the non-accumulated cycles. Thus the current
1193 * time (in shifted nanoseconds) is:
1194 * now = (offset * adj) + xtime_nsec
1195 * Now, even though we're adjusting the clock frequency, we have
1196 * to keep time consistent. In other words, we can't jump back
1197 * in time, and we also want to avoid jumping forward in time.
1199 * So given the same offset value, we need the time to be the same
1200 * both before and after the freq adjustment.
1201 * now = (offset * adj_1) + xtime_nsec_1
1202 * now = (offset * adj_2) + xtime_nsec_2
1203 * So:
1204 * (offset * adj_1) + xtime_nsec_1 =
1205 * (offset * adj_2) + xtime_nsec_2
1206 * And we know:
1207 * adj_2 = adj_1 + 1
1208 * So:
1209 * (offset * adj_1) + xtime_nsec_1 =
1210 * (offset * (adj_1+1)) + xtime_nsec_2
1211 * (offset * adj_1) + xtime_nsec_1 =
1212 * (offset * adj_1) + offset + xtime_nsec_2
1213 * Canceling the sides:
1214 * xtime_nsec_1 = offset + xtime_nsec_2
1215 * Which gives us:
1216 * xtime_nsec_2 = xtime_nsec_1 - offset
1217 * Which simplfies to:
1218 * xtime_nsec -= offset
1220 * XXX - TODO: Doc ntp_error calculation.
1222 tk->mult += adj;
1223 tk->xtime_interval += interval;
1224 tk->xtime_nsec -= offset;
1225 tk->ntp_error -= (interval - offset) << tk->ntp_error_shift;
1227 out_adjust:
1229 * It may be possible that when we entered this function, xtime_nsec
1230 * was very small. Further, if we're slightly speeding the clocksource
1231 * in the code above, its possible the required corrective factor to
1232 * xtime_nsec could cause it to underflow.
1234 * Now, since we already accumulated the second, cannot simply roll
1235 * the accumulated second back, since the NTP subsystem has been
1236 * notified via second_overflow. So instead we push xtime_nsec forward
1237 * by the amount we underflowed, and add that amount into the error.
1239 * We'll correct this error next time through this function, when
1240 * xtime_nsec is not as small.
1242 if (unlikely((s64)tk->xtime_nsec < 0)) {
1243 s64 neg = -(s64)tk->xtime_nsec;
1244 tk->xtime_nsec = 0;
1245 tk->ntp_error += neg << tk->ntp_error_shift;
1251 * accumulate_nsecs_to_secs - Accumulates nsecs into secs
1253 * Helper function that accumulates a the nsecs greater then a second
1254 * from the xtime_nsec field to the xtime_secs field.
1255 * It also calls into the NTP code to handle leapsecond processing.
1258 static inline unsigned int accumulate_nsecs_to_secs(struct timekeeper *tk)
1260 u64 nsecps = (u64)NSEC_PER_SEC << tk->shift;
1261 unsigned int clock_set = 0;
1263 while (tk->xtime_nsec >= nsecps) {
1264 int leap;
1266 tk->xtime_nsec -= nsecps;
1267 tk->xtime_sec++;
1269 /* Figure out if its a leap sec and apply if needed */
1270 leap = second_overflow(tk->xtime_sec);
1271 if (unlikely(leap)) {
1272 struct timespec ts;
1274 tk->xtime_sec += leap;
1276 ts.tv_sec = leap;
1277 ts.tv_nsec = 0;
1278 tk_set_wall_to_mono(tk,
1279 timespec_sub(tk->wall_to_monotonic, ts));
1281 __timekeeping_set_tai_offset(tk, tk->tai_offset - leap);
1283 clock_set = TK_CLOCK_WAS_SET;
1286 return clock_set;
1290 * logarithmic_accumulation - shifted accumulation of cycles
1292 * This functions accumulates a shifted interval of cycles into
1293 * into a shifted interval nanoseconds. Allows for O(log) accumulation
1294 * loop.
1296 * Returns the unconsumed cycles.
1298 static cycle_t logarithmic_accumulation(struct timekeeper *tk, cycle_t offset,
1299 u32 shift,
1300 unsigned int *clock_set)
1302 cycle_t interval = tk->cycle_interval << shift;
1303 u64 raw_nsecs;
1305 /* If the offset is smaller then a shifted interval, do nothing */
1306 if (offset < interval)
1307 return offset;
1309 /* Accumulate one shifted interval */
1310 offset -= interval;
1311 tk->cycle_last += interval;
1313 tk->xtime_nsec += tk->xtime_interval << shift;
1314 *clock_set |= accumulate_nsecs_to_secs(tk);
1316 /* Accumulate raw time */
1317 raw_nsecs = (u64)tk->raw_interval << shift;
1318 raw_nsecs += tk->raw_time.tv_nsec;
1319 if (raw_nsecs >= NSEC_PER_SEC) {
1320 u64 raw_secs = raw_nsecs;
1321 raw_nsecs = do_div(raw_secs, NSEC_PER_SEC);
1322 tk->raw_time.tv_sec += raw_secs;
1324 tk->raw_time.tv_nsec = raw_nsecs;
1326 /* Accumulate error between NTP and clock interval */
1327 tk->ntp_error += ntp_tick_length() << shift;
1328 tk->ntp_error -= (tk->xtime_interval + tk->xtime_remainder) <<
1329 (tk->ntp_error_shift + shift);
1331 return offset;
1334 #ifdef CONFIG_GENERIC_TIME_VSYSCALL_OLD
1335 static inline void old_vsyscall_fixup(struct timekeeper *tk)
1337 s64 remainder;
1340 * Store only full nanoseconds into xtime_nsec after rounding
1341 * it up and add the remainder to the error difference.
1342 * XXX - This is necessary to avoid small 1ns inconsistnecies caused
1343 * by truncating the remainder in vsyscalls. However, it causes
1344 * additional work to be done in timekeeping_adjust(). Once
1345 * the vsyscall implementations are converted to use xtime_nsec
1346 * (shifted nanoseconds), and CONFIG_GENERIC_TIME_VSYSCALL_OLD
1347 * users are removed, this can be killed.
1349 remainder = tk->xtime_nsec & ((1ULL << tk->shift) - 1);
1350 tk->xtime_nsec -= remainder;
1351 tk->xtime_nsec += 1ULL << tk->shift;
1352 tk->ntp_error += remainder << tk->ntp_error_shift;
1353 tk->ntp_error -= (1ULL << tk->shift) << tk->ntp_error_shift;
1355 #else
1356 #define old_vsyscall_fixup(tk)
1357 #endif
1362 * update_wall_time - Uses the current clocksource to increment the wall time
1365 static void update_wall_time(void)
1367 struct clocksource *clock;
1368 struct timekeeper *real_tk = &timekeeper;
1369 struct timekeeper *tk = &shadow_timekeeper;
1370 cycle_t offset;
1371 int shift = 0, maxshift;
1372 unsigned int clock_set = 0;
1373 unsigned long flags;
1375 raw_spin_lock_irqsave(&timekeeper_lock, flags);
1377 /* Make sure we're fully resumed: */
1378 if (unlikely(timekeeping_suspended))
1379 goto out;
1381 clock = real_tk->clock;
1383 #ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
1384 offset = real_tk->cycle_interval;
1385 #else
1386 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
1387 #endif
1389 /* Check if there's really nothing to do */
1390 if (offset < real_tk->cycle_interval)
1391 goto out;
1394 * With NO_HZ we may have to accumulate many cycle_intervals
1395 * (think "ticks") worth of time at once. To do this efficiently,
1396 * we calculate the largest doubling multiple of cycle_intervals
1397 * that is smaller than the offset. We then accumulate that
1398 * chunk in one go, and then try to consume the next smaller
1399 * doubled multiple.
1401 shift = ilog2(offset) - ilog2(tk->cycle_interval);
1402 shift = max(0, shift);
1403 /* Bound shift to one less than what overflows tick_length */
1404 maxshift = (64 - (ilog2(ntp_tick_length())+1)) - 1;
1405 shift = min(shift, maxshift);
1406 while (offset >= tk->cycle_interval) {
1407 offset = logarithmic_accumulation(tk, offset, shift,
1408 &clock_set);
1409 if (offset < tk->cycle_interval<<shift)
1410 shift--;
1413 /* correct the clock when NTP error is too big */
1414 timekeeping_adjust(tk, offset);
1417 * XXX This can be killed once everyone converts
1418 * to the new update_vsyscall.
1420 old_vsyscall_fixup(tk);
1423 * Finally, make sure that after the rounding
1424 * xtime_nsec isn't larger than NSEC_PER_SEC
1426 clock_set |= accumulate_nsecs_to_secs(tk);
1428 write_seqcount_begin(&timekeeper_seq);
1429 /* Update clock->cycle_last with the new value */
1430 clock->cycle_last = tk->cycle_last;
1432 * Update the real timekeeper.
1434 * We could avoid this memcpy by switching pointers, but that
1435 * requires changes to all other timekeeper usage sites as
1436 * well, i.e. move the timekeeper pointer getter into the
1437 * spinlocked/seqcount protected sections. And we trade this
1438 * memcpy under the timekeeper_seq against one before we start
1439 * updating.
1441 memcpy(real_tk, tk, sizeof(*tk));
1442 timekeeping_update(real_tk, clock_set);
1443 write_seqcount_end(&timekeeper_seq);
1444 out:
1445 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
1446 if (clock_set) {
1448 * XXX - I'd rather we just call clock_was_set(), but
1449 * since we're currently holding the jiffies lock, calling
1450 * clock_was_set would trigger an ipi which would then grab
1451 * the jiffies lock and we'd deadlock. :(
1452 * The right solution should probably be droping
1453 * the jiffies lock before calling update_wall_time
1454 * but that requires some rework of the tick sched
1455 * code.
1457 clock_was_set_delayed();
1462 * getboottime - Return the real time of system boot.
1463 * @ts: pointer to the timespec to be set
1465 * Returns the wall-time of boot in a timespec.
1467 * This is based on the wall_to_monotonic offset and the total suspend
1468 * time. Calls to settimeofday will affect the value returned (which
1469 * basically means that however wrong your real time clock is at boot time,
1470 * you get the right time here).
1472 void getboottime(struct timespec *ts)
1474 struct timekeeper *tk = &timekeeper;
1475 struct timespec boottime = {
1476 .tv_sec = tk->wall_to_monotonic.tv_sec +
1477 tk->total_sleep_time.tv_sec,
1478 .tv_nsec = tk->wall_to_monotonic.tv_nsec +
1479 tk->total_sleep_time.tv_nsec
1482 set_normalized_timespec(ts, -boottime.tv_sec, -boottime.tv_nsec);
1484 EXPORT_SYMBOL_GPL(getboottime);
1487 * get_monotonic_boottime - Returns monotonic time since boot
1488 * @ts: pointer to the timespec to be set
1490 * Returns the monotonic time since boot in a timespec.
1492 * This is similar to CLOCK_MONTONIC/ktime_get_ts, but also
1493 * includes the time spent in suspend.
1495 void get_monotonic_boottime(struct timespec *ts)
1497 struct timekeeper *tk = &timekeeper;
1498 struct timespec tomono, sleep;
1499 s64 nsec;
1500 unsigned int seq;
1502 WARN_ON(timekeeping_suspended);
1504 do {
1505 seq = read_seqcount_begin(&timekeeper_seq);
1506 ts->tv_sec = tk->xtime_sec;
1507 nsec = timekeeping_get_ns(tk);
1508 tomono = tk->wall_to_monotonic;
1509 sleep = tk->total_sleep_time;
1511 } while (read_seqcount_retry(&timekeeper_seq, seq));
1513 ts->tv_sec += tomono.tv_sec + sleep.tv_sec;
1514 ts->tv_nsec = 0;
1515 timespec_add_ns(ts, nsec + tomono.tv_nsec + sleep.tv_nsec);
1517 EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1520 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1522 * Returns the monotonic time since boot in a ktime
1524 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1525 * includes the time spent in suspend.
1527 ktime_t ktime_get_boottime(void)
1529 struct timespec ts;
1531 get_monotonic_boottime(&ts);
1532 return timespec_to_ktime(ts);
1534 EXPORT_SYMBOL_GPL(ktime_get_boottime);
1537 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1538 * @ts: pointer to the timespec to be converted
1540 void monotonic_to_bootbased(struct timespec *ts)
1542 struct timekeeper *tk = &timekeeper;
1544 *ts = timespec_add(*ts, tk->total_sleep_time);
1546 EXPORT_SYMBOL_GPL(monotonic_to_bootbased);
1548 unsigned long get_seconds(void)
1550 struct timekeeper *tk = &timekeeper;
1552 return tk->xtime_sec;
1554 EXPORT_SYMBOL(get_seconds);
1556 struct timespec __current_kernel_time(void)
1558 struct timekeeper *tk = &timekeeper;
1560 return tk_xtime(tk);
1563 struct timespec current_kernel_time(void)
1565 struct timekeeper *tk = &timekeeper;
1566 struct timespec now;
1567 unsigned long seq;
1569 do {
1570 seq = read_seqcount_begin(&timekeeper_seq);
1572 now = tk_xtime(tk);
1573 } while (read_seqcount_retry(&timekeeper_seq, seq));
1575 return now;
1577 EXPORT_SYMBOL(current_kernel_time);
1579 struct timespec get_monotonic_coarse(void)
1581 struct timekeeper *tk = &timekeeper;
1582 struct timespec now, mono;
1583 unsigned long seq;
1585 do {
1586 seq = read_seqcount_begin(&timekeeper_seq);
1588 now = tk_xtime(tk);
1589 mono = tk->wall_to_monotonic;
1590 } while (read_seqcount_retry(&timekeeper_seq, seq));
1592 set_normalized_timespec(&now, now.tv_sec + mono.tv_sec,
1593 now.tv_nsec + mono.tv_nsec);
1594 return now;
1598 * Must hold jiffies_lock
1600 void do_timer(unsigned long ticks)
1602 jiffies_64 += ticks;
1603 update_wall_time();
1604 calc_global_load(ticks);
1608 * get_xtime_and_monotonic_and_sleep_offset() - get xtime, wall_to_monotonic,
1609 * and sleep offsets.
1610 * @xtim: pointer to timespec to be set with xtime
1611 * @wtom: pointer to timespec to be set with wall_to_monotonic
1612 * @sleep: pointer to timespec to be set with time in suspend
1614 void get_xtime_and_monotonic_and_sleep_offset(struct timespec *xtim,
1615 struct timespec *wtom, struct timespec *sleep)
1617 struct timekeeper *tk = &timekeeper;
1618 unsigned long seq;
1620 do {
1621 seq = read_seqcount_begin(&timekeeper_seq);
1622 *xtim = tk_xtime(tk);
1623 *wtom = tk->wall_to_monotonic;
1624 *sleep = tk->total_sleep_time;
1625 } while (read_seqcount_retry(&timekeeper_seq, seq));
1628 #ifdef CONFIG_HIGH_RES_TIMERS
1630 * ktime_get_update_offsets - hrtimer helper
1631 * @offs_real: pointer to storage for monotonic -> realtime offset
1632 * @offs_boot: pointer to storage for monotonic -> boottime offset
1634 * Returns current monotonic time and updates the offsets
1635 * Called from hrtimer_interupt() or retrigger_next_event()
1637 ktime_t ktime_get_update_offsets(ktime_t *offs_real, ktime_t *offs_boot,
1638 ktime_t *offs_tai)
1640 struct timekeeper *tk = &timekeeper;
1641 ktime_t now;
1642 unsigned int seq;
1643 u64 secs, nsecs;
1645 do {
1646 seq = read_seqcount_begin(&timekeeper_seq);
1648 secs = tk->xtime_sec;
1649 nsecs = timekeeping_get_ns(tk);
1651 *offs_real = tk->offs_real;
1652 *offs_boot = tk->offs_boot;
1653 *offs_tai = tk->offs_tai;
1654 } while (read_seqcount_retry(&timekeeper_seq, seq));
1656 now = ktime_add_ns(ktime_set(secs, 0), nsecs);
1657 now = ktime_sub(now, *offs_real);
1658 return now;
1660 #endif
1663 * ktime_get_monotonic_offset() - get wall_to_monotonic in ktime_t format
1665 ktime_t ktime_get_monotonic_offset(void)
1667 struct timekeeper *tk = &timekeeper;
1668 unsigned long seq;
1669 struct timespec wtom;
1671 do {
1672 seq = read_seqcount_begin(&timekeeper_seq);
1673 wtom = tk->wall_to_monotonic;
1674 } while (read_seqcount_retry(&timekeeper_seq, seq));
1676 return timespec_to_ktime(wtom);
1678 EXPORT_SYMBOL_GPL(ktime_get_monotonic_offset);
1681 * do_adjtimex() - Accessor function to NTP __do_adjtimex function
1683 int do_adjtimex(struct timex *txc)
1685 struct timekeeper *tk = &timekeeper;
1686 unsigned long flags;
1687 struct timespec ts;
1688 s32 orig_tai, tai;
1689 int ret;
1691 /* Validate the data before disabling interrupts */
1692 ret = ntp_validate_timex(txc);
1693 if (ret)
1694 return ret;
1696 if (txc->modes & ADJ_SETOFFSET) {
1697 struct timespec delta;
1698 delta.tv_sec = txc->time.tv_sec;
1699 delta.tv_nsec = txc->time.tv_usec;
1700 if (!(txc->modes & ADJ_NANO))
1701 delta.tv_nsec *= 1000;
1702 ret = timekeeping_inject_offset(&delta);
1703 if (ret)
1704 return ret;
1707 getnstimeofday(&ts);
1709 raw_spin_lock_irqsave(&timekeeper_lock, flags);
1710 write_seqcount_begin(&timekeeper_seq);
1712 orig_tai = tai = tk->tai_offset;
1713 ret = __do_adjtimex(txc, &ts, &tai);
1715 if (tai != orig_tai) {
1716 __timekeeping_set_tai_offset(tk, tai);
1717 timekeeping_update(tk, TK_MIRROR | TK_CLOCK_WAS_SET);
1719 write_seqcount_end(&timekeeper_seq);
1720 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
1722 if (tai != orig_tai)
1723 clock_was_set();
1725 ntp_notify_cmos_timer();
1727 return ret;
1730 #ifdef CONFIG_NTP_PPS
1732 * hardpps() - Accessor function to NTP __hardpps function
1734 void hardpps(const struct timespec *phase_ts, const struct timespec *raw_ts)
1736 unsigned long flags;
1738 raw_spin_lock_irqsave(&timekeeper_lock, flags);
1739 write_seqcount_begin(&timekeeper_seq);
1741 __hardpps(phase_ts, raw_ts);
1743 write_seqcount_end(&timekeeper_seq);
1744 raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
1746 EXPORT_SYMBOL(hardpps);
1747 #endif
1750 * xtime_update() - advances the timekeeping infrastructure
1751 * @ticks: number of ticks, that have elapsed since the last call.
1753 * Must be called with interrupts disabled.
1755 void xtime_update(unsigned long ticks)
1757 write_seqlock(&jiffies_lock);
1758 do_timer(ticks);
1759 write_sequnlock(&jiffies_lock);