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