mxser: #ifdef so mxser_tty_port_close_start is only called on ARCH_MOXART
[linux-2.6.34.14-moxart.git] / kernel / hrtimer.c
blob6b6835ff08d990fa034e1e1cc319386140eaed10
1 /*
2 * linux/kernel/hrtimer.c
4 * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
5 * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
6 * Copyright(C) 2006-2007 Timesys Corp., Thomas Gleixner
8 * High-resolution kernel timers
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.
14 * These timers are currently used for:
15 * - itimers
16 * - POSIX timers
17 * - nanosleep
18 * - precise in-kernel timing
20 * Started by: Thomas Gleixner and Ingo Molnar
22 * Credits:
23 * based on kernel/timer.c
25 * Help, testing, suggestions, bugfixes, improvements were
26 * provided by:
28 * George Anzinger, Andrew Morton, Steven Rostedt, Roman Zippel
29 * et. al.
31 * For licencing details see kernel-base/COPYING
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>
40 #include <linux/kallsyms.h>
41 #include <linux/interrupt.h>
42 #include <linux/tick.h>
43 #include <linux/seq_file.h>
44 #include <linux/err.h>
45 #include <linux/debugobjects.h>
46 #include <linux/sched.h>
47 #include <linux/timer.h>
49 #include <asm/uaccess.h>
51 #include <trace/events/timer.h>
54 * The timer bases:
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.
62 DEFINE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases) =
65 .clock_base =
68 .index = CLOCK_REALTIME,
69 .get_time = &ktime_get_real,
70 .resolution = KTIME_LOW_RES,
73 .index = CLOCK_MONOTONIC,
74 .get_time = &ktime_get,
75 .resolution = KTIME_LOW_RES,
81 * Get the coarse grained time at the softirq based on xtime and
82 * wall_to_monotonic.
84 static void hrtimer_get_softirq_time(struct hrtimer_cpu_base *base)
86 ktime_t xtim, tomono;
87 struct timespec xts, tom;
88 unsigned long seq;
90 do {
91 seq = read_seqbegin(&xtime_lock);
92 xts = current_kernel_time();
93 tom = wall_to_monotonic;
94 } while (read_seqretry(&xtime_lock, seq));
96 xtim = timespec_to_ktime(xts);
97 tomono = timespec_to_ktime(tom);
98 base->clock_base[CLOCK_REALTIME].softirq_time = xtim;
99 base->clock_base[CLOCK_MONOTONIC].softirq_time =
100 ktime_add(xtim, tomono);
104 * Functions and macros which are different for UP/SMP systems are kept in a
105 * single place
107 #ifdef CONFIG_SMP
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.
114 * So __run_timers/migrate_timers can safely modify all timers which could
115 * be found on the lists/queues.
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.
121 static
122 struct hrtimer_clock_base *lock_hrtimer_base(const struct hrtimer *timer,
123 unsigned long *flags)
125 struct hrtimer_clock_base *base;
127 for (;;) {
128 base = timer->base;
129 if (likely(base != NULL)) {
130 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
131 if (likely(base == timer->base))
132 return base;
133 /* The timer has migrated to another CPU: */
134 raw_spin_unlock_irqrestore(&base->cpu_base->lock, *flags);
136 cpu_relax();
142 * Get the preferred target CPU for NOHZ
144 static int hrtimer_get_target(int this_cpu, int pinned)
146 #ifdef CONFIG_NO_HZ
147 if (!pinned && get_sysctl_timer_migration() && idle_cpu(this_cpu)) {
148 int preferred_cpu = get_nohz_load_balancer();
150 if (preferred_cpu >= 0)
151 return preferred_cpu;
153 #endif
154 return this_cpu;
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.
162 * Called with cpu_base->lock of target cpu held.
164 static int
165 hrtimer_check_target(struct hrtimer *timer, struct hrtimer_clock_base *new_base)
167 #ifdef CONFIG_HIGH_RES_TIMERS
168 ktime_t expires;
170 if (!new_base->cpu_base->hres_active)
171 return 0;
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
181 * Switch the timer base to the current CPU when possible.
183 static inline struct hrtimer_clock_base *
184 switch_hrtimer_base(struct hrtimer *timer, struct hrtimer_clock_base *base,
185 int pinned)
187 struct hrtimer_clock_base *new_base;
188 struct hrtimer_cpu_base *new_cpu_base;
189 int this_cpu = smp_processor_id();
190 int cpu = hrtimer_get_target(this_cpu, pinned);
192 again:
193 new_cpu_base = &per_cpu(hrtimer_bases, cpu);
194 new_base = &new_cpu_base->clock_base[base->index];
196 if (base != new_base) {
198 * We are trying to move timer to new_base.
199 * 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.
206 if (unlikely(hrtimer_callback_running(timer)))
207 return base;
209 /* See the comment in lock_timer_base() */
210 timer->base = NULL;
211 raw_spin_unlock(&base->cpu_base->lock);
212 raw_spin_lock(&new_base->cpu_base->lock);
214 if (cpu != this_cpu && hrtimer_check_target(timer, new_base)) {
215 cpu = this_cpu;
216 raw_spin_unlock(&new_base->cpu_base->lock);
217 raw_spin_lock(&base->cpu_base->lock);
218 timer->base = base;
219 goto again;
221 timer->base = new_base;
223 return new_base;
226 #else /* CONFIG_SMP */
228 static inline struct hrtimer_clock_base *
229 lock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
231 struct hrtimer_clock_base *base = timer->base;
233 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
235 return base;
238 # define switch_hrtimer_base(t, b, p) (b)
240 #endif /* !CONFIG_SMP */
243 * Functions for the union type storage format of ktime_t which are
244 * too large for inlining:
246 #if BITS_PER_LONG < 64
247 # ifndef CONFIG_KTIME_SCALAR
249 * ktime_add_ns - Add a scalar nanoseconds value to a ktime_t variable
250 * @kt: addend
251 * @nsec: the scalar nsec value to add
253 * Returns the sum of kt and nsec in ktime_t format
255 ktime_t ktime_add_ns(const ktime_t kt, u64 nsec)
257 ktime_t tmp;
259 if (likely(nsec < NSEC_PER_SEC)) {
260 tmp.tv64 = nsec;
261 } else {
262 unsigned long rem = do_div(nsec, NSEC_PER_SEC);
264 tmp = ktime_set((long)nsec, rem);
267 return ktime_add(kt, tmp);
270 EXPORT_SYMBOL_GPL(ktime_add_ns);
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
277 * Returns the subtraction of @nsec from @kt in ktime_t format
279 ktime_t ktime_sub_ns(const ktime_t kt, u64 nsec)
281 ktime_t tmp;
283 if (likely(nsec < NSEC_PER_SEC)) {
284 tmp.tv64 = nsec;
285 } else {
286 unsigned long rem = do_div(nsec, NSEC_PER_SEC);
288 tmp = ktime_set((long)nsec, rem);
291 return ktime_sub(kt, tmp);
294 EXPORT_SYMBOL_GPL(ktime_sub_ns);
295 # endif /* !CONFIG_KTIME_SCALAR */
298 * Divide a ktime value by a nanosecond value
300 u64 ktime_divns(const ktime_t kt, s64 div)
302 u64 dclc;
303 int sft = 0;
305 dclc = ktime_to_ns(kt);
306 /* Make sure the divisor is less than 2^32: */
307 while (div >> 32) {
308 sft++;
309 div >>= 1;
311 dclc >>= sft;
312 do_div(dclc, (unsigned long) div);
314 return dclc;
316 #endif /* BITS_PER_LONG >= 64 */
319 * Add two ktime values and do a safety check for overflow:
321 ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs)
323 ktime_t res = ktime_add(lhs, rhs);
326 * We use KTIME_SEC_MAX here, the maximum timeout which we can
327 * return to user space in a timespec:
329 if (res.tv64 < 0 || res.tv64 < lhs.tv64 || res.tv64 < rhs.tv64)
330 res = ktime_set(KTIME_SEC_MAX, 0);
332 return res;
335 EXPORT_SYMBOL_GPL(ktime_add_safe);
337 #ifdef CONFIG_DEBUG_OBJECTS_TIMERS
339 static struct debug_obj_descr hrtimer_debug_descr;
342 * fixup_init is called when:
343 * - an active object is initialized
345 static int hrtimer_fixup_init(void *addr, enum debug_obj_state state)
347 struct hrtimer *timer = addr;
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;
360 * fixup_activate is called when:
361 * - an active object is activated
362 * - an unknown object is activated (might be a statically initialized object)
364 static int hrtimer_fixup_activate(void *addr, enum debug_obj_state state)
366 switch (state) {
368 case ODEBUG_STATE_NOTAVAILABLE:
369 WARN_ON_ONCE(1);
370 return 0;
372 case ODEBUG_STATE_ACTIVE:
373 WARN_ON(1);
375 default:
376 return 0;
381 * fixup_free is called when:
382 * - an active object is freed
384 static int hrtimer_fixup_free(void *addr, enum debug_obj_state state)
386 struct hrtimer *timer = addr;
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;
398 static 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,
405 static inline void debug_hrtimer_init(struct hrtimer *timer)
407 debug_object_init(timer, &hrtimer_debug_descr);
410 static inline void debug_hrtimer_activate(struct hrtimer *timer)
412 debug_object_activate(timer, &hrtimer_debug_descr);
415 static inline void debug_hrtimer_deactivate(struct hrtimer *timer)
417 debug_object_deactivate(timer, &hrtimer_debug_descr);
420 static inline void debug_hrtimer_free(struct hrtimer *timer)
422 debug_object_free(timer, &hrtimer_debug_descr);
425 static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
426 enum hrtimer_mode mode);
428 void hrtimer_init_on_stack(struct hrtimer *timer, clockid_t clock_id,
429 enum hrtimer_mode mode)
431 debug_object_init_on_stack(timer, &hrtimer_debug_descr);
432 __hrtimer_init(timer, clock_id, mode);
434 EXPORT_SYMBOL_GPL(hrtimer_init_on_stack);
436 void destroy_hrtimer_on_stack(struct hrtimer *timer)
438 debug_object_free(timer, &hrtimer_debug_descr);
441 #else
442 static inline void debug_hrtimer_init(struct hrtimer *timer) { }
443 static inline void debug_hrtimer_activate(struct hrtimer *timer) { }
444 static inline void debug_hrtimer_deactivate(struct hrtimer *timer) { }
445 #endif
447 static inline void
448 debug_init(struct hrtimer *timer, clockid_t clockid,
449 enum hrtimer_mode mode)
451 debug_hrtimer_init(timer);
452 trace_hrtimer_init(timer, clockid, mode);
455 static inline void debug_activate(struct hrtimer *timer)
457 debug_hrtimer_activate(timer);
458 trace_hrtimer_start(timer);
461 static inline void debug_deactivate(struct hrtimer *timer)
463 debug_hrtimer_deactivate(timer);
464 trace_hrtimer_cancel(timer);
467 /* High resolution timer related functions */
468 #ifdef CONFIG_HIGH_RES_TIMERS
471 * High resolution timer enabled ?
473 static int hrtimer_hres_enabled __read_mostly = 1;
476 * Enable / Disable high resolution mode
478 static int __init setup_hrtimer_hres(char *str)
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;
489 __setup("highres=", setup_hrtimer_hres);
492 * hrtimer_high_res_enabled - query, if the highres mode is enabled
494 static inline int hrtimer_is_hres_enabled(void)
496 return hrtimer_hres_enabled;
500 * Is the high resolution mode active ?
502 static inline int hrtimer_hres_active(void)
504 return __get_cpu_var(hrtimer_bases).hres_active;
508 * Reprogram the event source with checking both queues for the
509 * next event
510 * Called with interrupts disabled and base->lock held
512 static void
513 hrtimer_force_reprogram(struct hrtimer_cpu_base *cpu_base, int skip_equal)
515 int i;
516 struct hrtimer_clock_base *base = cpu_base->clock_base;
517 ktime_t expires, expires_next;
519 expires_next.tv64 = KTIME_MAX;
521 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) {
522 struct hrtimer *timer;
524 if (!base->first)
525 continue;
526 timer = rb_entry(base->first, struct hrtimer, node);
527 expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
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()
533 if (expires.tv64 < 0)
534 expires.tv64 = 0;
535 if (expires.tv64 < expires_next.tv64)
536 expires_next = expires;
539 if (skip_equal && expires_next.tv64 == cpu_base->expires_next.tv64)
540 return;
542 cpu_base->expires_next.tv64 = expires_next.tv64;
544 if (cpu_base->expires_next.tv64 != KTIME_MAX)
545 tick_program_event(cpu_base->expires_next, 1);
549 * Shared reprogramming for clock_realtime and clock_monotonic
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.
555 * Called with interrupts disabled and base->cpu_base.lock held
557 static int hrtimer_reprogram(struct hrtimer *timer,
558 struct hrtimer_clock_base *base)
560 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
561 ktime_t expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
562 int res;
564 WARN_ON_ONCE(hrtimer_get_expires_tv64(timer) < 0);
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
569 * the callback is executed in the hrtimer_interrupt context. The
570 * reprogramming is handled either by the softirq, which called the
571 * callback or at the end of the hrtimer_interrupt.
573 if (hrtimer_callback_running(timer))
574 return 0;
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.
582 if (expires.tv64 < 0)
583 return -ETIME;
585 if (expires.tv64 >= cpu_base->expires_next.tv64)
586 return 0;
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.
594 if (cpu_base->hang_detected)
595 return 0;
598 * Clockevents returns -ETIME, when the event was in the past.
600 res = tick_program_event(expires, 0);
601 if (!IS_ERR_VALUE(res))
602 cpu_base->expires_next = expires;
603 return res;
606 static inline ktime_t hrtimer_update_base(struct hrtimer_cpu_base *base)
608 ktime_t *offs_real = &base->clock_base[CLOCK_REALTIME].offset;
610 return ktime_get_update_offsets(offs_real);
614 * Retrigger next event is called after clock was set
616 * Called with interrupts disabled via on_each_cpu()
618 static void retrigger_next_event(void *arg)
620 struct hrtimer_cpu_base *base;
622 if (!hrtimer_hres_active())
623 return;
625 base = &__get_cpu_var(hrtimer_bases);
627 /* Adjust CLOCK_REALTIME offset */
628 raw_spin_lock(&base->lock);
629 hrtimer_update_base(base);
630 hrtimer_force_reprogram(base, 0);
631 raw_spin_unlock(&base->lock);
635 * Clock realtime was set
637 * Change the offset of the realtime clock vs. the monotonic
638 * clock.
640 * We might have to reprogram the high resolution timer interrupt. On
641 * SMP we call the architecture specific code to retrigger _all_ high
642 * resolution timer interrupts. On UP we just disable interrupts and
643 * call the high resolution interrupt code.
645 void clock_was_set(void)
647 /* Retrigger the CPU local events everywhere */
648 on_each_cpu(retrigger_next_event, NULL, 1);
652 * During resume we might have to reprogram the high resolution timer
653 * interrupt (on the local CPU):
655 void hres_timers_resume(void)
657 WARN_ONCE(!irqs_disabled(),
658 KERN_INFO "hres_timers_resume() called with IRQs enabled!");
660 retrigger_next_event(NULL);
664 * Initialize the high resolution related parts of cpu_base
666 static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base)
668 base->expires_next.tv64 = KTIME_MAX;
669 base->hres_active = 0;
673 * Initialize the high resolution related parts of a hrtimer
675 static inline void hrtimer_init_timer_hres(struct hrtimer *timer)
681 * When High resolution timers are active, try to reprogram. Note, that in case
682 * the state has HRTIMER_STATE_CALLBACK set, no reprogramming and no expiry
683 * check happens. The timer gets enqueued into the rbtree. The reprogramming
684 * and expiry check is done in the hrtimer_interrupt or in the softirq.
686 static inline int hrtimer_enqueue_reprogram(struct hrtimer *timer,
687 struct hrtimer_clock_base *base,
688 int wakeup)
690 if (base->cpu_base->hres_active && hrtimer_reprogram(timer, base)) {
691 if (wakeup) {
692 raw_spin_unlock(&base->cpu_base->lock);
693 raise_softirq_irqoff(HRTIMER_SOFTIRQ);
694 raw_spin_lock(&base->cpu_base->lock);
695 } else
696 __raise_softirq_irqoff(HRTIMER_SOFTIRQ);
698 return 1;
701 return 0;
705 * Switch to high resolution mode
707 static int hrtimer_switch_to_hres(void)
709 int cpu = smp_processor_id();
710 struct hrtimer_cpu_base *base = &per_cpu(hrtimer_bases, cpu);
711 unsigned long flags;
713 if (base->hres_active)
714 return 1;
716 local_irq_save(flags);
718 if (tick_init_highres()) {
719 local_irq_restore(flags);
720 printk(KERN_WARNING "Could not switch to high resolution "
721 "mode on CPU %d\n", cpu);
722 return 0;
724 base->hres_active = 1;
725 base->clock_base[CLOCK_REALTIME].resolution = KTIME_HIGH_RES;
726 base->clock_base[CLOCK_MONOTONIC].resolution = KTIME_HIGH_RES;
728 tick_setup_sched_timer();
729 /* "Retrigger" the interrupt to get things going */
730 retrigger_next_event(NULL);
731 local_irq_restore(flags);
732 return 1;
736 * Called from timekeeping code to reprogramm the hrtimer interrupt
737 * device. If called from the timer interrupt context we defer it to
738 * softirq context.
740 void clock_was_set_delayed(void)
742 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
744 cpu_base->clock_was_set = 1;
745 __raise_softirq_irqoff(HRTIMER_SOFTIRQ);
748 #else
750 static inline int hrtimer_hres_active(void) { return 0; }
751 static inline int hrtimer_is_hres_enabled(void) { return 0; }
752 static inline int hrtimer_switch_to_hres(void) { return 0; }
753 static inline void
754 hrtimer_force_reprogram(struct hrtimer_cpu_base *base, int skip_equal) { }
755 static inline int hrtimer_enqueue_reprogram(struct hrtimer *timer,
756 struct hrtimer_clock_base *base,
757 int wakeup)
759 return 0;
761 static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base) { }
762 static inline void hrtimer_init_timer_hres(struct hrtimer *timer) { }
764 #endif /* CONFIG_HIGH_RES_TIMERS */
766 static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer)
768 #ifdef CONFIG_TIMER_STATS
769 if (timer->start_site)
770 return;
771 timer->start_site = __builtin_return_address(0);
772 memcpy(timer->start_comm, current->comm, TASK_COMM_LEN);
773 timer->start_pid = current->pid;
774 #endif
777 static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer)
779 #ifdef CONFIG_TIMER_STATS
780 timer->start_site = NULL;
781 #endif
784 static inline void timer_stats_account_hrtimer(struct hrtimer *timer)
786 #ifdef CONFIG_TIMER_STATS
787 if (likely(!timer_stats_active))
788 return;
789 timer_stats_update_stats(timer, timer->start_pid, timer->start_site,
790 timer->function, timer->start_comm, 0);
791 #endif
795 * Counterpart to lock_hrtimer_base above:
797 static inline
798 void unlock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
800 raw_spin_unlock_irqrestore(&timer->base->cpu_base->lock, *flags);
804 * hrtimer_forward - forward the timer expiry
805 * @timer: hrtimer to forward
806 * @now: forward past this time
807 * @interval: the interval to forward
809 * Forward the timer expiry so it will expire in the future.
810 * Returns the number of overruns.
812 u64 hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval)
814 u64 orun = 1;
815 ktime_t delta;
817 delta = ktime_sub(now, hrtimer_get_expires(timer));
819 if (delta.tv64 < 0)
820 return 0;
822 if (interval.tv64 < timer->base->resolution.tv64)
823 interval.tv64 = timer->base->resolution.tv64;
825 if (unlikely(delta.tv64 >= interval.tv64)) {
826 s64 incr = ktime_to_ns(interval);
828 orun = ktime_divns(delta, incr);
829 hrtimer_add_expires_ns(timer, incr * orun);
830 if (hrtimer_get_expires_tv64(timer) > now.tv64)
831 return orun;
833 * This (and the ktime_add() below) is the
834 * correction for exact:
836 orun++;
838 hrtimer_add_expires(timer, interval);
840 return orun;
842 EXPORT_SYMBOL_GPL(hrtimer_forward);
845 * enqueue_hrtimer - internal function to (re)start a timer
847 * The timer is inserted in expiry order. Insertion into the
848 * red black tree is O(log(n)). Must hold the base lock.
850 * Returns 1 when the new timer is the leftmost timer in the tree.
852 static int enqueue_hrtimer(struct hrtimer *timer,
853 struct hrtimer_clock_base *base)
855 struct rb_node **link = &base->active.rb_node;
856 struct rb_node *parent = NULL;
857 struct hrtimer *entry;
858 int leftmost = 1;
860 debug_activate(timer);
863 * Find the right place in the rbtree:
865 while (*link) {
866 parent = *link;
867 entry = rb_entry(parent, struct hrtimer, node);
869 * We dont care about collisions. Nodes with
870 * the same expiry time stay together.
872 if (hrtimer_get_expires_tv64(timer) <
873 hrtimer_get_expires_tv64(entry)) {
874 link = &(*link)->rb_left;
875 } else {
876 link = &(*link)->rb_right;
877 leftmost = 0;
882 * Insert the timer to the rbtree and check whether it
883 * replaces the first pending timer
885 if (leftmost)
886 base->first = &timer->node;
888 rb_link_node(&timer->node, parent, link);
889 rb_insert_color(&timer->node, &base->active);
891 * HRTIMER_STATE_ENQUEUED is or'ed to the current state to preserve the
892 * state of a possibly running callback.
894 timer->state |= HRTIMER_STATE_ENQUEUED;
896 return leftmost;
900 * __remove_hrtimer - internal function to remove a timer
902 * Caller must hold the base lock.
904 * High resolution timer mode reprograms the clock event device when the
905 * timer is the one which expires next. The caller can disable this by setting
906 * reprogram to zero. This is useful, when the context does a reprogramming
907 * anyway (e.g. timer interrupt)
909 static void __remove_hrtimer(struct hrtimer *timer,
910 struct hrtimer_clock_base *base,
911 unsigned long newstate, int reprogram)
913 if (!(timer->state & HRTIMER_STATE_ENQUEUED))
914 goto out;
917 * Remove the timer from the rbtree and replace the first
918 * entry pointer if necessary.
920 if (base->first == &timer->node) {
921 base->first = rb_next(&timer->node);
922 #ifdef CONFIG_HIGH_RES_TIMERS
923 /* Reprogram the clock event device. if enabled */
924 if (reprogram && hrtimer_hres_active()) {
925 ktime_t expires;
927 expires = ktime_sub(hrtimer_get_expires(timer),
928 base->offset);
929 if (base->cpu_base->expires_next.tv64 == expires.tv64)
930 hrtimer_force_reprogram(base->cpu_base, 1);
932 #endif
934 rb_erase(&timer->node, &base->active);
935 out:
936 timer->state = newstate;
940 * remove hrtimer, called with base lock held
942 static inline int
943 remove_hrtimer(struct hrtimer *timer, struct hrtimer_clock_base *base)
945 if (hrtimer_is_queued(timer)) {
946 unsigned long state;
947 int reprogram;
950 * Remove the timer and force reprogramming when high
951 * resolution mode is active and the timer is on the current
952 * CPU. If we remove a timer on another CPU, reprogramming is
953 * skipped. The interrupt event on this CPU is fired and
954 * reprogramming happens in the interrupt handler. This is a
955 * rare case and less expensive than a smp call.
957 debug_deactivate(timer);
958 timer_stats_hrtimer_clear_start_info(timer);
959 reprogram = base->cpu_base == &__get_cpu_var(hrtimer_bases);
961 * We must preserve the CALLBACK state flag here,
962 * otherwise we could move the timer base in
963 * switch_hrtimer_base.
965 state = timer->state & HRTIMER_STATE_CALLBACK;
966 __remove_hrtimer(timer, base, state, reprogram);
967 return 1;
969 return 0;
972 int __hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
973 unsigned long delta_ns, const enum hrtimer_mode mode,
974 int wakeup)
976 struct hrtimer_clock_base *base, *new_base;
977 unsigned long flags;
978 int ret, leftmost;
980 base = lock_hrtimer_base(timer, &flags);
982 /* Remove an active timer from the queue: */
983 ret = remove_hrtimer(timer, base);
985 /* Switch the timer base, if necessary: */
986 new_base = switch_hrtimer_base(timer, base, mode & HRTIMER_MODE_PINNED);
988 if (mode & HRTIMER_MODE_REL) {
989 tim = ktime_add_safe(tim, new_base->get_time());
991 * CONFIG_TIME_LOW_RES is a temporary way for architectures
992 * to signal that they simply return xtime in
993 * do_gettimeoffset(). In this case we want to round up by
994 * resolution when starting a relative timer, to avoid short
995 * timeouts. This will go away with the GTOD framework.
997 #ifdef CONFIG_TIME_LOW_RES
998 tim = ktime_add_safe(tim, base->resolution);
999 #endif
1002 hrtimer_set_expires_range_ns(timer, tim, delta_ns);
1004 timer_stats_hrtimer_set_start_info(timer);
1006 leftmost = enqueue_hrtimer(timer, new_base);
1009 * Only allow reprogramming if the new base is on this CPU.
1010 * (it might still be on another CPU if the timer was pending)
1012 * XXX send_remote_softirq() ?
1014 if (leftmost && new_base->cpu_base == &__get_cpu_var(hrtimer_bases))
1015 hrtimer_enqueue_reprogram(timer, new_base, wakeup);
1017 unlock_hrtimer_base(timer, &flags);
1019 return ret;
1023 * hrtimer_start_range_ns - (re)start an hrtimer on the current CPU
1024 * @timer: the timer to be added
1025 * @tim: expiry time
1026 * @delta_ns: "slack" range for the timer
1027 * @mode: expiry mode: absolute (HRTIMER_ABS) or relative (HRTIMER_REL)
1029 * Returns:
1030 * 0 on success
1031 * 1 when the timer was active
1033 int hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
1034 unsigned long delta_ns, const enum hrtimer_mode mode)
1036 return __hrtimer_start_range_ns(timer, tim, delta_ns, mode, 1);
1038 EXPORT_SYMBOL_GPL(hrtimer_start_range_ns);
1041 * hrtimer_start - (re)start an hrtimer on the current CPU
1042 * @timer: the timer to be added
1043 * @tim: expiry time
1044 * @mode: expiry mode: absolute (HRTIMER_ABS) or relative (HRTIMER_REL)
1046 * Returns:
1047 * 0 on success
1048 * 1 when the timer was active
1051 hrtimer_start(struct hrtimer *timer, ktime_t tim, const enum hrtimer_mode mode)
1053 return __hrtimer_start_range_ns(timer, tim, 0, mode, 1);
1055 EXPORT_SYMBOL_GPL(hrtimer_start);
1059 * hrtimer_try_to_cancel - try to deactivate a timer
1060 * @timer: hrtimer to stop
1062 * Returns:
1063 * 0 when the timer was not active
1064 * 1 when the timer was active
1065 * -1 when the timer is currently excuting the callback function and
1066 * cannot be stopped
1068 int hrtimer_try_to_cancel(struct hrtimer *timer)
1070 struct hrtimer_clock_base *base;
1071 unsigned long flags;
1072 int ret = -1;
1074 base = lock_hrtimer_base(timer, &flags);
1076 if (!hrtimer_callback_running(timer))
1077 ret = remove_hrtimer(timer, base);
1079 unlock_hrtimer_base(timer, &flags);
1081 return ret;
1084 EXPORT_SYMBOL_GPL(hrtimer_try_to_cancel);
1087 * hrtimer_cancel - cancel a timer and wait for the handler to finish.
1088 * @timer: the timer to be cancelled
1090 * Returns:
1091 * 0 when the timer was not active
1092 * 1 when the timer was active
1094 int hrtimer_cancel(struct hrtimer *timer)
1096 for (;;) {
1097 int ret = hrtimer_try_to_cancel(timer);
1099 if (ret >= 0)
1100 return ret;
1101 cpu_relax();
1104 EXPORT_SYMBOL_GPL(hrtimer_cancel);
1107 * hrtimer_get_remaining - get remaining time for the timer
1108 * @timer: the timer to read
1110 ktime_t hrtimer_get_remaining(const struct hrtimer *timer)
1112 struct hrtimer_clock_base *base;
1113 unsigned long flags;
1114 ktime_t rem;
1116 base = lock_hrtimer_base(timer, &flags);
1117 rem = hrtimer_expires_remaining(timer);
1118 unlock_hrtimer_base(timer, &flags);
1120 return rem;
1122 EXPORT_SYMBOL_GPL(hrtimer_get_remaining);
1124 #ifdef CONFIG_NO_HZ
1126 * hrtimer_get_next_event - get the time until next expiry event
1128 * Returns the delta to the next expiry event or KTIME_MAX if no timer
1129 * is pending.
1131 ktime_t hrtimer_get_next_event(void)
1133 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
1134 struct hrtimer_clock_base *base = cpu_base->clock_base;
1135 ktime_t delta, mindelta = { .tv64 = KTIME_MAX };
1136 unsigned long flags;
1137 int i;
1139 raw_spin_lock_irqsave(&cpu_base->lock, flags);
1141 if (!hrtimer_hres_active()) {
1142 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) {
1143 struct hrtimer *timer;
1145 if (!base->first)
1146 continue;
1148 timer = rb_entry(base->first, struct hrtimer, node);
1149 delta.tv64 = hrtimer_get_expires_tv64(timer);
1150 delta = ktime_sub(delta, base->get_time());
1151 if (delta.tv64 < mindelta.tv64)
1152 mindelta.tv64 = delta.tv64;
1156 raw_spin_unlock_irqrestore(&cpu_base->lock, flags);
1158 if (mindelta.tv64 < 0)
1159 mindelta.tv64 = 0;
1160 return mindelta;
1162 #endif
1164 static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1165 enum hrtimer_mode mode)
1167 struct hrtimer_cpu_base *cpu_base;
1169 memset(timer, 0, sizeof(struct hrtimer));
1171 cpu_base = &__raw_get_cpu_var(hrtimer_bases);
1173 if (clock_id == CLOCK_REALTIME && mode != HRTIMER_MODE_ABS)
1174 clock_id = CLOCK_MONOTONIC;
1176 timer->base = &cpu_base->clock_base[clock_id];
1177 hrtimer_init_timer_hres(timer);
1179 #ifdef CONFIG_TIMER_STATS
1180 timer->start_site = NULL;
1181 timer->start_pid = -1;
1182 memset(timer->start_comm, 0, TASK_COMM_LEN);
1183 #endif
1187 * hrtimer_init - initialize a timer to the given clock
1188 * @timer: the timer to be initialized
1189 * @clock_id: the clock to be used
1190 * @mode: timer mode abs/rel
1192 void hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1193 enum hrtimer_mode mode)
1195 debug_init(timer, clock_id, mode);
1196 __hrtimer_init(timer, clock_id, mode);
1198 EXPORT_SYMBOL_GPL(hrtimer_init);
1201 * hrtimer_get_res - get the timer resolution for a clock
1202 * @which_clock: which clock to query
1203 * @tp: pointer to timespec variable to store the resolution
1205 * Store the resolution of the clock selected by @which_clock in the
1206 * variable pointed to by @tp.
1208 int hrtimer_get_res(const clockid_t which_clock, struct timespec *tp)
1210 struct hrtimer_cpu_base *cpu_base;
1212 cpu_base = &__raw_get_cpu_var(hrtimer_bases);
1213 *tp = ktime_to_timespec(cpu_base->clock_base[which_clock].resolution);
1215 return 0;
1217 EXPORT_SYMBOL_GPL(hrtimer_get_res);
1219 static void __run_hrtimer(struct hrtimer *timer, ktime_t *now)
1221 struct hrtimer_clock_base *base = timer->base;
1222 struct hrtimer_cpu_base *cpu_base = base->cpu_base;
1223 enum hrtimer_restart (*fn)(struct hrtimer *);
1224 int restart;
1226 WARN_ON(!irqs_disabled());
1228 debug_deactivate(timer);
1229 __remove_hrtimer(timer, base, HRTIMER_STATE_CALLBACK, 0);
1230 timer_stats_account_hrtimer(timer);
1231 fn = timer->function;
1234 * Because we run timers from hardirq context, there is no chance
1235 * they get migrated to another cpu, therefore its safe to unlock
1236 * the timer base.
1238 raw_spin_unlock(&cpu_base->lock);
1239 trace_hrtimer_expire_entry(timer, now);
1240 restart = fn(timer);
1241 trace_hrtimer_expire_exit(timer);
1242 raw_spin_lock(&cpu_base->lock);
1245 * Note: We clear the CALLBACK bit after enqueue_hrtimer and
1246 * we do not reprogramm the event hardware. Happens either in
1247 * hrtimer_start_range_ns() or in hrtimer_interrupt()
1249 if (restart != HRTIMER_NORESTART) {
1250 BUG_ON(timer->state != HRTIMER_STATE_CALLBACK);
1251 enqueue_hrtimer(timer, base);
1254 WARN_ON_ONCE(!(timer->state & HRTIMER_STATE_CALLBACK));
1256 timer->state &= ~HRTIMER_STATE_CALLBACK;
1259 #ifdef CONFIG_HIGH_RES_TIMERS
1262 * High resolution timer interrupt
1263 * Called with interrupts disabled
1265 void hrtimer_interrupt(struct clock_event_device *dev)
1267 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
1268 struct hrtimer_clock_base *base;
1269 ktime_t expires_next, now, entry_time, delta;
1270 int i, retries = 0;
1272 BUG_ON(!cpu_base->hres_active);
1273 cpu_base->nr_events++;
1274 dev->next_event.tv64 = KTIME_MAX;
1276 raw_spin_lock(&cpu_base->lock);
1277 entry_time = now = hrtimer_update_base(cpu_base);
1278 retry:
1279 expires_next.tv64 = KTIME_MAX;
1281 * We set expires_next to KTIME_MAX here with cpu_base->lock
1282 * held to prevent that a timer is enqueued in our queue via
1283 * the migration code. This does not affect enqueueing of
1284 * timers which run their callback and need to be requeued on
1285 * this CPU.
1287 cpu_base->expires_next.tv64 = KTIME_MAX;
1289 base = cpu_base->clock_base;
1291 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
1292 ktime_t basenow;
1293 struct rb_node *node;
1295 basenow = ktime_add(now, base->offset);
1297 while ((node = base->first)) {
1298 struct hrtimer *timer;
1300 timer = rb_entry(node, struct hrtimer, node);
1303 * The immediate goal for using the softexpires is
1304 * minimizing wakeups, not running timers at the
1305 * earliest interrupt after their soft expiration.
1306 * This allows us to avoid using a Priority Search
1307 * Tree, which can answer a stabbing querry for
1308 * overlapping intervals and instead use the simple
1309 * BST we already have.
1310 * We don't add extra wakeups by delaying timers that
1311 * are right-of a not yet expired timer, because that
1312 * timer will have to trigger a wakeup anyway.
1315 if (basenow.tv64 < hrtimer_get_softexpires_tv64(timer)) {
1316 ktime_t expires;
1318 expires = ktime_sub(hrtimer_get_expires(timer),
1319 base->offset);
1320 if (expires.tv64 < expires_next.tv64)
1321 expires_next = expires;
1322 break;
1325 __run_hrtimer(timer, &basenow);
1327 base++;
1331 * Store the new expiry value so the migration code can verify
1332 * against it.
1334 cpu_base->expires_next = expires_next;
1335 raw_spin_unlock(&cpu_base->lock);
1337 /* Reprogramming necessary ? */
1338 if (expires_next.tv64 == KTIME_MAX ||
1339 !tick_program_event(expires_next, 0)) {
1340 cpu_base->hang_detected = 0;
1341 return;
1345 * The next timer was already expired due to:
1346 * - tracing
1347 * - long lasting callbacks
1348 * - being scheduled away when running in a VM
1350 * We need to prevent that we loop forever in the hrtimer
1351 * interrupt routine. We give it 3 attempts to avoid
1352 * overreacting on some spurious event.
1354 * Acquire base lock for updating the offsets and retrieving
1355 * the current time.
1357 raw_spin_lock(&cpu_base->lock);
1358 now = hrtimer_update_base(cpu_base);
1359 cpu_base->nr_retries++;
1360 if (++retries < 3)
1361 goto retry;
1363 * Give the system a chance to do something else than looping
1364 * here. We stored the entry time, so we know exactly how long
1365 * we spent here. We schedule the next event this amount of
1366 * time away.
1368 cpu_base->nr_hangs++;
1369 cpu_base->hang_detected = 1;
1370 raw_spin_unlock(&cpu_base->lock);
1371 delta = ktime_sub(now, entry_time);
1372 if (delta.tv64 > cpu_base->max_hang_time.tv64)
1373 cpu_base->max_hang_time = delta;
1375 * Limit it to a sensible value as we enforce a longer
1376 * delay. Give the CPU at least 100ms to catch up.
1378 if (delta.tv64 > 100 * NSEC_PER_MSEC)
1379 expires_next = ktime_add_ns(now, 100 * NSEC_PER_MSEC);
1380 else
1381 expires_next = ktime_add(now, delta);
1382 tick_program_event(expires_next, 1);
1383 printk_once(KERN_WARNING "hrtimer: interrupt took %llu ns\n",
1384 ktime_to_ns(delta));
1388 * local version of hrtimer_peek_ahead_timers() called with interrupts
1389 * disabled.
1391 static void __hrtimer_peek_ahead_timers(void)
1393 struct tick_device *td;
1395 if (!hrtimer_hres_active())
1396 return;
1398 td = &__get_cpu_var(tick_cpu_device);
1399 if (td && td->evtdev)
1400 hrtimer_interrupt(td->evtdev);
1404 * hrtimer_peek_ahead_timers -- run soft-expired timers now
1406 * hrtimer_peek_ahead_timers will peek at the timer queue of
1407 * the current cpu and check if there are any timers for which
1408 * the soft expires time has passed. If any such timers exist,
1409 * they are run immediately and then removed from the timer queue.
1412 void hrtimer_peek_ahead_timers(void)
1414 unsigned long flags;
1416 local_irq_save(flags);
1417 __hrtimer_peek_ahead_timers();
1418 local_irq_restore(flags);
1421 static void run_hrtimer_softirq(struct softirq_action *h)
1423 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
1425 if (cpu_base->clock_was_set) {
1426 cpu_base->clock_was_set = 0;
1427 clock_was_set();
1430 hrtimer_peek_ahead_timers();
1433 #else /* CONFIG_HIGH_RES_TIMERS */
1435 static inline void __hrtimer_peek_ahead_timers(void) { }
1437 #endif /* !CONFIG_HIGH_RES_TIMERS */
1440 * Called from timer softirq every jiffy, expire hrtimers:
1442 * For HRT its the fall back code to run the softirq in the timer
1443 * softirq context in case the hrtimer initialization failed or has
1444 * not been done yet.
1446 void hrtimer_run_pending(void)
1448 if (hrtimer_hres_active())
1449 return;
1452 * This _is_ ugly: We have to check in the softirq context,
1453 * whether we can switch to highres and / or nohz mode. The
1454 * clocksource switch happens in the timer interrupt with
1455 * xtime_lock held. Notification from there only sets the
1456 * check bit in the tick_oneshot code, otherwise we might
1457 * deadlock vs. xtime_lock.
1459 if (tick_check_oneshot_change(!hrtimer_is_hres_enabled()))
1460 hrtimer_switch_to_hres();
1464 * Called from hardirq context every jiffy
1466 void hrtimer_run_queues(void)
1468 struct rb_node *node;
1469 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
1470 struct hrtimer_clock_base *base;
1471 int index, gettime = 1;
1473 if (hrtimer_hres_active())
1474 return;
1476 for (index = 0; index < HRTIMER_MAX_CLOCK_BASES; index++) {
1477 base = &cpu_base->clock_base[index];
1479 if (!base->first)
1480 continue;
1482 if (gettime) {
1483 hrtimer_get_softirq_time(cpu_base);
1484 gettime = 0;
1487 raw_spin_lock(&cpu_base->lock);
1489 while ((node = base->first)) {
1490 struct hrtimer *timer;
1492 timer = rb_entry(node, struct hrtimer, node);
1493 if (base->softirq_time.tv64 <=
1494 hrtimer_get_expires_tv64(timer))
1495 break;
1497 __run_hrtimer(timer, &base->softirq_time);
1499 raw_spin_unlock(&cpu_base->lock);
1504 * Sleep related functions:
1506 static enum hrtimer_restart hrtimer_wakeup(struct hrtimer *timer)
1508 struct hrtimer_sleeper *t =
1509 container_of(timer, struct hrtimer_sleeper, timer);
1510 struct task_struct *task = t->task;
1512 t->task = NULL;
1513 if (task)
1514 wake_up_process(task);
1516 return HRTIMER_NORESTART;
1519 void hrtimer_init_sleeper(struct hrtimer_sleeper *sl, struct task_struct *task)
1521 sl->timer.function = hrtimer_wakeup;
1522 sl->task = task;
1524 EXPORT_SYMBOL_GPL(hrtimer_init_sleeper);
1526 static int __sched do_nanosleep(struct hrtimer_sleeper *t, enum hrtimer_mode mode)
1528 hrtimer_init_sleeper(t, current);
1530 do {
1531 set_current_state(TASK_INTERRUPTIBLE);
1532 hrtimer_start_expires(&t->timer, mode);
1533 if (!hrtimer_active(&t->timer))
1534 t->task = NULL;
1536 if (likely(t->task))
1537 schedule();
1539 hrtimer_cancel(&t->timer);
1540 mode = HRTIMER_MODE_ABS;
1542 } while (t->task && !signal_pending(current));
1544 __set_current_state(TASK_RUNNING);
1546 return t->task == NULL;
1549 static int update_rmtp(struct hrtimer *timer, struct timespec __user *rmtp)
1551 struct timespec rmt;
1552 ktime_t rem;
1554 rem = hrtimer_expires_remaining(timer);
1555 if (rem.tv64 <= 0)
1556 return 0;
1557 rmt = ktime_to_timespec(rem);
1559 if (copy_to_user(rmtp, &rmt, sizeof(*rmtp)))
1560 return -EFAULT;
1562 return 1;
1565 long __sched hrtimer_nanosleep_restart(struct restart_block *restart)
1567 struct hrtimer_sleeper t;
1568 struct timespec __user *rmtp;
1569 int ret = 0;
1571 hrtimer_init_on_stack(&t.timer, restart->nanosleep.index,
1572 HRTIMER_MODE_ABS);
1573 hrtimer_set_expires_tv64(&t.timer, restart->nanosleep.expires);
1575 if (do_nanosleep(&t, HRTIMER_MODE_ABS))
1576 goto out;
1578 rmtp = restart->nanosleep.rmtp;
1579 if (rmtp) {
1580 ret = update_rmtp(&t.timer, rmtp);
1581 if (ret <= 0)
1582 goto out;
1585 /* The other values in restart are already filled in */
1586 ret = -ERESTART_RESTARTBLOCK;
1587 out:
1588 destroy_hrtimer_on_stack(&t.timer);
1589 return ret;
1592 long hrtimer_nanosleep(struct timespec *rqtp, struct timespec __user *rmtp,
1593 const enum hrtimer_mode mode, const clockid_t clockid)
1595 struct restart_block *restart;
1596 struct hrtimer_sleeper t;
1597 int ret = 0;
1598 unsigned long slack;
1600 slack = current->timer_slack_ns;
1601 if (rt_task(current))
1602 slack = 0;
1604 hrtimer_init_on_stack(&t.timer, clockid, mode);
1605 hrtimer_set_expires_range_ns(&t.timer, timespec_to_ktime(*rqtp), slack);
1606 if (do_nanosleep(&t, mode))
1607 goto out;
1609 /* Absolute timers do not update the rmtp value and restart: */
1610 if (mode == HRTIMER_MODE_ABS) {
1611 ret = -ERESTARTNOHAND;
1612 goto out;
1615 if (rmtp) {
1616 ret = update_rmtp(&t.timer, rmtp);
1617 if (ret <= 0)
1618 goto out;
1621 restart = &current_thread_info()->restart_block;
1622 restart->fn = hrtimer_nanosleep_restart;
1623 restart->nanosleep.index = t.timer.base->index;
1624 restart->nanosleep.rmtp = rmtp;
1625 restart->nanosleep.expires = hrtimer_get_expires_tv64(&t.timer);
1627 ret = -ERESTART_RESTARTBLOCK;
1628 out:
1629 destroy_hrtimer_on_stack(&t.timer);
1630 return ret;
1633 SYSCALL_DEFINE2(nanosleep, struct timespec __user *, rqtp,
1634 struct timespec __user *, rmtp)
1636 struct timespec tu;
1638 if (copy_from_user(&tu, rqtp, sizeof(tu)))
1639 return -EFAULT;
1641 if (!timespec_valid(&tu))
1642 return -EINVAL;
1644 return hrtimer_nanosleep(&tu, rmtp, HRTIMER_MODE_REL, CLOCK_MONOTONIC);
1648 * Functions related to boot-time initialization:
1650 static void __cpuinit init_hrtimers_cpu(int cpu)
1652 struct hrtimer_cpu_base *cpu_base = &per_cpu(hrtimer_bases, cpu);
1653 int i;
1655 raw_spin_lock_init(&cpu_base->lock);
1657 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++)
1658 cpu_base->clock_base[i].cpu_base = cpu_base;
1660 hrtimer_init_hres(cpu_base);
1663 #ifdef CONFIG_HOTPLUG_CPU
1665 static void migrate_hrtimer_list(struct hrtimer_clock_base *old_base,
1666 struct hrtimer_clock_base *new_base)
1668 struct hrtimer *timer;
1669 struct rb_node *node;
1671 while ((node = rb_first(&old_base->active))) {
1672 timer = rb_entry(node, struct hrtimer, node);
1673 BUG_ON(hrtimer_callback_running(timer));
1674 debug_deactivate(timer);
1677 * Mark it as STATE_MIGRATE not INACTIVE otherwise the
1678 * timer could be seen as !active and just vanish away
1679 * under us on another CPU
1681 __remove_hrtimer(timer, old_base, HRTIMER_STATE_MIGRATE, 0);
1682 timer->base = new_base;
1684 * Enqueue the timers on the new cpu. This does not
1685 * reprogram the event device in case the timer
1686 * expires before the earliest on this CPU, but we run
1687 * hrtimer_interrupt after we migrated everything to
1688 * sort out already expired timers and reprogram the
1689 * event device.
1691 enqueue_hrtimer(timer, new_base);
1693 /* Clear the migration state bit */
1694 timer->state &= ~HRTIMER_STATE_MIGRATE;
1698 static void migrate_hrtimers(int scpu)
1700 struct hrtimer_cpu_base *old_base, *new_base;
1701 int i;
1703 BUG_ON(cpu_online(scpu));
1704 tick_cancel_sched_timer(scpu);
1706 local_irq_disable();
1707 old_base = &per_cpu(hrtimer_bases, scpu);
1708 new_base = &__get_cpu_var(hrtimer_bases);
1710 * The caller is globally serialized and nobody else
1711 * takes two locks at once, deadlock is not possible.
1713 raw_spin_lock(&new_base->lock);
1714 raw_spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING);
1716 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
1717 migrate_hrtimer_list(&old_base->clock_base[i],
1718 &new_base->clock_base[i]);
1721 raw_spin_unlock(&old_base->lock);
1722 raw_spin_unlock(&new_base->lock);
1724 /* Check, if we got expired work to do */
1725 __hrtimer_peek_ahead_timers();
1726 local_irq_enable();
1729 #endif /* CONFIG_HOTPLUG_CPU */
1731 static int __cpuinit hrtimer_cpu_notify(struct notifier_block *self,
1732 unsigned long action, void *hcpu)
1734 int scpu = (long)hcpu;
1736 switch (action) {
1738 case CPU_UP_PREPARE:
1739 case CPU_UP_PREPARE_FROZEN:
1740 init_hrtimers_cpu(scpu);
1741 break;
1743 #ifdef CONFIG_HOTPLUG_CPU
1744 case CPU_DYING:
1745 case CPU_DYING_FROZEN:
1746 clockevents_notify(CLOCK_EVT_NOTIFY_CPU_DYING, &scpu);
1747 break;
1748 case CPU_DEAD:
1749 case CPU_DEAD_FROZEN:
1751 clockevents_notify(CLOCK_EVT_NOTIFY_CPU_DEAD, &scpu);
1752 migrate_hrtimers(scpu);
1753 break;
1755 #endif
1757 default:
1758 break;
1761 return NOTIFY_OK;
1764 static struct notifier_block __cpuinitdata hrtimers_nb = {
1765 .notifier_call = hrtimer_cpu_notify,
1768 void __init hrtimers_init(void)
1770 hrtimer_cpu_notify(&hrtimers_nb, (unsigned long)CPU_UP_PREPARE,
1771 (void *)(long)smp_processor_id());
1772 register_cpu_notifier(&hrtimers_nb);
1773 #ifdef CONFIG_HIGH_RES_TIMERS
1774 open_softirq(HRTIMER_SOFTIRQ, run_hrtimer_softirq);
1775 #endif
1779 * schedule_hrtimeout_range - sleep until timeout
1780 * @expires: timeout value (ktime_t)
1781 * @delta: slack in expires timeout (ktime_t)
1782 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
1784 * Make the current task sleep until the given expiry time has
1785 * elapsed. The routine will return immediately unless
1786 * the current task state has been set (see set_current_state()).
1788 * The @delta argument gives the kernel the freedom to schedule the
1789 * actual wakeup to a time that is both power and performance friendly.
1790 * The kernel give the normal best effort behavior for "@expires+@delta",
1791 * but may decide to fire the timer earlier, but no earlier than @expires.
1793 * You can set the task state as follows -
1795 * %TASK_UNINTERRUPTIBLE - at least @timeout time is guaranteed to
1796 * pass before the routine returns.
1798 * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
1799 * delivered to the current task.
1801 * The current task state is guaranteed to be TASK_RUNNING when this
1802 * routine returns.
1804 * Returns 0 when the timer has expired otherwise -EINTR
1806 int __sched schedule_hrtimeout_range(ktime_t *expires, unsigned long delta,
1807 const enum hrtimer_mode mode)
1809 struct hrtimer_sleeper t;
1812 * Optimize when a zero timeout value is given. It does not
1813 * matter whether this is an absolute or a relative time.
1815 if (expires && !expires->tv64) {
1816 __set_current_state(TASK_RUNNING);
1817 return 0;
1821 * A NULL parameter means "inifinte"
1823 if (!expires) {
1824 schedule();
1825 __set_current_state(TASK_RUNNING);
1826 return -EINTR;
1829 hrtimer_init_on_stack(&t.timer, CLOCK_MONOTONIC, mode);
1830 hrtimer_set_expires_range_ns(&t.timer, *expires, delta);
1832 hrtimer_init_sleeper(&t, current);
1834 hrtimer_start_expires(&t.timer, mode);
1835 if (!hrtimer_active(&t.timer))
1836 t.task = NULL;
1838 if (likely(t.task))
1839 schedule();
1841 hrtimer_cancel(&t.timer);
1842 destroy_hrtimer_on_stack(&t.timer);
1844 __set_current_state(TASK_RUNNING);
1846 return !t.task ? 0 : -EINTR;
1848 EXPORT_SYMBOL_GPL(schedule_hrtimeout_range);
1851 * schedule_hrtimeout - sleep until timeout
1852 * @expires: timeout value (ktime_t)
1853 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
1855 * Make the current task sleep until the given expiry time has
1856 * elapsed. The routine will return immediately unless
1857 * the current task state has been set (see set_current_state()).
1859 * You can set the task state as follows -
1861 * %TASK_UNINTERRUPTIBLE - at least @timeout time is guaranteed to
1862 * pass before the routine returns.
1864 * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
1865 * delivered to the current task.
1867 * The current task state is guaranteed to be TASK_RUNNING when this
1868 * routine returns.
1870 * Returns 0 when the timer has expired otherwise -EINTR
1872 int __sched schedule_hrtimeout(ktime_t *expires,
1873 const enum hrtimer_mode mode)
1875 return schedule_hrtimeout_range(expires, 0, mode);
1877 EXPORT_SYMBOL_GPL(schedule_hrtimeout);