| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1 | /* | 
 | 2 |  *  linux/kernel/hrtimer.c | 
 | 3 |  * | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 4 |  *  Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de> | 
| Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 5 |  *  Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 6 |  *  Copyright(C) 2006-2007  Timesys Corp., Thomas Gleixner | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 7 |  * | 
 | 8 |  *  High-resolution kernel timers | 
 | 9 |  * | 
 | 10 |  *  In contrast to the low-resolution timeout API implemented in | 
 | 11 |  *  kernel/timer.c, hrtimers provide finer resolution and accuracy | 
 | 12 |  *  depending on system configuration and capabilities. | 
 | 13 |  * | 
 | 14 |  *  These timers are currently used for: | 
 | 15 |  *   - itimers | 
 | 16 |  *   - POSIX timers | 
 | 17 |  *   - nanosleep | 
 | 18 |  *   - precise in-kernel timing | 
 | 19 |  * | 
 | 20 |  *  Started by: Thomas Gleixner and Ingo Molnar | 
 | 21 |  * | 
 | 22 |  *  Credits: | 
 | 23 |  *	based on kernel/timer.c | 
 | 24 |  * | 
| Thomas Gleixner | 66188fa | 2006-02-01 03:05:13 -0800 | [diff] [blame] | 25 |  *	Help, testing, suggestions, bugfixes, improvements were | 
 | 26 |  *	provided by: | 
 | 27 |  * | 
 | 28 |  *	George Anzinger, Andrew Morton, Steven Rostedt, Roman Zippel | 
 | 29 |  *	et. al. | 
 | 30 |  * | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 31 |  *  For licencing details see kernel-base/COPYING | 
 | 32 |  */ | 
 | 33 |  | 
 | 34 | #include <linux/cpu.h> | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 35 | #include <linux/irq.h> | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 36 | #include <linux/module.h> | 
 | 37 | #include <linux/percpu.h> | 
 | 38 | #include <linux/hrtimer.h> | 
 | 39 | #include <linux/notifier.h> | 
 | 40 | #include <linux/syscalls.h> | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 41 | #include <linux/kallsyms.h> | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 42 | #include <linux/interrupt.h> | 
| Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 43 | #include <linux/tick.h> | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 44 | #include <linux/seq_file.h> | 
 | 45 | #include <linux/err.h> | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 46 |  | 
 | 47 | #include <asm/uaccess.h> | 
 | 48 |  | 
 | 49 | /** | 
 | 50 |  * ktime_get - get the monotonic time in ktime_t format | 
 | 51 |  * | 
 | 52 |  * returns the time in ktime_t format | 
 | 53 |  */ | 
| Thomas Gleixner | d316c57 | 2007-02-16 01:28:00 -0800 | [diff] [blame] | 54 | ktime_t ktime_get(void) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 55 | { | 
 | 56 | 	struct timespec now; | 
 | 57 |  | 
 | 58 | 	ktime_get_ts(&now); | 
 | 59 |  | 
 | 60 | 	return timespec_to_ktime(now); | 
 | 61 | } | 
| Patrick McHardy | 641b9e0 | 2007-03-16 01:18:42 -0700 | [diff] [blame] | 62 | EXPORT_SYMBOL_GPL(ktime_get); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 63 |  | 
 | 64 | /** | 
 | 65 |  * ktime_get_real - get the real (wall-) time in ktime_t format | 
 | 66 |  * | 
 | 67 |  * returns the time in ktime_t format | 
 | 68 |  */ | 
| Thomas Gleixner | d316c57 | 2007-02-16 01:28:00 -0800 | [diff] [blame] | 69 | ktime_t ktime_get_real(void) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 70 | { | 
 | 71 | 	struct timespec now; | 
 | 72 |  | 
 | 73 | 	getnstimeofday(&now); | 
 | 74 |  | 
 | 75 | 	return timespec_to_ktime(now); | 
 | 76 | } | 
 | 77 |  | 
 | 78 | EXPORT_SYMBOL_GPL(ktime_get_real); | 
 | 79 |  | 
 | 80 | /* | 
 | 81 |  * The timer bases: | 
| George Anzinger | 7978672 | 2006-02-01 03:05:11 -0800 | [diff] [blame] | 82 |  * | 
 | 83 |  * Note: If we want to add new timer bases, we have to skip the two | 
 | 84 |  * clock ids captured by the cpu-timers. We do this by holding empty | 
 | 85 |  * entries rather than doing math adjustment of the clock ids. | 
 | 86 |  * This ensures that we capture erroneous accesses to these clock ids | 
 | 87 |  * rather than moving them into the range of valid clock id's. | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 88 |  */ | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 89 | DEFINE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases) = | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 90 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 91 |  | 
 | 92 | 	.clock_base = | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 93 | 	{ | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 94 | 		{ | 
 | 95 | 			.index = CLOCK_REALTIME, | 
 | 96 | 			.get_time = &ktime_get_real, | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 97 | 			.resolution = KTIME_LOW_RES, | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 98 | 		}, | 
 | 99 | 		{ | 
 | 100 | 			.index = CLOCK_MONOTONIC, | 
 | 101 | 			.get_time = &ktime_get, | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 102 | 			.resolution = KTIME_LOW_RES, | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 103 | 		}, | 
 | 104 | 	} | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 105 | }; | 
 | 106 |  | 
 | 107 | /** | 
 | 108 |  * ktime_get_ts - get the monotonic clock in timespec format | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 109 |  * @ts:		pointer to timespec variable | 
 | 110 |  * | 
 | 111 |  * The function calculates the monotonic clock from the realtime | 
 | 112 |  * clock and the wall_to_monotonic offset and stores the result | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 113 |  * in normalized timespec format in the variable pointed to by @ts. | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 114 |  */ | 
 | 115 | void ktime_get_ts(struct timespec *ts) | 
 | 116 | { | 
 | 117 | 	struct timespec tomono; | 
 | 118 | 	unsigned long seq; | 
 | 119 |  | 
 | 120 | 	do { | 
 | 121 | 		seq = read_seqbegin(&xtime_lock); | 
 | 122 | 		getnstimeofday(ts); | 
 | 123 | 		tomono = wall_to_monotonic; | 
 | 124 |  | 
 | 125 | 	} while (read_seqretry(&xtime_lock, seq)); | 
 | 126 |  | 
 | 127 | 	set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec, | 
 | 128 | 				ts->tv_nsec + tomono.tv_nsec); | 
 | 129 | } | 
| Matt Helsley | 69778e3 | 2006-01-09 20:52:39 -0800 | [diff] [blame] | 130 | EXPORT_SYMBOL_GPL(ktime_get_ts); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 131 |  | 
 | 132 | /* | 
| Thomas Gleixner | 92127c7 | 2006-03-26 01:38:05 -0800 | [diff] [blame] | 133 |  * Get the coarse grained time at the softirq based on xtime and | 
 | 134 |  * wall_to_monotonic. | 
 | 135 |  */ | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 136 | static void hrtimer_get_softirq_time(struct hrtimer_cpu_base *base) | 
| Thomas Gleixner | 92127c7 | 2006-03-26 01:38:05 -0800 | [diff] [blame] | 137 | { | 
 | 138 | 	ktime_t xtim, tomono; | 
| Thomas Gleixner | ad28d94 | 2007-03-16 13:38:21 -0800 | [diff] [blame] | 139 | 	struct timespec xts, tom; | 
| Thomas Gleixner | 92127c7 | 2006-03-26 01:38:05 -0800 | [diff] [blame] | 140 | 	unsigned long seq; | 
 | 141 |  | 
 | 142 | 	do { | 
 | 143 | 		seq = read_seqbegin(&xtime_lock); | 
| john stultz | 2c6b47d | 2007-07-24 17:47:43 -0700 | [diff] [blame] | 144 | 		xts = current_kernel_time(); | 
| Thomas Gleixner | ad28d94 | 2007-03-16 13:38:21 -0800 | [diff] [blame] | 145 | 		tom = wall_to_monotonic; | 
| Thomas Gleixner | 92127c7 | 2006-03-26 01:38:05 -0800 | [diff] [blame] | 146 | 	} while (read_seqretry(&xtime_lock, seq)); | 
 | 147 |  | 
| john stultz | f4304ab | 2007-02-16 01:27:26 -0800 | [diff] [blame] | 148 | 	xtim = timespec_to_ktime(xts); | 
| Thomas Gleixner | ad28d94 | 2007-03-16 13:38:21 -0800 | [diff] [blame] | 149 | 	tomono = timespec_to_ktime(tom); | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 150 | 	base->clock_base[CLOCK_REALTIME].softirq_time = xtim; | 
 | 151 | 	base->clock_base[CLOCK_MONOTONIC].softirq_time = | 
 | 152 | 		ktime_add(xtim, tomono); | 
| Thomas Gleixner | 92127c7 | 2006-03-26 01:38:05 -0800 | [diff] [blame] | 153 | } | 
 | 154 |  | 
 | 155 | /* | 
| Thomas Gleixner | 303e967 | 2007-02-16 01:27:51 -0800 | [diff] [blame] | 156 |  * Helper function to check, whether the timer is running the callback | 
 | 157 |  * function | 
 | 158 |  */ | 
 | 159 | static inline int hrtimer_callback_running(struct hrtimer *timer) | 
 | 160 | { | 
 | 161 | 	return timer->state & HRTIMER_STATE_CALLBACK; | 
 | 162 | } | 
 | 163 |  | 
 | 164 | /* | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 165 |  * Functions and macros which are different for UP/SMP systems are kept in a | 
 | 166 |  * single place | 
 | 167 |  */ | 
 | 168 | #ifdef CONFIG_SMP | 
 | 169 |  | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 170 | /* | 
 | 171 |  * We are using hashed locking: holding per_cpu(hrtimer_bases)[n].lock | 
 | 172 |  * means that all timers which are tied to this base via timer->base are | 
 | 173 |  * locked, and the base itself is locked too. | 
 | 174 |  * | 
 | 175 |  * So __run_timers/migrate_timers can safely modify all timers which could | 
 | 176 |  * be found on the lists/queues. | 
 | 177 |  * | 
 | 178 |  * When the timer's base is locked, and the timer removed from list, it is | 
 | 179 |  * possible to set timer->base = NULL and drop the lock: the timer remains | 
 | 180 |  * locked. | 
 | 181 |  */ | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 182 | static | 
 | 183 | struct hrtimer_clock_base *lock_hrtimer_base(const struct hrtimer *timer, | 
 | 184 | 					     unsigned long *flags) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 185 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 186 | 	struct hrtimer_clock_base *base; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 187 |  | 
 | 188 | 	for (;;) { | 
 | 189 | 		base = timer->base; | 
 | 190 | 		if (likely(base != NULL)) { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 191 | 			spin_lock_irqsave(&base->cpu_base->lock, *flags); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 192 | 			if (likely(base == timer->base)) | 
 | 193 | 				return base; | 
 | 194 | 			/* The timer has migrated to another CPU: */ | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 195 | 			spin_unlock_irqrestore(&base->cpu_base->lock, *flags); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 196 | 		} | 
 | 197 | 		cpu_relax(); | 
 | 198 | 	} | 
 | 199 | } | 
 | 200 |  | 
 | 201 | /* | 
 | 202 |  * Switch the timer base to the current CPU when possible. | 
 | 203 |  */ | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 204 | static inline struct hrtimer_clock_base * | 
 | 205 | switch_hrtimer_base(struct hrtimer *timer, struct hrtimer_clock_base *base) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 206 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 207 | 	struct hrtimer_clock_base *new_base; | 
 | 208 | 	struct hrtimer_cpu_base *new_cpu_base; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 209 |  | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 210 | 	new_cpu_base = &__get_cpu_var(hrtimer_bases); | 
 | 211 | 	new_base = &new_cpu_base->clock_base[base->index]; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 212 |  | 
 | 213 | 	if (base != new_base) { | 
 | 214 | 		/* | 
 | 215 | 		 * We are trying to schedule the timer on the local CPU. | 
 | 216 | 		 * However we can't change timer's base while it is running, | 
 | 217 | 		 * so we keep it on the same CPU. No hassle vs. reprogramming | 
 | 218 | 		 * the event source in the high resolution case. The softirq | 
 | 219 | 		 * code will take care of this when the timer function has | 
 | 220 | 		 * completed. There is no conflict as we hold the lock until | 
 | 221 | 		 * the timer is enqueued. | 
 | 222 | 		 */ | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 223 | 		if (unlikely(hrtimer_callback_running(timer))) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 224 | 			return base; | 
 | 225 |  | 
 | 226 | 		/* See the comment in lock_timer_base() */ | 
 | 227 | 		timer->base = NULL; | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 228 | 		spin_unlock(&base->cpu_base->lock); | 
 | 229 | 		spin_lock(&new_base->cpu_base->lock); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 230 | 		timer->base = new_base; | 
 | 231 | 	} | 
 | 232 | 	return new_base; | 
 | 233 | } | 
 | 234 |  | 
 | 235 | #else /* CONFIG_SMP */ | 
 | 236 |  | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 237 | static inline struct hrtimer_clock_base * | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 238 | lock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags) | 
 | 239 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 240 | 	struct hrtimer_clock_base *base = timer->base; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 241 |  | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 242 | 	spin_lock_irqsave(&base->cpu_base->lock, *flags); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 243 |  | 
 | 244 | 	return base; | 
 | 245 | } | 
 | 246 |  | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 247 | # define switch_hrtimer_base(t, b)	(b) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 248 |  | 
 | 249 | #endif	/* !CONFIG_SMP */ | 
 | 250 |  | 
 | 251 | /* | 
 | 252 |  * Functions for the union type storage format of ktime_t which are | 
 | 253 |  * too large for inlining: | 
 | 254 |  */ | 
 | 255 | #if BITS_PER_LONG < 64 | 
 | 256 | # ifndef CONFIG_KTIME_SCALAR | 
 | 257 | /** | 
 | 258 |  * ktime_add_ns - Add a scalar nanoseconds value to a ktime_t variable | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 259 |  * @kt:		addend | 
 | 260 |  * @nsec:	the scalar nsec value to add | 
 | 261 |  * | 
 | 262 |  * Returns the sum of kt and nsec in ktime_t format | 
 | 263 |  */ | 
 | 264 | ktime_t ktime_add_ns(const ktime_t kt, u64 nsec) | 
 | 265 | { | 
 | 266 | 	ktime_t tmp; | 
 | 267 |  | 
 | 268 | 	if (likely(nsec < NSEC_PER_SEC)) { | 
 | 269 | 		tmp.tv64 = nsec; | 
 | 270 | 	} else { | 
 | 271 | 		unsigned long rem = do_div(nsec, NSEC_PER_SEC); | 
 | 272 |  | 
 | 273 | 		tmp = ktime_set((long)nsec, rem); | 
 | 274 | 	} | 
 | 275 |  | 
 | 276 | 	return ktime_add(kt, tmp); | 
 | 277 | } | 
