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