1 // SPDX-License-Identifier: GPL-2.0+
3 * This file contains the functions which manage clocksource drivers.
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/device.h>
11 #include <linux/clocksource.h>
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/sched.h> /* for spin_unlock_irq() using preempt_count() m68k */
15 #include <linux/tick.h>
16 #include <linux/kthread.h>
17 #include <linux/prandom.h>
18 #include <linux/cpu.h>
20 #include "tick-internal.h"
21 #include "timekeeping_internal.h"
23 static noinline u64 cycles_to_nsec_safe(struct clocksource *cs, u64 start, u64 end)
25 u64 delta = clocksource_delta(end, start, cs->mask);
27 if (likely(delta < cs->max_cycles))
28 return clocksource_cyc2ns(delta, cs->mult, cs->shift);
30 return mul_u64_u32_shr(delta, cs->mult, cs->shift);
34 * clocks_calc_mult_shift - calculate mult/shift factors for scaled math of clocks
35 * @mult: pointer to mult variable
36 * @shift: pointer to shift variable
37 * @from: frequency to convert from
38 * @to: frequency to convert to
39 * @maxsec: guaranteed runtime conversion range in seconds
41 * The function evaluates the shift/mult pair for the scaled math
42 * operations of clocksources and clockevents.
44 * @to and @from are frequency values in HZ. For clock sources @to is
45 * NSEC_PER_SEC == 1GHz and @from is the counter frequency. For clock
46 * event @to is the counter frequency and @from is NSEC_PER_SEC.
48 * The @maxsec conversion range argument controls the time frame in
49 * seconds which must be covered by the runtime conversion with the
50 * calculated mult and shift factors. This guarantees that no 64bit
51 * overflow happens when the input value of the conversion is
52 * multiplied with the calculated mult factor. Larger ranges may
53 * reduce the conversion accuracy by choosing smaller mult and shift
57 clocks_calc_mult_shift(u32 *mult, u32 *shift, u32 from, u32 to, u32 maxsec)
63 * Calculate the shift factor which is limiting the conversion
66 tmp = ((u64)maxsec * from) >> 32;
73 * Find the conversion shift/mult pair which has the best
74 * accuracy and fits the maxsec conversion range:
76 for (sft = 32; sft > 0; sft--) {
77 tmp = (u64) to << sft;
80 if ((tmp >> sftacc) == 0)
86 EXPORT_SYMBOL_GPL(clocks_calc_mult_shift);
88 /*[Clocksource internal variables]---------
90 * currently selected clocksource.
91 * suspend_clocksource:
92 * used to calculate the suspend time.
94 * linked list with the registered clocksources
96 * protects manipulations to curr_clocksource and the clocksource_list
98 * Name of the user-specified clocksource.
100 static struct clocksource *curr_clocksource;
101 static struct clocksource *suspend_clocksource;
102 static LIST_HEAD(clocksource_list);
103 static DEFINE_MUTEX(clocksource_mutex);
104 static char override_name[CS_NAME_LEN];
105 static int finished_booting;
106 static u64 suspend_start;
111 #define WATCHDOG_INTERVAL (HZ >> 1)
112 #define WATCHDOG_INTERVAL_MAX_NS ((2 * WATCHDOG_INTERVAL) * (NSEC_PER_SEC / HZ))
115 * Threshold: 0.0312s, when doubled: 0.0625s.
116 * Also a default for cs->uncertainty_margin when registering clocks.
118 #define WATCHDOG_THRESHOLD (NSEC_PER_SEC >> 5)
121 * Maximum permissible delay between two readouts of the watchdog
122 * clocksource surrounding a read of the clocksource being validated.
123 * This delay could be due to SMIs, NMIs, or to VCPU preemptions. Used as
124 * a lower bound for cs->uncertainty_margin values when registering clocks.
126 * The default of 500 parts per million is based on NTP's limits.
127 * If a clocksource is good enough for NTP, it is good enough for us!
129 #ifdef CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US
130 #define MAX_SKEW_USEC CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US
132 #define MAX_SKEW_USEC (125 * WATCHDOG_INTERVAL / HZ)
135 #define WATCHDOG_MAX_SKEW (MAX_SKEW_USEC * NSEC_PER_USEC)
137 #ifdef CONFIG_CLOCKSOURCE_WATCHDOG
138 static void clocksource_watchdog_work(struct work_struct *work);
139 static void clocksource_select(void);
141 static LIST_HEAD(watchdog_list);
142 static struct clocksource *watchdog;
143 static struct timer_list watchdog_timer;
144 static DECLARE_WORK(watchdog_work, clocksource_watchdog_work);
145 static DEFINE_SPINLOCK(watchdog_lock);
146 static int watchdog_running;
147 static atomic_t watchdog_reset_pending;
148 static int64_t watchdog_max_interval;
150 static inline void clocksource_watchdog_lock(unsigned long *flags)
152 spin_lock_irqsave(&watchdog_lock, *flags);
155 static inline void clocksource_watchdog_unlock(unsigned long *flags)
157 spin_unlock_irqrestore(&watchdog_lock, *flags);
160 static int clocksource_watchdog_kthread(void *data);
161 static void __clocksource_change_rating(struct clocksource *cs, int rating);
163 static void clocksource_watchdog_work(struct work_struct *work)
166 * We cannot directly run clocksource_watchdog_kthread() here, because
167 * clocksource_select() calls timekeeping_notify() which uses
168 * stop_machine(). One cannot use stop_machine() from a workqueue() due
169 * lock inversions wrt CPU hotplug.
171 * Also, we only ever run this work once or twice during the lifetime
172 * of the kernel, so there is no point in creating a more permanent
175 * If kthread_run fails the next watchdog scan over the
176 * watchdog_list will find the unstable clock again.
178 kthread_run(clocksource_watchdog_kthread, NULL, "kwatchdog");
181 static void __clocksource_unstable(struct clocksource *cs)
183 cs->flags &= ~(CLOCK_SOURCE_VALID_FOR_HRES | CLOCK_SOURCE_WATCHDOG);
184 cs->flags |= CLOCK_SOURCE_UNSTABLE;
187 * If the clocksource is registered clocksource_watchdog_kthread() will
188 * re-rate and re-select.
190 if (list_empty(&cs->list)) {
195 if (cs->mark_unstable)
196 cs->mark_unstable(cs);
198 /* kick clocksource_watchdog_kthread() */
199 if (finished_booting)
200 schedule_work(&watchdog_work);
204 * clocksource_mark_unstable - mark clocksource unstable via watchdog
205 * @cs: clocksource to be marked unstable
207 * This function is called by the x86 TSC code to mark clocksources as unstable;
208 * it defers demotion and re-selection to a kthread.
210 void clocksource_mark_unstable(struct clocksource *cs)
214 spin_lock_irqsave(&watchdog_lock, flags);
215 if (!(cs->flags & CLOCK_SOURCE_UNSTABLE)) {
216 if (!list_empty(&cs->list) && list_empty(&cs->wd_list))
217 list_add(&cs->wd_list, &watchdog_list);
218 __clocksource_unstable(cs);
220 spin_unlock_irqrestore(&watchdog_lock, flags);
223 static int verify_n_cpus = 8;
224 module_param(verify_n_cpus, int, 0644);
226 enum wd_read_status {
232 static enum wd_read_status cs_watchdog_read(struct clocksource *cs, u64 *csnow, u64 *wdnow)
234 unsigned int nretries, max_retries;
235 int64_t wd_delay, wd_seq_delay;
238 max_retries = clocksource_get_max_watchdog_retry();
239 for (nretries = 0; nretries <= max_retries; nretries++) {
241 *wdnow = watchdog->read(watchdog);
242 *csnow = cs->read(cs);
243 wd_end = watchdog->read(watchdog);
244 wd_end2 = watchdog->read(watchdog);
247 wd_delay = cycles_to_nsec_safe(watchdog, *wdnow, wd_end);
248 if (wd_delay <= WATCHDOG_MAX_SKEW) {
249 if (nretries > 1 || nretries >= max_retries) {
250 pr_warn("timekeeping watchdog on CPU%d: %s retried %d times before success\n",
251 smp_processor_id(), watchdog->name, nretries);
253 return WD_READ_SUCCESS;
257 * Now compute delay in consecutive watchdog read to see if
258 * there is too much external interferences that cause
259 * significant delay in reading both clocksource and watchdog.
261 * If consecutive WD read-back delay > WATCHDOG_MAX_SKEW/2,
262 * report system busy, reinit the watchdog and skip the current
265 wd_seq_delay = cycles_to_nsec_safe(watchdog, wd_end, wd_end2);
266 if (wd_seq_delay > WATCHDOG_MAX_SKEW/2)
270 pr_warn("timekeeping watchdog on CPU%d: wd-%s-wd excessive read-back delay of %lldns vs. limit of %ldns, wd-wd read-back delay only %lldns, attempt %d, marking %s unstable\n",
271 smp_processor_id(), cs->name, wd_delay, WATCHDOG_MAX_SKEW, wd_seq_delay, nretries, cs->name);
272 return WD_READ_UNSTABLE;
275 pr_info("timekeeping watchdog on CPU%d: %s wd-wd read-back delay of %lldns\n",
276 smp_processor_id(), watchdog->name, wd_seq_delay);
277 pr_info("wd-%s-wd read-back delay of %lldns, clock-skew test skipped!\n",
282 static u64 csnow_mid;
283 static cpumask_t cpus_ahead;
284 static cpumask_t cpus_behind;
285 static cpumask_t cpus_chosen;
287 static void clocksource_verify_choose_cpus(void)
289 int cpu, i, n = verify_n_cpus;
292 /* Check all of the CPUs. */
293 cpumask_copy(&cpus_chosen, cpu_online_mask);
294 cpumask_clear_cpu(smp_processor_id(), &cpus_chosen);
298 /* If no checking desired, or no other CPU to check, leave. */
299 cpumask_clear(&cpus_chosen);
300 if (n == 0 || num_online_cpus() <= 1)
303 /* Make sure to select at least one CPU other than the current CPU. */
304 cpu = cpumask_first(cpu_online_mask);
305 if (cpu == smp_processor_id())
306 cpu = cpumask_next(cpu, cpu_online_mask);
307 if (WARN_ON_ONCE(cpu >= nr_cpu_ids))
309 cpumask_set_cpu(cpu, &cpus_chosen);
311 /* Force a sane value for the boot parameter. */
316 * Randomly select the specified number of CPUs. If the same
317 * CPU is selected multiple times, that CPU is checked only once,
318 * and no replacement CPU is selected. This gracefully handles
319 * situations where verify_n_cpus is greater than the number of
320 * CPUs that are currently online.
322 for (i = 1; i < n; i++) {
323 cpu = get_random_u32_below(nr_cpu_ids);
324 cpu = cpumask_next(cpu - 1, cpu_online_mask);
325 if (cpu >= nr_cpu_ids)
326 cpu = cpumask_first(cpu_online_mask);
327 if (!WARN_ON_ONCE(cpu >= nr_cpu_ids))
328 cpumask_set_cpu(cpu, &cpus_chosen);
331 /* Don't verify ourselves. */
332 cpumask_clear_cpu(smp_processor_id(), &cpus_chosen);
335 static void clocksource_verify_one_cpu(void *csin)
337 struct clocksource *cs = (struct clocksource *)csin;
339 csnow_mid = cs->read(cs);
342 void clocksource_verify_percpu(struct clocksource *cs)
344 int64_t cs_nsec, cs_nsec_max = 0, cs_nsec_min = LLONG_MAX;
345 u64 csnow_begin, csnow_end;
349 if (verify_n_cpus == 0)
351 cpumask_clear(&cpus_ahead);
352 cpumask_clear(&cpus_behind);
355 clocksource_verify_choose_cpus();
356 if (cpumask_empty(&cpus_chosen)) {
359 pr_warn("Not enough CPUs to check clocksource '%s'.\n", cs->name);
362 testcpu = smp_processor_id();
363 pr_warn("Checking clocksource %s synchronization from CPU %d to CPUs %*pbl.\n", cs->name, testcpu, cpumask_pr_args(&cpus_chosen));
364 for_each_cpu(cpu, &cpus_chosen) {
367 csnow_begin = cs->read(cs);
368 smp_call_function_single(cpu, clocksource_verify_one_cpu, cs, 1);
369 csnow_end = cs->read(cs);
370 delta = (s64)((csnow_mid - csnow_begin) & cs->mask);
372 cpumask_set_cpu(cpu, &cpus_behind);
373 delta = (csnow_end - csnow_mid) & cs->mask;
375 cpumask_set_cpu(cpu, &cpus_ahead);
376 cs_nsec = cycles_to_nsec_safe(cs, csnow_begin, csnow_end);
377 if (cs_nsec > cs_nsec_max)
378 cs_nsec_max = cs_nsec;
379 if (cs_nsec < cs_nsec_min)
380 cs_nsec_min = cs_nsec;
384 if (!cpumask_empty(&cpus_ahead))
385 pr_warn(" CPUs %*pbl ahead of CPU %d for clocksource %s.\n",
386 cpumask_pr_args(&cpus_ahead), testcpu, cs->name);
387 if (!cpumask_empty(&cpus_behind))
388 pr_warn(" CPUs %*pbl behind CPU %d for clocksource %s.\n",
389 cpumask_pr_args(&cpus_behind), testcpu, cs->name);
390 if (!cpumask_empty(&cpus_ahead) || !cpumask_empty(&cpus_behind))
391 pr_warn(" CPU %d check durations %lldns - %lldns for clocksource %s.\n",
392 testcpu, cs_nsec_min, cs_nsec_max, cs->name);
394 EXPORT_SYMBOL_GPL(clocksource_verify_percpu);
396 static inline void clocksource_reset_watchdog(void)
398 struct clocksource *cs;
400 list_for_each_entry(cs, &watchdog_list, wd_list)
401 cs->flags &= ~CLOCK_SOURCE_WATCHDOG;
405 static void clocksource_watchdog(struct timer_list *unused)
407 int64_t wd_nsec, cs_nsec, interval;
408 u64 csnow, wdnow, cslast, wdlast;
409 int next_cpu, reset_pending;
410 struct clocksource *cs;
411 enum wd_read_status read_ret;
412 unsigned long extra_wait = 0;
415 spin_lock(&watchdog_lock);
416 if (!watchdog_running)
419 reset_pending = atomic_read(&watchdog_reset_pending);
421 list_for_each_entry(cs, &watchdog_list, wd_list) {
423 /* Clocksource already marked unstable? */
424 if (cs->flags & CLOCK_SOURCE_UNSTABLE) {
425 if (finished_booting)
426 schedule_work(&watchdog_work);
430 read_ret = cs_watchdog_read(cs, &csnow, &wdnow);
432 if (read_ret == WD_READ_UNSTABLE) {
433 /* Clock readout unreliable, so give it up. */
434 __clocksource_unstable(cs);
439 * When WD_READ_SKIP is returned, it means the system is likely
440 * under very heavy load, where the latency of reading
441 * watchdog/clocksource is very big, and affect the accuracy of
442 * watchdog check. So give system some space and suspend the
443 * watchdog check for 5 minutes.
445 if (read_ret == WD_READ_SKIP) {
447 * As the watchdog timer will be suspended, and
448 * cs->last could keep unchanged for 5 minutes, reset
451 clocksource_reset_watchdog();
452 extra_wait = HZ * 300;
456 /* Clocksource initialized ? */
457 if (!(cs->flags & CLOCK_SOURCE_WATCHDOG) ||
458 atomic_read(&watchdog_reset_pending)) {
459 cs->flags |= CLOCK_SOURCE_WATCHDOG;
465 wd_nsec = cycles_to_nsec_safe(watchdog, cs->wd_last, wdnow);
466 cs_nsec = cycles_to_nsec_safe(cs, cs->cs_last, csnow);
467 wdlast = cs->wd_last; /* save these in case we print them */
468 cslast = cs->cs_last;
472 if (atomic_read(&watchdog_reset_pending))
476 * The processing of timer softirqs can get delayed (usually
477 * on account of ksoftirqd not getting to run in a timely
478 * manner), which causes the watchdog interval to stretch.
479 * Skew detection may fail for longer watchdog intervals
480 * on account of fixed margins being used.
481 * Some clocksources, e.g. acpi_pm, cannot tolerate
482 * watchdog intervals longer than a few seconds.
484 interval = max(cs_nsec, wd_nsec);
485 if (unlikely(interval > WATCHDOG_INTERVAL_MAX_NS)) {
486 if (system_state > SYSTEM_SCHEDULING &&
487 interval > 2 * watchdog_max_interval) {
488 watchdog_max_interval = interval;
489 pr_warn("Long readout interval, skipping watchdog check: cs_nsec: %lld wd_nsec: %lld\n",
492 watchdog_timer.expires = jiffies;
496 /* Check the deviation from the watchdog clocksource. */
497 md = cs->uncertainty_margin + watchdog->uncertainty_margin;
498 if (abs(cs_nsec - wd_nsec) > md) {
503 pr_warn("timekeeping watchdog on CPU%d: Marking clocksource '%s' as unstable because the skew is too large:\n",
504 smp_processor_id(), cs->name);
505 pr_warn(" '%s' wd_nsec: %lld wd_now: %llx wd_last: %llx mask: %llx\n",
506 watchdog->name, wd_nsec, wdnow, wdlast, watchdog->mask);
507 pr_warn(" '%s' cs_nsec: %lld cs_now: %llx cs_last: %llx mask: %llx\n",
508 cs->name, cs_nsec, csnow, cslast, cs->mask);
509 cs_wd_msec = div_s64_rem(cs_nsec - wd_nsec, 1000 * 1000, &wd_rem);
510 wd_msec = div_s64_rem(wd_nsec, 1000 * 1000, &wd_rem);
511 pr_warn(" Clocksource '%s' skewed %lld ns (%lld ms) over watchdog '%s' interval of %lld ns (%lld ms)\n",
512 cs->name, cs_nsec - wd_nsec, cs_wd_msec, watchdog->name, wd_nsec, wd_msec);
513 if (curr_clocksource == cs)
514 pr_warn(" '%s' is current clocksource.\n", cs->name);
515 else if (curr_clocksource)
516 pr_warn(" '%s' (not '%s') is current clocksource.\n", curr_clocksource->name, cs->name);
518 pr_warn(" No current clocksource.\n");
519 __clocksource_unstable(cs);
523 if (cs == curr_clocksource && cs->tick_stable)
526 if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) &&
527 (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) &&
528 (watchdog->flags & CLOCK_SOURCE_IS_CONTINUOUS)) {
529 /* Mark it valid for high-res. */
530 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
533 * clocksource_done_booting() will sort it if
534 * finished_booting is not set yet.
536 if (!finished_booting)
540 * If this is not the current clocksource let
541 * the watchdog thread reselect it. Due to the
542 * change to high res this clocksource might
543 * be preferred now. If it is the current
544 * clocksource let the tick code know about
547 if (cs != curr_clocksource) {
548 cs->flags |= CLOCK_SOURCE_RESELECT;
549 schedule_work(&watchdog_work);
557 * We only clear the watchdog_reset_pending, when we did a
558 * full cycle through all clocksources.
561 atomic_dec(&watchdog_reset_pending);
564 * Cycle through CPUs to check if the CPUs stay synchronized
567 next_cpu = cpumask_next(raw_smp_processor_id(), cpu_online_mask);
568 if (next_cpu >= nr_cpu_ids)
569 next_cpu = cpumask_first(cpu_online_mask);
572 * Arm timer if not already pending: could race with concurrent
573 * pair clocksource_stop_watchdog() clocksource_start_watchdog().
575 if (!timer_pending(&watchdog_timer)) {
576 watchdog_timer.expires += WATCHDOG_INTERVAL + extra_wait;
577 add_timer_on(&watchdog_timer, next_cpu);
580 spin_unlock(&watchdog_lock);
583 static inline void clocksource_start_watchdog(void)
585 if (watchdog_running || !watchdog || list_empty(&watchdog_list))
587 timer_setup(&watchdog_timer, clocksource_watchdog, 0);
588 watchdog_timer.expires = jiffies + WATCHDOG_INTERVAL;
589 add_timer_on(&watchdog_timer, cpumask_first(cpu_online_mask));
590 watchdog_running = 1;
593 static inline void clocksource_stop_watchdog(void)
595 if (!watchdog_running || (watchdog && !list_empty(&watchdog_list)))
597 del_timer(&watchdog_timer);
598 watchdog_running = 0;
601 static void clocksource_resume_watchdog(void)
603 atomic_inc(&watchdog_reset_pending);
606 static void clocksource_enqueue_watchdog(struct clocksource *cs)
608 INIT_LIST_HEAD(&cs->wd_list);
610 if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) {
611 /* cs is a clocksource to be watched. */
612 list_add(&cs->wd_list, &watchdog_list);
613 cs->flags &= ~CLOCK_SOURCE_WATCHDOG;
615 /* cs is a watchdog. */
616 if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
617 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
621 static void clocksource_select_watchdog(bool fallback)
623 struct clocksource *cs, *old_wd;
626 spin_lock_irqsave(&watchdog_lock, flags);
627 /* save current watchdog */
632 list_for_each_entry(cs, &clocksource_list, list) {
633 /* cs is a clocksource to be watched. */
634 if (cs->flags & CLOCK_SOURCE_MUST_VERIFY)
637 /* Skip current if we were requested for a fallback. */
638 if (fallback && cs == old_wd)
641 /* Pick the best watchdog. */
642 if (!watchdog || cs->rating > watchdog->rating)
645 /* If we failed to find a fallback restore the old one. */
649 /* If we changed the watchdog we need to reset cycles. */
650 if (watchdog != old_wd)
651 clocksource_reset_watchdog();
653 /* Check if the watchdog timer needs to be started. */
654 clocksource_start_watchdog();
655 spin_unlock_irqrestore(&watchdog_lock, flags);
658 static void clocksource_dequeue_watchdog(struct clocksource *cs)
660 if (cs != watchdog) {
661 if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) {
662 /* cs is a watched clocksource. */
663 list_del_init(&cs->wd_list);
664 /* Check if the watchdog timer needs to be stopped. */
665 clocksource_stop_watchdog();
670 static int __clocksource_watchdog_kthread(void)
672 struct clocksource *cs, *tmp;
676 /* Do any required per-CPU skew verification. */
677 if (curr_clocksource &&
678 curr_clocksource->flags & CLOCK_SOURCE_UNSTABLE &&
679 curr_clocksource->flags & CLOCK_SOURCE_VERIFY_PERCPU)
680 clocksource_verify_percpu(curr_clocksource);
682 spin_lock_irqsave(&watchdog_lock, flags);
683 list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list) {
684 if (cs->flags & CLOCK_SOURCE_UNSTABLE) {
685 list_del_init(&cs->wd_list);
686 __clocksource_change_rating(cs, 0);
689 if (cs->flags & CLOCK_SOURCE_RESELECT) {
690 cs->flags &= ~CLOCK_SOURCE_RESELECT;
694 /* Check if the watchdog timer needs to be stopped. */
695 clocksource_stop_watchdog();
696 spin_unlock_irqrestore(&watchdog_lock, flags);
701 static int clocksource_watchdog_kthread(void *data)
703 mutex_lock(&clocksource_mutex);
704 if (__clocksource_watchdog_kthread())
705 clocksource_select();
706 mutex_unlock(&clocksource_mutex);
710 static bool clocksource_is_watchdog(struct clocksource *cs)
712 return cs == watchdog;
715 #else /* CONFIG_CLOCKSOURCE_WATCHDOG */
717 static void clocksource_enqueue_watchdog(struct clocksource *cs)
719 if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
720 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
723 static void clocksource_select_watchdog(bool fallback) { }
724 static inline void clocksource_dequeue_watchdog(struct clocksource *cs) { }
725 static inline void clocksource_resume_watchdog(void) { }
726 static inline int __clocksource_watchdog_kthread(void) { return 0; }
727 static bool clocksource_is_watchdog(struct clocksource *cs) { return false; }
728 void clocksource_mark_unstable(struct clocksource *cs) { }
730 static inline void clocksource_watchdog_lock(unsigned long *flags) { }
731 static inline void clocksource_watchdog_unlock(unsigned long *flags) { }
733 #endif /* CONFIG_CLOCKSOURCE_WATCHDOG */
735 static bool clocksource_is_suspend(struct clocksource *cs)
737 return cs == suspend_clocksource;
740 static void __clocksource_suspend_select(struct clocksource *cs)
743 * Skip the clocksource which will be stopped in suspend state.
745 if (!(cs->flags & CLOCK_SOURCE_SUSPEND_NONSTOP))
749 * The nonstop clocksource can be selected as the suspend clocksource to
750 * calculate the suspend time, so it should not supply suspend/resume
751 * interfaces to suspend the nonstop clocksource when system suspends.
753 if (cs->suspend || cs->resume) {
754 pr_warn("Nonstop clocksource %s should not supply suspend/resume interfaces\n",
758 /* Pick the best rating. */
759 if (!suspend_clocksource || cs->rating > suspend_clocksource->rating)
760 suspend_clocksource = cs;
764 * clocksource_suspend_select - Select the best clocksource for suspend timing
765 * @fallback: if select a fallback clocksource
767 static void clocksource_suspend_select(bool fallback)
769 struct clocksource *cs, *old_suspend;
771 old_suspend = suspend_clocksource;
773 suspend_clocksource = NULL;
775 list_for_each_entry(cs, &clocksource_list, list) {
776 /* Skip current if we were requested for a fallback. */
777 if (fallback && cs == old_suspend)
780 __clocksource_suspend_select(cs);
785 * clocksource_start_suspend_timing - Start measuring the suspend timing
786 * @cs: current clocksource from timekeeping
787 * @start_cycles: current cycles from timekeeping
789 * This function will save the start cycle values of suspend timer to calculate
790 * the suspend time when resuming system.
792 * This function is called late in the suspend process from timekeeping_suspend(),
793 * that means processes are frozen, non-boot cpus and interrupts are disabled
794 * now. It is therefore possible to start the suspend timer without taking the
797 void clocksource_start_suspend_timing(struct clocksource *cs, u64 start_cycles)
799 if (!suspend_clocksource)
803 * If current clocksource is the suspend timer, we should use the
804 * tkr_mono.cycle_last value as suspend_start to avoid same reading
805 * from suspend timer.
807 if (clocksource_is_suspend(cs)) {
808 suspend_start = start_cycles;
812 if (suspend_clocksource->enable &&
813 suspend_clocksource->enable(suspend_clocksource)) {
814 pr_warn_once("Failed to enable the non-suspend-able clocksource.\n");
818 suspend_start = suspend_clocksource->read(suspend_clocksource);
822 * clocksource_stop_suspend_timing - Stop measuring the suspend timing
823 * @cs: current clocksource from timekeeping
824 * @cycle_now: current cycles from timekeeping
826 * This function will calculate the suspend time from suspend timer.
828 * Returns nanoseconds since suspend started, 0 if no usable suspend clocksource.
830 * This function is called early in the resume process from timekeeping_resume(),
831 * that means there is only one cpu, no processes are running and the interrupts
832 * are disabled. It is therefore possible to stop the suspend timer without
833 * taking the clocksource mutex.
835 u64 clocksource_stop_suspend_timing(struct clocksource *cs, u64 cycle_now)
839 if (!suspend_clocksource)
843 * If current clocksource is the suspend timer, we should use the
844 * tkr_mono.cycle_last value from timekeeping as current cycle to
845 * avoid same reading from suspend timer.
847 if (clocksource_is_suspend(cs))
850 now = suspend_clocksource->read(suspend_clocksource);
852 if (now > suspend_start)
853 nsec = cycles_to_nsec_safe(suspend_clocksource, suspend_start, now);
856 * Disable the suspend timer to save power if current clocksource is
857 * not the suspend timer.
859 if (!clocksource_is_suspend(cs) && suspend_clocksource->disable)
860 suspend_clocksource->disable(suspend_clocksource);
866 * clocksource_suspend - suspend the clocksource(s)
868 void clocksource_suspend(void)
870 struct clocksource *cs;
872 list_for_each_entry_reverse(cs, &clocksource_list, list)
878 * clocksource_resume - resume the clocksource(s)
880 void clocksource_resume(void)
882 struct clocksource *cs;
884 list_for_each_entry(cs, &clocksource_list, list)
888 clocksource_resume_watchdog();
892 * clocksource_touch_watchdog - Update watchdog
894 * Update the watchdog after exception contexts such as kgdb so as not
895 * to incorrectly trip the watchdog. This might fail when the kernel
896 * was stopped in code which holds watchdog_lock.
898 void clocksource_touch_watchdog(void)
900 clocksource_resume_watchdog();
904 * clocksource_max_adjustment- Returns max adjustment amount
905 * @cs: Pointer to clocksource
908 static u32 clocksource_max_adjustment(struct clocksource *cs)
912 * We won't try to correct for more than 11% adjustments (110,000 ppm),
914 ret = (u64)cs->mult * 11;
920 * clocks_calc_max_nsecs - Returns maximum nanoseconds that can be converted
921 * @mult: cycle to nanosecond multiplier
922 * @shift: cycle to nanosecond divisor (power of two)
923 * @maxadj: maximum adjustment value to mult (~11%)
924 * @mask: bitmask for two's complement subtraction of non 64 bit counters
925 * @max_cyc: maximum cycle value before potential overflow (does not include
928 * NOTE: This function includes a safety margin of 50%, in other words, we
929 * return half the number of nanoseconds the hardware counter can technically
930 * cover. This is done so that we can potentially detect problems caused by
931 * delayed timers or bad hardware, which might result in time intervals that
932 * are larger than what the math used can handle without overflows.
934 u64 clocks_calc_max_nsecs(u32 mult, u32 shift, u32 maxadj, u64 mask, u64 *max_cyc)
936 u64 max_nsecs, max_cycles;
939 * Calculate the maximum number of cycles that we can pass to the
940 * cyc2ns() function without overflowing a 64-bit result.
942 max_cycles = ULLONG_MAX;
943 do_div(max_cycles, mult+maxadj);
946 * The actual maximum number of cycles we can defer the clocksource is
947 * determined by the minimum of max_cycles and mask.
948 * Note: Here we subtract the maxadj to make sure we don't sleep for
949 * too long if there's a large negative adjustment.
951 max_cycles = min(max_cycles, mask);
952 max_nsecs = clocksource_cyc2ns(max_cycles, mult - maxadj, shift);
954 /* return the max_cycles value as well if requested */
956 *max_cyc = max_cycles;
958 /* Return 50% of the actual maximum, so we can detect bad values */
965 * clocksource_update_max_deferment - Updates the clocksource max_idle_ns & max_cycles
966 * @cs: Pointer to clocksource to be updated
969 static inline void clocksource_update_max_deferment(struct clocksource *cs)
971 cs->max_idle_ns = clocks_calc_max_nsecs(cs->mult, cs->shift,
972 cs->maxadj, cs->mask,
976 static struct clocksource *clocksource_find_best(bool oneshot, bool skipcur)
978 struct clocksource *cs;
980 if (!finished_booting || list_empty(&clocksource_list))
984 * We pick the clocksource with the highest rating. If oneshot
985 * mode is active, we pick the highres valid clocksource with
988 list_for_each_entry(cs, &clocksource_list, list) {
989 if (skipcur && cs == curr_clocksource)
991 if (oneshot && !(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES))
998 static void __clocksource_select(bool skipcur)
1000 bool oneshot = tick_oneshot_mode_active();
1001 struct clocksource *best, *cs;
1003 /* Find the best suitable clocksource */
1004 best = clocksource_find_best(oneshot, skipcur);
1008 if (!strlen(override_name))
1011 /* Check for the override clocksource. */
1012 list_for_each_entry(cs, &clocksource_list, list) {
1013 if (skipcur && cs == curr_clocksource)
1015 if (strcmp(cs->name, override_name) != 0)
1018 * Check to make sure we don't switch to a non-highres
1019 * capable clocksource if the tick code is in oneshot
1020 * mode (highres or nohz)
1022 if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) && oneshot) {
1023 /* Override clocksource cannot be used. */
1024 if (cs->flags & CLOCK_SOURCE_UNSTABLE) {
1025 pr_warn("Override clocksource %s is unstable and not HRT compatible - cannot switch while in HRT/NOHZ mode\n",
1027 override_name[0] = 0;
1030 * The override cannot be currently verified.
1031 * Deferring to let the watchdog check.
1033 pr_info("Override clocksource %s is not currently HRT compatible - deferring\n",
1037 /* Override clocksource can be used. */
1043 if (curr_clocksource != best && !timekeeping_notify(best)) {
1044 pr_info("Switched to clocksource %s\n", best->name);
1045 curr_clocksource = best;
1050 * clocksource_select - Select the best clocksource available
1052 * Private function. Must hold clocksource_mutex when called.
1054 * Select the clocksource with the best rating, or the clocksource,
1055 * which is selected by userspace override.
1057 static void clocksource_select(void)
1059 __clocksource_select(false);
1062 static void clocksource_select_fallback(void)
1064 __clocksource_select(true);
1068 * clocksource_done_booting - Called near the end of core bootup
1070 * Hack to avoid lots of clocksource churn at boot time.
1071 * We use fs_initcall because we want this to start before
1072 * device_initcall but after subsys_initcall.
1074 static int __init clocksource_done_booting(void)
1076 mutex_lock(&clocksource_mutex);
1077 curr_clocksource = clocksource_default_clock();
1078 finished_booting = 1;
1080 * Run the watchdog first to eliminate unstable clock sources
1082 __clocksource_watchdog_kthread();
1083 clocksource_select();
1084 mutex_unlock(&clocksource_mutex);
1087 fs_initcall(clocksource_done_booting);
1090 * Enqueue the clocksource sorted by rating
1092 static void clocksource_enqueue(struct clocksource *cs)
1094 struct list_head *entry = &clocksource_list;
1095 struct clocksource *tmp;
1097 list_for_each_entry(tmp, &clocksource_list, list) {
1098 /* Keep track of the place, where to insert */
1099 if (tmp->rating < cs->rating)
1103 list_add(&cs->list, entry);
1107 * __clocksource_update_freq_scale - Used update clocksource with new freq
1108 * @cs: clocksource to be registered
1109 * @scale: Scale factor multiplied against freq to get clocksource hz
1110 * @freq: clocksource frequency (cycles per second) divided by scale
1112 * This should only be called from the clocksource->enable() method.
1114 * This *SHOULD NOT* be called directly! Please use the
1115 * __clocksource_update_freq_hz() or __clocksource_update_freq_khz() helper
1118 void __clocksource_update_freq_scale(struct clocksource *cs, u32 scale, u32 freq)
1123 * Default clocksources are *special* and self-define their mult/shift.
1124 * But, you're not special, so you should specify a freq value.
1128 * Calc the maximum number of seconds which we can run before
1129 * wrapping around. For clocksources which have a mask > 32-bit
1130 * we need to limit the max sleep time to have a good
1131 * conversion precision. 10 minutes is still a reasonable
1132 * amount. That results in a shift value of 24 for a
1133 * clocksource with mask >= 40-bit and f >= 4GHz. That maps to
1134 * ~ 0.06ppm granularity for NTP.
1141 else if (sec > 600 && cs->mask > UINT_MAX)
1144 clocks_calc_mult_shift(&cs->mult, &cs->shift, freq,
1145 NSEC_PER_SEC / scale, sec * scale);
1149 * If the uncertainty margin is not specified, calculate it.
1150 * If both scale and freq are non-zero, calculate the clock
1151 * period, but bound below at 2*WATCHDOG_MAX_SKEW. However,
1152 * if either of scale or freq is zero, be very conservative and
1153 * take the tens-of-milliseconds WATCHDOG_THRESHOLD value for the
1154 * uncertainty margin. Allow stupidly small uncertainty margins
1155 * to be specified by the caller for testing purposes, but warn
1156 * to discourage production use of this capability.
1158 if (scale && freq && !cs->uncertainty_margin) {
1159 cs->uncertainty_margin = NSEC_PER_SEC / (scale * freq);
1160 if (cs->uncertainty_margin < 2 * WATCHDOG_MAX_SKEW)
1161 cs->uncertainty_margin = 2 * WATCHDOG_MAX_SKEW;
1162 } else if (!cs->uncertainty_margin) {
1163 cs->uncertainty_margin = WATCHDOG_THRESHOLD;
1165 WARN_ON_ONCE(cs->uncertainty_margin < 2 * WATCHDOG_MAX_SKEW);
1168 * Ensure clocksources that have large 'mult' values don't overflow
1171 cs->maxadj = clocksource_max_adjustment(cs);
1172 while (freq && ((cs->mult + cs->maxadj < cs->mult)
1173 || (cs->mult - cs->maxadj > cs->mult))) {
1176 cs->maxadj = clocksource_max_adjustment(cs);
1180 * Only warn for *special* clocksources that self-define
1181 * their mult/shift values and don't specify a freq.
1183 WARN_ONCE(cs->mult + cs->maxadj < cs->mult,
1184 "timekeeping: Clocksource %s might overflow on 11%% adjustment\n",
1187 clocksource_update_max_deferment(cs);
1189 pr_info("%s: mask: 0x%llx max_cycles: 0x%llx, max_idle_ns: %lld ns\n",
1190 cs->name, cs->mask, cs->max_cycles, cs->max_idle_ns);
1192 EXPORT_SYMBOL_GPL(__clocksource_update_freq_scale);
1195 * __clocksource_register_scale - Used to install new clocksources
1196 * @cs: clocksource to be registered
1197 * @scale: Scale factor multiplied against freq to get clocksource hz
1198 * @freq: clocksource frequency (cycles per second) divided by scale
1200 * Returns -EBUSY if registration fails, zero otherwise.
1202 * This *SHOULD NOT* be called directly! Please use the
1203 * clocksource_register_hz() or clocksource_register_khz helper functions.
1205 int __clocksource_register_scale(struct clocksource *cs, u32 scale, u32 freq)
1207 unsigned long flags;
1209 clocksource_arch_init(cs);
1211 if (WARN_ON_ONCE((unsigned int)cs->id >= CSID_MAX))
1212 cs->id = CSID_GENERIC;
1213 if (cs->vdso_clock_mode < 0 ||
1214 cs->vdso_clock_mode >= VDSO_CLOCKMODE_MAX) {
1215 pr_warn("clocksource %s registered with invalid VDSO mode %d. Disabling VDSO support.\n",
1216 cs->name, cs->vdso_clock_mode);
1217 cs->vdso_clock_mode = VDSO_CLOCKMODE_NONE;
1220 /* Initialize mult/shift and max_idle_ns */
1221 __clocksource_update_freq_scale(cs, scale, freq);
1223 /* Add clocksource to the clocksource list */
1224 mutex_lock(&clocksource_mutex);
1226 clocksource_watchdog_lock(&flags);
1227 clocksource_enqueue(cs);
1228 clocksource_enqueue_watchdog(cs);
1229 clocksource_watchdog_unlock(&flags);
1231 clocksource_select();
1232 clocksource_select_watchdog(false);
1233 __clocksource_suspend_select(cs);
1234 mutex_unlock(&clocksource_mutex);
1237 EXPORT_SYMBOL_GPL(__clocksource_register_scale);
1239 static void __clocksource_change_rating(struct clocksource *cs, int rating)
1241 list_del(&cs->list);
1242 cs->rating = rating;
1243 clocksource_enqueue(cs);
1247 * clocksource_change_rating - Change the rating of a registered clocksource
1248 * @cs: clocksource to be changed
1249 * @rating: new rating
1251 void clocksource_change_rating(struct clocksource *cs, int rating)
1253 unsigned long flags;
1255 mutex_lock(&clocksource_mutex);
1256 clocksource_watchdog_lock(&flags);
1257 __clocksource_change_rating(cs, rating);
1258 clocksource_watchdog_unlock(&flags);
1260 clocksource_select();
1261 clocksource_select_watchdog(false);
1262 clocksource_suspend_select(false);
1263 mutex_unlock(&clocksource_mutex);
1265 EXPORT_SYMBOL(clocksource_change_rating);
1268 * Unbind clocksource @cs. Called with clocksource_mutex held
1270 static int clocksource_unbind(struct clocksource *cs)
1272 unsigned long flags;
1274 if (clocksource_is_watchdog(cs)) {
1275 /* Select and try to install a replacement watchdog. */
1276 clocksource_select_watchdog(true);
1277 if (clocksource_is_watchdog(cs))
1281 if (cs == curr_clocksource) {
1282 /* Select and try to install a replacement clock source */
1283 clocksource_select_fallback();
1284 if (curr_clocksource == cs)
1288 if (clocksource_is_suspend(cs)) {
1290 * Select and try to install a replacement suspend clocksource.
1291 * If no replacement suspend clocksource, we will just let the
1292 * clocksource go and have no suspend clocksource.
1294 clocksource_suspend_select(true);
1297 clocksource_watchdog_lock(&flags);
1298 clocksource_dequeue_watchdog(cs);
1299 list_del_init(&cs->list);
1300 clocksource_watchdog_unlock(&flags);
1306 * clocksource_unregister - remove a registered clocksource
1307 * @cs: clocksource to be unregistered
1309 int clocksource_unregister(struct clocksource *cs)
1313 mutex_lock(&clocksource_mutex);
1314 if (!list_empty(&cs->list))
1315 ret = clocksource_unbind(cs);
1316 mutex_unlock(&clocksource_mutex);
1319 EXPORT_SYMBOL(clocksource_unregister);
1323 * current_clocksource_show - sysfs interface for current clocksource
1326 * @buf: char buffer to be filled with clocksource list
1328 * Provides sysfs interface for listing current clocksource.
1330 static ssize_t current_clocksource_show(struct device *dev,
1331 struct device_attribute *attr,
1336 mutex_lock(&clocksource_mutex);
1337 count = sysfs_emit(buf, "%s\n", curr_clocksource->name);
1338 mutex_unlock(&clocksource_mutex);
1343 ssize_t sysfs_get_uname(const char *buf, char *dst, size_t cnt)
1347 /* strings from sysfs write are not 0 terminated! */
1348 if (!cnt || cnt >= CS_NAME_LEN)
1352 if (buf[cnt-1] == '\n')
1355 memcpy(dst, buf, cnt);
1361 * current_clocksource_store - interface for manually overriding clocksource
1364 * @buf: name of override clocksource
1365 * @count: length of buffer
1367 * Takes input from sysfs interface for manually overriding the default
1368 * clocksource selection.
1370 static ssize_t current_clocksource_store(struct device *dev,
1371 struct device_attribute *attr,
1372 const char *buf, size_t count)
1376 mutex_lock(&clocksource_mutex);
1378 ret = sysfs_get_uname(buf, override_name, count);
1380 clocksource_select();
1382 mutex_unlock(&clocksource_mutex);
1386 static DEVICE_ATTR_RW(current_clocksource);
1389 * unbind_clocksource_store - interface for manually unbinding clocksource
1393 * @count: length of buffer
1395 * Takes input from sysfs interface for manually unbinding a clocksource.
1397 static ssize_t unbind_clocksource_store(struct device *dev,
1398 struct device_attribute *attr,
1399 const char *buf, size_t count)
1401 struct clocksource *cs;
1402 char name[CS_NAME_LEN];
1405 ret = sysfs_get_uname(buf, name, count);
1410 mutex_lock(&clocksource_mutex);
1411 list_for_each_entry(cs, &clocksource_list, list) {
1412 if (strcmp(cs->name, name))
1414 ret = clocksource_unbind(cs);
1417 mutex_unlock(&clocksource_mutex);
1419 return ret ? ret : count;
1421 static DEVICE_ATTR_WO(unbind_clocksource);
1424 * available_clocksource_show - sysfs interface for listing clocksource
1427 * @buf: char buffer to be filled with clocksource list
1429 * Provides sysfs interface for listing registered clocksources
1431 static ssize_t available_clocksource_show(struct device *dev,
1432 struct device_attribute *attr,
1435 struct clocksource *src;
1438 mutex_lock(&clocksource_mutex);
1439 list_for_each_entry(src, &clocksource_list, list) {
1441 * Don't show non-HRES clocksource if the tick code is
1442 * in one shot mode (highres=on or nohz=on)
1444 if (!tick_oneshot_mode_active() ||
1445 (src->flags & CLOCK_SOURCE_VALID_FOR_HRES))
1446 count += snprintf(buf + count,
1447 max((ssize_t)PAGE_SIZE - count, (ssize_t)0),
1450 mutex_unlock(&clocksource_mutex);
1452 count += snprintf(buf + count,
1453 max((ssize_t)PAGE_SIZE - count, (ssize_t)0), "\n");
1457 static DEVICE_ATTR_RO(available_clocksource);
1459 static struct attribute *clocksource_attrs[] = {
1460 &dev_attr_current_clocksource.attr,
1461 &dev_attr_unbind_clocksource.attr,
1462 &dev_attr_available_clocksource.attr,
1465 ATTRIBUTE_GROUPS(clocksource);
1467 static const struct bus_type clocksource_subsys = {
1468 .name = "clocksource",
1469 .dev_name = "clocksource",
1472 static struct device device_clocksource = {
1474 .bus = &clocksource_subsys,
1475 .groups = clocksource_groups,
1478 static int __init init_clocksource_sysfs(void)
1480 int error = subsys_system_register(&clocksource_subsys, NULL);
1483 error = device_register(&device_clocksource);
1488 device_initcall(init_clocksource_sysfs);
1489 #endif /* CONFIG_SYSFS */
1492 * boot_override_clocksource - boot clock override
1493 * @str: override name
1495 * Takes a clocksource= boot argument and uses it
1496 * as the clocksource override name.
1498 static int __init boot_override_clocksource(char* str)
1500 mutex_lock(&clocksource_mutex);
1502 strscpy(override_name, str, sizeof(override_name));
1503 mutex_unlock(&clocksource_mutex);
1507 __setup("clocksource=", boot_override_clocksource);
1510 * boot_override_clock - Compatibility layer for deprecated boot option
1511 * @str: override name
1513 * DEPRECATED! Takes a clock= boot argument and uses it
1514 * as the clocksource override name
1516 static int __init boot_override_clock(char* str)
1518 if (!strcmp(str, "pmtmr")) {
1519 pr_warn("clock=pmtmr is deprecated - use clocksource=acpi_pm\n");
1520 return boot_override_clocksource("acpi_pm");
1522 pr_warn("clock= boot option is deprecated - use clocksource=xyz\n");
1523 return boot_override_clocksource(str);
1526 __setup("clock=", boot_override_clock);