| David Howells | b8b8fd2 | 2007-04-27 15:31:24 -0700 | [diff] [blame] | 278 |  | 
 | 279 | EXPORT_SYMBOL_GPL(ktime_add_ns); | 
| Arnaldo Carvalho de Melo | a272378 | 2007-08-19 17:16:05 -0700 | [diff] [blame] | 280 |  | 
 | 281 | /** | 
 | 282 |  * ktime_sub_ns - Subtract a scalar nanoseconds value from a ktime_t variable | 
 | 283 |  * @kt:		minuend | 
 | 284 |  * @nsec:	the scalar nsec value to subtract | 
 | 285 |  * | 
 | 286 |  * Returns the subtraction of @nsec from @kt in ktime_t format | 
 | 287 |  */ | 
 | 288 | ktime_t ktime_sub_ns(const ktime_t kt, u64 nsec) | 
 | 289 | { | 
 | 290 | 	ktime_t tmp; | 
 | 291 |  | 
 | 292 | 	if (likely(nsec < NSEC_PER_SEC)) { | 
 | 293 | 		tmp.tv64 = nsec; | 
 | 294 | 	} else { | 
 | 295 | 		unsigned long rem = do_div(nsec, NSEC_PER_SEC); | 
 | 296 |  | 
 | 297 | 		tmp = ktime_set((long)nsec, rem); | 
 | 298 | 	} | 
 | 299 |  | 
 | 300 | 	return ktime_sub(kt, tmp); | 
 | 301 | } | 
 | 302 |  | 
 | 303 | EXPORT_SYMBOL_GPL(ktime_sub_ns); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 304 | # endif /* !CONFIG_KTIME_SCALAR */ | 
 | 305 |  | 
 | 306 | /* | 
 | 307 |  * Divide a ktime value by a nanosecond value | 
 | 308 |  */ | 
| Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 309 | unsigned long ktime_divns(const ktime_t kt, s64 div) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 310 | { | 
 | 311 | 	u64 dclc, inc, dns; | 
 | 312 | 	int sft = 0; | 
 | 313 |  | 
 | 314 | 	dclc = dns = ktime_to_ns(kt); | 
 | 315 | 	inc = div; | 
 | 316 | 	/* Make sure the divisor is less than 2^32: */ | 
 | 317 | 	while (div >> 32) { | 
 | 318 | 		sft++; | 
 | 319 | 		div >>= 1; | 
 | 320 | 	} | 
 | 321 | 	dclc >>= sft; | 
 | 322 | 	do_div(dclc, (unsigned long) div); | 
 | 323 |  | 
 | 324 | 	return (unsigned long) dclc; | 
 | 325 | } | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 326 | #endif /* BITS_PER_LONG >= 64 */ | 
 | 327 |  | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 328 | /* | 
 | 329 |  * Check, whether the timer is on the callback pending list | 
 | 330 |  */ | 
 | 331 | static inline int hrtimer_cb_pending(const struct hrtimer *timer) | 
 | 332 | { | 
 | 333 | 	return timer->state & HRTIMER_STATE_PENDING; | 
 | 334 | } | 
 | 335 |  | 
 | 336 | /* | 
 | 337 |  * Remove a timer from the callback pending list | 
 | 338 |  */ | 
 | 339 | static inline void hrtimer_remove_cb_pending(struct hrtimer *timer) | 
 | 340 | { | 
 | 341 | 	list_del_init(&timer->cb_entry); | 
 | 342 | } | 
 | 343 |  | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 344 | /* High resolution timer related functions */ | 
 | 345 | #ifdef CONFIG_HIGH_RES_TIMERS | 
 | 346 |  | 
 | 347 | /* | 
 | 348 |  * High resolution timer enabled ? | 
 | 349 |  */ | 
 | 350 | static int hrtimer_hres_enabled __read_mostly  = 1; | 
 | 351 |  | 
 | 352 | /* | 
 | 353 |  * Enable / Disable high resolution mode | 
 | 354 |  */ | 
 | 355 | static int __init setup_hrtimer_hres(char *str) | 
 | 356 | { | 
 | 357 | 	if (!strcmp(str, "off")) | 
 | 358 | 		hrtimer_hres_enabled = 0; | 
 | 359 | 	else if (!strcmp(str, "on")) | 
 | 360 | 		hrtimer_hres_enabled = 1; | 
 | 361 | 	else | 
 | 362 | 		return 0; | 
 | 363 | 	return 1; | 
 | 364 | } | 
 | 365 |  | 
 | 366 | __setup("highres=", setup_hrtimer_hres); | 
 | 367 |  | 
 | 368 | /* | 
 | 369 |  * hrtimer_high_res_enabled - query, if the highres mode is enabled | 
 | 370 |  */ | 
 | 371 | static inline int hrtimer_is_hres_enabled(void) | 
 | 372 | { | 
 | 373 | 	return hrtimer_hres_enabled; | 
 | 374 | } | 
 | 375 |  | 
 | 376 | /* | 
 | 377 |  * Is the high resolution mode active ? | 
 | 378 |  */ | 
 | 379 | static inline int hrtimer_hres_active(void) | 
 | 380 | { | 
 | 381 | 	return __get_cpu_var(hrtimer_bases).hres_active; | 
 | 382 | } | 
 | 383 |  | 
 | 384 | /* | 
 | 385 |  * Reprogram the event source with checking both queues for the | 
 | 386 |  * next event | 
 | 387 |  * Called with interrupts disabled and base->lock held | 
 | 388 |  */ | 
 | 389 | static void hrtimer_force_reprogram(struct hrtimer_cpu_base *cpu_base) | 
 | 390 | { | 
 | 391 | 	int i; | 
 | 392 | 	struct hrtimer_clock_base *base = cpu_base->clock_base; | 
 | 393 | 	ktime_t expires; | 
 | 394 |  | 
 | 395 | 	cpu_base->expires_next.tv64 = KTIME_MAX; | 
 | 396 |  | 
 | 397 | 	for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) { | 
 | 398 | 		struct hrtimer *timer; | 
 | 399 |  | 
 | 400 | 		if (!base->first) | 
 | 401 | 			continue; | 
 | 402 | 		timer = rb_entry(base->first, struct hrtimer, node); | 
 | 403 | 		expires = ktime_sub(timer->expires, base->offset); | 
 | 404 | 		if (expires.tv64 < cpu_base->expires_next.tv64) | 
 | 405 | 			cpu_base->expires_next = expires; | 
 | 406 | 	} | 
 | 407 |  | 
 | 408 | 	if (cpu_base->expires_next.tv64 != KTIME_MAX) | 
 | 409 | 		tick_program_event(cpu_base->expires_next, 1); | 
 | 410 | } | 
 | 411 |  | 
 | 412 | /* | 
 | 413 |  * Shared reprogramming for clock_realtime and clock_monotonic | 
 | 414 |  * | 
 | 415 |  * When a timer is enqueued and expires earlier than the already enqueued | 
 | 416 |  * timers, we have to check, whether it expires earlier than the timer for | 
 | 417 |  * which the clock event device was armed. | 
 | 418 |  * | 
 | 419 |  * Called with interrupts disabled and base->cpu_base.lock held | 
 | 420 |  */ | 
 | 421 | static int hrtimer_reprogram(struct hrtimer *timer, | 
 | 422 | 			     struct hrtimer_clock_base *base) | 
 | 423 | { | 
 | 424 | 	ktime_t *expires_next = &__get_cpu_var(hrtimer_bases).expires_next; | 
 | 425 | 	ktime_t expires = ktime_sub(timer->expires, base->offset); | 
 | 426 | 	int res; | 
 | 427 |  | 
 | 428 | 	/* | 
 | 429 | 	 * When the callback is running, we do not reprogram the clock event | 
 | 430 | 	 * device. The timer callback is either running on a different CPU or | 
| Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 431 | 	 * the callback is executed in the hrtimer_interrupt context. The | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 432 | 	 * reprogramming is handled either by the softirq, which called the | 
 | 433 | 	 * callback or at the end of the hrtimer_interrupt. | 
 | 434 | 	 */ | 
 | 435 | 	if (hrtimer_callback_running(timer)) | 
 | 436 | 		return 0; | 
 | 437 |  | 
 | 438 | 	if (expires.tv64 >= expires_next->tv64) | 
 | 439 | 		return 0; | 
 | 440 |  | 
 | 441 | 	/* | 
 | 442 | 	 * Clockevents returns -ETIME, when the event was in the past. | 
 | 443 | 	 */ | 
 | 444 | 	res = tick_program_event(expires, 0); | 
 | 445 | 	if (!IS_ERR_VALUE(res)) | 
 | 446 | 		*expires_next = expires; | 
 | 447 | 	return res; | 
 | 448 | } | 
 | 449 |  | 
 | 450 |  | 
 | 451 | /* | 
 | 452 |  * Retrigger next event is called after clock was set | 
 | 453 |  * | 
 | 454 |  * Called with interrupts disabled via on_each_cpu() | 
 | 455 |  */ | 
 | 456 | static void retrigger_next_event(void *arg) | 
 | 457 | { | 
 | 458 | 	struct hrtimer_cpu_base *base; | 
 | 459 | 	struct timespec realtime_offset; | 
 | 460 | 	unsigned long seq; | 
 | 461 |  | 
 | 462 | 	if (!hrtimer_hres_active()) | 
 | 463 | 		return; | 
 | 464 |  | 
 | 465 | 	do { | 
 | 466 | 		seq = read_seqbegin(&xtime_lock); | 
 | 467 | 		set_normalized_timespec(&realtime_offset, | 
 | 468 | 					-wall_to_monotonic.tv_sec, | 
 | 469 | 					-wall_to_monotonic.tv_nsec); | 
 | 470 | 	} while (read_seqretry(&xtime_lock, seq)); | 
 | 471 |  | 
 | 472 | 	base = &__get_cpu_var(hrtimer_bases); | 
 | 473 |  | 
 | 474 | 	/* Adjust CLOCK_REALTIME offset */ | 
 | 475 | 	spin_lock(&base->lock); | 
 | 476 | 	base->clock_base[CLOCK_REALTIME].offset = | 
 | 477 | 		timespec_to_ktime(realtime_offset); | 
 | 478 |  | 
 | 479 | 	hrtimer_force_reprogram(base); | 
 | 480 | 	spin_unlock(&base->lock); | 
 | 481 | } | 
 | 482 |  | 
 | 483 | /* | 
 | 484 |  * Clock realtime was set | 
 | 485 |  * | 
 | 486 |  * Change the offset of the realtime clock vs. the monotonic | 
 | 487 |  * clock. | 
 | 488 |  * | 
 | 489 |  * We might have to reprogram the high resolution timer interrupt. On | 
 | 490 |  * SMP we call the architecture specific code to retrigger _all_ high | 
 | 491 |  * resolution timer interrupts. On UP we just disable interrupts and | 
 | 492 |  * call the high resolution interrupt code. | 
 | 493 |  */ | 
 | 494 | void clock_was_set(void) | 
 | 495 | { | 
 | 496 | 	/* Retrigger the CPU local events everywhere */ | 
 | 497 | 	on_each_cpu(retrigger_next_event, NULL, 0, 1); | 
 | 498 | } | 
 | 499 |  | 
 | 500 | /* | 
| Ingo Molnar | 995f054 | 2007-04-07 12:05:00 +0200 | [diff] [blame] | 501 |  * During resume we might have to reprogram the high resolution timer | 
 | 502 |  * interrupt (on the local CPU): | 
 | 503 |  */ | 
 | 504 | void hres_timers_resume(void) | 
 | 505 | { | 
 | 506 | 	WARN_ON_ONCE(num_online_cpus() > 1); | 
 | 507 |  | 
 | 508 | 	/* Retrigger the CPU local events: */ | 
 | 509 | 	retrigger_next_event(NULL); | 
 | 510 | } | 
 | 511 |  | 
 | 512 | /* | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 513 |  * Initialize the high resolution related parts of cpu_base | 
 | 514 |  */ | 
 | 515 | static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base) | 
 | 516 | { | 
 | 517 | 	base->expires_next.tv64 = KTIME_MAX; | 
 | 518 | 	base->hres_active = 0; | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 519 | } | 
 | 520 |  | 
 | 521 | /* | 
 | 522 |  * Initialize the high resolution related parts of a hrtimer | 
 | 523 |  */ | 
 | 524 | static inline void hrtimer_init_timer_hres(struct hrtimer *timer) | 
 | 525 | { | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 526 | } | 
 | 527 |  | 
 | 528 | /* | 
 | 529 |  * When High resolution timers are active, try to reprogram. Note, that in case | 
 | 530 |  * the state has HRTIMER_STATE_CALLBACK set, no reprogramming and no expiry | 
 | 531 |  * check happens. The timer gets enqueued into the rbtree. The reprogramming | 
 | 532 |  * and expiry check is done in the hrtimer_interrupt or in the softirq. | 
 | 533 |  */ | 
 | 534 | static inline int hrtimer_enqueue_reprogram(struct hrtimer *timer, | 
 | 535 | 					    struct hrtimer_clock_base *base) | 
 | 536 | { | 
 | 537 | 	if (base->cpu_base->hres_active && hrtimer_reprogram(timer, base)) { | 
 | 538 |  | 
 | 539 | 		/* Timer is expired, act upon the callback mode */ | 
 | 540 | 		switch(timer->cb_mode) { | 
 | 541 | 		case HRTIMER_CB_IRQSAFE_NO_RESTART: | 
 | 542 | 			/* | 
 | 543 | 			 * We can call the callback from here. No restart | 
 | 544 | 			 * happens, so no danger of recursion | 
 | 545 | 			 */ | 
 | 546 | 			BUG_ON(timer->function(timer) != HRTIMER_NORESTART); | 
 | 547 | 			return 1; | 
 | 548 | 		case HRTIMER_CB_IRQSAFE_NO_SOFTIRQ: | 
 | 549 | 			/* | 
 | 550 | 			 * This is solely for the sched tick emulation with | 
 | 551 | 			 * dynamic tick support to ensure that we do not | 
 | 552 | 			 * restart the tick right on the edge and end up with | 
 | 553 | 			 * the tick timer in the softirq ! The calling site | 
 | 554 | 			 * takes care of this. | 
 | 555 | 			 */ | 
 | 556 | 			return 1; | 
 | 557 | 		case HRTIMER_CB_IRQSAFE: | 
 | 558 | 		case HRTIMER_CB_SOFTIRQ: | 
 | 559 | 			/* | 
 | 560 | 			 * Move everything else into the softirq pending list ! | 
 | 561 | 			 */ | 
 | 562 | 			list_add_tail(&timer->cb_entry, | 
 | 563 | 				      &base->cpu_base->cb_pending); | 
 | 564 | 			timer->state = HRTIMER_STATE_PENDING; | 
 | 565 | 			raise_softirq(HRTIMER_SOFTIRQ); | 
 | 566 | 			return 1; | 
 | 567 | 		default: | 
 | 568 | 			BUG(); | 
 | 569 | 		} | 
 | 570 | 	} | 
 | 571 | 	return 0; | 
 | 572 | } | 
 | 573 |  | 
 | 574 | /* | 
 | 575 |  * Switch to high resolution mode | 
 | 576 |  */ | 
| Thomas Gleixner | f895385 | 2007-03-06 01:42:08 -0800 | [diff] [blame] | 577 | static int hrtimer_switch_to_hres(void) | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 578 | { | 
| Ingo Molnar | 820de5c | 2007-07-21 04:37:36 -0700 | [diff] [blame] | 579 | 	int cpu = smp_processor_id(); | 
 | 580 | 	struct hrtimer_cpu_base *base = &per_cpu(hrtimer_bases, cpu); | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 581 | 	unsigned long flags; | 
 | 582 |  | 
 | 583 | 	if (base->hres_active) | 
| Thomas Gleixner | f895385 | 2007-03-06 01:42:08 -0800 | [diff] [blame] | 584 | 		return 1; | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 585 |  | 
 | 586 | 	local_irq_save(flags); | 
 | 587 |  | 
 | 588 | 	if (tick_init_highres()) { | 
 | 589 | 		local_irq_restore(flags); | 
| Ingo Molnar | 820de5c | 2007-07-21 04:37:36 -0700 | [diff] [blame] | 590 | 		printk(KERN_WARNING "Could not switch to high resolution " | 
 | 591 | 				    "mode on CPU %d\n", cpu); | 
| Thomas Gleixner | f895385 | 2007-03-06 01:42:08 -0800 | [diff] [blame] | 592 | 		return 0; | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 593 | 	} | 
 | 594 | 	base->hres_active = 1; | 
 | 595 | 	base->clock_base[CLOCK_REALTIME].resolution = KTIME_HIGH_RES; | 
 | 596 | 	base->clock_base[CLOCK_MONOTONIC].resolution = KTIME_HIGH_RES; | 
 | 597 |  | 
 | 598 | 	tick_setup_sched_timer(); | 
 | 599 |  | 
 | 600 | 	/* "Retrigger" the interrupt to get things going */ | 
 | 601 | 	retrigger_next_event(NULL); | 
 | 602 | 	local_irq_restore(flags); | 
| Michael Ellerman | edfed66 | 2007-10-29 16:35:29 +1100 | [diff] [blame] | 603 | 	printk(KERN_DEBUG "Switched to high resolution mode on CPU %d\n", | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 604 | 	       smp_processor_id()); | 
| Thomas Gleixner | f895385 | 2007-03-06 01:42:08 -0800 | [diff] [blame] | 605 | 	return 1; | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 606 | } | 
 | 607 |  | 
 | 608 | #else | 
 | 609 |  | 
 | 610 | static inline int hrtimer_hres_active(void) { return 0; } | 
 | 611 | static inline int hrtimer_is_hres_enabled(void) { return 0; } | 
