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