blob: e713ef7d19a7eb3b5bc8a8937486c5eeb8e59438 [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) { }
Thomas Gleixner1eaff672013-05-28 09:48:46 +0200635static inline void clocksource_select_fallback(void) { }
Thomas Gleixner54a6bc02009-09-14 19:49:02 +0200636
637#endif
638
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200639/*
640 * clocksource_done_booting - Called near the end of core bootup
641 *
642 * Hack to avoid lots of clocksource churn at boot time.
643 * We use fs_initcall because we want this to start before
644 * device_initcall but after subsys_initcall.
645 */
646static int __init clocksource_done_booting(void)
647{
john stultzad6759f2010-03-01 12:34:43 -0800648 mutex_lock(&clocksource_mutex);
649 curr_clocksource = clocksource_default_clock();
650 mutex_unlock(&clocksource_mutex);
651
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200652 finished_booting = 1;
Thomas Gleixner54a6bc02009-09-14 19:49:02 +0200653
654 /*
655 * Run the watchdog first to eliminate unstable clock sources
656 */
657 clocksource_watchdog_kthread(NULL);
658
Thomas Gleixnere6c73302009-09-14 19:51:11 +0200659 mutex_lock(&clocksource_mutex);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200660 clocksource_select();
Thomas Gleixnere6c73302009-09-14 19:51:11 +0200661 mutex_unlock(&clocksource_mutex);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200662 return 0;
663}
664fs_initcall(clocksource_done_booting);
665
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800666/*
667 * Enqueue the clocksource sorted by rating
john stultz734efb42006-06-26 00:25:05 -0700668 */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200669static void clocksource_enqueue(struct clocksource *cs)
john stultz734efb42006-06-26 00:25:05 -0700670{
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200671 struct list_head *entry = &clocksource_list;
672 struct clocksource *tmp;
john stultz734efb42006-06-26 00:25:05 -0700673
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200674 list_for_each_entry(tmp, &clocksource_list, list)
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800675 /* Keep track of the place, where to insert */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200676 if (tmp->rating >= cs->rating)
677 entry = &tmp->list;
678 list_add(&cs->list, entry);
john stultz734efb42006-06-26 00:25:05 -0700679}
680
John Stultzd7e81c22010-05-07 18:07:38 -0700681/**
John Stultz852db462010-07-13 17:56:28 -0700682 * __clocksource_updatefreq_scale - Used update clocksource with new freq
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900683 * @cs: clocksource to be registered
John Stultz852db462010-07-13 17:56:28 -0700684 * @scale: Scale factor multiplied against freq to get clocksource hz
685 * @freq: clocksource frequency (cycles per second) divided by scale
686 *
687 * This should only be called from the clocksource->enable() method.
688 *
689 * This *SHOULD NOT* be called directly! Please use the
690 * clocksource_updatefreq_hz() or clocksource_updatefreq_khz helper functions.
691 */
692void __clocksource_updatefreq_scale(struct clocksource *cs, u32 scale, u32 freq)
693{
Thomas Gleixnerc0e299b2011-05-20 10:50:52 +0200694 u64 sec;
John Stultz852db462010-07-13 17:56:28 -0700695 /*
Thomas Gleixner724ed532011-05-18 21:33:40 +0000696 * Calc the maximum number of seconds which we can run before
697 * wrapping around. For clocksources which have a mask > 32bit
698 * we need to limit the max sleep time to have a good
699 * conversion precision. 10 minutes is still a reasonable
700 * amount. That results in a shift value of 24 for a
701 * clocksource with mask >= 40bit and f >= 4GHz. That maps to
702 * ~ 0.06ppm granularity for NTP. We apply the same 12.5%
703 * margin as we do in clocksource_max_deferment()
John Stultz852db462010-07-13 17:56:28 -0700704 */
Yang Honggang (Joseph)b1f91962011-12-01 22:22:41 -0500705 sec = (cs->mask - (cs->mask >> 3));
Thomas Gleixner724ed532011-05-18 21:33:40 +0000706 do_div(sec, freq);
707 do_div(sec, scale);
708 if (!sec)
709 sec = 1;
710 else if (sec > 600 && cs->mask > UINT_MAX)
711 sec = 600;
712
John Stultz852db462010-07-13 17:56:28 -0700713 clocks_calc_mult_shift(&cs->mult, &cs->shift, freq,
Thomas Gleixner724ed532011-05-18 21:33:40 +0000714 NSEC_PER_SEC / scale, sec * scale);
John Stultzd65670a2011-10-31 17:06:35 -0400715
716 /*
717 * for clocksources that have large mults, to avoid overflow.
718 * Since mult may be adjusted by ntp, add an safety extra margin
719 *
720 */
721 cs->maxadj = clocksource_max_adjustment(cs);
722 while ((cs->mult + cs->maxadj < cs->mult)
723 || (cs->mult - cs->maxadj > cs->mult)) {
724 cs->mult >>= 1;
725 cs->shift--;
726 cs->maxadj = clocksource_max_adjustment(cs);
727 }
728
John Stultz852db462010-07-13 17:56:28 -0700729 cs->max_idle_ns = clocksource_max_deferment(cs);
730}
731EXPORT_SYMBOL_GPL(__clocksource_updatefreq_scale);
732
733/**
John Stultzd7e81c22010-05-07 18:07:38 -0700734 * __clocksource_register_scale - Used to install new clocksources
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900735 * @cs: clocksource to be registered
John Stultzd7e81c22010-05-07 18:07:38 -0700736 * @scale: Scale factor multiplied against freq to get clocksource hz
737 * @freq: clocksource frequency (cycles per second) divided by scale
738 *
739 * Returns -EBUSY if registration fails, zero otherwise.
740 *
741 * This *SHOULD NOT* be called directly! Please use the
742 * clocksource_register_hz() or clocksource_register_khz helper functions.
743 */
744int __clocksource_register_scale(struct clocksource *cs, u32 scale, u32 freq)
745{
746
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400747 /* Initialize mult/shift and max_idle_ns */
John Stultz852db462010-07-13 17:56:28 -0700748 __clocksource_updatefreq_scale(cs, scale, freq);
John Stultzd7e81c22010-05-07 18:07:38 -0700749
John Stultz852db462010-07-13 17:56:28 -0700750 /* Add clocksource to the clcoksource list */
John Stultzd7e81c22010-05-07 18:07:38 -0700751 mutex_lock(&clocksource_mutex);
752 clocksource_enqueue(cs);
John Stultzd7e81c22010-05-07 18:07:38 -0700753 clocksource_enqueue_watchdog(cs);
john stultze05b2ef2011-05-04 18:16:50 -0700754 clocksource_select();
John Stultzd7e81c22010-05-07 18:07:38 -0700755 mutex_unlock(&clocksource_mutex);
756 return 0;
757}
758EXPORT_SYMBOL_GPL(__clocksource_register_scale);
759
760
john stultz734efb42006-06-26 00:25:05 -0700761/**
john stultza2752542006-06-26 00:25:14 -0700762 * clocksource_register - Used to install new clocksources
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900763 * @cs: clocksource to be registered
john stultz734efb42006-06-26 00:25:05 -0700764 *
765 * Returns -EBUSY if registration fails, zero otherwise.
766 */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200767int clocksource_register(struct clocksource *cs)
john stultz734efb42006-06-26 00:25:05 -0700768{
John Stultzd65670a2011-10-31 17:06:35 -0400769 /* calculate max adjustment for given mult/shift */
770 cs->maxadj = clocksource_max_adjustment(cs);
771 WARN_ONCE(cs->mult + cs->maxadj < cs->mult,
772 "Clocksource %s might overflow on 11%% adjustment\n",
773 cs->name);
774
Jon Hunter98962462009-08-18 12:45:10 -0500775 /* calculate max idle time permitted for this clocksource */
776 cs->max_idle_ns = clocksource_max_deferment(cs);
777
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200778 mutex_lock(&clocksource_mutex);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200779 clocksource_enqueue(cs);
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200780 clocksource_enqueue_watchdog(cs);
john stultze05b2ef2011-05-04 18:16:50 -0700781 clocksource_select();
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200782 mutex_unlock(&clocksource_mutex);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200783 return 0;
john stultz734efb42006-06-26 00:25:05 -0700784}
john stultza2752542006-06-26 00:25:14 -0700785EXPORT_SYMBOL(clocksource_register);
john stultz734efb42006-06-26 00:25:05 -0700786
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200787static void __clocksource_change_rating(struct clocksource *cs, int rating)
788{
789 list_del(&cs->list);
790 cs->rating = rating;
791 clocksource_enqueue(cs);
792 clocksource_select();
793}
794
john stultz734efb42006-06-26 00:25:05 -0700795/**
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800796 * clocksource_change_rating - Change the rating of a registered clocksource
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900797 * @cs: clocksource to be changed
798 * @rating: new rating
john stultz734efb42006-06-26 00:25:05 -0700799 */
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800800void clocksource_change_rating(struct clocksource *cs, int rating)
john stultz734efb42006-06-26 00:25:05 -0700801{
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200802 mutex_lock(&clocksource_mutex);
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200803 __clocksource_change_rating(cs, rating);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200804 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700805}
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200806EXPORT_SYMBOL(clocksource_change_rating);
john stultz734efb42006-06-26 00:25:05 -0700807
Thomas Gleixner7eaeb342013-04-25 20:31:46 +0000808/*
809 * Unbind clocksource @cs. Called with clocksource_mutex held
810 */
811static int clocksource_unbind(struct clocksource *cs)
812{
813 /*
814 * I really can't convince myself to support this on hardware
815 * designed by lobotomized monkeys.
816 */
817 if (clocksource_is_watchdog(cs))
818 return -EBUSY;
819
820 if (cs == curr_clocksource) {
821 /* Select and try to install a replacement clock source */
822 clocksource_select_fallback();
823 if (curr_clocksource == cs)
824 return -EBUSY;
825 }
826 clocksource_dequeue_watchdog(cs);
827 list_del_init(&cs->list);
828 return 0;
829}
830
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100831/**
832 * clocksource_unregister - remove a registered clocksource
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900833 * @cs: clocksource to be unregistered
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100834 */
Thomas Gleixnera89c7ed2013-04-25 20:31:46 +0000835int clocksource_unregister(struct clocksource *cs)
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100836{
Thomas Gleixnera89c7ed2013-04-25 20:31:46 +0000837 int ret = 0;
838
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200839 mutex_lock(&clocksource_mutex);
Thomas Gleixnera89c7ed2013-04-25 20:31:46 +0000840 if (!list_empty(&cs->list))
841 ret = clocksource_unbind(cs);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200842 mutex_unlock(&clocksource_mutex);
Thomas Gleixnera89c7ed2013-04-25 20:31:46 +0000843 return ret;
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100844}
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200845EXPORT_SYMBOL(clocksource_unregister);
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100846
Daniel Walker2b013702006-12-10 02:21:30 -0800847#ifdef CONFIG_SYSFS
john stultz734efb42006-06-26 00:25:05 -0700848/**
849 * sysfs_show_current_clocksources - sysfs interface for current clocksource
850 * @dev: unused
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900851 * @attr: unused
john stultz734efb42006-06-26 00:25:05 -0700852 * @buf: char buffer to be filled with clocksource list
853 *
854 * Provides sysfs interface for listing current clocksource.
855 */
856static ssize_t
Kay Sieversd369a5d2011-12-14 15:28:51 -0800857sysfs_show_current_clocksources(struct device *dev,
858 struct device_attribute *attr, char *buf)
john stultz734efb42006-06-26 00:25:05 -0700859{
Miao Xie5e2cb102008-02-06 01:36:53 -0800860 ssize_t count = 0;
john stultz734efb42006-06-26 00:25:05 -0700861
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200862 mutex_lock(&clocksource_mutex);
Miao Xie5e2cb102008-02-06 01:36:53 -0800863 count = snprintf(buf, PAGE_SIZE, "%s\n", curr_clocksource->name);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200864 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700865
Miao Xie5e2cb102008-02-06 01:36:53 -0800866 return count;
john stultz734efb42006-06-26 00:25:05 -0700867}
868
Thomas Gleixner03e13cf2013-04-25 20:31:50 +0000869size_t sysfs_get_uname(const char *buf, char *dst, size_t cnt)
Thomas Gleixner29b54072013-04-25 20:31:45 +0000870{
871 size_t ret = cnt;
872
873 /* strings from sysfs write are not 0 terminated! */
874 if (!cnt || cnt >= CS_NAME_LEN)
875 return -EINVAL;
876
877 /* strip of \n: */
878 if (buf[cnt-1] == '\n')
879 cnt--;
880 if (cnt > 0)
881 memcpy(dst, buf, cnt);
882 dst[cnt] = 0;
883 return ret;
884}
885
john stultz734efb42006-06-26 00:25:05 -0700886/**
887 * sysfs_override_clocksource - interface for manually overriding clocksource
888 * @dev: unused
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900889 * @attr: unused
john stultz734efb42006-06-26 00:25:05 -0700890 * @buf: name of override clocksource
891 * @count: length of buffer
892 *
893 * Takes input from sysfs interface for manually overriding the default
Uwe Kleine-Königb71a8eb2009-10-06 12:42:51 +0200894 * clocksource selection.
john stultz734efb42006-06-26 00:25:05 -0700895 */
Kay Sieversd369a5d2011-12-14 15:28:51 -0800896static ssize_t sysfs_override_clocksource(struct device *dev,
897 struct device_attribute *attr,
john stultz734efb42006-06-26 00:25:05 -0700898 const char *buf, size_t count)
899{
Thomas Gleixner29b54072013-04-25 20:31:45 +0000900 size_t ret;
john stultz734efb42006-06-26 00:25:05 -0700901
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200902 mutex_lock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700903
Thomas Gleixner03e13cf2013-04-25 20:31:50 +0000904 ret = sysfs_get_uname(buf, override_name, count);
Thomas Gleixner29b54072013-04-25 20:31:45 +0000905 if (ret >= 0)
906 clocksource_select();
john stultz734efb42006-06-26 00:25:05 -0700907
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200908 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700909
910 return ret;
911}
912
913/**
Thomas Gleixner7eaeb342013-04-25 20:31:46 +0000914 * sysfs_unbind_current_clocksource - interface for manually unbinding clocksource
915 * @dev: unused
916 * @attr: unused
917 * @buf: unused
918 * @count: length of buffer
919 *
920 * Takes input from sysfs interface for manually unbinding a clocksource.
921 */
922static ssize_t sysfs_unbind_clocksource(struct device *dev,
923 struct device_attribute *attr,
924 const char *buf, size_t count)
925{
926 struct clocksource *cs;
927 char name[CS_NAME_LEN];
928 size_t ret;
929
Thomas Gleixner03e13cf2013-04-25 20:31:50 +0000930 ret = sysfs_get_uname(buf, name, count);
Thomas Gleixner7eaeb342013-04-25 20:31:46 +0000931 if (ret < 0)
932 return ret;
933
934 ret = -ENODEV;
935 mutex_lock(&clocksource_mutex);
936 list_for_each_entry(cs, &clocksource_list, list) {
937 if (strcmp(cs->name, name))
938 continue;
939 ret = clocksource_unbind(cs);
940 break;
941 }
942 mutex_unlock(&clocksource_mutex);
943
944 return ret ? ret : count;
945}
946
947/**
john stultz734efb42006-06-26 00:25:05 -0700948 * sysfs_show_available_clocksources - sysfs interface for listing clocksource
949 * @dev: unused
Kusanagi Kouichib1b73d02011-12-19 18:13:19 +0900950 * @attr: unused
john stultz734efb42006-06-26 00:25:05 -0700951 * @buf: char buffer to be filled with clocksource list
952 *
953 * Provides sysfs interface for listing registered clocksources
954 */
955static ssize_t
Kay Sieversd369a5d2011-12-14 15:28:51 -0800956sysfs_show_available_clocksources(struct device *dev,
957 struct device_attribute *attr,
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200958 char *buf)
john stultz734efb42006-06-26 00:25:05 -0700959{
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700960 struct clocksource *src;
Miao Xie5e2cb102008-02-06 01:36:53 -0800961 ssize_t count = 0;
john stultz734efb42006-06-26 00:25:05 -0700962
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200963 mutex_lock(&clocksource_mutex);
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700964 list_for_each_entry(src, &clocksource_list, list) {
Thomas Gleixnercd6d95d2009-06-12 11:29:27 +0200965 /*
966 * Don't show non-HRES clocksource if the tick code is
967 * in one shot mode (highres=on or nohz=on)
968 */
969 if (!tick_oneshot_mode_active() ||
970 (src->flags & CLOCK_SOURCE_VALID_FOR_HRES))
john stultz3f685352009-01-21 22:53:22 -0700971 count += snprintf(buf + count,
Miao Xie5e2cb102008-02-06 01:36:53 -0800972 max((ssize_t)PAGE_SIZE - count, (ssize_t)0),
973 "%s ", src->name);
john stultz734efb42006-06-26 00:25:05 -0700974 }
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200975 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700976
Miao Xie5e2cb102008-02-06 01:36:53 -0800977 count += snprintf(buf + count,
978 max((ssize_t)PAGE_SIZE - count, (ssize_t)0), "\n");
john stultz734efb42006-06-26 00:25:05 -0700979
Miao Xie5e2cb102008-02-06 01:36:53 -0800980 return count;
john stultz734efb42006-06-26 00:25:05 -0700981}
982
983/*
984 * Sysfs setup bits:
985 */
Kay Sieversd369a5d2011-12-14 15:28:51 -0800986static DEVICE_ATTR(current_clocksource, 0644, sysfs_show_current_clocksources,
Daniel Walkerf5f1a242006-12-10 02:21:33 -0800987 sysfs_override_clocksource);
john stultz734efb42006-06-26 00:25:05 -0700988
Thomas Gleixner7eaeb342013-04-25 20:31:46 +0000989static DEVICE_ATTR(unbind_clocksource, 0200, NULL, sysfs_unbind_clocksource);
990
Kay Sieversd369a5d2011-12-14 15:28:51 -0800991static DEVICE_ATTR(available_clocksource, 0444,
Daniel Walkerf5f1a242006-12-10 02:21:33 -0800992 sysfs_show_available_clocksources, NULL);
john stultz734efb42006-06-26 00:25:05 -0700993
Kay Sieversd369a5d2011-12-14 15:28:51 -0800994static struct bus_type clocksource_subsys = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100995 .name = "clocksource",
Kay Sieversd369a5d2011-12-14 15:28:51 -0800996 .dev_name = "clocksource",
john stultz734efb42006-06-26 00:25:05 -0700997};
998
Kay Sieversd369a5d2011-12-14 15:28:51 -0800999static struct device device_clocksource = {
john stultz734efb42006-06-26 00:25:05 -07001000 .id = 0,
Kay Sieversd369a5d2011-12-14 15:28:51 -08001001 .bus = &clocksource_subsys,
john stultz734efb42006-06-26 00:25:05 -07001002};
1003
john stultzad596172006-06-26 00:25:06 -07001004static int __init init_clocksource_sysfs(void)
john stultz734efb42006-06-26 00:25:05 -07001005{
Kay Sieversd369a5d2011-12-14 15:28:51 -08001006 int error = subsys_system_register(&clocksource_subsys, NULL);
john stultz734efb42006-06-26 00:25:05 -07001007
1008 if (!error)
Kay Sieversd369a5d2011-12-14 15:28:51 -08001009 error = device_register(&device_clocksource);
john stultz734efb42006-06-26 00:25:05 -07001010 if (!error)
Kay Sieversd369a5d2011-12-14 15:28:51 -08001011 error = device_create_file(
john stultz734efb42006-06-26 00:25:05 -07001012 &device_clocksource,
Kay Sieversd369a5d2011-12-14 15:28:51 -08001013 &dev_attr_current_clocksource);
john stultz734efb42006-06-26 00:25:05 -07001014 if (!error)
Thomas Gleixner7eaeb342013-04-25 20:31:46 +00001015 error = device_create_file(&device_clocksource,
1016 &dev_attr_unbind_clocksource);
1017 if (!error)
Kay Sieversd369a5d2011-12-14 15:28:51 -08001018 error = device_create_file(
john stultz734efb42006-06-26 00:25:05 -07001019 &device_clocksource,
Kay Sieversd369a5d2011-12-14 15:28:51 -08001020 &dev_attr_available_clocksource);
john stultz734efb42006-06-26 00:25:05 -07001021 return error;
1022}
1023
1024device_initcall(init_clocksource_sysfs);
Daniel Walker2b013702006-12-10 02:21:30 -08001025#endif /* CONFIG_SYSFS */
john stultz734efb42006-06-26 00:25:05 -07001026
1027/**
1028 * boot_override_clocksource - boot clock override
1029 * @str: override name
1030 *
1031 * Takes a clocksource= boot argument and uses it
1032 * as the clocksource override name.
1033 */
1034static int __init boot_override_clocksource(char* str)
1035{
Martin Schwidefsky75c51582009-08-14 15:47:30 +02001036 mutex_lock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -07001037 if (str)
1038 strlcpy(override_name, str, sizeof(override_name));
Martin Schwidefsky75c51582009-08-14 15:47:30 +02001039 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -07001040 return 1;
1041}
1042
1043__setup("clocksource=", boot_override_clocksource);
1044
1045/**
1046 * boot_override_clock - Compatibility layer for deprecated boot option
1047 * @str: override name
1048 *
1049 * DEPRECATED! Takes a clock= boot argument and uses it
1050 * as the clocksource override name
1051 */
1052static int __init boot_override_clock(char* str)
1053{
john stultz5d0cf412006-06-26 00:25:12 -07001054 if (!strcmp(str, "pmtmr")) {
1055 printk("Warning: clock=pmtmr is deprecated. "
1056 "Use clocksource=acpi_pm.\n");
1057 return boot_override_clocksource("acpi_pm");
1058 }
1059 printk("Warning! clock= boot option is deprecated. "
1060 "Use clocksource=xyz\n");
john stultz734efb42006-06-26 00:25:05 -07001061 return boot_override_clocksource(str);
1062}
1063
1064__setup("clock=", boot_override_clock);