| Thomas Gleixner | f895385 | 2007-03-06 01:42:08 -0800 | [diff] [blame] | 612 | static inline int hrtimer_switch_to_hres(void) { return 0; } | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 613 | static inline void hrtimer_force_reprogram(struct hrtimer_cpu_base *base) { } | 
 | 614 | static inline int hrtimer_enqueue_reprogram(struct hrtimer *timer, | 
 | 615 | 					    struct hrtimer_clock_base *base) | 
 | 616 | { | 
 | 617 | 	return 0; | 
 | 618 | } | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 619 | static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base) { } | 
 | 620 | static inline void hrtimer_init_timer_hres(struct hrtimer *timer) { } | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 621 | static inline int hrtimer_reprogram(struct hrtimer *timer, | 
 | 622 | 				    struct hrtimer_clock_base *base) | 
 | 623 | { | 
 | 624 | 	return 0; | 
 | 625 | } | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 626 |  | 
 | 627 | #endif /* CONFIG_HIGH_RES_TIMERS */ | 
 | 628 |  | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 629 | #ifdef CONFIG_TIMER_STATS | 
 | 630 | void __timer_stats_hrtimer_set_start_info(struct hrtimer *timer, void *addr) | 
 | 631 | { | 
 | 632 | 	if (timer->start_site) | 
 | 633 | 		return; | 
 | 634 |  | 
 | 635 | 	timer->start_site = addr; | 
 | 636 | 	memcpy(timer->start_comm, current->comm, TASK_COMM_LEN); | 
 | 637 | 	timer->start_pid = current->pid; | 
 | 638 | } | 
 | 639 | #endif | 
 | 640 |  | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 641 | /* | 
| Uwe Kleine-König | 6506f2a | 2007-10-20 01:56:53 +0200 | [diff] [blame] | 642 |  * Counterpart to lock_hrtimer_base above: | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 643 |  */ | 
 | 644 | static inline | 
 | 645 | void unlock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags) | 
 | 646 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 647 | 	spin_unlock_irqrestore(&timer->base->cpu_base->lock, *flags); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 648 | } | 
 | 649 |  | 
 | 650 | /** | 
 | 651 |  * hrtimer_forward - forward the timer expiry | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 652 |  * @timer:	hrtimer to forward | 
| Roman Zippel | 44f2147 | 2006-03-26 01:38:06 -0800 | [diff] [blame] | 653 |  * @now:	forward past this time | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 654 |  * @interval:	the interval to forward | 
 | 655 |  * | 
 | 656 |  * Forward the timer expiry so it will expire in the future. | 
| Jonathan Corbet | 8dca6f3 | 2006-01-16 15:58:55 -0700 | [diff] [blame] | 657 |  * Returns the number of overruns. | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 658 |  */ | 
 | 659 | unsigned long | 
| Roman Zippel | 44f2147 | 2006-03-26 01:38:06 -0800 | [diff] [blame] | 660 | hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 661 | { | 
 | 662 | 	unsigned long orun = 1; | 
| Roman Zippel | 44f2147 | 2006-03-26 01:38:06 -0800 | [diff] [blame] | 663 | 	ktime_t delta; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 664 |  | 
 | 665 | 	delta = ktime_sub(now, timer->expires); | 
 | 666 |  | 
 | 667 | 	if (delta.tv64 < 0) | 
 | 668 | 		return 0; | 
 | 669 |  | 
| Thomas Gleixner | c9db4fa | 2006-01-12 11:47:34 +0100 | [diff] [blame] | 670 | 	if (interval.tv64 < timer->base->resolution.tv64) | 
 | 671 | 		interval.tv64 = timer->base->resolution.tv64; | 
 | 672 |  | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 673 | 	if (unlikely(delta.tv64 >= interval.tv64)) { | 
| Roman Zippel | df869b6 | 2006-03-26 01:38:11 -0800 | [diff] [blame] | 674 | 		s64 incr = ktime_to_ns(interval); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 675 |  | 
 | 676 | 		orun = ktime_divns(delta, incr); | 
 | 677 | 		timer->expires = ktime_add_ns(timer->expires, incr * orun); | 
 | 678 | 		if (timer->expires.tv64 > now.tv64) | 
 | 679 | 			return orun; | 
 | 680 | 		/* | 
 | 681 | 		 * This (and the ktime_add() below) is the | 
 | 682 | 		 * correction for exact: | 
 | 683 | 		 */ | 
 | 684 | 		orun++; | 
 | 685 | 	} | 
 | 686 | 	timer->expires = ktime_add(timer->expires, interval); | 
| Thomas Gleixner | 13788cc | 2007-03-16 13:38:20 -0800 | [diff] [blame] | 687 | 	/* | 
 | 688 | 	 * Make sure, that the result did not wrap with a very large | 
 | 689 | 	 * interval. | 
 | 690 | 	 */ | 
 | 691 | 	if (timer->expires.tv64 < 0) | 
 | 692 | 		timer->expires = ktime_set(KTIME_SEC_MAX, 0); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 693 |  | 
 | 694 | 	return orun; | 
 | 695 | } | 
| Stas Sergeev | 6bdb6b6 | 2007-05-08 00:31:58 -0700 | [diff] [blame] | 696 | EXPORT_SYMBOL_GPL(hrtimer_forward); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 697 |  | 
 | 698 | /* | 
 | 699 |  * enqueue_hrtimer - internal function to (re)start a timer | 
 | 700 |  * | 
 | 701 |  * The timer is inserted in expiry order. Insertion into the | 
 | 702 |  * red black tree is O(log(n)). Must hold the base lock. | 
 | 703 |  */ | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 704 | static void enqueue_hrtimer(struct hrtimer *timer, | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 705 | 			    struct hrtimer_clock_base *base, int reprogram) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 706 | { | 
 | 707 | 	struct rb_node **link = &base->active.rb_node; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 708 | 	struct rb_node *parent = NULL; | 
 | 709 | 	struct hrtimer *entry; | 
| Ingo Molnar | 99bc2fc | 2007-07-21 04:37:36 -0700 | [diff] [blame] | 710 | 	int leftmost = 1; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 711 |  | 
 | 712 | 	/* | 
 | 713 | 	 * Find the right place in the rbtree: | 
 | 714 | 	 */ | 
 | 715 | 	while (*link) { | 
 | 716 | 		parent = *link; | 
 | 717 | 		entry = rb_entry(parent, struct hrtimer, node); | 
 | 718 | 		/* | 
 | 719 | 		 * We dont care about collisions. Nodes with | 
 | 720 | 		 * the same expiry time stay together. | 
 | 721 | 		 */ | 
| Ingo Molnar | 99bc2fc | 2007-07-21 04:37:36 -0700 | [diff] [blame] | 722 | 		if (timer->expires.tv64 < entry->expires.tv64) { | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 723 | 			link = &(*link)->rb_left; | 
| Ingo Molnar | 99bc2fc | 2007-07-21 04:37:36 -0700 | [diff] [blame] | 724 | 		} else { | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 725 | 			link = &(*link)->rb_right; | 
| Ingo Molnar | 99bc2fc | 2007-07-21 04:37:36 -0700 | [diff] [blame] | 726 | 			leftmost = 0; | 
 | 727 | 		} | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 728 | 	} | 
 | 729 |  | 
 | 730 | 	/* | 
| Thomas Gleixner | 288867e | 2006-01-12 11:25:54 +0100 | [diff] [blame] | 731 | 	 * Insert the timer to the rbtree and check whether it | 
 | 732 | 	 * replaces the first pending timer | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 733 | 	 */ | 
| Ingo Molnar | 99bc2fc | 2007-07-21 04:37:36 -0700 | [diff] [blame] | 734 | 	if (leftmost) { | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 735 | 		/* | 
 | 736 | 		 * Reprogram the clock event device. When the timer is already | 
 | 737 | 		 * expired hrtimer_enqueue_reprogram has either called the | 
 | 738 | 		 * callback or added it to the pending list and raised the | 
 | 739 | 		 * softirq. | 
 | 740 | 		 * | 
 | 741 | 		 * This is a NOP for !HIGHRES | 
 | 742 | 		 */ | 
 | 743 | 		if (reprogram && hrtimer_enqueue_reprogram(timer, base)) | 
 | 744 | 			return; | 
 | 745 |  | 
 | 746 | 		base->first = &timer->node; | 
 | 747 | 	} | 
 | 748 |  | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 749 | 	rb_link_node(&timer->node, parent, link); | 
 | 750 | 	rb_insert_color(&timer->node, &base->active); | 
| Thomas Gleixner | 303e967 | 2007-02-16 01:27:51 -0800 | [diff] [blame] | 751 | 	/* | 
 | 752 | 	 * HRTIMER_STATE_ENQUEUED is or'ed to the current state to preserve the | 
 | 753 | 	 * state of a possibly running callback. | 
 | 754 | 	 */ | 
 | 755 | 	timer->state |= HRTIMER_STATE_ENQUEUED; | 
| Thomas Gleixner | 288867e | 2006-01-12 11:25:54 +0100 | [diff] [blame] | 756 | } | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 757 |  | 
 | 758 | /* | 
 | 759 |  * __remove_hrtimer - internal function to remove a timer | 
 | 760 |  * | 
 | 761 |  * Caller must hold the base lock. | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 762 |  * | 
 | 763 |  * High resolution timer mode reprograms the clock event device when the | 
 | 764 |  * timer is the one which expires next. The caller can disable this by setting | 
 | 765 |  * reprogram to zero. This is useful, when the context does a reprogramming | 
 | 766 |  * anyway (e.g. timer interrupt) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 767 |  */ | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 768 | static void __remove_hrtimer(struct hrtimer *timer, | 
| Thomas Gleixner | 303e967 | 2007-02-16 01:27:51 -0800 | [diff] [blame] | 769 | 			     struct hrtimer_clock_base *base, | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 770 | 			     unsigned long newstate, int reprogram) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 771 | { | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 772 | 	/* High res. callback list. NOP for !HIGHRES */ | 
 | 773 | 	if (hrtimer_cb_pending(timer)) | 
 | 774 | 		hrtimer_remove_cb_pending(timer); | 
 | 775 | 	else { | 
 | 776 | 		/* | 
 | 777 | 		 * Remove the timer from the rbtree and replace the | 
 | 778 | 		 * first entry pointer if necessary. | 
 | 779 | 		 */ | 
 | 780 | 		if (base->first == &timer->node) { | 
 | 781 | 			base->first = rb_next(&timer->node); | 
 | 782 | 			/* Reprogram the clock event device. if enabled */ | 
 | 783 | 			if (reprogram && hrtimer_hres_active()) | 
 | 784 | 				hrtimer_force_reprogram(base->cpu_base); | 
 | 785 | 		} | 
 | 786 | 		rb_erase(&timer->node, &base->active); | 
 | 787 | 	} | 
| Thomas Gleixner | 303e967 | 2007-02-16 01:27:51 -0800 | [diff] [blame] | 788 | 	timer->state = newstate; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 789 | } | 
 | 790 |  | 
 | 791 | /* | 
 | 792 |  * remove hrtimer, called with base lock held | 
 | 793 |  */ | 
 | 794 | static inline int | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 795 | remove_hrtimer(struct hrtimer *timer, struct hrtimer_clock_base *base) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 796 | { | 
| Thomas Gleixner | 303e967 | 2007-02-16 01:27:51 -0800 | [diff] [blame] | 797 | 	if (hrtimer_is_queued(timer)) { | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 798 | 		int reprogram; | 
 | 799 |  | 
 | 800 | 		/* | 
 | 801 | 		 * Remove the timer and force reprogramming when high | 
 | 802 | 		 * resolution mode is active and the timer is on the current | 
 | 803 | 		 * CPU. If we remove a timer on another CPU, reprogramming is | 
 | 804 | 		 * skipped. The interrupt event on this CPU is fired and | 
 | 805 | 		 * reprogramming happens in the interrupt handler. This is a | 
 | 806 | 		 * rare case and less expensive than a smp call. | 
 | 807 | 		 */ | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 808 | 		timer_stats_hrtimer_clear_start_info(timer); | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 809 | 		reprogram = base->cpu_base == &__get_cpu_var(hrtimer_bases); | 
 | 810 | 		__remove_hrtimer(timer, base, HRTIMER_STATE_INACTIVE, | 
 | 811 | 				 reprogram); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 812 | 		return 1; | 
 | 813 | 	} | 
 | 814 | 	return 0; | 
 | 815 | } | 
 | 816 |  | 
 | 817 | /** | 
 | 818 |  * hrtimer_start - (re)start an relative timer on the current CPU | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 819 |  * @timer:	the timer to be added | 
 | 820 |  * @tim:	expiry time | 
 | 821 |  * @mode:	expiry mode: absolute (HRTIMER_ABS) or relative (HRTIMER_REL) | 
 | 822 |  * | 
 | 823 |  * Returns: | 
 | 824 |  *  0 on success | 
 | 825 |  *  1 when the timer was active | 
 | 826 |  */ | 
 | 827 | int | 
 | 828 | hrtimer_start(struct hrtimer *timer, ktime_t tim, const enum hrtimer_mode mode) | 
 | 829 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 830 | 	struct hrtimer_clock_base *base, *new_base; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 831 | 	unsigned long flags; | 
 | 832 | 	int ret; | 
 | 833 |  | 
 | 834 | 	base = lock_hrtimer_base(timer, &flags); | 
 | 835 |  | 
 | 836 | 	/* Remove an active timer from the queue: */ | 
 | 837 | 	ret = remove_hrtimer(timer, base); | 
 | 838 |  | 
 | 839 | 	/* Switch the timer base, if necessary: */ | 
 | 840 | 	new_base = switch_hrtimer_base(timer, base); | 
 | 841 |  | 
