blob: f61402b1f2d0791e89078bdac94321a69bad4253 [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)) {
Andrew Morton3150e632008-03-19 17:01:08 -0700144 __mod_timer(&watchdog_timer,
145 watchdog_timer.expires + WATCHDOG_INTERVAL);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800146 }
147 spin_unlock(&watchdog_lock);
148}
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700149static void clocksource_resume_watchdog(void)
150{
Thomas Gleixner8f894412007-05-15 01:41:32 -0700151 set_bit(0, &watchdog_resumed);
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700152}
153
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800154static void clocksource_check_watchdog(struct clocksource *cs)
155{
156 struct clocksource *cse;
157 unsigned long flags;
158
159 spin_lock_irqsave(&watchdog_lock, flags);
160 if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) {
161 int started = !list_empty(&watchdog_list);
162
163 list_add(&cs->wd_list, &watchdog_list);
164 if (!started && watchdog) {
165 watchdog_last = watchdog->read();
166 watchdog_timer.expires = jiffies + WATCHDOG_INTERVAL;
Andrew Morton3150e632008-03-19 17:01:08 -0700167 add_timer(&watchdog_timer);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800168 }
Thomas Gleixner948ac6d2007-03-25 14:42:51 +0200169 } else {
170 if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800171 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
172
173 if (!watchdog || cs->rating > watchdog->rating) {
174 if (watchdog)
175 del_timer(&watchdog_timer);
176 watchdog = cs;
Thomas Gleixner898a19d2008-03-25 09:01:51 +0100177 init_timer(&watchdog_timer);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800178 watchdog_timer.function = clocksource_watchdog;
179
180 /* Reset watchdog cycles */
181 list_for_each_entry(cse, &watchdog_list, wd_list)
182 cse->flags &= ~CLOCK_SOURCE_WATCHDOG;
183 /* Start if list is not empty */
184 if (!list_empty(&watchdog_list)) {
185 watchdog_last = watchdog->read();
186 watchdog_timer.expires =
187 jiffies + WATCHDOG_INTERVAL;
Andrew Morton3150e632008-03-19 17:01:08 -0700188 add_timer(&watchdog_timer);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800189 }
190 }
191 }
192 spin_unlock_irqrestore(&watchdog_lock, flags);
193}
194#else
195static void clocksource_check_watchdog(struct clocksource *cs)
196{
197 if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS)
198 cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES;
199}
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700200
201static inline void clocksource_resume_watchdog(void) { }
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800202#endif
203
john stultz734efb42006-06-26 00:25:05 -0700204/**
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700205 * clocksource_resume - resume the clocksource(s)
206 */
207void clocksource_resume(void)
208{
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700209 struct clocksource *cs;
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700210 unsigned long flags;
211
212 spin_lock_irqsave(&clocksource_lock, flags);
213
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700214 list_for_each_entry(cs, &clocksource_list, list) {
Thomas Gleixnerb52f52a2007-05-09 02:35:15 -0700215 if (cs->resume)
216 cs->resume();
217 }
218
219 clocksource_resume_watchdog();
220
221 spin_unlock_irqrestore(&clocksource_lock, flags);
222}
223
224/**
Jason Wessel7c3078b2008-02-15 14:55:54 -0600225 * clocksource_touch_watchdog - Update watchdog
226 *
227 * Update the watchdog after exception contexts such as kgdb so as not
228 * to incorrectly trip the watchdog.
229 *
230 */
231void clocksource_touch_watchdog(void)
232{
233 clocksource_resume_watchdog();
234}
235
236/**
john stultza2752542006-06-26 00:25:14 -0700237 * clocksource_get_next - Returns the selected clocksource
john stultz734efb42006-06-26 00:25:05 -0700238 *
239 */
john stultza2752542006-06-26 00:25:14 -0700240struct clocksource *clocksource_get_next(void)
john stultz734efb42006-06-26 00:25:05 -0700241{
242 unsigned long flags;
243
244 spin_lock_irqsave(&clocksource_lock, flags);
245 if (next_clocksource && finished_booting) {
246 curr_clocksource = next_clocksource;
247 next_clocksource = NULL;
248 }
249 spin_unlock_irqrestore(&clocksource_lock, flags);
250
251 return curr_clocksource;
252}
253
254/**
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800255 * select_clocksource - Selects the best registered clocksource.
john stultz734efb42006-06-26 00:25:05 -0700256 *
257 * Private function. Must hold clocksource_lock when called.
258 *
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800259 * Select the clocksource with the best rating, or the clocksource,
260 * which is selected by userspace override.
john stultz734efb42006-06-26 00:25:05 -0700261 */
262static struct clocksource *select_clocksource(void)
263{
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800264 struct clocksource *next;
265
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800266 if (list_empty(&clocksource_list))
267 return NULL;
john stultz734efb42006-06-26 00:25:05 -0700268
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800269 if (clocksource_override)
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800270 next = clocksource_override;
271 else
272 next = list_entry(clocksource_list.next, struct clocksource,
273 list);
john stultz734efb42006-06-26 00:25:05 -0700274
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800275 if (next == curr_clocksource)
276 return NULL;
277
278 return next;
john stultz734efb42006-06-26 00:25:05 -0700279}
280
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800281/*
282 * Enqueue the clocksource sorted by rating
john stultz734efb42006-06-26 00:25:05 -0700283 */
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800284static int clocksource_enqueue(struct clocksource *c)
john stultz734efb42006-06-26 00:25:05 -0700285{
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800286 struct list_head *tmp, *entry = &clocksource_list;
john stultz734efb42006-06-26 00:25:05 -0700287
288 list_for_each(tmp, &clocksource_list) {
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800289 struct clocksource *cs;
john stultz734efb42006-06-26 00:25:05 -0700290
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800291 cs = list_entry(tmp, struct clocksource, list);
292 if (cs == c)
293 return -EBUSY;
294 /* Keep track of the place, where to insert */
295 if (cs->rating >= c->rating)
296 entry = tmp;
john stultz734efb42006-06-26 00:25:05 -0700297 }
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800298 list_add(&c->list, entry);
299
300 if (strlen(c->name) == strlen(override_name) &&
301 !strcmp(c->name, override_name))
302 clocksource_override = c;
john stultz734efb42006-06-26 00:25:05 -0700303
304 return 0;
305}
306
307/**
john stultza2752542006-06-26 00:25:14 -0700308 * clocksource_register - Used to install new clocksources
john stultz734efb42006-06-26 00:25:05 -0700309 * @t: clocksource to be registered
310 *
311 * Returns -EBUSY if registration fails, zero otherwise.
312 */
john stultza2752542006-06-26 00:25:14 -0700313int clocksource_register(struct clocksource *c)
john stultz734efb42006-06-26 00:25:05 -0700314{
john stultz734efb42006-06-26 00:25:05 -0700315 unsigned long flags;
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800316 int ret;
john stultz734efb42006-06-26 00:25:05 -0700317
318 spin_lock_irqsave(&clocksource_lock, flags);
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800319 ret = clocksource_enqueue(c);
320 if (!ret)
john stultz734efb42006-06-26 00:25:05 -0700321 next_clocksource = select_clocksource();
john stultz734efb42006-06-26 00:25:05 -0700322 spin_unlock_irqrestore(&clocksource_lock, flags);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800323 if (!ret)
324 clocksource_check_watchdog(c);
john stultz734efb42006-06-26 00:25:05 -0700325 return ret;
326}
john stultza2752542006-06-26 00:25:14 -0700327EXPORT_SYMBOL(clocksource_register);
john stultz734efb42006-06-26 00:25:05 -0700328
329/**
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800330 * clocksource_change_rating - Change the rating of a registered clocksource
john stultz734efb42006-06-26 00:25:05 -0700331 *
john stultz734efb42006-06-26 00:25:05 -0700332 */
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800333void clocksource_change_rating(struct clocksource *cs, int rating)
john stultz734efb42006-06-26 00:25:05 -0700334{
335 unsigned long flags;
336
337 spin_lock_irqsave(&clocksource_lock, flags);
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800338 list_del(&cs->list);
Thomas Gleixner5d8b34f2007-02-16 01:27:43 -0800339 cs->rating = rating;
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800340 clocksource_enqueue(cs);
john stultz734efb42006-06-26 00:25:05 -0700341 next_clocksource = select_clocksource();
342 spin_unlock_irqrestore(&clocksource_lock, flags);
343}
344
Thomas Gleixner4713e22c2008-01-30 13:30:02 +0100345/**
346 * clocksource_unregister - remove a registered clocksource
347 */
348void clocksource_unregister(struct clocksource *cs)
349{
350 unsigned long flags;
351
352 spin_lock_irqsave(&clocksource_lock, flags);
353 list_del(&cs->list);
354 if (clocksource_override == cs)
355 clocksource_override = NULL;
356 next_clocksource = select_clocksource();
357 spin_unlock_irqrestore(&clocksource_lock, flags);
358}
359
Daniel Walker2b013702006-12-10 02:21:30 -0800360#ifdef CONFIG_SYSFS
john stultz734efb42006-06-26 00:25:05 -0700361/**
362 * sysfs_show_current_clocksources - sysfs interface for current clocksource
363 * @dev: unused
364 * @buf: char buffer to be filled with clocksource list
365 *
366 * Provides sysfs interface for listing current clocksource.
367 */
368static ssize_t
369sysfs_show_current_clocksources(struct sys_device *dev, char *buf)
370{
Miao Xie5e2cb102008-02-06 01:36:53 -0800371 ssize_t count = 0;
john stultz734efb42006-06-26 00:25:05 -0700372
373 spin_lock_irq(&clocksource_lock);
Miao Xie5e2cb102008-02-06 01:36:53 -0800374 count = snprintf(buf, PAGE_SIZE, "%s\n", curr_clocksource->name);
john stultz734efb42006-06-26 00:25:05 -0700375 spin_unlock_irq(&clocksource_lock);
376
Miao Xie5e2cb102008-02-06 01:36:53 -0800377 return count;
john stultz734efb42006-06-26 00:25:05 -0700378}
379
380/**
381 * sysfs_override_clocksource - interface for manually overriding clocksource
382 * @dev: unused
383 * @buf: name of override clocksource
384 * @count: length of buffer
385 *
386 * Takes input from sysfs interface for manually overriding the default
387 * clocksource selction.
388 */
389static ssize_t sysfs_override_clocksource(struct sys_device *dev,
390 const char *buf, size_t count)
391{
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800392 struct clocksource *ovr = NULL;
john stultz734efb42006-06-26 00:25:05 -0700393 size_t ret = count;
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800394 int len;
395
john stultz734efb42006-06-26 00:25:05 -0700396 /* strings from sysfs write are not 0 terminated! */
397 if (count >= sizeof(override_name))
398 return -EINVAL;
399
400 /* strip of \n: */
401 if (buf[count-1] == '\n')
402 count--;
john stultz734efb42006-06-26 00:25:05 -0700403
404 spin_lock_irq(&clocksource_lock);
405
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800406 if (count > 0)
407 memcpy(override_name, buf, count);
john stultz734efb42006-06-26 00:25:05 -0700408 override_name[count] = 0;
409
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800410 len = strlen(override_name);
411 if (len) {
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700412 struct clocksource *cs;
413
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800414 ovr = clocksource_override;
415 /* try to select it: */
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700416 list_for_each_entry(cs, &clocksource_list, list) {
Thomas Gleixner92c7e002007-02-16 01:27:33 -0800417 if (strlen(cs->name) == len &&
418 !strcmp(cs->name, override_name))
419 ovr = cs;
420 }
421 }
422
423 /* Reselect, when the override name has changed */
424 if (ovr != clocksource_override) {
425 clocksource_override = ovr;
426 next_clocksource = select_clocksource();
427 }
john stultz734efb42006-06-26 00:25:05 -0700428
429 spin_unlock_irq(&clocksource_lock);
430
431 return ret;
432}
433
434/**
435 * sysfs_show_available_clocksources - sysfs interface for listing clocksource
436 * @dev: unused
437 * @buf: char buffer to be filled with clocksource list
438 *
439 * Provides sysfs interface for listing registered clocksources
440 */
441static ssize_t
442sysfs_show_available_clocksources(struct sys_device *dev, char *buf)
443{
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700444 struct clocksource *src;
Miao Xie5e2cb102008-02-06 01:36:53 -0800445 ssize_t count = 0;
john stultz734efb42006-06-26 00:25:05 -0700446
447 spin_lock_irq(&clocksource_lock);
Matthias Kaehlcke2e197582007-10-18 23:39:58 -0700448 list_for_each_entry(src, &clocksource_list, list) {
Miao Xie5e2cb102008-02-06 01:36:53 -0800449 count += snprintf(buf + count,
450 max((ssize_t)PAGE_SIZE - count, (ssize_t)0),
451 "%s ", src->name);
john stultz734efb42006-06-26 00:25:05 -0700452 }
453 spin_unlock_irq(&clocksource_lock);
454
Miao Xie5e2cb102008-02-06 01:36:53 -0800455 count += snprintf(buf + count,
456 max((ssize_t)PAGE_SIZE - count, (ssize_t)0), "\n");
john stultz734efb42006-06-26 00:25:05 -0700457
Miao Xie5e2cb102008-02-06 01:36:53 -0800458 return count;
john stultz734efb42006-06-26 00:25:05 -0700459}
460
461/*
462 * Sysfs setup bits:
463 */
464static SYSDEV_ATTR(current_clocksource, 0600, sysfs_show_current_clocksources,
Daniel Walkerf5f1a242006-12-10 02:21:33 -0800465 sysfs_override_clocksource);
john stultz734efb42006-06-26 00:25:05 -0700466
467static SYSDEV_ATTR(available_clocksource, 0600,
Daniel Walkerf5f1a242006-12-10 02:21:33 -0800468 sysfs_show_available_clocksources, NULL);
john stultz734efb42006-06-26 00:25:05 -0700469
470static struct sysdev_class clocksource_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100471 .name = "clocksource",
john stultz734efb42006-06-26 00:25:05 -0700472};
473
474static struct sys_device device_clocksource = {
475 .id = 0,
476 .cls = &clocksource_sysclass,
477};
478
john stultzad596172006-06-26 00:25:06 -0700479static int __init init_clocksource_sysfs(void)
john stultz734efb42006-06-26 00:25:05 -0700480{
481 int error = sysdev_class_register(&clocksource_sysclass);
482
483 if (!error)
484 error = sysdev_register(&device_clocksource);
485 if (!error)
486 error = sysdev_create_file(
487 &device_clocksource,
488 &attr_current_clocksource);
489 if (!error)
490 error = sysdev_create_file(
491 &device_clocksource,
492 &attr_available_clocksource);
493 return error;
494}
495
496device_initcall(init_clocksource_sysfs);
Daniel Walker2b013702006-12-10 02:21:30 -0800497#endif /* CONFIG_SYSFS */
john stultz734efb42006-06-26 00:25:05 -0700498
499/**
500 * boot_override_clocksource - boot clock override
501 * @str: override name
502 *
503 * Takes a clocksource= boot argument and uses it
504 * as the clocksource override name.
505 */
506static int __init boot_override_clocksource(char* str)
507{
508 unsigned long flags;
509 spin_lock_irqsave(&clocksource_lock, flags);
510 if (str)
511 strlcpy(override_name, str, sizeof(override_name));
512 spin_unlock_irqrestore(&clocksource_lock, flags);
513 return 1;
514}
515
516__setup("clocksource=", boot_override_clocksource);
517
518/**
519 * boot_override_clock - Compatibility layer for deprecated boot option
520 * @str: override name
521 *
522 * DEPRECATED! Takes a clock= boot argument and uses it
523 * as the clocksource override name
524 */
525static int __init boot_override_clock(char* str)
526{
john stultz5d0cf412006-06-26 00:25:12 -0700527 if (!strcmp(str, "pmtmr")) {
528 printk("Warning: clock=pmtmr is deprecated. "
529 "Use clocksource=acpi_pm.\n");
530 return boot_override_clocksource("acpi_pm");
531 }
532 printk("Warning! clock= boot option is deprecated. "
533 "Use clocksource=xyz\n");
john stultz734efb42006-06-26 00:25:05 -0700534 return boot_override_clocksource(str);
535}
536
537__setup("clock=", boot_override_clock);