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 list_del(&cs
->wd_list
);
97 static void clocksource_watchdog(unsigned long data
)
99 struct clocksource
*cs
, *tmp
;
100 cycle_t csnow
, wdnow
;
101 int64_t wd_nsec
, cs_nsec
;
104 spin_lock(&watchdog_lock
);
106 resumed
= test_and_clear_bit(0, &watchdog_resumed
);
108 wdnow
= watchdog
->read();
109 wd_nsec
= cyc2ns(watchdog
, (wdnow
- watchdog_last
) & watchdog
->mask
);
110 watchdog_last
= wdnow
;
112 list_for_each_entry_safe(cs
, tmp
, &watchdog_list
, wd_list
) {
115 if (unlikely(resumed
)) {
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
;
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:
133 cs
->flags
|= CLOCK_SOURCE_WATCHDOG
;
136 cs_nsec
= cyc2ns(cs
, (csnow
- cs
->wd_last
) & cs
->mask
);
138 /* Check the delta. Might remove from the list ! */
139 clocksource_ratewd(cs
, cs_nsec
- wd_nsec
);
143 if (!list_empty(&watchdog_list
)) {
145 * Cycle through CPUs to check if the CPUs stay
146 * synchronized to each other.
148 int next_cpu
= cpumask_next(raw_smp_processor_id(),
151 if (next_cpu
>= nr_cpu_ids
)
152 next_cpu
= cpumask_first(cpu_online_mask
);
153 watchdog_timer
.expires
+= WATCHDOG_INTERVAL
;
154 add_timer_on(&watchdog_timer
, next_cpu
);
156 spin_unlock(&watchdog_lock
);
158 static void clocksource_resume_watchdog(void)
160 set_bit(0, &watchdog_resumed
);
163 static void clocksource_check_watchdog(struct clocksource
*cs
)
165 struct clocksource
*cse
;
168 spin_lock_irqsave(&watchdog_lock
, flags
);
169 if (cs
->flags
& CLOCK_SOURCE_MUST_VERIFY
) {
170 int started
= !list_empty(&watchdog_list
);
172 list_add(&cs
->wd_list
, &watchdog_list
);
173 if (!started
&& watchdog
) {
174 watchdog_last
= watchdog
->read();
175 watchdog_timer
.expires
= jiffies
+ WATCHDOG_INTERVAL
;
176 add_timer_on(&watchdog_timer
,
177 cpumask_first(cpu_online_mask
));
180 if (cs
->flags
& CLOCK_SOURCE_IS_CONTINUOUS
)
181 cs
->flags
|= CLOCK_SOURCE_VALID_FOR_HRES
;
183 if (!watchdog
|| cs
->rating
> watchdog
->rating
) {
185 del_timer(&watchdog_timer
);
187 init_timer(&watchdog_timer
);
188 watchdog_timer
.function
= clocksource_watchdog
;
190 /* Reset watchdog cycles */
191 list_for_each_entry(cse
, &watchdog_list
, wd_list
)
192 cse
->flags
&= ~CLOCK_SOURCE_WATCHDOG
;
193 /* Start if list is not empty */
194 if (!list_empty(&watchdog_list
)) {
195 watchdog_last
= watchdog
->read();
196 watchdog_timer
.expires
=
197 jiffies
+ WATCHDOG_INTERVAL
;
198 add_timer_on(&watchdog_timer
,
199 cpumask_first(cpu_online_mask
));
203 spin_unlock_irqrestore(&watchdog_lock
, flags
);
206 static void clocksource_check_watchdog(struct clocksource
*cs
)
208 if (cs
->flags
& CLOCK_SOURCE_IS_CONTINUOUS
)
209 cs
->flags
|= CLOCK_SOURCE_VALID_FOR_HRES
;
212 static inline void clocksource_resume_watchdog(void) { }
216 * clocksource_resume - resume the clocksource(s)
218 void clocksource_resume(void)
220 struct clocksource
*cs
;
223 spin_lock_irqsave(&clocksource_lock
, flags
);
225 list_for_each_entry(cs
, &clocksource_list
, list
) {
230 clocksource_resume_watchdog();
232 spin_unlock_irqrestore(&clocksource_lock
, flags
);
236 * clocksource_touch_watchdog - Update watchdog
238 * Update the watchdog after exception contexts such as kgdb so as not
239 * to incorrectly trip the watchdog.
242 void clocksource_touch_watchdog(void)
244 clocksource_resume_watchdog();
248 * clocksource_get_next - Returns the selected clocksource
251 struct clocksource
*clocksource_get_next(void)
255 spin_lock_irqsave(&clocksource_lock
, flags
);
256 if (next_clocksource
&& finished_booting
) {
257 curr_clocksource
= next_clocksource
;
258 next_clocksource
= NULL
;
260 spin_unlock_irqrestore(&clocksource_lock
, flags
);
262 return curr_clocksource
;
266 * select_clocksource - Selects the best registered clocksource.
268 * Private function. Must hold clocksource_lock when called.
270 * Select the clocksource with the best rating, or the clocksource,
271 * which is selected by userspace override.
273 static struct clocksource
*select_clocksource(void)
275 struct clocksource
*next
;
277 if (list_empty(&clocksource_list
))
280 if (clocksource_override
)
281 next
= clocksource_override
;
283 next
= list_entry(clocksource_list
.next
, struct clocksource
,
286 if (next
== curr_clocksource
)
293 * Enqueue the clocksource sorted by rating
295 static int clocksource_enqueue(struct clocksource
*c
)
297 struct list_head
*tmp
, *entry
= &clocksource_list
;
299 list_for_each(tmp
, &clocksource_list
) {
300 struct clocksource
*cs
;
302 cs
= list_entry(tmp
, struct clocksource
, list
);
305 /* Keep track of the place, where to insert */
306 if (cs
->rating
>= c
->rating
)
309 list_add(&c
->list
, entry
);
311 if (strlen(c
->name
) == strlen(override_name
) &&
312 !strcmp(c
->name
, override_name
))
313 clocksource_override
= c
;
319 * clocksource_register - Used to install new clocksources
320 * @t: clocksource to be registered
322 * Returns -EBUSY if registration fails, zero otherwise.
324 int clocksource_register(struct clocksource
*c
)
329 /* save mult_orig on registration */
330 c
->mult_orig
= c
->mult
;
332 spin_lock_irqsave(&clocksource_lock
, flags
);
333 ret
= clocksource_enqueue(c
);
335 next_clocksource
= select_clocksource();
336 spin_unlock_irqrestore(&clocksource_lock
, flags
);
338 clocksource_check_watchdog(c
);
341 EXPORT_SYMBOL(clocksource_register
);
344 * clocksource_change_rating - Change the rating of a registered clocksource
347 void clocksource_change_rating(struct clocksource
*cs
, int rating
)
351 spin_lock_irqsave(&clocksource_lock
, flags
);
354 clocksource_enqueue(cs
);
355 next_clocksource
= select_clocksource();
356 spin_unlock_irqrestore(&clocksource_lock
, flags
);
360 * clocksource_unregister - remove a registered clocksource
362 void clocksource_unregister(struct clocksource
*cs
)
366 spin_lock_irqsave(&clocksource_lock
, flags
);
368 if (clocksource_override
== cs
)
369 clocksource_override
= NULL
;
370 next_clocksource
= select_clocksource();
371 spin_unlock_irqrestore(&clocksource_lock
, flags
);
376 * sysfs_show_current_clocksources - sysfs interface for current clocksource
378 * @buf: char buffer to be filled with clocksource list
380 * Provides sysfs interface for listing current clocksource.
383 sysfs_show_current_clocksources(struct sys_device
*dev
,
384 struct sysdev_attribute
*attr
, char *buf
)
388 spin_lock_irq(&clocksource_lock
);
389 count
= snprintf(buf
, PAGE_SIZE
, "%s\n", curr_clocksource
->name
);
390 spin_unlock_irq(&clocksource_lock
);
396 * sysfs_override_clocksource - interface for manually overriding clocksource
398 * @buf: name of override clocksource
399 * @count: length of buffer
401 * Takes input from sysfs interface for manually overriding the default
402 * clocksource selction.
404 static ssize_t
sysfs_override_clocksource(struct sys_device
*dev
,
405 struct sysdev_attribute
*attr
,
406 const char *buf
, size_t count
)
408 struct clocksource
*ovr
= NULL
;
412 /* strings from sysfs write are not 0 terminated! */
413 if (count
>= sizeof(override_name
))
417 if (buf
[count
-1] == '\n')
420 spin_lock_irq(&clocksource_lock
);
423 memcpy(override_name
, buf
, count
);
424 override_name
[count
] = 0;
426 len
= strlen(override_name
);
428 struct clocksource
*cs
;
430 ovr
= clocksource_override
;
431 /* try to select it: */
432 list_for_each_entry(cs
, &clocksource_list
, list
) {
433 if (strlen(cs
->name
) == len
&&
434 !strcmp(cs
->name
, override_name
))
439 /* Reselect, when the override name has changed */
440 if (ovr
!= clocksource_override
) {
441 clocksource_override
= ovr
;
442 next_clocksource
= select_clocksource();
445 spin_unlock_irq(&clocksource_lock
);
451 * sysfs_show_available_clocksources - sysfs interface for listing clocksource
453 * @buf: char buffer to be filled with clocksource list
455 * Provides sysfs interface for listing registered clocksources
458 sysfs_show_available_clocksources(struct sys_device
*dev
,
459 struct sysdev_attribute
*attr
,
462 struct clocksource
*src
;
465 spin_lock_irq(&clocksource_lock
);
466 list_for_each_entry(src
, &clocksource_list
, list
) {
467 count
+= snprintf(buf
+ count
,
468 max((ssize_t
)PAGE_SIZE
- count
, (ssize_t
)0),
471 spin_unlock_irq(&clocksource_lock
);
473 count
+= snprintf(buf
+ count
,
474 max((ssize_t
)PAGE_SIZE
- count
, (ssize_t
)0), "\n");
482 static SYSDEV_ATTR(current_clocksource
, 0644, sysfs_show_current_clocksources
,
483 sysfs_override_clocksource
);
485 static SYSDEV_ATTR(available_clocksource
, 0444,
486 sysfs_show_available_clocksources
, NULL
);
488 static struct sysdev_class clocksource_sysclass
= {
489 .name
= "clocksource",
492 static struct sys_device device_clocksource
= {
494 .cls
= &clocksource_sysclass
,
497 static int __init
init_clocksource_sysfs(void)
499 int error
= sysdev_class_register(&clocksource_sysclass
);
502 error
= sysdev_register(&device_clocksource
);
504 error
= sysdev_create_file(
506 &attr_current_clocksource
);
508 error
= sysdev_create_file(
510 &attr_available_clocksource
);
514 device_initcall(init_clocksource_sysfs
);
515 #endif /* CONFIG_SYSFS */
518 * boot_override_clocksource - boot clock override
519 * @str: override name
521 * Takes a clocksource= boot argument and uses it
522 * as the clocksource override name.
524 static int __init
boot_override_clocksource(char* str
)
527 spin_lock_irqsave(&clocksource_lock
, flags
);
529 strlcpy(override_name
, str
, sizeof(override_name
));
530 spin_unlock_irqrestore(&clocksource_lock
, flags
);
534 __setup("clocksource=", boot_override_clocksource
);
537 * boot_override_clock - Compatibility layer for deprecated boot option
538 * @str: override name
540 * DEPRECATED! Takes a clock= boot argument and uses it
541 * as the clocksource override name
543 static int __init
boot_override_clock(char* str
)
545 if (!strcmp(str
, "pmtmr")) {
546 printk("Warning: clock=pmtmr is deprecated. "
547 "Use clocksource=acpi_pm.\n");
548 return boot_override_clocksource("acpi_pm");
550 printk("Warning! clock= boot option is deprecated. "
551 "Use clocksource=xyz\n");
552 return boot_override_clocksource(str
);
555 __setup("clock=", boot_override_clock
);