blob: 809f48c70553f76b837dd43fe7d687b73e3946d4 [file] [log] [blame]
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001/*
2 * linux/kernel/hrtimer.c
3 *
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08004 * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -08005 * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08006 * Copyright(C) 2006-2007 Timesys Corp., Thomas Gleixner
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08007 *
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 Gleixner66188fa2006-02-01 03:05:13 -080025 * Help, testing, suggestions, bugfixes, improvements were
26 * provided by:
27 *
28 * George Anzinger, Andrew Morton, Steven Rostedt, Roman Zippel
29 * et. al.
30 *
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080031 * For licencing details see kernel-base/COPYING
32 */
33
34#include <linux/cpu.h>
35#include <linux/module.h>
36#include <linux/percpu.h>
37#include <linux/hrtimer.h>
38#include <linux/notifier.h>
39#include <linux/syscalls.h>
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080040#include <linux/kallsyms.h>
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080041#include <linux/interrupt.h>
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080042#include <linux/tick.h>
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080043#include <linux/seq_file.h>
44#include <linux/err.h>
Thomas Gleixner237fc6e2008-04-30 00:55:04 -070045#include <linux/debugobjects.h>
Arun R Bharadwajeea08f32009-04-16 12:16:41 +053046#include <linux/sched.h>
47#include <linux/timer.h>
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080048
49#include <asm/uaccess.h>
50
Xiao Guangrongc6a2a172009-08-10 10:51:23 +080051#include <trace/events/timer.h>
52
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080053/*
54 * The timer bases:
George Anzinger7978672c2006-02-01 03:05:11 -080055 *
56 * Note: If we want to add new timer bases, we have to skip the two
57 * clock ids captured by the cpu-timers. We do this by holding empty
58 * entries rather than doing math adjustment of the clock ids.
59 * This ensures that we capture erroneous accesses to these clock ids
60 * rather than moving them into the range of valid clock id's.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080061 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080062DEFINE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases) =
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080063{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080064
65 .clock_base =
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080066 {
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080067 {
68 .index = CLOCK_REALTIME,
69 .get_time = &ktime_get_real,
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080070 .resolution = KTIME_LOW_RES,
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080071 },
72 {
73 .index = CLOCK_MONOTONIC,
74 .get_time = &ktime_get,
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080075 .resolution = KTIME_LOW_RES,
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080076 },
77 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080078};
79
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080080/*
Thomas Gleixner92127c72006-03-26 01:38:05 -080081 * Get the coarse grained time at the softirq based on xtime and
82 * wall_to_monotonic.
83 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080084static void hrtimer_get_softirq_time(struct hrtimer_cpu_base *base)
Thomas Gleixner92127c72006-03-26 01:38:05 -080085{
86 ktime_t xtim, tomono;
Thomas Gleixnerad28d942007-03-16 13:38:21 -080087 struct timespec xts, tom;
Thomas Gleixner92127c72006-03-26 01:38:05 -080088 unsigned long seq;
89
90 do {
91 seq = read_seqbegin(&xtime_lock);
Stanislaw Gruszka174bd192010-05-25 23:49:12 +020092 xts = __current_kernel_time();
John Stultz8ab43512010-07-13 17:56:25 -070093 tom = __get_wall_to_monotonic();
Thomas Gleixner92127c72006-03-26 01:38:05 -080094 } while (read_seqretry(&xtime_lock, seq));
95
john stultzf4304ab2007-02-16 01:27:26 -080096 xtim = timespec_to_ktime(xts);
Thomas Gleixnerad28d942007-03-16 13:38:21 -080097 tomono = timespec_to_ktime(tom);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080098 base->clock_base[CLOCK_REALTIME].softirq_time = xtim;
99 base->clock_base[CLOCK_MONOTONIC].softirq_time =
100 ktime_add(xtim, tomono);
Thomas Gleixner92127c72006-03-26 01:38:05 -0800101}
102
103/*
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800104 * Functions and macros which are different for UP/SMP systems are kept in a
105 * single place
106 */
107#ifdef CONFIG_SMP
108
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800109/*
110 * We are using hashed locking: holding per_cpu(hrtimer_bases)[n].lock
111 * means that all timers which are tied to this base via timer->base are
112 * locked, and the base itself is locked too.
113 *
114 * So __run_timers/migrate_timers can safely modify all timers which could
115 * be found on the lists/queues.
116 *
117 * When the timer's base is locked, and the timer removed from list, it is
118 * possible to set timer->base = NULL and drop the lock: the timer remains
119 * locked.
120 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800121static
122struct hrtimer_clock_base *lock_hrtimer_base(const struct hrtimer *timer,
123 unsigned long *flags)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800124{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800125 struct hrtimer_clock_base *base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800126
127 for (;;) {
128 base = timer->base;
129 if (likely(base != NULL)) {
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100130 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800131 if (likely(base == timer->base))
132 return base;
133 /* The timer has migrated to another CPU: */
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100134 raw_spin_unlock_irqrestore(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800135 }
136 cpu_relax();
137 }
138}
139
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200140
141/*
142 * Get the preferred target CPU for NOHZ
143 */
144static int hrtimer_get_target(int this_cpu, int pinned)
145{
146#ifdef CONFIG_NO_HZ
147 if (!pinned && get_sysctl_timer_migration() && idle_cpu(this_cpu)) {
148 int preferred_cpu = get_nohz_load_balancer();
149
150 if (preferred_cpu >= 0)
151 return preferred_cpu;
152 }
153#endif
154 return this_cpu;
155}
156
157/*
158 * With HIGHRES=y we do not migrate the timer when it is expiring
159 * before the next event on the target cpu because we cannot reprogram
160 * the target cpu hardware and we would cause it to fire late.
161 *
162 * Called with cpu_base->lock of target cpu held.
163 */
164static int
165hrtimer_check_target(struct hrtimer *timer, struct hrtimer_clock_base *new_base)
166{
167#ifdef CONFIG_HIGH_RES_TIMERS
168 ktime_t expires;
169
170 if (!new_base->cpu_base->hres_active)
171 return 0;
172
173 expires = ktime_sub(hrtimer_get_expires(timer), new_base->offset);
174 return expires.tv64 <= new_base->cpu_base->expires_next.tv64;
175#else
176 return 0;
177#endif
178}
179
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800180/*
181 * Switch the timer base to the current CPU when possible.
182 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800183static inline struct hrtimer_clock_base *
Arun R Bharadwaj597d0272009-04-16 12:13:26 +0530184switch_hrtimer_base(struct hrtimer *timer, struct hrtimer_clock_base *base,
185 int pinned)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800186{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800187 struct hrtimer_clock_base *new_base;
188 struct hrtimer_cpu_base *new_cpu_base;
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200189 int this_cpu = smp_processor_id();
190 int cpu = hrtimer_get_target(this_cpu, pinned);
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530191
192again:
193 new_cpu_base = &per_cpu(hrtimer_bases, cpu);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800194 new_base = &new_cpu_base->clock_base[base->index];
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800195
196 if (base != new_base) {
197 /*
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200198 * We are trying to move timer to new_base.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800199 * However we can't change timer's base while it is running,
200 * so we keep it on the same CPU. No hassle vs. reprogramming
201 * the event source in the high resolution case. The softirq
202 * code will take care of this when the timer function has
203 * completed. There is no conflict as we hold the lock until
204 * the timer is enqueued.
205 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800206 if (unlikely(hrtimer_callback_running(timer)))
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800207 return base;
208
209 /* See the comment in lock_timer_base() */
210 timer->base = NULL;
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100211 raw_spin_unlock(&base->cpu_base->lock);
212 raw_spin_lock(&new_base->cpu_base->lock);
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530213
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200214 if (cpu != this_cpu && hrtimer_check_target(timer, new_base)) {
215 cpu = this_cpu;
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100216 raw_spin_unlock(&new_base->cpu_base->lock);
217 raw_spin_lock(&base->cpu_base->lock);
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200218 timer->base = base;
219 goto again;
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530220 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800221 timer->base = new_base;
222 }
223 return new_base;
224}
225
226#else /* CONFIG_SMP */
227
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800228static inline struct hrtimer_clock_base *
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800229lock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
230{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800231 struct hrtimer_clock_base *base = timer->base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800232
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100233 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800234
235 return base;
236}
237
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530238# define switch_hrtimer_base(t, b, p) (b)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800239
240#endif /* !CONFIG_SMP */
241
242/*
243 * Functions for the union type storage format of ktime_t which are
244 * too large for inlining:
245 */
246#if BITS_PER_LONG < 64
247# ifndef CONFIG_KTIME_SCALAR
248/**
249 * ktime_add_ns - Add a scalar nanoseconds value to a ktime_t variable
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800250 * @kt: addend
251 * @nsec: the scalar nsec value to add
252 *
253 * Returns the sum of kt and nsec in ktime_t format
254 */
255ktime_t ktime_add_ns(const ktime_t kt, u64 nsec)
256{
257 ktime_t tmp;
258
259 if (likely(nsec < NSEC_PER_SEC)) {
260 tmp.tv64 = nsec;
261 } else {
262 unsigned long rem = do_div(nsec, NSEC_PER_SEC);
263
264 tmp = ktime_set((long)nsec, rem);
265 }
266
267 return ktime_add(kt, tmp);
268}
David Howellsb8b8fd22007-04-27 15:31:24 -0700269
270EXPORT_SYMBOL_GPL(ktime_add_ns);
Arnaldo Carvalho de Meloa2723782007-08-19 17:16:05 -0700271
272/**
273 * ktime_sub_ns - Subtract a scalar nanoseconds value from a ktime_t variable
274 * @kt: minuend
275 * @nsec: the scalar nsec value to subtract
276 *
277 * Returns the subtraction of @nsec from @kt in ktime_t format
278 */
279ktime_t ktime_sub_ns(const ktime_t kt, u64 nsec)
280{
281 ktime_t tmp;
282
283 if (likely(nsec < NSEC_PER_SEC)) {
284 tmp.tv64 = nsec;
285 } else {
286 unsigned long rem = do_div(nsec, NSEC_PER_SEC);
287
288 tmp = ktime_set((long)nsec, rem);
289 }
290
291 return ktime_sub(kt, tmp);
292}
293
294EXPORT_SYMBOL_GPL(ktime_sub_ns);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800295# endif /* !CONFIG_KTIME_SCALAR */
296
297/*
298 * Divide a ktime value by a nanosecond value
299 */
Davide Libenzi4d672e72008-02-04 22:27:26 -0800300u64 ktime_divns(const ktime_t kt, s64 div)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800301{
Carlos R. Mafra900cfa42008-05-22 19:25:11 -0300302 u64 dclc;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800303 int sft = 0;
304
Carlos R. Mafra900cfa42008-05-22 19:25:11 -0300305 dclc = ktime_to_ns(kt);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800306 /* Make sure the divisor is less than 2^32: */
307 while (div >> 32) {
308 sft++;
309 div >>= 1;
310 }
311 dclc >>= sft;
312 do_div(dclc, (unsigned long) div);
313
Davide Libenzi4d672e72008-02-04 22:27:26 -0800314 return dclc;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800315}
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800316#endif /* BITS_PER_LONG >= 64 */
317
Peter Zijlstrad3d74452008-01-25 21:08:31 +0100318/*
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100319 * Add two ktime values and do a safety check for overflow:
320 */
321ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs)
322{
323 ktime_t res = ktime_add(lhs, rhs);
324
325 /*
326 * We use KTIME_SEC_MAX here, the maximum timeout which we can
327 * return to user space in a timespec:
328 */
329 if (res.tv64 < 0 || res.tv64 < lhs.tv64 || res.tv64 < rhs.tv64)
330 res = ktime_set(KTIME_SEC_MAX, 0);
331
332 return res;
333}
334
Artem Bityutskiy8daa21e2009-05-28 16:21:24 +0300335EXPORT_SYMBOL_GPL(ktime_add_safe);
336
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700337#ifdef CONFIG_DEBUG_OBJECTS_TIMERS
338
339static struct debug_obj_descr hrtimer_debug_descr;
340
341/*
342 * fixup_init is called when:
343 * - an active object is initialized
344 */
345static int hrtimer_fixup_init(void *addr, enum debug_obj_state state)
346{
347 struct hrtimer *timer = addr;
348
349 switch (state) {
350 case ODEBUG_STATE_ACTIVE:
351 hrtimer_cancel(timer);
352 debug_object_init(timer, &hrtimer_debug_descr);
353 return 1;
354 default:
355 return 0;
356 }
357}
358
359/*
360 * fixup_activate is called when:
361 * - an active object is activated
362 * - an unknown object is activated (might be a statically initialized object)
363 */
364static int hrtimer_fixup_activate(void *addr, enum debug_obj_state state)
365{
366 switch (state) {
367
368 case ODEBUG_STATE_NOTAVAILABLE:
369 WARN_ON_ONCE(1);
370 return 0;
371
372 case ODEBUG_STATE_ACTIVE:
373 WARN_ON(1);
374
375 default:
376 return 0;
377 }
378}
379
380/*
381 * fixup_free is called when:
382 * - an active object is freed
383 */
384static int hrtimer_fixup_free(void *addr, enum debug_obj_state state)
385{
386 struct hrtimer *timer = addr;
387
388 switch (state) {
389 case ODEBUG_STATE_ACTIVE:
390 hrtimer_cancel(timer);
391 debug_object_free(timer, &hrtimer_debug_descr);
392 return 1;
393 default:
394 return 0;
395 }
396}
397
398static struct debug_obj_descr hrtimer_debug_descr = {
399 .name = "hrtimer",
400 .fixup_init = hrtimer_fixup_init,
401 .fixup_activate = hrtimer_fixup_activate,
402 .fixup_free = hrtimer_fixup_free,
403};
404
405static inline void debug_hrtimer_init(struct hrtimer *timer)
406{
407 debug_object_init(timer, &hrtimer_debug_descr);
408}
409
410static inline void debug_hrtimer_activate(struct hrtimer *timer)
411{
412 debug_object_activate(timer, &hrtimer_debug_descr);
413}
414
415static inline void debug_hrtimer_deactivate(struct hrtimer *timer)
416{
417 debug_object_deactivate(timer, &hrtimer_debug_descr);
418}
419
420static inline void debug_hrtimer_free(struct hrtimer *timer)
421{
422 debug_object_free(timer, &hrtimer_debug_descr);
423}
424
425static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
426 enum hrtimer_mode mode);
427
428void hrtimer_init_on_stack(struct hrtimer *timer, clockid_t clock_id,
429 enum hrtimer_mode mode)
430{
431 debug_object_init_on_stack(timer, &hrtimer_debug_descr);
432 __hrtimer_init(timer, clock_id, mode);
433}
Stephen Hemminger2bc481c2009-08-28 23:41:29 -0700434EXPORT_SYMBOL_GPL(hrtimer_init_on_stack);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700435
436void destroy_hrtimer_on_stack(struct hrtimer *timer)
437{
438 debug_object_free(timer, &hrtimer_debug_descr);
439}
440
441#else
442static inline void debug_hrtimer_init(struct hrtimer *timer) { }
443static inline void debug_hrtimer_activate(struct hrtimer *timer) { }
444static inline void debug_hrtimer_deactivate(struct hrtimer *timer) { }
445#endif
446
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800447static inline void
448debug_init(struct hrtimer *timer, clockid_t clockid,
449 enum hrtimer_mode mode)
450{
451 debug_hrtimer_init(timer);
452 trace_hrtimer_init(timer, clockid, mode);
453}
454
455static inline void debug_activate(struct hrtimer *timer)
456{
457 debug_hrtimer_activate(timer);
458 trace_hrtimer_start(timer);
459}
460
461static inline void debug_deactivate(struct hrtimer *timer)
462{
463 debug_hrtimer_deactivate(timer);
464 trace_hrtimer_cancel(timer);
465}
466
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800467/* High resolution timer related functions */
468#ifdef CONFIG_HIGH_RES_TIMERS
469
470/*
471 * High resolution timer enabled ?
472 */
473static int hrtimer_hres_enabled __read_mostly = 1;
474
475/*
476 * Enable / Disable high resolution mode
477 */
478static int __init setup_hrtimer_hres(char *str)
479{
480 if (!strcmp(str, "off"))
481 hrtimer_hres_enabled = 0;
482 else if (!strcmp(str, "on"))
483 hrtimer_hres_enabled = 1;
484 else
485 return 0;
486 return 1;
487}
488
489__setup("highres=", setup_hrtimer_hres);
490
491/*
492 * hrtimer_high_res_enabled - query, if the highres mode is enabled
493 */
494static inline int hrtimer_is_hres_enabled(void)
495{
496 return hrtimer_hres_enabled;
497}
498
499/*
500 * Is the high resolution mode active ?
501 */
502static inline int hrtimer_hres_active(void)
503{
504 return __get_cpu_var(hrtimer_bases).hres_active;
505}
506
507/*
508 * Reprogram the event source with checking both queues for the
509 * next event
510 * Called with interrupts disabled and base->lock held
511 */
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400512static void
513hrtimer_force_reprogram(struct hrtimer_cpu_base *cpu_base, int skip_equal)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800514{
515 int i;
516 struct hrtimer_clock_base *base = cpu_base->clock_base;
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400517 ktime_t expires, expires_next;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800518
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400519 expires_next.tv64 = KTIME_MAX;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800520
521 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) {
522 struct hrtimer *timer;
523
524 if (!base->first)
525 continue;
526 timer = rb_entry(base->first, struct hrtimer, node);
Arjan van de Vencc584b22008-09-01 15:02:30 -0700527 expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
Thomas Gleixnerb0a9b512009-01-25 11:31:36 +0100528 /*
529 * clock_was_set() has changed base->offset so the
530 * result might be negative. Fix it up to prevent a
531 * false positive in clockevents_program_event()
532 */
533 if (expires.tv64 < 0)
534 expires.tv64 = 0;
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400535 if (expires.tv64 < expires_next.tv64)
536 expires_next = expires;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800537 }
538
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400539 if (skip_equal && expires_next.tv64 == cpu_base->expires_next.tv64)
540 return;
541
542 cpu_base->expires_next.tv64 = expires_next.tv64;
543
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800544 if (cpu_base->expires_next.tv64 != KTIME_MAX)
545 tick_program_event(cpu_base->expires_next, 1);
546}
547
548/*
549 * Shared reprogramming for clock_realtime and clock_monotonic
550 *
551 * When a timer is enqueued and expires earlier than the already enqueued
552 * timers, we have to check, whether it expires earlier than the timer for
553 * which the clock event device was armed.
554 *
555 * Called with interrupts disabled and base->cpu_base.lock held
556 */
557static int hrtimer_reprogram(struct hrtimer *timer,
558 struct hrtimer_clock_base *base)
559{
Thomas Gleixner41d2e492009-11-13 17:05:44 +0100560 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
Arjan van de Vencc584b22008-09-01 15:02:30 -0700561 ktime_t expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800562 int res;
563
Arjan van de Vencc584b22008-09-01 15:02:30 -0700564 WARN_ON_ONCE(hrtimer_get_expires_tv64(timer) < 0);
Thomas Gleixner63070a72008-02-14 00:58:36 +0100565
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800566 /*
567 * When the callback is running, we do not reprogram the clock event
568 * device. The timer callback is either running on a different CPU or
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200569 * the callback is executed in the hrtimer_interrupt context. The
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800570 * reprogramming is handled either by the softirq, which called the
571 * callback or at the end of the hrtimer_interrupt.
572 */
573 if (hrtimer_callback_running(timer))
574 return 0;
575
Thomas Gleixner63070a72008-02-14 00:58:36 +0100576 /*
577 * CLOCK_REALTIME timer might be requested with an absolute
578 * expiry time which is less than base->offset. Nothing wrong
579 * about that, just avoid to call into the tick code, which
580 * has now objections against negative expiry values.
581 */
582 if (expires.tv64 < 0)
583 return -ETIME;
584
Thomas Gleixner41d2e492009-11-13 17:05:44 +0100585 if (expires.tv64 >= cpu_base->expires_next.tv64)
586 return 0;
587
588 /*
589 * If a hang was detected in the last timer interrupt then we
590 * do not schedule a timer which is earlier than the expiry
591 * which we enforced in the hang detection. We want the system
592 * to make progress.
593 */
594 if (cpu_base->hang_detected)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800595 return 0;
596
597 /*
598 * Clockevents returns -ETIME, when the event was in the past.
599 */
600 res = tick_program_event(expires, 0);
601 if (!IS_ERR_VALUE(res))
Thomas Gleixner41d2e492009-11-13 17:05:44 +0100602 cpu_base->expires_next = expires;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800603 return res;
604}
605
606
607/*
608 * Retrigger next event is called after clock was set
609 *
610 * Called with interrupts disabled via on_each_cpu()
611 */
612static void retrigger_next_event(void *arg)
613{
614 struct hrtimer_cpu_base *base;
John Stultz8ab43512010-07-13 17:56:25 -0700615 struct timespec realtime_offset, wtm;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800616 unsigned long seq;
617
618 if (!hrtimer_hres_active())
619 return;
620
621 do {
622 seq = read_seqbegin(&xtime_lock);
John Stultz8ab43512010-07-13 17:56:25 -0700623 wtm = __get_wall_to_monotonic();
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800624 } while (read_seqretry(&xtime_lock, seq));
John Stultz8ab43512010-07-13 17:56:25 -0700625 set_normalized_timespec(&realtime_offset, -wtm.tv_sec, -wtm.tv_nsec);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800626
627 base = &__get_cpu_var(hrtimer_bases);
628
629 /* Adjust CLOCK_REALTIME offset */
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100630 raw_spin_lock(&base->lock);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800631 base->clock_base[CLOCK_REALTIME].offset =
632 timespec_to_ktime(realtime_offset);
633
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400634 hrtimer_force_reprogram(base, 0);
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100635 raw_spin_unlock(&base->lock);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800636}
637
638/*
639 * Clock realtime was set
640 *
641 * Change the offset of the realtime clock vs. the monotonic
642 * clock.
643 *
644 * We might have to reprogram the high resolution timer interrupt. On
645 * SMP we call the architecture specific code to retrigger _all_ high
646 * resolution timer interrupts. On UP we just disable interrupts and
647 * call the high resolution interrupt code.
648 */
649void clock_was_set(void)
650{
651 /* Retrigger the CPU local events everywhere */
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200652 on_each_cpu(retrigger_next_event, NULL, 1);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800653}
654
655/*
Ingo Molnar995f0542007-04-07 12:05:00 +0200656 * During resume we might have to reprogram the high resolution timer
657 * interrupt (on the local CPU):
658 */
659void hres_timers_resume(void)
660{
Peter Zijlstra1d4a7f12009-01-18 16:39:29 +0100661 WARN_ONCE(!irqs_disabled(),
662 KERN_INFO "hres_timers_resume() called with IRQs enabled!");
663
Ingo Molnar995f0542007-04-07 12:05:00 +0200664 retrigger_next_event(NULL);
665}
666
667/*
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800668 * Initialize the high resolution related parts of cpu_base
669 */
670static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base)
671{
672 base->expires_next.tv64 = KTIME_MAX;
673 base->hres_active = 0;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800674}
675
676/*
677 * Initialize the high resolution related parts of a hrtimer
678 */
679static inline void hrtimer_init_timer_hres(struct hrtimer *timer)
680{
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800681}
682
Peter Zijlstraca109492008-11-25 12:43:51 +0100683
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800684/*
685 * When High resolution timers are active, try to reprogram. Note, that in case
686 * the state has HRTIMER_STATE_CALLBACK set, no reprogramming and no expiry
687 * check happens. The timer gets enqueued into the rbtree. The reprogramming
688 * and expiry check is done in the hrtimer_interrupt or in the softirq.
689 */
690static inline int hrtimer_enqueue_reprogram(struct hrtimer *timer,
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100691 struct hrtimer_clock_base *base,
692 int wakeup)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800693{
694 if (base->cpu_base->hres_active && hrtimer_reprogram(timer, base)) {
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100695 if (wakeup) {
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100696 raw_spin_unlock(&base->cpu_base->lock);
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100697 raise_softirq_irqoff(HRTIMER_SOFTIRQ);
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100698 raw_spin_lock(&base->cpu_base->lock);
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100699 } else
700 __raise_softirq_irqoff(HRTIMER_SOFTIRQ);
701
Peter Zijlstraca109492008-11-25 12:43:51 +0100702 return 1;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800703 }
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100704
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800705 return 0;
706}
707
708/*
709 * Switch to high resolution mode
710 */
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800711static int hrtimer_switch_to_hres(void)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800712{
Ingo Molnar820de5c2007-07-21 04:37:36 -0700713 int cpu = smp_processor_id();
714 struct hrtimer_cpu_base *base = &per_cpu(hrtimer_bases, cpu);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800715 unsigned long flags;
716
717 if (base->hres_active)
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800718 return 1;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800719
720 local_irq_save(flags);
721
722 if (tick_init_highres()) {
723 local_irq_restore(flags);
Ingo Molnar820de5c2007-07-21 04:37:36 -0700724 printk(KERN_WARNING "Could not switch to high resolution "
725 "mode on CPU %d\n", cpu);
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800726 return 0;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800727 }
728 base->hres_active = 1;
729 base->clock_base[CLOCK_REALTIME].resolution = KTIME_HIGH_RES;
730 base->clock_base[CLOCK_MONOTONIC].resolution = KTIME_HIGH_RES;
731
732 tick_setup_sched_timer();
733
734 /* "Retrigger" the interrupt to get things going */
735 retrigger_next_event(NULL);
736 local_irq_restore(flags);
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800737 return 1;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800738}
739
740#else
741
742static inline int hrtimer_hres_active(void) { return 0; }
743static inline int hrtimer_is_hres_enabled(void) { return 0; }
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800744static inline int hrtimer_switch_to_hres(void) { return 0; }
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400745static inline void
746hrtimer_force_reprogram(struct hrtimer_cpu_base *base, int skip_equal) { }
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800747static inline int hrtimer_enqueue_reprogram(struct hrtimer *timer,
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100748 struct hrtimer_clock_base *base,
749 int wakeup)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800750{
751 return 0;
752}
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800753static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base) { }
754static inline void hrtimer_init_timer_hres(struct hrtimer *timer) { }
755
756#endif /* CONFIG_HIGH_RES_TIMERS */
757
Heiko Carstens5f201902009-12-10 10:56:29 +0100758static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer)
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800759{
Heiko Carstens5f201902009-12-10 10:56:29 +0100760#ifdef CONFIG_TIMER_STATS
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800761 if (timer->start_site)
762 return;
Heiko Carstens5f201902009-12-10 10:56:29 +0100763 timer->start_site = __builtin_return_address(0);
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800764 memcpy(timer->start_comm, current->comm, TASK_COMM_LEN);
765 timer->start_pid = current->pid;
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800766#endif
Heiko Carstens5f201902009-12-10 10:56:29 +0100767}
768
769static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer)
770{
771#ifdef CONFIG_TIMER_STATS
772 timer->start_site = NULL;
773#endif
774}
775
776static inline void timer_stats_account_hrtimer(struct hrtimer *timer)
777{
778#ifdef CONFIG_TIMER_STATS
779 if (likely(!timer_stats_active))
780 return;
781 timer_stats_update_stats(timer, timer->start_pid, timer->start_site,
782 timer->function, timer->start_comm, 0);
783#endif
784}
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800785
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800786/*
Uwe Kleine-König6506f2a2007-10-20 01:56:53 +0200787 * Counterpart to lock_hrtimer_base above:
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800788 */
789static inline
790void unlock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
791{
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100792 raw_spin_unlock_irqrestore(&timer->base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800793}
794
795/**
796 * hrtimer_forward - forward the timer expiry
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800797 * @timer: hrtimer to forward
Roman Zippel44f21472006-03-26 01:38:06 -0800798 * @now: forward past this time
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800799 * @interval: the interval to forward
800 *
801 * Forward the timer expiry so it will expire in the future.
Jonathan Corbet8dca6f32006-01-16 15:58:55 -0700802 * Returns the number of overruns.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800803 */
Davide Libenzi4d672e72008-02-04 22:27:26 -0800804u64 hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800805{
Davide Libenzi4d672e72008-02-04 22:27:26 -0800806 u64 orun = 1;
Roman Zippel44f21472006-03-26 01:38:06 -0800807 ktime_t delta;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800808
Arjan van de Vencc584b22008-09-01 15:02:30 -0700809 delta = ktime_sub(now, hrtimer_get_expires(timer));
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800810
811 if (delta.tv64 < 0)
812 return 0;
813
Thomas Gleixnerc9db4fa2006-01-12 11:47:34 +0100814 if (interval.tv64 < timer->base->resolution.tv64)
815 interval.tv64 = timer->base->resolution.tv64;
816
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800817 if (unlikely(delta.tv64 >= interval.tv64)) {
Roman Zippeldf869b62006-03-26 01:38:11 -0800818 s64 incr = ktime_to_ns(interval);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800819
820 orun = ktime_divns(delta, incr);
Arjan van de Vencc584b22008-09-01 15:02:30 -0700821 hrtimer_add_expires_ns(timer, incr * orun);
822 if (hrtimer_get_expires_tv64(timer) > now.tv64)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800823 return orun;
824 /*
825 * This (and the ktime_add() below) is the
826 * correction for exact:
827 */
828 orun++;
829 }
Arjan van de Vencc584b22008-09-01 15:02:30 -0700830 hrtimer_add_expires(timer, interval);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800831
832 return orun;
833}
Stas Sergeev6bdb6b62007-05-08 00:31:58 -0700834EXPORT_SYMBOL_GPL(hrtimer_forward);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800835
836/*
837 * enqueue_hrtimer - internal function to (re)start a timer
838 *
839 * The timer is inserted in expiry order. Insertion into the
840 * red black tree is O(log(n)). Must hold the base lock.
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100841 *
842 * Returns 1 when the new timer is the leftmost timer in the tree.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800843 */
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100844static int enqueue_hrtimer(struct hrtimer *timer,
845 struct hrtimer_clock_base *base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800846{
847 struct rb_node **link = &base->active.rb_node;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800848 struct rb_node *parent = NULL;
849 struct hrtimer *entry;
Ingo Molnar99bc2fc2007-07-21 04:37:36 -0700850 int leftmost = 1;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800851
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800852 debug_activate(timer);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700853
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800854 /*
855 * Find the right place in the rbtree:
856 */
857 while (*link) {
858 parent = *link;
859 entry = rb_entry(parent, struct hrtimer, node);
860 /*
861 * We dont care about collisions. Nodes with
862 * the same expiry time stay together.
863 */
Arjan van de Vencc584b22008-09-01 15:02:30 -0700864 if (hrtimer_get_expires_tv64(timer) <
865 hrtimer_get_expires_tv64(entry)) {
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800866 link = &(*link)->rb_left;
Ingo Molnar99bc2fc2007-07-21 04:37:36 -0700867 } else {
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800868 link = &(*link)->rb_right;
Ingo Molnar99bc2fc2007-07-21 04:37:36 -0700869 leftmost = 0;
870 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800871 }
872
873 /*
Thomas Gleixner288867e2006-01-12 11:25:54 +0100874 * Insert the timer to the rbtree and check whether it
875 * replaces the first pending timer
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800876 */
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100877 if (leftmost)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800878 base->first = &timer->node;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800879
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800880 rb_link_node(&timer->node, parent, link);
881 rb_insert_color(&timer->node, &base->active);
Thomas Gleixner303e9672007-02-16 01:27:51 -0800882 /*
883 * HRTIMER_STATE_ENQUEUED is or'ed to the current state to preserve the
884 * state of a possibly running callback.
885 */
886 timer->state |= HRTIMER_STATE_ENQUEUED;
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100887
888 return leftmost;
Thomas Gleixner288867e2006-01-12 11:25:54 +0100889}
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800890
891/*
892 * __remove_hrtimer - internal function to remove a timer
893 *
894 * Caller must hold the base lock.
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800895 *
896 * High resolution timer mode reprograms the clock event device when the
897 * timer is the one which expires next. The caller can disable this by setting
898 * reprogram to zero. This is useful, when the context does a reprogramming
899 * anyway (e.g. timer interrupt)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800900 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800901static void __remove_hrtimer(struct hrtimer *timer,
Thomas Gleixner303e9672007-02-16 01:27:51 -0800902 struct hrtimer_clock_base *base,
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800903 unsigned long newstate, int reprogram)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800904{
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400905 if (!(timer->state & HRTIMER_STATE_ENQUEUED))
906 goto out;
907
908 /*
909 * Remove the timer from the rbtree and replace the first
910 * entry pointer if necessary.
911 */
912 if (base->first == &timer->node) {
913 base->first = rb_next(&timer->node);
914#ifdef CONFIG_HIGH_RES_TIMERS
915 /* Reprogram the clock event device. if enabled */
916 if (reprogram && hrtimer_hres_active()) {
917 ktime_t expires;
918
919 expires = ktime_sub(hrtimer_get_expires(timer),
920 base->offset);
921 if (base->cpu_base->expires_next.tv64 == expires.tv64)
922 hrtimer_force_reprogram(base->cpu_base, 1);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800923 }
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400924#endif
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800925 }
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400926 rb_erase(&timer->node, &base->active);
927out:
Thomas Gleixner303e9672007-02-16 01:27:51 -0800928 timer->state = newstate;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800929}
930
931/*
932 * remove hrtimer, called with base lock held
933 */
934static inline int
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800935remove_hrtimer(struct hrtimer *timer, struct hrtimer_clock_base *base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800936{
Thomas Gleixner303e9672007-02-16 01:27:51 -0800937 if (hrtimer_is_queued(timer)) {
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800938 int reprogram;
939
940 /*
941 * Remove the timer and force reprogramming when high
942 * resolution mode is active and the timer is on the current
943 * CPU. If we remove a timer on another CPU, reprogramming is
944 * skipped. The interrupt event on this CPU is fired and
945 * reprogramming happens in the interrupt handler. This is a
946 * rare case and less expensive than a smp call.
947 */
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800948 debug_deactivate(timer);
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800949 timer_stats_hrtimer_clear_start_info(timer);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800950 reprogram = base->cpu_base == &__get_cpu_var(hrtimer_bases);
951 __remove_hrtimer(timer, base, HRTIMER_STATE_INACTIVE,
952 reprogram);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800953 return 1;
954 }
955 return 0;
956}
957
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100958int __hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
959 unsigned long delta_ns, const enum hrtimer_mode mode,
960 int wakeup)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800961{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800962 struct hrtimer_clock_base *base, *new_base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800963 unsigned long flags;
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100964 int ret, leftmost;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800965
966 base = lock_hrtimer_base(timer, &flags);
967
968 /* Remove an active timer from the queue: */
969 ret = remove_hrtimer(timer, base);
970
971 /* Switch the timer base, if necessary: */
Arun R Bharadwaj597d0272009-04-16 12:13:26 +0530972 new_base = switch_hrtimer_base(timer, base, mode & HRTIMER_MODE_PINNED);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800973
Arun R Bharadwaj597d0272009-04-16 12:13:26 +0530974 if (mode & HRTIMER_MODE_REL) {
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100975 tim = ktime_add_safe(tim, new_base->get_time());
Ingo Molnar06027bd2006-02-14 13:53:15 -0800976 /*
977 * CONFIG_TIME_LOW_RES is a temporary way for architectures
978 * to signal that they simply return xtime in
979 * do_gettimeoffset(). In this case we want to round up by
980 * resolution when starting a relative timer, to avoid short
981 * timeouts. This will go away with the GTOD framework.
982 */
983#ifdef CONFIG_TIME_LOW_RES
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100984 tim = ktime_add_safe(tim, base->resolution);
Ingo Molnar06027bd2006-02-14 13:53:15 -0800985#endif
986 }
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700987
Arjan van de Venda8f2e12008-09-07 10:47:46 -0700988 hrtimer_set_expires_range_ns(timer, tim, delta_ns);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800989
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800990 timer_stats_hrtimer_set_start_info(timer);
991
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100992 leftmost = enqueue_hrtimer(timer, new_base);
993
Ingo Molnar935c6312007-03-28 13:17:18 +0200994 /*
995 * Only allow reprogramming if the new base is on this CPU.
996 * (it might still be on another CPU if the timer was pending)
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100997 *
998 * XXX send_remote_softirq() ?
Ingo Molnar935c6312007-03-28 13:17:18 +0200999 */
Peter Zijlstraa6037b62009-01-05 11:28:22 +01001000 if (leftmost && new_base->cpu_base == &__get_cpu_var(hrtimer_bases))
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001001 hrtimer_enqueue_reprogram(timer, new_base, wakeup);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001002
1003 unlock_hrtimer_base(timer, &flags);
1004
1005 return ret;
1006}
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001007
1008/**
1009 * hrtimer_start_range_ns - (re)start an hrtimer on the current CPU
1010 * @timer: the timer to be added
1011 * @tim: expiry time
1012 * @delta_ns: "slack" range for the timer
1013 * @mode: expiry mode: absolute (HRTIMER_ABS) or relative (HRTIMER_REL)
1014 *
1015 * Returns:
1016 * 0 on success
1017 * 1 when the timer was active
1018 */
1019int hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
1020 unsigned long delta_ns, const enum hrtimer_mode mode)
1021{
1022 return __hrtimer_start_range_ns(timer, tim, delta_ns, mode, 1);
1023}
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001024EXPORT_SYMBOL_GPL(hrtimer_start_range_ns);
1025
1026/**
Thomas Gleixnere1dd7bc2008-10-20 13:33:36 +02001027 * hrtimer_start - (re)start an hrtimer on the current CPU
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001028 * @timer: the timer to be added
1029 * @tim: expiry time
1030 * @mode: expiry mode: absolute (HRTIMER_ABS) or relative (HRTIMER_REL)
1031 *
1032 * Returns:
1033 * 0 on success
1034 * 1 when the timer was active
1035 */
1036int
1037hrtimer_start(struct hrtimer *timer, ktime_t tim, const enum hrtimer_mode mode)
1038{
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001039 return __hrtimer_start_range_ns(timer, tim, 0, mode, 1);
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001040}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001041EXPORT_SYMBOL_GPL(hrtimer_start);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001042
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001043
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001044/**
1045 * hrtimer_try_to_cancel - try to deactivate a timer
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001046 * @timer: hrtimer to stop
1047 *
1048 * Returns:
1049 * 0 when the timer was not active
1050 * 1 when the timer was active
1051 * -1 when the timer is currently excuting the callback function and
Randy Dunlapfa9799e2006-06-25 05:49:15 -07001052 * cannot be stopped
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001053 */
1054int hrtimer_try_to_cancel(struct hrtimer *timer)
1055{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001056 struct hrtimer_clock_base *base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001057 unsigned long flags;
1058 int ret = -1;
1059
1060 base = lock_hrtimer_base(timer, &flags);
1061
Thomas Gleixner303e9672007-02-16 01:27:51 -08001062 if (!hrtimer_callback_running(timer))
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001063 ret = remove_hrtimer(timer, base);
1064
1065 unlock_hrtimer_base(timer, &flags);
1066
1067 return ret;
1068
1069}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001070EXPORT_SYMBOL_GPL(hrtimer_try_to_cancel);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001071
1072/**
1073 * hrtimer_cancel - cancel a timer and wait for the handler to finish.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001074 * @timer: the timer to be cancelled
1075 *
1076 * Returns:
1077 * 0 when the timer was not active
1078 * 1 when the timer was active
1079 */
1080int hrtimer_cancel(struct hrtimer *timer)
1081{
1082 for (;;) {
1083 int ret = hrtimer_try_to_cancel(timer);
1084
1085 if (ret >= 0)
1086 return ret;
Joe Korty5ef37b12006-04-10 22:54:13 -07001087 cpu_relax();
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001088 }
1089}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001090EXPORT_SYMBOL_GPL(hrtimer_cancel);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001091
1092/**
1093 * hrtimer_get_remaining - get remaining time for the timer
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001094 * @timer: the timer to read
1095 */
1096ktime_t hrtimer_get_remaining(const struct hrtimer *timer)
1097{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001098 struct hrtimer_clock_base *base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001099 unsigned long flags;
1100 ktime_t rem;
1101
1102 base = lock_hrtimer_base(timer, &flags);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001103 rem = hrtimer_expires_remaining(timer);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001104 unlock_hrtimer_base(timer, &flags);
1105
1106 return rem;
1107}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001108EXPORT_SYMBOL_GPL(hrtimer_get_remaining);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001109
Russell Kingee9c5782008-04-20 13:59:33 +01001110#ifdef CONFIG_NO_HZ
Tony Lindgren69239742006-03-06 15:42:45 -08001111/**
1112 * hrtimer_get_next_event - get the time until next expiry event
1113 *
1114 * Returns the delta to the next expiry event or KTIME_MAX if no timer
1115 * is pending.
1116 */
1117ktime_t hrtimer_get_next_event(void)
1118{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001119 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
1120 struct hrtimer_clock_base *base = cpu_base->clock_base;
Tony Lindgren69239742006-03-06 15:42:45 -08001121 ktime_t delta, mindelta = { .tv64 = KTIME_MAX };
1122 unsigned long flags;
1123 int i;
1124
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001125 raw_spin_lock_irqsave(&cpu_base->lock, flags);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001126
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001127 if (!hrtimer_hres_active()) {
1128 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) {
1129 struct hrtimer *timer;
Tony Lindgren69239742006-03-06 15:42:45 -08001130
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001131 if (!base->first)
1132 continue;
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001133
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001134 timer = rb_entry(base->first, struct hrtimer, node);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001135 delta.tv64 = hrtimer_get_expires_tv64(timer);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001136 delta = ktime_sub(delta, base->get_time());
1137 if (delta.tv64 < mindelta.tv64)
1138 mindelta.tv64 = delta.tv64;
1139 }
Tony Lindgren69239742006-03-06 15:42:45 -08001140 }
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001141
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001142 raw_spin_unlock_irqrestore(&cpu_base->lock, flags);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001143
Tony Lindgren69239742006-03-06 15:42:45 -08001144 if (mindelta.tv64 < 0)
1145 mindelta.tv64 = 0;
1146 return mindelta;
1147}
1148#endif
1149
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001150static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1151 enum hrtimer_mode mode)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001152{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001153 struct hrtimer_cpu_base *cpu_base;
George Anzinger7978672c2006-02-01 03:05:11 -08001154
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001155 memset(timer, 0, sizeof(struct hrtimer));
George Anzinger7978672c2006-02-01 03:05:11 -08001156
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001157 cpu_base = &__raw_get_cpu_var(hrtimer_bases);
George Anzinger7978672c2006-02-01 03:05:11 -08001158
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001159 if (clock_id == CLOCK_REALTIME && mode != HRTIMER_MODE_ABS)
George Anzinger7978672c2006-02-01 03:05:11 -08001160 clock_id = CLOCK_MONOTONIC;
1161
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001162 timer->base = &cpu_base->clock_base[clock_id];
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001163 hrtimer_init_timer_hres(timer);
Ingo Molnar82f67cd2007-02-16 01:28:13 -08001164
1165#ifdef CONFIG_TIMER_STATS
1166 timer->start_site = NULL;
1167 timer->start_pid = -1;
1168 memset(timer->start_comm, 0, TASK_COMM_LEN);
1169#endif
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001170}
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001171
1172/**
1173 * hrtimer_init - initialize a timer to the given clock
1174 * @timer: the timer to be initialized
1175 * @clock_id: the clock to be used
1176 * @mode: timer mode abs/rel
1177 */
1178void hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1179 enum hrtimer_mode mode)
1180{
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001181 debug_init(timer, clock_id, mode);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001182 __hrtimer_init(timer, clock_id, mode);
1183}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001184EXPORT_SYMBOL_GPL(hrtimer_init);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001185
1186/**
1187 * hrtimer_get_res - get the timer resolution for a clock
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001188 * @which_clock: which clock to query
1189 * @tp: pointer to timespec variable to store the resolution
1190 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001191 * Store the resolution of the clock selected by @which_clock in the
1192 * variable pointed to by @tp.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001193 */
1194int hrtimer_get_res(const clockid_t which_clock, struct timespec *tp)
1195{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001196 struct hrtimer_cpu_base *cpu_base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001197
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001198 cpu_base = &__raw_get_cpu_var(hrtimer_bases);
1199 *tp = ktime_to_timespec(cpu_base->clock_base[which_clock].resolution);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001200
1201 return 0;
1202}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001203EXPORT_SYMBOL_GPL(hrtimer_get_res);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001204
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001205static void __run_hrtimer(struct hrtimer *timer, ktime_t *now)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001206{
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001207 struct hrtimer_clock_base *base = timer->base;
1208 struct hrtimer_cpu_base *cpu_base = base->cpu_base;
1209 enum hrtimer_restart (*fn)(struct hrtimer *);
1210 int restart;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001211
Peter Zijlstraca109492008-11-25 12:43:51 +01001212 WARN_ON(!irqs_disabled());
1213
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001214 debug_deactivate(timer);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001215 __remove_hrtimer(timer, base, HRTIMER_STATE_CALLBACK, 0);
1216 timer_stats_account_hrtimer(timer);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001217 fn = timer->function;
Peter Zijlstraca109492008-11-25 12:43:51 +01001218
1219 /*
1220 * Because we run timers from hardirq context, there is no chance
1221 * they get migrated to another cpu, therefore its safe to unlock
1222 * the timer base.
1223 */
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001224 raw_spin_unlock(&cpu_base->lock);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001225 trace_hrtimer_expire_entry(timer, now);
Peter Zijlstraca109492008-11-25 12:43:51 +01001226 restart = fn(timer);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001227 trace_hrtimer_expire_exit(timer);
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001228 raw_spin_lock(&cpu_base->lock);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001229
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001230 /*
Thomas Gleixnere3f1d882009-01-05 11:28:23 +01001231 * Note: We clear the CALLBACK bit after enqueue_hrtimer and
1232 * we do not reprogramm the event hardware. Happens either in
1233 * hrtimer_start_range_ns() or in hrtimer_interrupt()
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001234 */
1235 if (restart != HRTIMER_NORESTART) {
1236 BUG_ON(timer->state != HRTIMER_STATE_CALLBACK);
Peter Zijlstraa6037b62009-01-05 11:28:22 +01001237 enqueue_hrtimer(timer, base);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001238 }
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001239 timer->state &= ~HRTIMER_STATE_CALLBACK;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001240}
1241
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001242#ifdef CONFIG_HIGH_RES_TIMERS
1243
1244/*
1245 * High resolution timer interrupt
1246 * Called with interrupts disabled
1247 */
1248void hrtimer_interrupt(struct clock_event_device *dev)
1249{
1250 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
1251 struct hrtimer_clock_base *base;
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001252 ktime_t expires_next, now, entry_time, delta;
1253 int i, retries = 0;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001254
1255 BUG_ON(!cpu_base->hres_active);
1256 cpu_base->nr_events++;
1257 dev->next_event.tv64 = KTIME_MAX;
1258
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001259 entry_time = now = ktime_get();
1260retry:
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001261 expires_next.tv64 = KTIME_MAX;
1262
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001263 raw_spin_lock(&cpu_base->lock);
Thomas Gleixner6ff70412009-07-10 14:57:05 +02001264 /*
1265 * We set expires_next to KTIME_MAX here with cpu_base->lock
1266 * held to prevent that a timer is enqueued in our queue via
1267 * the migration code. This does not affect enqueueing of
1268 * timers which run their callback and need to be requeued on
1269 * this CPU.
1270 */
1271 cpu_base->expires_next.tv64 = KTIME_MAX;
1272
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001273 base = cpu_base->clock_base;
1274
1275 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
1276 ktime_t basenow;
1277 struct rb_node *node;
1278
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001279 basenow = ktime_add(now, base->offset);
1280
1281 while ((node = base->first)) {
1282 struct hrtimer *timer;
1283
1284 timer = rb_entry(node, struct hrtimer, node);
1285
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001286 /*
1287 * The immediate goal for using the softexpires is
1288 * minimizing wakeups, not running timers at the
1289 * earliest interrupt after their soft expiration.
1290 * This allows us to avoid using a Priority Search
1291 * Tree, which can answer a stabbing querry for
1292 * overlapping intervals and instead use the simple
1293 * BST we already have.
1294 * We don't add extra wakeups by delaying timers that
1295 * are right-of a not yet expired timer, because that
1296 * timer will have to trigger a wakeup anyway.
1297 */
1298
1299 if (basenow.tv64 < hrtimer_get_softexpires_tv64(timer)) {
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001300 ktime_t expires;
1301
Arjan van de Vencc584b22008-09-01 15:02:30 -07001302 expires = ktime_sub(hrtimer_get_expires(timer),
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001303 base->offset);
1304 if (expires.tv64 < expires_next.tv64)
1305 expires_next = expires;
1306 break;
1307 }
1308
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001309 __run_hrtimer(timer, &basenow);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001310 }
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001311 base++;
1312 }
1313
Thomas Gleixner6ff70412009-07-10 14:57:05 +02001314 /*
1315 * Store the new expiry value so the migration code can verify
1316 * against it.
1317 */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001318 cpu_base->expires_next = expires_next;
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001319 raw_spin_unlock(&cpu_base->lock);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001320
1321 /* Reprogramming necessary ? */
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001322 if (expires_next.tv64 == KTIME_MAX ||
1323 !tick_program_event(expires_next, 0)) {
1324 cpu_base->hang_detected = 0;
1325 return;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001326 }
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001327
1328 /*
1329 * The next timer was already expired due to:
1330 * - tracing
1331 * - long lasting callbacks
1332 * - being scheduled away when running in a VM
1333 *
1334 * We need to prevent that we loop forever in the hrtimer
1335 * interrupt routine. We give it 3 attempts to avoid
1336 * overreacting on some spurious event.
1337 */
1338 now = ktime_get();
1339 cpu_base->nr_retries++;
1340 if (++retries < 3)
1341 goto retry;
1342 /*
1343 * Give the system a chance to do something else than looping
1344 * here. We stored the entry time, so we know exactly how long
1345 * we spent here. We schedule the next event this amount of
1346 * time away.
1347 */
1348 cpu_base->nr_hangs++;
1349 cpu_base->hang_detected = 1;
1350 delta = ktime_sub(now, entry_time);
1351 if (delta.tv64 > cpu_base->max_hang_time.tv64)
1352 cpu_base->max_hang_time = delta;
1353 /*
1354 * Limit it to a sensible value as we enforce a longer
1355 * delay. Give the CPU at least 100ms to catch up.
1356 */
1357 if (delta.tv64 > 100 * NSEC_PER_MSEC)
1358 expires_next = ktime_add_ns(now, 100 * NSEC_PER_MSEC);
1359 else
1360 expires_next = ktime_add(now, delta);
1361 tick_program_event(expires_next, 1);
1362 printk_once(KERN_WARNING "hrtimer: interrupt took %llu ns\n",
1363 ktime_to_ns(delta));
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001364}
1365
Thomas Gleixner8bdec952009-01-05 11:28:19 +01001366/*
1367 * local version of hrtimer_peek_ahead_timers() called with interrupts
1368 * disabled.
1369 */
1370static void __hrtimer_peek_ahead_timers(void)
1371{
1372 struct tick_device *td;
1373
1374 if (!hrtimer_hres_active())
1375 return;
1376
1377 td = &__get_cpu_var(tick_cpu_device);
1378 if (td && td->evtdev)
1379 hrtimer_interrupt(td->evtdev);
1380}
1381
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -07001382/**
1383 * hrtimer_peek_ahead_timers -- run soft-expired timers now
1384 *
1385 * hrtimer_peek_ahead_timers will peek at the timer queue of
1386 * the current cpu and check if there are any timers for which
1387 * the soft expires time has passed. If any such timers exist,
1388 * they are run immediately and then removed from the timer queue.
1389 *
1390 */
1391void hrtimer_peek_ahead_timers(void)
1392{
Thomas Gleixner643bdf62008-10-20 13:38:11 +02001393 unsigned long flags;
Arjan van de Vendc4304f2008-10-13 10:32:15 -04001394
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -07001395 local_irq_save(flags);
Thomas Gleixner8bdec952009-01-05 11:28:19 +01001396 __hrtimer_peek_ahead_timers();
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -07001397 local_irq_restore(flags);
1398}
1399
Peter Zijlstraa6037b62009-01-05 11:28:22 +01001400static void run_hrtimer_softirq(struct softirq_action *h)
1401{
1402 hrtimer_peek_ahead_timers();
1403}
1404
Ingo Molnar82c5b7b2009-01-05 14:11:10 +01001405#else /* CONFIG_HIGH_RES_TIMERS */
1406
1407static inline void __hrtimer_peek_ahead_timers(void) { }
1408
1409#endif /* !CONFIG_HIGH_RES_TIMERS */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001410
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001411/*
1412 * Called from timer softirq every jiffy, expire hrtimers:
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001413 *
1414 * For HRT its the fall back code to run the softirq in the timer
1415 * softirq context in case the hrtimer initialization failed or has
1416 * not been done yet.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001417 */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001418void hrtimer_run_pending(void)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001419{
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001420 if (hrtimer_hres_active())
1421 return;
1422
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -08001423 /*
1424 * This _is_ ugly: We have to check in the softirq context,
1425 * whether we can switch to highres and / or nohz mode. The
1426 * clocksource switch happens in the timer interrupt with
1427 * xtime_lock held. Notification from there only sets the
1428 * check bit in the tick_oneshot code, otherwise we might
1429 * deadlock vs. xtime_lock.
1430 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001431 if (tick_check_oneshot_change(!hrtimer_is_hres_enabled()))
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001432 hrtimer_switch_to_hres();
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001433}
1434
1435/*
1436 * Called from hardirq context every jiffy
1437 */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001438void hrtimer_run_queues(void)
1439{
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001440 struct rb_node *node;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001441 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001442 struct hrtimer_clock_base *base;
1443 int index, gettime = 1;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001444
1445 if (hrtimer_hres_active())
1446 return;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -08001447
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001448 for (index = 0; index < HRTIMER_MAX_CLOCK_BASES; index++) {
1449 base = &cpu_base->clock_base[index];
Thomas Gleixner92127c72006-03-26 01:38:05 -08001450
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001451 if (!base->first)
1452 continue;
1453
Mark McLoughlind7cfb602008-09-19 13:13:44 +01001454 if (gettime) {
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001455 hrtimer_get_softirq_time(cpu_base);
1456 gettime = 0;
1457 }
1458
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001459 raw_spin_lock(&cpu_base->lock);
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001460
1461 while ((node = base->first)) {
1462 struct hrtimer *timer;
1463
1464 timer = rb_entry(node, struct hrtimer, node);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001465 if (base->softirq_time.tv64 <=
1466 hrtimer_get_expires_tv64(timer))
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001467 break;
1468
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001469 __run_hrtimer(timer, &base->softirq_time);
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001470 }
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001471 raw_spin_unlock(&cpu_base->lock);
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001472 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001473}
1474
1475/*
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001476 * Sleep related functions:
1477 */
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001478static enum hrtimer_restart hrtimer_wakeup(struct hrtimer *timer)
Thomas Gleixner00362e32006-03-31 02:31:17 -08001479{
1480 struct hrtimer_sleeper *t =
1481 container_of(timer, struct hrtimer_sleeper, timer);
1482 struct task_struct *task = t->task;
1483
1484 t->task = NULL;
1485 if (task)
1486 wake_up_process(task);
1487
1488 return HRTIMER_NORESTART;
1489}
1490
Ingo Molnar36c8b582006-07-03 00:25:41 -07001491void hrtimer_init_sleeper(struct hrtimer_sleeper *sl, struct task_struct *task)
Thomas Gleixner00362e32006-03-31 02:31:17 -08001492{
1493 sl->timer.function = hrtimer_wakeup;
1494 sl->task = task;
1495}
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07001496EXPORT_SYMBOL_GPL(hrtimer_init_sleeper);
Thomas Gleixner00362e32006-03-31 02:31:17 -08001497
Thomas Gleixner669d7862006-03-31 02:31:19 -08001498static int __sched do_nanosleep(struct hrtimer_sleeper *t, enum hrtimer_mode mode)
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001499{
Thomas Gleixner669d7862006-03-31 02:31:19 -08001500 hrtimer_init_sleeper(t, current);
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001501
Roman Zippel432569b2006-03-26 01:38:08 -08001502 do {
1503 set_current_state(TASK_INTERRUPTIBLE);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001504 hrtimer_start_expires(&t->timer, mode);
Peter Zijlstra37bb6cb2008-01-25 21:08:32 +01001505 if (!hrtimer_active(&t->timer))
1506 t->task = NULL;
Roman Zippel432569b2006-03-26 01:38:08 -08001507
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001508 if (likely(t->task))
1509 schedule();
Roman Zippel432569b2006-03-26 01:38:08 -08001510
Thomas Gleixner669d7862006-03-31 02:31:19 -08001511 hrtimer_cancel(&t->timer);
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001512 mode = HRTIMER_MODE_ABS;
Roman Zippel432569b2006-03-26 01:38:08 -08001513
Thomas Gleixner669d7862006-03-31 02:31:19 -08001514 } while (t->task && !signal_pending(current));
1515
Peter Zijlstra3588a082008-02-01 17:45:13 +01001516 __set_current_state(TASK_RUNNING);
1517
Thomas Gleixner669d7862006-03-31 02:31:19 -08001518 return t->task == NULL;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001519}
1520
Oleg Nesterov080344b2008-02-01 17:29:05 +03001521static int update_rmtp(struct hrtimer *timer, struct timespec __user *rmtp)
1522{
1523 struct timespec rmt;
1524 ktime_t rem;
1525
Arjan van de Vencc584b22008-09-01 15:02:30 -07001526 rem = hrtimer_expires_remaining(timer);
Oleg Nesterov080344b2008-02-01 17:29:05 +03001527 if (rem.tv64 <= 0)
1528 return 0;
1529 rmt = ktime_to_timespec(rem);
1530
1531 if (copy_to_user(rmtp, &rmt, sizeof(*rmtp)))
1532 return -EFAULT;
1533
1534 return 1;
1535}
1536
Toyo Abe1711ef32006-09-29 02:00:28 -07001537long __sched hrtimer_nanosleep_restart(struct restart_block *restart)
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001538{
Thomas Gleixner669d7862006-03-31 02:31:19 -08001539 struct hrtimer_sleeper t;
Oleg Nesterov080344b2008-02-01 17:29:05 +03001540 struct timespec __user *rmtp;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001541 int ret = 0;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001542
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001543 hrtimer_init_on_stack(&t.timer, restart->nanosleep.index,
1544 HRTIMER_MODE_ABS);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001545 hrtimer_set_expires_tv64(&t.timer, restart->nanosleep.expires);
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001546
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001547 if (do_nanosleep(&t, HRTIMER_MODE_ABS))
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001548 goto out;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001549
Thomas Gleixner029a07e2008-02-10 09:17:43 +01001550 rmtp = restart->nanosleep.rmtp;
Roman Zippel432569b2006-03-26 01:38:08 -08001551 if (rmtp) {
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001552 ret = update_rmtp(&t.timer, rmtp);
Oleg Nesterov080344b2008-02-01 17:29:05 +03001553 if (ret <= 0)
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001554 goto out;
Roman Zippel432569b2006-03-26 01:38:08 -08001555 }
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001556
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001557 /* The other values in restart are already filled in */
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001558 ret = -ERESTART_RESTARTBLOCK;
1559out:
1560 destroy_hrtimer_on_stack(&t.timer);
1561 return ret;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001562}
1563
Oleg Nesterov080344b2008-02-01 17:29:05 +03001564long hrtimer_nanosleep(struct timespec *rqtp, struct timespec __user *rmtp,
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001565 const enum hrtimer_mode mode, const clockid_t clockid)
1566{
1567 struct restart_block *restart;
Thomas Gleixner669d7862006-03-31 02:31:19 -08001568 struct hrtimer_sleeper t;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001569 int ret = 0;
Arjan van de Ven3bd01202008-09-08 08:58:59 -07001570 unsigned long slack;
1571
1572 slack = current->timer_slack_ns;
1573 if (rt_task(current))
1574 slack = 0;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001575
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001576 hrtimer_init_on_stack(&t.timer, clockid, mode);
Arjan van de Ven3bd01202008-09-08 08:58:59 -07001577 hrtimer_set_expires_range_ns(&t.timer, timespec_to_ktime(*rqtp), slack);
Roman Zippel432569b2006-03-26 01:38:08 -08001578 if (do_nanosleep(&t, mode))
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001579 goto out;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001580
George Anzinger7978672c2006-02-01 03:05:11 -08001581 /* Absolute timers do not update the rmtp value and restart: */
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001582 if (mode == HRTIMER_MODE_ABS) {
1583 ret = -ERESTARTNOHAND;
1584 goto out;
1585 }
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001586
Roman Zippel432569b2006-03-26 01:38:08 -08001587 if (rmtp) {
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001588 ret = update_rmtp(&t.timer, rmtp);
Oleg Nesterov080344b2008-02-01 17:29:05 +03001589 if (ret <= 0)
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001590 goto out;
Roman Zippel432569b2006-03-26 01:38:08 -08001591 }
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001592
1593 restart = &current_thread_info()->restart_block;
Toyo Abe1711ef32006-09-29 02:00:28 -07001594 restart->fn = hrtimer_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +01001595 restart->nanosleep.index = t.timer.base->index;
1596 restart->nanosleep.rmtp = rmtp;
Arjan van de Vencc584b22008-09-01 15:02:30 -07001597 restart->nanosleep.expires = hrtimer_get_expires_tv64(&t.timer);
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001598
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001599 ret = -ERESTART_RESTARTBLOCK;
1600out:
1601 destroy_hrtimer_on_stack(&t.timer);
1602 return ret;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001603}
1604
Heiko Carstens58fd3aa2009-01-14 14:14:03 +01001605SYSCALL_DEFINE2(nanosleep, struct timespec __user *, rqtp,
1606 struct timespec __user *, rmtp)
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001607{
Oleg Nesterov080344b2008-02-01 17:29:05 +03001608 struct timespec tu;
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001609
1610 if (copy_from_user(&tu, rqtp, sizeof(tu)))
1611 return -EFAULT;
1612
1613 if (!timespec_valid(&tu))
1614 return -EINVAL;
1615
Oleg Nesterov080344b2008-02-01 17:29:05 +03001616 return hrtimer_nanosleep(&tu, rmtp, HRTIMER_MODE_REL, CLOCK_MONOTONIC);
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001617}
1618
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001619/*
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001620 * Functions related to boot-time initialization:
1621 */
Randy Dunlap0ec160d2008-01-21 17:18:24 -08001622static void __cpuinit init_hrtimers_cpu(int cpu)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001623{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001624 struct hrtimer_cpu_base *cpu_base = &per_cpu(hrtimer_bases, cpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001625 int i;
1626
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001627 raw_spin_lock_init(&cpu_base->lock);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001628
1629 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++)
1630 cpu_base->clock_base[i].cpu_base = cpu_base;
1631
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001632 hrtimer_init_hres(cpu_base);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001633}
1634
1635#ifdef CONFIG_HOTPLUG_CPU
1636
Peter Zijlstraca109492008-11-25 12:43:51 +01001637static void migrate_hrtimer_list(struct hrtimer_clock_base *old_base,
Peter Zijlstra37810652008-12-04 11:17:10 +01001638 struct hrtimer_clock_base *new_base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001639{
1640 struct hrtimer *timer;
1641 struct rb_node *node;
1642
1643 while ((node = rb_first(&old_base->active))) {
1644 timer = rb_entry(node, struct hrtimer, node);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001645 BUG_ON(hrtimer_callback_running(timer));
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001646 debug_deactivate(timer);
Thomas Gleixnerb00c1a92008-09-29 15:44:46 +02001647
1648 /*
1649 * Mark it as STATE_MIGRATE not INACTIVE otherwise the
1650 * timer could be seen as !active and just vanish away
1651 * under us on another CPU
1652 */
1653 __remove_hrtimer(timer, old_base, HRTIMER_STATE_MIGRATE, 0);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001654 timer->base = new_base;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001655 /*
Thomas Gleixnere3f1d882009-01-05 11:28:23 +01001656 * Enqueue the timers on the new cpu. This does not
1657 * reprogram the event device in case the timer
1658 * expires before the earliest on this CPU, but we run
1659 * hrtimer_interrupt after we migrated everything to
1660 * sort out already expired timers and reprogram the
1661 * event device.
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001662 */
Peter Zijlstraa6037b62009-01-05 11:28:22 +01001663 enqueue_hrtimer(timer, new_base);
Thomas Gleixner41e10222008-09-29 14:09:39 +02001664
Thomas Gleixnerb00c1a92008-09-29 15:44:46 +02001665 /* Clear the migration state bit */
1666 timer->state &= ~HRTIMER_STATE_MIGRATE;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001667 }
1668}
1669
Thomas Gleixnerd5fd43c2009-01-05 11:28:20 +01001670static void migrate_hrtimers(int scpu)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001671{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001672 struct hrtimer_cpu_base *old_base, *new_base;
Thomas Gleixner731a55b2009-01-05 11:28:21 +01001673 int i;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001674
Peter Zijlstra37810652008-12-04 11:17:10 +01001675 BUG_ON(cpu_online(scpu));
Peter Zijlstra37810652008-12-04 11:17:10 +01001676 tick_cancel_sched_timer(scpu);
Thomas Gleixner731a55b2009-01-05 11:28:21 +01001677
1678 local_irq_disable();
1679 old_base = &per_cpu(hrtimer_bases, scpu);
1680 new_base = &__get_cpu_var(hrtimer_bases);
Oleg Nesterovd82f0b02008-08-20 16:46:04 -07001681 /*
1682 * The caller is globally serialized and nobody else
1683 * takes two locks at once, deadlock is not possible.
1684 */
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001685 raw_spin_lock(&new_base->lock);
1686 raw_spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001687
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001688 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
Peter Zijlstraca109492008-11-25 12:43:51 +01001689 migrate_hrtimer_list(&old_base->clock_base[i],
Peter Zijlstra37810652008-12-04 11:17:10 +01001690 &new_base->clock_base[i]);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001691 }
1692
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001693 raw_spin_unlock(&old_base->lock);
1694 raw_spin_unlock(&new_base->lock);
Peter Zijlstra37810652008-12-04 11:17:10 +01001695
Thomas Gleixner731a55b2009-01-05 11:28:21 +01001696 /* Check, if we got expired work to do */
1697 __hrtimer_peek_ahead_timers();
1698 local_irq_enable();
Peter Zijlstra37810652008-12-04 11:17:10 +01001699}
1700
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001701#endif /* CONFIG_HOTPLUG_CPU */
1702
Chandra Seetharaman8c78f302006-07-30 03:03:35 -07001703static int __cpuinit hrtimer_cpu_notify(struct notifier_block *self,
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001704 unsigned long action, void *hcpu)
1705{
Ingo Molnarb2e3c0a2008-12-19 00:48:27 +01001706 int scpu = (long)hcpu;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001707
1708 switch (action) {
1709
1710 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001711 case CPU_UP_PREPARE_FROZEN:
Peter Zijlstra37810652008-12-04 11:17:10 +01001712 init_hrtimers_cpu(scpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001713 break;
1714
1715#ifdef CONFIG_HOTPLUG_CPU
Sebastien Dugue94df7de2008-12-01 14:09:07 +01001716 case CPU_DYING:
1717 case CPU_DYING_FROZEN:
1718 clockevents_notify(CLOCK_EVT_NOTIFY_CPU_DYING, &scpu);
1719 break;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001720 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001721 case CPU_DEAD_FROZEN:
Ingo Molnarb2e3c0a2008-12-19 00:48:27 +01001722 {
Peter Zijlstra37810652008-12-04 11:17:10 +01001723 clockevents_notify(CLOCK_EVT_NOTIFY_CPU_DEAD, &scpu);
Thomas Gleixnerd5fd43c2009-01-05 11:28:20 +01001724 migrate_hrtimers(scpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001725 break;
Ingo Molnarb2e3c0a2008-12-19 00:48:27 +01001726 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001727#endif
1728
1729 default:
1730 break;
1731 }
1732
1733 return NOTIFY_OK;
1734}
1735
Chandra Seetharaman8c78f302006-07-30 03:03:35 -07001736static struct notifier_block __cpuinitdata hrtimers_nb = {
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001737 .notifier_call = hrtimer_cpu_notify,
1738};
1739
1740void __init hrtimers_init(void)
1741{
1742 hrtimer_cpu_notify(&hrtimers_nb, (unsigned long)CPU_UP_PREPARE,
1743 (void *)(long)smp_processor_id());
1744 register_cpu_notifier(&hrtimers_nb);
Peter Zijlstraa6037b62009-01-05 11:28:22 +01001745#ifdef CONFIG_HIGH_RES_TIMERS
1746 open_softirq(HRTIMER_SOFTIRQ, run_hrtimer_softirq);
1747#endif
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001748}
1749
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001750/**
Carsten Emde351b3f72010-04-02 22:40:19 +02001751 * schedule_hrtimeout_range_clock - sleep until timeout
1752 * @expires: timeout value (ktime_t)
1753 * @delta: slack in expires timeout (ktime_t)
1754 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
1755 * @clock: timer clock, CLOCK_MONOTONIC or CLOCK_REALTIME
1756 */
1757int __sched
1758schedule_hrtimeout_range_clock(ktime_t *expires, unsigned long delta,
1759 const enum hrtimer_mode mode, int clock)
1760{
1761 struct hrtimer_sleeper t;
1762
1763 /*
1764 * Optimize when a zero timeout value is given. It does not
1765 * matter whether this is an absolute or a relative time.
1766 */
1767 if (expires && !expires->tv64) {
1768 __set_current_state(TASK_RUNNING);
1769 return 0;
1770 }
1771
1772 /*
1773 * A NULL parameter means "inifinte"
1774 */
1775 if (!expires) {
1776 schedule();
1777 __set_current_state(TASK_RUNNING);
1778 return -EINTR;
1779 }
1780
1781 hrtimer_init_on_stack(&t.timer, clock, mode);
1782 hrtimer_set_expires_range_ns(&t.timer, *expires, delta);
1783
1784 hrtimer_init_sleeper(&t, current);
1785
1786 hrtimer_start_expires(&t.timer, mode);
1787 if (!hrtimer_active(&t.timer))
1788 t.task = NULL;
1789
1790 if (likely(t.task))
1791 schedule();
1792
1793 hrtimer_cancel(&t.timer);
1794 destroy_hrtimer_on_stack(&t.timer);
1795
1796 __set_current_state(TASK_RUNNING);
1797
1798 return !t.task ? 0 : -EINTR;
1799}
1800
1801/**
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001802 * schedule_hrtimeout_range - sleep until timeout
1803 * @expires: timeout value (ktime_t)
1804 * @delta: slack in expires timeout (ktime_t)
1805 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
1806 *
1807 * Make the current task sleep until the given expiry time has
1808 * elapsed. The routine will return immediately unless
1809 * the current task state has been set (see set_current_state()).
1810 *
1811 * The @delta argument gives the kernel the freedom to schedule the
1812 * actual wakeup to a time that is both power and performance friendly.
1813 * The kernel give the normal best effort behavior for "@expires+@delta",
1814 * but may decide to fire the timer earlier, but no earlier than @expires.
1815 *
1816 * You can set the task state as follows -
1817 *
1818 * %TASK_UNINTERRUPTIBLE - at least @timeout time is guaranteed to
1819 * pass before the routine returns.
1820 *
1821 * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
1822 * delivered to the current task.
1823 *
1824 * The current task state is guaranteed to be TASK_RUNNING when this
1825 * routine returns.
1826 *
1827 * Returns 0 when the timer has expired otherwise -EINTR
1828 */
1829int __sched schedule_hrtimeout_range(ktime_t *expires, unsigned long delta,
Carsten Emde351b3f72010-04-02 22:40:19 +02001830 const enum hrtimer_mode mode)
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001831{
Carsten Emde351b3f72010-04-02 22:40:19 +02001832 return schedule_hrtimeout_range_clock(expires, delta, mode,
1833 CLOCK_MONOTONIC);
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001834}
1835EXPORT_SYMBOL_GPL(schedule_hrtimeout_range);
1836
1837/**
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001838 * schedule_hrtimeout - sleep until timeout
1839 * @expires: timeout value (ktime_t)
1840 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
1841 *
1842 * Make the current task sleep until the given expiry time has
1843 * elapsed. The routine will return immediately unless
1844 * the current task state has been set (see set_current_state()).
1845 *
1846 * You can set the task state as follows -
1847 *
1848 * %TASK_UNINTERRUPTIBLE - at least @timeout time is guaranteed to
1849 * pass before the routine returns.
1850 *
1851 * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
1852 * delivered to the current task.
1853 *
1854 * The current task state is guaranteed to be TASK_RUNNING when this
1855 * routine returns.
1856 *
1857 * Returns 0 when the timer has expired otherwise -EINTR
1858 */
1859int __sched schedule_hrtimeout(ktime_t *expires,
1860 const enum hrtimer_mode mode)
1861{
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001862 return schedule_hrtimeout_range(expires, 0, mode);
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001863}
1864EXPORT_SYMBOL_GPL(schedule_hrtimeout);