| Thomas Gleixner | c9cb2e3 | 2007-02-16 01:27:49 -0800 | [diff] [blame] | 842 | 	if (mode == HRTIMER_MODE_REL) { | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 843 | 		tim = ktime_add(tim, new_base->get_time()); | 
| Ingo Molnar | 06027bd | 2006-02-14 13:53:15 -0800 | [diff] [blame] | 844 | 		/* | 
 | 845 | 		 * CONFIG_TIME_LOW_RES is a temporary way for architectures | 
 | 846 | 		 * to signal that they simply return xtime in | 
 | 847 | 		 * do_gettimeoffset(). In this case we want to round up by | 
 | 848 | 		 * resolution when starting a relative timer, to avoid short | 
 | 849 | 		 * timeouts. This will go away with the GTOD framework. | 
 | 850 | 		 */ | 
 | 851 | #ifdef CONFIG_TIME_LOW_RES | 
 | 852 | 		tim = ktime_add(tim, base->resolution); | 
 | 853 | #endif | 
| Thomas Gleixner | 62f0f61 | 2007-12-07 19:16:17 +0100 | [diff] [blame] | 854 | 		/* | 
 | 855 | 		 * Careful here: User space might have asked for a | 
 | 856 | 		 * very long sleep, so the add above might result in a | 
 | 857 | 		 * negative number, which enqueues the timer in front | 
 | 858 | 		 * of the queue. | 
 | 859 | 		 */ | 
 | 860 | 		if (tim.tv64 < 0) | 
 | 861 | 			tim.tv64 = KTIME_MAX; | 
| Ingo Molnar | 06027bd | 2006-02-14 13:53:15 -0800 | [diff] [blame] | 862 | 	} | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 863 | 	timer->expires = tim; | 
 | 864 |  | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 865 | 	timer_stats_hrtimer_set_start_info(timer); | 
 | 866 |  | 
| Ingo Molnar | 935c631 | 2007-03-28 13:17:18 +0200 | [diff] [blame] | 867 | 	/* | 
 | 868 | 	 * Only allow reprogramming if the new base is on this CPU. | 
 | 869 | 	 * (it might still be on another CPU if the timer was pending) | 
 | 870 | 	 */ | 
 | 871 | 	enqueue_hrtimer(timer, new_base, | 
 | 872 | 			new_base->cpu_base == &__get_cpu_var(hrtimer_bases)); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 873 |  | 
 | 874 | 	unlock_hrtimer_base(timer, &flags); | 
 | 875 |  | 
 | 876 | 	return ret; | 
 | 877 | } | 
| Stephen Hemminger | 8d16b76 | 2006-05-30 21:26:09 -0700 | [diff] [blame] | 878 | EXPORT_SYMBOL_GPL(hrtimer_start); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 879 |  | 
 | 880 | /** | 
 | 881 |  * hrtimer_try_to_cancel - try to deactivate a timer | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 882 |  * @timer:	hrtimer to stop | 
 | 883 |  * | 
 | 884 |  * Returns: | 
 | 885 |  *  0 when the timer was not active | 
 | 886 |  *  1 when the timer was active | 
 | 887 |  * -1 when the timer is currently excuting the callback function and | 
| Randy Dunlap | fa9799e | 2006-06-25 05:49:15 -0700 | [diff] [blame] | 888 |  *    cannot be stopped | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 889 |  */ | 
 | 890 | int hrtimer_try_to_cancel(struct hrtimer *timer) | 
 | 891 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 892 | 	struct hrtimer_clock_base *base; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 893 | 	unsigned long flags; | 
 | 894 | 	int ret = -1; | 
 | 895 |  | 
 | 896 | 	base = lock_hrtimer_base(timer, &flags); | 
 | 897 |  | 
| Thomas Gleixner | 303e967 | 2007-02-16 01:27:51 -0800 | [diff] [blame] | 898 | 	if (!hrtimer_callback_running(timer)) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 899 | 		ret = remove_hrtimer(timer, base); | 
 | 900 |  | 
 | 901 | 	unlock_hrtimer_base(timer, &flags); | 
 | 902 |  | 
 | 903 | 	return ret; | 
 | 904 |  | 
 | 905 | } | 
| Stephen Hemminger | 8d16b76 | 2006-05-30 21:26:09 -0700 | [diff] [blame] | 906 | EXPORT_SYMBOL_GPL(hrtimer_try_to_cancel); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 907 |  | 
 | 908 | /** | 
 | 909 |  * hrtimer_cancel - cancel a timer and wait for the handler to finish. | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 910 |  * @timer:	the timer to be cancelled | 
 | 911 |  * | 
 | 912 |  * Returns: | 
 | 913 |  *  0 when the timer was not active | 
 | 914 |  *  1 when the timer was active | 
 | 915 |  */ | 
 | 916 | int hrtimer_cancel(struct hrtimer *timer) | 
 | 917 | { | 
 | 918 | 	for (;;) { | 
 | 919 | 		int ret = hrtimer_try_to_cancel(timer); | 
 | 920 |  | 
 | 921 | 		if (ret >= 0) | 
 | 922 | 			return ret; | 
| Joe Korty | 5ef37b1 | 2006-04-10 22:54:13 -0700 | [diff] [blame] | 923 | 		cpu_relax(); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 924 | 	} | 
 | 925 | } | 
| Stephen Hemminger | 8d16b76 | 2006-05-30 21:26:09 -0700 | [diff] [blame] | 926 | EXPORT_SYMBOL_GPL(hrtimer_cancel); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 927 |  | 
 | 928 | /** | 
 | 929 |  * hrtimer_get_remaining - get remaining time for the timer | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 930 |  * @timer:	the timer to read | 
 | 931 |  */ | 
 | 932 | ktime_t hrtimer_get_remaining(const struct hrtimer *timer) | 
 | 933 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 934 | 	struct hrtimer_clock_base *base; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 935 | 	unsigned long flags; | 
 | 936 | 	ktime_t rem; | 
 | 937 |  | 
 | 938 | 	base = lock_hrtimer_base(timer, &flags); | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 939 | 	rem = ktime_sub(timer->expires, base->get_time()); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 940 | 	unlock_hrtimer_base(timer, &flags); | 
 | 941 |  | 
 | 942 | 	return rem; | 
 | 943 | } | 
| Stephen Hemminger | 8d16b76 | 2006-05-30 21:26:09 -0700 | [diff] [blame] | 944 | EXPORT_SYMBOL_GPL(hrtimer_get_remaining); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 945 |  | 
| Thomas Gleixner | fd064b9 | 2007-02-16 01:27:47 -0800 | [diff] [blame] | 946 | #if defined(CONFIG_NO_IDLE_HZ) || defined(CONFIG_NO_HZ) | 
| Tony Lindgren | 6923974 | 2006-03-06 15:42:45 -0800 | [diff] [blame] | 947 | /** | 
 | 948 |  * hrtimer_get_next_event - get the time until next expiry event | 
 | 949 |  * | 
 | 950 |  * Returns the delta to the next expiry event or KTIME_MAX if no timer | 
 | 951 |  * is pending. | 
 | 952 |  */ | 
 | 953 | ktime_t hrtimer_get_next_event(void) | 
 | 954 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 955 | 	struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases); | 
 | 956 | 	struct hrtimer_clock_base *base = cpu_base->clock_base; | 
| Tony Lindgren | 6923974 | 2006-03-06 15:42:45 -0800 | [diff] [blame] | 957 | 	ktime_t delta, mindelta = { .tv64 = KTIME_MAX }; | 
 | 958 | 	unsigned long flags; | 
 | 959 | 	int i; | 
 | 960 |  | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 961 | 	spin_lock_irqsave(&cpu_base->lock, flags); | 
 | 962 |  | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 963 | 	if (!hrtimer_hres_active()) { | 
 | 964 | 		for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) { | 
 | 965 | 			struct hrtimer *timer; | 
| Tony Lindgren | 6923974 | 2006-03-06 15:42:45 -0800 | [diff] [blame] | 966 |  | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 967 | 			if (!base->first) | 
 | 968 | 				continue; | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 969 |  | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 970 | 			timer = rb_entry(base->first, struct hrtimer, node); | 
 | 971 | 			delta.tv64 = timer->expires.tv64; | 
 | 972 | 			delta = ktime_sub(delta, base->get_time()); | 
 | 973 | 			if (delta.tv64 < mindelta.tv64) | 
 | 974 | 				mindelta.tv64 = delta.tv64; | 
 | 975 | 		} | 
| Tony Lindgren | 6923974 | 2006-03-06 15:42:45 -0800 | [diff] [blame] | 976 | 	} | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 977 |  | 
 | 978 | 	spin_unlock_irqrestore(&cpu_base->lock, flags); | 
 | 979 |  | 
| Tony Lindgren | 6923974 | 2006-03-06 15:42:45 -0800 | [diff] [blame] | 980 | 	if (mindelta.tv64 < 0) | 
 | 981 | 		mindelta.tv64 = 0; | 
 | 982 | 	return mindelta; | 
 | 983 | } | 
 | 984 | #endif | 
 | 985 |  | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 986 | /** | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 987 |  * hrtimer_init - initialize a timer to the given clock | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 988 |  * @timer:	the timer to be initialized | 
 | 989 |  * @clock_id:	the clock to be used | 
| George Anzinger | 7978672 | 2006-02-01 03:05:11 -0800 | [diff] [blame] | 990 |  * @mode:	timer mode abs/rel | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 991 |  */ | 
| George Anzinger | 7978672 | 2006-02-01 03:05:11 -0800 | [diff] [blame] | 992 | void hrtimer_init(struct hrtimer *timer, clockid_t clock_id, | 
 | 993 | 		  enum hrtimer_mode mode) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 994 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 995 | 	struct hrtimer_cpu_base *cpu_base; | 
