drm/edid/firmware: Add built-in edid/1280x720.bin firmware
[platform/kernel/linux-starfive.git] / kernel / time / clocksource.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * This file contains the functions which manage clocksource drivers.
4  *
5  * Copyright (C) 2004, 2005 IBM, John Stultz (johnstul@us.ibm.com)
6  */
7
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
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>
19
20 #include "tick-internal.h"
21 #include "timekeeping_internal.h"
22
23 /**
24  * clocks_calc_mult_shift - calculate mult/shift factors for scaled math of clocks
25  * @mult:       pointer to mult variable
26  * @shift:      pointer to shift variable
27  * @from:       frequency to convert from
28  * @to:         frequency to convert to
29  * @maxsec:     guaranteed runtime conversion range in seconds
30  *
31  * The function evaluates the shift/mult pair for the scaled math
32  * operations of clocksources and clockevents.
33  *
34  * @to and @from are frequency values in HZ. For clock sources @to is
35  * NSEC_PER_SEC == 1GHz and @from is the counter frequency. For clock
36  * event @to is the counter frequency and @from is NSEC_PER_SEC.
37  *
38  * The @maxsec conversion range argument controls the time frame in
39  * seconds which must be covered by the runtime conversion with the
40  * calculated mult and shift factors. This guarantees that no 64bit
41  * overflow happens when the input value of the conversion is
42  * multiplied with the calculated mult factor. Larger ranges may
43  * reduce the conversion accuracy by choosing smaller mult and shift
44  * factors.
45  */
46 void
47 clocks_calc_mult_shift(u32 *mult, u32 *shift, u32 from, u32 to, u32 maxsec)
48 {
49         u64 tmp;
50         u32 sft, sftacc= 32;
51
52         /*
53          * Calculate the shift factor which is limiting the conversion
54          * range:
55          */
56         tmp = ((u64)maxsec * from) >> 32;
57         while (tmp) {
58                 tmp >>=1;
59                 sftacc--;
60         }
61
62         /*
63          * Find the conversion shift/mult pair which has the best
64          * accuracy and fits the maxsec conversion range:
65          */
66         for (sft = 32; sft > 0; sft--) {
67                 tmp = (u64) to << sft;
68                 tmp += from / 2;
69                 do_div(tmp, from);
70                 if ((tmp >> sftacc) == 0)
71                         break;
72         }
73         *mult = tmp;
74         *shift = sft;
75 }
76 EXPORT_SYMBOL_GPL(clocks_calc_mult_shift);
77
78 /*[Clocksource internal variables]---------
79  * curr_clocksource:
80  *      currently selected clocksource.
81  * suspend_clocksource:
82  *      used to calculate the suspend time.
83  * clocksource_list:
84  *      linked list with the registered clocksources
85  * clocksource_mutex:
86  *      protects manipulations to curr_clocksource and the clocksource_list
87  * override_name:
88  *      Name of the user-specified clocksource.
89  */
90 static struct clocksource *curr_clocksource;
91 static struct clocksource *suspend_clocksource;
92 static LIST_HEAD(clocksource_list);
93 static DEFINE_MUTEX(clocksource_mutex);
94 static char override_name[CS_NAME_LEN];
95 static int finished_booting;
96 static u64 suspend_start;
97
98 /*
99  * Threshold: 0.0312s, when doubled: 0.0625s.
100  * Also a default for cs->uncertainty_margin when registering clocks.
101  */
102 #define WATCHDOG_THRESHOLD (NSEC_PER_SEC >> 5)
103
104 /*
105  * Maximum permissible delay between two readouts of the watchdog
106  * clocksource surrounding a read of the clocksource being validated.
107  * This delay could be due to SMIs, NMIs, or to VCPU preemptions.  Used as
108  * a lower bound for cs->uncertainty_margin values when registering clocks.
109  */
110 #ifdef CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US
111 #define MAX_SKEW_USEC   CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US
112 #else
113 #define MAX_SKEW_USEC   100
114 #endif
115
116 #define WATCHDOG_MAX_SKEW (MAX_SKEW_USEC * NSEC_PER_USEC)
117
118 #ifdef CONFIG_CLOCKSOURCE_WATCHDOG
119 static void clocksource_watchdog_work(struct work_struct *work);
120 static void clocksource_select(void);
121
122 static LIST_HEAD(watchdog_list);
123 static struct clocksource *watchdog;
124 static struct timer_list watchdog_timer;
125 static DECLARE_WORK(watchdog_work, clocksource_watchdog_work);
126 static DEFINE_SPINLOCK(watchdog_lock);
127 static int watchdog_running;
128 static atomic_t watchdog_reset_pending;
129
130 static inline void clocksource_watchdog_lock(unsigned long *flags)
131 {
132         spin_lock_irqsave(&watchdog_lock, *flags);
133 }
134
135 static inline void clocksource_watchdog_unlock(unsigned long *flags)
136 {
137         spin_unlock_irqrestore(&watchdog_lock, *flags);
138 }
139
140 static int clocksource_watchdog_kthread(void *data);
141 static void __clocksource_change_rating(struct clocksource *cs, int rating);
142
143 /*
144  * Interval: 0.5sec.
145  */
146 #define WATCHDOG_INTERVAL (HZ >> 1)
147
148 static void clocksource_watchdog_work(struct work_struct *work)
149 {
150         /*
151          * We cannot directly run clocksource_watchdog_kthread() here, because
152          * clocksource_select() calls timekeeping_notify() which uses
153          * stop_machine(). One cannot use stop_machine() from a workqueue() due
154          * lock inversions wrt CPU hotplug.
155          *
156          * Also, we only ever run this work once or twice during the lifetime
157          * of the kernel, so there is no point in creating a more permanent
158          * kthread for this.
159          *
160          * If kthread_run fails the next watchdog scan over the
161          * watchdog_list will find the unstable clock again.
162          */
163         kthread_run(clocksource_watchdog_kthread, NULL, "kwatchdog");
164 }
165
166 static void __clocksource_unstable(struct clocksource *cs)
167 {
168         cs->flags &= ~(CLOCK_SOURCE_VALID_FOR_HRES | CLOCK_SOURCE_WATCHDOG);
169         cs->flags |= CLOCK_SOURCE_UNSTABLE;
170
171         /*
172          * If the clocksource is registered clocksource_watchdog_kthread() will
173          * re-rate and re-select.
174          */
175         if (list_empty(&cs->list)) {
176                 cs->rating = 0;
177                 return;
178         }
179
180         if (cs->mark_unstable)
181                 cs->mark_unstable(cs);
182
183         /* kick clocksource_watchdog_kthread() */
184         if (finished_booting)
185                 schedule_work(&watchdog_work);
186 }
187
188 /**
189  * clocksource_mark_unstable - mark clocksource unstable via watchdog
190  * @cs:         clocksource to be marked unstable
191  *
192  * This function is called by the x86 TSC code to mark clocksources as unstable;
193  * it defers demotion and re-selection to a kthread.
194  */
195 void clocksource_mark_unstable(struct clocksource *cs)
196 {
197         unsigned long flags;
198
199         spin_lock_irqsave(&watchdog_lock, flags);
200         if (!(cs->flags & CLOCK_SOURCE_UNSTABLE)) {
201                 if (!list_empty(&cs->list) && list_empty(&cs->wd_list))
202                         list_add(&cs->wd_list, &watchdog_list);
203                 __clocksource_unstable(cs);
204         }
205         spin_unlock_irqrestore(&watchdog_lock, flags);
206 }
207
208 ulong max_cswd_read_retries = 2;
209 module_param(max_cswd_read_retries, ulong, 0644);
210 EXPORT_SYMBOL_GPL(max_cswd_read_retries);
211 static int verify_n_cpus = 8;
212 module_param(verify_n_cpus, int, 0644);
213
214 enum wd_read_status {
215         WD_READ_SUCCESS,
216         WD_READ_UNSTABLE,
217         WD_READ_SKIP
218 };
219
220 static enum wd_read_status cs_watchdog_read(struct clocksource *cs, u64 *csnow, u64 *wdnow)
221 {
222         unsigned int nretries;
223         u64 wd_end, wd_end2, wd_delta;
224         int64_t wd_delay, wd_seq_delay;
225
226         for (nretries = 0; nretries <= max_cswd_read_retries; nretries++) {
227                 local_irq_disable();
228                 *wdnow = watchdog->read(watchdog);
229                 *csnow = cs->read(cs);
230                 wd_end = watchdog->read(watchdog);
231                 wd_end2 = watchdog->read(watchdog);
232                 local_irq_enable();
233
234                 wd_delta = clocksource_delta(wd_end, *wdnow, watchdog->mask);
235                 wd_delay = clocksource_cyc2ns(wd_delta, watchdog->mult,
236                                               watchdog->shift);
237                 if (wd_delay <= WATCHDOG_MAX_SKEW) {
238                         if (nretries > 1 || nretries >= max_cswd_read_retries) {
239                                 pr_warn("timekeeping watchdog on CPU%d: %s retried %d times before success\n",
240                                         smp_processor_id(), watchdog->name, nretries);
241                         }
242                         return WD_READ_SUCCESS;
243                 }
244
245                 /*
246                  * Now compute delay in consecutive watchdog read to see if
247                  * there is too much external interferences that cause
248                  * significant delay in reading both clocksource and watchdog.
249                  *
250                  * If consecutive WD read-back delay > WATCHDOG_MAX_SKEW/2,
251                  * report system busy, reinit the watchdog and skip the current
252                  * watchdog test.
253                  */
254                 wd_delta = clocksource_delta(wd_end2, wd_end, watchdog->mask);
255                 wd_seq_delay = clocksource_cyc2ns(wd_delta, watchdog->mult, watchdog->shift);
256                 if (wd_seq_delay > WATCHDOG_MAX_SKEW/2)
257                         goto skip_test;
258         }
259
260         pr_warn("timekeeping watchdog on CPU%d: %s read-back delay of %lldns, attempt %d, marking unstable\n",
261                 smp_processor_id(), watchdog->name, wd_delay, nretries);
262         return WD_READ_UNSTABLE;
263
264 skip_test:
265         pr_info("timekeeping watchdog on CPU%d: %s wd-wd read-back delay of %lldns\n",
266                 smp_processor_id(), watchdog->name, wd_seq_delay);
267         pr_info("wd-%s-wd read-back delay of %lldns, clock-skew test skipped!\n",
268                 cs->name, wd_delay);
269         return WD_READ_SKIP;
270 }
271
272 static u64 csnow_mid;
273 static cpumask_t cpus_ahead;
274 static cpumask_t cpus_behind;
275 static cpumask_t cpus_chosen;
276
277 static void clocksource_verify_choose_cpus(void)
278 {
279         int cpu, i, n = verify_n_cpus;
280
281         if (n < 0) {
282                 /* Check all of the CPUs. */
283                 cpumask_copy(&cpus_chosen, cpu_online_mask);
284                 cpumask_clear_cpu(smp_processor_id(), &cpus_chosen);
285                 return;
286         }
287
288         /* If no checking desired, or no other CPU to check, leave. */
289         cpumask_clear(&cpus_chosen);
290         if (n == 0 || num_online_cpus() <= 1)
291                 return;
292
293         /* Make sure to select at least one CPU other than the current CPU. */
294         cpu = cpumask_first(cpu_online_mask);
295         if (cpu == smp_processor_id())
296                 cpu = cpumask_next(cpu, cpu_online_mask);
297         if (WARN_ON_ONCE(cpu >= nr_cpu_ids))
298                 return;
299         cpumask_set_cpu(cpu, &cpus_chosen);
300
301         /* Force a sane value for the boot parameter. */
302         if (n > nr_cpu_ids)
303                 n = nr_cpu_ids;
304
305         /*
306          * Randomly select the specified number of CPUs.  If the same
307          * CPU is selected multiple times, that CPU is checked only once,
308          * and no replacement CPU is selected.  This gracefully handles
309          * situations where verify_n_cpus is greater than the number of
310          * CPUs that are currently online.
311          */
312         for (i = 1; i < n; i++) {
313                 cpu = prandom_u32_max(nr_cpu_ids);
314                 cpu = cpumask_next(cpu - 1, cpu_online_mask);
315                 if (cpu >= nr_cpu_ids)
316                         cpu = cpumask_first(cpu_online_mask);
317                 if (!WARN_ON_ONCE(cpu >= nr_cpu_ids))
318                         cpumask_set_cpu(cpu, &cpus_chosen);
319         }
320
321         /* Don't verify ourselves. */
322         cpumask_clear_cpu(smp_processor_id(), &cpus_chosen);
323 }
324
325 static void clocksource_verify_one_cpu(void *csin)
326 {
327         struct clocksource *cs = (struct clocksource *)csin;
328
329         csnow_mid = cs->read(cs);
330 }
331
332 void clocksource_verify_percpu(struct clocksource *cs)
333 {
334         int64_t cs_nsec, cs_nsec_max = 0, cs_nsec_min = LLONG_MAX;
335         u64 csnow_begin, csnow_end;
336         int cpu, testcpu;
337         s64 delta;
338
339         if (verify_n_cpus == 0)
340                 return;
341         cpumask_clear(&cpus_ahead);
342         cpumask_clear(&cpus_behind);
343         cpus_read_lock();
344         preempt_disable();
345         clocksource_verify_choose_cpus();
346         if (cpumask_empty(&cpus_chosen)) {
347                 preempt_enable();
348                 cpus_read_unlock();
349                 pr_warn("Not enough CPUs to check clocksource '%s'.\n", cs->name);
350                 return;
351         }
352         testcpu = smp_processor_id();
353         pr_warn("Checking clocksource %s synchronization from CPU %d to CPUs %*pbl.\n", cs->name, testcpu, cpumask_pr_args(&cpus_chosen));
354         for_each_cpu(cpu, &cpus_chosen) {
355                 if (cpu == testcpu)
356                         continue;
357                 csnow_begin = cs->read(cs);
358                 smp_call_function_single(cpu, clocksource_verify_one_cpu, cs, 1);
359                 csnow_end = cs->read(cs);
360                 delta = (s64)((csnow_mid - csnow_begin) & cs->mask);
361                 if (delta < 0)
362                         cpumask_set_cpu(cpu, &cpus_behind);
363                 delta = (csnow_end - csnow_mid) & cs->mask;
364                 if (delta < 0)
365                         cpumask_set_cpu(cpu, &cpus_ahead);
366                 delta = clocksource_delta(csnow_end, csnow_begin, cs->mask);
367                 cs_nsec = clocksource_cyc2ns(delta, cs->mult, cs->shift);
368                 if (cs_nsec > cs_nsec_max)
369                         cs_nsec_max = cs_nsec;
370                 if (cs_nsec < cs_nsec_min)
371                         cs_nsec_min = cs_nsec;
372         }
373         preempt_enable();
374         cpus_read_unlock();
375         if (!cpumask_empty(&cpus_ahead))
376                 pr_warn("        CPUs %*pbl ahead of CPU %d for clocksource %s.\n",
377                         cpumask_pr_args(&cpus_ahead), testcpu, cs->name);
378         if (!cpumask_empty(&cpus_behind))
379                 pr_warn("        CPUs %*pbl behind CPU %d for clocksource %s.\n",
380                         cpumask_pr_args(&cpus_behind), testcpu, cs->name);
381         if (!cpumask_empty(&cpus_ahead) || !cpumask_empty(&cpus_behind))
382                 pr_warn("        CPU %d check durations %lldns - %lldns for clocksource %s.\n",
383                         testcpu, cs_nsec_min, cs_nsec_max, cs->name);
384 }
385 EXPORT_SYMBOL_GPL(clocksource_verify_percpu);
386
387 static inline void clocksource_reset_watchdog(void)
388 {
389         struct clocksource *cs;
390
391         list_for_each_entry(cs, &watchdog_list, wd_list)
392                 cs->flags &= ~CLOCK_SOURCE_WATCHDOG;
393 }
394
395
396 static void clocksource_watchdog(struct timer_list *unused)
397 {
398         u64 csnow, wdnow, cslast, wdlast, delta;
399         int next_cpu, reset_pending;
400         int64_t wd_nsec, cs_nsec;
401         struct clocksource *cs;
402         enum wd_read_status read_ret;
403         unsigned long extra_wait = 0;
404         u32 md;
405
406         spin_lock(&watchdog_lock);
407         if (!watchdog_running)
408                 goto out;
409
410         reset_pending = atomic_read(&watchdog_reset_pending);
411
412         list_for_each_entry(cs, &watchdog_list, wd_list) {
413
414                 /* Clocksource already marked unstable? */
415                 if (cs->flags & CLOCK_SOURCE_UNSTABLE) {
416                         if (finished_booting)
417                                 schedule_work(&watchdog_work);
418                         continue;
419                 }
420
421                 read_ret = cs_watchdog_read(cs, &csnow, &wdnow);
422
423                 if (read_ret == WD_READ_UNSTABLE) {
424                         /* Clock readout unreliable, so give it up. */
425                         __clocksource_unstable(cs);
426                         continue;
427                 }
428
429                 /*
430                  * When WD_READ_SKIP is returned, it means the system is likely
431                  * under very heavy load, where the latency of reading
432                  * watchdog/clocksource is very big, and affect the accuracy of
433                  * watchdog check. So give system some space and suspend the
434                  * watchdog check for 5 minutes.
435                  */
436                 if (read_ret == WD_READ_SKIP) {
437                         /*
438                          * As the watchdog timer will be suspended, and
439                          * cs->last could keep unchanged for 5 minutes, reset
440                          * the counters.
441                          */
442                         clocksource_reset_watchdog();
443                         extra_wait = HZ * 300;
444                         break;
445                 }
446
447                 /* Clocksource initialized ? */
448                 if (!(cs->flags & CLOCK_SOURCE_WATCHDOG) ||
449                     atomic_read(&watchdog_reset_pending)) {
450                         cs->flags |= CLOCK_SOURCE_WATCHDOG;
451                         cs->wd_last = wdnow;
452                         cs->cs_last = csnow;
453                         continue;
454                 }
455
456                 delta = clocksource_delta(wdnow, cs->wd_last, watchdog->mask);
457                 wd_nsec = clocksource_cyc2ns(delta, watchdog->mult,
458                                              watchdog->shift);
459
460                 delta = clocksource_delta(csnow, cs->cs_last, cs->mask);
461                 cs_nsec = clocksource_cyc2ns(delta, cs->mult, cs->shift);
462                 wdlast = cs->wd_last; /* save these in case we print them */
463                 cslast = cs->cs_last;
464                 cs->cs_last = csnow;
465                 cs->wd_last = wdnow;
466
467                 if (atomic_read(&watchdog_reset_pending))
468                         continue;
469
470                 /* Check the deviation from the watchdog clocksource. */
471                 md = cs->uncertainty_margin + watchdog->uncertainty_margin;
472                 if (abs(cs_nsec - wd_nsec) > md) {
473                         pr_warn("timekeeping watchdog on CPU%d: Marking clocksource '%s' as unstable because the skew is too large:\n",
474                                 smp_processor_id(), cs->name);
475                         pr_warn("                      '%s' wd_nsec: %lld wd_now: %llx wd_last: %llx mask: %llx\n",
476                                 watchdog->name, wd_nsec, wdnow, wdlast, watchdog->mask);
477                         pr_warn("                      '%s' cs_nsec: %lld cs_now: %llx cs_last: %llx mask: %llx\n",
478                                 cs->name, cs_nsec, csnow, cslast, cs->mask);
479                         if (curr_clocksource == cs)
480                                 pr_warn("                      '%s' is current clocksource.\n", cs->name);
481                         else if (curr_clocksource)
482                                 pr_warn("                      '%s' (not '%s') is current clocksource.\n", curr_clocksource->name, cs->name);
483                         else
484                                 pr_warn("                      No current clocksource.\n");
485                         __clocksource_unstable(cs);
486                         continue;
487                 }
488
489                 if (cs == curr_clocksource && cs->tick_stable)
490                         cs->tick_stable(cs);
491
492                 if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) &&
493                     (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) &&
494                     (watchdog->flags & CLOCK_SOURCE_IS_CONTINUOUS)) {
495                         /* Mark it valid for high-res. */
496                         cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
497
498                         /*
499                          * clocksource_done_booting() will sort it if
500                          * finished_booting is not set yet.
501                          */
502                         if (!finished_booting)
503                                 continue;
504
505                         /*
506                          * If this is not the current clocksource let
507                          * the watchdog thread reselect it. Due to the
508                          * change to high res this clocksource might
509                          * be preferred now. If it is the current
510                          * clocksource let the tick code know about
511                          * that change.
512                          */
513                         if (cs != curr_clocksource) {
514                                 cs->flags |= CLOCK_SOURCE_RESELECT;
515                                 schedule_work(&watchdog_work);
516                         } else {
517                                 tick_clock_notify();
518                         }
519                 }
520         }
521
522         /*
523          * We only clear the watchdog_reset_pending, when we did a
524          * full cycle through all clocksources.
525          */
526         if (reset_pending)
527                 atomic_dec(&watchdog_reset_pending);
528
529         /*
530          * Cycle through CPUs to check if the CPUs stay synchronized
531          * to each other.
532          */
533         next_cpu = cpumask_next(raw_smp_processor_id(), cpu_online_mask);
534         if (next_cpu >= nr_cpu_ids)
535                 next_cpu = cpumask_first(cpu_online_mask);
536
537         /*
538          * Arm timer if not already pending: could race with concurrent
539          * pair clocksource_stop_watchdog() clocksource_start_watchdog().
540          */
541         if (!timer_pending(&watchdog_timer)) {
542                 watchdog_timer.expires += WATCHDOG_INTERVAL + extra_wait;
543                 add_timer_on(&watchdog_timer, next_cpu);
544         }
545 out:
546         spin_unlock(&watchdog_lock);
547 }
548
549 static inline void clocksource_start_watchdog(void)
550 {
551         if (watchdog_running || !watchdog || list_empty(&watchdog_list))
552                 return;
553         timer_setup(&watchdog_timer, clocksource_watchdog, 0);
554         watchdog_timer.expires = jiffies + WATCHDOG_INTERVAL;
555         add_timer_on(&watchdog_timer, cpumask_first(cpu_online_mask));
556         watchdog_running = 1;
557 }
558
559 static inline void clocksource_stop_watchdog(void)
560 {
561         if (!watchdog_running || (watchdog && !list_empty(&watchdog_list)))
562                 return;
563         del_timer(&watchdog_timer);
564         watchdog_running = 0;
565 }
566
567 static void clocksource_resume_watchdog(void)
568 {
569         atomic_inc(&watchdog_reset_pending);
570 }
571
572 static void clocksource_enqueue_watchdog(struct clocksource *cs)
573 {
574         INIT_LIST_HEAD(&cs->wd_list);
575
576         if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) {
577                 /* cs is a clocksource to be watched. */
578                 list_add(&cs->wd_list, &watchdog_list);
579                 cs->flags &= ~CLOCK_SOURCE_WATCHDOG;
580         } else {
581                 /* cs is a watchdog. */
582                 if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
583                         cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
584         }
585 }
586
587 static void clocksource_select_watchdog(bool fallback)
588 {
589         struct clocksource *cs, *old_wd;
590         unsigned long flags;
591
592         spin_lock_irqsave(&watchdog_lock, flags);
593         /* save current watchdog */
594         old_wd = watchdog;
595         if (fallback)
596                 watchdog = NULL;
597
598         list_for_each_entry(cs, &clocksource_list, list) {
599                 /* cs is a clocksource to be watched. */
600                 if (cs->flags & CLOCK_SOURCE_MUST_VERIFY)
601                         continue;
602
603                 /* Skip current if we were requested for a fallback. */
604                 if (fallback && cs == old_wd)
605                         continue;
606
607                 /* Pick the best watchdog. */
608                 if (!watchdog || cs->rating > watchdog->rating)
609                         watchdog = cs;
610         }
611         /* If we failed to find a fallback restore the old one. */
612         if (!watchdog)
613                 watchdog = old_wd;
614
615         /* If we changed the watchdog we need to reset cycles. */
616         if (watchdog != old_wd)
617                 clocksource_reset_watchdog();
618
619         /* Check if the watchdog timer needs to be started. */
620         clocksource_start_watchdog();
621         spin_unlock_irqrestore(&watchdog_lock, flags);
622 }
623
624 static void clocksource_dequeue_watchdog(struct clocksource *cs)
625 {
626         if (cs != watchdog) {
627                 if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) {
628                         /* cs is a watched clocksource. */
629                         list_del_init(&cs->wd_list);
630                         /* Check if the watchdog timer needs to be stopped. */
631                         clocksource_stop_watchdog();
632                 }
633         }
634 }
635
636 static int __clocksource_watchdog_kthread(void)
637 {
638         struct clocksource *cs, *tmp;
639         unsigned long flags;
640         int select = 0;
641
642         /* Do any required per-CPU skew verification. */
643         if (curr_clocksource &&
644             curr_clocksource->flags & CLOCK_SOURCE_UNSTABLE &&
645             curr_clocksource->flags & CLOCK_SOURCE_VERIFY_PERCPU)
646                 clocksource_verify_percpu(curr_clocksource);
647
648         spin_lock_irqsave(&watchdog_lock, flags);
649         list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list) {
650                 if (cs->flags & CLOCK_SOURCE_UNSTABLE) {
651                         list_del_init(&cs->wd_list);
652                         __clocksource_change_rating(cs, 0);
653                         select = 1;
654                 }
655                 if (cs->flags & CLOCK_SOURCE_RESELECT) {
656                         cs->flags &= ~CLOCK_SOURCE_RESELECT;
657                         select = 1;
658                 }
659         }
660         /* Check if the watchdog timer needs to be stopped. */
661         clocksource_stop_watchdog();
662         spin_unlock_irqrestore(&watchdog_lock, flags);
663
664         return select;
665 }
666
667 static int clocksource_watchdog_kthread(void *data)
668 {
669         mutex_lock(&clocksource_mutex);
670         if (__clocksource_watchdog_kthread())
671                 clocksource_select();
672         mutex_unlock(&clocksource_mutex);
673         return 0;
674 }
675
676 static bool clocksource_is_watchdog(struct clocksource *cs)
677 {
678         return cs == watchdog;
679 }
680
681 #else /* CONFIG_CLOCKSOURCE_WATCHDOG */
682
683 static void clocksource_enqueue_watchdog(struct clocksource *cs)
684 {
685         if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
686                 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
687 }
688
689 static void clocksource_select_watchdog(bool fallback) { }
690 static inline void clocksource_dequeue_watchdog(struct clocksource *cs) { }
691 static inline void clocksource_resume_watchdog(void) { }
692 static inline int __clocksource_watchdog_kthread(void) { return 0; }
693 static bool clocksource_is_watchdog(struct clocksource *cs) { return false; }
694 void clocksource_mark_unstable(struct clocksource *cs) { }
695
696 static inline void clocksource_watchdog_lock(unsigned long *flags) { }
697 static inline void clocksource_watchdog_unlock(unsigned long *flags) { }
698
699 #endif /* CONFIG_CLOCKSOURCE_WATCHDOG */
700
701 static bool clocksource_is_suspend(struct clocksource *cs)
702 {
703         return cs == suspend_clocksource;
704 }
705
706 static void __clocksource_suspend_select(struct clocksource *cs)
707 {
708         /*
709          * Skip the clocksource which will be stopped in suspend state.
710          */
711         if (!(cs->flags & CLOCK_SOURCE_SUSPEND_NONSTOP))
712                 return;
713
714         /*
715          * The nonstop clocksource can be selected as the suspend clocksource to
716          * calculate the suspend time, so it should not supply suspend/resume
717          * interfaces to suspend the nonstop clocksource when system suspends.
718          */
719         if (cs->suspend || cs->resume) {
720                 pr_warn("Nonstop clocksource %s should not supply suspend/resume interfaces\n",
721                         cs->name);
722         }
723
724         /* Pick the best rating. */
725         if (!suspend_clocksource || cs->rating > suspend_clocksource->rating)
726                 suspend_clocksource = cs;
727 }
728
729 /**
730  * clocksource_suspend_select - Select the best clocksource for suspend timing
731  * @fallback:   if select a fallback clocksource
732  */
733 static void clocksource_suspend_select(bool fallback)
734 {
735         struct clocksource *cs, *old_suspend;
736
737         old_suspend = suspend_clocksource;
738         if (fallback)
739                 suspend_clocksource = NULL;
740
741         list_for_each_entry(cs, &clocksource_list, list) {
742                 /* Skip current if we were requested for a fallback. */
743                 if (fallback && cs == old_suspend)
744                         continue;
745
746                 __clocksource_suspend_select(cs);
747         }
748 }
749
750 /**
751  * clocksource_start_suspend_timing - Start measuring the suspend timing
752  * @cs:                 current clocksource from timekeeping
753  * @start_cycles:       current cycles from timekeeping
754  *
755  * This function will save the start cycle values of suspend timer to calculate
756  * the suspend time when resuming system.
757  *
758  * This function is called late in the suspend process from timekeeping_suspend(),
759  * that means processes are frozen, non-boot cpus and interrupts are disabled
760  * now. It is therefore possible to start the suspend timer without taking the
761  * clocksource mutex.
762  */
763 void clocksource_start_suspend_timing(struct clocksource *cs, u64 start_cycles)
764 {
765         if (!suspend_clocksource)
766                 return;
767
768         /*
769          * If current clocksource is the suspend timer, we should use the
770          * tkr_mono.cycle_last value as suspend_start to avoid same reading
771          * from suspend timer.
772          */
773         if (clocksource_is_suspend(cs)) {
774                 suspend_start = start_cycles;
775                 return;
776         }
777
778         if (suspend_clocksource->enable &&
779             suspend_clocksource->enable(suspend_clocksource)) {
780                 pr_warn_once("Failed to enable the non-suspend-able clocksource.\n");
781                 return;
782         }
783
784         suspend_start = suspend_clocksource->read(suspend_clocksource);
785 }
786
787 /**
788  * clocksource_stop_suspend_timing - Stop measuring the suspend timing
789  * @cs:         current clocksource from timekeeping
790  * @cycle_now:  current cycles from timekeeping
791  *
792  * This function will calculate the suspend time from suspend timer.
793  *
794  * Returns nanoseconds since suspend started, 0 if no usable suspend clocksource.
795  *
796  * This function is called early in the resume process from timekeeping_resume(),
797  * that means there is only one cpu, no processes are running and the interrupts
798  * are disabled. It is therefore possible to stop the suspend timer without
799  * taking the clocksource mutex.
800  */
801 u64 clocksource_stop_suspend_timing(struct clocksource *cs, u64 cycle_now)
802 {
803         u64 now, delta, nsec = 0;
804
805         if (!suspend_clocksource)
806                 return 0;
807
808         /*
809          * If current clocksource is the suspend timer, we should use the
810          * tkr_mono.cycle_last value from timekeeping as current cycle to
811          * avoid same reading from suspend timer.
812          */
813         if (clocksource_is_suspend(cs))
814                 now = cycle_now;
815         else
816                 now = suspend_clocksource->read(suspend_clocksource);
817
818         if (now > suspend_start) {
819                 delta = clocksource_delta(now, suspend_start,
820                                           suspend_clocksource->mask);
821                 nsec = mul_u64_u32_shr(delta, suspend_clocksource->mult,
822                                        suspend_clocksource->shift);
823         }
824
825         /*
826          * Disable the suspend timer to save power if current clocksource is
827          * not the suspend timer.
828          */
829         if (!clocksource_is_suspend(cs) && suspend_clocksource->disable)
830                 suspend_clocksource->disable(suspend_clocksource);
831
832         return nsec;
833 }
834
835 /**
836  * clocksource_suspend - suspend the clocksource(s)
837  */
838 void clocksource_suspend(void)
839 {
840         struct clocksource *cs;
841
842         list_for_each_entry_reverse(cs, &clocksource_list, list)
843                 if (cs->suspend)
844                         cs->suspend(cs);
845 }
846
847 /**
848  * clocksource_resume - resume the clocksource(s)
849  */
850 void clocksource_resume(void)
851 {
852         struct clocksource *cs;
853
854         list_for_each_entry(cs, &clocksource_list, list)
855                 if (cs->resume)
856                         cs->resume(cs);
857
858         clocksource_resume_watchdog();
859 }
860
861 /**
862  * clocksource_touch_watchdog - Update watchdog
863  *
864  * Update the watchdog after exception contexts such as kgdb so as not
865  * to incorrectly trip the watchdog. This might fail when the kernel
866  * was stopped in code which holds watchdog_lock.
867  */
868 void clocksource_touch_watchdog(void)
869 {
870         clocksource_resume_watchdog();
871 }
872
873 /**
874  * clocksource_max_adjustment- Returns max adjustment amount
875  * @cs:         Pointer to clocksource
876  *
877  */
878 static u32 clocksource_max_adjustment(struct clocksource *cs)
879 {
880         u64 ret;
881         /*
882          * We won't try to correct for more than 11% adjustments (110,000 ppm),
883          */
884         ret = (u64)cs->mult * 11;
885         do_div(ret,100);
886         return (u32)ret;
887 }
888
889 /**
890  * clocks_calc_max_nsecs - Returns maximum nanoseconds that can be converted
891  * @mult:       cycle to nanosecond multiplier
892  * @shift:      cycle to nanosecond divisor (power of two)
893  * @maxadj:     maximum adjustment value to mult (~11%)
894  * @mask:       bitmask for two's complement subtraction of non 64 bit counters
895  * @max_cyc:    maximum cycle value before potential overflow (does not include
896  *              any safety margin)
897  *
898  * NOTE: This function includes a safety margin of 50%, in other words, we
899  * return half the number of nanoseconds the hardware counter can technically
900  * cover. This is done so that we can potentially detect problems caused by
901  * delayed timers or bad hardware, which might result in time intervals that
902  * are larger than what the math used can handle without overflows.
903  */
904 u64 clocks_calc_max_nsecs(u32 mult, u32 shift, u32 maxadj, u64 mask, u64 *max_cyc)
905 {
906         u64 max_nsecs, max_cycles;
907
908         /*
909          * Calculate the maximum number of cycles that we can pass to the
910          * cyc2ns() function without overflowing a 64-bit result.
911          */
912         max_cycles = ULLONG_MAX;
913         do_div(max_cycles, mult+maxadj);
914
915         /*
916          * The actual maximum number of cycles we can defer the clocksource is
917          * determined by the minimum of max_cycles and mask.
918          * Note: Here we subtract the maxadj to make sure we don't sleep for
919          * too long if there's a large negative adjustment.
920          */
921         max_cycles = min(max_cycles, mask);
922         max_nsecs = clocksource_cyc2ns(max_cycles, mult - maxadj, shift);
923
924         /* return the max_cycles value as well if requested */
925         if (max_cyc)
926                 *max_cyc = max_cycles;
927
928         /* Return 50% of the actual maximum, so we can detect bad values */
929         max_nsecs >>= 1;
930
931         return max_nsecs;
932 }
933
934 /**
935  * clocksource_update_max_deferment - Updates the clocksource max_idle_ns & max_cycles
936  * @cs:         Pointer to clocksource to be updated
937  *
938  */
939 static inline void clocksource_update_max_deferment(struct clocksource *cs)
940 {
941         cs->max_idle_ns = clocks_calc_max_nsecs(cs->mult, cs->shift,
942                                                 cs->maxadj, cs->mask,
943                                                 &cs->max_cycles);
944 }
945
946 static struct clocksource *clocksource_find_best(bool oneshot, bool skipcur)
947 {
948         struct clocksource *cs;
949
950         if (!finished_booting || list_empty(&clocksource_list))
951                 return NULL;
952
953         /*
954          * We pick the clocksource with the highest rating. If oneshot
955          * mode is active, we pick the highres valid clocksource with
956          * the best rating.
957          */
958         list_for_each_entry(cs, &clocksource_list, list) {
959                 if (skipcur && cs == curr_clocksource)
960                         continue;
961                 if (oneshot && !(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES))
962                         continue;
963                 return cs;
964         }
965         return NULL;
966 }
967
968 static void __clocksource_select(bool skipcur)
969 {
970         bool oneshot = tick_oneshot_mode_active();
971         struct clocksource *best, *cs;
972
973         /* Find the best suitable clocksource */
974         best = clocksource_find_best(oneshot, skipcur);
975         if (!best)
976                 return;
977
978         if (!strlen(override_name))
979                 goto found;
980
981         /* Check for the override clocksource. */
982         list_for_each_entry(cs, &clocksource_list, list) {
983                 if (skipcur && cs == curr_clocksource)
984                         continue;
985                 if (strcmp(cs->name, override_name) != 0)
986                         continue;
987                 /*
988                  * Check to make sure we don't switch to a non-highres
989                  * capable clocksource if the tick code is in oneshot
990                  * mode (highres or nohz)
991                  */
992                 if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) && oneshot) {
993                         /* Override clocksource cannot be used. */
994                         if (cs->flags & CLOCK_SOURCE_UNSTABLE) {
995                                 pr_warn("Override clocksource %s is unstable and not HRT compatible - cannot switch while in HRT/NOHZ mode\n",
996                                         cs->name);
997                                 override_name[0] = 0;
998                         } else {
999                                 /*
1000                                  * The override cannot be currently verified.
1001                                  * Deferring to let the watchdog check.
1002                                  */
1003                                 pr_info("Override clocksource %s is not currently HRT compatible - deferring\n",
1004                                         cs->name);
1005                         }
1006                 } else
1007                         /* Override clocksource can be used. */
1008                         best = cs;
1009                 break;
1010         }
1011
1012 found:
1013         if (curr_clocksource != best && !timekeeping_notify(best)) {
1014                 pr_info("Switched to clocksource %s\n", best->name);
1015                 curr_clocksource = best;
1016         }
1017 }
1018
1019 /**
1020  * clocksource_select - Select the best clocksource available
1021  *
1022  * Private function. Must hold clocksource_mutex when called.
1023  *
1024  * Select the clocksource with the best rating, or the clocksource,
1025  * which is selected by userspace override.
1026  */
1027 static void clocksource_select(void)
1028 {
1029         __clocksource_select(false);
1030 }
1031
1032 static void clocksource_select_fallback(void)
1033 {
1034         __clocksource_select(true);
1035 }
1036
1037 /*
1038  * clocksource_done_booting - Called near the end of core bootup
1039  *
1040  * Hack to avoid lots of clocksource churn at boot time.
1041  * We use fs_initcall because we want this to start before
1042  * device_initcall but after subsys_initcall.
1043  */
1044 static int __init clocksource_done_booting(void)
1045 {
1046         mutex_lock(&clocksource_mutex);
1047         curr_clocksource = clocksource_default_clock();
1048         finished_booting = 1;
1049         /*
1050          * Run the watchdog first to eliminate unstable clock sources
1051          */
1052         __clocksource_watchdog_kthread();
1053         clocksource_select();
1054         mutex_unlock(&clocksource_mutex);
1055         return 0;
1056 }
1057 fs_initcall(clocksource_done_booting);
1058
1059 /*
1060  * Enqueue the clocksource sorted by rating
1061  */
1062 static void clocksource_enqueue(struct clocksource *cs)
1063 {
1064         struct list_head *entry = &clocksource_list;
1065         struct clocksource *tmp;
1066
1067         list_for_each_entry(tmp, &clocksource_list, list) {
1068                 /* Keep track of the place, where to insert */
1069                 if (tmp->rating < cs->rating)
1070                         break;
1071                 entry = &tmp->list;
1072         }
1073         list_add(&cs->list, entry);
1074 }
1075
1076 /**
1077  * __clocksource_update_freq_scale - Used update clocksource with new freq
1078  * @cs:         clocksource to be registered
1079  * @scale:      Scale factor multiplied against freq to get clocksource hz
1080  * @freq:       clocksource frequency (cycles per second) divided by scale
1081  *
1082  * This should only be called from the clocksource->enable() method.
1083  *
1084  * This *SHOULD NOT* be called directly! Please use the
1085  * __clocksource_update_freq_hz() or __clocksource_update_freq_khz() helper
1086  * functions.
1087  */
1088 void __clocksource_update_freq_scale(struct clocksource *cs, u32 scale, u32 freq)
1089 {
1090         u64 sec;
1091
1092         /*
1093          * Default clocksources are *special* and self-define their mult/shift.
1094          * But, you're not special, so you should specify a freq value.
1095          */
1096         if (freq) {
1097                 /*
1098                  * Calc the maximum number of seconds which we can run before
1099                  * wrapping around. For clocksources which have a mask > 32-bit
1100                  * we need to limit the max sleep time to have a good
1101                  * conversion precision. 10 minutes is still a reasonable
1102                  * amount. That results in a shift value of 24 for a
1103                  * clocksource with mask >= 40-bit and f >= 4GHz. That maps to
1104                  * ~ 0.06ppm granularity for NTP.
1105                  */
1106                 sec = cs->mask;
1107                 do_div(sec, freq);
1108                 do_div(sec, scale);
1109                 if (!sec)
1110                         sec = 1;
1111                 else if (sec > 600 && cs->mask > UINT_MAX)
1112                         sec = 600;
1113
1114                 clocks_calc_mult_shift(&cs->mult, &cs->shift, freq,
1115                                        NSEC_PER_SEC / scale, sec * scale);
1116         }
1117
1118         /*
1119          * If the uncertainty margin is not specified, calculate it.
1120          * If both scale and freq are non-zero, calculate the clock
1121          * period, but bound below at 2*WATCHDOG_MAX_SKEW.  However,
1122          * if either of scale or freq is zero, be very conservative and
1123          * take the tens-of-milliseconds WATCHDOG_THRESHOLD value for the
1124          * uncertainty margin.  Allow stupidly small uncertainty margins
1125          * to be specified by the caller for testing purposes, but warn
1126          * to discourage production use of this capability.
1127          */
1128         if (scale && freq && !cs->uncertainty_margin) {
1129                 cs->uncertainty_margin = NSEC_PER_SEC / (scale * freq);
1130                 if (cs->uncertainty_margin < 2 * WATCHDOG_MAX_SKEW)
1131                         cs->uncertainty_margin = 2 * WATCHDOG_MAX_SKEW;
1132         } else if (!cs->uncertainty_margin) {
1133                 cs->uncertainty_margin = WATCHDOG_THRESHOLD;
1134         }
1135         WARN_ON_ONCE(cs->uncertainty_margin < 2 * WATCHDOG_MAX_SKEW);
1136
1137         /*
1138          * Ensure clocksources that have large 'mult' values don't overflow
1139          * when adjusted.
1140          */
1141         cs->maxadj = clocksource_max_adjustment(cs);
1142         while (freq && ((cs->mult + cs->maxadj < cs->mult)
1143                 || (cs->mult - cs->maxadj > cs->mult))) {
1144                 cs->mult >>= 1;
1145                 cs->shift--;
1146                 cs->maxadj = clocksource_max_adjustment(cs);
1147         }
1148
1149         /*
1150          * Only warn for *special* clocksources that self-define
1151          * their mult/shift values and don't specify a freq.
1152          */
1153         WARN_ONCE(cs->mult + cs->maxadj < cs->mult,
1154                 "timekeeping: Clocksource %s might overflow on 11%% adjustment\n",
1155                 cs->name);
1156
1157         clocksource_update_max_deferment(cs);
1158
1159         pr_info("%s: mask: 0x%llx max_cycles: 0x%llx, max_idle_ns: %lld ns\n",
1160                 cs->name, cs->mask, cs->max_cycles, cs->max_idle_ns);
1161 }
1162 EXPORT_SYMBOL_GPL(__clocksource_update_freq_scale);
1163
1164 /**
1165  * __clocksource_register_scale - Used to install new clocksources
1166  * @cs:         clocksource to be registered
1167  * @scale:      Scale factor multiplied against freq to get clocksource hz
1168  * @freq:       clocksource frequency (cycles per second) divided by scale
1169  *
1170  * Returns -EBUSY if registration fails, zero otherwise.
1171  *
1172  * This *SHOULD NOT* be called directly! Please use the
1173  * clocksource_register_hz() or clocksource_register_khz helper functions.
1174  */
1175 int __clocksource_register_scale(struct clocksource *cs, u32 scale, u32 freq)
1176 {
1177         unsigned long flags;
1178
1179         clocksource_arch_init(cs);
1180
1181         if (WARN_ON_ONCE((unsigned int)cs->id >= CSID_MAX))
1182                 cs->id = CSID_GENERIC;
1183         if (cs->vdso_clock_mode < 0 ||
1184             cs->vdso_clock_mode >= VDSO_CLOCKMODE_MAX) {
1185                 pr_warn("clocksource %s registered with invalid VDSO mode %d. Disabling VDSO support.\n",
1186                         cs->name, cs->vdso_clock_mode);
1187                 cs->vdso_clock_mode = VDSO_CLOCKMODE_NONE;
1188         }
1189
1190         /* Initialize mult/shift and max_idle_ns */
1191         __clocksource_update_freq_scale(cs, scale, freq);
1192
1193         /* Add clocksource to the clocksource list */
1194         mutex_lock(&clocksource_mutex);
1195
1196         clocksource_watchdog_lock(&flags);
1197         clocksource_enqueue(cs);
1198         clocksource_enqueue_watchdog(cs);
1199         clocksource_watchdog_unlock(&flags);
1200
1201         clocksource_select();
1202         clocksource_select_watchdog(false);
1203         __clocksource_suspend_select(cs);
1204         mutex_unlock(&clocksource_mutex);
1205         return 0;
1206 }
1207 EXPORT_SYMBOL_GPL(__clocksource_register_scale);
1208
1209 static void __clocksource_change_rating(struct clocksource *cs, int rating)
1210 {
1211         list_del(&cs->list);
1212         cs->rating = rating;
1213         clocksource_enqueue(cs);
1214 }
1215
1216 /**
1217  * clocksource_change_rating - Change the rating of a registered clocksource
1218  * @cs:         clocksource to be changed
1219  * @rating:     new rating
1220  */
1221 void clocksource_change_rating(struct clocksource *cs, int rating)
1222 {
1223         unsigned long flags;
1224
1225         mutex_lock(&clocksource_mutex);
1226         clocksource_watchdog_lock(&flags);
1227         __clocksource_change_rating(cs, rating);
1228         clocksource_watchdog_unlock(&flags);
1229
1230         clocksource_select();
1231         clocksource_select_watchdog(false);
1232         clocksource_suspend_select(false);
1233         mutex_unlock(&clocksource_mutex);
1234 }
1235 EXPORT_SYMBOL(clocksource_change_rating);
1236
1237 /*
1238  * Unbind clocksource @cs. Called with clocksource_mutex held
1239  */
1240 static int clocksource_unbind(struct clocksource *cs)
1241 {
1242         unsigned long flags;
1243
1244         if (clocksource_is_watchdog(cs)) {
1245                 /* Select and try to install a replacement watchdog. */
1246                 clocksource_select_watchdog(true);
1247                 if (clocksource_is_watchdog(cs))
1248                         return -EBUSY;
1249         }
1250
1251         if (cs == curr_clocksource) {
1252                 /* Select and try to install a replacement clock source */
1253                 clocksource_select_fallback();
1254                 if (curr_clocksource == cs)
1255                         return -EBUSY;
1256         }
1257
1258         if (clocksource_is_suspend(cs)) {
1259                 /*
1260                  * Select and try to install a replacement suspend clocksource.
1261                  * If no replacement suspend clocksource, we will just let the
1262                  * clocksource go and have no suspend clocksource.
1263                  */
1264                 clocksource_suspend_select(true);
1265         }
1266
1267         clocksource_watchdog_lock(&flags);
1268         clocksource_dequeue_watchdog(cs);
1269         list_del_init(&cs->list);
1270         clocksource_watchdog_unlock(&flags);
1271
1272         return 0;
1273 }
1274
1275 /**
1276  * clocksource_unregister - remove a registered clocksource
1277  * @cs: clocksource to be unregistered
1278  */
1279 int clocksource_unregister(struct clocksource *cs)
1280 {
1281         int ret = 0;
1282
1283         mutex_lock(&clocksource_mutex);
1284         if (!list_empty(&cs->list))
1285                 ret = clocksource_unbind(cs);
1286         mutex_unlock(&clocksource_mutex);
1287         return ret;
1288 }
1289 EXPORT_SYMBOL(clocksource_unregister);
1290
1291 #ifdef CONFIG_SYSFS
1292 /**
1293  * current_clocksource_show - sysfs interface for current clocksource
1294  * @dev:        unused
1295  * @attr:       unused
1296  * @buf:        char buffer to be filled with clocksource list
1297  *
1298  * Provides sysfs interface for listing current clocksource.
1299  */
1300 static ssize_t current_clocksource_show(struct device *dev,
1301                                         struct device_attribute *attr,
1302                                         char *buf)
1303 {
1304         ssize_t count = 0;
1305
1306         mutex_lock(&clocksource_mutex);
1307         count = snprintf(buf, PAGE_SIZE, "%s\n", curr_clocksource->name);
1308         mutex_unlock(&clocksource_mutex);
1309
1310         return count;
1311 }
1312
1313 ssize_t sysfs_get_uname(const char *buf, char *dst, size_t cnt)
1314 {
1315         size_t ret = cnt;
1316
1317         /* strings from sysfs write are not 0 terminated! */
1318         if (!cnt || cnt >= CS_NAME_LEN)
1319                 return -EINVAL;
1320
1321         /* strip of \n: */
1322         if (buf[cnt-1] == '\n')
1323                 cnt--;
1324         if (cnt > 0)
1325                 memcpy(dst, buf, cnt);
1326         dst[cnt] = 0;
1327         return ret;
1328 }
1329
1330 /**
1331  * current_clocksource_store - interface for manually overriding clocksource
1332  * @dev:        unused
1333  * @attr:       unused
1334  * @buf:        name of override clocksource
1335  * @count:      length of buffer
1336  *
1337  * Takes input from sysfs interface for manually overriding the default
1338  * clocksource selection.
1339  */
1340 static ssize_t current_clocksource_store(struct device *dev,
1341                                          struct device_attribute *attr,
1342                                          const char *buf, size_t count)
1343 {
1344         ssize_t ret;
1345
1346         mutex_lock(&clocksource_mutex);
1347
1348         ret = sysfs_get_uname(buf, override_name, count);
1349         if (ret >= 0)
1350                 clocksource_select();
1351
1352         mutex_unlock(&clocksource_mutex);
1353
1354         return ret;
1355 }
1356 static DEVICE_ATTR_RW(current_clocksource);
1357
1358 /**
1359  * unbind_clocksource_store - interface for manually unbinding clocksource
1360  * @dev:        unused
1361  * @attr:       unused
1362  * @buf:        unused
1363  * @count:      length of buffer
1364  *
1365  * Takes input from sysfs interface for manually unbinding a clocksource.
1366  */
1367 static ssize_t unbind_clocksource_store(struct device *dev,
1368                                         struct device_attribute *attr,
1369                                         const char *buf, size_t count)
1370 {
1371         struct clocksource *cs;
1372         char name[CS_NAME_LEN];
1373         ssize_t ret;
1374
1375         ret = sysfs_get_uname(buf, name, count);
1376         if (ret < 0)
1377                 return ret;
1378
1379         ret = -ENODEV;
1380         mutex_lock(&clocksource_mutex);
1381         list_for_each_entry(cs, &clocksource_list, list) {
1382                 if (strcmp(cs->name, name))
1383                         continue;
1384                 ret = clocksource_unbind(cs);
1385                 break;
1386         }
1387         mutex_unlock(&clocksource_mutex);
1388
1389         return ret ? ret : count;
1390 }
1391 static DEVICE_ATTR_WO(unbind_clocksource);
1392
1393 /**
1394  * available_clocksource_show - sysfs interface for listing clocksource
1395  * @dev:        unused
1396  * @attr:       unused
1397  * @buf:        char buffer to be filled with clocksource list
1398  *
1399  * Provides sysfs interface for listing registered clocksources
1400  */
1401 static ssize_t available_clocksource_show(struct device *dev,
1402                                           struct device_attribute *attr,
1403                                           char *buf)
1404 {
1405         struct clocksource *src;
1406         ssize_t count = 0;
1407
1408         mutex_lock(&clocksource_mutex);
1409         list_for_each_entry(src, &clocksource_list, list) {
1410                 /*
1411                  * Don't show non-HRES clocksource if the tick code is
1412                  * in one shot mode (highres=on or nohz=on)
1413                  */
1414                 if (!tick_oneshot_mode_active() ||
1415                     (src->flags & CLOCK_SOURCE_VALID_FOR_HRES))
1416                         count += snprintf(buf + count,
1417                                   max((ssize_t)PAGE_SIZE - count, (ssize_t)0),
1418                                   "%s ", src->name);
1419         }
1420         mutex_unlock(&clocksource_mutex);
1421
1422         count += snprintf(buf + count,
1423                           max((ssize_t)PAGE_SIZE - count, (ssize_t)0), "\n");
1424
1425         return count;
1426 }
1427 static DEVICE_ATTR_RO(available_clocksource);
1428
1429 static struct attribute *clocksource_attrs[] = {
1430         &dev_attr_current_clocksource.attr,
1431         &dev_attr_unbind_clocksource.attr,
1432         &dev_attr_available_clocksource.attr,
1433         NULL
1434 };
1435 ATTRIBUTE_GROUPS(clocksource);
1436
1437 static struct bus_type clocksource_subsys = {
1438         .name = "clocksource",
1439         .dev_name = "clocksource",
1440 };
1441
1442 static struct device device_clocksource = {
1443         .id     = 0,
1444         .bus    = &clocksource_subsys,
1445         .groups = clocksource_groups,
1446 };
1447
1448 static int __init init_clocksource_sysfs(void)
1449 {
1450         int error = subsys_system_register(&clocksource_subsys, NULL);
1451
1452         if (!error)
1453                 error = device_register(&device_clocksource);
1454
1455         return error;
1456 }
1457
1458 device_initcall(init_clocksource_sysfs);
1459 #endif /* CONFIG_SYSFS */
1460
1461 /**
1462  * boot_override_clocksource - boot clock override
1463  * @str:        override name
1464  *
1465  * Takes a clocksource= boot argument and uses it
1466  * as the clocksource override name.
1467  */
1468 static int __init boot_override_clocksource(char* str)
1469 {
1470         mutex_lock(&clocksource_mutex);
1471         if (str)
1472                 strlcpy(override_name, str, sizeof(override_name));
1473         mutex_unlock(&clocksource_mutex);
1474         return 1;
1475 }
1476
1477 __setup("clocksource=", boot_override_clocksource);
1478
1479 /**
1480  * boot_override_clock - Compatibility layer for deprecated boot option
1481  * @str:        override name
1482  *
1483  * DEPRECATED! Takes a clock= boot argument and uses it
1484  * as the clocksource override name
1485  */
1486 static int __init boot_override_clock(char* str)
1487 {
1488         if (!strcmp(str, "pmtmr")) {
1489                 pr_warn("clock=pmtmr is deprecated - use clocksource=acpi_pm\n");
1490                 return boot_override_clocksource("acpi_pm");
1491         }
1492         pr_warn("clock= boot option is deprecated - use clocksource=xyz\n");
1493         return boot_override_clocksource(str);
1494 }
1495
1496 __setup("clock=", boot_override_clock);