john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 1 | /* |
| 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 stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 24 | */ |
| 25 | |
| 26 | #include <linux/clocksource.h> |
| 27 | #include <linux/sysdev.h> |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/module.h> |
Mathieu Desnoyers | dc29a36 | 2007-02-10 01:43:43 -0800 | [diff] [blame] | 30 | #include <linux/sched.h> /* for spin_unlock_irq() using preempt_count() m68k */ |
Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 31 | #include <linux/tick.h> |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 32 | |
Patrick Ohly | a038a35 | 2009-02-12 05:03:34 +0000 | [diff] [blame] | 33 | void 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 | } |
| 41 | EXPORT_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 | */ |
| 54 | static 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 | |
| 74 | u64 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 | } |
| 85 | EXPORT_SYMBOL(timecounter_read); |
| 86 | |
| 87 | u64 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 | } |
| 107 | EXPORT_SYMBOL(timecounter_cyc2time); |
| 108 | |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 109 | /*[Clocksource internal variables]--------- |
| 110 | * curr_clocksource: |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 111 | * currently selected clocksource. |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 112 | * 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 Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 122 | static struct clocksource *curr_clocksource; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 123 | static struct clocksource *next_clocksource; |
| 124 | static LIST_HEAD(clocksource_list); |
| 125 | static DEFINE_SPINLOCK(clocksource_lock); |
| 126 | static char override_name[32]; |
| 127 | static int finished_booting; |
| 128 | |
john stultz | 6bb74df | 2007-03-05 00:30:50 -0800 | [diff] [blame] | 129 | /* clocksource_done_booting - Called near the end of core bootup |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 130 | * |
john stultz | 6bb74df | 2007-03-05 00:30:50 -0800 | [diff] [blame] | 131 | * 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 stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 134 | */ |
john stultz | ad59617 | 2006-06-26 00:25:06 -0700 | [diff] [blame] | 135 | static int __init clocksource_done_booting(void) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 136 | { |
| 137 | finished_booting = 1; |
| 138 | return 0; |
| 139 | } |
john stultz | 6bb74df | 2007-03-05 00:30:50 -0800 | [diff] [blame] | 140 | fs_initcall(clocksource_done_booting); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 141 | |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 142 | #ifdef CONFIG_CLOCKSOURCE_WATCHDOG |
| 143 | static LIST_HEAD(watchdog_list); |
| 144 | static struct clocksource *watchdog; |
| 145 | static struct timer_list watchdog_timer; |
| 146 | static DEFINE_SPINLOCK(watchdog_lock); |
| 147 | static cycle_t watchdog_last; |
Thomas Gleixner | 8f89441 | 2007-05-15 01:41:32 -0700 | [diff] [blame] | 148 | static unsigned long watchdog_resumed; |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 149 | |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 150 | /* |
Daniel Walker | 35c35d1 | 2007-05-09 02:33:40 -0700 | [diff] [blame] | 151 | * Interval: 0.5sec Threshold: 0.0625s |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 152 | */ |
| 153 | #define WATCHDOG_INTERVAL (HZ >> 1) |
Daniel Walker | 35c35d1 | 2007-05-09 02:33:40 -0700 | [diff] [blame] | 154 | #define WATCHDOG_THRESHOLD (NSEC_PER_SEC >> 4) |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 155 | |
| 156 | static void clocksource_ratewd(struct clocksource *cs, int64_t delta) |
| 157 | { |
Daniel Walker | 35c35d1 | 2007-05-09 02:33:40 -0700 | [diff] [blame] | 158 | if (delta > -WATCHDOG_THRESHOLD && delta < WATCHDOG_THRESHOLD) |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 159 | return; |
| 160 | |
| 161 | printk(KERN_WARNING "Clocksource %s unstable (delta = %Ld ns)\n", |
| 162 | cs->name, delta); |
| 163 | cs->flags &= ~(CLOCK_SOURCE_VALID_FOR_HRES | CLOCK_SOURCE_WATCHDOG); |
| 164 | clocksource_change_rating(cs, 0); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 165 | list_del(&cs->wd_list); |
| 166 | } |
| 167 | |
| 168 | static void clocksource_watchdog(unsigned long data) |
| 169 | { |
| 170 | struct clocksource *cs, *tmp; |
| 171 | cycle_t csnow, wdnow; |
| 172 | int64_t wd_nsec, cs_nsec; |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 173 | int resumed; |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 174 | |
| 175 | spin_lock(&watchdog_lock); |
| 176 | |
Thomas Gleixner | 8f89441 | 2007-05-15 01:41:32 -0700 | [diff] [blame] | 177 | resumed = test_and_clear_bit(0, &watchdog_resumed); |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 178 | |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 179 | wdnow = watchdog->read(watchdog); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 180 | wd_nsec = cyc2ns(watchdog, (wdnow - watchdog_last) & watchdog->mask); |
| 181 | watchdog_last = wdnow; |
| 182 | |
| 183 | list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list) { |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 184 | csnow = cs->read(cs); |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 185 | |
| 186 | if (unlikely(resumed)) { |
| 187 | cs->wd_last = csnow; |
| 188 | continue; |
| 189 | } |
| 190 | |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 191 | /* Initialized ? */ |
| 192 | if (!(cs->flags & CLOCK_SOURCE_WATCHDOG)) { |
| 193 | if ((cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) && |
| 194 | (watchdog->flags & CLOCK_SOURCE_IS_CONTINUOUS)) { |
| 195 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; |
Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 196 | /* |
| 197 | * We just marked the clocksource as |
| 198 | * highres-capable, notify the rest of the |
| 199 | * system as well so that we transition |
| 200 | * into high-res mode: |
| 201 | */ |
| 202 | tick_clock_notify(); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 203 | } |
| 204 | cs->flags |= CLOCK_SOURCE_WATCHDOG; |
| 205 | cs->wd_last = csnow; |
| 206 | } else { |
| 207 | cs_nsec = cyc2ns(cs, (csnow - cs->wd_last) & cs->mask); |
| 208 | cs->wd_last = csnow; |
| 209 | /* Check the delta. Might remove from the list ! */ |
| 210 | clocksource_ratewd(cs, cs_nsec - wd_nsec); |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | if (!list_empty(&watchdog_list)) { |
Andi Kleen | 6993fc5 | 2008-01-30 13:30:02 +0100 | [diff] [blame] | 215 | /* |
| 216 | * Cycle through CPUs to check if the CPUs stay |
| 217 | * synchronized to each other. |
| 218 | */ |
Rusty Russell | 5db0e1e | 2009-01-01 10:12:29 +1030 | [diff] [blame] | 219 | int next_cpu = cpumask_next(raw_smp_processor_id(), |
| 220 | cpu_online_mask); |
Andi Kleen | 6993fc5 | 2008-01-30 13:30:02 +0100 | [diff] [blame] | 221 | |
Mike Travis | cad0e45 | 2008-05-12 21:21:13 +0200 | [diff] [blame] | 222 | if (next_cpu >= nr_cpu_ids) |
Rusty Russell | 6b95482 | 2009-01-01 10:12:25 +1030 | [diff] [blame] | 223 | next_cpu = cpumask_first(cpu_online_mask); |
Andi Kleen | 6993fc5 | 2008-01-30 13:30:02 +0100 | [diff] [blame] | 224 | watchdog_timer.expires += WATCHDOG_INTERVAL; |
| 225 | add_timer_on(&watchdog_timer, next_cpu); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 226 | } |
| 227 | spin_unlock(&watchdog_lock); |
| 228 | } |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 229 | static void clocksource_resume_watchdog(void) |
| 230 | { |
Thomas Gleixner | 8f89441 | 2007-05-15 01:41:32 -0700 | [diff] [blame] | 231 | set_bit(0, &watchdog_resumed); |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 232 | } |
| 233 | |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 234 | static void clocksource_check_watchdog(struct clocksource *cs) |
| 235 | { |
| 236 | struct clocksource *cse; |
| 237 | unsigned long flags; |
| 238 | |
| 239 | spin_lock_irqsave(&watchdog_lock, flags); |
| 240 | if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) { |
| 241 | int started = !list_empty(&watchdog_list); |
| 242 | |
| 243 | list_add(&cs->wd_list, &watchdog_list); |
| 244 | if (!started && watchdog) { |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 245 | watchdog_last = watchdog->read(watchdog); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 246 | watchdog_timer.expires = jiffies + WATCHDOG_INTERVAL; |
Andi Kleen | 6993fc5 | 2008-01-30 13:30:02 +0100 | [diff] [blame] | 247 | add_timer_on(&watchdog_timer, |
Rusty Russell | 6b95482 | 2009-01-01 10:12:25 +1030 | [diff] [blame] | 248 | cpumask_first(cpu_online_mask)); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 249 | } |
Thomas Gleixner | 948ac6d | 2007-03-25 14:42:51 +0200 | [diff] [blame] | 250 | } else { |
| 251 | if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 252 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; |
| 253 | |
| 254 | if (!watchdog || cs->rating > watchdog->rating) { |
| 255 | if (watchdog) |
| 256 | del_timer(&watchdog_timer); |
| 257 | watchdog = cs; |
Thomas Gleixner | 898a19d | 2008-03-25 09:01:51 +0100 | [diff] [blame] | 258 | init_timer(&watchdog_timer); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 259 | watchdog_timer.function = clocksource_watchdog; |
| 260 | |
| 261 | /* Reset watchdog cycles */ |
| 262 | list_for_each_entry(cse, &watchdog_list, wd_list) |
| 263 | cse->flags &= ~CLOCK_SOURCE_WATCHDOG; |
| 264 | /* Start if list is not empty */ |
| 265 | if (!list_empty(&watchdog_list)) { |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 266 | watchdog_last = watchdog->read(watchdog); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 267 | watchdog_timer.expires = |
| 268 | jiffies + WATCHDOG_INTERVAL; |
Andi Kleen | 6993fc5 | 2008-01-30 13:30:02 +0100 | [diff] [blame] | 269 | add_timer_on(&watchdog_timer, |
Rusty Russell | 6b95482 | 2009-01-01 10:12:25 +1030 | [diff] [blame] | 270 | cpumask_first(cpu_online_mask)); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 271 | } |
| 272 | } |
| 273 | } |
| 274 | spin_unlock_irqrestore(&watchdog_lock, flags); |
| 275 | } |
| 276 | #else |
| 277 | static void clocksource_check_watchdog(struct clocksource *cs) |
| 278 | { |
| 279 | if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) |
| 280 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; |
| 281 | } |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 282 | |
| 283 | static inline void clocksource_resume_watchdog(void) { } |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 284 | #endif |
| 285 | |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 286 | /** |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 287 | * clocksource_resume - resume the clocksource(s) |
| 288 | */ |
| 289 | void clocksource_resume(void) |
| 290 | { |
Matthias Kaehlcke | 2e19758 | 2007-10-18 23:39:58 -0700 | [diff] [blame] | 291 | struct clocksource *cs; |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 292 | unsigned long flags; |
| 293 | |
| 294 | spin_lock_irqsave(&clocksource_lock, flags); |
| 295 | |
Matthias Kaehlcke | 2e19758 | 2007-10-18 23:39:58 -0700 | [diff] [blame] | 296 | list_for_each_entry(cs, &clocksource_list, list) { |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 297 | if (cs->resume) |
| 298 | cs->resume(); |
| 299 | } |
| 300 | |
| 301 | clocksource_resume_watchdog(); |
| 302 | |
| 303 | spin_unlock_irqrestore(&clocksource_lock, flags); |
| 304 | } |
| 305 | |
| 306 | /** |
Jason Wessel | 7c3078b | 2008-02-15 14:55:54 -0600 | [diff] [blame] | 307 | * clocksource_touch_watchdog - Update watchdog |
| 308 | * |
| 309 | * Update the watchdog after exception contexts such as kgdb so as not |
| 310 | * to incorrectly trip the watchdog. |
| 311 | * |
| 312 | */ |
| 313 | void clocksource_touch_watchdog(void) |
| 314 | { |
| 315 | clocksource_resume_watchdog(); |
| 316 | } |
| 317 | |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 318 | #ifdef CONFIG_GENERIC_TIME |
Jason Wessel | 7c3078b | 2008-02-15 14:55:54 -0600 | [diff] [blame] | 319 | /** |
john stultz | a275254 | 2006-06-26 00:25:14 -0700 | [diff] [blame] | 320 | * clocksource_get_next - Returns the selected clocksource |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 321 | * |
| 322 | */ |
john stultz | a275254 | 2006-06-26 00:25:14 -0700 | [diff] [blame] | 323 | struct clocksource *clocksource_get_next(void) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 324 | { |
| 325 | unsigned long flags; |
| 326 | |
| 327 | spin_lock_irqsave(&clocksource_lock, flags); |
| 328 | if (next_clocksource && finished_booting) { |
| 329 | curr_clocksource = next_clocksource; |
| 330 | next_clocksource = NULL; |
| 331 | } |
| 332 | spin_unlock_irqrestore(&clocksource_lock, flags); |
| 333 | |
| 334 | return curr_clocksource; |
| 335 | } |
| 336 | |
| 337 | /** |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 338 | * clocksource_select - Select the best clocksource available |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 339 | * |
| 340 | * Private function. Must hold clocksource_lock when called. |
| 341 | * |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 342 | * Select the clocksource with the best rating, or the clocksource, |
| 343 | * which is selected by userspace override. |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 344 | */ |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 345 | static void clocksource_select(void) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 346 | { |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 347 | struct clocksource *best, *cs; |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 348 | |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 349 | if (list_empty(&clocksource_list)) |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 350 | return; |
| 351 | /* First clocksource on the list has the best rating. */ |
| 352 | best = list_first_entry(&clocksource_list, struct clocksource, list); |
| 353 | /* Check for the override clocksource. */ |
| 354 | list_for_each_entry(cs, &clocksource_list, list) { |
| 355 | if (strcmp(cs->name, override_name) != 0) |
| 356 | continue; |
| 357 | /* |
| 358 | * Check to make sure we don't switch to a non-highres |
| 359 | * capable clocksource if the tick code is in oneshot |
| 360 | * mode (highres or nohz) |
| 361 | */ |
| 362 | if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) && |
| 363 | tick_oneshot_mode_active()) { |
| 364 | /* Override clocksource cannot be used. */ |
| 365 | printk(KERN_WARNING "Override clocksource %s is not " |
| 366 | "HRT compatible. Cannot switch while in " |
| 367 | "HRT/NOHZ mode\n", cs->name); |
| 368 | override_name[0] = 0; |
| 369 | } else |
| 370 | /* Override clocksource can be used. */ |
| 371 | best = cs; |
| 372 | break; |
| 373 | } |
| 374 | if (curr_clocksource != best) |
| 375 | next_clocksource = best; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 376 | } |
| 377 | |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 378 | #else /* CONFIG_GENERIC_TIME */ |
| 379 | |
| 380 | static void clocksource_select(void) { } |
| 381 | |
| 382 | #endif |
| 383 | |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 384 | /* |
| 385 | * Enqueue the clocksource sorted by rating |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 386 | */ |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 387 | static void clocksource_enqueue(struct clocksource *cs) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 388 | { |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 389 | struct list_head *entry = &clocksource_list; |
| 390 | struct clocksource *tmp; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 391 | |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 392 | list_for_each_entry(tmp, &clocksource_list, list) |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 393 | /* Keep track of the place, where to insert */ |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 394 | if (tmp->rating >= cs->rating) |
| 395 | entry = &tmp->list; |
| 396 | list_add(&cs->list, entry); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | /** |
john stultz | a275254 | 2006-06-26 00:25:14 -0700 | [diff] [blame] | 400 | * clocksource_register - Used to install new clocksources |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 401 | * @t: clocksource to be registered |
| 402 | * |
| 403 | * Returns -EBUSY if registration fails, zero otherwise. |
| 404 | */ |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 405 | int clocksource_register(struct clocksource *cs) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 406 | { |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 407 | unsigned long flags; |
| 408 | |
| 409 | spin_lock_irqsave(&clocksource_lock, flags); |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 410 | clocksource_enqueue(cs); |
| 411 | clocksource_select(); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 412 | spin_unlock_irqrestore(&clocksource_lock, flags); |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 413 | clocksource_check_watchdog(cs); |
| 414 | return 0; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 415 | } |
john stultz | a275254 | 2006-06-26 00:25:14 -0700 | [diff] [blame] | 416 | EXPORT_SYMBOL(clocksource_register); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 417 | |
| 418 | /** |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 419 | * clocksource_change_rating - Change the rating of a registered clocksource |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 420 | * |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 421 | */ |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 422 | void clocksource_change_rating(struct clocksource *cs, int rating) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 423 | { |
| 424 | unsigned long flags; |
| 425 | |
| 426 | spin_lock_irqsave(&clocksource_lock, flags); |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 427 | list_del(&cs->list); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 428 | cs->rating = rating; |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 429 | clocksource_enqueue(cs); |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 430 | clocksource_select(); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 431 | spin_unlock_irqrestore(&clocksource_lock, flags); |
| 432 | } |
| 433 | |
Thomas Gleixner | 4713e22c | 2008-01-30 13:30:02 +0100 | [diff] [blame] | 434 | /** |
| 435 | * clocksource_unregister - remove a registered clocksource |
| 436 | */ |
| 437 | void clocksource_unregister(struct clocksource *cs) |
| 438 | { |
| 439 | unsigned long flags; |
| 440 | |
| 441 | spin_lock_irqsave(&clocksource_lock, flags); |
| 442 | list_del(&cs->list); |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 443 | clocksource_select(); |
Thomas Gleixner | 4713e22c | 2008-01-30 13:30:02 +0100 | [diff] [blame] | 444 | spin_unlock_irqrestore(&clocksource_lock, flags); |
| 445 | } |
| 446 | |
Daniel Walker | 2b01370 | 2006-12-10 02:21:30 -0800 | [diff] [blame] | 447 | #ifdef CONFIG_SYSFS |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 448 | /** |
| 449 | * sysfs_show_current_clocksources - sysfs interface for current clocksource |
| 450 | * @dev: unused |
| 451 | * @buf: char buffer to be filled with clocksource list |
| 452 | * |
| 453 | * Provides sysfs interface for listing current clocksource. |
| 454 | */ |
| 455 | static ssize_t |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 456 | sysfs_show_current_clocksources(struct sys_device *dev, |
| 457 | struct sysdev_attribute *attr, char *buf) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 458 | { |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 459 | ssize_t count = 0; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 460 | |
| 461 | spin_lock_irq(&clocksource_lock); |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 462 | count = snprintf(buf, PAGE_SIZE, "%s\n", curr_clocksource->name); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 463 | spin_unlock_irq(&clocksource_lock); |
| 464 | |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 465 | return count; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | /** |
| 469 | * sysfs_override_clocksource - interface for manually overriding clocksource |
| 470 | * @dev: unused |
| 471 | * @buf: name of override clocksource |
| 472 | * @count: length of buffer |
| 473 | * |
| 474 | * Takes input from sysfs interface for manually overriding the default |
| 475 | * clocksource selction. |
| 476 | */ |
| 477 | static ssize_t sysfs_override_clocksource(struct sys_device *dev, |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 478 | struct sysdev_attribute *attr, |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 479 | const char *buf, size_t count) |
| 480 | { |
| 481 | size_t ret = count; |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 482 | |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 483 | /* strings from sysfs write are not 0 terminated! */ |
| 484 | if (count >= sizeof(override_name)) |
| 485 | return -EINVAL; |
| 486 | |
| 487 | /* strip of \n: */ |
| 488 | if (buf[count-1] == '\n') |
| 489 | count--; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 490 | |
| 491 | spin_lock_irq(&clocksource_lock); |
| 492 | |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 493 | if (count > 0) |
| 494 | memcpy(override_name, buf, count); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 495 | override_name[count] = 0; |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame^] | 496 | clocksource_select(); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 497 | |
| 498 | spin_unlock_irq(&clocksource_lock); |
| 499 | |
| 500 | return ret; |
| 501 | } |
| 502 | |
| 503 | /** |
| 504 | * sysfs_show_available_clocksources - sysfs interface for listing clocksource |
| 505 | * @dev: unused |
| 506 | * @buf: char buffer to be filled with clocksource list |
| 507 | * |
| 508 | * Provides sysfs interface for listing registered clocksources |
| 509 | */ |
| 510 | static ssize_t |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 511 | sysfs_show_available_clocksources(struct sys_device *dev, |
| 512 | struct sysdev_attribute *attr, |
| 513 | char *buf) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 514 | { |
Matthias Kaehlcke | 2e19758 | 2007-10-18 23:39:58 -0700 | [diff] [blame] | 515 | struct clocksource *src; |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 516 | ssize_t count = 0; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 517 | |
| 518 | spin_lock_irq(&clocksource_lock); |
Matthias Kaehlcke | 2e19758 | 2007-10-18 23:39:58 -0700 | [diff] [blame] | 519 | list_for_each_entry(src, &clocksource_list, list) { |
Thomas Gleixner | cd6d95d | 2009-06-12 11:29:27 +0200 | [diff] [blame] | 520 | /* |
| 521 | * Don't show non-HRES clocksource if the tick code is |
| 522 | * in one shot mode (highres=on or nohz=on) |
| 523 | */ |
| 524 | if (!tick_oneshot_mode_active() || |
| 525 | (src->flags & CLOCK_SOURCE_VALID_FOR_HRES)) |
john stultz | 3f68535 | 2009-01-21 22:53:22 -0700 | [diff] [blame] | 526 | count += snprintf(buf + count, |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 527 | max((ssize_t)PAGE_SIZE - count, (ssize_t)0), |
| 528 | "%s ", src->name); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 529 | } |
| 530 | spin_unlock_irq(&clocksource_lock); |
| 531 | |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 532 | count += snprintf(buf + count, |
| 533 | max((ssize_t)PAGE_SIZE - count, (ssize_t)0), "\n"); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 534 | |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 535 | return count; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 536 | } |
| 537 | |
| 538 | /* |
| 539 | * Sysfs setup bits: |
| 540 | */ |
Heiko Carstens | 4f95f81 | 2008-05-03 14:23:14 +0200 | [diff] [blame] | 541 | static SYSDEV_ATTR(current_clocksource, 0644, sysfs_show_current_clocksources, |
Daniel Walker | f5f1a24 | 2006-12-10 02:21:33 -0800 | [diff] [blame] | 542 | sysfs_override_clocksource); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 543 | |
Heiko Carstens | 4f95f81 | 2008-05-03 14:23:14 +0200 | [diff] [blame] | 544 | static SYSDEV_ATTR(available_clocksource, 0444, |
Daniel Walker | f5f1a24 | 2006-12-10 02:21:33 -0800 | [diff] [blame] | 545 | sysfs_show_available_clocksources, NULL); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 546 | |
| 547 | static struct sysdev_class clocksource_sysclass = { |
Kay Sievers | af5ca3f4 | 2007-12-20 02:09:39 +0100 | [diff] [blame] | 548 | .name = "clocksource", |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 549 | }; |
| 550 | |
| 551 | static struct sys_device device_clocksource = { |
| 552 | .id = 0, |
| 553 | .cls = &clocksource_sysclass, |
| 554 | }; |
| 555 | |
john stultz | ad59617 | 2006-06-26 00:25:06 -0700 | [diff] [blame] | 556 | static int __init init_clocksource_sysfs(void) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 557 | { |
| 558 | int error = sysdev_class_register(&clocksource_sysclass); |
| 559 | |
| 560 | if (!error) |
| 561 | error = sysdev_register(&device_clocksource); |
| 562 | if (!error) |
| 563 | error = sysdev_create_file( |
| 564 | &device_clocksource, |
| 565 | &attr_current_clocksource); |
| 566 | if (!error) |
| 567 | error = sysdev_create_file( |
| 568 | &device_clocksource, |
| 569 | &attr_available_clocksource); |
| 570 | return error; |
| 571 | } |
| 572 | |
| 573 | device_initcall(init_clocksource_sysfs); |
Daniel Walker | 2b01370 | 2006-12-10 02:21:30 -0800 | [diff] [blame] | 574 | #endif /* CONFIG_SYSFS */ |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 575 | |
| 576 | /** |
| 577 | * boot_override_clocksource - boot clock override |
| 578 | * @str: override name |
| 579 | * |
| 580 | * Takes a clocksource= boot argument and uses it |
| 581 | * as the clocksource override name. |
| 582 | */ |
| 583 | static int __init boot_override_clocksource(char* str) |
| 584 | { |
| 585 | unsigned long flags; |
| 586 | spin_lock_irqsave(&clocksource_lock, flags); |
| 587 | if (str) |
| 588 | strlcpy(override_name, str, sizeof(override_name)); |
| 589 | spin_unlock_irqrestore(&clocksource_lock, flags); |
| 590 | return 1; |
| 591 | } |
| 592 | |
| 593 | __setup("clocksource=", boot_override_clocksource); |
| 594 | |
| 595 | /** |
| 596 | * boot_override_clock - Compatibility layer for deprecated boot option |
| 597 | * @str: override name |
| 598 | * |
| 599 | * DEPRECATED! Takes a clock= boot argument and uses it |
| 600 | * as the clocksource override name |
| 601 | */ |
| 602 | static int __init boot_override_clock(char* str) |
| 603 | { |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 604 | if (!strcmp(str, "pmtmr")) { |
| 605 | printk("Warning: clock=pmtmr is deprecated. " |
| 606 | "Use clocksource=acpi_pm.\n"); |
| 607 | return boot_override_clocksource("acpi_pm"); |
| 608 | } |
| 609 | printk("Warning! clock= boot option is deprecated. " |
| 610 | "Use clocksource=xyz\n"); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 611 | return boot_override_clocksource(str); |
| 612 | } |
| 613 | |
| 614 | __setup("clock=", boot_override_clock); |