blob: 6d05b00410ccbd79c8e426acaa8dc7528e94d031 [file] [log] [blame]
john stultz734efb42006-06-26 00:25:05 -07001/*
2 * linux/kernel/time/clocksource.c
3 *
4 * This file contains the functions which manage clocksource drivers.
5 *
6 * Copyright (C) 2004, 2005 IBM, John Stultz (johnstul@us.ibm.com)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 *
22 * TODO WishList:
23 * o Allow clocksource drivers to be unregistered
john stultz734efb42006-06-26 00:25:05 -070024 */
25
Kay Sieversd369a5d2011-12-14 15:28:51 -080026#include <linux/device.h>
john stultz734efb42006-06-26 00:25:05 -070027#include <linux/clocksource.h>
john stultz734efb42006-06-26 00:25:05 -070028#include <linux/init.h>
29#include <linux/module.h>
Mathieu Desnoyersdc29a362007-02-10 01:43:43 -080030#include <linux/sched.h> /* for spin_unlock_irq() using preempt_count() m68k */
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080031#include <linux/tick.h>
Martin Schwidefsky01548f42009-08-18 17:09:42 +020032#include <linux/kthread.h>
john stultz734efb42006-06-26 00:25:05 -070033
Thomas Gleixner03e13cf2013-04-25 20:31:50 +000034#include "tick-internal.h"
35
Patrick Ohlya038a352009-02-12 05:03:34 +000036void timecounter_init(struct timecounter *tc,
37 const struct cyclecounter *cc,
38 u64 start_tstamp)
39{
40 tc->cc = cc;
41 tc->cycle_last = cc->read(cc);
42 tc->nsec = start_tstamp;
43}
David S. Miller3586e0a2009-11-11 19:06:30 -080044EXPORT_SYMBOL_GPL(timecounter_init);
Patrick Ohlya038a352009-02-12 05:03:34 +000045
46/**
47 * timecounter_read_delta - get nanoseconds since last call of this function
48 * @tc: Pointer to time counter
49 *
50 * When the underlying cycle counter runs over, this will be handled
51 * correctly as long as it does not run over more than once between
52 * calls.
53 *
54 * The first call to this function for a new time counter initializes
55 * the time tracking and returns an undefined result.
56 */
57static u64 timecounter_read_delta(struct timecounter *tc)
58{
59 cycle_t cycle_now, cycle_delta;
60 u64 ns_offset;
61
62 /* read cycle counter: */
63 cycle_now = tc->cc->read(tc->cc);
64
65 /* calculate the delta since the last timecounter_read_delta(): */
66 cycle_delta = (cycle_now - tc->cycle_last) & tc->cc->mask;
67
68 /* convert to nanoseconds: */
69 ns_offset = cyclecounter_cyc2ns(tc->cc, cycle_delta);
70
71 /* update time stamp of timecounter_read_delta() call: */
72 tc->cycle_last = cycle_now;
73
74 return ns_offset;
75}
76
77u64 timecounter_read(struct timecounter *tc)
78{
79 u64 nsec;
80
81 /* increment time by nanoseconds since last call */
82 nsec = timecounter_read_delta(tc);
83 nsec += tc->nsec;
84 tc->nsec = nsec;
85
86 return nsec;
87}
David S. Miller3586e0a2009-11-11 19:06:30 -080088EXPORT_SYMBOL_GPL(timecounter_read);
Patrick Ohlya038a352009-02-12 05:03:34 +000089
90u64 timecounter_cyc2time(struct timecounter *tc,
91 cycle_t cycle_tstamp)
92{
93 u64 cycle_delta = (cycle_tstamp - tc->cycle_last) & tc->cc->mask;
94 u64 nsec;
95
96 /*
97 * Instead of always treating cycle_tstamp as more recent
98 * than tc->cycle_last, detect when it is too far in the
99 * future and treat it as old time stamp instead.
100 */
101 if (cycle_delta > tc->cc->mask / 2) {
102 cycle_delta = (tc->cycle_last - cycle_tstamp) & tc->cc->mask;
103 nsec = tc->nsec - cyclecounter_cyc2ns(tc->cc, cycle_delta);
104 } else {
105 nsec = cyclecounter_cyc2ns(tc->cc, cycle_delta) + tc->nsec;
106 }
107
108 return nsec;
109}
David S. Miller3586e0a2009-11-11 19:06:30 -0800110EXPORT_SYMBOL_GPL(timecounter_cyc2time);
Patrick Ohlya038a352009-02-12 05:03:34 +0000111
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000112/**
113 * clocks_calc_mult_shift - calculate mult/shift factors for scaled math of clocks
114 * @mult: pointer to mult variable
115 * @shift: pointer to shift variable
116 * @from: frequency to convert from
117 * @to: frequency to convert to
Nicolas Pitre5fdade92011-01-11 12:18:12 -0500118 * @maxsec: guaranteed runtime conversion range in seconds
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000119 *
120 * The function evaluates the shift/mult pair for the scaled math
121 * operations of clocksources and clockevents.
122 *
123 * @to and @from are frequency values in HZ. For clock sources @to is
124 * NSEC_PER_SEC == 1GHz and @from is the counter frequency. For clock
125 * event @to is the counter frequency and @from is NSEC_PER_SEC.
126 *
Nicolas Pitre5fdade92011-01-11 12:18:12 -0500127 * The @maxsec conversion range argument controls the time frame in
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000128 * seconds which must be covered by the runtime conversion with the
129 * calculated mult and shift factors. This guarantees that no 64bit
130 * overflow happens when the input value of the conversion is
131 * multiplied with the calculated mult factor. Larger ranges may
132 * reduce the conversion accuracy by chosing smaller mult and shift
133 * factors.
134 */
135void
Nicolas Pitre5fdade92011-01-11 12:18:12 -0500136clocks_calc_mult_shift(u32 *mult, u32 *shift, u32 from, u32 to, u32 maxsec)
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000137{
138 u64 tmp;
139 u32 sft, sftacc= 32;
140
141 /*
142 * Calculate the shift factor which is limiting the conversion
143 * range:
144 */
Nicolas Pitre5fdade92011-01-11 12:18:12 -0500145 tmp = ((u64)maxsec * from) >> 32;
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000146 while (tmp) {
147 tmp >>=1;
148 sftacc--;
149 }
150
151 /*
152 * Find the conversion shift/mult pair which has the best
153 * accuracy and fits the maxsec conversion range:
154 */
155 for (sft = 32; sft > 0; sft--) {
156 tmp = (u64) to << sft;
john stultzb5776c42010-12-16 19:03:27 +0000157 tmp += from / 2;
Thomas Gleixner7d2f9442009-11-11 14:05:29 +0000158 do_div(tmp, from);
159 if ((tmp >> sftacc) == 0)
160 break;
161 }
162 *mult = tmp;
163 *shift = sft;
164}
165
john stultz734efb42006-06-26 00:25:05 -0700166/*[Clocksource internal variables]---------
167 * curr_clocksource:
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200168 * currently selected clocksource.
john stultz734efb42006-06-26 00:25:05 -0700169 * clocksource_list:
170 * linked list with the registered clocksources
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200171 * clocksource_mutex:
172 * protects manipulations to curr_clocksource and the clocksource_list
john stultz734efb42006-06-26 00:25:05 -0700173 * override_name:
174 * Name of the user-specified clocksource.
175 */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200176static struct clocksource *curr_clocksource;
john stultz734efb42006-06-26 00:25:05 -0700177static LIST_HEAD(clocksource_list);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200178static DEFINE_MUTEX(clocksource_mutex);
Thomas Gleixner29b54072013-04-25 20:31:45 +0000179static char override_name[CS_NAME_LEN];
Thomas Gleixner54a6bc02009-09-14 19:49:02 +0200180static int finished_booting;
john stultz734efb42006-06-26 00:25:05 -0700181
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800182#ifdef CONFIG_CLOCKSOURCE_WATCHDOG
Martin Schwidefskyf79e0252009-09-11 15:33:05 +0200183static void clocksource_watchdog_work(struct work_struct *work);
184
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800185static LIST_HEAD(watchdog_list);
186static struct clocksource *watchdog;
187static struct timer_list watchdog_timer;
Martin Schwidefskyf79e0252009-09-11 15:33:05 +0200188static DECLARE_WORK(watchdog_work, clocksource_watchdog_work);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800189static DEFINE_SPINLOCK(watchdog_lock);
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200190static int watchdog_running;
Thomas Gleixner9fb60332011-09-12 13:32:23 +0200191static atomic_t watchdog_reset_pending;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700192
Martin Schwidefsky01548f42009-08-18 17:09:42 +0200193static int clocksource_watchdog_kthread(void *data);
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200194static void __clocksource_change_rating(struct clocksource *cs, int rating);
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200195
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800196/*
Daniel Walker35c35d12007-05-09 02:33:40 -0700197 * Interval: 0.5sec Threshold: 0.0625s
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800198 */
199#define WATCHDOG_INTERVAL (HZ >> 1)
Daniel Walker35c35d12007-05-09 02:33:40 -0700200#define WATCHDOG_THRESHOLD (NSEC_PER_SEC >> 4)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800201
Martin Schwidefsky01548f42009-08-18 17:09:42 +0200202static void clocksource_watchdog_work(struct work_struct *work)
203{
204 /*
205 * If kthread_run fails the next watchdog scan over the
206 * watchdog_list will find the unstable clock again.
207 */
208 kthread_run(clocksource_watchdog_kthread, NULL, "kwatchdog");
209}
210
Thomas Gleixner7285dd72009-08-28 20:25:24 +0200211static void __clocksource_unstable(struct clocksource *cs)
212{
213 cs->flags &= ~(CLOCK_SOURCE_VALID_FOR_HRES | CLOCK_SOURCE_WATCHDOG);
214 cs->flags |= CLOCK_SOURCE_UNSTABLE;
Thomas Gleixner54a6bc02009-09-14 19:49:02 +0200215 if (finished_booting)
216 schedule_work(&watchdog_work);
Thomas Gleixner7285dd72009-08-28 20:25:24 +0200217}
218
Martin Schwidefsky8cf4e752009-08-14 15:47:22 +0200219static void clocksource_unstable(struct clocksource *cs, int64_t delta)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800220{
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800221 printk(KERN_WARNING "Clocksource %s unstable (delta = %Ld ns)\n",
222 cs->name, delta);
Thomas Gleixner7285dd72009-08-28 20:25:24 +0200223 __clocksource_unstable(cs);
224}
225
226/**
227 * clocksource_mark_unstable - mark clocksource unstable via watchdog
228 * @cs: clocksource to be marked unstable
229 *
230 * This function is called instead of clocksource_change_rating from
231 * cpu hotplug code to avoid a deadlock between the clocksource mutex
232 * and the cpu hotplug mutex. It defers the update of the clocksource
233 * to the watchdog thread.
234 */
235void clocksource_mark_unstable(struct clocksource *cs)
236{
237 unsigned long flags;
238
239 spin_lock_irqsave(&watchdog_lock, flags);
240 if (!(cs->flags & CLOCK_SOURCE_UNSTABLE)) {
241 if (list_empty(&cs->wd_list))
242 list_add(&cs->wd_list, &watchdog_list);
243 __clocksource_unstable(cs);
244 }
245 spin_unlock_irqrestore(&watchdog_lock, flags);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800246}
247
248static void clocksource_watchdog(unsigned long data)
249{
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200250 struct clocksource *cs;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800251 cycle_t csnow, wdnow;
252 int64_t wd_nsec, cs_nsec;
Thomas Gleixner9fb60332011-09-12 13:32:23 +0200253 int next_cpu, reset_pending;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800254
255 spin_lock(&watchdog_lock);
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200256 if (!watchdog_running)
257 goto out;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800258
Thomas Gleixner9fb60332011-09-12 13:32:23 +0200259 reset_pending = atomic_read(&watchdog_reset_pending);
260
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200261 list_for_each_entry(cs, &watchdog_list, wd_list) {
262
263 /* Clocksource already marked unstable? */
Martin Schwidefsky01548f42009-08-18 17:09:42 +0200264 if (cs->flags & CLOCK_SOURCE_UNSTABLE) {
Thomas Gleixner54a6bc02009-09-14 19:49:02 +0200265 if (finished_booting)
266 schedule_work(&watchdog_work);
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200267 continue;
Martin Schwidefsky01548f42009-08-18 17:09:42 +0200268 }
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200269
Thomas Gleixnerb5199512011-06-16 16:22:08 +0200270 local_irq_disable();
Magnus Damm8e196082009-04-21 12:24:00 -0700271 csnow = cs->read(cs);
Thomas Gleixnerb5199512011-06-16 16:22:08 +0200272 wdnow = watchdog->read(watchdog);
273 local_irq_enable();
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700274
Martin Schwidefsky8cf4e752009-08-14 15:47:22 +0200275 /* Clocksource initialized ? */
Thomas Gleixner9fb60332011-09-12 13:32:23 +0200276 if (!(cs->flags & CLOCK_SOURCE_WATCHDOG) ||
277 atomic_read(&watchdog_reset_pending)) {
Martin Schwidefsky8cf4e752009-08-14 15:47:22 +0200278 cs->flags |= CLOCK_SOURCE_WATCHDOG;
Thomas Gleixnerb5199512011-06-16 16:22:08 +0200279 cs->wd_last = wdnow;
280 cs->cs_last = csnow;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700281 continue;
282 }
283
Thomas Gleixnerb5199512011-06-16 16:22:08 +0200284 wd_nsec = clocksource_cyc2ns((wdnow - cs->wd_last) & watchdog->mask,
285 watchdog->mult, watchdog->shift);
286
287 cs_nsec = clocksource_cyc2ns((csnow - cs->cs_last) &
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200288 cs->mask, cs->mult, cs->shift);
Thomas Gleixnerb5199512011-06-16 16:22:08 +0200289 cs->cs_last = csnow;
290 cs->wd_last = wdnow;
291
Thomas Gleixner9fb60332011-09-12 13:32:23 +0200292 if (atomic_read(&watchdog_reset_pending))
293 continue;
294
Thomas Gleixnerb5199512011-06-16 16:22:08 +0200295 /* Check the deviation from the watchdog clocksource. */
Thomas Gleixner9fb60332011-09-12 13:32:23 +0200296 if ((abs(cs_nsec - wd_nsec) > WATCHDOG_THRESHOLD)) {
Martin Schwidefsky8cf4e752009-08-14 15:47:22 +0200297 clocksource_unstable(cs, cs_nsec - wd_nsec);
298 continue;
299 }
300
301 if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) &&
302 (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) &&
303 (watchdog->flags & CLOCK_SOURCE_IS_CONTINUOUS)) {
304 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
305 /*
306 * We just marked the clocksource as highres-capable,
307 * notify the rest of the system as well so that we
308 * transition into high-res mode:
309 */
310 tick_clock_notify();
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800311 }
312 }
313
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200314 /*
Thomas Gleixner9fb60332011-09-12 13:32:23 +0200315 * We only clear the watchdog_reset_pending, when we did a
316 * full cycle through all clocksources.
317 */
318 if (reset_pending)
319 atomic_dec(&watchdog_reset_pending);
320
321 /*
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200322 * Cycle through CPUs to check if the CPUs stay synchronized
323 * to each other.
324 */
325 next_cpu = cpumask_next(raw_smp_processor_id(), cpu_online_mask);
326 if (next_cpu >= nr_cpu_ids)
327 next_cpu = cpumask_first(cpu_online_mask);
328 watchdog_timer.expires += WATCHDOG_INTERVAL;
329 add_timer_on(&watchdog_timer, next_cpu);
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200330out:
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800331 spin_unlock(&watchdog_lock);
332}
Martin Schwidefsky0f8e8ef2009-08-14 15:47:23 +0200333
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200334static inline void clocksource_start_watchdog(void)
335{
336 if (watchdog_running || !watchdog || list_empty(&watchdog_list))
337 return;
338 init_timer(&watchdog_timer);
339 watchdog_timer.function = clocksource_watchdog;
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200340 watchdog_timer.expires = jiffies + WATCHDOG_INTERVAL;
341 add_timer_on(&watchdog_timer, cpumask_first(cpu_online_mask));
342 watchdog_running = 1;
343}
344
345static inline void clocksource_stop_watchdog(void)
346{
347 if (!watchdog_running || (watchdog && !list_empty(&watchdog_list)))
348 return;
349 del_timer(&watchdog_timer);
350 watchdog_running = 0;
351}
352
Martin Schwidefsky0f8e8ef2009-08-14 15:47:23 +0200353static inline void clocksource_reset_watchdog(void)
354{
355 struct clocksource *cs;
356
357 list_for_each_entry(cs, &watchdog_list, wd_list)
358 cs->flags &= ~CLOCK_SOURCE_WATCHDOG;
359}
360
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700361static void clocksource_resume_watchdog(void)
362{
Thomas Gleixner9fb60332011-09-12 13:32:23 +0200363 atomic_inc(&watchdog_reset_pending);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700364}
365
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200366static void clocksource_enqueue_watchdog(struct clocksource *cs)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800367{
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800368 unsigned long flags;
369
370 spin_lock_irqsave(&watchdog_lock, flags);
371 if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) {
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200372 /* cs is a clocksource to be watched. */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800373 list_add(&cs->wd_list, &watchdog_list);
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200374 cs->flags &= ~CLOCK_SOURCE_WATCHDOG;
Thomas Gleixner948ac6d2007-03-25 14:42:51 +0200375 } else {
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200376 /* cs is a watchdog. */
Thomas Gleixner948ac6d2007-03-25 14:42:51 +0200377 if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800378 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200379 /* Pick the best watchdog. */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800380 if (!watchdog || cs->rating > watchdog->rating) {
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800381 watchdog = cs;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800382 /* Reset watchdog cycles */
Martin Schwidefsky0f8e8ef2009-08-14 15:47:23 +0200383 clocksource_reset_watchdog();
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800384 }
385 }
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200386 /* Check if the watchdog timer needs to be started. */
387 clocksource_start_watchdog();
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800388 spin_unlock_irqrestore(&watchdog_lock, flags);
389}
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200390
391static void clocksource_dequeue_watchdog(struct clocksource *cs)
392{
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200393 unsigned long flags;
394
395 spin_lock_irqsave(&watchdog_lock, flags);
Thomas Gleixnera89c7ed2013-04-25 20:31:46 +0000396 if (cs != watchdog) {
397 if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) {
398 /* cs is a watched clocksource. */
399 list_del_init(&cs->wd_list);
400 /* Check if the watchdog timer needs to be stopped. */
401 clocksource_stop_watchdog();
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200402 }
403 }
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200404 spin_unlock_irqrestore(&watchdog_lock, flags);
405}
406
Martin Schwidefsky01548f42009-08-18 17:09:42 +0200407static int clocksource_watchdog_kthread(void *data)
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200408{
409 struct clocksource *cs, *tmp;
410 unsigned long flags;
Thomas Gleixner6ea41d22009-08-15 13:20:42 +0200411 LIST_HEAD(unstable);
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200412
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200413 mutex_lock(&clocksource_mutex);
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200414 spin_lock_irqsave(&watchdog_lock, flags);
415 list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list)
416 if (cs->flags & CLOCK_SOURCE_UNSTABLE) {
417 list_del_init(&cs->wd_list);
Thomas Gleixner6ea41d22009-08-15 13:20:42 +0200418 list_add(&cs->wd_list, &unstable);
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200419 }
420 /* Check if the watchdog timer needs to be stopped. */
421 clocksource_stop_watchdog();
Thomas Gleixner6ea41d22009-08-15 13:20:42 +0200422 spin_unlock_irqrestore(&watchdog_lock, flags);
423
424 /* Needs to be done outside of watchdog lock */
425 list_for_each_entry_safe(cs, tmp, &unstable, wd_list) {
426 list_del_init(&cs->wd_list);
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200427 __clocksource_change_rating(cs, 0);
Thomas Gleixner6ea41d22009-08-15 13:20:42 +0200428 }
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200429 mutex_unlock(&clocksource_mutex);
Martin Schwidefsky01548f42009-08-18 17:09:42 +0200430 return 0;
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200431}
432
Thomas Gleixner7eaeb342013-04-25 20:31:46 +0000433static bool clocksource_is_watchdog(struct clocksource *cs)
434{
435 return cs == watchdog;
436}
437
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200438#else /* CONFIG_CLOCKSOURCE_WATCHDOG */
439
440static void clocksource_enqueue_watchdog(struct clocksource *cs)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800441{
442 if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
443 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
444}
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700445
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200446static inline void clocksource_dequeue_watchdog(struct clocksource *cs) { }
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700447static inline void clocksource_resume_watchdog(void) { }
Thomas Gleixner54a6bc02009-09-14 19:49:02 +0200448static inline int clocksource_watchdog_kthread(void *data) { return 0; }
Thomas Gleixner7eaeb342013-04-25 20:31:46 +0000449static bool clocksource_is_watchdog(struct clocksource *cs) { return false; }
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200450
451#endif /* CONFIG_CLOCKSOURCE_WATCHDOG */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800452
john stultz734efb42006-06-26 00:25:05 -0700453/**
Magnus Dammc54a42b2010-02-02 14:41:41 -0800454 * clocksource_suspend - suspend the clocksource(s)
455 */
456void clocksource_suspend(void)
457{
458 struct clocksource *cs;
459
460 list_for_each_entry_reverse(cs, &clocksource_list, list)
461 if (cs->suspend)
462 cs->suspend(cs);
463}
464
465/**
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700466 * clocksource_resume - resume the clocksource(s)
467 */
468void clocksource_resume(void)
469{
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700470 struct clocksource *cs;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700471
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200472 list_for_each_entry(cs, &clocksource_list, list)
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700473 if (cs->resume)
Magnus Damm17622332010-02-02 14:41:39 -0800474 cs->resume(cs);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700475
476 clocksource_resume_watchdog();
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700477}
478
479/**
Jason Wessel7c3078b2008-02-15 14:55:54 -0600480 * clocksource_touch_watchdog - Update watchdog
481 *
482 * Update the watchdog after exception contexts such as kgdb so as not
Thomas Gleixner7b7422a2010-01-26 12:51:10 +0100483 * to incorrectly trip the watchdog. This might fail when the kernel
484 * was stopped in code which holds watchdog_lock.
Jason Wessel7c3078b2008-02-15 14:55:54 -0600485 */
486void clocksource_touch_watchdog(void)
487{
488 clocksource_resume_watchdog();
489}
490
john stultz734efb42006-06-26 00:25:05 -0700491/**
John Stultzd65670a2011-10-31 17:06:35 -0400492 * clocksource_max_adjustment- Returns max adjustment amount
493 * @cs: Pointer to clocksource
494 *
495 */
496static u32 clocksource_max_adjustment(struct clocksource *cs)
497{
498 u64 ret;
499 /*
Jim Cromie88b28ad2012-03-14 21:28:56 -0600500 * We won't try to correct for more than 11% adjustments (110,000 ppm),
John Stultzd65670a2011-10-31 17:06:35 -0400501 */
502 ret = (u64)cs->mult * 11;
503 do_div(ret,100);
504 return (u32)ret;
505}
506
507/**
Jon Hunter98962462009-08-18 12:45:10 -0500508 * clocksource_max_deferment - Returns max time the clocksource can be deferred
509 * @cs: Pointer to clocksource
510 *
511 */
512static u64 clocksource_max_deferment(struct clocksource *cs)
513{
514 u64 max_nsecs, max_cycles;
515
516 /*
517 * Calculate the maximum number of cycles that we can pass to the
518 * cyc2ns function without overflowing a 64-bit signed result. The
John Stultzd65670a2011-10-31 17:06:35 -0400519 * maximum number of cycles is equal to ULLONG_MAX/(cs->mult+cs->maxadj)
520 * which is equivalent to the below.
521 * max_cycles < (2^63)/(cs->mult + cs->maxadj)
522 * max_cycles < 2^(log2((2^63)/(cs->mult + cs->maxadj)))
523 * max_cycles < 2^(log2(2^63) - log2(cs->mult + cs->maxadj))
524 * max_cycles < 2^(63 - log2(cs->mult + cs->maxadj))
525 * max_cycles < 1 << (63 - log2(cs->mult + cs->maxadj))
Jon Hunter98962462009-08-18 12:45:10 -0500526 * Please note that we add 1 to the result of the log2 to account for
527 * any rounding errors, ensure the above inequality is satisfied and
528 * no overflow will occur.
529 */
John Stultzd65670a2011-10-31 17:06:35 -0400530 max_cycles = 1ULL << (63 - (ilog2(cs->mult + cs->maxadj) + 1));
Jon Hunter98962462009-08-18 12:45:10 -0500531
532 /*
533 * The actual maximum number of cycles we can defer the clocksource is
534 * determined by the minimum of max_cycles and cs->mask.
John Stultzd65670a2011-10-31 17:06:35 -0400535 * Note: Here we subtract the maxadj to make sure we don't sleep for
536 * too long if there's a large negative adjustment.
Jon Hunter98962462009-08-18 12:45:10 -0500537 */
538 max_cycles = min_t(u64, max_cycles, (u64) cs->mask);
John Stultzd65670a2011-10-31 17:06:35 -0400539 max_nsecs = clocksource_cyc2ns(max_cycles, cs->mult - cs->maxadj,
540 cs->shift);
Jon Hunter98962462009-08-18 12:45:10 -0500541
542 /*
543 * To ensure that the clocksource does not wrap whilst we are idle,
544 * limit the time the clocksource can be deferred by 12.5%. Please
545 * note a margin of 12.5% is used because this can be computed with
546 * a shift, versus say 10% which would require division.
547 */
Yang Honggang (Joseph)b1f91962011-12-01 22:22:41 -0500548 return max_nsecs - (max_nsecs >> 3);
Jon Hunter98962462009-08-18 12:45:10 -0500549}
550
John Stultz592913e2010-07-13 17:56:20 -0700551#ifndef CONFIG_ARCH_USES_GETTIMEOFFSET
john stultz734efb42006-06-26 00:25:05 -0700552
Thomas Gleixnerf5a2e342013-04-25 20:31:45 +0000553static struct clocksource *clocksource_find_best(bool oneshot, bool skipcur)
Thomas Gleixner5d33b882013-04-25 20:31:43 +0000554{
555 struct clocksource *cs;
556
557 if (!finished_booting || list_empty(&clocksource_list))
558 return NULL;
559
560 /*
561 * We pick the clocksource with the highest rating. If oneshot
562 * mode is active, we pick the highres valid clocksource with
563 * the best rating.
564 */
565 list_for_each_entry(cs, &clocksource_list, list) {
Thomas Gleixnerf5a2e342013-04-25 20:31:45 +0000566 if (skipcur && cs == curr_clocksource)
567 continue;
Thomas Gleixner5d33b882013-04-25 20:31:43 +0000568 if (oneshot && !(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES))
569 continue;
570 return cs;
571 }
572 return NULL;
573}
574
Thomas Gleixnerf5a2e342013-04-25 20:31:45 +0000575static void __clocksource_select(bool skipcur)
john stultz734efb42006-06-26 00:25:05 -0700576{
Thomas Gleixner5d33b882013-04-25 20:31:43 +0000577 bool oneshot = tick_oneshot_mode_active();
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200578 struct clocksource *best, *cs;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800579
Thomas Gleixner5d33b882013-04-25 20:31:43 +0000580 /* Find the best suitable clocksource */
Thomas Gleixnerf5a2e342013-04-25 20:31:45 +0000581 best = clocksource_find_best(oneshot, skipcur);
Thomas Gleixner5d33b882013-04-25 20:31:43 +0000582 if (!best)
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200583 return;
Thomas Gleixner5d33b882013-04-25 20:31:43 +0000584
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200585 /* Check for the override clocksource. */
586 list_for_each_entry(cs, &clocksource_list, list) {
Thomas Gleixnerf5a2e342013-04-25 20:31:45 +0000587 if (skipcur && cs == curr_clocksource)
588 continue;
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200589 if (strcmp(cs->name, override_name) != 0)
590 continue;
591 /*
592 * Check to make sure we don't switch to a non-highres
593 * capable clocksource if the tick code is in oneshot
594 * mode (highres or nohz)
595 */
Thomas Gleixner5d33b882013-04-25 20:31:43 +0000596 if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) && oneshot) {
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200597 /* Override clocksource cannot be used. */
598 printk(KERN_WARNING "Override clocksource %s is not "
599 "HRT compatible. Cannot switch while in "
600 "HRT/NOHZ mode\n", cs->name);
601 override_name[0] = 0;
602 } else
603 /* Override clocksource can be used. */
604 best = cs;
605 break;
606 }
Thomas Gleixnerba919d12013-04-25 20:31:44 +0000607
608 if (curr_clocksource != best && !timekeeping_notify(best)) {
609 pr_info("Switched to clocksource %s\n", best->name);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200610 curr_clocksource = best;
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200611 }
john stultz734efb42006-06-26 00:25:05 -0700612}
613
Thomas Gleixnerf5a2e342013-04-25 20:31:45 +0000614/**
615 * clocksource_select - Select the best clocksource available
616 *
617 * Private function. Must hold clocksource_mutex when called.
618 *
619 * Select the clocksource with the best rating, or the clocksource,
620 * which is selected by userspace override.
621 */
622static void clocksource_select(void)
623{
624 return __clocksource_select(false);
625}
626
Thomas Gleixner7eaeb342013-04-25 20:31:46 +0000627static void clocksource_select_fallback(void)
628{
629 return __clocksource_select(true);
630}
631
John Stultz592913e2010-07-13 17:56:20 -0700632#else /* !CONFIG_ARCH_USES_GETTIMEOFFSET */
Thomas Gleixner54a6bc02009-09-14 19:49:02 +0200633
634static inline void clocksource_select(void) { }
635
636#endif
637
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200638/*
639 * clocksource_done_booting - Called near the end of core bootup
640 *
641 * Hack to avoid lots of clocksource churn at boot time.
642 * We use fs_initcall because we want this to start before
643 * device_initcall but after subsys_initcall.
644 */
645static int __init clocksource_done_booting(void)
646{
john stultzad6759f2010-03-01 12:34:43 -0800647 mutex_lock(&clocksource_mutex);
648 curr_clocksource = clocksource_default_clock();
649 mutex_unlock(&clocksource_mutex);
650
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200651 finished_booting = 1;
Thomas Gleixner54a6bc02009-09-14 19:49:02 +0200652
653 /*
654 * Run the watchdog first to eliminate unstable clock sources
655 */
656 clocksource_watchdog_kthread(NULL);
657
Thomas Gleixnere6c73302009-09-14 19:51:11 +0200658 mutex_lock(&clocksource_mutex);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200659 clocksource_select();
Thomas Gleixnere6c73302009-09-14 19:51:11 +0200660 mutex_unlock(&clocksource_mutex);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200661 return 0;
662}
663fs_initcall(clocksource_done_booting);
664
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800665/*
666 * Enqueue the clocksource sorted by rating
john stultz734efb42006-06-26 00:25:05 -0700667 */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200668static void clocksource_enqueue(struct clocksource *cs)
john stultz734efb42006-06-26 00:25:05 -0700669{
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200670 struct list_head *entry = &clocksource_list;
671 struct clocksource *tmp;
john stultz734efb42006-06-26 00:25:05 -0700672
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200673 list_for_each_entry(tmp, &clocksource_list, list)
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800674 /* Keep track of the place, where to insert */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200675 if (tmp->rating >= cs->rating)
676 entry = &tmp->list;
677 list_add(&cs->list, entry);
john stultz734efb42006-06-26 00:25:05 -0700678}
679
John Stultzd7e81c22010-05-07 18:07:38 -0700680/**
John Stultz852db462010-07-13 17:56:28 -0700681 * __clocksource_updatefreq_scale - Used update clocksource with new freq
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900682 * @cs: clocksource to be registered
John Stultz852db462010-07-13 17:56:28 -0700683 * @scale: Scale factor multiplied against freq to get clocksource hz
684 * @freq: clocksource frequency (cycles per second) divided by scale
685 *
686 * This should only be called from the clocksource->enable() method.
687 *
688 * This *SHOULD NOT* be called directly! Please use the
689 * clocksource_updatefreq_hz() or clocksource_updatefreq_khz helper functions.
690 */
691void __clocksource_updatefreq_scale(struct clocksource *cs, u32 scale, u32 freq)
692{
Thomas Gleixnerc0e299b2011-05-20 10:50:52 +0200693 u64 sec;
John Stultz852db462010-07-13 17:56:28 -0700694 /*
Thomas Gleixner724ed532011-05-18 21:33:40 +0000695 * Calc the maximum number of seconds which we can run before
696 * wrapping around. For clocksources which have a mask > 32bit
697 * we need to limit the max sleep time to have a good
698 * conversion precision. 10 minutes is still a reasonable
699 * amount. That results in a shift value of 24 for a
700 * clocksource with mask >= 40bit and f >= 4GHz. That maps to
701 * ~ 0.06ppm granularity for NTP. We apply the same 12.5%
702 * margin as we do in clocksource_max_deferment()
John Stultz852db462010-07-13 17:56:28 -0700703 */
Yang Honggang (Joseph)b1f91962011-12-01 22:22:41 -0500704 sec = (cs->mask - (cs->mask >> 3));
Thomas Gleixner724ed532011-05-18 21:33:40 +0000705 do_div(sec, freq);
706 do_div(sec, scale);
707 if (!sec)
708 sec = 1;
709 else if (sec > 600 && cs->mask > UINT_MAX)
710 sec = 600;
711
John Stultz852db462010-07-13 17:56:28 -0700712 clocks_calc_mult_shift(&cs->mult, &cs->shift, freq,
Thomas Gleixner724ed532011-05-18 21:33:40 +0000713 NSEC_PER_SEC / scale, sec * scale);
John Stultzd65670a2011-10-31 17:06:35 -0400714
715 /*
716 * for clocksources that have large mults, to avoid overflow.
717 * Since mult may be adjusted by ntp, add an safety extra margin
718 *
719 */
720 cs->maxadj = clocksource_max_adjustment(cs);
721 while ((cs->mult + cs->maxadj < cs->mult)
722 || (cs->mult - cs->maxadj > cs->mult)) {
723 cs->mult >>= 1;
724 cs->shift--;
725 cs->maxadj = clocksource_max_adjustment(cs);
726 }
727
John Stultz852db462010-07-13 17:56:28 -0700728 cs->max_idle_ns = clocksource_max_deferment(cs);
729}
730EXPORT_SYMBOL_GPL(__clocksource_updatefreq_scale);
731
732/**
John Stultzd7e81c22010-05-07 18:07:38 -0700733 * __clocksource_register_scale - Used to install new clocksources
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900734 * @cs: clocksource to be registered
John Stultzd7e81c22010-05-07 18:07:38 -0700735 * @scale: Scale factor multiplied against freq to get clocksource hz
736 * @freq: clocksource frequency (cycles per second) divided by scale
737 *
738 * Returns -EBUSY if registration fails, zero otherwise.
739 *
740 * This *SHOULD NOT* be called directly! Please use the
741 * clocksource_register_hz() or clocksource_register_khz helper functions.
742 */
743int __clocksource_register_scale(struct clocksource *cs, u32 scale, u32 freq)
744{
745
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400746 /* Initialize mult/shift and max_idle_ns */
John Stultz852db462010-07-13 17:56:28 -0700747 __clocksource_updatefreq_scale(cs, scale, freq);
John Stultzd7e81c22010-05-07 18:07:38 -0700748
John Stultz852db462010-07-13 17:56:28 -0700749 /* Add clocksource to the clcoksource list */
John Stultzd7e81c22010-05-07 18:07:38 -0700750 mutex_lock(&clocksource_mutex);
751 clocksource_enqueue(cs);
John Stultzd7e81c22010-05-07 18:07:38 -0700752 clocksource_enqueue_watchdog(cs);
john stultze05b2ef2011-05-04 18:16:50 -0700753 clocksource_select();
John Stultzd7e81c22010-05-07 18:07:38 -0700754 mutex_unlock(&clocksource_mutex);
755 return 0;
756}
757EXPORT_SYMBOL_GPL(__clocksource_register_scale);
758
759
john stultz734efb42006-06-26 00:25:05 -0700760/**
john stultza2752542006-06-26 00:25:14 -0700761 * clocksource_register - Used to install new clocksources
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900762 * @cs: clocksource to be registered
john stultz734efb42006-06-26 00:25:05 -0700763 *
764 * Returns -EBUSY if registration fails, zero otherwise.
765 */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200766int clocksource_register(struct clocksource *cs)
john stultz734efb42006-06-26 00:25:05 -0700767{
John Stultzd65670a2011-10-31 17:06:35 -0400768 /* calculate max adjustment for given mult/shift */
769 cs->maxadj = clocksource_max_adjustment(cs);
770 WARN_ONCE(cs->mult + cs->maxadj < cs->mult,
771 "Clocksource %s might overflow on 11%% adjustment\n",
772 cs->name);
773
Jon Hunter98962462009-08-18 12:45:10 -0500774 /* calculate max idle time permitted for this clocksource */
775 cs->max_idle_ns = clocksource_max_deferment(cs);
776
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200777 mutex_lock(&clocksource_mutex);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200778 clocksource_enqueue(cs);
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200779 clocksource_enqueue_watchdog(cs);
john stultze05b2ef2011-05-04 18:16:50 -0700780 clocksource_select();
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200781 mutex_unlock(&clocksource_mutex);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200782 return 0;
john stultz734efb42006-06-26 00:25:05 -0700783}
john stultza2752542006-06-26 00:25:14 -0700784EXPORT_SYMBOL(clocksource_register);
john stultz734efb42006-06-26 00:25:05 -0700785
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200786static void __clocksource_change_rating(struct clocksource *cs, int rating)
787{
788 list_del(&cs->list);
789 cs->rating = rating;
790 clocksource_enqueue(cs);
791 clocksource_select();
792}
793
john stultz734efb42006-06-26 00:25:05 -0700794/**
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800795 * clocksource_change_rating - Change the rating of a registered clocksource
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900796 * @cs: clocksource to be changed
797 * @rating: new rating
john stultz734efb42006-06-26 00:25:05 -0700798 */
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800799void clocksource_change_rating(struct clocksource *cs, int rating)
john stultz734efb42006-06-26 00:25:05 -0700800{
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200801 mutex_lock(&clocksource_mutex);
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200802 __clocksource_change_rating(cs, rating);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200803 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700804}
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200805EXPORT_SYMBOL(clocksource_change_rating);
john stultz734efb42006-06-26 00:25:05 -0700806
Thomas Gleixner7eaeb342013-04-25 20:31:46 +0000807/*
808 * Unbind clocksource @cs. Called with clocksource_mutex held
809 */
810static int clocksource_unbind(struct clocksource *cs)
811{
812 /*
813 * I really can't convince myself to support this on hardware
814 * designed by lobotomized monkeys.
815 */
816 if (clocksource_is_watchdog(cs))
817 return -EBUSY;
818
819 if (cs == curr_clocksource) {
820 /* Select and try to install a replacement clock source */
821 clocksource_select_fallback();
822 if (curr_clocksource == cs)
823 return -EBUSY;
824 }
825 clocksource_dequeue_watchdog(cs);
826 list_del_init(&cs->list);
827 return 0;
828}
829
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100830/**
831 * clocksource_unregister - remove a registered clocksource
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900832 * @cs: clocksource to be unregistered
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100833 */
Thomas Gleixnera89c7ed2013-04-25 20:31:46 +0000834int clocksource_unregister(struct clocksource *cs)
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100835{
Thomas Gleixnera89c7ed2013-04-25 20:31:46 +0000836 int ret = 0;
837
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200838 mutex_lock(&clocksource_mutex);
Thomas Gleixnera89c7ed2013-04-25 20:31:46 +0000839 if (!list_empty(&cs->list))
840 ret = clocksource_unbind(cs);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200841 mutex_unlock(&clocksource_mutex);
Thomas Gleixnera89c7ed2013-04-25 20:31:46 +0000842 return ret;
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100843}
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200844EXPORT_SYMBOL(clocksource_unregister);
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100845
Daniel Walker2b013702006-12-10 02:21:30 -0800846#ifdef CONFIG_SYSFS
john stultz734efb42006-06-26 00:25:05 -0700847/**
848 * sysfs_show_current_clocksources - sysfs interface for current clocksource
849 * @dev: unused
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900850 * @attr: unused
john stultz734efb42006-06-26 00:25:05 -0700851 * @buf: char buffer to be filled with clocksource list
852 *
853 * Provides sysfs interface for listing current clocksource.
854 */
855static ssize_t
Kay Sieversd369a5d2011-12-14 15:28:51 -0800856sysfs_show_current_clocksources(struct device *dev,
857 struct device_attribute *attr, char *buf)
john stultz734efb42006-06-26 00:25:05 -0700858{
Miao Xie5e2cb102008-02-06 01:36:53 -0800859 ssize_t count = 0;
john stultz734efb42006-06-26 00:25:05 -0700860
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200861 mutex_lock(&clocksource_mutex);
Miao Xie5e2cb102008-02-06 01:36:53 -0800862 count = snprintf(buf, PAGE_SIZE, "%s\n", curr_clocksource->name);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200863 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700864
Miao Xie5e2cb102008-02-06 01:36:53 -0800865 return count;
john stultz734efb42006-06-26 00:25:05 -0700866}
867
Thomas Gleixner03e13cf2013-04-25 20:31:50 +0000868size_t sysfs_get_uname(const char *buf, char *dst, size_t cnt)
Thomas Gleixner29b54072013-04-25 20:31:45 +0000869{
870 size_t ret = cnt;
871
872 /* strings from sysfs write are not 0 terminated! */
873 if (!cnt || cnt >= CS_NAME_LEN)
874 return -EINVAL;
875
876 /* strip of \n: */
877 if (buf[cnt-1] == '\n')
878 cnt--;
879 if (cnt > 0)
880 memcpy(dst, buf, cnt);
881 dst[cnt] = 0;
882 return ret;
883}
884
john stultz734efb42006-06-26 00:25:05 -0700885/**
886 * sysfs_override_clocksource - interface for manually overriding clocksource
887 * @dev: unused
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900888 * @attr: unused
john stultz734efb42006-06-26 00:25:05 -0700889 * @buf: name of override clocksource
890 * @count: length of buffer
891 *
892 * Takes input from sysfs interface for manually overriding the default
Uwe Kleine-Königb71a8eb2009-10-06 12:42:51 +0200893 * clocksource selection.
john stultz734efb42006-06-26 00:25:05 -0700894 */
Kay Sieversd369a5d2011-12-14 15:28:51 -0800895static ssize_t sysfs_override_clocksource(struct device *dev,
896 struct device_attribute *attr,
john stultz734efb42006-06-26 00:25:05 -0700897 const char *buf, size_t count)
898{
Thomas Gleixner29b54072013-04-25 20:31:45 +0000899 size_t ret;
john stultz734efb42006-06-26 00:25:05 -0700900
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200901 mutex_lock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700902
Thomas Gleixner03e13cf2013-04-25 20:31:50 +0000903 ret = sysfs_get_uname(buf, override_name, count);
Thomas Gleixner29b54072013-04-25 20:31:45 +0000904 if (ret >= 0)
905 clocksource_select();
john stultz734efb42006-06-26 00:25:05 -0700906
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200907 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700908
909 return ret;
910}
911
912/**
Thomas Gleixner7eaeb342013-04-25 20:31:46 +0000913 * sysfs_unbind_current_clocksource - interface for manually unbinding clocksource
914 * @dev: unused
915 * @attr: unused
916 * @buf: unused
917 * @count: length of buffer
918 *
919 * Takes input from sysfs interface for manually unbinding a clocksource.
920 */
921static ssize_t sysfs_unbind_clocksource(struct device *dev,
922 struct device_attribute *attr,
923 const char *buf, size_t count)
924{
925 struct clocksource *cs;
926 char name[CS_NAME_LEN];
927 size_t ret;
928
Thomas Gleixner03e13cf2013-04-25 20:31:50 +0000929 ret = sysfs_get_uname(buf, name, count);
Thomas Gleixner7eaeb342013-04-25 20:31:46 +0000930 if (ret < 0)
931 return ret;
932
933 ret = -ENODEV;
934 mutex_lock(&clocksource_mutex);
935 list_for_each_entry(cs, &clocksource_list, list) {
936 if (strcmp(cs->name, name))
937 continue;
938 ret = clocksource_unbind(cs);
939 break;
940 }
941 mutex_unlock(&clocksource_mutex);
942
943 return ret ? ret : count;
944}
945
946/**
john stultz734efb42006-06-26 00:25:05 -0700947 * sysfs_show_available_clocksources - sysfs interface for listing clocksource
948 * @dev: unused
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900949 * @attr: unused
john stultz734efb42006-06-26 00:25:05 -0700950 * @buf: char buffer to be filled with clocksource list
951 *
952 * Provides sysfs interface for listing registered clocksources
953 */
954static ssize_t
Kay Sieversd369a5d2011-12-14 15:28:51 -0800955sysfs_show_available_clocksources(struct device *dev,
956 struct device_attribute *attr,
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200957 char *buf)
john stultz734efb42006-06-26 00:25:05 -0700958{
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700959 struct clocksource *src;
Miao Xie5e2cb102008-02-06 01:36:53 -0800960 ssize_t count = 0;
john stultz734efb42006-06-26 00:25:05 -0700961
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200962 mutex_lock(&clocksource_mutex);
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700963 list_for_each_entry(src, &clocksource_list, list) {
Thomas Gleixnercd6d95d2009-06-12 11:29:27 +0200964 /*
965 * Don't show non-HRES clocksource if the tick code is
966 * in one shot mode (highres=on or nohz=on)
967 */
968 if (!tick_oneshot_mode_active() ||
969 (src->flags & CLOCK_SOURCE_VALID_FOR_HRES))
john stultz3f685352009-01-21 22:53:22 -0700970 count += snprintf(buf + count,
Miao Xie5e2cb102008-02-06 01:36:53 -0800971 max((ssize_t)PAGE_SIZE - count, (ssize_t)0),
972 "%s ", src->name);
john stultz734efb42006-06-26 00:25:05 -0700973 }
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200974 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700975
Miao Xie5e2cb102008-02-06 01:36:53 -0800976 count += snprintf(buf + count,
977 max((ssize_t)PAGE_SIZE - count, (ssize_t)0), "\n");
john stultz734efb42006-06-26 00:25:05 -0700978
Miao Xie5e2cb102008-02-06 01:36:53 -0800979 return count;
john stultz734efb42006-06-26 00:25:05 -0700980}
981
982/*
983 * Sysfs setup bits:
984 */
Kay Sieversd369a5d2011-12-14 15:28:51 -0800985static DEVICE_ATTR(current_clocksource, 0644, sysfs_show_current_clocksources,
Daniel Walkerf5f1a242006-12-10 02:21:33 -0800986 sysfs_override_clocksource);
john stultz734efb42006-06-26 00:25:05 -0700987
Thomas Gleixner7eaeb342013-04-25 20:31:46 +0000988static DEVICE_ATTR(unbind_clocksource, 0200, NULL, sysfs_unbind_clocksource);
989
Kay Sieversd369a5d2011-12-14 15:28:51 -0800990static DEVICE_ATTR(available_clocksource, 0444,
Daniel Walkerf5f1a242006-12-10 02:21:33 -0800991 sysfs_show_available_clocksources, NULL);
john stultz734efb42006-06-26 00:25:05 -0700992
Kay Sieversd369a5d2011-12-14 15:28:51 -0800993static struct bus_type clocksource_subsys = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100994 .name = "clocksource",
Kay Sieversd369a5d2011-12-14 15:28:51 -0800995 .dev_name = "clocksource",
john stultz734efb42006-06-26 00:25:05 -0700996};
997
Kay Sieversd369a5d2011-12-14 15:28:51 -0800998static struct device device_clocksource = {
john stultz734efb42006-06-26 00:25:05 -0700999 .id = 0,
Kay Sieversd369a5d2011-12-14 15:28:51 -08001000 .bus = &clocksource_subsys,
john stultz734efb42006-06-26 00:25:05 -07001001};
1002
john stultzad596172006-06-26 00:25:06 -07001003static int __init init_clocksource_sysfs(void)
john stultz734efb42006-06-26 00:25:05 -07001004{
Kay Sieversd369a5d2011-12-14 15:28:51 -08001005 int error = subsys_system_register(&clocksource_subsys, NULL);
john stultz734efb42006-06-26 00:25:05 -07001006
1007 if (!error)
Kay Sieversd369a5d2011-12-14 15:28:51 -08001008 error = device_register(&device_clocksource);
john stultz734efb42006-06-26 00:25:05 -07001009 if (!error)
Kay Sieversd369a5d2011-12-14 15:28:51 -08001010 error = device_create_file(
john stultz734efb42006-06-26 00:25:05 -07001011 &device_clocksource,
Kay Sieversd369a5d2011-12-14 15:28:51 -08001012 &dev_attr_current_clocksource);
john stultz734efb42006-06-26 00:25:05 -07001013 if (!error)
Thomas Gleixner7eaeb342013-04-25 20:31:46 +00001014 error = device_create_file(&device_clocksource,
1015 &dev_attr_unbind_clocksource);
1016 if (!error)
Kay Sieversd369a5d2011-12-14 15:28:51 -08001017 error = device_create_file(
john stultz734efb42006-06-26 00:25:05 -07001018 &device_clocksource,
Kay Sieversd369a5d2011-12-14 15:28:51 -08001019 &dev_attr_available_clocksource);
john stultz734efb42006-06-26 00:25:05 -07001020 return error;
1021}
1022
1023device_initcall(init_clocksource_sysfs);
Daniel Walker2b013702006-12-10 02:21:30 -08001024#endif /* CONFIG_SYSFS */
john stultz734efb42006-06-26 00:25:05 -07001025
1026/**
1027 * boot_override_clocksource - boot clock override
1028 * @str: override name
1029 *
1030 * Takes a clocksource= boot argument and uses it
1031 * as the clocksource override name.
1032 */
1033static int __init boot_override_clocksource(char* str)
1034{
Martin Schwidefsky75c51582009-08-14 15:47:30 +02001035 mutex_lock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -07001036 if (str)
1037 strlcpy(override_name, str, sizeof(override_name));
Martin Schwidefsky75c51582009-08-14 15:47:30 +02001038 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -07001039 return 1;
1040}
1041
1042__setup("clocksource=", boot_override_clocksource);
1043
1044/**
1045 * boot_override_clock - Compatibility layer for deprecated boot option
1046 * @str: override name
1047 *
1048 * DEPRECATED! Takes a clock= boot argument and uses it
1049 * as the clocksource override name
1050 */
1051static int __init boot_override_clock(char* str)
1052{
john stultz5d0cf412006-06-26 00:25:12 -07001053 if (!strcmp(str, "pmtmr")) {
1054 printk("Warning: clock=pmtmr is deprecated. "
1055 "Use clocksource=acpi_pm.\n");
1056 return boot_override_clocksource("acpi_pm");
1057 }
1058 printk("Warning! clock= boot option is deprecated. "
1059 "Use clocksource=xyz\n");
john stultz734efb42006-06-26 00:25:05 -07001060 return boot_override_clocksource(str);
1061}
1062
1063__setup("clock=", boot_override_clock);