blob: 60ceabd53f2ead02e3c04045efc72aa1eac58ba5 [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
24 * o get rid of clocksource_jiffies extern
25 */
26
27#include <linux/clocksource.h>
28#include <linux/sysdev.h>
29#include <linux/init.h>
30#include <linux/module.h>
Mathieu Desnoyersdc29a362007-02-10 01:43:43 -080031#include <linux/sched.h> /* for spin_unlock_irq() using preempt_count() m68k */
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080032#include <linux/tick.h>
john stultz734efb42006-06-26 00:25:05 -070033
34/* XXX - Would like a better way for initializing curr_clocksource */
35extern struct clocksource clocksource_jiffies;
36
37/*[Clocksource internal variables]---------
38 * curr_clocksource:
39 * currently selected clocksource. Initialized to clocksource_jiffies.
40 * next_clocksource:
41 * pending next selected clocksource.
42 * clocksource_list:
43 * linked list with the registered clocksources
44 * clocksource_lock:
45 * protects manipulations to curr_clocksource and next_clocksource
46 * and the clocksource_list
47 * override_name:
48 * Name of the user-specified clocksource.
49 */
50static struct clocksource *curr_clocksource = &clocksource_jiffies;
51static struct clocksource *next_clocksource;
Thomas Gleixner92c7e002007-02-16 01:27:33 -080052static struct clocksource *clocksource_override;
john stultz734efb42006-06-26 00:25:05 -070053static LIST_HEAD(clocksource_list);
54static DEFINE_SPINLOCK(clocksource_lock);
55static char override_name[32];
56static int finished_booting;
57
john stultz6bb74df2007-03-05 00:30:50 -080058/* clocksource_done_booting - Called near the end of core bootup
john stultz734efb42006-06-26 00:25:05 -070059 *
john stultz6bb74df2007-03-05 00:30:50 -080060 * Hack to avoid lots of clocksource churn at boot time.
61 * We use fs_initcall because we want this to start before
62 * device_initcall but after subsys_initcall.
john stultz734efb42006-06-26 00:25:05 -070063 */
john stultzad596172006-06-26 00:25:06 -070064static int __init clocksource_done_booting(void)
john stultz734efb42006-06-26 00:25:05 -070065{
66 finished_booting = 1;
67 return 0;
68}
john stultz6bb74df2007-03-05 00:30:50 -080069fs_initcall(clocksource_done_booting);
john stultz734efb42006-06-26 00:25:05 -070070
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080071#ifdef CONFIG_CLOCKSOURCE_WATCHDOG
72static LIST_HEAD(watchdog_list);
73static struct clocksource *watchdog;
74static struct timer_list watchdog_timer;
75static DEFINE_SPINLOCK(watchdog_lock);
76static cycle_t watchdog_last;
Thomas Gleixner8f894412007-05-15 01:41:32 -070077static unsigned long watchdog_resumed;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -070078
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080079/*
Daniel Walker35c35d12007-05-09 02:33:40 -070080 * Interval: 0.5sec Threshold: 0.0625s
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080081 */
82#define WATCHDOG_INTERVAL (HZ >> 1)
Daniel Walker35c35d12007-05-09 02:33:40 -070083#define WATCHDOG_THRESHOLD (NSEC_PER_SEC >> 4)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080084
85static void clocksource_ratewd(struct clocksource *cs, int64_t delta)
86{
Daniel Walker35c35d12007-05-09 02:33:40 -070087 if (delta > -WATCHDOG_THRESHOLD && delta < WATCHDOG_THRESHOLD)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080088 return;
89
90 printk(KERN_WARNING "Clocksource %s unstable (delta = %Ld ns)\n",
91 cs->name, delta);
92 cs->flags &= ~(CLOCK_SOURCE_VALID_FOR_HRES | CLOCK_SOURCE_WATCHDOG);
93 clocksource_change_rating(cs, 0);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -080094 list_del(&cs->wd_list);
95}
96
97static void clocksource_watchdog(unsigned long data)
98{
99 struct clocksource *cs, *tmp;
100 cycle_t csnow, wdnow;
101 int64_t wd_nsec, cs_nsec;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700102 int resumed;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800103
104 spin_lock(&watchdog_lock);
105
Thomas Gleixner8f894412007-05-15 01:41:32 -0700106 resumed = test_and_clear_bit(0, &watchdog_resumed);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700107
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800108 wdnow = watchdog->read();
109 wd_nsec = cyc2ns(watchdog, (wdnow - watchdog_last) & watchdog->mask);
110 watchdog_last = wdnow;
111
112 list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list) {
113 csnow = cs->read();
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700114
115 if (unlikely(resumed)) {
116 cs->wd_last = csnow;
117 continue;
118 }
119
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800120 /* Initialized ? */
121 if (!(cs->flags & CLOCK_SOURCE_WATCHDOG)) {
122 if ((cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) &&
123 (watchdog->flags & CLOCK_SOURCE_IS_CONTINUOUS)) {
124 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800125 /*
126 * We just marked the clocksource as
127 * highres-capable, notify the rest of the
128 * system as well so that we transition
129 * into high-res mode:
130 */
131 tick_clock_notify();
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800132 }
133 cs->flags |= CLOCK_SOURCE_WATCHDOG;
134 cs->wd_last = csnow;
135 } else {
136 cs_nsec = cyc2ns(cs, (csnow - cs->wd_last) & cs->mask);
137 cs->wd_last = csnow;
138 /* Check the delta. Might remove from the list ! */
139 clocksource_ratewd(cs, cs_nsec - wd_nsec);
140 }
141 }
142
143 if (!list_empty(&watchdog_list)) {
Andi Kleen6993fc52008-01-30 13:30:02 +0100144 /*
145 * Cycle through CPUs to check if the CPUs stay
146 * synchronized to each other.
147 */
Mike Traviscad0e452008-05-12 21:21:13 +0200148 int next_cpu = next_cpu_nr(raw_smp_processor_id(), cpu_online_map);
Andi Kleen6993fc52008-01-30 13:30:02 +0100149
Mike Traviscad0e452008-05-12 21:21:13 +0200150 if (next_cpu >= nr_cpu_ids)
Andi Kleen6993fc52008-01-30 13:30:02 +0100151 next_cpu = first_cpu(cpu_online_map);
152 watchdog_timer.expires += WATCHDOG_INTERVAL;
153 add_timer_on(&watchdog_timer, next_cpu);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800154 }
155 spin_unlock(&watchdog_lock);
156}
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700157static void clocksource_resume_watchdog(void)
158{
Thomas Gleixner8f894412007-05-15 01:41:32 -0700159 set_bit(0, &watchdog_resumed);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700160}
161
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800162static void clocksource_check_watchdog(struct clocksource *cs)
163{
164 struct clocksource *cse;
165 unsigned long flags;
166
167 spin_lock_irqsave(&watchdog_lock, flags);
168 if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) {
169 int started = !list_empty(&watchdog_list);
170
171 list_add(&cs->wd_list, &watchdog_list);
172 if (!started && watchdog) {
173 watchdog_last = watchdog->read();
174 watchdog_timer.expires = jiffies + WATCHDOG_INTERVAL;
Andi Kleen6993fc52008-01-30 13:30:02 +0100175 add_timer_on(&watchdog_timer,
176 first_cpu(cpu_online_map));
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800177 }
Thomas Gleixner948ac6d2007-03-25 14:42:51 +0200178 } else {
179 if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800180 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
181
182 if (!watchdog || cs->rating > watchdog->rating) {
183 if (watchdog)
184 del_timer(&watchdog_timer);
185 watchdog = cs;
Thomas Gleixner898a19d2008-03-25 09:01:51 +0100186 init_timer(&watchdog_timer);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800187 watchdog_timer.function = clocksource_watchdog;
188
189 /* Reset watchdog cycles */
190 list_for_each_entry(cse, &watchdog_list, wd_list)
191 cse->flags &= ~CLOCK_SOURCE_WATCHDOG;
192 /* Start if list is not empty */
193 if (!list_empty(&watchdog_list)) {
194 watchdog_last = watchdog->read();
195 watchdog_timer.expires =
196 jiffies + WATCHDOG_INTERVAL;
Andi Kleen6993fc52008-01-30 13:30:02 +0100197 add_timer_on(&watchdog_timer,
198 first_cpu(cpu_online_map));
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800199 }
200 }
201 }
202 spin_unlock_irqrestore(&watchdog_lock, flags);
203}
204#else
205static void clocksource_check_watchdog(struct clocksource *cs)
206{
207 if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
208 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
209}
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700210
211static inline void clocksource_resume_watchdog(void) { }
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800212#endif
213
john stultz734efb42006-06-26 00:25:05 -0700214/**
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700215 * clocksource_resume - resume the clocksource(s)
216 */
217void clocksource_resume(void)
218{
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700219 struct clocksource *cs;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700220 unsigned long flags;
221
222 spin_lock_irqsave(&clocksource_lock, flags);
223
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700224 list_for_each_entry(cs, &clocksource_list, list) {
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700225 if (cs->resume)
226 cs->resume();
227 }
228
229 clocksource_resume_watchdog();
230
231 spin_unlock_irqrestore(&clocksource_lock, flags);
232}
233
234/**
Jason Wessel7c3078b2008-02-15 14:55:54 -0600235 * clocksource_touch_watchdog - Update watchdog
236 *
237 * Update the watchdog after exception contexts such as kgdb so as not
238 * to incorrectly trip the watchdog.
239 *
240 */
241void clocksource_touch_watchdog(void)
242{
243 clocksource_resume_watchdog();
244}
245
246/**
john stultza2752542006-06-26 00:25:14 -0700247 * clocksource_get_next - Returns the selected clocksource
john stultz734efb42006-06-26 00:25:05 -0700248 *
249 */
john stultza2752542006-06-26 00:25:14 -0700250struct clocksource *clocksource_get_next(void)
john stultz734efb42006-06-26 00:25:05 -0700251{
252 unsigned long flags;
253
254 spin_lock_irqsave(&clocksource_lock, flags);
255 if (next_clocksource && finished_booting) {
256 curr_clocksource = next_clocksource;
257 next_clocksource = NULL;
258 }
259 spin_unlock_irqrestore(&clocksource_lock, flags);
260
261 return curr_clocksource;
262}
263
264/**
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800265 * select_clocksource - Selects the best registered clocksource.
john stultz734efb42006-06-26 00:25:05 -0700266 *
267 * Private function. Must hold clocksource_lock when called.
268 *
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800269 * Select the clocksource with the best rating, or the clocksource,
270 * which is selected by userspace override.
john stultz734efb42006-06-26 00:25:05 -0700271 */
272static struct clocksource *select_clocksource(void)
273{
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800274 struct clocksource *next;
275
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800276 if (list_empty(&clocksource_list))
277 return NULL;
john stultz734efb42006-06-26 00:25:05 -0700278
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800279 if (clocksource_override)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800280 next = clocksource_override;
281 else
282 next = list_entry(clocksource_list.next, struct clocksource,
283 list);
john stultz734efb42006-06-26 00:25:05 -0700284
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800285 if (next == curr_clocksource)
286 return NULL;
287
288 return next;
john stultz734efb42006-06-26 00:25:05 -0700289}
290
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800291/*
292 * Enqueue the clocksource sorted by rating
john stultz734efb42006-06-26 00:25:05 -0700293 */
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800294static int clocksource_enqueue(struct clocksource *c)
john stultz734efb42006-06-26 00:25:05 -0700295{
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800296 struct list_head *tmp, *entry = &clocksource_list;
john stultz734efb42006-06-26 00:25:05 -0700297
298 list_for_each(tmp, &clocksource_list) {
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800299 struct clocksource *cs;
john stultz734efb42006-06-26 00:25:05 -0700300
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800301 cs = list_entry(tmp, struct clocksource, list);
302 if (cs == c)
303 return -EBUSY;
304 /* Keep track of the place, where to insert */
305 if (cs->rating >= c->rating)
306 entry = tmp;
john stultz734efb42006-06-26 00:25:05 -0700307 }
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800308 list_add(&c->list, entry);
309
310 if (strlen(c->name) == strlen(override_name) &&
311 !strcmp(c->name, override_name))
312 clocksource_override = c;
john stultz734efb42006-06-26 00:25:05 -0700313
314 return 0;
315}
316
317/**
john stultza2752542006-06-26 00:25:14 -0700318 * clocksource_register - Used to install new clocksources
john stultz734efb42006-06-26 00:25:05 -0700319 * @t: clocksource to be registered
320 *
321 * Returns -EBUSY if registration fails, zero otherwise.
322 */
john stultza2752542006-06-26 00:25:14 -0700323int clocksource_register(struct clocksource *c)
john stultz734efb42006-06-26 00:25:05 -0700324{
john stultz734efb42006-06-26 00:25:05 -0700325 unsigned long flags;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800326 int ret;
john stultz734efb42006-06-26 00:25:05 -0700327
328 spin_lock_irqsave(&clocksource_lock, flags);
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800329 ret = clocksource_enqueue(c);
330 if (!ret)
john stultz734efb42006-06-26 00:25:05 -0700331 next_clocksource = select_clocksource();
john stultz734efb42006-06-26 00:25:05 -0700332 spin_unlock_irqrestore(&clocksource_lock, flags);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800333 if (!ret)
334 clocksource_check_watchdog(c);
john stultz734efb42006-06-26 00:25:05 -0700335 return ret;
336}
john stultza2752542006-06-26 00:25:14 -0700337EXPORT_SYMBOL(clocksource_register);
john stultz734efb42006-06-26 00:25:05 -0700338
339/**
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800340 * clocksource_change_rating - Change the rating of a registered clocksource
john stultz734efb42006-06-26 00:25:05 -0700341 *
john stultz734efb42006-06-26 00:25:05 -0700342 */
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800343void clocksource_change_rating(struct clocksource *cs, int rating)
john stultz734efb42006-06-26 00:25:05 -0700344{
345 unsigned long flags;
346
347 spin_lock_irqsave(&clocksource_lock, flags);
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800348 list_del(&cs->list);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800349 cs->rating = rating;
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800350 clocksource_enqueue(cs);
john stultz734efb42006-06-26 00:25:05 -0700351 next_clocksource = select_clocksource();
352 spin_unlock_irqrestore(&clocksource_lock, flags);
353}
354
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100355/**
356 * clocksource_unregister - remove a registered clocksource
357 */
358void clocksource_unregister(struct clocksource *cs)
359{
360 unsigned long flags;
361
362 spin_lock_irqsave(&clocksource_lock, flags);
363 list_del(&cs->list);
364 if (clocksource_override == cs)
365 clocksource_override = NULL;
366 next_clocksource = select_clocksource();
367 spin_unlock_irqrestore(&clocksource_lock, flags);
368}
369
Daniel Walker2b013702006-12-10 02:21:30 -0800370#ifdef CONFIG_SYSFS
john stultz734efb42006-06-26 00:25:05 -0700371/**
372 * sysfs_show_current_clocksources - sysfs interface for current clocksource
373 * @dev: unused
374 * @buf: char buffer to be filled with clocksource list
375 *
376 * Provides sysfs interface for listing current clocksource.
377 */
378static ssize_t
379sysfs_show_current_clocksources(struct sys_device *dev, char *buf)
380{
Miao Xie5e2cb102008-02-06 01:36:53 -0800381 ssize_t count = 0;
john stultz734efb42006-06-26 00:25:05 -0700382
383 spin_lock_irq(&clocksource_lock);
Miao Xie5e2cb102008-02-06 01:36:53 -0800384 count = snprintf(buf, PAGE_SIZE, "%s\n", curr_clocksource->name);
john stultz734efb42006-06-26 00:25:05 -0700385 spin_unlock_irq(&clocksource_lock);
386
Miao Xie5e2cb102008-02-06 01:36:53 -0800387 return count;
john stultz734efb42006-06-26 00:25:05 -0700388}
389
390/**
391 * sysfs_override_clocksource - interface for manually overriding clocksource
392 * @dev: unused
393 * @buf: name of override clocksource
394 * @count: length of buffer
395 *
396 * Takes input from sysfs interface for manually overriding the default
397 * clocksource selction.
398 */
399static ssize_t sysfs_override_clocksource(struct sys_device *dev,
400 const char *buf, size_t count)
401{
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800402 struct clocksource *ovr = NULL;
john stultz734efb42006-06-26 00:25:05 -0700403 size_t ret = count;
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800404 int len;
405
john stultz734efb42006-06-26 00:25:05 -0700406 /* strings from sysfs write are not 0 terminated! */
407 if (count >= sizeof(override_name))
408 return -EINVAL;
409
410 /* strip of \n: */
411 if (buf[count-1] == '\n')
412 count--;
john stultz734efb42006-06-26 00:25:05 -0700413
414 spin_lock_irq(&clocksource_lock);
415
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800416 if (count > 0)
417 memcpy(override_name, buf, count);
john stultz734efb42006-06-26 00:25:05 -0700418 override_name[count] = 0;
419
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800420 len = strlen(override_name);
421 if (len) {
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700422 struct clocksource *cs;
423
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800424 ovr = clocksource_override;
425 /* try to select it: */
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700426 list_for_each_entry(cs, &clocksource_list, list) {
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800427 if (strlen(cs->name) == len &&
428 !strcmp(cs->name, override_name))
429 ovr = cs;
430 }
431 }
432
433 /* Reselect, when the override name has changed */
434 if (ovr != clocksource_override) {
435 clocksource_override = ovr;
436 next_clocksource = select_clocksource();
437 }
john stultz734efb42006-06-26 00:25:05 -0700438
439 spin_unlock_irq(&clocksource_lock);
440
441 return ret;
442}
443
444/**
445 * sysfs_show_available_clocksources - sysfs interface for listing clocksource
446 * @dev: unused
447 * @buf: char buffer to be filled with clocksource list
448 *
449 * Provides sysfs interface for listing registered clocksources
450 */
451static ssize_t
452sysfs_show_available_clocksources(struct sys_device *dev, char *buf)
453{
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700454 struct clocksource *src;
Miao Xie5e2cb102008-02-06 01:36:53 -0800455 ssize_t count = 0;
john stultz734efb42006-06-26 00:25:05 -0700456
457 spin_lock_irq(&clocksource_lock);
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700458 list_for_each_entry(src, &clocksource_list, list) {
Miao Xie5e2cb102008-02-06 01:36:53 -0800459 count += snprintf(buf + count,
460 max((ssize_t)PAGE_SIZE - count, (ssize_t)0),
461 "%s ", src->name);
john stultz734efb42006-06-26 00:25:05 -0700462 }
463 spin_unlock_irq(&clocksource_lock);
464
Miao Xie5e2cb102008-02-06 01:36:53 -0800465 count += snprintf(buf + count,
466 max((ssize_t)PAGE_SIZE - count, (ssize_t)0), "\n");
john stultz734efb42006-06-26 00:25:05 -0700467
Miao Xie5e2cb102008-02-06 01:36:53 -0800468 return count;
john stultz734efb42006-06-26 00:25:05 -0700469}
470
471/*
472 * Sysfs setup bits:
473 */
Heiko Carstens4f95f812008-05-03 14:23:14 +0200474static SYSDEV_ATTR(current_clocksource, 0644, sysfs_show_current_clocksources,
Daniel Walkerf5f1a242006-12-10 02:21:33 -0800475 sysfs_override_clocksource);
john stultz734efb42006-06-26 00:25:05 -0700476
Heiko Carstens4f95f812008-05-03 14:23:14 +0200477static SYSDEV_ATTR(available_clocksource, 0444,
Daniel Walkerf5f1a242006-12-10 02:21:33 -0800478 sysfs_show_available_clocksources, NULL);
john stultz734efb42006-06-26 00:25:05 -0700479
480static struct sysdev_class clocksource_sysclass = {
Kay Sieversaf5ca3f42007-12-20 02:09:39 +0100481 .name = "clocksource",
john stultz734efb42006-06-26 00:25:05 -0700482};
483
484static struct sys_device device_clocksource = {
485 .id = 0,
486 .cls = &clocksource_sysclass,
487};
488
john stultzad596172006-06-26 00:25:06 -0700489static int __init init_clocksource_sysfs(void)
john stultz734efb42006-06-26 00:25:05 -0700490{
491 int error = sysdev_class_register(&clocksource_sysclass);
492
493 if (!error)
494 error = sysdev_register(&device_clocksource);
495 if (!error)
496 error = sysdev_create_file(
497 &device_clocksource,
498 &attr_current_clocksource);
499 if (!error)
500 error = sysdev_create_file(
501 &device_clocksource,
502 &attr_available_clocksource);
503 return error;
504}
505
506device_initcall(init_clocksource_sysfs);
Daniel Walker2b013702006-12-10 02:21:30 -0800507#endif /* CONFIG_SYSFS */
john stultz734efb42006-06-26 00:25:05 -0700508
509/**
510 * boot_override_clocksource - boot clock override
511 * @str: override name
512 *
513 * Takes a clocksource= boot argument and uses it
514 * as the clocksource override name.
515 */
516static int __init boot_override_clocksource(char* str)
517{
518 unsigned long flags;
519 spin_lock_irqsave(&clocksource_lock, flags);
520 if (str)
521 strlcpy(override_name, str, sizeof(override_name));
522 spin_unlock_irqrestore(&clocksource_lock, flags);
523 return 1;
524}
525
526__setup("clocksource=", boot_override_clocksource);
527
528/**
529 * boot_override_clock - Compatibility layer for deprecated boot option
530 * @str: override name
531 *
532 * DEPRECATED! Takes a clock= boot argument and uses it
533 * as the clocksource override name
534 */
535static int __init boot_override_clock(char* str)
536{
john stultz5d0cf412006-06-26 00:25:12 -0700537 if (!strcmp(str, "pmtmr")) {
538 printk("Warning: clock=pmtmr is deprecated. "
539 "Use clocksource=acpi_pm.\n");
540 return boot_override_clocksource("acpi_pm");
541 }
542 printk("Warning! clock= boot option is deprecated. "
543 "Use clocksource=xyz\n");
john stultz734efb42006-06-26 00:25:05 -0700544 return boot_override_clocksource(str);
545}
546
547__setup("clock=", boot_override_clock);