| George Anzinger | 7978672 | 2006-02-01 03:05:11 -0800 | [diff] [blame] | 996 |  | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 997 | 	memset(timer, 0, sizeof(struct hrtimer)); | 
| George Anzinger | 7978672 | 2006-02-01 03:05:11 -0800 | [diff] [blame] | 998 |  | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 999 | 	cpu_base = &__raw_get_cpu_var(hrtimer_bases); | 
| George Anzinger | 7978672 | 2006-02-01 03:05:11 -0800 | [diff] [blame] | 1000 |  | 
| Thomas Gleixner | c9cb2e3 | 2007-02-16 01:27:49 -0800 | [diff] [blame] | 1001 | 	if (clock_id == CLOCK_REALTIME && mode != HRTIMER_MODE_ABS) | 
| George Anzinger | 7978672 | 2006-02-01 03:05:11 -0800 | [diff] [blame] | 1002 | 		clock_id = CLOCK_MONOTONIC; | 
 | 1003 |  | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 1004 | 	timer->base = &cpu_base->clock_base[clock_id]; | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1005 | 	INIT_LIST_HEAD(&timer->cb_entry); | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1006 | 	hrtimer_init_timer_hres(timer); | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 1007 |  | 
 | 1008 | #ifdef CONFIG_TIMER_STATS | 
 | 1009 | 	timer->start_site = NULL; | 
 | 1010 | 	timer->start_pid = -1; | 
 | 1011 | 	memset(timer->start_comm, 0, TASK_COMM_LEN); | 
 | 1012 | #endif | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1013 | } | 
| Stephen Hemminger | 8d16b76 | 2006-05-30 21:26:09 -0700 | [diff] [blame] | 1014 | EXPORT_SYMBOL_GPL(hrtimer_init); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1015 |  | 
 | 1016 | /** | 
 | 1017 |  * hrtimer_get_res - get the timer resolution for a clock | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1018 |  * @which_clock: which clock to query | 
 | 1019 |  * @tp:		 pointer to timespec variable to store the resolution | 
 | 1020 |  * | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 1021 |  * Store the resolution of the clock selected by @which_clock in the | 
 | 1022 |  * variable pointed to by @tp. | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1023 |  */ | 
 | 1024 | int hrtimer_get_res(const clockid_t which_clock, struct timespec *tp) | 
 | 1025 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 1026 | 	struct hrtimer_cpu_base *cpu_base; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1027 |  | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 1028 | 	cpu_base = &__raw_get_cpu_var(hrtimer_bases); | 
 | 1029 | 	*tp = ktime_to_timespec(cpu_base->clock_base[which_clock].resolution); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1030 |  | 
 | 1031 | 	return 0; | 
 | 1032 | } | 
| Stephen Hemminger | 8d16b76 | 2006-05-30 21:26:09 -0700 | [diff] [blame] | 1033 | EXPORT_SYMBOL_GPL(hrtimer_get_res); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1034 |  | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1035 | static void run_hrtimer_pending(struct hrtimer_cpu_base *cpu_base) | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1036 | { | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1037 | 	spin_lock_irq(&cpu_base->lock); | 
 | 1038 |  | 
 | 1039 | 	while (!list_empty(&cpu_base->cb_pending)) { | 
 | 1040 | 		enum hrtimer_restart (*fn)(struct hrtimer *); | 
 | 1041 | 		struct hrtimer *timer; | 
 | 1042 | 		int restart; | 
 | 1043 |  | 
 | 1044 | 		timer = list_entry(cpu_base->cb_pending.next, | 
 | 1045 | 				   struct hrtimer, cb_entry); | 
 | 1046 |  | 
| Ingo Molnar | 82f67cd | 2007-02-16 01:28:13 -0800 | [diff] [blame] | 1047 | 		timer_stats_account_hrtimer(timer); | 
 | 1048 |  | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1049 | 		fn = timer->function; | 
 | 1050 | 		__remove_hrtimer(timer, timer->base, HRTIMER_STATE_CALLBACK, 0); | 
 | 1051 | 		spin_unlock_irq(&cpu_base->lock); | 
 | 1052 |  | 
 | 1053 | 		restart = fn(timer); | 
 | 1054 |  | 
 | 1055 | 		spin_lock_irq(&cpu_base->lock); | 
 | 1056 |  | 
 | 1057 | 		timer->state &= ~HRTIMER_STATE_CALLBACK; | 
 | 1058 | 		if (restart == HRTIMER_RESTART) { | 
 | 1059 | 			BUG_ON(hrtimer_active(timer)); | 
 | 1060 | 			/* | 
 | 1061 | 			 * Enqueue the timer, allow reprogramming of the event | 
 | 1062 | 			 * device | 
 | 1063 | 			 */ | 
 | 1064 | 			enqueue_hrtimer(timer, timer->base, 1); | 
 | 1065 | 		} else if (hrtimer_active(timer)) { | 
 | 1066 | 			/* | 
 | 1067 | 			 * If the timer was rearmed on another CPU, reprogram | 
 | 1068 | 			 * the event device. | 
 | 1069 | 			 */ | 
 | 1070 | 			if (timer->base->first == &timer->node) | 
 | 1071 | 				hrtimer_reprogram(timer, timer->base); | 
 | 1072 | 		} | 
 | 1073 | 	} | 
 | 1074 | 	spin_unlock_irq(&cpu_base->lock); | 
 | 1075 | } | 
 | 1076 |  | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1077 | static void __run_hrtimer(struct hrtimer *timer) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1078 | { | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1079 | 	struct hrtimer_clock_base *base = timer->base; | 
 | 1080 | 	struct hrtimer_cpu_base *cpu_base = base->cpu_base; | 
 | 1081 | 	enum hrtimer_restart (*fn)(struct hrtimer *); | 
 | 1082 | 	int restart; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1083 |  | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1084 | 	__remove_hrtimer(timer, base, HRTIMER_STATE_CALLBACK, 0); | 
 | 1085 | 	timer_stats_account_hrtimer(timer); | 
| Dimitri Sivanich | 3055add | 2006-03-31 02:31:20 -0800 | [diff] [blame] | 1086 |  | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1087 | 	fn = timer->function; | 
 | 1088 | 	if (timer->cb_mode == HRTIMER_CB_IRQSAFE_NO_SOFTIRQ) { | 
 | 1089 | 		/* | 
 | 1090 | 		 * Used for scheduler timers, avoid lock inversion with | 
 | 1091 | 		 * rq->lock and tasklist_lock. | 
 | 1092 | 		 * | 
 | 1093 | 		 * These timers are required to deal with enqueue expiry | 
 | 1094 | 		 * themselves and are not allowed to migrate. | 
 | 1095 | 		 */ | 
 | 1096 | 		spin_unlock(&cpu_base->lock); | 
 | 1097 | 		restart = fn(timer); | 
 | 1098 | 		spin_lock(&cpu_base->lock); | 
 | 1099 | 	} else | 
| Roman Zippel | 05cfb61 | 2006-03-26 01:38:12 -0800 | [diff] [blame] | 1100 | 		restart = fn(timer); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1101 |  | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1102 | 	/* | 
 | 1103 | 	 * Note: We clear the CALLBACK bit after enqueue_hrtimer to avoid | 
 | 1104 | 	 * reprogramming of the event hardware. This happens at the end of this | 
 | 1105 | 	 * function anyway. | 
 | 1106 | 	 */ | 
 | 1107 | 	if (restart != HRTIMER_NORESTART) { | 
 | 1108 | 		BUG_ON(timer->state != HRTIMER_STATE_CALLBACK); | 
 | 1109 | 		enqueue_hrtimer(timer, base, 0); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1110 | 	} | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1111 | 	timer->state &= ~HRTIMER_STATE_CALLBACK; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1112 | } | 
 | 1113 |  | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1114 | #ifdef CONFIG_HIGH_RES_TIMERS | 
 | 1115 |  | 
 | 1116 | /* | 
 | 1117 |  * High resolution timer interrupt | 
 | 1118 |  * Called with interrupts disabled | 
 | 1119 |  */ | 
 | 1120 | void hrtimer_interrupt(struct clock_event_device *dev) | 
 | 1121 | { | 
 | 1122 | 	struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases); | 
 | 1123 | 	struct hrtimer_clock_base *base; | 
 | 1124 | 	ktime_t expires_next, now; | 
 | 1125 | 	int i, raise = 0; | 
 | 1126 |  | 
 | 1127 | 	BUG_ON(!cpu_base->hres_active); | 
 | 1128 | 	cpu_base->nr_events++; | 
 | 1129 | 	dev->next_event.tv64 = KTIME_MAX; | 
 | 1130 |  | 
 | 1131 |  retry: | 
 | 1132 | 	now = ktime_get(); | 
 | 1133 |  | 
 | 1134 | 	expires_next.tv64 = KTIME_MAX; | 
 | 1135 |  | 
 | 1136 | 	base = cpu_base->clock_base; | 
 | 1137 |  | 
 | 1138 | 	for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) { | 
 | 1139 | 		ktime_t basenow; | 
 | 1140 | 		struct rb_node *node; | 
 | 1141 |  | 
 | 1142 | 		spin_lock(&cpu_base->lock); | 
 | 1143 |  | 
 | 1144 | 		basenow = ktime_add(now, base->offset); | 
 | 1145 |  | 
 | 1146 | 		while ((node = base->first)) { | 
 | 1147 | 			struct hrtimer *timer; | 
 | 1148 |  | 
 | 1149 | 			timer = rb_entry(node, struct hrtimer, node); | 
 | 1150 |  | 
 | 1151 | 			if (basenow.tv64 < timer->expires.tv64) { | 
 | 1152 | 				ktime_t expires; | 
 | 1153 |  | 
 | 1154 | 				expires = ktime_sub(timer->expires, | 
 | 1155 | 						    base->offset); | 
 | 1156 | 				if (expires.tv64 < expires_next.tv64) | 
 | 1157 | 					expires_next = expires; | 
 | 1158 | 				break; | 
 | 1159 | 			} | 
 | 1160 |  | 
 | 1161 | 			/* Move softirq callbacks to the pending list */ | 
 | 1162 | 			if (timer->cb_mode == HRTIMER_CB_SOFTIRQ) { | 
 | 1163 | 				__remove_hrtimer(timer, base, | 
 | 1164 | 						 HRTIMER_STATE_PENDING, 0); | 
 | 1165 | 				list_add_tail(&timer->cb_entry, | 
 | 1166 | 					      &base->cpu_base->cb_pending); | 
 | 1167 | 				raise = 1; | 
 | 1168 | 				continue; | 
 | 1169 | 			} | 
 | 1170 |  | 
 | 1171 | 			__run_hrtimer(timer); | 
 | 1172 | 		} | 
 | 1173 | 		spin_unlock(&cpu_base->lock); | 
 | 1174 | 		base++; | 
 | 1175 | 	} | 
 | 1176 |  | 
 | 1177 | 	cpu_base->expires_next = expires_next; | 
 | 1178 |  | 
 | 1179 | 	/* Reprogramming necessary ? */ | 
 | 1180 | 	if (expires_next.tv64 != KTIME_MAX) { | 
 | 1181 | 		if (tick_program_event(expires_next, 0)) | 
 | 1182 | 			goto retry; | 
 | 1183 | 	} | 
 | 1184 |  | 
 | 1185 | 	/* Raise softirq ? */ | 
 | 1186 | 	if (raise) | 
 | 1187 | 		raise_softirq(HRTIMER_SOFTIRQ); | 
 | 1188 | } | 
 | 1189 |  | 
 | 1190 | static void run_hrtimer_softirq(struct softirq_action *h) | 
 | 1191 | { | 
 | 1192 | 	run_hrtimer_pending(&__get_cpu_var(hrtimer_bases)); | 
 | 1193 | } | 
 | 1194 |  | 
 | 1195 | #endif	/* CONFIG_HIGH_RES_TIMERS */ | 
 | 1196 |  | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1197 | /* | 
 | 1198 |  * Called from timer softirq every jiffy, expire hrtimers: | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1199 |  * | 
 | 1200 |  * For HRT its the fall back code to run the softirq in the timer | 
 | 1201 |  * softirq context in case the hrtimer initialization failed or has | 
 | 1202 |  * not been done yet. | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1203 |  */ | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1204 | void hrtimer_run_pending(void) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1205 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 1206 | 	struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1207 |  | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1208 | 	if (hrtimer_hres_active()) | 
 | 1209 | 		return; | 
 | 1210 |  | 
| Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 1211 | 	/* | 
 | 1212 | 	 * This _is_ ugly: We have to check in the softirq context, | 
 | 1213 | 	 * whether we can switch to highres and / or nohz mode. The | 
 | 1214 | 	 * clocksource switch happens in the timer interrupt with | 
 | 1215 | 	 * xtime_lock held. Notification from there only sets the | 
 | 1216 | 	 * check bit in the tick_oneshot code, otherwise we might | 
 | 1217 | 	 * deadlock vs. xtime_lock. | 
 | 1218 | 	 */ | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1219 | 	if (tick_check_oneshot_change(!hrtimer_is_hres_enabled())) | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1220 | 		hrtimer_switch_to_hres(); | 
 | 1221 |  | 
 | 1222 | 	run_hrtimer_pending(cpu_base); | 
 | 1223 | } | 
 | 1224 |  | 
 | 1225 | /* | 
 | 1226 |  * Called from hardirq context every jiffy | 
 | 1227 |  */ | 
 | 1228 | static inline void run_hrtimer_queue(struct hrtimer_cpu_base *cpu_base, | 
 | 1229 | 				     int index) | 
 | 1230 | { | 
 | 1231 | 	struct rb_node *node; | 
 | 1232 | 	struct hrtimer_clock_base *base = &cpu_base->clock_base[index]; | 
 | 1233 |  | 
 | 1234 | 	if (!base->first) | 
 | 1235 | 		return; | 
 | 1236 |  | 
 | 1237 | 	if (base->get_softirq_time) | 
 | 1238 | 		base->softirq_time = base->get_softirq_time(); | 
 | 1239 |  | 
 | 1240 | 	spin_lock(&cpu_base->lock); | 
 | 1241 |  | 
 | 1242 | 	while ((node = base->first)) { | 
 | 1243 | 		struct hrtimer *timer; | 
 | 1244 |  | 
 | 1245 | 		timer = rb_entry(node, struct hrtimer, node); | 
 | 1246 | 		if (base->softirq_time.tv64 <= timer->expires.tv64) | 
 | 1247 | 			break; | 
 | 1248 |  | 
 | 1249 | 		if (timer->cb_mode == HRTIMER_CB_SOFTIRQ) { | 
 | 1250 | 			__remove_hrtimer(timer, base, HRTIMER_STATE_PENDING, 0); | 
 | 1251 | 			list_add_tail(&timer->cb_entry, | 
 | 1252 | 					&base->cpu_base->cb_pending); | 
 | 1253 | 			continue; | 
 | 1254 | 		} | 
 | 1255 |  | 
 | 1256 | 		__run_hrtimer(timer); | 
 | 1257 | 	} | 
 | 1258 | 	spin_unlock(&cpu_base->lock); | 
 | 1259 | } | 
 | 1260 |  | 
 | 1261 | void hrtimer_run_queues(void) | 
 | 1262 | { | 
 | 1263 | 	struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases); | 
 | 1264 | 	int i; | 
 | 1265 |  | 
 | 1266 | 	if (hrtimer_hres_active()) | 
 | 1267 | 		return; | 
| Thomas Gleixner | 79bf2bb | 2007-02-16 01:28:03 -0800 | [diff] [blame] | 1268 |  | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 1269 | 	hrtimer_get_softirq_time(cpu_base); | 
| Thomas Gleixner | 92127c7 | 2006-03-26 01:38:05 -0800 | [diff] [blame] | 1270 |  | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 1271 | 	for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) | 
 | 1272 | 		run_hrtimer_queue(cpu_base, i); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1273 | } | 
 | 1274 |  | 
 | 1275 | /* | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1276 |  * Sleep related functions: | 
 | 1277 |  */ | 
| Thomas Gleixner | c9cb2e3 | 2007-02-16 01:27:49 -0800 | [diff] [blame] | 1278 | static enum hrtimer_restart hrtimer_wakeup(struct hrtimer *timer) | 
| Thomas Gleixner | 00362e3 | 2006-03-31 02:31:17 -0800 | [diff] [blame] | 1279 | { | 
 | 1280 | 	struct hrtimer_sleeper *t = | 
 | 1281 | 		container_of(timer, struct hrtimer_sleeper, timer); | 
 | 1282 | 	struct task_struct *task = t->task; | 
 | 1283 |  | 
 | 1284 | 	t->task = NULL; | 
 | 1285 | 	if (task) | 
 | 1286 | 		wake_up_process(task); | 
 | 1287 |  | 
 | 1288 | 	return HRTIMER_NORESTART; | 
 | 1289 | } | 
 | 1290 |  | 
| Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1291 | void hrtimer_init_sleeper(struct hrtimer_sleeper *sl, struct task_struct *task) | 
| Thomas Gleixner | 00362e3 | 2006-03-31 02:31:17 -0800 | [diff] [blame] | 1292 | { | 
 | 1293 | 	sl->timer.function = hrtimer_wakeup; | 
 | 1294 | 	sl->task = task; | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1295 | #ifdef CONFIG_HIGH_RES_TIMERS | 
| Peter Zijlstra | 37bb6cb | 2008-01-25 21:08:32 +0100 | [diff] [blame] | 1296 | 	sl->timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ; | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1297 | #endif | 
| Thomas Gleixner | 00362e3 | 2006-03-31 02:31:17 -0800 | [diff] [blame] | 1298 | } | 
 | 1299 |  | 
| Thomas Gleixner | 669d786 | 2006-03-31 02:31:19 -0800 | [diff] [blame] | 1300 | static int __sched do_nanosleep(struct hrtimer_sleeper *t, enum hrtimer_mode mode) | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1301 | { | 
| Thomas Gleixner | 669d786 | 2006-03-31 02:31:19 -0800 | [diff] [blame] | 1302 | 	hrtimer_init_sleeper(t, current); | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1303 |  | 
| Roman Zippel | 432569b | 2006-03-26 01:38:08 -0800 | [diff] [blame] | 1304 | 	do { | 
 | 1305 | 		set_current_state(TASK_INTERRUPTIBLE); | 
 | 1306 | 		hrtimer_start(&t->timer, t->timer.expires, mode); | 
| Peter Zijlstra | 37bb6cb | 2008-01-25 21:08:32 +0100 | [diff] [blame] | 1307 | 		if (!hrtimer_active(&t->timer)) | 
 | 1308 | 			t->task = NULL; | 
| Roman Zippel | 432569b | 2006-03-26 01:38:08 -0800 | [diff] [blame] | 1309 |  | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1310 | 		if (likely(t->task)) | 
 | 1311 | 			schedule(); | 
| Roman Zippel | 432569b | 2006-03-26 01:38:08 -0800 | [diff] [blame] | 1312 |  | 
| Thomas Gleixner | 669d786 | 2006-03-31 02:31:19 -0800 | [diff] [blame] | 1313 | 		hrtimer_cancel(&t->timer); | 
| Thomas Gleixner | c9cb2e3 | 2007-02-16 01:27:49 -0800 | [diff] [blame] | 1314 | 		mode = HRTIMER_MODE_ABS; | 
| Roman Zippel | 432569b | 2006-03-26 01:38:08 -0800 | [diff] [blame] | 1315 |  | 
| Thomas Gleixner | 669d786 | 2006-03-31 02:31:19 -0800 | [diff] [blame] | 1316 | 	} while (t->task && !signal_pending(current)); | 
 | 1317 |  | 
 | 1318 | 	return t->task == NULL; | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1319 | } | 
 | 1320 |  | 
| Toyo Abe | 1711ef3 | 2006-09-29 02:00:28 -0700 | [diff] [blame] | 1321 | long __sched hrtimer_nanosleep_restart(struct restart_block *restart) | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1322 | { | 
| Thomas Gleixner | 669d786 | 2006-03-31 02:31:19 -0800 | [diff] [blame] | 1323 | 	struct hrtimer_sleeper t; | 
| Anton Blanchard | 04c2271 | 2007-10-15 16:06:04 -0500 | [diff] [blame] | 1324 | 	struct timespec *rmtp; | 
| Roman Zippel | 432569b | 2006-03-26 01:38:08 -0800 | [diff] [blame] | 1325 | 	ktime_t time; | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1326 |  | 
 | 1327 | 	restart->fn = do_no_restart_syscall; | 
 | 1328 |  | 
| Thomas Gleixner | c9cb2e3 | 2007-02-16 01:27:49 -0800 | [diff] [blame] | 1329 | 	hrtimer_init(&t.timer, restart->arg0, HRTIMER_MODE_ABS); | 
| Toyo Abe | 1711ef3 | 2006-09-29 02:00:28 -0700 | [diff] [blame] | 1330 | 	t.timer.expires.tv64 = ((u64)restart->arg3 << 32) | (u64) restart->arg2; | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1331 |  | 
| Thomas Gleixner | c9cb2e3 | 2007-02-16 01:27:49 -0800 | [diff] [blame] | 1332 | 	if (do_nanosleep(&t, HRTIMER_MODE_ABS)) | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1333 | 		return 0; | 
 | 1334 |  | 
| Anton Blanchard | 04c2271 | 2007-10-15 16:06:04 -0500 | [diff] [blame] | 1335 | 	rmtp = (struct timespec *)restart->arg1; | 
| Roman Zippel | 432569b | 2006-03-26 01:38:08 -0800 | [diff] [blame] | 1336 | 	if (rmtp) { | 
 | 1337 | 		time = ktime_sub(t.timer.expires, t.timer.base->get_time()); | 
 | 1338 | 		if (time.tv64 <= 0) | 
 | 1339 | 			return 0; | 
| Anton Blanchard | 04c2271 | 2007-10-15 16:06:04 -0500 | [diff] [blame] | 1340 | 		*rmtp = ktime_to_timespec(time); | 
| Roman Zippel | 432569b | 2006-03-26 01:38:08 -0800 | [diff] [blame] | 1341 | 	} | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1342 |  | 
| Toyo Abe | 1711ef3 | 2006-09-29 02:00:28 -0700 | [diff] [blame] | 1343 | 	restart->fn = hrtimer_nanosleep_restart; | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1344 |  | 
 | 1345 | 	/* The other values in restart are already filled in */ | 
 | 1346 | 	return -ERESTART_RESTARTBLOCK; | 
 | 1347 | } | 
 | 1348 |  | 
