blob: 76256c5aecb811927ee8e3ed302cdd34dceaf982 [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>
john stultz734efb42006-06-26 00:25:05 -070032
Patrick Ohlya038a352009-02-12 05:03:34 +000033void timecounter_init(struct timecounter *tc,
34 const struct cyclecounter *cc,
35 u64 start_tstamp)
36{
37 tc->cc = cc;
38 tc->cycle_last = cc->read(cc);
39 tc->nsec = start_tstamp;
40}
41EXPORT_SYMBOL(timecounter_init);
42
43/**
44 * timecounter_read_delta - get nanoseconds since last call of this function
45 * @tc: Pointer to time counter
46 *
47 * When the underlying cycle counter runs over, this will be handled
48 * correctly as long as it does not run over more than once between
49 * calls.
50 *
51 * The first call to this function for a new time counter initializes
52 * the time tracking and returns an undefined result.
53 */
54static u64 timecounter_read_delta(struct timecounter *tc)
55{
56 cycle_t cycle_now, cycle_delta;
57 u64 ns_offset;
58
59 /* read cycle counter: */
60 cycle_now = tc->cc->read(tc->cc);
61
62 /* calculate the delta since the last timecounter_read_delta(): */
63 cycle_delta = (cycle_now - tc->cycle_last) & tc->cc->mask;
64
65 /* convert to nanoseconds: */
66 ns_offset = cyclecounter_cyc2ns(tc->cc, cycle_delta);
67
68 /* update time stamp of timecounter_read_delta() call: */
69 tc->cycle_last = cycle_now;
70
71 return ns_offset;
72}
73
74u64 timecounter_read(struct timecounter *tc)
75{
76 u64 nsec;
77
78 /* increment time by nanoseconds since last call */
79 nsec = timecounter_read_delta(tc);
80 nsec += tc->nsec;
81 tc->nsec = nsec;
82
83 return nsec;
84}
85EXPORT_SYMBOL(timecounter_read);
86
87u64 timecounter_cyc2time(struct timecounter *tc,
88 cycle_t cycle_tstamp)
89{
90 u64 cycle_delta = (cycle_tstamp - tc->cycle_last) & tc->cc->mask;
91 u64 nsec;
92
93 /*
94 * Instead of always treating cycle_tstamp as more recent
95 * than tc->cycle_last, detect when it is too far in the
96 * future and treat it as old time stamp instead.
97 */
98 if (cycle_delta > tc->cc->mask / 2) {
99 cycle_delta = (tc->cycle_last - cycle_tstamp) & tc->cc->mask;
100 nsec = tc->nsec - cyclecounter_cyc2ns(tc->cc, cycle_delta);
101 } else {
102 nsec = cyclecounter_cyc2ns(tc->cc, cycle_delta) + tc->nsec;
103 }
104
105 return nsec;
106}
107EXPORT_SYMBOL(timecounter_cyc2time);
108
john stultz734efb42006-06-26 00:25:05 -0700109/*[Clocksource internal variables]---------
110 * curr_clocksource:
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200111 * currently selected clocksource.
john stultz734efb42006-06-26 00:25:05 -0700112 * next_clocksource:
113 * pending next selected clocksource.
114 * clocksource_list:
115 * linked list with the registered clocksources
116 * clocksource_lock:
117 * protects manipulations to curr_clocksource and next_clocksource
118 * and the clocksource_list
119 * override_name:
120 * Name of the user-specified clocksource.
121 */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200122static struct clocksource *curr_clocksource;
john stultz734efb42006-06-26 00:25:05 -0700123static struct clocksource *next_clocksource;
124static LIST_HEAD(clocksource_list);
125static DEFINE_SPINLOCK(clocksource_lock);
126static char override_name[32];
127static int finished_booting;
128
john stultz6bb74df2007-03-05 00:30:50 -0800129/* clocksource_done_booting - Called near the end of core bootup
john stultz734efb42006-06-26 00:25:05 -0700130 *
john stultz6bb74df2007-03-05 00:30:50 -0800131 * Hack to avoid lots of clocksource churn at boot time.
132 * We use fs_initcall because we want this to start before
133 * device_initcall but after subsys_initcall.
john stultz734efb42006-06-26 00:25:05 -0700134 */
john stultzad596172006-06-26 00:25:06 -0700135static int __init clocksource_done_booting(void)
john stultz734efb42006-06-26 00:25:05 -0700136{
137 finished_booting = 1;
138 return 0;
139}
john stultz6bb74df2007-03-05 00:30:50 -0800140fs_initcall(clocksource_done_booting);
john stultz734efb42006-06-26 00:25:05 -0700141
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800142#ifdef CONFIG_CLOCKSOURCE_WATCHDOG
143static LIST_HEAD(watchdog_list);
144static struct clocksource *watchdog;
145static struct timer_list watchdog_timer;
146static DEFINE_SPINLOCK(watchdog_lock);
147static cycle_t watchdog_last;
Thomas Gleixner8f894412007-05-15 01:41:32 -0700148static unsigned long watchdog_resumed;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700149
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800150/*
Daniel Walker35c35d12007-05-09 02:33:40 -0700151 * Interval: 0.5sec Threshold: 0.0625s
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800152 */
153#define WATCHDOG_INTERVAL (HZ >> 1)
Daniel Walker35c35d12007-05-09 02:33:40 -0700154#define WATCHDOG_THRESHOLD (NSEC_PER_SEC >> 4)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800155
Martin Schwidefsky8cf4e752009-08-14 15:47:22 +0200156static void clocksource_unstable(struct clocksource *cs, int64_t delta)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800157{
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800158 printk(KERN_WARNING "Clocksource %s unstable (delta = %Ld ns)\n",
159 cs->name, delta);
160 cs->flags &= ~(CLOCK_SOURCE_VALID_FOR_HRES | CLOCK_SOURCE_WATCHDOG);
161 clocksource_change_rating(cs, 0);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800162 list_del(&cs->wd_list);
163}
164
165static void clocksource_watchdog(unsigned long data)
166{
167 struct clocksource *cs, *tmp;
168 cycle_t csnow, wdnow;
169 int64_t wd_nsec, cs_nsec;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700170 int resumed;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800171
172 spin_lock(&watchdog_lock);
173
Thomas Gleixner8f894412007-05-15 01:41:32 -0700174 resumed = test_and_clear_bit(0, &watchdog_resumed);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700175
Magnus Damm8e196082009-04-21 12:24:00 -0700176 wdnow = watchdog->read(watchdog);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800177 wd_nsec = cyc2ns(watchdog, (wdnow - watchdog_last) & watchdog->mask);
178 watchdog_last = wdnow;
179
180 list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list) {
Magnus Damm8e196082009-04-21 12:24:00 -0700181 csnow = cs->read(cs);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700182
Martin Schwidefsky8cf4e752009-08-14 15:47:22 +0200183 /* Clocksource initialized ? */
184 if (!(cs->flags & CLOCK_SOURCE_WATCHDOG)) {
185 cs->flags |= CLOCK_SOURCE_WATCHDOG;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700186 cs->wd_last = csnow;
187 continue;
188 }
189
Martin Schwidefsky8cf4e752009-08-14 15:47:22 +0200190 /* Check the deviation from the watchdog clocksource. */
191 cs_nsec = cyc2ns(cs, (csnow - cs->wd_last) & cs->mask);
192 cs->wd_last = csnow;
193 if (abs(cs_nsec - wd_nsec) > WATCHDOG_THRESHOLD) {
194 clocksource_unstable(cs, cs_nsec - wd_nsec);
195 continue;
196 }
197
198 if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) &&
199 (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) &&
200 (watchdog->flags & CLOCK_SOURCE_IS_CONTINUOUS)) {
201 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
202 /*
203 * We just marked the clocksource as highres-capable,
204 * notify the rest of the system as well so that we
205 * transition into high-res mode:
206 */
207 tick_clock_notify();
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800208 }
209 }
210
211 if (!list_empty(&watchdog_list)) {
Andi Kleen6993fc52008-01-30 13:30:02 +0100212 /*
213 * Cycle through CPUs to check if the CPUs stay
214 * synchronized to each other.
215 */
Rusty Russell5db0e1e2009-01-01 10:12:29 +1030216 int next_cpu = cpumask_next(raw_smp_processor_id(),
217 cpu_online_mask);
Andi Kleen6993fc52008-01-30 13:30:02 +0100218
Mike Traviscad0e452008-05-12 21:21:13 +0200219 if (next_cpu >= nr_cpu_ids)
Rusty Russell6b954822009-01-01 10:12:25 +1030220 next_cpu = cpumask_first(cpu_online_mask);
Andi Kleen6993fc52008-01-30 13:30:02 +0100221 watchdog_timer.expires += WATCHDOG_INTERVAL;
222 add_timer_on(&watchdog_timer, next_cpu);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800223 }
224 spin_unlock(&watchdog_lock);
225}
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700226static void clocksource_resume_watchdog(void)
227{
Thomas Gleixner8f894412007-05-15 01:41:32 -0700228 set_bit(0, &watchdog_resumed);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700229}
230
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800231static void clocksource_check_watchdog(struct clocksource *cs)
232{
233 struct clocksource *cse;
234 unsigned long flags;
235
236 spin_lock_irqsave(&watchdog_lock, flags);
237 if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) {
238 int started = !list_empty(&watchdog_list);
239
240 list_add(&cs->wd_list, &watchdog_list);
241 if (!started && watchdog) {
Magnus Damm8e196082009-04-21 12:24:00 -0700242 watchdog_last = watchdog->read(watchdog);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800243 watchdog_timer.expires = jiffies + WATCHDOG_INTERVAL;
Andi Kleen6993fc52008-01-30 13:30:02 +0100244 add_timer_on(&watchdog_timer,
Rusty Russell6b954822009-01-01 10:12:25 +1030245 cpumask_first(cpu_online_mask));
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800246 }
Thomas Gleixner948ac6d2007-03-25 14:42:51 +0200247 } else {
248 if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800249 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
250
251 if (!watchdog || cs->rating > watchdog->rating) {
252 if (watchdog)
253 del_timer(&watchdog_timer);
254 watchdog = cs;
Thomas Gleixner898a19d2008-03-25 09:01:51 +0100255 init_timer(&watchdog_timer);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800256 watchdog_timer.function = clocksource_watchdog;
257
258 /* Reset watchdog cycles */
259 list_for_each_entry(cse, &watchdog_list, wd_list)
260 cse->flags &= ~CLOCK_SOURCE_WATCHDOG;
261 /* Start if list is not empty */
262 if (!list_empty(&watchdog_list)) {
Magnus Damm8e196082009-04-21 12:24:00 -0700263 watchdog_last = watchdog->read(watchdog);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800264 watchdog_timer.expires =
265 jiffies + WATCHDOG_INTERVAL;
Andi Kleen6993fc52008-01-30 13:30:02 +0100266 add_timer_on(&watchdog_timer,
Rusty Russell6b954822009-01-01 10:12:25 +1030267 cpumask_first(cpu_online_mask));
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800268 }
269 }
270 }
271 spin_unlock_irqrestore(&watchdog_lock, flags);
272}
273#else
274static void clocksource_check_watchdog(struct clocksource *cs)
275{
276 if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
277 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
278}
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700279
280static inline void clocksource_resume_watchdog(void) { }
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800281#endif
282
john stultz734efb42006-06-26 00:25:05 -0700283/**
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700284 * clocksource_resume - resume the clocksource(s)
285 */
286void clocksource_resume(void)
287{
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700288 struct clocksource *cs;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700289 unsigned long flags;
290
291 spin_lock_irqsave(&clocksource_lock, flags);
292
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700293 list_for_each_entry(cs, &clocksource_list, list) {
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700294 if (cs->resume)
295 cs->resume();
296 }
297
298 clocksource_resume_watchdog();
299
300 spin_unlock_irqrestore(&clocksource_lock, flags);
301}
302
303/**
Jason Wessel7c3078b2008-02-15 14:55:54 -0600304 * clocksource_touch_watchdog - Update watchdog
305 *
306 * Update the watchdog after exception contexts such as kgdb so as not
307 * to incorrectly trip the watchdog.
308 *
309 */
310void clocksource_touch_watchdog(void)
311{
312 clocksource_resume_watchdog();
313}
314
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200315#ifdef CONFIG_GENERIC_TIME
Jason Wessel7c3078b2008-02-15 14:55:54 -0600316/**
john stultza2752542006-06-26 00:25:14 -0700317 * clocksource_get_next - Returns the selected clocksource
john stultz734efb42006-06-26 00:25:05 -0700318 *
319 */
john stultza2752542006-06-26 00:25:14 -0700320struct clocksource *clocksource_get_next(void)
john stultz734efb42006-06-26 00:25:05 -0700321{
322 unsigned long flags;
323
324 spin_lock_irqsave(&clocksource_lock, flags);
325 if (next_clocksource && finished_booting) {
326 curr_clocksource = next_clocksource;
327 next_clocksource = NULL;
328 }
329 spin_unlock_irqrestore(&clocksource_lock, flags);
330
331 return curr_clocksource;
332}
333
334/**
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200335 * clocksource_select - Select the best clocksource available
john stultz734efb42006-06-26 00:25:05 -0700336 *
337 * Private function. Must hold clocksource_lock when called.
338 *
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800339 * Select the clocksource with the best rating, or the clocksource,
340 * which is selected by userspace override.
john stultz734efb42006-06-26 00:25:05 -0700341 */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200342static void clocksource_select(void)
john stultz734efb42006-06-26 00:25:05 -0700343{
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200344 struct clocksource *best, *cs;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800345
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800346 if (list_empty(&clocksource_list))
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200347 return;
348 /* First clocksource on the list has the best rating. */
349 best = list_first_entry(&clocksource_list, struct clocksource, list);
350 /* Check for the override clocksource. */
351 list_for_each_entry(cs, &clocksource_list, list) {
352 if (strcmp(cs->name, override_name) != 0)
353 continue;
354 /*
355 * Check to make sure we don't switch to a non-highres
356 * capable clocksource if the tick code is in oneshot
357 * mode (highres or nohz)
358 */
359 if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) &&
360 tick_oneshot_mode_active()) {
361 /* Override clocksource cannot be used. */
362 printk(KERN_WARNING "Override clocksource %s is not "
363 "HRT compatible. Cannot switch while in "
364 "HRT/NOHZ mode\n", cs->name);
365 override_name[0] = 0;
366 } else
367 /* Override clocksource can be used. */
368 best = cs;
369 break;
370 }
371 if (curr_clocksource != best)
372 next_clocksource = best;
john stultz734efb42006-06-26 00:25:05 -0700373}
374
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200375#else /* CONFIG_GENERIC_TIME */
376
377static void clocksource_select(void) { }
378
379#endif
380
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800381/*
382 * Enqueue the clocksource sorted by rating
john stultz734efb42006-06-26 00:25:05 -0700383 */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200384static void clocksource_enqueue(struct clocksource *cs)
john stultz734efb42006-06-26 00:25:05 -0700385{
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200386 struct list_head *entry = &clocksource_list;
387 struct clocksource *tmp;
john stultz734efb42006-06-26 00:25:05 -0700388
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200389 list_for_each_entry(tmp, &clocksource_list, list)
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800390 /* Keep track of the place, where to insert */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200391 if (tmp->rating >= cs->rating)
392 entry = &tmp->list;
393 list_add(&cs->list, entry);
john stultz734efb42006-06-26 00:25:05 -0700394}
395
396/**
john stultza2752542006-06-26 00:25:14 -0700397 * clocksource_register - Used to install new clocksources
john stultz734efb42006-06-26 00:25:05 -0700398 * @t: clocksource to be registered
399 *
400 * Returns -EBUSY if registration fails, zero otherwise.
401 */
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200402int clocksource_register(struct clocksource *cs)
john stultz734efb42006-06-26 00:25:05 -0700403{
john stultz734efb42006-06-26 00:25:05 -0700404 unsigned long flags;
405
406 spin_lock_irqsave(&clocksource_lock, flags);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200407 clocksource_enqueue(cs);
408 clocksource_select();
john stultz734efb42006-06-26 00:25:05 -0700409 spin_unlock_irqrestore(&clocksource_lock, flags);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200410 clocksource_check_watchdog(cs);
411 return 0;
john stultz734efb42006-06-26 00:25:05 -0700412}
john stultza2752542006-06-26 00:25:14 -0700413EXPORT_SYMBOL(clocksource_register);
john stultz734efb42006-06-26 00:25:05 -0700414
415/**
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800416 * clocksource_change_rating - Change the rating of a registered clocksource
john stultz734efb42006-06-26 00:25:05 -0700417 *
john stultz734efb42006-06-26 00:25:05 -0700418 */
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800419void clocksource_change_rating(struct clocksource *cs, int rating)
john stultz734efb42006-06-26 00:25:05 -0700420{
421 unsigned long flags;
422
423 spin_lock_irqsave(&clocksource_lock, flags);
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800424 list_del(&cs->list);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800425 cs->rating = rating;
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800426 clocksource_enqueue(cs);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200427 clocksource_select();
john stultz734efb42006-06-26 00:25:05 -0700428 spin_unlock_irqrestore(&clocksource_lock, flags);
429}
430
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100431/**
432 * clocksource_unregister - remove a registered clocksource
433 */
434void clocksource_unregister(struct clocksource *cs)
435{
436 unsigned long flags;
437
438 spin_lock_irqsave(&clocksource_lock, flags);
439 list_del(&cs->list);
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200440 clocksource_select();
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100441 spin_unlock_irqrestore(&clocksource_lock, flags);
442}
443
Daniel Walker2b013702006-12-10 02:21:30 -0800444#ifdef CONFIG_SYSFS
john stultz734efb42006-06-26 00:25:05 -0700445/**
446 * sysfs_show_current_clocksources - sysfs interface for current clocksource
447 * @dev: unused
448 * @buf: char buffer to be filled with clocksource list
449 *
450 * Provides sysfs interface for listing current clocksource.
451 */
452static ssize_t
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200453sysfs_show_current_clocksources(struct sys_device *dev,
454 struct sysdev_attribute *attr, char *buf)
john stultz734efb42006-06-26 00:25:05 -0700455{
Miao Xie5e2cb102008-02-06 01:36:53 -0800456 ssize_t count = 0;
john stultz734efb42006-06-26 00:25:05 -0700457
458 spin_lock_irq(&clocksource_lock);
Miao Xie5e2cb102008-02-06 01:36:53 -0800459 count = snprintf(buf, PAGE_SIZE, "%s\n", curr_clocksource->name);
john stultz734efb42006-06-26 00:25:05 -0700460 spin_unlock_irq(&clocksource_lock);
461
Miao Xie5e2cb102008-02-06 01:36:53 -0800462 return count;
john stultz734efb42006-06-26 00:25:05 -0700463}
464
465/**
466 * sysfs_override_clocksource - interface for manually overriding clocksource
467 * @dev: unused
468 * @buf: name of override clocksource
469 * @count: length of buffer
470 *
471 * Takes input from sysfs interface for manually overriding the default
472 * clocksource selction.
473 */
474static ssize_t sysfs_override_clocksource(struct sys_device *dev,
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200475 struct sysdev_attribute *attr,
john stultz734efb42006-06-26 00:25:05 -0700476 const char *buf, size_t count)
477{
478 size_t ret = count;
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800479
john stultz734efb42006-06-26 00:25:05 -0700480 /* strings from sysfs write are not 0 terminated! */
481 if (count >= sizeof(override_name))
482 return -EINVAL;
483
484 /* strip of \n: */
485 if (buf[count-1] == '\n')
486 count--;
john stultz734efb42006-06-26 00:25:05 -0700487
488 spin_lock_irq(&clocksource_lock);
489
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800490 if (count > 0)
491 memcpy(override_name, buf, count);
john stultz734efb42006-06-26 00:25:05 -0700492 override_name[count] = 0;
Martin Schwidefskyf1b82742009-08-14 15:47:21 +0200493 clocksource_select();
john stultz734efb42006-06-26 00:25:05 -0700494
495 spin_unlock_irq(&clocksource_lock);
496
497 return ret;
498}
499
500/**
501 * sysfs_show_available_clocksources - sysfs interface for listing clocksource
502 * @dev: unused
503 * @buf: char buffer to be filled with clocksource list
504 *
505 * Provides sysfs interface for listing registered clocksources
506 */
507static ssize_t
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200508sysfs_show_available_clocksources(struct sys_device *dev,
509 struct sysdev_attribute *attr,
510 char *buf)
john stultz734efb42006-06-26 00:25:05 -0700511{
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700512 struct clocksource *src;
Miao Xie5e2cb102008-02-06 01:36:53 -0800513 ssize_t count = 0;
john stultz734efb42006-06-26 00:25:05 -0700514
515 spin_lock_irq(&clocksource_lock);
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700516 list_for_each_entry(src, &clocksource_list, list) {
Thomas Gleixnercd6d95d2009-06-12 11:29:27 +0200517 /*
518 * Don't show non-HRES clocksource if the tick code is
519 * in one shot mode (highres=on or nohz=on)
520 */
521 if (!tick_oneshot_mode_active() ||
522 (src->flags & CLOCK_SOURCE_VALID_FOR_HRES))
john stultz3f685352009-01-21 22:53:22 -0700523 count += snprintf(buf + count,
Miao Xie5e2cb102008-02-06 01:36:53 -0800524 max((ssize_t)PAGE_SIZE - count, (ssize_t)0),
525 "%s ", src->name);
john stultz734efb42006-06-26 00:25:05 -0700526 }
527 spin_unlock_irq(&clocksource_lock);
528
Miao Xie5e2cb102008-02-06 01:36:53 -0800529 count += snprintf(buf + count,
530 max((ssize_t)PAGE_SIZE - count, (ssize_t)0), "\n");
john stultz734efb42006-06-26 00:25:05 -0700531
Miao Xie5e2cb102008-02-06 01:36:53 -0800532 return count;
john stultz734efb42006-06-26 00:25:05 -0700533}
534
535/*
536 * Sysfs setup bits:
537 */
Heiko Carstens4f95f812008-05-03 14:23:14 +0200538static SYSDEV_ATTR(current_clocksource, 0644, sysfs_show_current_clocksources,
Daniel Walkerf5f1a242006-12-10 02:21:33 -0800539 sysfs_override_clocksource);
john stultz734efb42006-06-26 00:25:05 -0700540
Heiko Carstens4f95f812008-05-03 14:23:14 +0200541static SYSDEV_ATTR(available_clocksource, 0444,
Daniel Walkerf5f1a242006-12-10 02:21:33 -0800542 sysfs_show_available_clocksources, NULL);
john stultz734efb42006-06-26 00:25:05 -0700543
544static struct sysdev_class clocksource_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100545 .name = "clocksource",
john stultz734efb42006-06-26 00:25:05 -0700546};
547
548static struct sys_device device_clocksource = {
549 .id = 0,
550 .cls = &clocksource_sysclass,
551};
552
john stultzad596172006-06-26 00:25:06 -0700553static int __init init_clocksource_sysfs(void)
john stultz734efb42006-06-26 00:25:05 -0700554{
555 int error = sysdev_class_register(&clocksource_sysclass);
556
557 if (!error)
558 error = sysdev_register(&device_clocksource);
559 if (!error)
560 error = sysdev_create_file(
561 &device_clocksource,
562 &attr_current_clocksource);
563 if (!error)
564 error = sysdev_create_file(
565 &device_clocksource,
566 &attr_available_clocksource);
567 return error;
568}
569
570device_initcall(init_clocksource_sysfs);
Daniel Walker2b013702006-12-10 02:21:30 -0800571#endif /* CONFIG_SYSFS */
john stultz734efb42006-06-26 00:25:05 -0700572
573/**
574 * boot_override_clocksource - boot clock override
575 * @str: override name
576 *
577 * Takes a clocksource= boot argument and uses it
578 * as the clocksource override name.
579 */
580static int __init boot_override_clocksource(char* str)
581{
582 unsigned long flags;
583 spin_lock_irqsave(&clocksource_lock, flags);
584 if (str)
585 strlcpy(override_name, str, sizeof(override_name));
586 spin_unlock_irqrestore(&clocksource_lock, flags);
587 return 1;
588}
589
590__setup("clocksource=", boot_override_clocksource);
591
592/**
593 * boot_override_clock - Compatibility layer for deprecated boot option
594 * @str: override name
595 *
596 * DEPRECATED! Takes a clock= boot argument and uses it
597 * as the clocksource override name
598 */
599static int __init boot_override_clock(char* str)
600{
john stultz5d0cf412006-06-26 00:25:12 -0700601 if (!strcmp(str, "pmtmr")) {
602 printk("Warning: clock=pmtmr is deprecated. "
603 "Use clocksource=acpi_pm.\n");
604 return boot_override_clocksource("acpi_pm");
605 }
606 printk("Warning! clock= boot option is deprecated. "
607 "Use clocksource=xyz\n");
john stultz734efb42006-06-26 00:25:05 -0700608 return boot_override_clocksource(str);
609}
610
611__setup("clock=", boot_override_clock);