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> |
Martin Schwidefsky | 01548f4 | 2009-08-18 17:09:42 +0200 | [diff] [blame^] | 32 | #include <linux/kthread.h> |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 33 | |
Patrick Ohly | a038a35 | 2009-02-12 05:03:34 +0000 | [diff] [blame] | 34 | void timecounter_init(struct timecounter *tc, |
| 35 | const struct cyclecounter *cc, |
| 36 | u64 start_tstamp) |
| 37 | { |
| 38 | tc->cc = cc; |
| 39 | tc->cycle_last = cc->read(cc); |
| 40 | tc->nsec = start_tstamp; |
| 41 | } |
| 42 | EXPORT_SYMBOL(timecounter_init); |
| 43 | |
| 44 | /** |
| 45 | * timecounter_read_delta - get nanoseconds since last call of this function |
| 46 | * @tc: Pointer to time counter |
| 47 | * |
| 48 | * When the underlying cycle counter runs over, this will be handled |
| 49 | * correctly as long as it does not run over more than once between |
| 50 | * calls. |
| 51 | * |
| 52 | * The first call to this function for a new time counter initializes |
| 53 | * the time tracking and returns an undefined result. |
| 54 | */ |
| 55 | static u64 timecounter_read_delta(struct timecounter *tc) |
| 56 | { |
| 57 | cycle_t cycle_now, cycle_delta; |
| 58 | u64 ns_offset; |
| 59 | |
| 60 | /* read cycle counter: */ |
| 61 | cycle_now = tc->cc->read(tc->cc); |
| 62 | |
| 63 | /* calculate the delta since the last timecounter_read_delta(): */ |
| 64 | cycle_delta = (cycle_now - tc->cycle_last) & tc->cc->mask; |
| 65 | |
| 66 | /* convert to nanoseconds: */ |
| 67 | ns_offset = cyclecounter_cyc2ns(tc->cc, cycle_delta); |
| 68 | |
| 69 | /* update time stamp of timecounter_read_delta() call: */ |
| 70 | tc->cycle_last = cycle_now; |
| 71 | |
| 72 | return ns_offset; |
| 73 | } |
| 74 | |
| 75 | u64 timecounter_read(struct timecounter *tc) |
| 76 | { |
| 77 | u64 nsec; |
| 78 | |
| 79 | /* increment time by nanoseconds since last call */ |
| 80 | nsec = timecounter_read_delta(tc); |
| 81 | nsec += tc->nsec; |
| 82 | tc->nsec = nsec; |
| 83 | |
| 84 | return nsec; |
| 85 | } |
| 86 | EXPORT_SYMBOL(timecounter_read); |
| 87 | |
| 88 | u64 timecounter_cyc2time(struct timecounter *tc, |
| 89 | cycle_t cycle_tstamp) |
| 90 | { |
| 91 | u64 cycle_delta = (cycle_tstamp - tc->cycle_last) & tc->cc->mask; |
| 92 | u64 nsec; |
| 93 | |
| 94 | /* |
| 95 | * Instead of always treating cycle_tstamp as more recent |
| 96 | * than tc->cycle_last, detect when it is too far in the |
| 97 | * future and treat it as old time stamp instead. |
| 98 | */ |
| 99 | if (cycle_delta > tc->cc->mask / 2) { |
| 100 | cycle_delta = (tc->cycle_last - cycle_tstamp) & tc->cc->mask; |
| 101 | nsec = tc->nsec - cyclecounter_cyc2ns(tc->cc, cycle_delta); |
| 102 | } else { |
| 103 | nsec = cyclecounter_cyc2ns(tc->cc, cycle_delta) + tc->nsec; |
| 104 | } |
| 105 | |
| 106 | return nsec; |
| 107 | } |
| 108 | EXPORT_SYMBOL(timecounter_cyc2time); |
| 109 | |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 110 | /*[Clocksource internal variables]--------- |
| 111 | * curr_clocksource: |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 112 | * currently selected clocksource. |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 113 | * clocksource_list: |
| 114 | * linked list with the registered clocksources |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 115 | * clocksource_mutex: |
| 116 | * protects manipulations to curr_clocksource and the clocksource_list |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 117 | * override_name: |
| 118 | * Name of the user-specified clocksource. |
| 119 | */ |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 120 | static struct clocksource *curr_clocksource; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 121 | static LIST_HEAD(clocksource_list); |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 122 | static DEFINE_MUTEX(clocksource_mutex); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 123 | static char override_name[32]; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 124 | |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 125 | #ifdef CONFIG_CLOCKSOURCE_WATCHDOG |
| 126 | static LIST_HEAD(watchdog_list); |
| 127 | static struct clocksource *watchdog; |
| 128 | static struct timer_list watchdog_timer; |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 129 | static struct work_struct watchdog_work; |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 130 | static DEFINE_SPINLOCK(watchdog_lock); |
| 131 | static cycle_t watchdog_last; |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 132 | static int watchdog_running; |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 133 | |
Martin Schwidefsky | 01548f4 | 2009-08-18 17:09:42 +0200 | [diff] [blame^] | 134 | static int clocksource_watchdog_kthread(void *data); |
Thomas Gleixner | d0981a1 | 2009-08-19 11:26:09 +0200 | [diff] [blame] | 135 | static void __clocksource_change_rating(struct clocksource *cs, int rating); |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 136 | |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 137 | /* |
Daniel Walker | 35c35d1 | 2007-05-09 02:33:40 -0700 | [diff] [blame] | 138 | * Interval: 0.5sec Threshold: 0.0625s |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 139 | */ |
| 140 | #define WATCHDOG_INTERVAL (HZ >> 1) |
Daniel Walker | 35c35d1 | 2007-05-09 02:33:40 -0700 | [diff] [blame] | 141 | #define WATCHDOG_THRESHOLD (NSEC_PER_SEC >> 4) |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 142 | |
Martin Schwidefsky | 01548f4 | 2009-08-18 17:09:42 +0200 | [diff] [blame^] | 143 | static void clocksource_watchdog_work(struct work_struct *work) |
| 144 | { |
| 145 | /* |
| 146 | * If kthread_run fails the next watchdog scan over the |
| 147 | * watchdog_list will find the unstable clock again. |
| 148 | */ |
| 149 | kthread_run(clocksource_watchdog_kthread, NULL, "kwatchdog"); |
| 150 | } |
| 151 | |
Martin Schwidefsky | 8cf4e75 | 2009-08-14 15:47:22 +0200 | [diff] [blame] | 152 | static void clocksource_unstable(struct clocksource *cs, int64_t delta) |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 153 | { |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 154 | printk(KERN_WARNING "Clocksource %s unstable (delta = %Ld ns)\n", |
| 155 | cs->name, delta); |
| 156 | cs->flags &= ~(CLOCK_SOURCE_VALID_FOR_HRES | CLOCK_SOURCE_WATCHDOG); |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 157 | cs->flags |= CLOCK_SOURCE_UNSTABLE; |
| 158 | schedule_work(&watchdog_work); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | static void clocksource_watchdog(unsigned long data) |
| 162 | { |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 163 | struct clocksource *cs; |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 164 | cycle_t csnow, wdnow; |
| 165 | int64_t wd_nsec, cs_nsec; |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 166 | int next_cpu; |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 167 | |
| 168 | spin_lock(&watchdog_lock); |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 169 | if (!watchdog_running) |
| 170 | goto out; |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 171 | |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 172 | wdnow = watchdog->read(watchdog); |
Martin Schwidefsky | 155ec60 | 2009-08-14 15:47:26 +0200 | [diff] [blame] | 173 | wd_nsec = clocksource_cyc2ns((wdnow - watchdog_last) & watchdog->mask, |
| 174 | watchdog->mult, watchdog->shift); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 175 | watchdog_last = wdnow; |
| 176 | |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 177 | list_for_each_entry(cs, &watchdog_list, wd_list) { |
| 178 | |
| 179 | /* Clocksource already marked unstable? */ |
Martin Schwidefsky | 01548f4 | 2009-08-18 17:09:42 +0200 | [diff] [blame^] | 180 | if (cs->flags & CLOCK_SOURCE_UNSTABLE) { |
| 181 | schedule_work(&watchdog_work); |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 182 | continue; |
Martin Schwidefsky | 01548f4 | 2009-08-18 17:09:42 +0200 | [diff] [blame^] | 183 | } |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 184 | |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 185 | csnow = cs->read(cs); |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 186 | |
Martin Schwidefsky | 8cf4e75 | 2009-08-14 15:47:22 +0200 | [diff] [blame] | 187 | /* Clocksource initialized ? */ |
| 188 | if (!(cs->flags & CLOCK_SOURCE_WATCHDOG)) { |
| 189 | cs->flags |= CLOCK_SOURCE_WATCHDOG; |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 190 | cs->wd_last = csnow; |
| 191 | continue; |
| 192 | } |
| 193 | |
Martin Schwidefsky | 8cf4e75 | 2009-08-14 15:47:22 +0200 | [diff] [blame] | 194 | /* Check the deviation from the watchdog clocksource. */ |
Martin Schwidefsky | 155ec60 | 2009-08-14 15:47:26 +0200 | [diff] [blame] | 195 | cs_nsec = clocksource_cyc2ns((csnow - cs->wd_last) & |
| 196 | cs->mask, cs->mult, cs->shift); |
Martin Schwidefsky | 8cf4e75 | 2009-08-14 15:47:22 +0200 | [diff] [blame] | 197 | cs->wd_last = csnow; |
| 198 | if (abs(cs_nsec - wd_nsec) > WATCHDOG_THRESHOLD) { |
| 199 | clocksource_unstable(cs, cs_nsec - wd_nsec); |
| 200 | continue; |
| 201 | } |
| 202 | |
| 203 | if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) && |
| 204 | (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) && |
| 205 | (watchdog->flags & CLOCK_SOURCE_IS_CONTINUOUS)) { |
| 206 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; |
| 207 | /* |
| 208 | * We just marked the clocksource as highres-capable, |
| 209 | * notify the rest of the system as well so that we |
| 210 | * transition into high-res mode: |
| 211 | */ |
| 212 | tick_clock_notify(); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 213 | } |
| 214 | } |
| 215 | |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 216 | /* |
| 217 | * Cycle through CPUs to check if the CPUs stay synchronized |
| 218 | * to each other. |
| 219 | */ |
| 220 | next_cpu = cpumask_next(raw_smp_processor_id(), cpu_online_mask); |
| 221 | if (next_cpu >= nr_cpu_ids) |
| 222 | next_cpu = cpumask_first(cpu_online_mask); |
| 223 | watchdog_timer.expires += WATCHDOG_INTERVAL; |
| 224 | add_timer_on(&watchdog_timer, next_cpu); |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 225 | out: |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 226 | spin_unlock(&watchdog_lock); |
| 227 | } |
Martin Schwidefsky | 0f8e8ef | 2009-08-14 15:47:23 +0200 | [diff] [blame] | 228 | |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 229 | static inline void clocksource_start_watchdog(void) |
| 230 | { |
| 231 | if (watchdog_running || !watchdog || list_empty(&watchdog_list)) |
| 232 | return; |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 233 | INIT_WORK(&watchdog_work, clocksource_watchdog_work); |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 234 | init_timer(&watchdog_timer); |
| 235 | watchdog_timer.function = clocksource_watchdog; |
| 236 | watchdog_last = watchdog->read(watchdog); |
| 237 | watchdog_timer.expires = jiffies + WATCHDOG_INTERVAL; |
| 238 | add_timer_on(&watchdog_timer, cpumask_first(cpu_online_mask)); |
| 239 | watchdog_running = 1; |
| 240 | } |
| 241 | |
| 242 | static inline void clocksource_stop_watchdog(void) |
| 243 | { |
| 244 | if (!watchdog_running || (watchdog && !list_empty(&watchdog_list))) |
| 245 | return; |
| 246 | del_timer(&watchdog_timer); |
| 247 | watchdog_running = 0; |
| 248 | } |
| 249 | |
Martin Schwidefsky | 0f8e8ef | 2009-08-14 15:47:23 +0200 | [diff] [blame] | 250 | static inline void clocksource_reset_watchdog(void) |
| 251 | { |
| 252 | struct clocksource *cs; |
| 253 | |
| 254 | list_for_each_entry(cs, &watchdog_list, wd_list) |
| 255 | cs->flags &= ~CLOCK_SOURCE_WATCHDOG; |
| 256 | } |
| 257 | |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 258 | static void clocksource_resume_watchdog(void) |
| 259 | { |
Martin Schwidefsky | 0f8e8ef | 2009-08-14 15:47:23 +0200 | [diff] [blame] | 260 | unsigned long flags; |
| 261 | |
| 262 | spin_lock_irqsave(&watchdog_lock, flags); |
| 263 | clocksource_reset_watchdog(); |
| 264 | spin_unlock_irqrestore(&watchdog_lock, flags); |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 267 | static void clocksource_enqueue_watchdog(struct clocksource *cs) |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 268 | { |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 269 | unsigned long flags; |
| 270 | |
| 271 | spin_lock_irqsave(&watchdog_lock, flags); |
| 272 | if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) { |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 273 | /* cs is a clocksource to be watched. */ |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 274 | list_add(&cs->wd_list, &watchdog_list); |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 275 | cs->flags &= ~CLOCK_SOURCE_WATCHDOG; |
Thomas Gleixner | 948ac6d | 2007-03-25 14:42:51 +0200 | [diff] [blame] | 276 | } else { |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 277 | /* cs is a watchdog. */ |
Thomas Gleixner | 948ac6d | 2007-03-25 14:42:51 +0200 | [diff] [blame] | 278 | if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 279 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 280 | /* Pick the best watchdog. */ |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 281 | if (!watchdog || cs->rating > watchdog->rating) { |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 282 | watchdog = cs; |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 283 | /* Reset watchdog cycles */ |
Martin Schwidefsky | 0f8e8ef | 2009-08-14 15:47:23 +0200 | [diff] [blame] | 284 | clocksource_reset_watchdog(); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 285 | } |
| 286 | } |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 287 | /* Check if the watchdog timer needs to be started. */ |
| 288 | clocksource_start_watchdog(); |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 289 | spin_unlock_irqrestore(&watchdog_lock, flags); |
| 290 | } |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 291 | |
| 292 | static void clocksource_dequeue_watchdog(struct clocksource *cs) |
| 293 | { |
| 294 | struct clocksource *tmp; |
| 295 | unsigned long flags; |
| 296 | |
| 297 | spin_lock_irqsave(&watchdog_lock, flags); |
| 298 | if (cs->flags & CLOCK_SOURCE_MUST_VERIFY) { |
| 299 | /* cs is a watched clocksource. */ |
| 300 | list_del_init(&cs->wd_list); |
| 301 | } else if (cs == watchdog) { |
| 302 | /* Reset watchdog cycles */ |
| 303 | clocksource_reset_watchdog(); |
| 304 | /* Current watchdog is removed. Find an alternative. */ |
| 305 | watchdog = NULL; |
| 306 | list_for_each_entry(tmp, &clocksource_list, list) { |
| 307 | if (tmp == cs || tmp->flags & CLOCK_SOURCE_MUST_VERIFY) |
| 308 | continue; |
| 309 | if (!watchdog || tmp->rating > watchdog->rating) |
| 310 | watchdog = tmp; |
| 311 | } |
| 312 | } |
| 313 | cs->flags &= ~CLOCK_SOURCE_WATCHDOG; |
| 314 | /* Check if the watchdog timer needs to be stopped. */ |
| 315 | clocksource_stop_watchdog(); |
| 316 | spin_unlock_irqrestore(&watchdog_lock, flags); |
| 317 | } |
| 318 | |
Martin Schwidefsky | 01548f4 | 2009-08-18 17:09:42 +0200 | [diff] [blame^] | 319 | static int clocksource_watchdog_kthread(void *data) |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 320 | { |
| 321 | struct clocksource *cs, *tmp; |
| 322 | unsigned long flags; |
Thomas Gleixner | 6ea41d2 | 2009-08-15 13:20:42 +0200 | [diff] [blame] | 323 | LIST_HEAD(unstable); |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 324 | |
Thomas Gleixner | d0981a1 | 2009-08-19 11:26:09 +0200 | [diff] [blame] | 325 | mutex_lock(&clocksource_mutex); |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 326 | spin_lock_irqsave(&watchdog_lock, flags); |
| 327 | list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list) |
| 328 | if (cs->flags & CLOCK_SOURCE_UNSTABLE) { |
| 329 | list_del_init(&cs->wd_list); |
Thomas Gleixner | 6ea41d2 | 2009-08-15 13:20:42 +0200 | [diff] [blame] | 330 | list_add(&cs->wd_list, &unstable); |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 331 | } |
| 332 | /* Check if the watchdog timer needs to be stopped. */ |
| 333 | clocksource_stop_watchdog(); |
Thomas Gleixner | 6ea41d2 | 2009-08-15 13:20:42 +0200 | [diff] [blame] | 334 | spin_unlock_irqrestore(&watchdog_lock, flags); |
| 335 | |
| 336 | /* Needs to be done outside of watchdog lock */ |
| 337 | list_for_each_entry_safe(cs, tmp, &unstable, wd_list) { |
| 338 | list_del_init(&cs->wd_list); |
Thomas Gleixner | d0981a1 | 2009-08-19 11:26:09 +0200 | [diff] [blame] | 339 | __clocksource_change_rating(cs, 0); |
Thomas Gleixner | 6ea41d2 | 2009-08-15 13:20:42 +0200 | [diff] [blame] | 340 | } |
Thomas Gleixner | d0981a1 | 2009-08-19 11:26:09 +0200 | [diff] [blame] | 341 | mutex_unlock(&clocksource_mutex); |
Martin Schwidefsky | 01548f4 | 2009-08-18 17:09:42 +0200 | [diff] [blame^] | 342 | return 0; |
Martin Schwidefsky | c55c87c | 2009-08-14 15:47:25 +0200 | [diff] [blame] | 343 | } |
| 344 | |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 345 | #else /* CONFIG_CLOCKSOURCE_WATCHDOG */ |
| 346 | |
| 347 | static void clocksource_enqueue_watchdog(struct clocksource *cs) |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 348 | { |
| 349 | if (cs->flags & CLOCK_SOURCE_IS_CONTINUOUS) |
| 350 | cs->flags |= CLOCK_SOURCE_VALID_FOR_HRES; |
| 351 | } |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 352 | |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 353 | static inline void clocksource_dequeue_watchdog(struct clocksource *cs) { } |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 354 | static inline void clocksource_resume_watchdog(void) { } |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 355 | |
| 356 | #endif /* CONFIG_CLOCKSOURCE_WATCHDOG */ |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 357 | |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 358 | /** |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 359 | * clocksource_resume - resume the clocksource(s) |
| 360 | */ |
| 361 | void clocksource_resume(void) |
| 362 | { |
Matthias Kaehlcke | 2e19758 | 2007-10-18 23:39:58 -0700 | [diff] [blame] | 363 | struct clocksource *cs; |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 364 | |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 365 | mutex_lock(&clocksource_mutex); |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 366 | |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 367 | list_for_each_entry(cs, &clocksource_list, list) |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 368 | if (cs->resume) |
| 369 | cs->resume(); |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 370 | |
| 371 | clocksource_resume_watchdog(); |
| 372 | |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 373 | mutex_unlock(&clocksource_mutex); |
Thomas Gleixner | b52f52a | 2007-05-09 02:35:15 -0700 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | /** |
Jason Wessel | 7c3078b | 2008-02-15 14:55:54 -0600 | [diff] [blame] | 377 | * clocksource_touch_watchdog - Update watchdog |
| 378 | * |
| 379 | * Update the watchdog after exception contexts such as kgdb so as not |
| 380 | * to incorrectly trip the watchdog. |
| 381 | * |
| 382 | */ |
| 383 | void clocksource_touch_watchdog(void) |
| 384 | { |
| 385 | clocksource_resume_watchdog(); |
| 386 | } |
| 387 | |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 388 | #ifdef CONFIG_GENERIC_TIME |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 389 | |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 390 | static int finished_booting; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 391 | |
| 392 | /** |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 393 | * clocksource_select - Select the best clocksource available |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 394 | * |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 395 | * Private function. Must hold clocksource_mutex when called. |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 396 | * |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 397 | * Select the clocksource with the best rating, or the clocksource, |
| 398 | * which is selected by userspace override. |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 399 | */ |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 400 | static void clocksource_select(void) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 401 | { |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 402 | struct clocksource *best, *cs; |
Thomas Gleixner | 5d8b34f | 2007-02-16 01:27:43 -0800 | [diff] [blame] | 403 | |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 404 | if (!finished_booting || list_empty(&clocksource_list)) |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 405 | return; |
| 406 | /* First clocksource on the list has the best rating. */ |
| 407 | best = list_first_entry(&clocksource_list, struct clocksource, list); |
| 408 | /* Check for the override clocksource. */ |
| 409 | list_for_each_entry(cs, &clocksource_list, list) { |
| 410 | if (strcmp(cs->name, override_name) != 0) |
| 411 | continue; |
| 412 | /* |
| 413 | * Check to make sure we don't switch to a non-highres |
| 414 | * capable clocksource if the tick code is in oneshot |
| 415 | * mode (highres or nohz) |
| 416 | */ |
| 417 | if (!(cs->flags & CLOCK_SOURCE_VALID_FOR_HRES) && |
| 418 | tick_oneshot_mode_active()) { |
| 419 | /* Override clocksource cannot be used. */ |
| 420 | printk(KERN_WARNING "Override clocksource %s is not " |
| 421 | "HRT compatible. Cannot switch while in " |
| 422 | "HRT/NOHZ mode\n", cs->name); |
| 423 | override_name[0] = 0; |
| 424 | } else |
| 425 | /* Override clocksource can be used. */ |
| 426 | best = cs; |
| 427 | break; |
| 428 | } |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 429 | if (curr_clocksource != best) { |
| 430 | printk(KERN_INFO "Switching to clocksource %s\n", best->name); |
| 431 | curr_clocksource = best; |
| 432 | timekeeping_notify(curr_clocksource); |
| 433 | } |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 434 | } |
| 435 | |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 436 | /* |
| 437 | * clocksource_done_booting - Called near the end of core bootup |
| 438 | * |
| 439 | * Hack to avoid lots of clocksource churn at boot time. |
| 440 | * We use fs_initcall because we want this to start before |
| 441 | * device_initcall but after subsys_initcall. |
| 442 | */ |
| 443 | static int __init clocksource_done_booting(void) |
| 444 | { |
| 445 | finished_booting = 1; |
| 446 | clocksource_select(); |
| 447 | return 0; |
| 448 | } |
| 449 | fs_initcall(clocksource_done_booting); |
| 450 | |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 451 | #else /* CONFIG_GENERIC_TIME */ |
| 452 | |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 453 | static inline void clocksource_select(void) { } |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 454 | |
| 455 | #endif |
| 456 | |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 457 | /* |
| 458 | * Enqueue the clocksource sorted by rating |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 459 | */ |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 460 | static void clocksource_enqueue(struct clocksource *cs) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 461 | { |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 462 | struct list_head *entry = &clocksource_list; |
| 463 | struct clocksource *tmp; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 464 | |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 465 | list_for_each_entry(tmp, &clocksource_list, list) |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 466 | /* Keep track of the place, where to insert */ |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 467 | if (tmp->rating >= cs->rating) |
| 468 | entry = &tmp->list; |
| 469 | list_add(&cs->list, entry); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | /** |
john stultz | a275254 | 2006-06-26 00:25:14 -0700 | [diff] [blame] | 473 | * clocksource_register - Used to install new clocksources |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 474 | * @t: clocksource to be registered |
| 475 | * |
| 476 | * Returns -EBUSY if registration fails, zero otherwise. |
| 477 | */ |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 478 | int clocksource_register(struct clocksource *cs) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 479 | { |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 480 | mutex_lock(&clocksource_mutex); |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 481 | clocksource_enqueue(cs); |
| 482 | clocksource_select(); |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 483 | clocksource_enqueue_watchdog(cs); |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 484 | mutex_unlock(&clocksource_mutex); |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 485 | return 0; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 486 | } |
john stultz | a275254 | 2006-06-26 00:25:14 -0700 | [diff] [blame] | 487 | EXPORT_SYMBOL(clocksource_register); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 488 | |
Thomas Gleixner | d0981a1 | 2009-08-19 11:26:09 +0200 | [diff] [blame] | 489 | static void __clocksource_change_rating(struct clocksource *cs, int rating) |
| 490 | { |
| 491 | list_del(&cs->list); |
| 492 | cs->rating = rating; |
| 493 | clocksource_enqueue(cs); |
| 494 | clocksource_select(); |
| 495 | } |
| 496 | |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 497 | /** |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 498 | * clocksource_change_rating - Change the rating of a registered clocksource |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 499 | */ |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 500 | void clocksource_change_rating(struct clocksource *cs, int rating) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 501 | { |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 502 | mutex_lock(&clocksource_mutex); |
Thomas Gleixner | d0981a1 | 2009-08-19 11:26:09 +0200 | [diff] [blame] | 503 | __clocksource_change_rating(cs, rating); |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 504 | mutex_unlock(&clocksource_mutex); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 505 | } |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 506 | EXPORT_SYMBOL(clocksource_change_rating); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 507 | |
Thomas Gleixner | 4713e22c | 2008-01-30 13:30:02 +0100 | [diff] [blame] | 508 | /** |
| 509 | * clocksource_unregister - remove a registered clocksource |
| 510 | */ |
| 511 | void clocksource_unregister(struct clocksource *cs) |
| 512 | { |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 513 | mutex_lock(&clocksource_mutex); |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 514 | clocksource_dequeue_watchdog(cs); |
Thomas Gleixner | 4713e22c | 2008-01-30 13:30:02 +0100 | [diff] [blame] | 515 | list_del(&cs->list); |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 516 | clocksource_select(); |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 517 | mutex_unlock(&clocksource_mutex); |
Thomas Gleixner | 4713e22c | 2008-01-30 13:30:02 +0100 | [diff] [blame] | 518 | } |
Martin Schwidefsky | fb63a0e | 2009-08-14 15:47:24 +0200 | [diff] [blame] | 519 | EXPORT_SYMBOL(clocksource_unregister); |
Thomas Gleixner | 4713e22c | 2008-01-30 13:30:02 +0100 | [diff] [blame] | 520 | |
Daniel Walker | 2b01370 | 2006-12-10 02:21:30 -0800 | [diff] [blame] | 521 | #ifdef CONFIG_SYSFS |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 522 | /** |
| 523 | * sysfs_show_current_clocksources - sysfs interface for current clocksource |
| 524 | * @dev: unused |
| 525 | * @buf: char buffer to be filled with clocksource list |
| 526 | * |
| 527 | * Provides sysfs interface for listing current clocksource. |
| 528 | */ |
| 529 | static ssize_t |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 530 | sysfs_show_current_clocksources(struct sys_device *dev, |
| 531 | struct sysdev_attribute *attr, char *buf) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 532 | { |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 533 | ssize_t count = 0; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 534 | |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 535 | mutex_lock(&clocksource_mutex); |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 536 | count = snprintf(buf, PAGE_SIZE, "%s\n", curr_clocksource->name); |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 537 | mutex_unlock(&clocksource_mutex); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 538 | |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 539 | return count; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 540 | } |
| 541 | |
| 542 | /** |
| 543 | * sysfs_override_clocksource - interface for manually overriding clocksource |
| 544 | * @dev: unused |
| 545 | * @buf: name of override clocksource |
| 546 | * @count: length of buffer |
| 547 | * |
| 548 | * Takes input from sysfs interface for manually overriding the default |
| 549 | * clocksource selction. |
| 550 | */ |
| 551 | static ssize_t sysfs_override_clocksource(struct sys_device *dev, |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 552 | struct sysdev_attribute *attr, |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 553 | const char *buf, size_t count) |
| 554 | { |
| 555 | size_t ret = count; |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 556 | |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 557 | /* strings from sysfs write are not 0 terminated! */ |
| 558 | if (count >= sizeof(override_name)) |
| 559 | return -EINVAL; |
| 560 | |
| 561 | /* strip of \n: */ |
| 562 | if (buf[count-1] == '\n') |
| 563 | count--; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 564 | |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 565 | mutex_lock(&clocksource_mutex); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 566 | |
Thomas Gleixner | 92c7e00 | 2007-02-16 01:27:33 -0800 | [diff] [blame] | 567 | if (count > 0) |
| 568 | memcpy(override_name, buf, count); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 569 | override_name[count] = 0; |
Martin Schwidefsky | f1b8274 | 2009-08-14 15:47:21 +0200 | [diff] [blame] | 570 | clocksource_select(); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 571 | |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 572 | mutex_unlock(&clocksource_mutex); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 573 | |
| 574 | return ret; |
| 575 | } |
| 576 | |
| 577 | /** |
| 578 | * sysfs_show_available_clocksources - sysfs interface for listing clocksource |
| 579 | * @dev: unused |
| 580 | * @buf: char buffer to be filled with clocksource list |
| 581 | * |
| 582 | * Provides sysfs interface for listing registered clocksources |
| 583 | */ |
| 584 | static ssize_t |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 585 | sysfs_show_available_clocksources(struct sys_device *dev, |
| 586 | struct sysdev_attribute *attr, |
| 587 | char *buf) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 588 | { |
Matthias Kaehlcke | 2e19758 | 2007-10-18 23:39:58 -0700 | [diff] [blame] | 589 | struct clocksource *src; |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 590 | ssize_t count = 0; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 591 | |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 592 | mutex_lock(&clocksource_mutex); |
Matthias Kaehlcke | 2e19758 | 2007-10-18 23:39:58 -0700 | [diff] [blame] | 593 | list_for_each_entry(src, &clocksource_list, list) { |
Thomas Gleixner | cd6d95d | 2009-06-12 11:29:27 +0200 | [diff] [blame] | 594 | /* |
| 595 | * Don't show non-HRES clocksource if the tick code is |
| 596 | * in one shot mode (highres=on or nohz=on) |
| 597 | */ |
| 598 | if (!tick_oneshot_mode_active() || |
| 599 | (src->flags & CLOCK_SOURCE_VALID_FOR_HRES)) |
john stultz | 3f68535 | 2009-01-21 22:53:22 -0700 | [diff] [blame] | 600 | count += snprintf(buf + count, |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 601 | max((ssize_t)PAGE_SIZE - count, (ssize_t)0), |
| 602 | "%s ", src->name); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 603 | } |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 604 | mutex_unlock(&clocksource_mutex); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 605 | |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 606 | count += snprintf(buf + count, |
| 607 | max((ssize_t)PAGE_SIZE - count, (ssize_t)0), "\n"); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 608 | |
Miao Xie | 5e2cb10 | 2008-02-06 01:36:53 -0800 | [diff] [blame] | 609 | return count; |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 610 | } |
| 611 | |
| 612 | /* |
| 613 | * Sysfs setup bits: |
| 614 | */ |
Heiko Carstens | 4f95f81 | 2008-05-03 14:23:14 +0200 | [diff] [blame] | 615 | static SYSDEV_ATTR(current_clocksource, 0644, sysfs_show_current_clocksources, |
Daniel Walker | f5f1a24 | 2006-12-10 02:21:33 -0800 | [diff] [blame] | 616 | sysfs_override_clocksource); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 617 | |
Heiko Carstens | 4f95f81 | 2008-05-03 14:23:14 +0200 | [diff] [blame] | 618 | static SYSDEV_ATTR(available_clocksource, 0444, |
Daniel Walker | f5f1a24 | 2006-12-10 02:21:33 -0800 | [diff] [blame] | 619 | sysfs_show_available_clocksources, NULL); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 620 | |
| 621 | static struct sysdev_class clocksource_sysclass = { |
Kay Sievers | af5ca3f | 2007-12-20 02:09:39 +0100 | [diff] [blame] | 622 | .name = "clocksource", |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 623 | }; |
| 624 | |
| 625 | static struct sys_device device_clocksource = { |
| 626 | .id = 0, |
| 627 | .cls = &clocksource_sysclass, |
| 628 | }; |
| 629 | |
john stultz | ad59617 | 2006-06-26 00:25:06 -0700 | [diff] [blame] | 630 | static int __init init_clocksource_sysfs(void) |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 631 | { |
| 632 | int error = sysdev_class_register(&clocksource_sysclass); |
| 633 | |
| 634 | if (!error) |
| 635 | error = sysdev_register(&device_clocksource); |
| 636 | if (!error) |
| 637 | error = sysdev_create_file( |
| 638 | &device_clocksource, |
| 639 | &attr_current_clocksource); |
| 640 | if (!error) |
| 641 | error = sysdev_create_file( |
| 642 | &device_clocksource, |
| 643 | &attr_available_clocksource); |
| 644 | return error; |
| 645 | } |
| 646 | |
| 647 | device_initcall(init_clocksource_sysfs); |
Daniel Walker | 2b01370 | 2006-12-10 02:21:30 -0800 | [diff] [blame] | 648 | #endif /* CONFIG_SYSFS */ |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 649 | |
| 650 | /** |
| 651 | * boot_override_clocksource - boot clock override |
| 652 | * @str: override name |
| 653 | * |
| 654 | * Takes a clocksource= boot argument and uses it |
| 655 | * as the clocksource override name. |
| 656 | */ |
| 657 | static int __init boot_override_clocksource(char* str) |
| 658 | { |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 659 | mutex_lock(&clocksource_mutex); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 660 | if (str) |
| 661 | strlcpy(override_name, str, sizeof(override_name)); |
Martin Schwidefsky | 75c5158 | 2009-08-14 15:47:30 +0200 | [diff] [blame] | 662 | mutex_unlock(&clocksource_mutex); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 663 | return 1; |
| 664 | } |
| 665 | |
| 666 | __setup("clocksource=", boot_override_clocksource); |
| 667 | |
| 668 | /** |
| 669 | * boot_override_clock - Compatibility layer for deprecated boot option |
| 670 | * @str: override name |
| 671 | * |
| 672 | * DEPRECATED! Takes a clock= boot argument and uses it |
| 673 | * as the clocksource override name |
| 674 | */ |
| 675 | static int __init boot_override_clock(char* str) |
| 676 | { |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 677 | if (!strcmp(str, "pmtmr")) { |
| 678 | printk("Warning: clock=pmtmr is deprecated. " |
| 679 | "Use clocksource=acpi_pm.\n"); |
| 680 | return boot_override_clocksource("acpi_pm"); |
| 681 | } |
| 682 | printk("Warning! clock= boot option is deprecated. " |
| 683 | "Use clocksource=xyz\n"); |
john stultz | 734efb4 | 2006-06-26 00:25:05 -0700 | [diff] [blame] | 684 | return boot_override_clocksource(str); |
| 685 | } |
| 686 | |
| 687 | __setup("clock=", boot_override_clock); |