blob: e0c86ad6e9fbd838d01685b1231ca7c27d6eb806 [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
26#include <linux/clocksource.h>
27#include <linux/sysdev.h>
28#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
Patrick Ohlya038a352009-02-12 05:03:34 +000034void timecounter_init(struct timecounter *tc,
35 const struct cyclecounter *cc,
36 u64 start_tstamp)
37{
38 tc->cc = cc;
39 tc->cycle_last = cc->read(cc);
40 tc->nsec = start_tstamp;
41}
42EXPORT_SYMBOL(timecounter_init);
43
44/**
45 * timecounter_read_delta - get nanoseconds since last call of this function
46 * @tc: Pointer to time counter
47 *
48 * When the underlying cycle counter runs over, this will be handled
49 * correctly as long as it does not run over more than once between
50 * calls.
51 *
52 * The first call to this function for a new time counter initializes
53 * the time tracking and returns an undefined result.
54 */
55static u64 timecounter_read_delta(struct timecounter *tc)
56{
57 cycle_t cycle_now, cycle_delta;
58 u64 ns_offset;
59
60 /* read cycle counter: */
61 cycle_now = tc->cc->read(tc->cc);
62
63 /* calculate the delta since the last timecounter_read_delta(): */
64 cycle_delta = (cycle_now - tc->cycle_last) & tc->cc->mask;
65
66 /* convert to nanoseconds: */
67 ns_offset = cyclecounter_cyc2ns(tc->cc, cycle_delta);
68
69 /* update time stamp of timecounter_read_delta() call: */
70 tc->cycle_last = cycle_now;
71
72 return ns_offset;
73}
74
75u64 timecounter_read(struct timecounter *tc)
76{
77 u64 nsec;
78
79 /* increment time by nanoseconds since last call */
80 nsec = timecounter_read_delta(tc);
81 nsec += tc->nsec;
82 tc->nsec = nsec;
83
84 return nsec;
85}
86EXPORT_SYMBOL(timecounter_read);
87
88u64 timecounter_cyc2time(struct timecounter *tc,
89 cycle_t cycle_tstamp)
90{
91 u64 cycle_delta = (cycle_tstamp - tc->cycle_last) & tc->cc->mask;
92 u64 nsec;
93
94 /*
95 * Instead of always treating cycle_tstamp as more recent
96 * than tc->cycle_last, detect when it is too far in the
97 * future and treat it as old time stamp instead.
98 */
99 if (cycle_delta > tc->cc->mask / 2) {
100 cycle_delta = (tc->cycle_last - cycle_tstamp) & tc->cc->mask;
101 nsec = tc->nsec - cyclecounter_cyc2ns(tc->cc, cycle_delta);
102 } else {
103 nsec = cyclecounter_cyc2ns(tc->cc, cycle_delta) + tc->nsec;
104 }
105
106 return nsec;
107}
108EXPORT_SYMBOL(timecounter_cyc2time);
109
john stultz734efb42006-06-26 00:25:05 -0700110/*[Clocksource internal variables]---------
111 * curr_clocksource:
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200112 * currently selected clocksource.
john stultz734efb42006-06-26 00:25:05 -0700113 * clocksource_list:
114 * linked list with the registered clocksources
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200115 * clocksource_mutex:
116 * protects manipulations to curr_clocksource and the clocksource_list
john stultz734efb42006-06-26 00:25:05 -0700117 * override_name:
118 * Name of the user-specified clocksource.
119 */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200120static struct clocksource *curr_clocksource;
john stultz734efb42006-06-26 00:25:05 -0700121static LIST_HEAD(clocksource_list);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200122static DEFINE_MUTEX(clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700123static char override_name[32];
john stultz734efb42006-06-26 00:25:05 -0700124
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800125#ifdef CONFIG_CLOCKSOURCE_WATCHDOG
126static LIST_HEAD(watchdog_list);
127static struct clocksource *watchdog;
128static struct timer_list watchdog_timer;
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200129static struct work_struct watchdog_work;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800130static DEFINE_SPINLOCK(watchdog_lock);
131static cycle_t watchdog_last;
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200132static int watchdog_running;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700133
Martin Schwidefsky01548f42009-08-18 17:09:42 +0200134static int clocksource_watchdog_kthread(void *data);
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200135static void __clocksource_change_rating(struct clocksource *cs, int rating);
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200136
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800137/*
Daniel Walker35c35d12007-05-09 02:33:40 -0700138 * Interval: 0.5sec Threshold: 0.0625s
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800139 */
140#define WATCHDOG_INTERVAL (HZ >> 1)
Daniel Walker35c35d12007-05-09 02:33:40 -0700141#define WATCHDOG_THRESHOLD (NSEC_PER_SEC >> 4)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800142
Martin Schwidefsky01548f42009-08-18 17:09:42 +0200143static void clocksource_watchdog_work(struct work_struct *work)
144{
145 /*
146 * If kthread_run fails the next watchdog scan over the
147 * watchdog_list will find the unstable clock again.
148 */
149 kthread_run(clocksource_watchdog_kthread, NULL, "kwatchdog");
150}
151
Martin Schwidefsky8cf4e752009-08-14 15:47:22 +0200152static void clocksource_unstable(struct clocksource *cs, int64_t delta)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800153{
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800154 printk(KERN_WARNING "Clocksource %s unstable (delta = %Ld ns)\n",
155 cs->name, delta);
156 cs->flags &= ~(CLOCK_SOURCE_VALID_FOR_HRES | CLOCK_SOURCE_WATCHDOG);
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200157 cs->flags |= CLOCK_SOURCE_UNSTABLE;
158 schedule_work(&watchdog_work);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800159}
160
161static void clocksource_watchdog(unsigned long data)
162{
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200163 struct clocksource *cs;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800164 cycle_t csnow, wdnow;
165 int64_t wd_nsec, cs_nsec;
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200166 int next_cpu;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800167
168 spin_lock(&watchdog_lock);
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200169 if (!watchdog_running)
170 goto out;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800171
Magnus Damm8e196082009-04-21 12:24:00 -0700172 wdnow = watchdog->read(watchdog);
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200173 wd_nsec = clocksource_cyc2ns((wdnow - watchdog_last) & watchdog->mask,
174 watchdog->mult, watchdog->shift);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800175 watchdog_last = wdnow;
176
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200177 list_for_each_entry(cs, &watchdog_list, wd_list) {
178
179 /* Clocksource already marked unstable? */
Martin Schwidefsky01548f42009-08-18 17:09:42 +0200180 if (cs->flags & CLOCK_SOURCE_UNSTABLE) {
181 schedule_work(&watchdog_work);
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200182 continue;
Martin Schwidefsky01548f42009-08-18 17:09:42 +0200183 }
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200184
Magnus Damm8e196082009-04-21 12:24:00 -0700185 csnow = cs->read(cs);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700186
Martin Schwidefsky8cf4e752009-08-14 15:47:22 +0200187 /* Clocksource initialized ? */
188 if (!(cs->flags & CLOCK_SOURCE_WATCHDOG)) {
189 cs->flags |= CLOCK_SOURCE_WATCHDOG;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700190 cs->wd_last = csnow;
191 continue;
192 }
193
Martin Schwidefsky8cf4e752009-08-14 15:47:22 +0200194 /* Check the deviation from the watchdog clocksource. */
Martin Schwidefsky155ec602009-08-14 15:47:26 +0200195 cs_nsec = clocksource_cyc2ns((csnow - cs->wd_last) &
196 cs->mask, cs->mult, cs->shift);
Martin Schwidefsky8cf4e752009-08-14 15:47:22 +0200197 cs->wd_last = csnow;
198 if (abs(cs_nsec - wd_nsec) > WATCHDOG_THRESHOLD) {
199 clocksource_unstable(cs, cs_nsec - wd_nsec);
200 continue;
201 }
202
203 if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) &&
204 (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) &&
205 (watchdog->flags & CLOCK_SOURCE_IS_CONTINUOUS)) {
206 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
207 /*
208 * We just marked the clocksource as highres-capable,
209 * notify the rest of the system as well so that we
210 * transition into high-res mode:
211 */
212 tick_clock_notify();
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800213 }
214 }
215
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200216 /*
217 * Cycle through CPUs to check if the CPUs stay synchronized
218 * to each other.
219 */
220 next_cpu = cpumask_next(raw_smp_processor_id(), cpu_online_mask);
221 if (next_cpu >= nr_cpu_ids)
222 next_cpu = cpumask_first(cpu_online_mask);
223 watchdog_timer.expires += WATCHDOG_INTERVAL;
224 add_timer_on(&watchdog_timer, next_cpu);
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200225out:
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800226 spin_unlock(&watchdog_lock);
227}
Martin Schwidefsky0f8e8ef2009-08-14 15:47:23 +0200228
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200229static inline void clocksource_start_watchdog(void)
230{
231 if (watchdog_running || !watchdog || list_empty(&watchdog_list))
232 return;
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200233 INIT_WORK(&watchdog_work, clocksource_watchdog_work);
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200234 init_timer(&watchdog_timer);
235 watchdog_timer.function = clocksource_watchdog;
236 watchdog_last = watchdog->read(watchdog);
237 watchdog_timer.expires = jiffies + WATCHDOG_INTERVAL;
238 add_timer_on(&watchdog_timer, cpumask_first(cpu_online_mask));
239 watchdog_running = 1;
240}
241
242static inline void clocksource_stop_watchdog(void)
243{
244 if (!watchdog_running || (watchdog && !list_empty(&watchdog_list)))
245 return;
246 del_timer(&watchdog_timer);
247 watchdog_running = 0;
248}
249
Martin Schwidefsky0f8e8ef2009-08-14 15:47:23 +0200250static inline void clocksource_reset_watchdog(void)
251{
252 struct clocksource *cs;
253
254 list_for_each_entry(cs, &watchdog_list, wd_list)
255 cs->flags &= ~CLOCK_SOURCE_WATCHDOG;
256}
257
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700258static void clocksource_resume_watchdog(void)
259{
Martin Schwidefsky0f8e8ef2009-08-14 15:47:23 +0200260 unsigned long flags;
261
262 spin_lock_irqsave(&watchdog_lock, flags);
263 clocksource_reset_watchdog();
264 spin_unlock_irqrestore(&watchdog_lock, flags);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700265}
266
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200267static void clocksource_enqueue_watchdog(struct clocksource *cs)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800268{
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800269 unsigned long flags;
270
271 spin_lock_irqsave(&watchdog_lock, flags);
272 if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) {
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200273 /* cs is a clocksource to be watched. */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800274 list_add(&cs->wd_list, &watchdog_list);
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200275 cs->flags &= ~CLOCK_SOURCE_WATCHDOG;
Thomas Gleixner948ac6d2007-03-25 14:42:51 +0200276 } else {
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200277 /* cs is a watchdog. */
Thomas Gleixner948ac6d2007-03-25 14:42:51 +0200278 if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800279 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200280 /* Pick the best watchdog. */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800281 if (!watchdog || cs->rating > watchdog->rating) {
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800282 watchdog = cs;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800283 /* Reset watchdog cycles */
Martin Schwidefsky0f8e8ef2009-08-14 15:47:23 +0200284 clocksource_reset_watchdog();
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800285 }
286 }
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200287 /* Check if the watchdog timer needs to be started. */
288 clocksource_start_watchdog();
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800289 spin_unlock_irqrestore(&watchdog_lock, flags);
290}
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200291
292static void clocksource_dequeue_watchdog(struct clocksource *cs)
293{
294 struct clocksource *tmp;
295 unsigned long flags;
296
297 spin_lock_irqsave(&watchdog_lock, flags);
298 if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) {
299 /* cs is a watched clocksource. */
300 list_del_init(&cs->wd_list);
301 } else if (cs == watchdog) {
302 /* Reset watchdog cycles */
303 clocksource_reset_watchdog();
304 /* Current watchdog is removed. Find an alternative. */
305 watchdog = NULL;
306 list_for_each_entry(tmp, &clocksource_list, list) {
307 if (tmp == cs || tmp->flags & CLOCK_SOURCE_MUST_VERIFY)
308 continue;
309 if (!watchdog || tmp->rating > watchdog->rating)
310 watchdog = tmp;
311 }
312 }
313 cs->flags &= ~CLOCK_SOURCE_WATCHDOG;
314 /* Check if the watchdog timer needs to be stopped. */
315 clocksource_stop_watchdog();
316 spin_unlock_irqrestore(&watchdog_lock, flags);
317}
318
Martin Schwidefsky01548f42009-08-18 17:09:42 +0200319static int clocksource_watchdog_kthread(void *data)
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200320{
321 struct clocksource *cs, *tmp;
322 unsigned long flags;
Thomas Gleixner6ea41d22009-08-15 13:20:42 +0200323 LIST_HEAD(unstable);
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200324
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200325 mutex_lock(&clocksource_mutex);
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200326 spin_lock_irqsave(&watchdog_lock, flags);
327 list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list)
328 if (cs->flags & CLOCK_SOURCE_UNSTABLE) {
329 list_del_init(&cs->wd_list);
Thomas Gleixner6ea41d22009-08-15 13:20:42 +0200330 list_add(&cs->wd_list, &unstable);
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200331 }
332 /* Check if the watchdog timer needs to be stopped. */
333 clocksource_stop_watchdog();
Thomas Gleixner6ea41d22009-08-15 13:20:42 +0200334 spin_unlock_irqrestore(&watchdog_lock, flags);
335
336 /* Needs to be done outside of watchdog lock */
337 list_for_each_entry_safe(cs, tmp, &unstable, wd_list) {
338 list_del_init(&cs->wd_list);
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200339 __clocksource_change_rating(cs, 0);
Thomas Gleixner6ea41d22009-08-15 13:20:42 +0200340 }
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200341 mutex_unlock(&clocksource_mutex);
Martin Schwidefsky01548f42009-08-18 17:09:42 +0200342 return 0;
Martin Schwidefskyc55c87c2009-08-14 15:47:25 +0200343}
344
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200345#else /* CONFIG_CLOCKSOURCE_WATCHDOG */
346
347static void clocksource_enqueue_watchdog(struct clocksource *cs)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800348{
349 if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
350 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
351}
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700352
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200353static inline void clocksource_dequeue_watchdog(struct clocksource *cs) { }
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700354static inline void clocksource_resume_watchdog(void) { }
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200355
356#endif /* CONFIG_CLOCKSOURCE_WATCHDOG */
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800357
john stultz734efb42006-06-26 00:25:05 -0700358/**
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700359 * clocksource_resume - resume the clocksource(s)
360 */
361void clocksource_resume(void)
362{
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700363 struct clocksource *cs;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700364
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200365 mutex_lock(&clocksource_mutex);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700366
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200367 list_for_each_entry(cs, &clocksource_list, list)
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700368 if (cs->resume)
369 cs->resume();
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700370
371 clocksource_resume_watchdog();
372
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200373 mutex_unlock(&clocksource_mutex);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700374}
375
376/**
Jason Wessel7c3078b2008-02-15 14:55:54 -0600377 * clocksource_touch_watchdog - Update watchdog
378 *
379 * Update the watchdog after exception contexts such as kgdb so as not
380 * to incorrectly trip the watchdog.
381 *
382 */
383void clocksource_touch_watchdog(void)
384{
385 clocksource_resume_watchdog();
386}
387
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200388#ifdef CONFIG_GENERIC_TIME
john stultz734efb42006-06-26 00:25:05 -0700389
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200390static int finished_booting;
john stultz734efb42006-06-26 00:25:05 -0700391
392/**
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200393 * clocksource_select - Select the best clocksource available
john stultz734efb42006-06-26 00:25:05 -0700394 *
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200395 * Private function. Must hold clocksource_mutex when called.
john stultz734efb42006-06-26 00:25:05 -0700396 *
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800397 * Select the clocksource with the best rating, or the clocksource,
398 * which is selected by userspace override.
john stultz734efb42006-06-26 00:25:05 -0700399 */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200400static void clocksource_select(void)
john stultz734efb42006-06-26 00:25:05 -0700401{
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200402 struct clocksource *best, *cs;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800403
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200404 if (!finished_booting || list_empty(&clocksource_list))
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200405 return;
406 /* First clocksource on the list has the best rating. */
407 best = list_first_entry(&clocksource_list, struct clocksource, list);
408 /* Check for the override clocksource. */
409 list_for_each_entry(cs, &clocksource_list, list) {
410 if (strcmp(cs->name, override_name) != 0)
411 continue;
412 /*
413 * Check to make sure we don't switch to a non-highres
414 * capable clocksource if the tick code is in oneshot
415 * mode (highres or nohz)
416 */
417 if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) &&
418 tick_oneshot_mode_active()) {
419 /* Override clocksource cannot be used. */
420 printk(KERN_WARNING "Override clocksource %s is not "
421 "HRT compatible. Cannot switch while in "
422 "HRT/NOHZ mode\n", cs->name);
423 override_name[0] = 0;
424 } else
425 /* Override clocksource can be used. */
426 best = cs;
427 break;
428 }
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200429 if (curr_clocksource != best) {
430 printk(KERN_INFO "Switching to clocksource %s\n", best->name);
431 curr_clocksource = best;
432 timekeeping_notify(curr_clocksource);
433 }
john stultz734efb42006-06-26 00:25:05 -0700434}
435
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200436/*
437 * clocksource_done_booting - Called near the end of core bootup
438 *
439 * Hack to avoid lots of clocksource churn at boot time.
440 * We use fs_initcall because we want this to start before
441 * device_initcall but after subsys_initcall.
442 */
443static int __init clocksource_done_booting(void)
444{
445 finished_booting = 1;
446 clocksource_select();
447 return 0;
448}
449fs_initcall(clocksource_done_booting);
450
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200451#else /* CONFIG_GENERIC_TIME */
452
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200453static inline void clocksource_select(void) { }
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200454
455#endif
456
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800457/*
458 * Enqueue the clocksource sorted by rating
john stultz734efb42006-06-26 00:25:05 -0700459 */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200460static void clocksource_enqueue(struct clocksource *cs)
john stultz734efb42006-06-26 00:25:05 -0700461{
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200462 struct list_head *entry = &clocksource_list;
463 struct clocksource *tmp;
john stultz734efb42006-06-26 00:25:05 -0700464
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200465 list_for_each_entry(tmp, &clocksource_list, list)
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800466 /* Keep track of the place, where to insert */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200467 if (tmp->rating >= cs->rating)
468 entry = &tmp->list;
469 list_add(&cs->list, entry);
john stultz734efb42006-06-26 00:25:05 -0700470}
471
472/**
john stultza2752542006-06-26 00:25:14 -0700473 * clocksource_register - Used to install new clocksources
john stultz734efb42006-06-26 00:25:05 -0700474 * @t: clocksource to be registered
475 *
476 * Returns -EBUSY if registration fails, zero otherwise.
477 */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200478int clocksource_register(struct clocksource *cs)
john stultz734efb42006-06-26 00:25:05 -0700479{
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200480 mutex_lock(&clocksource_mutex);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200481 clocksource_enqueue(cs);
482 clocksource_select();
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200483 clocksource_enqueue_watchdog(cs);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200484 mutex_unlock(&clocksource_mutex);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200485 return 0;
john stultz734efb42006-06-26 00:25:05 -0700486}
john stultza2752542006-06-26 00:25:14 -0700487EXPORT_SYMBOL(clocksource_register);
john stultz734efb42006-06-26 00:25:05 -0700488
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200489static void __clocksource_change_rating(struct clocksource *cs, int rating)
490{
491 list_del(&cs->list);
492 cs->rating = rating;
493 clocksource_enqueue(cs);
494 clocksource_select();
495}
496
john stultz734efb42006-06-26 00:25:05 -0700497/**
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800498 * clocksource_change_rating - Change the rating of a registered clocksource
john stultz734efb42006-06-26 00:25:05 -0700499 */
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800500void clocksource_change_rating(struct clocksource *cs, int rating)
john stultz734efb42006-06-26 00:25:05 -0700501{
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200502 mutex_lock(&clocksource_mutex);
Thomas Gleixnerd0981a12009-08-19 11:26:09 +0200503 __clocksource_change_rating(cs, rating);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200504 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700505}
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200506EXPORT_SYMBOL(clocksource_change_rating);
john stultz734efb42006-06-26 00:25:05 -0700507
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100508/**
509 * clocksource_unregister - remove a registered clocksource
510 */
511void clocksource_unregister(struct clocksource *cs)
512{
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200513 mutex_lock(&clocksource_mutex);
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200514 clocksource_dequeue_watchdog(cs);
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100515 list_del(&cs->list);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200516 clocksource_select();
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200517 mutex_unlock(&clocksource_mutex);
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100518}
Martin Schwidefskyfb63a0e2009-08-14 15:47:24 +0200519EXPORT_SYMBOL(clocksource_unregister);
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100520
Daniel Walker2b013702006-12-10 02:21:30 -0800521#ifdef CONFIG_SYSFS
john stultz734efb42006-06-26 00:25:05 -0700522/**
523 * sysfs_show_current_clocksources - sysfs interface for current clocksource
524 * @dev: unused
525 * @buf: char buffer to be filled with clocksource list
526 *
527 * Provides sysfs interface for listing current clocksource.
528 */
529static ssize_t
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200530sysfs_show_current_clocksources(struct sys_device *dev,
531 struct sysdev_attribute *attr, char *buf)
john stultz734efb42006-06-26 00:25:05 -0700532{
Miao Xie5e2cb102008-02-06 01:36:53 -0800533 ssize_t count = 0;
john stultz734efb42006-06-26 00:25:05 -0700534
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200535 mutex_lock(&clocksource_mutex);
Miao Xie5e2cb102008-02-06 01:36:53 -0800536 count = snprintf(buf, PAGE_SIZE, "%s\n", curr_clocksource->name);
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200537 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700538
Miao Xie5e2cb102008-02-06 01:36:53 -0800539 return count;
john stultz734efb42006-06-26 00:25:05 -0700540}
541
542/**
543 * sysfs_override_clocksource - interface for manually overriding clocksource
544 * @dev: unused
545 * @buf: name of override clocksource
546 * @count: length of buffer
547 *
548 * Takes input from sysfs interface for manually overriding the default
549 * clocksource selction.
550 */
551static ssize_t sysfs_override_clocksource(struct sys_device *dev,
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200552 struct sysdev_attribute *attr,
john stultz734efb42006-06-26 00:25:05 -0700553 const char *buf, size_t count)
554{
555 size_t ret = count;
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800556
john stultz734efb42006-06-26 00:25:05 -0700557 /* strings from sysfs write are not 0 terminated! */
558 if (count >= sizeof(override_name))
559 return -EINVAL;
560
561 /* strip of \n: */
562 if (buf[count-1] == '\n')
563 count--;
john stultz734efb42006-06-26 00:25:05 -0700564
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200565 mutex_lock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700566
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800567 if (count > 0)
568 memcpy(override_name, buf, count);
john stultz734efb42006-06-26 00:25:05 -0700569 override_name[count] = 0;
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200570 clocksource_select();
john stultz734efb42006-06-26 00:25:05 -0700571
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200572 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700573
574 return ret;
575}
576
577/**
578 * sysfs_show_available_clocksources - sysfs interface for listing clocksource
579 * @dev: unused
580 * @buf: char buffer to be filled with clocksource list
581 *
582 * Provides sysfs interface for listing registered clocksources
583 */
584static ssize_t
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200585sysfs_show_available_clocksources(struct sys_device *dev,
586 struct sysdev_attribute *attr,
587 char *buf)
john stultz734efb42006-06-26 00:25:05 -0700588{
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700589 struct clocksource *src;
Miao Xie5e2cb102008-02-06 01:36:53 -0800590 ssize_t count = 0;
john stultz734efb42006-06-26 00:25:05 -0700591
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200592 mutex_lock(&clocksource_mutex);
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700593 list_for_each_entry(src, &clocksource_list, list) {
Thomas Gleixnercd6d95d2009-06-12 11:29:27 +0200594 /*
595 * Don't show non-HRES clocksource if the tick code is
596 * in one shot mode (highres=on or nohz=on)
597 */
598 if (!tick_oneshot_mode_active() ||
599 (src->flags & CLOCK_SOURCE_VALID_FOR_HRES))
john stultz3f685352009-01-21 22:53:22 -0700600 count += snprintf(buf + count,
Miao Xie5e2cb102008-02-06 01:36:53 -0800601 max((ssize_t)PAGE_SIZE - count, (ssize_t)0),
602 "%s ", src->name);
john stultz734efb42006-06-26 00:25:05 -0700603 }
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200604 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700605
Miao Xie5e2cb102008-02-06 01:36:53 -0800606 count += snprintf(buf + count,
607 max((ssize_t)PAGE_SIZE - count, (ssize_t)0), "\n");
john stultz734efb42006-06-26 00:25:05 -0700608
Miao Xie5e2cb102008-02-06 01:36:53 -0800609 return count;
john stultz734efb42006-06-26 00:25:05 -0700610}
611
612/*
613 * Sysfs setup bits:
614 */
Heiko Carstens4f95f812008-05-03 14:23:14 +0200615static SYSDEV_ATTR(current_clocksource, 0644, sysfs_show_current_clocksources,
Daniel Walkerf5f1a242006-12-10 02:21:33 -0800616 sysfs_override_clocksource);
john stultz734efb42006-06-26 00:25:05 -0700617
Heiko Carstens4f95f812008-05-03 14:23:14 +0200618static SYSDEV_ATTR(available_clocksource, 0444,
Daniel Walkerf5f1a242006-12-10 02:21:33 -0800619 sysfs_show_available_clocksources, NULL);
john stultz734efb42006-06-26 00:25:05 -0700620
621static struct sysdev_class clocksource_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100622 .name = "clocksource",
john stultz734efb42006-06-26 00:25:05 -0700623};
624
625static struct sys_device device_clocksource = {
626 .id = 0,
627 .cls = &clocksource_sysclass,
628};
629
john stultzad596172006-06-26 00:25:06 -0700630static int __init init_clocksource_sysfs(void)
john stultz734efb42006-06-26 00:25:05 -0700631{
632 int error = sysdev_class_register(&clocksource_sysclass);
633
634 if (!error)
635 error = sysdev_register(&device_clocksource);
636 if (!error)
637 error = sysdev_create_file(
638 &device_clocksource,
639 &attr_current_clocksource);
640 if (!error)
641 error = sysdev_create_file(
642 &device_clocksource,
643 &attr_available_clocksource);
644 return error;
645}
646
647device_initcall(init_clocksource_sysfs);
Daniel Walker2b013702006-12-10 02:21:30 -0800648#endif /* CONFIG_SYSFS */
john stultz734efb42006-06-26 00:25:05 -0700649
650/**
651 * boot_override_clocksource - boot clock override
652 * @str: override name
653 *
654 * Takes a clocksource= boot argument and uses it
655 * as the clocksource override name.
656 */
657static int __init boot_override_clocksource(char* str)
658{
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200659 mutex_lock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700660 if (str)
661 strlcpy(override_name, str, sizeof(override_name));
Martin Schwidefsky75c51582009-08-14 15:47:30 +0200662 mutex_unlock(&clocksource_mutex);
john stultz734efb42006-06-26 00:25:05 -0700663 return 1;
664}
665
666__setup("clocksource=", boot_override_clocksource);
667
668/**
669 * boot_override_clock - Compatibility layer for deprecated boot option
670 * @str: override name
671 *
672 * DEPRECATED! Takes a clock= boot argument and uses it
673 * as the clocksource override name
674 */
675static int __init boot_override_clock(char* str)
676{
john stultz5d0cf412006-06-26 00:25:12 -0700677 if (!strcmp(str, "pmtmr")) {
678 printk("Warning: clock=pmtmr is deprecated. "
679 "Use clocksource=acpi_pm.\n");
680 return boot_override_clocksource("acpi_pm");
681 }
682 printk("Warning! clock= boot option is deprecated. "
683 "Use clocksource=xyz\n");
john stultz734efb42006-06-26 00:25:05 -0700684 return boot_override_clocksource(str);
685}
686
687__setup("clock=", boot_override_clock);