2 * linux/kernel/time/clocksource.c
4 * This file contains the functions which manage clocksource drivers.
6 * Copyright (C) 2004, 2005 IBM, John Stultz (johnstul@us.ibm.com)
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.
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.
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.
23 * o Allow clocksource drivers to be unregistered
24 * o get rid of clocksource_jiffies extern
27 #include <linux/clocksource.h>
28 #include <linux/sysdev.h>
29 #include <linux/init.h>
30 #include <linux/module.h>
31 #include <linux/sched.h> /* for spin_unlock_irq() using preempt_count() m68k */
32 #include <linux/tick.h>
34 /* XXX - Would like a better way for initializing curr_clocksource */
35 extern struct clocksource clocksource_jiffies
;
37 /*[Clocksource internal variables]---------
39 * currently selected clocksource. Initialized to clocksource_jiffies.
41 * pending next selected clocksource.
43 * linked list with the registered clocksources
45 * protects manipulations to curr_clocksource and next_clocksource
46 * and the clocksource_list
48 * Name of the user-specified clocksource.
50 static struct clocksource
*curr_clocksource
= &clocksource_jiffies
;
51 static struct clocksource
*next_clocksource
;
52 static struct clocksource
*clocksource_override
;
53 static LIST_HEAD(clocksource_list
);
54 static DEFINE_SPINLOCK(clocksource_lock
);
55 static char override_name
[32];
56 static int finished_booting
;
58 /* clocksource_done_booting - Called near the end of core bootup
60 * 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.
64 static int __init
clocksource_done_booting(void)
69 fs_initcall(clocksource_done_booting
);
71 #ifdef CONFIG_CLOCKSOURCE_WATCHDOG
72 static LIST_HEAD(watchdog_list
);
73 static struct clocksource
*watchdog
;
74 static struct timer_list watchdog_timer
;
75 static DEFINE_SPINLOCK(watchdog_lock
);
76 static cycle_t watchdog_last
;
77 static unsigned long watchdog_resumed
;
80 * Interval: 0.5sec Threshold: 0.0625s
82 #define WATCHDOG_INTERVAL (HZ >> 1)
83 #define WATCHDOG_THRESHOLD (NSEC_PER_SEC >> 4)
85 static void clocksource_ratewd(struct clocksource
*cs
, int64_t delta
)
87 if (delta
> -WATCHDOG_THRESHOLD
&& delta
< WATCHDOG_THRESHOLD
)
90 printk(KERN_WARNING
"Clocksource %s unstable (delta = %Ld ns)\n",
92 cs
->flags
&= ~(CLOCK_SOURCE_VALID_FOR_HRES
| CLOCK_SOURCE_WATCHDOG
);
93 clocksource_change_rating(cs
, 0);
94 cs
->flags
&= ~CLOCK_SOURCE_WATCHDOG
;
95 list_del(&cs
->wd_list
);
98 static void clocksource_watchdog(unsigned long data
)
100 struct clocksource
*cs
, *tmp
;
101 cycle_t csnow
, wdnow
;
102 int64_t wd_nsec
, cs_nsec
;
105 spin_lock(&watchdog_lock
);
107 resumed
= test_and_clear_bit(0, &watchdog_resumed
);
109 wdnow
= watchdog
->read();
110 wd_nsec
= cyc2ns(watchdog
, (wdnow
- watchdog_last
) & watchdog
->mask
);
111 watchdog_last
= wdnow
;
113 list_for_each_entry_safe(cs
, tmp
, &watchdog_list
, wd_list
) {
116 if (unlikely(resumed
)) {
122 if (!(cs
->flags
& CLOCK_SOURCE_WATCHDOG
)) {
123 if ((cs
->flags
& CLOCK_SOURCE_IS_CONTINUOUS
) &&
124 (watchdog
->flags
& CLOCK_SOURCE_IS_CONTINUOUS
)) {
125 cs
->flags
|= CLOCK_SOURCE_VALID_FOR_HRES
;
127 * We just marked the clocksource as
128 * highres-capable, notify the rest of the
129 * system as well so that we transition
130 * into high-res mode:
134 cs
->flags
|= CLOCK_SOURCE_WATCHDOG
;
137 cs_nsec
= cyc2ns(cs
, (csnow
- cs
->wd_last
) & cs
->mask
);
139 /* Check the delta. Might remove from the list ! */
140 clocksource_ratewd(cs
, cs_nsec
- wd_nsec
);
144 if (!list_empty(&watchdog_list
)) {
145 __mod_timer(&watchdog_timer
,
146 watchdog_timer
.expires
+ WATCHDOG_INTERVAL
);
148 spin_unlock(&watchdog_lock
);
150 static void clocksource_resume_watchdog(void)
152 set_bit(0, &watchdog_resumed
);
155 static void clocksource_check_watchdog(struct clocksource
*cs
)
157 struct clocksource
*cse
;
160 spin_lock_irqsave(&watchdog_lock
, flags
);
161 if (cs
->flags
& CLOCK_SOURCE_MUST_VERIFY
) {
162 int started
= !list_empty(&watchdog_list
);
164 list_add(&cs
->wd_list
, &watchdog_list
);
165 if (!started
&& watchdog
) {
166 watchdog_last
= watchdog
->read();
167 watchdog_timer
.expires
= jiffies
+ WATCHDOG_INTERVAL
;
168 add_timer(&watchdog_timer
);
171 if (cs
->flags
& CLOCK_SOURCE_IS_CONTINUOUS
)
172 cs
->flags
|= CLOCK_SOURCE_VALID_FOR_HRES
;
174 if (!watchdog
|| cs
->rating
> watchdog
->rating
) {
176 del_timer(&watchdog_timer
);
178 init_timer(&watchdog_timer
);
179 watchdog_timer
.function
= clocksource_watchdog
;
181 /* Reset watchdog cycles */
182 list_for_each_entry(cse
, &watchdog_list
, wd_list
)
183 cse
->flags
&= ~CLOCK_SOURCE_WATCHDOG
;
184 /* Start if list is not empty */
185 if (!list_empty(&watchdog_list
)) {
186 watchdog_last
= watchdog
->read();
187 watchdog_timer
.expires
=
188 jiffies
+ WATCHDOG_INTERVAL
;
189 add_timer(&watchdog_timer
);
193 spin_unlock_irqrestore(&watchdog_lock
, flags
);
196 static void clocksource_check_watchdog(struct clocksource
*cs
)
198 if (cs
->flags
& CLOCK_SOURCE_IS_CONTINUOUS
)
199 cs
->flags
|= CLOCK_SOURCE_VALID_FOR_HRES
;
202 static inline void clocksource_resume_watchdog(void) { }
206 * clocksource_resume - resume the clocksource(s)
208 void clocksource_resume(void)
210 struct clocksource
*cs
;
213 spin_lock_irqsave(&clocksource_lock
, flags
);
215 list_for_each_entry(cs
, &clocksource_list
, list
) {
220 clocksource_resume_watchdog();
222 spin_unlock_irqrestore(&clocksource_lock
, flags
);
226 * clocksource_get_next - Returns the selected clocksource
229 struct clocksource
*clocksource_get_next(void)
233 spin_lock_irqsave(&clocksource_lock
, flags
);
234 if (next_clocksource
&& finished_booting
) {
235 curr_clocksource
= next_clocksource
;
236 next_clocksource
= NULL
;
238 spin_unlock_irqrestore(&clocksource_lock
, flags
);
240 return curr_clocksource
;
244 * select_clocksource - Selects the best registered clocksource.
246 * Private function. Must hold clocksource_lock when called.
248 * Select the clocksource with the best rating, or the clocksource,
249 * which is selected by userspace override.
251 static struct clocksource
*select_clocksource(void)
253 struct clocksource
*next
;
255 if (list_empty(&clocksource_list
))
258 if (clocksource_override
)
259 next
= clocksource_override
;
261 next
= list_entry(clocksource_list
.next
, struct clocksource
,
264 if (next
== curr_clocksource
)
271 * Enqueue the clocksource sorted by rating
273 static int clocksource_enqueue(struct clocksource
*c
)
275 struct list_head
*tmp
, *entry
= &clocksource_list
;
277 list_for_each(tmp
, &clocksource_list
) {
278 struct clocksource
*cs
;
280 cs
= list_entry(tmp
, struct clocksource
, list
);
283 /* Keep track of the place, where to insert */
284 if (cs
->rating
>= c
->rating
)
287 list_add(&c
->list
, entry
);
289 if (strlen(c
->name
) == strlen(override_name
) &&
290 !strcmp(c
->name
, override_name
))
291 clocksource_override
= c
;
297 * clocksource_register - Used to install new clocksources
298 * @t: clocksource to be registered
300 * Returns -EBUSY if registration fails, zero otherwise.
302 int clocksource_register(struct clocksource
*c
)
307 spin_lock_irqsave(&clocksource_lock
, flags
);
308 ret
= clocksource_enqueue(c
);
310 next_clocksource
= select_clocksource();
311 spin_unlock_irqrestore(&clocksource_lock
, flags
);
313 clocksource_check_watchdog(c
);
316 EXPORT_SYMBOL(clocksource_register
);
319 * clocksource_change_rating - Change the rating of a registered clocksource
322 void clocksource_change_rating(struct clocksource
*cs
, int rating
)
326 spin_lock_irqsave(&clocksource_lock
, flags
);
329 clocksource_enqueue(cs
);
330 next_clocksource
= select_clocksource();
331 spin_unlock_irqrestore(&clocksource_lock
, flags
);
336 * sysfs_show_current_clocksources - sysfs interface for current clocksource
338 * @buf: char buffer to be filled with clocksource list
340 * Provides sysfs interface for listing current clocksource.
343 sysfs_show_current_clocksources(struct sys_device
*dev
, char *buf
)
347 spin_lock_irq(&clocksource_lock
);
348 curr
+= sprintf(curr
, "%s ", curr_clocksource
->name
);
349 spin_unlock_irq(&clocksource_lock
);
351 curr
+= sprintf(curr
, "\n");
357 * sysfs_override_clocksource - interface for manually overriding clocksource
359 * @buf: name of override clocksource
360 * @count: length of buffer
362 * Takes input from sysfs interface for manually overriding the default
363 * clocksource selction.
365 static ssize_t
sysfs_override_clocksource(struct sys_device
*dev
,
366 const char *buf
, size_t count
)
368 struct clocksource
*ovr
= NULL
;
372 /* strings from sysfs write are not 0 terminated! */
373 if (count
>= sizeof(override_name
))
377 if (buf
[count
-1] == '\n')
380 spin_lock_irq(&clocksource_lock
);
383 memcpy(override_name
, buf
, count
);
384 override_name
[count
] = 0;
386 len
= strlen(override_name
);
388 struct clocksource
*cs
;
390 ovr
= clocksource_override
;
391 /* try to select it: */
392 list_for_each_entry(cs
, &clocksource_list
, list
) {
393 if (strlen(cs
->name
) == len
&&
394 !strcmp(cs
->name
, override_name
))
399 /* Reselect, when the override name has changed */
400 if (ovr
!= clocksource_override
) {
401 clocksource_override
= ovr
;
402 next_clocksource
= select_clocksource();
405 spin_unlock_irq(&clocksource_lock
);
411 * sysfs_show_available_clocksources - sysfs interface for listing clocksource
413 * @buf: char buffer to be filled with clocksource list
415 * Provides sysfs interface for listing registered clocksources
418 sysfs_show_available_clocksources(struct sys_device
*dev
, char *buf
)
420 struct clocksource
*src
;
423 spin_lock_irq(&clocksource_lock
);
424 list_for_each_entry(src
, &clocksource_list
, list
) {
425 curr
+= sprintf(curr
, "%s ", src
->name
);
427 spin_unlock_irq(&clocksource_lock
);
429 curr
+= sprintf(curr
, "\n");
437 static SYSDEV_ATTR(current_clocksource
, 0600, sysfs_show_current_clocksources
,
438 sysfs_override_clocksource
);
440 static SYSDEV_ATTR(available_clocksource
, 0600,
441 sysfs_show_available_clocksources
, NULL
);
443 static struct sysdev_class clocksource_sysclass
= {
444 set_kset_name("clocksource"),
447 static struct sys_device device_clocksource
= {
449 .cls
= &clocksource_sysclass
,
452 static int __init
init_clocksource_sysfs(void)
454 int error
= sysdev_class_register(&clocksource_sysclass
);
457 error
= sysdev_register(&device_clocksource
);
459 error
= sysdev_create_file(
461 &attr_current_clocksource
);
463 error
= sysdev_create_file(
465 &attr_available_clocksource
);
469 device_initcall(init_clocksource_sysfs
);
470 #endif /* CONFIG_SYSFS */
473 * boot_override_clocksource - boot clock override
474 * @str: override name
476 * Takes a clocksource= boot argument and uses it
477 * as the clocksource override name.
479 static int __init
boot_override_clocksource(char* str
)
482 spin_lock_irqsave(&clocksource_lock
, flags
);
484 strlcpy(override_name
, str
, sizeof(override_name
));
485 spin_unlock_irqrestore(&clocksource_lock
, flags
);
489 __setup("clocksource=", boot_override_clocksource
);
492 * boot_override_clock - Compatibility layer for deprecated boot option
493 * @str: override name
495 * DEPRECATED! Takes a clock= boot argument and uses it
496 * as the clocksource override name
498 static int __init
boot_override_clock(char* str
)
500 if (!strcmp(str
, "pmtmr")) {
501 printk("Warning: clock=pmtmr is deprecated. "
502 "Use clocksource=acpi_pm.\n");
503 return boot_override_clocksource("acpi_pm");
505 printk("Warning! clock= boot option is deprecated. "
506 "Use clocksource=xyz\n");
507 return boot_override_clocksource(str
);
510 __setup("clock=", boot_override_clock
);