| Anton Blanchard | 04c2271 | 2007-10-15 16:06:04 -0500 | [diff] [blame] | 1349 | long hrtimer_nanosleep(struct timespec *rqtp, struct timespec *rmtp, | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1350 | 		       const enum hrtimer_mode mode, const clockid_t clockid) | 
 | 1351 | { | 
 | 1352 | 	struct restart_block *restart; | 
| Thomas Gleixner | 669d786 | 2006-03-31 02:31:19 -0800 | [diff] [blame] | 1353 | 	struct hrtimer_sleeper t; | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1354 | 	ktime_t rem; | 
 | 1355 |  | 
| Roman Zippel | 432569b | 2006-03-26 01:38:08 -0800 | [diff] [blame] | 1356 | 	hrtimer_init(&t.timer, clockid, mode); | 
 | 1357 | 	t.timer.expires = timespec_to_ktime(*rqtp); | 
 | 1358 | 	if (do_nanosleep(&t, mode)) | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1359 | 		return 0; | 
 | 1360 |  | 
| George Anzinger | 7978672 | 2006-02-01 03:05:11 -0800 | [diff] [blame] | 1361 | 	/* Absolute timers do not update the rmtp value and restart: */ | 
| Thomas Gleixner | c9cb2e3 | 2007-02-16 01:27:49 -0800 | [diff] [blame] | 1362 | 	if (mode == HRTIMER_MODE_ABS) | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1363 | 		return -ERESTARTNOHAND; | 
 | 1364 |  | 
| Roman Zippel | 432569b | 2006-03-26 01:38:08 -0800 | [diff] [blame] | 1365 | 	if (rmtp) { | 
 | 1366 | 		rem = ktime_sub(t.timer.expires, t.timer.base->get_time()); | 
 | 1367 | 		if (rem.tv64 <= 0) | 
 | 1368 | 			return 0; | 
| Anton Blanchard | 04c2271 | 2007-10-15 16:06:04 -0500 | [diff] [blame] | 1369 | 		*rmtp = ktime_to_timespec(rem); | 
| Roman Zippel | 432569b | 2006-03-26 01:38:08 -0800 | [diff] [blame] | 1370 | 	} | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1371 |  | 
 | 1372 | 	restart = ¤t_thread_info()->restart_block; | 
| Toyo Abe | 1711ef3 | 2006-09-29 02:00:28 -0700 | [diff] [blame] | 1373 | 	restart->fn = hrtimer_nanosleep_restart; | 
 | 1374 | 	restart->arg0 = (unsigned long) t.timer.base->index; | 
 | 1375 | 	restart->arg1 = (unsigned long) rmtp; | 
 | 1376 | 	restart->arg2 = t.timer.expires.tv64 & 0xFFFFFFFF; | 
 | 1377 | 	restart->arg3 = t.timer.expires.tv64 >> 32; | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1378 |  | 
 | 1379 | 	return -ERESTART_RESTARTBLOCK; | 
 | 1380 | } | 
 | 1381 |  | 
| Thomas Gleixner | 6ba1b91 | 2006-01-09 20:52:36 -0800 | [diff] [blame] | 1382 | asmlinkage long | 
 | 1383 | sys_nanosleep(struct timespec __user *rqtp, struct timespec __user *rmtp) | 
 | 1384 | { | 
| Anton Blanchard | 04c2271 | 2007-10-15 16:06:04 -0500 | [diff] [blame] | 1385 | 	struct timespec tu, rmt; | 
 | 1386 | 	int ret; | 
| Thomas Gleixner | 6ba1b91 | 2006-01-09 20:52:36 -0800 | [diff] [blame] | 1387 |  | 
 | 1388 | 	if (copy_from_user(&tu, rqtp, sizeof(tu))) | 
 | 1389 | 		return -EFAULT; | 
 | 1390 |  | 
 | 1391 | 	if (!timespec_valid(&tu)) | 
 | 1392 | 		return -EINVAL; | 
 | 1393 |  | 
| Anton Blanchard | 04c2271 | 2007-10-15 16:06:04 -0500 | [diff] [blame] | 1394 | 	ret = hrtimer_nanosleep(&tu, rmtp ? &rmt : NULL, HRTIMER_MODE_REL, | 
 | 1395 | 				CLOCK_MONOTONIC); | 
 | 1396 |  | 
 | 1397 | 	if (ret && rmtp) { | 
 | 1398 | 		if (copy_to_user(rmtp, &rmt, sizeof(*rmtp))) | 
 | 1399 | 			return -EFAULT; | 
 | 1400 | 	} | 
 | 1401 |  | 
 | 1402 | 	return ret; | 
| Thomas Gleixner | 6ba1b91 | 2006-01-09 20:52:36 -0800 | [diff] [blame] | 1403 | } | 
 | 1404 |  | 
| Thomas Gleixner | 10c94ec | 2006-01-09 20:52:35 -0800 | [diff] [blame] | 1405 | /* | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1406 |  * Functions related to boot-time initialization: | 
 | 1407 |  */ | 
| Randy Dunlap | 0ec160d | 2008-01-21 17:18:24 -0800 | [diff] [blame] | 1408 | static void __cpuinit init_hrtimers_cpu(int cpu) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1409 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 1410 | 	struct hrtimer_cpu_base *cpu_base = &per_cpu(hrtimer_bases, cpu); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1411 | 	int i; | 
 | 1412 |  | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 1413 | 	spin_lock_init(&cpu_base->lock); | 
 | 1414 | 	lockdep_set_class(&cpu_base->lock, &cpu_base->lock_key); | 
 | 1415 |  | 
 | 1416 | 	for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) | 
 | 1417 | 		cpu_base->clock_base[i].cpu_base = cpu_base; | 
 | 1418 |  | 
| Peter Zijlstra | d3d7445 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 1419 | 	INIT_LIST_HEAD(&cpu_base->cb_pending); | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1420 | 	hrtimer_init_hres(cpu_base); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1421 | } | 
 | 1422 |  | 
 | 1423 | #ifdef CONFIG_HOTPLUG_CPU | 
 | 1424 |  | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 1425 | static void migrate_hrtimer_list(struct hrtimer_clock_base *old_base, | 
 | 1426 | 				struct hrtimer_clock_base *new_base) | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1427 | { | 
 | 1428 | 	struct hrtimer *timer; | 
 | 1429 | 	struct rb_node *node; | 
 | 1430 |  | 
 | 1431 | 	while ((node = rb_first(&old_base->active))) { | 
 | 1432 | 		timer = rb_entry(node, struct hrtimer, node); | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1433 | 		BUG_ON(hrtimer_callback_running(timer)); | 
 | 1434 | 		__remove_hrtimer(timer, old_base, HRTIMER_STATE_INACTIVE, 0); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1435 | 		timer->base = new_base; | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1436 | 		/* | 
 | 1437 | 		 * Enqueue the timer. Allow reprogramming of the event device | 
 | 1438 | 		 */ | 
 | 1439 | 		enqueue_hrtimer(timer, new_base, 1); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1440 | 	} | 
 | 1441 | } | 
 | 1442 |  | 
 | 1443 | static void migrate_hrtimers(int cpu) | 
 | 1444 | { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 1445 | 	struct hrtimer_cpu_base *old_base, *new_base; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1446 | 	int i; | 
 | 1447 |  | 
 | 1448 | 	BUG_ON(cpu_online(cpu)); | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 1449 | 	old_base = &per_cpu(hrtimer_bases, cpu); | 
 | 1450 | 	new_base = &get_cpu_var(hrtimer_bases); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1451 |  | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1452 | 	tick_cancel_sched_timer(cpu); | 
 | 1453 |  | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1454 | 	local_irq_disable(); | 
| Heiko Carstens | e81ce1f | 2007-03-05 00:30:51 -0800 | [diff] [blame] | 1455 | 	double_spin_lock(&new_base->lock, &old_base->lock, | 
 | 1456 | 			 smp_processor_id() < cpu); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1457 |  | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 1458 | 	for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) { | 
| Thomas Gleixner | 3c8aa39 | 2007-02-16 01:27:50 -0800 | [diff] [blame] | 1459 | 		migrate_hrtimer_list(&old_base->clock_base[i], | 
 | 1460 | 				     &new_base->clock_base[i]); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1461 | 	} | 
 | 1462 |  | 
| Heiko Carstens | e81ce1f | 2007-03-05 00:30:51 -0800 | [diff] [blame] | 1463 | 	double_spin_unlock(&new_base->lock, &old_base->lock, | 
 | 1464 | 			   smp_processor_id() < cpu); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1465 | 	local_irq_enable(); | 
 | 1466 | 	put_cpu_var(hrtimer_bases); | 
 | 1467 | } | 
 | 1468 | #endif /* CONFIG_HOTPLUG_CPU */ | 
 | 1469 |  | 
| Chandra Seetharaman | 8c78f30 | 2006-07-30 03:03:35 -0700 | [diff] [blame] | 1470 | static int __cpuinit hrtimer_cpu_notify(struct notifier_block *self, | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1471 | 					unsigned long action, void *hcpu) | 
 | 1472 | { | 
| David Miller | 7713a7d | 2007-07-16 17:17:44 -0700 | [diff] [blame] | 1473 | 	unsigned int cpu = (long)hcpu; | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1474 |  | 
 | 1475 | 	switch (action) { | 
 | 1476 |  | 
 | 1477 | 	case CPU_UP_PREPARE: | 
| Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1478 | 	case CPU_UP_PREPARE_FROZEN: | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1479 | 		init_hrtimers_cpu(cpu); | 
 | 1480 | 		break; | 
 | 1481 |  | 
 | 1482 | #ifdef CONFIG_HOTPLUG_CPU | 
 | 1483 | 	case CPU_DEAD: | 
| Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1484 | 	case CPU_DEAD_FROZEN: | 
| Thomas Gleixner | d316c57 | 2007-02-16 01:28:00 -0800 | [diff] [blame] | 1485 | 		clockevents_notify(CLOCK_EVT_NOTIFY_CPU_DEAD, &cpu); | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1486 | 		migrate_hrtimers(cpu); | 
 | 1487 | 		break; | 
 | 1488 | #endif | 
 | 1489 |  | 
 | 1490 | 	default: | 
 | 1491 | 		break; | 
 | 1492 | 	} | 
 | 1493 |  | 
 | 1494 | 	return NOTIFY_OK; | 
 | 1495 | } | 
 | 1496 |  | 
| Chandra Seetharaman | 8c78f30 | 2006-07-30 03:03:35 -0700 | [diff] [blame] | 1497 | static struct notifier_block __cpuinitdata hrtimers_nb = { | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1498 | 	.notifier_call = hrtimer_cpu_notify, | 
 | 1499 | }; | 
 | 1500 |  | 
 | 1501 | void __init hrtimers_init(void) | 
 | 1502 | { | 
 | 1503 | 	hrtimer_cpu_notify(&hrtimers_nb, (unsigned long)CPU_UP_PREPARE, | 
 | 1504 | 			  (void *)(long)smp_processor_id()); | 
 | 1505 | 	register_cpu_notifier(&hrtimers_nb); | 
| Thomas Gleixner | 54cdfdb | 2007-02-16 01:28:11 -0800 | [diff] [blame] | 1506 | #ifdef CONFIG_HIGH_RES_TIMERS | 
 | 1507 | 	open_softirq(HRTIMER_SOFTIRQ, run_hrtimer_softirq, NULL); | 
 | 1508 | #endif | 
| Thomas Gleixner | c0a3132 | 2006-01-09 20:52:32 -0800 | [diff] [blame] | 1509 | } | 
 | 1510 |  |